diff --git a/deploy/datasets/query.js b/deploy/datasets/query.js index d3cfeec0127dd907522d8b9dd92c8a80781a666c..c1d5da681e63da93eb2758b70961793a585bb7ed 100644 --- a/deploy/datasets/query.js +++ b/deploy/datasets/query.js @@ -5,7 +5,6 @@ const path = require('path') const archiver = require('archiver') const { commonSenseDsFilter } = require('./supplements/commonSense') const { getPreviewFile, hasPreview } = require('./supplements/previewFile') -const { manualFilter: manualFilterDWM, manualMap: manualMapDWM } = require('./supplements/util/mapDwm') const kgQueryUtil = require('./../auth/util') @@ -15,7 +14,7 @@ let otherQueryResult = null const KG_ROOT = process.env.KG_ROOT || `https://kg.humanbrainproject.org` const KG_PATH = process.env.KG_PATH || `/query/minds/core/dataset/v1.0.0/interactiveViewerKgQuery-v0_1` const KG_PARAM = { - size: process.env.KG_SEARCH_SIZE || '450', + size: process.env.KG_SEARCH_SIZE || '1000', vocab: process.env.KG_SEARCH_VOCAB || 'https://schema.hbp.eu/myQuery/' } @@ -58,20 +57,29 @@ const cacheData = ({ results, ...rest }) => { return cachedData } -const getPublicDs = () => Promise.race([ - new Promise((rs, rj) => { - setTimeout(() => { - if (cachedData) { - rs(cachedData) - } else { - /** - * cached data not available, have to wait - */ - } - }, timeout) - }), - fetchDatasetFromKg().then(cacheData) -]) +let fetchingPublicDataInProgress = false +let getPublicDsPr + +const getPublicDs = async () => { + + /** + * every request to public ds will trigger a refresh pull from master KG (throttled pending on resolved request) + */ + if (!fetchingPublicDataInProgress) { + fetchingPublicDataInProgress = true + getPublicDsPr = fetchDatasetFromKg() + .then(_ => { + fetchingPublicDataInProgress = false + getPublicDsPr = null + return _ + }) + .then(cacheData) + } + + if (cachedData) return Promise.resolve(cachedData) + if (getPublicDsPr) return getPublicDsPr + throw `cached Data not yet resolved, neither is get public ds defined` +} const getDs = ({ user }) => user @@ -103,46 +111,68 @@ const readConfigFile = (filename) => new Promise((resolve, reject) => { }) }) -let juBrain = null -let shortBundle = null -let longBundle = null -let waxholm = null -let allen = null +const populateSet = (flattenedRegions, set = new Set()) => { + if (!(set instanceof Set)) throw `set needs to be an instance of Set` + if (!(flattenedRegions instanceof Array)) throw `flattenedRegions needs to be an instance of Array` + for (const region of flattenedRegions) { + const { name, relatedAreas } = region + if (name) set.add(name) + if (relatedAreas && relatedAreas instanceof Array && relatedAreas.length > 0) { + for (const relatedArea of relatedAreas) { + if(typeof relatedArea === 'string') set.add(relatedArea) + else console.warn(`related area not an instance of String. skipping`, relatedArea) + } + } + } + return set +} + +let juBrainSet = new Set(), + shortBundleSet = new Set(), + longBundleSet = new Set(), + waxholmSet = new Set(), + allenSet = new Set() readConfigFile('colin.json') .then(data => JSON.parse(data)) .then(json => { - juBrain = flattenArray(json.parcellations[0].regions) + const juBrain = flattenArray(json.parcellations[0].regions) + juBrainSet = populateSet(juBrain) + }) .catch(console.error) readConfigFile('MNI152.json') .then(data => JSON.parse(data)) .then(json => { - longBundle = flattenArray(json.parcellations[0].regions) - shortBundle = flattenArray(json.parcellations[1].regions) + const longBundle = flattenArray(json.parcellations.find(({ name }) => name === 'Fibre Bundle Atlas - Long Bundle').regions) + const shortBundle = flattenArray(json.parcellations.find(({ name }) => name === 'Fibre Bundle Atlas - Short Bundle').regions) + + longBundleSet = populateSet(longBundle) + shortBundleSet = populateSet(shortBundle) }) .catch(console.error) readConfigFile('waxholmRatV2_0.json') .then(data => JSON.parse(data)) .then(json => { - waxholm = flattenArray(json.parcellations[0].regions) + const waxholm = flattenArray(json.parcellations[0].regions) + + waxholmSet = populateSet(waxholm) }) .catch(console.error) -/** - * deprecated - */ -const filterByPRs = (prs, atlasPr) => atlasPr - ? prs.some(pr => { - const regex = new RegExp(pr.name.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&'), 'i') - return atlasPr.some(aPr => regex.test(aPr.name)) +readConfigFile('allenMouse.json') + .then(data => JSON.parse(data)) + .then(json => { + const flattenedAllen = flattenArray(json.parcellations[0].regions) + allenSet = populateSet(flattenedAllen) }) - : false - -const manualFilter = require('./supplements/parcellation') +const filterByPRSet = (prs, atlasPrSet = new Set()) => { + if (!(atlasPrSet instanceof Set)) throw `atlasPrSet needs to be a set!` + return prs.some(({ name }) => atlasPrSet.has(name)) +} const filter = (datasets = [], { templateName, parcellationName }) => datasets .filter(ds => commonSenseDsFilter({ ds, templateName, parcellationName })) @@ -153,34 +183,36 @@ const filter = (datasets = [], { templateName, parcellationName }) => datasets return ds.referenceSpaces.some(rs => rs.name === templateName) } if (parcellationName) { - if (parcellationName === 'Fibre Bundle Atlas - Long Bundle') { - return manualFilterDWM(ds) + if (ds.parcellationRegion.length === 0) return false + + let useSet + switch (parcellationName) { + case 'JuBrain Cytoarchitectonic Atlas': + useSet = juBrainSet + break; + case 'Fibre Bundle Atlas - Short Bundle': + useSet = shortBundleSet + break; + case 'Fibre Bundle Atlas - Long Bundle': + useSet = longBundleSet + break; + case 'Waxholm Space rat brain atlas v.2.0': + useSet = waxholmSet + break; + case 'Allen adult mouse brain reference atlas V3 Brain Atlas': + useSet = allenSet + break; + default: + useSet = new Set() } - return ds.parcellationRegion.length > 0 - ? filterByPRs( - ds.parcellationRegion, - parcellationName === 'JuBrain Cytoarchitectonic Atlas' && juBrain - ? juBrain - : parcellationName === 'Fibre Bundle Atlas - Short Bundle' && shortBundle - ? shortBundle - : parcellationName === 'Waxholm Space rat brain atlas v.2.0' - ? waxholm - : null - ) - : false + return filterByPRSet(ds.parcellationRegion, useSet) } return false }) .map(ds => { - if (parcellationName && parcellationName === 'Fibre Bundle Atlas - Long Bundle') { - return manualMapDWM(ds) - } return { ...ds, - ...parcellationName && ds.parcellationRegion.length === 0 - ? { parcellationRegion: [{ name: manualFilter({ parcellationName, dataset: ds }) }] } - : {}, preview: hasPreview({ datasetName: ds.name }) } }) @@ -191,8 +223,7 @@ const filter = (datasets = [], { templateName, parcellationName }) => datasets exports.init = async () => { const { getPublicAccessToken: getPublic } = await kgQueryUtil() getPublicAccessToken = getPublic - const { results = [] } = await fetchDatasetFromKg() - cachedData = results + return await getPublicDs() } exports.getDatasets = ({ templateName, parcellationName, user }) => getDs({ user }) diff --git a/deploy/datasets/supplements/data/receptorPreview.json b/deploy/datasets/supplements/data/receptorPreview.json index 535ad50bf3bed721ddb1ae3eba56469784b7e66a..a0d1ee6066719c7ae023dd7147ceaff8d31d42d2 100644 --- a/deploy/datasets/supplements/data/receptorPreview.json +++ b/deploy/datasets/supplements/data/receptorPreview.json @@ -1 +1 @@ -[["Density measurements of different receptors for Area 4p",[{"name":"Receptor density fingerprint of Area 4p","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 4p.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 4p. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["286","286","739","NA","999","1842","1337","245","141","400","69","193","111","162","234","49"]},{"label":"mean_sd","data":["40","35","1","NA","108","10","65","23","27","44","13","7","15","31","2","5"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 4p (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(139,71,137,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area 4p","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area 4p","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area 4p","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 4p","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area 4p","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area 4p","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 4p","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area 4p","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area 4p","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 4p","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area 4p","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area 4p","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area 4p","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 4p.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area 4p"],"datasets":[{"data":[{"x":0,"y":2413.7942},{"x":1,"y":2579.6044},{"x":2,"y":2702.8189},{"x":3,"y":2798.8989},{"x":4,"y":2884.1463},{"x":5,"y":2974.3385},{"x":6,"y":3051.5047},{"x":7,"y":3111.7795},{"x":8,"y":3147.6055},{"x":9,"y":3166.3901},{"x":10,"y":3176.7118},{"x":11,"y":3186.6968},{"x":12,"y":3190.6774},{"x":13,"y":3175.9626},{"x":14,"y":3150.1009},{"x":15,"y":3126.9474},{"x":16,"y":3101.0072},{"x":17,"y":3067.388},{"x":18,"y":3019.0921},{"x":19,"y":2941.8543},{"x":20,"y":2848.7345},{"x":21,"y":2764.5887},{"x":22,"y":2685.3707},{"x":23,"y":2594.0466},{"x":24,"y":2495.2953},{"x":25,"y":2407.7066},{"x":26,"y":2333.9791},{"x":27,"y":2251.1285},{"x":28,"y":2180.8211},{"x":29,"y":2123.6526},{"x":30,"y":2079.9581},{"x":31,"y":2034.0584},{"x":32,"y":1997.3294},{"x":33,"y":1965.5269},{"x":34,"y":1940.2193},{"x":35,"y":1916.1916},{"x":36,"y":1883.4167},{"x":37,"y":1853.6692},{"x":38,"y":1826.0956},{"x":39,"y":1798.6402},{"x":40,"y":1775.9312},{"x":41,"y":1750.9717},{"x":42,"y":1727.9437},{"x":43,"y":1717.8377},{"x":44,"y":1704.3227},{"x":45,"y":1694.9437},{"x":46,"y":1689.5052},{"x":47,"y":1686.4007},{"x":48,"y":1677.6482},{"x":49,"y":1661.8785},{"x":50,"y":1644.2679},{"x":51,"y":1620.0272},{"x":52,"y":1587.3433},{"x":53,"y":1554.6403},{"x":54,"y":1521.1183},{"x":55,"y":1486.9183},{"x":56,"y":1456.6702},{"x":57,"y":1437.946},{"x":58,"y":1421.5769},{"x":59,"y":1408.4279},{"x":60,"y":1398.5662},{"x":61,"y":1392.2645},{"x":62,"y":1387.9689},{"x":63,"y":1381.544},{"x":64,"y":1371.8216},{"x":65,"y":1366.965},{"x":66,"y":1370.4149},{"x":67,"y":1366.3302},{"x":68,"y":1347.7732},{"x":69,"y":1331.3701},{"x":70,"y":1324.8525},{"x":71,"y":1319.6012},{"x":72,"y":1305.0713},{"x":73,"y":1286.3558},{"x":74,"y":1267.4558},{"x":75,"y":1254.2137},{"x":76,"y":1240.9391},{"x":77,"y":1223.9838},{"x":78,"y":1203.4248},{"x":79,"y":1185.6071},{"x":80,"y":1161.864},{"x":81,"y":1125.0255},{"x":82,"y":1091.9493},{"x":83,"y":1069.7976},{"x":84,"y":1045.3628},{"x":85,"y":1021.5118},{"x":86,"y":1002.7278},{"x":87,"y":990.1426},{"x":88,"y":974.0419},{"x":89,"y":950.0222},{"x":90,"y":927.9979},{"x":91,"y":915.1907},{"x":92,"y":895.0272},{"x":93,"y":863.2511},{"x":94,"y":825.0214},{"x":95,"y":784.9342},{"x":96,"y":741.202},{"x":97,"y":698.1911},{"x":98,"y":646.022},{"x":99,"y":581.6678},{"x":100,"y":528.1679}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area 4p","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 4p.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":205.1842},{"x":1,"y":240.3517},{"x":2,"y":275.207},{"x":3,"y":299.4163},{"x":4,"y":314.1489},{"x":5,"y":321.4688},{"x":6,"y":323.7348},{"x":7,"y":322.5535},{"x":8,"y":319.1139},{"x":9,"y":313.5944},{"x":10,"y":307.5699},{"x":11,"y":300.6218},{"x":12,"y":293.9241},{"x":13,"y":287.1282},{"x":14,"y":279.3099},{"x":15,"y":271.8437},{"x":16,"y":265.1888},{"x":17,"y":259.4219},{"x":18,"y":254.1061},{"x":19,"y":247.1481},{"x":20,"y":239.451},{"x":21,"y":231.8765},{"x":22,"y":223.962},{"x":23,"y":217.4048},{"x":24,"y":211.3585},{"x":25,"y":204.6168},{"x":26,"y":199.1226},{"x":27,"y":192.9799},{"x":28,"y":187.1456},{"x":29,"y":183.5182},{"x":30,"y":180.0959},{"x":31,"y":176.4296},{"x":32,"y":173.5105},{"x":33,"y":171.3133},{"x":34,"y":168.9334},{"x":35,"y":167.0311},{"x":36,"y":165.0458},{"x":37,"y":163.317},{"x":38,"y":160.9514},{"x":39,"y":157.7277},{"x":40,"y":154.1254},{"x":41,"y":152.0029},{"x":42,"y":151.2182},{"x":43,"y":148.4541},{"x":44,"y":146.2252},{"x":45,"y":145.4551},{"x":46,"y":144.9319},{"x":47,"y":145.0735},{"x":48,"y":146.0921},{"x":49,"y":147.1874},{"x":50,"y":148.6085},{"x":51,"y":149.702},{"x":52,"y":151.0333},{"x":53,"y":153.2793},{"x":54,"y":155.3491},{"x":55,"y":157.6639},{"x":56,"y":158.7428},{"x":57,"y":160.2607},{"x":58,"y":160.9932},{"x":59,"y":160.3886},{"x":60,"y":159.3193},{"x":61,"y":158.2289},{"x":62,"y":157.1462},{"x":63,"y":157.2808},{"x":64,"y":158.3863},{"x":65,"y":158.7046},{"x":66,"y":158.4448},{"x":67,"y":157.8302},{"x":68,"y":156.3656},{"x":69,"y":154.7349},{"x":70,"y":154.0051},{"x":71,"y":153.2451},{"x":72,"y":152.9668},{"x":73,"y":153.9097},{"x":74,"y":154.6538},{"x":75,"y":155.4769},{"x":76,"y":157.1326},{"x":77,"y":157.4459},{"x":78,"y":157.7777},{"x":79,"y":159.3443},{"x":80,"y":161.0418},{"x":81,"y":162.1393},{"x":82,"y":161.385},{"x":83,"y":158.7497},{"x":84,"y":155.2385},{"x":85,"y":151.8252},{"x":86,"y":147.909},{"x":87,"y":144.1392},{"x":88,"y":140.7435},{"x":89,"y":138.6898},{"x":90,"y":135.0542},{"x":91,"y":130.393},{"x":92,"y":126.5798},{"x":93,"y":122.5006},{"x":94,"y":117.679},{"x":95,"y":113.1031},{"x":96,"y":109.215},{"x":97,"y":103.6431},{"x":98,"y":97.0317},{"x":99,"y":89.5429},{"x":100,"y":83.3149}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 4p.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":671.5327},{"x":1,"y":762.0834},{"x":2,"y":825.9149},{"x":3,"y":876.0997},{"x":4,"y":908.4196},{"x":5,"y":948.0117},{"x":6,"y":983.0097},{"x":7,"y":1006.7643},{"x":8,"y":1024.6274},{"x":9,"y":1040.8895},{"x":10,"y":1055.4347},{"x":11,"y":1065.6967},{"x":12,"y":1073.718},{"x":13,"y":1076.7193},{"x":14,"y":1076.3371},{"x":15,"y":1076.2685},{"x":16,"y":1072.7573},{"x":17,"y":1065.5468},{"x":18,"y":1060.4237},{"x":19,"y":1054.4459},{"x":20,"y":1043.0831},{"x":21,"y":1031.6371},{"x":22,"y":1019.9855},{"x":23,"y":1011.1376},{"x":24,"y":1001.1152},{"x":25,"y":990.5897},{"x":26,"y":983.1137},{"x":27,"y":973.6314},{"x":28,"y":962.1853},{"x":29,"y":949.9465},{"x":30,"y":940.0855},{"x":31,"y":927.9226},{"x":32,"y":912.8959},{"x":33,"y":895.8703},{"x":34,"y":876.6853},{"x":35,"y":860.5046},{"x":36,"y":847.7047},{"x":37,"y":833.4613},{"x":38,"y":817.7553},{"x":39,"y":805.428},{"x":40,"y":793.0707},{"x":41,"y":784.4402},{"x":42,"y":780.7564},{"x":43,"y":777.5456},{"x":44,"y":778.4201},{"x":45,"y":777.6818},{"x":46,"y":769.9891},{"x":47,"y":759.2726},{"x":48,"y":748.9673},{"x":49,"y":738.2948},{"x":50,"y":727.8748},{"x":51,"y":714.372},{"x":52,"y":702.6996},{"x":53,"y":694.3483},{"x":54,"y":691.909},{"x":55,"y":692.0614},{"x":56,"y":688.4385},{"x":57,"y":685.6036},{"x":58,"y":683.1186},{"x":59,"y":676.6456},{"x":60,"y":669.4609},{"x":61,"y":669.0202},{"x":62,"y":669.4426},{"x":63,"y":669.2955},{"x":64,"y":671.8318},{"x":65,"y":671.8088},{"x":66,"y":666.7441},{"x":67,"y":659.3642},{"x":68,"y":653.5222},{"x":69,"y":648.1735},{"x":70,"y":641.1897},{"x":71,"y":633.3543},{"x":72,"y":624.8101},{"x":73,"y":617.3287},{"x":74,"y":607.1936},{"x":75,"y":596.4136},{"x":76,"y":588.6646},{"x":77,"y":584.88},{"x":78,"y":583.2397},{"x":79,"y":578.3057},{"x":80,"y":569.7393},{"x":81,"y":565.8268},{"x":82,"y":567.3331},{"x":83,"y":561.5273},{"x":84,"y":556.82},{"x":85,"y":558.0755},{"x":86,"y":557.7605},{"x":87,"y":556.2149},{"x":88,"y":551.3922},{"x":89,"y":549.3613},{"x":90,"y":548.2166},{"x":91,"y":542.1893},{"x":92,"y":532.1291},{"x":93,"y":520.8956},{"x":94,"y":510.1724},{"x":95,"y":496.3677},{"x":96,"y":480.5641},{"x":97,"y":468.4919},{"x":98,"y":455.219},{"x":99,"y":441.33},{"x":100,"y":422.7714}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area 4p","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 4p.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":965.5393},{"x":1,"y":1151.589},{"x":2,"y":1269.8641},{"x":3,"y":1430.0462},{"x":4,"y":1647.1004},{"x":5,"y":1845.1383},{"x":6,"y":1973.9805},{"x":7,"y":2039.1232},{"x":8,"y":2121.6727},{"x":9,"y":2198.0932},{"x":10,"y":2271.2382},{"x":11,"y":2330.7525},{"x":12,"y":2381.1104},{"x":13,"y":2422.7618},{"x":14,"y":2472.3095},{"x":15,"y":2517.238},{"x":16,"y":2551.9437},{"x":17,"y":2565.2157},{"x":18,"y":2569.4004},{"x":19,"y":2563.6702},{"x":20,"y":2552.1965},{"x":21,"y":2533.0733},{"x":22,"y":2507.8129},{"x":23,"y":2490.4359},{"x":24,"y":2466.1782},{"x":25,"y":2432.777},{"x":26,"y":2381.5361},{"x":27,"y":2312.2432},{"x":28,"y":2236.4699},{"x":29,"y":2162.9645},{"x":30,"y":2086.5463},{"x":31,"y":2014.0596},{"x":32,"y":1943.6458},{"x":33,"y":1871.2318},{"x":34,"y":1812.889},{"x":35,"y":1747.1772},{"x":36,"y":1687.3703},{"x":37,"y":1631.6518},{"x":38,"y":1572.9243},{"x":39,"y":1525.8313},{"x":40,"y":1491.4072},{"x":41,"y":1452.491},{"x":42,"y":1407.0283},{"x":43,"y":1364.8219},{"x":44,"y":1324.3999},{"x":45,"y":1285.3707},{"x":46,"y":1245.3963},{"x":47,"y":1205.4298},{"x":48,"y":1172.975},{"x":49,"y":1151.8664},{"x":50,"y":1135.9644},{"x":51,"y":1112.919},{"x":52,"y":1089.5399},{"x":53,"y":1070.048},{"x":54,"y":1051.2739},{"x":55,"y":1032.4496},{"x":56,"y":1013.6026},{"x":57,"y":993.1959},{"x":58,"y":972.977},{"x":59,"y":953.3375},{"x":60,"y":936.7445},{"x":61,"y":924.2896},{"x":62,"y":909.1979},{"x":63,"y":898.075},{"x":64,"y":888.4155},{"x":65,"y":866.639},{"x":66,"y":849.7873},{"x":67,"y":843.6005},{"x":68,"y":830.8216},{"x":69,"y":813.7414},{"x":70,"y":796.1059},{"x":71,"y":787.1312},{"x":72,"y":781.821},{"x":73,"y":776.9668},{"x":74,"y":773.711},{"x":75,"y":771.0308},{"x":76,"y":769.5572},{"x":77,"y":762.1573},{"x":78,"y":755.5919},{"x":79,"y":748.7084},{"x":80,"y":744.6876},{"x":81,"y":742.9751},{"x":82,"y":745.0323},{"x":83,"y":746.6802},{"x":84,"y":739.1477},{"x":85,"y":714.0092},{"x":86,"y":684.6236},{"x":87,"y":657.7985},{"x":88,"y":639.7674},{"x":89,"y":616.9143},{"x":90,"y":594.2077},{"x":91,"y":576.7812},{"x":92,"y":557.1305},{"x":93,"y":535.8097},{"x":94,"y":521.4719},{"x":95,"y":491.7572},{"x":96,"y":446.4722},{"x":97,"y":400.0985},{"x":98,"y":369.1684},{"x":99,"y":351.5054},{"x":100,"y":326.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 4p","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 4p.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":246.2534},{"x":1,"y":259.4862},{"x":2,"y":277.4986},{"x":3,"y":285.2216},{"x":4,"y":294.0173},{"x":5,"y":300.7106},{"x":6,"y":306.3066},{"x":7,"y":312.9451},{"x":8,"y":314.0576},{"x":9,"y":314.2408},{"x":10,"y":314.8368},{"x":11,"y":317.026},{"x":12,"y":320.4883},{"x":13,"y":321.852},{"x":14,"y":326.9512},{"x":15,"y":328.7829},{"x":16,"y":328.8389},{"x":17,"y":328.4249},{"x":18,"y":328.2449},{"x":19,"y":327.5129},{"x":20,"y":325.5236},{"x":21,"y":324.4907},{"x":22,"y":322.0809},{"x":23,"y":320.5948},{"x":24,"y":318.2293},{"x":25,"y":312.8317},{"x":26,"y":307.4058},{"x":27,"y":303.2551},{"x":28,"y":297.6031},{"x":29,"y":291.8421},{"x":30,"y":287.2327},{"x":31,"y":280.3822},{"x":32,"y":272.6439},{"x":33,"y":266.0348},{"x":34,"y":260.7282},{"x":35,"y":255.295},{"x":36,"y":251.4279},{"x":37,"y":246.2224},{"x":38,"y":240.9865},{"x":39,"y":232.7538},{"x":40,"y":225.5775},{"x":41,"y":219.1856},{"x":42,"y":212.542},{"x":43,"y":206.4109},{"x":44,"y":198.4776},{"x":45,"y":191.7136},{"x":46,"y":184.8949},{"x":47,"y":177.3725},{"x":48,"y":170.9253},{"x":49,"y":163.2244},{"x":50,"y":158.5991},{"x":51,"y":155.6667},{"x":52,"y":151.1555},{"x":53,"y":149.0065},{"x":54,"y":146.8623},{"x":55,"y":143.5166},{"x":56,"y":142.1431},{"x":57,"y":139.5216},{"x":58,"y":137.763},{"x":59,"y":135.723},{"x":60,"y":134.9706},{"x":61,"y":134.3301},{"x":62,"y":132.7478},{"x":63,"y":128.6403},{"x":64,"y":128.8844},{"x":65,"y":127.1248},{"x":66,"y":124.9873},{"x":67,"y":122.3877},{"x":68,"y":120.8569},{"x":69,"y":119.7062},{"x":70,"y":117.9047},{"x":71,"y":118.1982},{"x":72,"y":117.7951},{"x":73,"y":117.6583},{"x":74,"y":118.3453},{"x":75,"y":121.5278},{"x":76,"y":122.7096},{"x":77,"y":121.637},{"x":78,"y":120.9788},{"x":79,"y":121.9424},{"x":80,"y":124.0766},{"x":81,"y":127.485},{"x":82,"y":128.8032},{"x":83,"y":131.1107},{"x":84,"y":131.5831},{"x":85,"y":131.9437},{"x":86,"y":132.7724},{"x":87,"y":131.3279},{"x":88,"y":130.4136},{"x":89,"y":129.4572},{"x":90,"y":128.3176},{"x":91,"y":127.5929},{"x":92,"y":125.9543},{"x":93,"y":121.9733},{"x":94,"y":114.7188},{"x":95,"y":110.2009},{"x":96,"y":103.4671},{"x":97,"y":97.5537},{"x":98,"y":93.8018},{"x":99,"y":85.5132},{"x":100,"y":78.944}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 4p.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":23.3964},{"x":1,"y":27.5677},{"x":2,"y":33.1487},{"x":3,"y":38.0441},{"x":4,"y":39.9948},{"x":5,"y":41.6577},{"x":6,"y":41.4725},{"x":7,"y":42.5339},{"x":8,"y":41.9263},{"x":9,"y":42.1979},{"x":10,"y":42.9298},{"x":11,"y":43.7589},{"x":12,"y":47.5871},{"x":13,"y":52.4842},{"x":14,"y":56.0057},{"x":15,"y":59.4803},{"x":16,"y":63.3273},{"x":17,"y":64.846},{"x":18,"y":65.7842},{"x":19,"y":67.2184},{"x":20,"y":65.0516},{"x":21,"y":63.3048},{"x":22,"y":63.2549},{"x":23,"y":63.0501},{"x":24,"y":61.1246},{"x":25,"y":58.7209},{"x":26,"y":58.6303},{"x":27,"y":57.2076},{"x":28,"y":56.8928},{"x":29,"y":58.8376},{"x":30,"y":60.7044},{"x":31,"y":60.8714},{"x":32,"y":60.1396},{"x":33,"y":57.9379},{"x":34,"y":54.8886},{"x":35,"y":53.3826},{"x":36,"y":54.1466},{"x":37,"y":52.2331},{"x":38,"y":50.1424},{"x":39,"y":47.0771},{"x":40,"y":44.8462},{"x":41,"y":43.2539},{"x":42,"y":41.6472},{"x":43,"y":40.3653},{"x":44,"y":38.8388},{"x":45,"y":36.4354},{"x":46,"y":34.9368},{"x":47,"y":32.7955},{"x":48,"y":30.5269},{"x":49,"y":29.4819},{"x":50,"y":28.6333},{"x":51,"y":27.4856},{"x":52,"y":30.0795},{"x":53,"y":29.6557},{"x":54,"y":27.9403},{"x":55,"y":27.1986},{"x":56,"y":27.3866},{"x":57,"y":28.5206},{"x":58,"y":29.9391},{"x":59,"y":28.32},{"x":60,"y":26.3162},{"x":61,"y":25.2729},{"x":62,"y":23.8304},{"x":63,"y":23.2192},{"x":64,"y":22.7362},{"x":65,"y":23.9736},{"x":66,"y":26.6035},{"x":67,"y":28.2756},{"x":68,"y":29.7539},{"x":69,"y":29.3688},{"x":70,"y":28.7515},{"x":71,"y":27.8298},{"x":72,"y":26.2974},{"x":73,"y":26.1557},{"x":74,"y":25.338},{"x":75,"y":26.0453},{"x":76,"y":27.9933},{"x":77,"y":26.4202},{"x":78,"y":24.6767},{"x":79,"y":27.4102},{"x":80,"y":27.7946},{"x":81,"y":29.4776},{"x":82,"y":30.8489},{"x":83,"y":30.712},{"x":84,"y":30.2648},{"x":85,"y":27.2451},{"x":86,"y":26.7469},{"x":87,"y":24.9955},{"x":88,"y":22.4077},{"x":89,"y":19.4475},{"x":90,"y":17.9922},{"x":91,"y":17.8824},{"x":92,"y":17.8844},{"x":93,"y":17.4764},{"x":94,"y":19.2903},{"x":95,"y":23.8196},{"x":96,"y":27.6593},{"x":97,"y":29.3031},{"x":98,"y":29.8073},{"x":99,"y":28.1852},{"x":100,"y":24.9341}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area 4p","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 4p.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":177.5613},{"x":1,"y":212.9125},{"x":2,"y":237.2639},{"x":3,"y":246.8467},{"x":4,"y":251.8385},{"x":5,"y":261.0618},{"x":6,"y":273.723},{"x":7,"y":280.7772},{"x":8,"y":285.8265},{"x":9,"y":290.192},{"x":10,"y":297.355},{"x":11,"y":301.9992},{"x":12,"y":303.6063},{"x":13,"y":303.2138},{"x":14,"y":302.084},{"x":15,"y":300.7632},{"x":16,"y":297.0427},{"x":17,"y":296.8666},{"x":18,"y":298.0317},{"x":19,"y":301.7782},{"x":20,"y":301.3352},{"x":21,"y":297.8462},{"x":22,"y":288.1062},{"x":23,"y":280.651},{"x":24,"y":280.3739},{"x":25,"y":284.5969},{"x":26,"y":292.552},{"x":27,"y":297.0228},{"x":28,"y":295.1052},{"x":29,"y":290.6341},{"x":30,"y":282.2568},{"x":31,"y":276.5483},{"x":32,"y":273.3071},{"x":33,"y":272.3669},{"x":34,"y":268.6228},{"x":35,"y":264.066},{"x":36,"y":255.4622},{"x":37,"y":247.7011},{"x":38,"y":244.7823},{"x":39,"y":242.7695},{"x":40,"y":244.436},{"x":41,"y":239.7032},{"x":42,"y":240.084},{"x":43,"y":241.3789},{"x":44,"y":239.0415},{"x":45,"y":231.2252},{"x":46,"y":225.5254},{"x":47,"y":227.1775},{"x":48,"y":229.674},{"x":49,"y":231.0203},{"x":50,"y":226.7826},{"x":51,"y":223.0323},{"x":52,"y":223.463},{"x":53,"y":225.4177},{"x":54,"y":226.4601},{"x":55,"y":223.5417},{"x":56,"y":220.1629},{"x":57,"y":211.5754},{"x":58,"y":206.0136},{"x":59,"y":202.2226},{"x":60,"y":201.2661},{"x":61,"y":203.4258},{"x":62,"y":204.7404},{"x":63,"y":205.0382},{"x":64,"y":208.381},{"x":65,"y":212.1368},{"x":66,"y":214.4771},{"x":67,"y":212.6352},{"x":68,"y":204.4166},{"x":69,"y":196.9347},{"x":70,"y":191.4556},{"x":71,"y":189.1072},{"x":72,"y":190.59},{"x":73,"y":188.3134},{"x":74,"y":184.0019},{"x":75,"y":180.1806},{"x":76,"y":175.4552},{"x":77,"y":173.0925},{"x":78,"y":170.2103},{"x":79,"y":167.2494},{"x":80,"y":164.0523},{"x":81,"y":156.5838},{"x":82,"y":149.7573},{"x":83,"y":149.6057},{"x":84,"y":159.9707},{"x":85,"y":168.7063},{"x":86,"y":168.9057},{"x":87,"y":170.7221},{"x":88,"y":171.0815},{"x":89,"y":169.9085},{"x":90,"y":168.0826},{"x":91,"y":169.9774},{"x":92,"y":175.4958},{"x":93,"y":178.4184},{"x":94,"y":174.982},{"x":95,"y":177.1927},{"x":96,"y":178.7234},{"x":97,"y":176.297},{"x":98,"y":170.38},{"x":99,"y":158.8722},{"x":100,"y":147.2249}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area 4p","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 4p.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":428.9308},{"x":1,"y":495.1403},{"x":2,"y":541.9164},{"x":3,"y":588.555},{"x":4,"y":647.0351},{"x":5,"y":692.3516},{"x":6,"y":724.4157},{"x":7,"y":736.4219},{"x":8,"y":741.1353},{"x":9,"y":742.8676},{"x":10,"y":750.2411},{"x":11,"y":748.3506},{"x":12,"y":734.6194},{"x":13,"y":714.5461},{"x":14,"y":693.3643},{"x":15,"y":676.2287},{"x":16,"y":645.0704},{"x":17,"y":602.1474},{"x":18,"y":552.7692},{"x":19,"y":514.9649},{"x":20,"y":490.3583},{"x":21,"y":439.6608},{"x":22,"y":388.6937},{"x":23,"y":345.0375},{"x":24,"y":300.4365},{"x":25,"y":263.1994},{"x":26,"y":244.5633},{"x":27,"y":225.1518},{"x":28,"y":197.3158},{"x":29,"y":173.332},{"x":30,"y":153.4922},{"x":31,"y":137.1926},{"x":32,"y":129.6507},{"x":33,"y":125.2547},{"x":34,"y":115.9493},{"x":35,"y":106.9346},{"x":36,"y":99.137},{"x":37,"y":93.7743},{"x":38,"y":91.4765},{"x":39,"y":88.9536},{"x":40,"y":85.2524},{"x":41,"y":82.2302},{"x":42,"y":80.2956},{"x":43,"y":79.4478},{"x":44,"y":80.01},{"x":45,"y":81.0778},{"x":46,"y":81.496},{"x":47,"y":82.1455},{"x":48,"y":82.2895},{"x":49,"y":82.5744},{"x":50,"y":83.0285},{"x":51,"y":83.3794},{"x":52,"y":83.746},{"x":53,"y":84.2743},{"x":54,"y":84.9396},{"x":55,"y":84.8718},{"x":56,"y":85.0799},{"x":57,"y":85.1204},{"x":58,"y":83.9936},{"x":59,"y":82.4071},{"x":60,"y":82.0888},{"x":61,"y":83.2833},{"x":62,"y":82.994},{"x":63,"y":82.5629},{"x":64,"y":82.4524},{"x":65,"y":82.6655},{"x":66,"y":83.2486},{"x":67,"y":84.6959},{"x":68,"y":85.0116},{"x":69,"y":85.4611},{"x":70,"y":87.0886},{"x":71,"y":87.4156},{"x":72,"y":86.4148},{"x":73,"y":85.9081},{"x":74,"y":86.8308},{"x":75,"y":88.2356},{"x":76,"y":88.6416},{"x":77,"y":89.0933},{"x":78,"y":90.7302},{"x":79,"y":92.9634},{"x":80,"y":95.5819},{"x":81,"y":96.8833},{"x":82,"y":100.074},{"x":83,"y":103.905},{"x":84,"y":108.4788},{"x":85,"y":111.3809},{"x":86,"y":111.5588},{"x":87,"y":112.7189},{"x":88,"y":113.3942},{"x":89,"y":113.6225},{"x":90,"y":112.8714},{"x":91,"y":111.7206},{"x":92,"y":111.6132},{"x":93,"y":110.3027},{"x":94,"y":107.5104},{"x":95,"y":103.692},{"x":96,"y":99.1192},{"x":97,"y":94.175},{"x":98,"y":90.759},{"x":99,"y":88.0743},{"x":100,"y":86.1116}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 4p","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 4p.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":444.9013},{"x":1,"y":478.853},{"x":2,"y":522.3044},{"x":3,"y":566.3769},{"x":4,"y":611.4381},{"x":5,"y":639.1643},{"x":6,"y":670.3777},{"x":7,"y":709.8891},{"x":8,"y":736.845},{"x":9,"y":751.4612},{"x":10,"y":759.8265},{"x":11,"y":760.0773},{"x":12,"y":755.6988},{"x":13,"y":748.2128},{"x":14,"y":737.3758},{"x":15,"y":714.9009},{"x":16,"y":698.4431},{"x":17,"y":692.0432},{"x":18,"y":693.9772},{"x":19,"y":694.4279},{"x":20,"y":689.9882},{"x":21,"y":673.9338},{"x":22,"y":662.2802},{"x":23,"y":659.3315},{"x":24,"y":647.7461},{"x":25,"y":635.2646},{"x":26,"y":624.9549},{"x":27,"y":613.6821},{"x":28,"y":601.6596},{"x":29,"y":595.9311},{"x":30,"y":585.5849},{"x":31,"y":572.7356},{"x":32,"y":564.8913},{"x":33,"y":552.4053},{"x":34,"y":546.3442},{"x":35,"y":543.6978},{"x":36,"y":537.0066},{"x":37,"y":539.8829},{"x":38,"y":543.2446},{"x":39,"y":539.9692},{"x":40,"y":538.3033},{"x":41,"y":537.9807},{"x":42,"y":535.1719},{"x":43,"y":526.5822},{"x":44,"y":513.5545},{"x":45,"y":514.0201},{"x":46,"y":509.4211},{"x":47,"y":517.0931},{"x":48,"y":529.9028},{"x":49,"y":541.1426},{"x":50,"y":548.2803},{"x":51,"y":550.3827},{"x":52,"y":558.8487},{"x":53,"y":559.927},{"x":54,"y":560.2662},{"x":55,"y":557.1831},{"x":56,"y":548.6018},{"x":57,"y":555.1562},{"x":58,"y":555.5079},{"x":59,"y":557.5307},{"x":60,"y":553.8345},{"x":61,"y":549.0618},{"x":62,"y":537.1122},{"x":63,"y":531.8627},{"x":64,"y":512.7822},{"x":65,"y":500.884},{"x":66,"y":494.9313},{"x":67,"y":503.8626},{"x":68,"y":509.7465},{"x":69,"y":507.8355},{"x":70,"y":516.0139},{"x":71,"y":515.2897},{"x":72,"y":505.1189},{"x":73,"y":499.4815},{"x":74,"y":500.4826},{"x":75,"y":509.1224},{"x":76,"y":520.0008},{"x":77,"y":537.0228},{"x":78,"y":541.7035},{"x":79,"y":540.2282},{"x":80,"y":550.8264},{"x":81,"y":558.0364},{"x":82,"y":554.3041},{"x":83,"y":557.8952},{"x":84,"y":561.7992},{"x":85,"y":560.6808},{"x":86,"y":560.0122},{"x":87,"y":549.6383},{"x":88,"y":544.6991},{"x":89,"y":530.6341},{"x":90,"y":519.7908},{"x":91,"y":503.1348},{"x":92,"y":488.2597},{"x":93,"y":472.8749},{"x":94,"y":453.6037},{"x":95,"y":443.4381},{"x":96,"y":425.9718},{"x":97,"y":392.7833},{"x":98,"y":359.1279},{"x":99,"y":327.3993},{"x":100,"y":302.0907}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area 4p","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 4p.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":108.2147},{"x":1,"y":114.7941},{"x":2,"y":120.2603},{"x":3,"y":125.0035},{"x":4,"y":128.6499},{"x":5,"y":132.0851},{"x":6,"y":134.0588},{"x":7,"y":134.9646},{"x":8,"y":135.1502},{"x":9,"y":136.6637},{"x":10,"y":139.1111},{"x":11,"y":141.3666},{"x":12,"y":143.7458},{"x":13,"y":146.0771},{"x":14,"y":148.2536},{"x":15,"y":149.713},{"x":16,"y":150.2325},{"x":17,"y":149.7311},{"x":18,"y":149.3945},{"x":19,"y":149.9737},{"x":20,"y":150.5448},{"x":21,"y":150.9979},{"x":22,"y":151.4884},{"x":23,"y":152.231},{"x":24,"y":153.3646},{"x":25,"y":153.7209},{"x":26,"y":152.6501},{"x":27,"y":150.9449},{"x":28,"y":150.306},{"x":29,"y":149.1485},{"x":30,"y":145.8366},{"x":31,"y":142.4922},{"x":32,"y":140.3508},{"x":33,"y":137.7917},{"x":34,"y":134.5651},{"x":35,"y":131.6808},{"x":36,"y":128.9564},{"x":37,"y":125.9953},{"x":38,"y":123.1399},{"x":39,"y":120.5989},{"x":40,"y":118.195},{"x":41,"y":115.7174},{"x":42,"y":113.2899},{"x":43,"y":111.0312},{"x":44,"y":109.5123},{"x":45,"y":108.6353},{"x":46,"y":107.6214},{"x":47,"y":106.4588},{"x":48,"y":106.1123},{"x":49,"y":106.3376},{"x":50,"y":106.3804},{"x":51,"y":106.4234},{"x":52,"y":107.1362},{"x":53,"y":108.5413},{"x":54,"y":110.5437},{"x":55,"y":112.1884},{"x":56,"y":112.5979},{"x":57,"y":111.7477},{"x":58,"y":110.9647},{"x":59,"y":110.829},{"x":60,"y":110.451},{"x":61,"y":110.8103},{"x":62,"y":111.6594},{"x":63,"y":111.6352},{"x":64,"y":111.4361},{"x":65,"y":111.1668},{"x":66,"y":111.0769},{"x":67,"y":111.3845},{"x":68,"y":111.3357},{"x":69,"y":110.8876},{"x":70,"y":110.7298},{"x":71,"y":110.6314},{"x":72,"y":110.1852},{"x":73,"y":110.0184},{"x":74,"y":110.7682},{"x":75,"y":111.9656},{"x":76,"y":113.3596},{"x":77,"y":114.1831},{"x":78,"y":113.6895},{"x":79,"y":112.8259},{"x":80,"y":111.3391},{"x":81,"y":108.0408},{"x":82,"y":104.7079},{"x":83,"y":102.3317},{"x":84,"y":100.0946},{"x":85,"y":97.6344},{"x":86,"y":95.0103},{"x":87,"y":92.2051},{"x":88,"y":90.4907},{"x":89,"y":90.0506},{"x":90,"y":89.2417},{"x":91,"y":87.593},{"x":92,"y":85.9571},{"x":93,"y":84.4195},{"x":94,"y":82.4064},{"x":95,"y":79.9042},{"x":96,"y":77.0442},{"x":97,"y":74.3645},{"x":98,"y":71.9937},{"x":99,"y":69.748},{"x":100,"y":67.4857}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 4p.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":405.7916},{"x":1,"y":451.3663},{"x":2,"y":486.7215},{"x":3,"y":556.2107},{"x":4,"y":609.283},{"x":5,"y":645.7985},{"x":6,"y":667.0372},{"x":7,"y":716.559},{"x":8,"y":766.1185},{"x":9,"y":798.6767},{"x":10,"y":810.0016},{"x":11,"y":817.6583},{"x":12,"y":820.0057},{"x":13,"y":809.1266},{"x":14,"y":808.9703},{"x":15,"y":794.2326},{"x":16,"y":772.7793},{"x":17,"y":748.0217},{"x":18,"y":735.2597},{"x":19,"y":723.7105},{"x":20,"y":708.2348},{"x":21,"y":692.1717},{"x":22,"y":683.6878},{"x":23,"y":672.5242},{"x":24,"y":650.3613},{"x":25,"y":634.4599},{"x":26,"y":618.5452},{"x":27,"y":606.5234},{"x":28,"y":592.2186},{"x":29,"y":574.8941},{"x":30,"y":555.0607},{"x":31,"y":540.9853},{"x":32,"y":529.1812},{"x":33,"y":518.2187},{"x":34,"y":501.6061},{"x":35,"y":485.3405},{"x":36,"y":479.7732},{"x":37,"y":468.6642},{"x":38,"y":456.7342},{"x":39,"y":440.1297},{"x":40,"y":435.0405},{"x":41,"y":431.0196},{"x":42,"y":431.2259},{"x":43,"y":433.7448},{"x":44,"y":437.309},{"x":45,"y":436.3714},{"x":46,"y":430.2076},{"x":47,"y":423.0664},{"x":48,"y":423.831},{"x":49,"y":418.9397},{"x":50,"y":409.6095},{"x":51,"y":407.9441},{"x":52,"y":410.3914},{"x":53,"y":406.0006},{"x":54,"y":410.7625},{"x":55,"y":418.8226},{"x":56,"y":424.2864},{"x":57,"y":424.1622},{"x":58,"y":421.3889},{"x":59,"y":415.1754},{"x":60,"y":415.0224},{"x":61,"y":419.8106},{"x":62,"y":421.9317},{"x":63,"y":423.2834},{"x":64,"y":416.2717},{"x":65,"y":418.4447},{"x":66,"y":413.9094},{"x":67,"y":405.157},{"x":68,"y":391.95},{"x":69,"y":386.3918},{"x":70,"y":384.7671},{"x":71,"y":386.3889},{"x":72,"y":375.4532},{"x":73,"y":371.8443},{"x":74,"y":366.1416},{"x":75,"y":357.2842},{"x":76,"y":355.9336},{"x":77,"y":355.7511},{"x":78,"y":353.0054},{"x":79,"y":355.1551},{"x":80,"y":355.1524},{"x":81,"y":355.9313},{"x":82,"y":362.7427},{"x":83,"y":367.925},{"x":84,"y":379.8562},{"x":85,"y":391.2873},{"x":86,"y":400.3471},{"x":87,"y":406.154},{"x":88,"y":414.1834},{"x":89,"y":416.4235},{"x":90,"y":408.1863},{"x":91,"y":404.4585},{"x":92,"y":403.4157},{"x":93,"y":408.1966},{"x":94,"y":418.5663},{"x":95,"y":419.7757},{"x":96,"y":418.716},{"x":97,"y":410.7785},{"x":98,"y":388.4193},{"x":99,"y":373.8454},{"x":100,"y":356.4581}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area 4p","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 4p.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":81.0356},{"x":1,"y":85.4032},{"x":2,"y":91.5277},{"x":3,"y":95.2649},{"x":4,"y":98.9659},{"x":5,"y":101.4835},{"x":6,"y":102.5073},{"x":7,"y":103.2116},{"x":8,"y":103.5853},{"x":9,"y":102.1317},{"x":10,"y":100.4424},{"x":11,"y":98.5238},{"x":12,"y":97.7946},{"x":13,"y":97.9194},{"x":14,"y":98.453},{"x":15,"y":98.4084},{"x":16,"y":98.6345},{"x":17,"y":98.3342},{"x":18,"y":98.0803},{"x":19,"y":98.4198},{"x":20,"y":99.6212},{"x":21,"y":100.3751},{"x":22,"y":100.9769},{"x":23,"y":102.7118},{"x":24,"y":102.9193},{"x":25,"y":103.5926},{"x":26,"y":103.0699},{"x":27,"y":103.2264},{"x":28,"y":102.756},{"x":29,"y":102.0663},{"x":30,"y":102.022},{"x":31,"y":101.9923},{"x":32,"y":102.0377},{"x":33,"y":102.5273},{"x":34,"y":102.7723},{"x":35,"y":102.642},{"x":36,"y":102.2675},{"x":37,"y":101.5016},{"x":38,"y":100.3767},{"x":39,"y":99.8386},{"x":40,"y":99.8115},{"x":41,"y":99.7355},{"x":42,"y":99.8677},{"x":43,"y":100.6552},{"x":44,"y":101.0978},{"x":45,"y":101.2235},{"x":46,"y":101.0145},{"x":47,"y":100.1424},{"x":48,"y":99.1919},{"x":49,"y":98.7438},{"x":50,"y":97.2201},{"x":51,"y":96.1272},{"x":52,"y":94.8739},{"x":53,"y":93.9007},{"x":54,"y":94.0279},{"x":55,"y":94.9375},{"x":56,"y":96.2987},{"x":57,"y":96.7444},{"x":58,"y":96.2991},{"x":59,"y":95.6324},{"x":60,"y":94.5576},{"x":61,"y":92.8479},{"x":62,"y":91.5215},{"x":63,"y":89.8499},{"x":64,"y":88.5296},{"x":65,"y":87.9721},{"x":66,"y":87.3046},{"x":67,"y":86.311},{"x":68,"y":85.6674},{"x":69,"y":85.8799},{"x":70,"y":86.2137},{"x":71,"y":86.1636},{"x":72,"y":85.6039},{"x":73,"y":84.7779},{"x":74,"y":84.3983},{"x":75,"y":85.2993},{"x":76,"y":85.1569},{"x":77,"y":84.6755},{"x":78,"y":83.4431},{"x":79,"y":81.6805},{"x":80,"y":79.8961},{"x":81,"y":79.2903},{"x":82,"y":80.3898},{"x":83,"y":80.8137},{"x":84,"y":80.7606},{"x":85,"y":80.3767},{"x":86,"y":80.0834},{"x":87,"y":79.1542},{"x":88,"y":77.6828},{"x":89,"y":76.7582},{"x":90,"y":75.375},{"x":91,"y":73.7344},{"x":92,"y":72.0057},{"x":93,"y":70.4787},{"x":94,"y":69.9832},{"x":95,"y":69.777},{"x":96,"y":69.4156},{"x":97,"y":68.9271},{"x":98,"y":68.4438},{"x":99,"y":65.4653},{"x":100,"y":62.7346}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 4p","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 4p.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":238.8069},{"x":1,"y":280.2313},{"x":2,"y":325.6811},{"x":3,"y":349.2281},{"x":4,"y":374.0297},{"x":5,"y":393.2599},{"x":6,"y":405.054},{"x":7,"y":417.0671},{"x":8,"y":424.9056},{"x":9,"y":432.4293},{"x":10,"y":435.5911},{"x":11,"y":435.02},{"x":12,"y":433.1668},{"x":13,"y":430.5725},{"x":14,"y":429.3597},{"x":15,"y":428.5402},{"x":16,"y":426.886},{"x":17,"y":421.9685},{"x":18,"y":417.0921},{"x":19,"y":410.6056},{"x":20,"y":403.318},{"x":21,"y":398.3886},{"x":22,"y":392.5697},{"x":23,"y":387.803},{"x":24,"y":382.9819},{"x":25,"y":379.3677},{"x":26,"y":375.6492},{"x":27,"y":370.0806},{"x":28,"y":365.9916},{"x":29,"y":360.2961},{"x":30,"y":356.1784},{"x":31,"y":351.7452},{"x":32,"y":345.845},{"x":33,"y":340.7166},{"x":34,"y":335.1268},{"x":35,"y":330.1108},{"x":36,"y":325.7945},{"x":37,"y":321.3716},{"x":38,"y":317.7494},{"x":39,"y":314.3934},{"x":40,"y":311.6953},{"x":41,"y":309.8798},{"x":42,"y":307.991},{"x":43,"y":305.4804},{"x":44,"y":302.225},{"x":45,"y":299.7676},{"x":46,"y":298.6813},{"x":47,"y":297.5102},{"x":48,"y":297.8277},{"x":49,"y":298.792},{"x":50,"y":299.1612},{"x":51,"y":299.5356},{"x":52,"y":300.5433},{"x":53,"y":300.3015},{"x":54,"y":299.9078},{"x":55,"y":298.5431},{"x":56,"y":295.263},{"x":57,"y":293.6305},{"x":58,"y":291.2533},{"x":59,"y":289.213},{"x":60,"y":287.1969},{"x":61,"y":285.8204},{"x":62,"y":283.6904},{"x":63,"y":281.8311},{"x":64,"y":279.581},{"x":65,"y":277.4034},{"x":66,"y":273.7292},{"x":67,"y":271.641},{"x":68,"y":270.4709},{"x":69,"y":268.7126},{"x":70,"y":267.2965},{"x":71,"y":265.9582},{"x":72,"y":266.1968},{"x":73,"y":266.4517},{"x":74,"y":267.4044},{"x":75,"y":268.4662},{"x":76,"y":269.5347},{"x":77,"y":270.3887},{"x":78,"y":272.2776},{"x":79,"y":274.0281},{"x":80,"y":274.109},{"x":81,"y":274.518},{"x":82,"y":274.8256},{"x":83,"y":275.5447},{"x":84,"y":276.3067},{"x":85,"y":276.4332},{"x":86,"y":274.8957},{"x":87,"y":272.0392},{"x":88,"y":268.3825},{"x":89,"y":261.8862},{"x":90,"y":257.2851},{"x":91,"y":251.2371},{"x":92,"y":245.5257},{"x":93,"y":239.9286},{"x":94,"y":232.077},{"x":95,"y":225.0543},{"x":96,"y":215.0261},{"x":97,"y":203.8563},{"x":98,"y":194.9882},{"x":99,"y":179.5477},{"x":100,"y":168.421}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 4p.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":1362.7526},{"x":1,"y":1623.7655},{"x":2,"y":1931.6576},{"x":3,"y":2072.2325},{"x":4,"y":2226.3597},{"x":5,"y":2293.6503},{"x":6,"y":2337.3374},{"x":7,"y":2353.4959},{"x":8,"y":2380.6},{"x":9,"y":2396.5804},{"x":10,"y":2421.1059},{"x":11,"y":2429.5757},{"x":12,"y":2445.7819},{"x":13,"y":2459.5389},{"x":14,"y":2462.9697},{"x":15,"y":2460.5987},{"x":16,"y":2447.8776},{"x":17,"y":2433.9832},{"x":18,"y":2407.3267},{"x":19,"y":2367.5993},{"x":20,"y":2332.5256},{"x":21,"y":2290.9801},{"x":22,"y":2250.6076},{"x":23,"y":2175.8714},{"x":24,"y":2108.8494},{"x":25,"y":1983.6804},{"x":26,"y":1905.2304},{"x":27,"y":1828.3765},{"x":28,"y":1769.5882},{"x":29,"y":1720.4662},{"x":30,"y":1674.4628},{"x":31,"y":1635.6467},{"x":32,"y":1594.0765},{"x":33,"y":1552.6051},{"x":34,"y":1516.6606},{"x":35,"y":1479.7696},{"x":36,"y":1430.2682},{"x":37,"y":1395.32},{"x":38,"y":1347.4058},{"x":39,"y":1318.4095},{"x":40,"y":1270.2151},{"x":41,"y":1241.4851},{"x":42,"y":1218.3314},{"x":43,"y":1211.3165},{"x":44,"y":1193.297},{"x":45,"y":1174.9505},{"x":46,"y":1140.7864},{"x":47,"y":1109.8595},{"x":48,"y":1080.7802},{"x":49,"y":1063.9305},{"x":50,"y":1042.3092},{"x":51,"y":1031.5677},{"x":52,"y":1024.8403},{"x":53,"y":1016.885},{"x":54,"y":1001.3821},{"x":55,"y":982.0933},{"x":56,"y":969.3594},{"x":57,"y":945.2689},{"x":58,"y":928.9326},{"x":59,"y":905.3721},{"x":60,"y":893.1365},{"x":61,"y":878.9716},{"x":62,"y":865.5179},{"x":63,"y":843.4146},{"x":64,"y":821.0866},{"x":65,"y":814.6251},{"x":66,"y":816.8045},{"x":67,"y":817.7019},{"x":68,"y":817.2266},{"x":69,"y":812.3679},{"x":70,"y":803.0254},{"x":71,"y":802.4512},{"x":72,"y":800.7972},{"x":73,"y":802.2448},{"x":74,"y":801.2546},{"x":75,"y":806.9519},{"x":76,"y":823.2623},{"x":77,"y":831.6546},{"x":78,"y":849.466},{"x":79,"y":857.9146},{"x":80,"y":891.4304},{"x":81,"y":906.4574},{"x":82,"y":915.4269},{"x":83,"y":921.8337},{"x":84,"y":924.4591},{"x":85,"y":928.9587},{"x":86,"y":928.5737},{"x":87,"y":913.8813},{"x":88,"y":909.1288},{"x":89,"y":910.6338},{"x":90,"y":909.2341},{"x":91,"y":893.5264},{"x":92,"y":871.2802},{"x":93,"y":841.0226},{"x":94,"y":803.2697},{"x":95,"y":745.0494},{"x":96,"y":703.5494},{"x":97,"y":636.1194},{"x":98,"y":589.1755},{"x":99,"y":521.9796},{"x":100,"y":472.3728}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area 4p","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 4p.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":179.9836},{"x":1,"y":200.3762},{"x":2,"y":211.451},{"x":3,"y":222.2991},{"x":4,"y":236.1383},{"x":5,"y":248.6507},{"x":6,"y":257.1125},{"x":7,"y":260.5257},{"x":8,"y":264.4934},{"x":9,"y":268.956},{"x":10,"y":273.6446},{"x":11,"y":278.7552},{"x":12,"y":283.4397},{"x":13,"y":287.3162},{"x":14,"y":290.5109},{"x":15,"y":293.9565},{"x":16,"y":297.6853},{"x":17,"y":302.0848},{"x":18,"y":305.7314},{"x":19,"y":309.3778},{"x":20,"y":311.836},{"x":21,"y":313.7182},{"x":22,"y":315.9635},{"x":23,"y":317.9053},{"x":24,"y":318.5886},{"x":25,"y":317.5704},{"x":26,"y":316.6828},{"x":27,"y":315.2617},{"x":28,"y":313.201},{"x":29,"y":309.9313},{"x":30,"y":305.9518},{"x":31,"y":301.3275},{"x":32,"y":297.3132},{"x":33,"y":294.1857},{"x":34,"y":291.9383},{"x":35,"y":291.1475},{"x":36,"y":290.8454},{"x":37,"y":289.9765},{"x":38,"y":287.7755},{"x":39,"y":283.566},{"x":40,"y":277.8046},{"x":41,"y":271.2469},{"x":42,"y":265.0297},{"x":43,"y":259.5282},{"x":44,"y":256.2872},{"x":45,"y":254.189},{"x":46,"y":252.385},{"x":47,"y":250.9218},{"x":48,"y":248.5836},{"x":49,"y":246.0226},{"x":50,"y":243.1453},{"x":51,"y":237.5159},{"x":52,"y":231.7849},{"x":53,"y":227.1036},{"x":54,"y":221.043},{"x":55,"y":216.2664},{"x":56,"y":213.7248},{"x":57,"y":211.1546},{"x":58,"y":207.5552},{"x":59,"y":205.0634},{"x":60,"y":202.3326},{"x":61,"y":199.7527},{"x":62,"y":198.0013},{"x":63,"y":195.9624},{"x":64,"y":193.3749},{"x":65,"y":191.5068},{"x":66,"y":190.5698},{"x":67,"y":188.8002},{"x":68,"y":184.6829},{"x":69,"y":180.51},{"x":70,"y":177.6765},{"x":71,"y":175.3894},{"x":72,"y":172.6601},{"x":73,"y":170.8123},{"x":74,"y":171.7776},{"x":75,"y":173.0175},{"x":76,"y":174.9289},{"x":77,"y":175.5956},{"x":78,"y":176.2603},{"x":79,"y":176.876},{"x":80,"y":176.2783},{"x":81,"y":174.1849},{"x":82,"y":171.6032},{"x":83,"y":169.6317},{"x":84,"y":166.8814},{"x":85,"y":164.6345},{"x":86,"y":162.8298},{"x":87,"y":162.009},{"x":88,"y":161.9841},{"x":89,"y":161.4138},{"x":90,"y":160.5861},{"x":91,"y":160.7514},{"x":92,"y":162.097},{"x":93,"y":163.2675},{"x":94,"y":163.5517},{"x":95,"y":163.2571},{"x":96,"y":162.1044},{"x":97,"y":158.4227},{"x":98,"y":154.081},{"x":99,"y":148.6046},{"x":100,"y":142.329}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area 4p","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 4p.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":647.8443},{"x":1,"y":764.921},{"x":2,"y":911.7294},{"x":3,"y":965.0076},{"x":4,"y":1030.6123},{"x":5,"y":1073.3067},{"x":6,"y":1101.0091},{"x":7,"y":1126.5066},{"x":8,"y":1136.7282},{"x":9,"y":1143.2325},{"x":10,"y":1143.1119},{"x":11,"y":1136.3096},{"x":12,"y":1127.7336},{"x":13,"y":1113.6974},{"x":14,"y":1103.9653},{"x":15,"y":1096.8742},{"x":16,"y":1089.088},{"x":17,"y":1078.5928},{"x":18,"y":1068.66},{"x":19,"y":1058.6944},{"x":20,"y":1043.0274},{"x":21,"y":1028.8727},{"x":22,"y":1013.0906},{"x":23,"y":997.4171},{"x":24,"y":979.6308},{"x":25,"y":968.4887},{"x":26,"y":956.8527},{"x":27,"y":943.2355},{"x":28,"y":929.8372},{"x":29,"y":913.0275},{"x":30,"y":900.7571},{"x":31,"y":885.3778},{"x":32,"y":868.7038},{"x":33,"y":853.8224},{"x":34,"y":840.2669},{"x":35,"y":831.2061},{"x":36,"y":824.5625},{"x":37,"y":817.738},{"x":38,"y":810.0107},{"x":39,"y":802.9903},{"x":40,"y":796.1557},{"x":41,"y":790.8052},{"x":42,"y":790.2412},{"x":43,"y":791.5338},{"x":44,"y":792.9265},{"x":45,"y":792.5888},{"x":46,"y":791.7291},{"x":47,"y":791.6414},{"x":48,"y":792.0469},{"x":49,"y":794.6018},{"x":50,"y":796.1359},{"x":51,"y":794.8847},{"x":52,"y":792.0887},{"x":53,"y":788.6834},{"x":54,"y":782.5741},{"x":55,"y":779.3821},{"x":56,"y":775.92},{"x":57,"y":774.225},{"x":58,"y":767.6827},{"x":59,"y":761.0554},{"x":60,"y":751.196},{"x":61,"y":737.5793},{"x":62,"y":725.6186},{"x":63,"y":720.3813},{"x":64,"y":719.8351},{"x":65,"y":720.8896},{"x":66,"y":717.9423},{"x":67,"y":712.9865},{"x":68,"y":708.1174},{"x":69,"y":706.658},{"x":70,"y":708.9637},{"x":71,"y":708.2627},{"x":72,"y":703.2908},{"x":73,"y":701.796},{"x":74,"y":703.9189},{"x":75,"y":708.9648},{"x":76,"y":716.4255},{"x":77,"y":724.1312},{"x":78,"y":732.6432},{"x":79,"y":739.5911},{"x":80,"y":744.9111},{"x":81,"y":750.717},{"x":82,"y":752.4934},{"x":83,"y":750.2768},{"x":84,"y":745.2086},{"x":85,"y":739.9001},{"x":86,"y":737.4896},{"x":87,"y":732.7},{"x":88,"y":726.2139},{"x":89,"y":720.4608},{"x":90,"y":716.4485},{"x":91,"y":714.3946},{"x":92,"y":711.1947},{"x":93,"y":706.17},{"x":94,"y":693.3673},{"x":95,"y":678.3776},{"x":96,"y":663.0551},{"x":97,"y":642.0024},{"x":98,"y":623.1513},{"x":99,"y":575.478},{"x":100,"y":543.276}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 3b",[{"name":"Receptor density fingerprint of Area 3b","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["162","180","147","541","352","623","601","121","63","283","20","91","291","90","97","31"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 3b (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(17,250,140,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area FG2",[{"name":"Receptor density fingerprint of Area FG2","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["427","490","1315","NA","1933","2329","2918","499","213","871","61","368","522","396","476","114"]},{"label":"mean_sd","data":["65","116","152","NA","292","237","422","72","35","172","12","57","118","74","97","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG2 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,209,56,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area FG2","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area FG2","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG2","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area FG2","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG2","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG2","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area FG2","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area FG2","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG2","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area FG2","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG2","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area FG2","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG2","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area FG2","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area FG2","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_GABAB.jpg"}]],["Density measurements of different receptors for Area hOc1",[{"name":"Receptor density fingerprint of Area hOc1","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area hOc1.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area hOc1. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["500","260","1348","NA ","2508","2187","3882","661","390","524","48","264","347","192","408","102"]},{"label":"mean_sd","data":["223","239","320","NA","828","274","1761","123","35","395","14","59","120","145","198","37"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area hOc1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(250,30,250,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area hOc1","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area hOc1","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area hOc1","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area hOc1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area hOc1","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area hOc1","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area hOc1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area hOc1","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area hOc1","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area hOc1","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area hOc1","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area hOc1","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area hOc1.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":2473.0437},{"x":1,"y":2709.9649},{"x":2,"y":2863.8033},{"x":3,"y":3020.3183},{"x":4,"y":3233.9841},{"x":5,"y":3468.3864},{"x":6,"y":3635.4238},{"x":7,"y":3809.6804},{"x":8,"y":3922.8191},{"x":9,"y":4019.787},{"x":10,"y":4145.7154},{"x":11,"y":4262.8654},{"x":12,"y":4359.3683},{"x":13,"y":4456.6648},{"x":14,"y":4547.5351},{"x":15,"y":4604.5476},{"x":16,"y":4656.1231},{"x":17,"y":4715.721},{"x":18,"y":4772.0907},{"x":19,"y":4824.9797},{"x":20,"y":4872.6302},{"x":21,"y":4899.9467},{"x":22,"y":4919.0758},{"x":23,"y":4943.3431},{"x":24,"y":4967.8908},{"x":25,"y":4992.6181},{"x":26,"y":5010.1393},{"x":27,"y":5022.2447},{"x":28,"y":5025.7343},{"x":29,"y":5018.2688},{"x":30,"y":4999.2744},{"x":31,"y":4980.2195},{"x":32,"y":4950.6731},{"x":33,"y":4911.5604},{"x":34,"y":4864.8777},{"x":35,"y":4814.1784},{"x":36,"y":4758.6408},{"x":37,"y":4700.4906},{"x":38,"y":4639.9174},{"x":39,"y":4574.9785},{"x":40,"y":4518.5558},{"x":41,"y":4445.2934},{"x":42,"y":4347.7528},{"x":43,"y":4266.0345},{"x":44,"y":4171.7632},{"x":45,"y":4066.8372},{"x":46,"y":3968.7016},{"x":47,"y":3893.0113},{"x":48,"y":3810.7725},{"x":49,"y":3722.9195},{"x":50,"y":3628.5303},{"x":51,"y":3522.0748},{"x":52,"y":3419.824},{"x":53,"y":3343.1842},{"x":54,"y":3284.7654},{"x":55,"y":3219.3612},{"x":56,"y":3160.9294},{"x":57,"y":3130.377},{"x":58,"y":3117.2719},{"x":59,"y":3124.664},{"x":60,"y":3149.251},{"x":61,"y":3181.78},{"x":62,"y":3245.5631},{"x":63,"y":3314.7894},{"x":64,"y":3404.5372},{"x":65,"y":3510.9699},{"x":66,"y":3600.425},{"x":67,"y":3682.2393},{"x":68,"y":3771.8579},{"x":69,"y":3851.3836},{"x":70,"y":3895.5587},{"x":71,"y":3909.6633},{"x":72,"y":3911.9156},{"x":73,"y":3885.9771},{"x":74,"y":3822.6901},{"x":75,"y":3726.9774},{"x":76,"y":3619.4826},{"x":77,"y":3509.3705},{"x":78,"y":3405.0033},{"x":79,"y":3311.1286},{"x":80,"y":3188.7399},{"x":81,"y":3074.0034},{"x":82,"y":2972.5357},{"x":83,"y":2888.1664},{"x":84,"y":2811.053},{"x":85,"y":2752.6464},{"x":86,"y":2708.332},{"x":87,"y":2647.6693},{"x":88,"y":2589.5925},{"x":89,"y":2538.7695},{"x":90,"y":2478.0323},{"x":91,"y":2402.2417},{"x":92,"y":2331.6322},{"x":93,"y":2242.612},{"x":94,"y":2123.8865},{"x":95,"y":2017.2915},{"x":96,"y":1867.9429},{"x":97,"y":1730.0878},{"x":98,"y":1630.6138},{"x":99,"y":1527.1209},{"x":100,"y":1383.8565}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area hOc1","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area hOc1.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":168.6749},{"x":1,"y":182.1696},{"x":2,"y":185.3947},{"x":3,"y":187.4005},{"x":4,"y":191.0936},{"x":5,"y":197.8342},{"x":6,"y":209.5895},{"x":7,"y":212.9179},{"x":8,"y":210.3358},{"x":9,"y":204.672},{"x":10,"y":198.3559},{"x":11,"y":192.2141},{"x":12,"y":184.6792},{"x":13,"y":176.5573},{"x":14,"y":167.6668},{"x":15,"y":155.016},{"x":16,"y":139.9113},{"x":17,"y":130.1627},{"x":18,"y":125.9382},{"x":19,"y":123.6029},{"x":20,"y":118.239},{"x":21,"y":113.5298},{"x":22,"y":110.5245},{"x":23,"y":108.3136},{"x":24,"y":102.8691},{"x":25,"y":101.3295},{"x":26,"y":102.7557},{"x":27,"y":101.7567},{"x":28,"y":99.6596},{"x":29,"y":96.9543},{"x":30,"y":93.9327},{"x":31,"y":91.7224},{"x":32,"y":88.1879},{"x":33,"y":85.0743},{"x":34,"y":83.9862},{"x":35,"y":83.5078},{"x":36,"y":83.7018},{"x":37,"y":85.1439},{"x":38,"y":85.7278},{"x":39,"y":86.1452},{"x":40,"y":84.2475},{"x":41,"y":82.1894},{"x":42,"y":78.456},{"x":43,"y":72.7331},{"x":44,"y":68.6578},{"x":45,"y":62.8413},{"x":46,"y":60.8788},{"x":47,"y":62.651},{"x":48,"y":64.8375},{"x":49,"y":64.6198},{"x":50,"y":62.7509},{"x":51,"y":61.7825},{"x":52,"y":57.3576},{"x":53,"y":56.1031},{"x":54,"y":56.3921},{"x":55,"y":58.7134},{"x":56,"y":60.9693},{"x":57,"y":62.4585},{"x":58,"y":59.0945},{"x":59,"y":53.9828},{"x":60,"y":50.213},{"x":61,"y":50.0645},{"x":62,"y":53.8254},{"x":63,"y":59.7737},{"x":64,"y":63.0181},{"x":65,"y":63.9535},{"x":66,"y":64.0462},{"x":67,"y":65.6225},{"x":68,"y":71.6348},{"x":69,"y":76.1939},{"x":70,"y":81.6869},{"x":71,"y":87.3107},{"x":72,"y":91.7488},{"x":73,"y":96.3965},{"x":74,"y":98.7351},{"x":75,"y":102.4217},{"x":76,"y":106.6856},{"x":77,"y":110.8446},{"x":78,"y":116.0606},{"x":79,"y":119.1487},{"x":80,"y":117.2004},{"x":81,"y":112.0626},{"x":82,"y":110.0738},{"x":83,"y":109.4078},{"x":84,"y":112.0437},{"x":85,"y":111.7614},{"x":86,"y":109.5021},{"x":87,"y":103.9489},{"x":88,"y":99.3451},{"x":89,"y":98.5225},{"x":90,"y":97.1939},{"x":91,"y":100.2859},{"x":92,"y":105.9594},{"x":93,"y":111.2528},{"x":94,"y":114.1552},{"x":95,"y":111.1529},{"x":96,"y":98.7504},{"x":97,"y":81.3371},{"x":98,"y":67.5288},{"x":99,"y":56.9752},{"x":100,"y":45.3638}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area hOc1.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":572.0054},{"x":1,"y":614.2075},{"x":2,"y":649.1235},{"x":3,"y":690.7202},{"x":4,"y":711.4168},{"x":5,"y":727.3087},{"x":6,"y":738.8004},{"x":7,"y":739.6577},{"x":8,"y":740.3816},{"x":9,"y":743.605},{"x":10,"y":746.1732},{"x":11,"y":747.2647},{"x":12,"y":745.3762},{"x":13,"y":747.7438},{"x":14,"y":744.0118},{"x":15,"y":732.7667},{"x":16,"y":724.1488},{"x":17,"y":718.3944},{"x":18,"y":709.9797},{"x":19,"y":716.7964},{"x":20,"y":731.8721},{"x":21,"y":739.0177},{"x":22,"y":739.8535},{"x":23,"y":737.4356},{"x":24,"y":732.0279},{"x":25,"y":726.0898},{"x":26,"y":721.8319},{"x":27,"y":713.8019},{"x":28,"y":702.042},{"x":29,"y":685.841},{"x":30,"y":665.4271},{"x":31,"y":653.5912},{"x":32,"y":649.2724},{"x":33,"y":644.9724},{"x":34,"y":650.6951},{"x":35,"y":650.6101},{"x":36,"y":651.3148},{"x":37,"y":652.7863},{"x":38,"y":650.4579},{"x":39,"y":648.0021},{"x":40,"y":647.8156},{"x":41,"y":650.941},{"x":42,"y":650.3177},{"x":43,"y":645.8745},{"x":44,"y":641.2981},{"x":45,"y":635.7545},{"x":46,"y":624.975},{"x":47,"y":624.4013},{"x":48,"y":617.0492},{"x":49,"y":608.5372},{"x":50,"y":605.8666},{"x":51,"y":615.2715},{"x":52,"y":627.1219},{"x":53,"y":635.482},{"x":54,"y":644.3173},{"x":55,"y":649.9436},{"x":56,"y":665.8279},{"x":57,"y":672.7705},{"x":58,"y":674.4},{"x":59,"y":680.3973},{"x":60,"y":681.5213},{"x":61,"y":681.2878},{"x":62,"y":682.9132},{"x":63,"y":683.3346},{"x":64,"y":675.0873},{"x":65,"y":657.7742},{"x":66,"y":633.5167},{"x":67,"y":619.555},{"x":68,"y":600.2568},{"x":69,"y":581.369},{"x":70,"y":566.3398},{"x":71,"y":552.2866},{"x":72,"y":537.1043},{"x":73,"y":520.475},{"x":74,"y":504.502},{"x":75,"y":490.7681},{"x":76,"y":476.7009},{"x":77,"y":463.6569},{"x":78,"y":453.9446},{"x":79,"y":450.2859},{"x":80,"y":451.9531},{"x":81,"y":460.6127},{"x":82,"y":476.086},{"x":83,"y":481.1458},{"x":84,"y":475.1103},{"x":85,"y":458.0221},{"x":86,"y":439.422},{"x":87,"y":420.8552},{"x":88,"y":406.0399},{"x":89,"y":397.0358},{"x":90,"y":406.0541},{"x":91,"y":423.9473},{"x":92,"y":440.2471},{"x":93,"y":450.8751},{"x":94,"y":447.9673},{"x":95,"y":431.8788},{"x":96,"y":417.122},{"x":97,"y":403.7767},{"x":98,"y":382.1547},{"x":99,"y":364.2236},{"x":100,"y":342.4615}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area hOc1","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area hOc1.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1052.5885},{"x":1,"y":1101.1443},{"x":2,"y":1153.1879},{"x":3,"y":1213.3273},{"x":4,"y":1273.632},{"x":5,"y":1333.742},{"x":6,"y":1385.7007},{"x":7,"y":1427.3979},{"x":8,"y":1472.1368},{"x":9,"y":1517.0938},{"x":10,"y":1553.9951},{"x":11,"y":1584.5964},{"x":12,"y":1604.8042},{"x":13,"y":1620.4829},{"x":14,"y":1636.4992},{"x":15,"y":1648.9745},{"x":16,"y":1660.725},{"x":17,"y":1670.5646},{"x":18,"y":1681.9283},{"x":19,"y":1685.7565},{"x":20,"y":1689.3959},{"x":21,"y":1687.323},{"x":22,"y":1685.2188},{"x":23,"y":1684.2764},{"x":24,"y":1692.8372},{"x":25,"y":1694.5134},{"x":26,"y":1692.2493},{"x":27,"y":1690.2391},{"x":28,"y":1690.9645},{"x":29,"y":1693.1758},{"x":30,"y":1679.6812},{"x":31,"y":1661.967},{"x":32,"y":1642.9101},{"x":33,"y":1610.6031},{"x":34,"y":1577.8663},{"x":35,"y":1536.8259},{"x":36,"y":1490.2543},{"x":37,"y":1441.318},{"x":38,"y":1401.5537},{"x":39,"y":1364.837},{"x":40,"y":1342.4044},{"x":41,"y":1318.6012},{"x":42,"y":1300.8426},{"x":43,"y":1288.5195},{"x":44,"y":1276.976},{"x":45,"y":1274.4948},{"x":46,"y":1286.5711},{"x":47,"y":1290.7743},{"x":48,"y":1289.5208},{"x":49,"y":1293.9939},{"x":50,"y":1294.2422},{"x":51,"y":1299.954},{"x":52,"y":1321.752},{"x":53,"y":1343.3275},{"x":54,"y":1372.7546},{"x":55,"y":1394.0418},{"x":56,"y":1425.4556},{"x":57,"y":1452.2623},{"x":58,"y":1475.6817},{"x":59,"y":1499.9404},{"x":60,"y":1513.4978},{"x":61,"y":1518.5183},{"x":62,"y":1529.7354},{"x":63,"y":1541.8937},{"x":64,"y":1540.2387},{"x":65,"y":1528.4263},{"x":66,"y":1506.9652},{"x":67,"y":1476.3935},{"x":68,"y":1428.1851},{"x":69,"y":1362.8467},{"x":70,"y":1298.3711},{"x":71,"y":1233.893},{"x":72,"y":1189.039},{"x":73,"y":1139.1874},{"x":74,"y":1098.413},{"x":75,"y":1047.3563},{"x":76,"y":1020.0548},{"x":77,"y":987.2062},{"x":78,"y":957.9883},{"x":79,"y":934.2743},{"x":80,"y":908.8416},{"x":81,"y":896.0374},{"x":82,"y":889.6003},{"x":83,"y":876.6913},{"x":84,"y":853.6658},{"x":85,"y":840.4487},{"x":86,"y":822.7237},{"x":87,"y":807.963},{"x":88,"y":795.9198},{"x":89,"y":775.4862},{"x":90,"y":754.5063},{"x":91,"y":741.7523},{"x":92,"y":718.9533},{"x":93,"y":701.1496},{"x":94,"y":685.4908},{"x":95,"y":660.0061},{"x":96,"y":634.1871},{"x":97,"y":602.2557},{"x":98,"y":579.7194},{"x":99,"y":558.718},{"x":100,"y":529.4428}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area hOc1","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":565.5327},{"x":1,"y":603.732},{"x":2,"y":657.7538},{"x":3,"y":714.4727},{"x":4,"y":771.9365},{"x":5,"y":819.6543},{"x":6,"y":867.7175},{"x":7,"y":896.3946},{"x":8,"y":913.7756},{"x":9,"y":951.6106},{"x":10,"y":991.8389},{"x":11,"y":1027.8739},{"x":12,"y":1054.4826},{"x":13,"y":1080.7762},{"x":14,"y":1105.0313},{"x":15,"y":1135.6738},{"x":16,"y":1165.7187},{"x":17,"y":1196.5823},{"x":18,"y":1216.0058},{"x":19,"y":1230.7155},{"x":20,"y":1252.3499},{"x":21,"y":1281.8855},{"x":22,"y":1304.6098},{"x":23,"y":1316.7398},{"x":24,"y":1326.0868},{"x":25,"y":1335.2385},{"x":26,"y":1343.1457},{"x":27,"y":1352.9938},{"x":28,"y":1361.8641},{"x":29,"y":1373.8431},{"x":30,"y":1380.7078},{"x":31,"y":1376.2216},{"x":32,"y":1373.659},{"x":33,"y":1370.9288},{"x":34,"y":1362.927},{"x":35,"y":1350.2114},{"x":36,"y":1342.8246},{"x":37,"y":1334.9764},{"x":38,"y":1317.2357},{"x":39,"y":1294.0315},{"x":40,"y":1277.1577},{"x":41,"y":1264.6251},{"x":42,"y":1244.698},{"x":43,"y":1211.2148},{"x":44,"y":1181.7519},{"x":45,"y":1157.1657},{"x":46,"y":1125.8638},{"x":47,"y":1102.6032},{"x":48,"y":1079.2901},{"x":49,"y":1042.8401},{"x":50,"y":1012.3251},{"x":51,"y":982.8416},{"x":52,"y":952.3972},{"x":53,"y":931.584},{"x":54,"y":913.6329},{"x":55,"y":892.8916},{"x":56,"y":879.4261},{"x":57,"y":876.1527},{"x":58,"y":872.8202},{"x":59,"y":860.8477},{"x":60,"y":862.2473},{"x":61,"y":863.4877},{"x":62,"y":860.7376},{"x":63,"y":863.6045},{"x":64,"y":866.3627},{"x":65,"y":869.9129},{"x":66,"y":876.2006},{"x":67,"y":882.1477},{"x":68,"y":890.1761},{"x":69,"y":900.7452},{"x":70,"y":910.7396},{"x":71,"y":919.7907},{"x":72,"y":928.5848},{"x":73,"y":942.6796},{"x":74,"y":953.8475},{"x":75,"y":965.6336},{"x":76,"y":977.4255},{"x":77,"y":992.9898},{"x":78,"y":1006.5748},{"x":79,"y":1014.3239},{"x":80,"y":1026.2165},{"x":81,"y":1037.2182},{"x":82,"y":1044.2283},{"x":83,"y":1042.6564},{"x":84,"y":1038.3188},{"x":85,"y":1027.9061},{"x":86,"y":1013.1014},{"x":87,"y":998.2893},{"x":88,"y":981.9831},{"x":89,"y":967.5264},{"x":90,"y":940.3067},{"x":91,"y":907.9457},{"x":92,"y":876.6847},{"x":93,"y":854.2001},{"x":94,"y":826.2766},{"x":95,"y":773.7516},{"x":96,"y":716.9934},{"x":97,"y":664.677},{"x":98,"y":620.8819},{"x":99,"y":577.8488},{"x":100,"y":544.7912}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":76.2683},{"x":1,"y":75.0167},{"x":2,"y":72.401},{"x":3,"y":68.6732},{"x":4,"y":65.4106},{"x":5,"y":62.2464},{"x":6,"y":58.66},{"x":7,"y":56.7985},{"x":8,"y":55.4758},{"x":9,"y":54.8986},{"x":10,"y":54.7289},{"x":11,"y":52.1096},{"x":12,"y":47.7716},{"x":13,"y":45.0727},{"x":14,"y":43.8235},{"x":15,"y":42.6596},{"x":16,"y":39.3104},{"x":17,"y":38.2129},{"x":18,"y":38.1269},{"x":19,"y":37.5034},{"x":20,"y":37.7552},{"x":21,"y":35.7274},{"x":22,"y":31.441},{"x":23,"y":27.0863},{"x":24,"y":22.9707},{"x":25,"y":19.3137},{"x":26,"y":17.0069},{"x":27,"y":17.7011},{"x":28,"y":20.7183},{"x":29,"y":21.6929},{"x":30,"y":21.8768},{"x":31,"y":22.9711},{"x":32,"y":25.6515},{"x":33,"y":27.2575},{"x":34,"y":27.7914},{"x":35,"y":27.1827},{"x":36,"y":26.2036},{"x":37,"y":25.8425},{"x":38,"y":25.5295},{"x":39,"y":24.9211},{"x":40,"y":26.0603},{"x":41,"y":28.3008},{"x":42,"y":28.9225},{"x":43,"y":29.8913},{"x":44,"y":31.3723},{"x":45,"y":31.8183},{"x":46,"y":31.4389},{"x":47,"y":31.73},{"x":48,"y":31.3142},{"x":49,"y":31.2948},{"x":50,"y":32.0832},{"x":51,"y":32.2978},{"x":52,"y":33.7697},{"x":53,"y":35.3707},{"x":54,"y":37.1318},{"x":55,"y":38.5971},{"x":56,"y":38.9624},{"x":57,"y":36.7528},{"x":58,"y":35.4657},{"x":59,"y":35.6939},{"x":60,"y":34.0771},{"x":61,"y":31.699},{"x":62,"y":30.5999},{"x":63,"y":30.4193},{"x":64,"y":31.6578},{"x":65,"y":37.2199},{"x":66,"y":41.7566},{"x":67,"y":45.7892},{"x":68,"y":49.1681},{"x":69,"y":51.6315},{"x":70,"y":53.3099},{"x":71,"y":51.8012},{"x":72,"y":48.6715},{"x":73,"y":45.9925},{"x":74,"y":44.5297},{"x":75,"y":42.6407},{"x":76,"y":42.1098},{"x":77,"y":41.197},{"x":78,"y":38.6238},{"x":79,"y":36.1996},{"x":80,"y":34.8974},{"x":81,"y":34.7944},{"x":82,"y":34.4504},{"x":83,"y":33.6926},{"x":84,"y":32.3961},{"x":85,"y":32.8857},{"x":86,"y":33.3565},{"x":87,"y":34.7668},{"x":88,"y":39.2503},{"x":89,"y":43.0034},{"x":90,"y":44.4437},{"x":91,"y":45.7973},{"x":92,"y":47.0563},{"x":93,"y":48.2226},{"x":94,"y":48.0095},{"x":95,"y":45.6135},{"x":96,"y":43.2989},{"x":97,"y":42.1107},{"x":98,"y":40.2421},{"x":99,"y":38.7997},{"x":100,"y":36.9082}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area hOc1","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area hOc1.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":441.085},{"x":1,"y":453.4159},{"x":2,"y":464.3631},{"x":3,"y":471.2128},{"x":4,"y":476.2852},{"x":5,"y":483.4172},{"x":6,"y":494.5519},{"x":7,"y":503.1657},{"x":8,"y":511.3589},{"x":9,"y":517.8983},{"x":10,"y":521.7943},{"x":11,"y":525.6308},{"x":12,"y":528.1456},{"x":13,"y":528.6413},{"x":14,"y":528.7076},{"x":15,"y":527.3279},{"x":16,"y":525.7541},{"x":17,"y":525.8783},{"x":18,"y":526.8102},{"x":19,"y":525.2279},{"x":20,"y":522.1177},{"x":21,"y":521.1822},{"x":22,"y":518.7488},{"x":23,"y":516.2637},{"x":24,"y":514.3933},{"x":25,"y":511.2544},{"x":26,"y":508.4808},{"x":27,"y":507.0339},{"x":28,"y":505.6586},{"x":29,"y":503.0545},{"x":30,"y":498.4712},{"x":31,"y":496.9603},{"x":32,"y":494.469},{"x":33,"y":489.0884},{"x":34,"y":483.9921},{"x":35,"y":476.7346},{"x":36,"y":469.3484},{"x":37,"y":464.8594},{"x":38,"y":459.4245},{"x":39,"y":450.1533},{"x":40,"y":437.2998},{"x":41,"y":423.1184},{"x":42,"y":410.2341},{"x":43,"y":396.3509},{"x":44,"y":381.9339},{"x":45,"y":371.2945},{"x":46,"y":365.5805},{"x":47,"y":355.5038},{"x":48,"y":341.7607},{"x":49,"y":328.7836},{"x":50,"y":315.8527},{"x":51,"y":305.7668},{"x":52,"y":296.629},{"x":53,"y":288.6043},{"x":54,"y":284.6497},{"x":55,"y":283.4328},{"x":56,"y":281.6549},{"x":57,"y":278.3931},{"x":58,"y":277.779},{"x":59,"y":279.7791},{"x":60,"y":283.8625},{"x":61,"y":288.4781},{"x":62,"y":291.6397},{"x":63,"y":293.0356},{"x":64,"y":295.34},{"x":65,"y":300.0218},{"x":66,"y":304.016},{"x":67,"y":306.3743},{"x":68,"y":309.2145},{"x":69,"y":313.4108},{"x":70,"y":316.5417},{"x":71,"y":320.9665},{"x":72,"y":323.6716},{"x":73,"y":325.5495},{"x":74,"y":327.8367},{"x":75,"y":329.5919},{"x":76,"y":332.1727},{"x":77,"y":336.1006},{"x":78,"y":341.3651},{"x":79,"y":344.5652},{"x":80,"y":345.9074},{"x":81,"y":346.5085},{"x":82,"y":346.2388},{"x":83,"y":346.2171},{"x":84,"y":344.782},{"x":85,"y":340.1649},{"x":86,"y":334.1118},{"x":87,"y":328.4941},{"x":88,"y":326.0946},{"x":89,"y":323.1798},{"x":90,"y":318.4895},{"x":91,"y":311.8383},{"x":92,"y":304.786},{"x":93,"y":296.6544},{"x":94,"y":288.1467},{"x":95,"y":278.0743},{"x":96,"y":270.0905},{"x":97,"y":264.1711},{"x":98,"y":255.5504},{"x":99,"y":240.4933},{"x":100,"y":223.9617}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area hOc1","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":277.0141},{"x":1,"y":293.8962},{"x":2,"y":311.1592},{"x":3,"y":326.4593},{"x":4,"y":346.5845},{"x":5,"y":369.2813},{"x":6,"y":382.2811},{"x":7,"y":394.0113},{"x":8,"y":400.4228},{"x":9,"y":403.8859},{"x":10,"y":410.9967},{"x":11,"y":412.9813},{"x":12,"y":412.7875},{"x":13,"y":412.2535},{"x":14,"y":412.1029},{"x":15,"y":409.3777},{"x":16,"y":402.7065},{"x":17,"y":394.2997},{"x":18,"y":382.7924},{"x":19,"y":369.8792},{"x":20,"y":354.0808},{"x":21,"y":341.8975},{"x":22,"y":331.0868},{"x":23,"y":318.3883},{"x":24,"y":301.0037},{"x":25,"y":281.3906},{"x":26,"y":259.2463},{"x":27,"y":238.5027},{"x":28,"y":223.1992},{"x":29,"y":208.9446},{"x":30,"y":196.0971},{"x":31,"y":180.5171},{"x":32,"y":166.1122},{"x":33,"y":157.3355},{"x":34,"y":151.5574},{"x":35,"y":142.8464},{"x":36,"y":134.7217},{"x":37,"y":128.6889},{"x":38,"y":124.3928},{"x":39,"y":120.3172},{"x":40,"y":116.1346},{"x":41,"y":111.29},{"x":42,"y":108.477},{"x":43,"y":107.1111},{"x":44,"y":104.8382},{"x":45,"y":101.7875},{"x":46,"y":99.0924},{"x":47,"y":97.3351},{"x":48,"y":93.1004},{"x":49,"y":91.1935},{"x":50,"y":88.2579},{"x":51,"y":85.0275},{"x":52,"y":83.6336},{"x":53,"y":82.4392},{"x":54,"y":81.4082},{"x":55,"y":80.0332},{"x":56,"y":79.994},{"x":57,"y":79.63},{"x":58,"y":80.3098},{"x":59,"y":81.5769},{"x":60,"y":81.1647},{"x":61,"y":80.9678},{"x":62,"y":82.7681},{"x":63,"y":82.2918},{"x":64,"y":80.0518},{"x":65,"y":78.6589},{"x":66,"y":79.7955},{"x":67,"y":79.4244},{"x":68,"y":79.3766},{"x":69,"y":79.737},{"x":70,"y":77.8016},{"x":71,"y":78.0166},{"x":72,"y":79.6687},{"x":73,"y":79.755},{"x":74,"y":79.1304},{"x":75,"y":79.4092},{"x":76,"y":81.7275},{"x":77,"y":85.3492},{"x":78,"y":86.9633},{"x":79,"y":89.0619},{"x":80,"y":90.2202},{"x":81,"y":90.9334},{"x":82,"y":93.4774},{"x":83,"y":96.3332},{"x":84,"y":96.625},{"x":85,"y":97.2223},{"x":86,"y":98.333},{"x":87,"y":98.3652},{"x":88,"y":98.6111},{"x":89,"y":98.1908},{"x":90,"y":98.6281},{"x":91,"y":97.1698},{"x":92,"y":95.6972},{"x":93,"y":93.6332},{"x":94,"y":90.3818},{"x":95,"y":87.8648},{"x":96,"y":82.8942},{"x":97,"y":79.1579},{"x":98,"y":77.5917},{"x":99,"y":75.3425},{"x":100,"y":71.4874}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area hOc1","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area hOc1.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":111.7024},{"x":1,"y":120.7676},{"x":2,"y":124.713},{"x":3,"y":128.666},{"x":4,"y":133.3706},{"x":5,"y":138.896},{"x":6,"y":146.7855},{"x":7,"y":152.7374},{"x":8,"y":159.7736},{"x":9,"y":166.8849},{"x":10,"y":169.8943},{"x":11,"y":170.3749},{"x":12,"y":168.1731},{"x":13,"y":167.2757},{"x":14,"y":170.4316},{"x":15,"y":172.5422},{"x":16,"y":178.5668},{"x":17,"y":186.3632},{"x":18,"y":190.8588},{"x":19,"y":193.3013},{"x":20,"y":194.0643},{"x":21,"y":197.1141},{"x":22,"y":203.1535},{"x":23,"y":212.6348},{"x":24,"y":216.715},{"x":25,"y":214.0611},{"x":26,"y":209.2847},{"x":27,"y":202.3903},{"x":28,"y":200.1492},{"x":29,"y":206.1437},{"x":30,"y":214.2428},{"x":31,"y":221.7666},{"x":32,"y":225.5812},{"x":33,"y":222.7095},{"x":34,"y":218.3648},{"x":35,"y":210.9264},{"x":36,"y":206.6764},{"x":37,"y":205.0837},{"x":38,"y":201.9195},{"x":39,"y":197.1396},{"x":40,"y":186.0637},{"x":41,"y":176.2788},{"x":42,"y":167.1833},{"x":43,"y":162.1711},{"x":44,"y":160.3854},{"x":45,"y":160.8925},{"x":46,"y":166.0948},{"x":47,"y":169.1525},{"x":48,"y":171.3924},{"x":49,"y":175.9716},{"x":50,"y":178.3272},{"x":51,"y":178.3115},{"x":52,"y":173.934},{"x":53,"y":168.2591},{"x":54,"y":159.7846},{"x":55,"y":156.036},{"x":56,"y":155.0899},{"x":57,"y":161.3088},{"x":58,"y":170.2551},{"x":59,"y":178.6887},{"x":60,"y":185.8098},{"x":61,"y":190.9348},{"x":62,"y":195.1153},{"x":63,"y":197.8296},{"x":64,"y":199.6482},{"x":65,"y":201.0436},{"x":66,"y":198.4942},{"x":67,"y":189.6844},{"x":68,"y":179.744},{"x":69,"y":168.5765},{"x":70,"y":161.2516},{"x":71,"y":158.3052},{"x":72,"y":161.4},{"x":73,"y":170.7534},{"x":74,"y":183.4262},{"x":75,"y":191.2723},{"x":76,"y":200.1538},{"x":77,"y":206.8902},{"x":78,"y":210.5596},{"x":79,"y":211.2033},{"x":80,"y":211.3832},{"x":81,"y":210.9054},{"x":82,"y":209.4243},{"x":83,"y":205.4435},{"x":84,"y":201.1329},{"x":85,"y":197.5022},{"x":86,"y":194.4099},{"x":87,"y":189.4452},{"x":88,"y":182.6296},{"x":89,"y":177.4467},{"x":90,"y":177.2075},{"x":91,"y":179.9399},{"x":92,"y":185.1795},{"x":93,"y":189.6287},{"x":94,"y":191.4508},{"x":95,"y":188.6204},{"x":96,"y":179.9949},{"x":97,"y":168.4251},{"x":98,"y":151.9648},{"x":99,"y":136.9735},{"x":100,"y":112.6901}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area hOc1.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":296.5185},{"x":1,"y":310.0072},{"x":2,"y":323.6652},{"x":3,"y":341.0282},{"x":4,"y":349.2329},{"x":5,"y":356.5307},{"x":6,"y":357.9476},{"x":7,"y":352.3415},{"x":8,"y":344.777},{"x":9,"y":338.6273},{"x":10,"y":334.1112},{"x":11,"y":332.0932},{"x":12,"y":331.5188},{"x":13,"y":328.8927},{"x":14,"y":328.0489},{"x":15,"y":323.2791},{"x":16,"y":316.9786},{"x":17,"y":310.6167},{"x":18,"y":303.2973},{"x":19,"y":298.0369},{"x":20,"y":295.6883},{"x":21,"y":293.3655},{"x":22,"y":289.7928},{"x":23,"y":288.8423},{"x":24,"y":285.8074},{"x":25,"y":278.3854},{"x":26,"y":275.6608},{"x":27,"y":268.4886},{"x":28,"y":260.6856},{"x":29,"y":253.0161},{"x":30,"y":249.18},{"x":31,"y":245.06},{"x":32,"y":243.1107},{"x":33,"y":241.5847},{"x":34,"y":233.3878},{"x":35,"y":225.3179},{"x":36,"y":217.5141},{"x":37,"y":205.2174},{"x":38,"y":198.9368},{"x":39,"y":195.3924},{"x":40,"y":188.3596},{"x":41,"y":182.7604},{"x":42,"y":177.7724},{"x":43,"y":167.8532},{"x":44,"y":165.2347},{"x":45,"y":161.148},{"x":46,"y":156.3672},{"x":47,"y":154.1189},{"x":48,"y":153.6221},{"x":49,"y":149.8172},{"x":50,"y":147.2099},{"x":51,"y":144.5575},{"x":52,"y":144.755},{"x":53,"y":142.919},{"x":54,"y":145.3835},{"x":55,"y":147.7908},{"x":56,"y":146.9777},{"x":57,"y":146.862},{"x":58,"y":149.7686},{"x":59,"y":153.0596},{"x":60,"y":155.5628},{"x":61,"y":160.2682},{"x":62,"y":166.7621},{"x":63,"y":175.6181},{"x":64,"y":177.1999},{"x":65,"y":177.6232},{"x":66,"y":177.3875},{"x":67,"y":181.1511},{"x":68,"y":180.7511},{"x":69,"y":178.4602},{"x":70,"y":179.1944},{"x":71,"y":181.6564},{"x":72,"y":187.3608},{"x":73,"y":192.4361},{"x":74,"y":197.441},{"x":75,"y":204.5389},{"x":76,"y":211.8954},{"x":77,"y":219.3225},{"x":78,"y":221.5775},{"x":79,"y":226.2557},{"x":80,"y":227.5431},{"x":81,"y":226.7665},{"x":82,"y":229.3286},{"x":83,"y":229.5464},{"x":84,"y":233.8443},{"x":85,"y":234.6858},{"x":86,"y":240.5448},{"x":87,"y":247.6617},{"x":88,"y":252.0637},{"x":89,"y":257.513},{"x":90,"y":261.6658},{"x":91,"y":259.2819},{"x":92,"y":254.2516},{"x":93,"y":249.9736},{"x":94,"y":243.1471},{"x":95,"y":231.5393},{"x":96,"y":225.1279},{"x":97,"y":216.5944},{"x":98,"y":209.4079},{"x":99,"y":206.6908},{"x":100,"y":201.3045}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area hOc1","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area hOc1.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":207.7441},{"x":1,"y":215.511},{"x":2,"y":226.0892},{"x":3,"y":235.031},{"x":4,"y":238.9458},{"x":5,"y":241.4951},{"x":6,"y":245.7857},{"x":7,"y":252.3796},{"x":8,"y":254.8791},{"x":9,"y":259.0769},{"x":10,"y":264.0641},{"x":11,"y":268.4594},{"x":12,"y":273.8793},{"x":13,"y":279.9837},{"x":14,"y":282.8553},{"x":15,"y":284.6941},{"x":16,"y":289.7838},{"x":17,"y":293.2425},{"x":18,"y":293.798},{"x":19,"y":291.4762},{"x":20,"y":285.3904},{"x":21,"y":283.266},{"x":22,"y":281.3792},{"x":23,"y":278.3961},{"x":24,"y":277.8827},{"x":25,"y":276.6527},{"x":26,"y":271.455},{"x":27,"y":268.8769},{"x":28,"y":265.5565},{"x":29,"y":261.3125},{"x":30,"y":257.7901},{"x":31,"y":255.3523},{"x":32,"y":252.8395},{"x":33,"y":250.7056},{"x":34,"y":249.2335},{"x":35,"y":249.1512},{"x":36,"y":248.2857},{"x":37,"y":247.0389},{"x":38,"y":247.9175},{"x":39,"y":248.2511},{"x":40,"y":248.9341},{"x":41,"y":249.4854},{"x":42,"y":249.5802},{"x":43,"y":249.6495},{"x":44,"y":247.9311},{"x":45,"y":246.6846},{"x":46,"y":244.8176},{"x":47,"y":242.3142},{"x":48,"y":240.3888},{"x":49,"y":237.3486},{"x":50,"y":234.6358},{"x":51,"y":230.491},{"x":52,"y":226.5043},{"x":53,"y":222.2163},{"x":54,"y":219.9779},{"x":55,"y":215.9688},{"x":56,"y":214.1612},{"x":57,"y":212.1285},{"x":58,"y":211.9612},{"x":59,"y":212.3389},{"x":60,"y":211.5356},{"x":61,"y":212.6048},{"x":62,"y":216.3678},{"x":63,"y":221.0559},{"x":64,"y":223.8181},{"x":65,"y":226.5403},{"x":66,"y":227.4622},{"x":67,"y":227.9431},{"x":68,"y":230.2788},{"x":69,"y":233.2172},{"x":70,"y":237.4031},{"x":71,"y":239.3619},{"x":72,"y":241.897},{"x":73,"y":246.6127},{"x":74,"y":253.0889},{"x":75,"y":258.2004},{"x":76,"y":261.0606},{"x":77,"y":264.0636},{"x":78,"y":268.5683},{"x":79,"y":274.3705},{"x":80,"y":277.8342},{"x":81,"y":285.054},{"x":82,"y":290.7287},{"x":83,"y":292.6989},{"x":84,"y":292.3012},{"x":85,"y":290.8193},{"x":86,"y":289.8784},{"x":87,"y":292.4998},{"x":88,"y":297.0705},{"x":89,"y":298.7731},{"x":90,"y":299.3802},{"x":91,"y":299.2742},{"x":92,"y":298.5046},{"x":93,"y":300.3571},{"x":94,"y":299.3348},{"x":95,"y":295.7797},{"x":96,"y":290.9805},{"x":97,"y":282.4275},{"x":98,"y":266.5104},{"x":99,"y":253.4289},{"x":100,"y":243.1836}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area hOc1.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":747.2266},{"x":1,"y":865.6087},{"x":2,"y":946.5255},{"x":3,"y":998.8131},{"x":4,"y":1041.1623},{"x":5,"y":1082.1014},{"x":6,"y":1113.3147},{"x":7,"y":1136.6045},{"x":8,"y":1152.5531},{"x":9,"y":1156.4684},{"x":10,"y":1161.711},{"x":11,"y":1164.093},{"x":12,"y":1163.7677},{"x":13,"y":1165.4596},{"x":14,"y":1167.5281},{"x":15,"y":1164.0925},{"x":16,"y":1159.3774},{"x":17,"y":1160.1835},{"x":18,"y":1164.7982},{"x":19,"y":1163.8683},{"x":20,"y":1155.6704},{"x":21,"y":1145.5185},{"x":22,"y":1140.9926},{"x":23,"y":1140.6158},{"x":24,"y":1141.4056},{"x":25,"y":1139.1365},{"x":26,"y":1134.0535},{"x":27,"y":1130.0171},{"x":28,"y":1117.8305},{"x":29,"y":1103.4632},{"x":30,"y":1078.4865},{"x":31,"y":1054.6395},{"x":32,"y":1036.7652},{"x":33,"y":1027.3206},{"x":34,"y":1013.9538},{"x":35,"y":994.1636},{"x":36,"y":973.5138},{"x":37,"y":947.6866},{"x":38,"y":904.1716},{"x":39,"y":844.7921},{"x":40,"y":773.3199},{"x":41,"y":706.9926},{"x":42,"y":652.7577},{"x":43,"y":616.1192},{"x":44,"y":588.1246},{"x":45,"y":562.5917},{"x":46,"y":543.9291},{"x":47,"y":532.2594},{"x":48,"y":527.498},{"x":49,"y":524.0085},{"x":50,"y":523.3199},{"x":51,"y":526.589},{"x":52,"y":536.6216},{"x":53,"y":551.9353},{"x":54,"y":576.6846},{"x":55,"y":607.8316},{"x":56,"y":638.6868},{"x":57,"y":661.2896},{"x":58,"y":678.8031},{"x":59,"y":689.3389},{"x":60,"y":695.9724},{"x":61,"y":693.1446},{"x":62,"y":681.0257},{"x":63,"y":663.0234},{"x":64,"y":648.1835},{"x":65,"y":636.9734},{"x":66,"y":628.1691},{"x":67,"y":632.0165},{"x":68,"y":645.8549},{"x":69,"y":683.0799},{"x":70,"y":735.4547},{"x":71,"y":784.1169},{"x":72,"y":816.0836},{"x":73,"y":831.1279},{"x":74,"y":824.7145},{"x":75,"y":813.242},{"x":76,"y":794.0377},{"x":77,"y":770.6568},{"x":78,"y":752.071},{"x":79,"y":731.3164},{"x":80,"y":709.231},{"x":81,"y":693.622},{"x":82,"y":678.3714},{"x":83,"y":670.9507},{"x":84,"y":672.3956},{"x":85,"y":674.3531},{"x":86,"y":680.4494},{"x":87,"y":681.3667},{"x":88,"y":681.4286},{"x":89,"y":673.1429},{"x":90,"y":660.9871},{"x":91,"y":649.7518},{"x":92,"y":637.4919},{"x":93,"y":629.1207},{"x":94,"y":618.5734},{"x":95,"y":589.9535},{"x":96,"y":548.6126},{"x":97,"y":511.9469},{"x":98,"y":472.9624},{"x":99,"y":433.5808},{"x":100,"y":387.2545}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area hOc1.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1996.4791},{"x":1,"y":1991.9309},{"x":2,"y":1991.5574},{"x":3,"y":1992.9584},{"x":4,"y":1989.7499},{"x":5,"y":1979.245},{"x":6,"y":1952.4576},{"x":7,"y":1928.766},{"x":8,"y":1899.0324},{"x":9,"y":1865.01},{"x":10,"y":1828.0118},{"x":11,"y":1791.4461},{"x":12,"y":1756.2043},{"x":13,"y":1721.0255},{"x":14,"y":1691.8148},{"x":15,"y":1658.0648},{"x":16,"y":1618.3138},{"x":17,"y":1573.6074},{"x":18,"y":1532.8729},{"x":19,"y":1509.9391},{"x":20,"y":1490.2826},{"x":21,"y":1474.6163},{"x":22,"y":1465.5071},{"x":23,"y":1455.6628},{"x":24,"y":1431.5574},{"x":25,"y":1395.7647},{"x":26,"y":1369.1576},{"x":27,"y":1342.4632},{"x":28,"y":1312.4197},{"x":29,"y":1298.4521},{"x":30,"y":1291.8523},{"x":31,"y":1279.4106},{"x":32,"y":1266.165},{"x":33,"y":1250.7491},{"x":34,"y":1228.2233},{"x":35,"y":1201.9093},{"x":36,"y":1177.4919},{"x":37,"y":1153.0602},{"x":38,"y":1124.7354},{"x":39,"y":1100.6607},{"x":40,"y":1080.107},{"x":41,"y":1051.4967},{"x":42,"y":1025.2485},{"x":43,"y":1013.5788},{"x":44,"y":995.9743},{"x":45,"y":978.1474},{"x":46,"y":976.2809},{"x":47,"y":965.7277},{"x":48,"y":945.6575},{"x":49,"y":929.7303},{"x":50,"y":923.0048},{"x":51,"y":902.8096},{"x":52,"y":879.9849},{"x":53,"y":858.0834},{"x":54,"y":841.089},{"x":55,"y":837.0503},{"x":56,"y":836.3678},{"x":57,"y":845.7571},{"x":58,"y":858.0552},{"x":59,"y":858.9432},{"x":60,"y":861.4869},{"x":61,"y":862.8272},{"x":62,"y":869.6961},{"x":63,"y":873.5004},{"x":64,"y":882.8428},{"x":65,"y":901.0304},{"x":66,"y":941.8052},{"x":67,"y":975.8809},{"x":68,"y":1009.0027},{"x":69,"y":1042.7596},{"x":70,"y":1085.387},{"x":71,"y":1117.7279},{"x":72,"y":1152.289},{"x":73,"y":1191.0298},{"x":74,"y":1224.914},{"x":75,"y":1256.1998},{"x":76,"y":1288.5968},{"x":77,"y":1315.6137},{"x":78,"y":1332.3173},{"x":79,"y":1341.2356},{"x":80,"y":1336.4158},{"x":81,"y":1336.1764},{"x":82,"y":1328.0444},{"x":83,"y":1315.1316},{"x":84,"y":1293.852},{"x":85,"y":1270.8022},{"x":86,"y":1261.7084},{"x":87,"y":1253.1999},{"x":88,"y":1241.4214},{"x":89,"y":1236.8467},{"x":90,"y":1229.6931},{"x":91,"y":1216.0618},{"x":92,"y":1191.2109},{"x":93,"y":1164.7855},{"x":94,"y":1130.8177},{"x":95,"y":1089.9143},{"x":96,"y":1043.555},{"x":97,"y":992.5167},{"x":98,"y":938.9935},{"x":99,"y":890.8645},{"x":100,"y":847.4022}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area hOc1","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":331.8035},{"x":1,"y":341.8175},{"x":2,"y":351.839},{"x":3,"y":361.9529},{"x":4,"y":372.8824},{"x":5,"y":384.1077},{"x":6,"y":393.6793},{"x":7,"y":398.3036},{"x":8,"y":401.2285},{"x":9,"y":402.6239},{"x":10,"y":403.1382},{"x":11,"y":403.5769},{"x":12,"y":404.2446},{"x":13,"y":404.5654},{"x":14,"y":404.309},{"x":15,"y":403.9007},{"x":16,"y":403.2127},{"x":17,"y":402.5041},{"x":18,"y":402.3908},{"x":19,"y":402.158},{"x":20,"y":401.2335},{"x":21,"y":399.807},{"x":22,"y":398.6523},{"x":23,"y":398.859},{"x":24,"y":401.93},{"x":25,"y":405.4041},{"x":26,"y":408.2006},{"x":27,"y":410.4632},{"x":28,"y":413.0316},{"x":29,"y":417.2912},{"x":30,"y":422.7087},{"x":31,"y":428.1427},{"x":32,"y":432.0671},{"x":33,"y":434.7887},{"x":34,"y":437.5058},{"x":35,"y":437.952},{"x":36,"y":438.2973},{"x":37,"y":438.9784},{"x":38,"y":441.1463},{"x":39,"y":443.2481},{"x":40,"y":444.6074},{"x":41,"y":443.973},{"x":42,"y":443.295},{"x":43,"y":442.7157},{"x":44,"y":441.9489},{"x":45,"y":440.7082},{"x":46,"y":439.0657},{"x":47,"y":437.3753},{"x":48,"y":435.3961},{"x":49,"y":433.5371},{"x":50,"y":431.7816},{"x":51,"y":430.3912},{"x":52,"y":429.2515},{"x":53,"y":428.2003},{"x":54,"y":426.5748},{"x":55,"y":425.349},{"x":56,"y":424.6872},{"x":57,"y":424.8024},{"x":58,"y":425.3623},{"x":59,"y":426.5301},{"x":60,"y":428.491},{"x":61,"y":430.8133},{"x":62,"y":433.1227},{"x":63,"y":434.5956},{"x":64,"y":435.1387},{"x":65,"y":435.9223},{"x":66,"y":437.5266},{"x":67,"y":438.9172},{"x":68,"y":439.8167},{"x":69,"y":439.6906},{"x":70,"y":438.5755},{"x":71,"y":437.6683},{"x":72,"y":435.9918},{"x":73,"y":433.0423},{"x":74,"y":429.5751},{"x":75,"y":424.4398},{"x":76,"y":418.0263},{"x":77,"y":411.0302},{"x":78,"y":404.3113},{"x":79,"y":398.0299},{"x":80,"y":391.7155},{"x":81,"y":386.2348},{"x":82,"y":380.4688},{"x":83,"y":373.7935},{"x":84,"y":365.6567},{"x":85,"y":356.9932},{"x":86,"y":348.8486},{"x":87,"y":342.0671},{"x":88,"y":335.9903},{"x":89,"y":329.1074},{"x":90,"y":321.5039},{"x":91,"y":314.0194},{"x":92,"y":308.2192},{"x":93,"y":303.7542},{"x":94,"y":298.8987},{"x":95,"y":293.8996},{"x":96,"y":289.5817},{"x":97,"y":285.4463},{"x":98,"y":281.4969},{"x":99,"y":277.2663},{"x":100,"y":273.0395}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area hOc1","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area hOc1.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1950.3144},{"x":1,"y":2100.9605},{"x":2,"y":2203.5831},{"x":3,"y":2292.5689},{"x":4,"y":2374.8703},{"x":5,"y":2468.2905},{"x":6,"y":2533.873},{"x":7,"y":2562.5636},{"x":8,"y":2577.8818},{"x":9,"y":2584.4019},{"x":10,"y":2574.9019},{"x":11,"y":2548.707},{"x":12,"y":2528.7062},{"x":13,"y":2517.7172},{"x":14,"y":2514.4521},{"x":15,"y":2515.2127},{"x":16,"y":2526.5504},{"x":17,"y":2521.6832},{"x":18,"y":2514.001},{"x":19,"y":2508.318},{"x":20,"y":2503.7046},{"x":21,"y":2495.8885},{"x":22,"y":2489.0215},{"x":23,"y":2472.4367},{"x":24,"y":2453.2604},{"x":25,"y":2436.9792},{"x":26,"y":2426.0322},{"x":27,"y":2401.5488},{"x":28,"y":2367.3584},{"x":29,"y":2347.5592},{"x":30,"y":2345.3507},{"x":31,"y":2350.1742},{"x":32,"y":2364.6761},{"x":33,"y":2377.745},{"x":34,"y":2388.1031},{"x":35,"y":2392.8357},{"x":36,"y":2381.181},{"x":37,"y":2358.0164},{"x":38,"y":2338.2177},{"x":39,"y":2286.6437},{"x":40,"y":2215.0929},{"x":41,"y":2144.7276},{"x":42,"y":2055.18},{"x":43,"y":1975.3623},{"x":44,"y":1904.9242},{"x":45,"y":1863.8506},{"x":46,"y":1826.266},{"x":47,"y":1768.0006},{"x":48,"y":1703.9164},{"x":49,"y":1597.3341},{"x":50,"y":1487.9582},{"x":51,"y":1343.9926},{"x":52,"y":1223.3642},{"x":53,"y":1150.7738},{"x":54,"y":1064.9452},{"x":55,"y":1007.5237},{"x":56,"y":972.607},{"x":57,"y":964.5922},{"x":58,"y":970.2298},{"x":59,"y":974.8202},{"x":60,"y":973.0334},{"x":61,"y":970.4423},{"x":62,"y":974.261},{"x":63,"y":990.6322},{"x":64,"y":1010.2082},{"x":65,"y":1032.1683},{"x":66,"y":1057.9906},{"x":67,"y":1083.1967},{"x":68,"y":1107.8037},{"x":69,"y":1136.2589},{"x":70,"y":1170.6473},{"x":71,"y":1199.4241},{"x":72,"y":1226.9452},{"x":73,"y":1257.318},{"x":74,"y":1284.8221},{"x":75,"y":1314.6337},{"x":76,"y":1341.7336},{"x":77,"y":1373.7874},{"x":78,"y":1399.0182},{"x":79,"y":1408.6722},{"x":80,"y":1414.7962},{"x":81,"y":1422.997},{"x":82,"y":1424.5432},{"x":83,"y":1440.6695},{"x":84,"y":1482.6868},{"x":85,"y":1546.4933},{"x":86,"y":1599.4021},{"x":87,"y":1633.8173},{"x":88,"y":1645.4206},{"x":89,"y":1646.9337},{"x":90,"y":1633.9153},{"x":91,"y":1609.1376},{"x":92,"y":1575.6959},{"x":93,"y":1549.9751},{"x":94,"y":1529.5448},{"x":95,"y":1504.3475},{"x":96,"y":1465.7426},{"x":97,"y":1428.6712},{"x":98,"y":1390.4424},{"x":99,"y":1350.4479},{"x":100,"y":1318.5866}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PFm",[{"name":"Receptor density fingerprint of Area PFm","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area PFm.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area PFm. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["513","532","1244","NA","1649","1881","3407","733","187","720","33","321","159","488","368","77"]},{"label":"mean_sd","data":["134","373","311","NA","229","914","1481","73","36","139","16","106","73","194","155","36"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(238,238,14,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area PFm","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area PFm","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area PFm","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area PFm","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area PFm","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area PFm","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area PFm","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area PFm","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area PFm","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area PFm","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area PFm","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area PFm","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area PFm","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area PFm.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area PFm"],"datasets":[{"data":[{"x":0,"y":414.6775},{"x":1,"y":547.3832},{"x":2,"y":750.3479},{"x":3,"y":1025.2073},{"x":4,"y":1272.8043},{"x":5,"y":1502.9083},{"x":6,"y":1809.6361},{"x":7,"y":2074.466},{"x":8,"y":2267.3889},{"x":9,"y":2466.4042},{"x":10,"y":2716.4915},{"x":11,"y":2963.1964},{"x":12,"y":3189.5308},{"x":13,"y":3475.5923},{"x":14,"y":3766.1234},{"x":15,"y":3997.4987},{"x":16,"y":4217.4137},{"x":17,"y":4424.9596},{"x":18,"y":4602.5953},{"x":19,"y":4747.3639},{"x":20,"y":4823.4043},{"x":21,"y":4827.7793},{"x":22,"y":4828.3494},{"x":23,"y":4834.7259},{"x":24,"y":4879.864},{"x":25,"y":4911.0452},{"x":26,"y":4955.2739},{"x":27,"y":4931.1255},{"x":28,"y":4926.7226},{"x":29,"y":4949.8858},{"x":30,"y":4965.6216},{"x":31,"y":4998.7252},{"x":32,"y":4996.599},{"x":33,"y":4926.2325},{"x":34,"y":4819.9849},{"x":35,"y":4693.8485},{"x":36,"y":4573.8724},{"x":37,"y":4451.9143},{"x":38,"y":4287.3062},{"x":39,"y":4160.1753},{"x":40,"y":4022.7371},{"x":41,"y":3899.2575},{"x":42,"y":3778.4443},{"x":43,"y":3680.0035},{"x":44,"y":3599.2844},{"x":45,"y":3499.8822},{"x":46,"y":3356.4288},{"x":47,"y":3221.8133},{"x":48,"y":3126.4153},{"x":49,"y":3033.8599},{"x":50,"y":2951.4299},{"x":51,"y":2899.7882},{"x":52,"y":2879.3989},{"x":53,"y":2843.4544},{"x":54,"y":2775.5895},{"x":55,"y":2705.5753},{"x":56,"y":2662.433},{"x":57,"y":2617.2997},{"x":58,"y":2564.7134},{"x":59,"y":2508.9885},{"x":60,"y":2465.2525},{"x":61,"y":2417.3071},{"x":62,"y":2356.1458},{"x":63,"y":2275.8288},{"x":64,"y":2212.0896},{"x":65,"y":2140.7198},{"x":66,"y":2077.1758},{"x":67,"y":2040.6461},{"x":68,"y":2003.6524},{"x":69,"y":1973.7642},{"x":70,"y":1947.2585},{"x":71,"y":1924.6402},{"x":72,"y":1906.151},{"x":73,"y":1883.4075},{"x":74,"y":1849.2279},{"x":75,"y":1816.7236},{"x":76,"y":1799.4676},{"x":77,"y":1788.9956},{"x":78,"y":1783.2993},{"x":79,"y":1763.4861},{"x":80,"y":1744.703},{"x":81,"y":1714.713},{"x":82,"y":1680.9472},{"x":83,"y":1653.1001},{"x":84,"y":1622.0959},{"x":85,"y":1579.6815},{"x":86,"y":1538.2249},{"x":87,"y":1487.4049},{"x":88,"y":1434.51},{"x":89,"y":1393.3928},{"x":90,"y":1345.2221},{"x":91,"y":1280.4439},{"x":92,"y":1216.7759},{"x":93,"y":1172.3735},{"x":94,"y":1109.6377},{"x":95,"y":1053.4117},{"x":96,"y":1019.2427},{"x":97,"y":981.1075},{"x":98,"y":934.1703},{"x":99,"y":884.1061},{"x":100,"y":835.8167}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area PFm","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area PFm.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":246.0485},{"x":1,"y":302.7126},{"x":2,"y":342.1714},{"x":3,"y":443.336},{"x":4,"y":539.0976},{"x":5,"y":592.9106},{"x":6,"y":620.0483},{"x":7,"y":660.9343},{"x":8,"y":688.9723},{"x":9,"y":701.3227},{"x":10,"y":703.1962},{"x":11,"y":710.5742},{"x":12,"y":711.2233},{"x":13,"y":708.0837},{"x":14,"y":699.91},{"x":15,"y":690.0384},{"x":16,"y":668.2761},{"x":17,"y":647.4805},{"x":18,"y":638.0554},{"x":19,"y":631.7727},{"x":20,"y":626.576},{"x":21,"y":622.3763},{"x":22,"y":617.6824},{"x":23,"y":614.0316},{"x":24,"y":612.523},{"x":25,"y":611.7249},{"x":26,"y":611.7099},{"x":27,"y":609.9237},{"x":28,"y":609.752},{"x":29,"y":612.2496},{"x":30,"y":612.6466},{"x":31,"y":611.3793},{"x":32,"y":611.6471},{"x":33,"y":615.0885},{"x":34,"y":616.0165},{"x":35,"y":618.6871},{"x":36,"y":617.3478},{"x":37,"y":616.7342},{"x":38,"y":615.9005},{"x":39,"y":609.0167},{"x":40,"y":600.533},{"x":41,"y":591.1072},{"x":42,"y":579.1195},{"x":43,"y":565.3021},{"x":44,"y":553.6628},{"x":45,"y":545.7672},{"x":46,"y":541.8615},{"x":47,"y":533.4871},{"x":48,"y":529.5152},{"x":49,"y":529.1189},{"x":50,"y":526.9732},{"x":51,"y":524.5106},{"x":52,"y":526.8232},{"x":53,"y":533.3391},{"x":54,"y":540.3494},{"x":55,"y":540.4475},{"x":56,"y":542.3092},{"x":57,"y":552.1197},{"x":58,"y":553.7407},{"x":59,"y":553.2674},{"x":60,"y":559.9643},{"x":61,"y":565.719},{"x":62,"y":577.1762},{"x":63,"y":592.2511},{"x":64,"y":601.3304},{"x":65,"y":606.5184},{"x":66,"y":611.6904},{"x":67,"y":613.4652},{"x":68,"y":611.611},{"x":69,"y":613.2039},{"x":70,"y":622.8761},{"x":71,"y":634.9369},{"x":72,"y":647.4784},{"x":73,"y":651.7268},{"x":74,"y":657.8105},{"x":75,"y":669.787},{"x":76,"y":677.0422},{"x":77,"y":688.7856},{"x":78,"y":699.8495},{"x":79,"y":711.9961},{"x":80,"y":724.3741},{"x":81,"y":730.2757},{"x":82,"y":732.6087},{"x":83,"y":731.2782},{"x":84,"y":729.9956},{"x":85,"y":731.9646},{"x":86,"y":727.7137},{"x":87,"y":724.1005},{"x":88,"y":719.787},{"x":89,"y":714.7359},{"x":90,"y":712.8529},{"x":91,"y":710.3359},{"x":92,"y":710.2402},{"x":93,"y":704.9708},{"x":94,"y":697.6154},{"x":95,"y":695.004},{"x":96,"y":692.6589},{"x":97,"y":677.4381},{"x":98,"y":657.6423},{"x":99,"y":649.7101},{"x":100,"y":638.1812}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area PFm.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1288.2501},{"x":1,"y":1504.5469},{"x":2,"y":1694.8605},{"x":3,"y":1813.1118},{"x":4,"y":1877.948},{"x":5,"y":1925.6656},{"x":6,"y":1970.4734},{"x":7,"y":2001.3469},{"x":8,"y":2007.5222},{"x":9,"y":2014.9981},{"x":10,"y":2031.2646},{"x":11,"y":2029.487},{"x":12,"y":2015.0831},{"x":13,"y":2019.2004},{"x":14,"y":2020.4191},{"x":15,"y":2018.1737},{"x":16,"y":2024.3706},{"x":17,"y":2044.227},{"x":18,"y":2057.9879},{"x":19,"y":2080.7451},{"x":20,"y":2095.9656},{"x":21,"y":2088.5213},{"x":22,"y":2090.0653},{"x":23,"y":2080.5177},{"x":24,"y":2078.8738},{"x":25,"y":2069.1423},{"x":26,"y":2065.3765},{"x":27,"y":2058.6747},{"x":28,"y":2065.318},{"x":29,"y":2063.454},{"x":30,"y":2044.4191},{"x":31,"y":2022.1456},{"x":32,"y":1995.4147},{"x":33,"y":1983.3173},{"x":34,"y":1958.8393},{"x":35,"y":1939.4605},{"x":36,"y":1931.5578},{"x":37,"y":1904.5965},{"x":38,"y":1883.9031},{"x":39,"y":1881.1964},{"x":40,"y":1869.6666},{"x":41,"y":1855.4454},{"x":42,"y":1835.7264},{"x":43,"y":1829.53},{"x":44,"y":1824.8485},{"x":45,"y":1810.9402},{"x":46,"y":1809.3095},{"x":47,"y":1802.7262},{"x":48,"y":1791.8517},{"x":49,"y":1777.7284},{"x":50,"y":1777.5341},{"x":51,"y":1769.0472},{"x":52,"y":1754.3951},{"x":53,"y":1746.1479},{"x":54,"y":1755.4639},{"x":55,"y":1752.5258},{"x":56,"y":1759.8824},{"x":57,"y":1772.2099},{"x":58,"y":1779.5454},{"x":59,"y":1767.3573},{"x":60,"y":1748.4569},{"x":61,"y":1723.6787},{"x":62,"y":1717.5493},{"x":63,"y":1721.0235},{"x":64,"y":1738.6451},{"x":65,"y":1752.4983},{"x":66,"y":1748.5426},{"x":67,"y":1746.6357},{"x":68,"y":1739.6317},{"x":69,"y":1734.0655},{"x":70,"y":1720.5383},{"x":71,"y":1687.4702},{"x":72,"y":1665.4099},{"x":73,"y":1664.7602},{"x":74,"y":1659.5054},{"x":75,"y":1665.0687},{"x":76,"y":1648.4646},{"x":77,"y":1633.7099},{"x":78,"y":1617.8531},{"x":79,"y":1604.3407},{"x":80,"y":1587.7624},{"x":81,"y":1570.9626},{"x":82,"y":1564.554},{"x":83,"y":1552.3037},{"x":84,"y":1545.679},{"x":85,"y":1523.7966},{"x":86,"y":1508.3343},{"x":87,"y":1509.1098},{"x":88,"y":1492.1835},{"x":89,"y":1479.3753},{"x":90,"y":1468.1662},{"x":91,"y":1431.1263},{"x":92,"y":1389.3058},{"x":93,"y":1356.8627},{"x":94,"y":1306.1475},{"x":95,"y":1249.476},{"x":96,"y":1210.5869},{"x":97,"y":1160.2178},{"x":98,"y":1126.0999},{"x":99,"y":1093.0965},{"x":100,"y":1058.0735}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area PFm","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area PFm.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":649.0201},{"x":1,"y":848.1228},{"x":2,"y":1092.9962},{"x":3,"y":1448.094},{"x":4,"y":1829.4694},{"x":5,"y":2123.6008},{"x":6,"y":2348.2754},{"x":7,"y":2575.8223},{"x":8,"y":2761.369},{"x":9,"y":2960.1959},{"x":10,"y":3134.0293},{"x":11,"y":3289.2282},{"x":12,"y":3416.2688},{"x":13,"y":3516.8015},{"x":14,"y":3562.637},{"x":15,"y":3607.1894},{"x":16,"y":3634.3024},{"x":17,"y":3622.3828},{"x":18,"y":3620.2742},{"x":19,"y":3618.047},{"x":20,"y":3606.6227},{"x":21,"y":3604.7555},{"x":22,"y":3622.4253},{"x":23,"y":3658.9572},{"x":24,"y":3660.2006},{"x":25,"y":3680.0659},{"x":26,"y":3672.4711},{"x":27,"y":3664.3405},{"x":28,"y":3631.6388},{"x":29,"y":3594.7968},{"x":30,"y":3578.8434},{"x":31,"y":3556.649},{"x":32,"y":3507.3248},{"x":33,"y":3460.6467},{"x":34,"y":3441.4708},{"x":35,"y":3394.8057},{"x":36,"y":3361.2346},{"x":37,"y":3314.2736},{"x":38,"y":3263.0982},{"x":39,"y":3202.5102},{"x":40,"y":3122.135},{"x":41,"y":3056.6785},{"x":42,"y":3010.7237},{"x":43,"y":2955.3966},{"x":44,"y":2895.5737},{"x":45,"y":2857.2028},{"x":46,"y":2809.1634},{"x":47,"y":2764.9742},{"x":48,"y":2729.1517},{"x":49,"y":2691.3963},{"x":50,"y":2649.1878},{"x":51,"y":2570.7872},{"x":52,"y":2484.565},{"x":53,"y":2413.8159},{"x":54,"y":2348.5637},{"x":55,"y":2295.6309},{"x":56,"y":2267.3692},{"x":57,"y":2245.0127},{"x":58,"y":2216.1136},{"x":59,"y":2193.2635},{"x":60,"y":2157.833},{"x":61,"y":2116.8885},{"x":62,"y":2077.7201},{"x":63,"y":2041.1328},{"x":64,"y":2022.171},{"x":65,"y":2014.4903},{"x":66,"y":2001.3167},{"x":67,"y":2005.2367},{"x":68,"y":2004.4597},{"x":69,"y":2000.8071},{"x":70,"y":1973.1546},{"x":71,"y":1949.735},{"x":72,"y":1923.9283},{"x":73,"y":1901.3981},{"x":74,"y":1885.0433},{"x":75,"y":1870.4049},{"x":76,"y":1852.5713},{"x":77,"y":1833.3419},{"x":78,"y":1814.9503},{"x":79,"y":1816.0021},{"x":80,"y":1822.1582},{"x":81,"y":1821.6385},{"x":82,"y":1820.1773},{"x":83,"y":1804.2024},{"x":84,"y":1784.211},{"x":85,"y":1746.2127},{"x":86,"y":1710.9548},{"x":87,"y":1675.3408},{"x":88,"y":1633.8367},{"x":89,"y":1595.0674},{"x":90,"y":1577.9456},{"x":91,"y":1540.6935},{"x":92,"y":1500.2981},{"x":93,"y":1457.8082},{"x":94,"y":1415.4122},{"x":95,"y":1381.3558},{"x":96,"y":1334.2406},{"x":97,"y":1283.1642},{"x":98,"y":1241.6997},{"x":99,"y":1218.825},{"x":100,"y":1179.247}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area PFm","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area PFm.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":226.5518},{"x":1,"y":273.3296},{"x":2,"y":329.0038},{"x":3,"y":378.1086},{"x":4,"y":427.5563},{"x":5,"y":468.2745},{"x":6,"y":508.0673},{"x":7,"y":550.6138},{"x":8,"y":581.551},{"x":9,"y":610.2917},{"x":10,"y":642.9606},{"x":11,"y":671.5722},{"x":12,"y":704.5501},{"x":13,"y":724.0761},{"x":14,"y":744.5424},{"x":15,"y":761.424},{"x":16,"y":777.4291},{"x":17,"y":793.6276},{"x":18,"y":807.9863},{"x":19,"y":822.3666},{"x":20,"y":830.9475},{"x":21,"y":842.0264},{"x":22,"y":857.4971},{"x":23,"y":872.3554},{"x":24,"y":879.4366},{"x":25,"y":883.2561},{"x":26,"y":885.9435},{"x":27,"y":889.437},{"x":28,"y":884.922},{"x":29,"y":880.866},{"x":30,"y":877.4526},{"x":31,"y":867.4475},{"x":32,"y":854.3773},{"x":33,"y":841.2544},{"x":34,"y":828.1317},{"x":35,"y":818.6532},{"x":36,"y":813.125},{"x":37,"y":809.7644},{"x":38,"y":808.8884},{"x":39,"y":811.7371},{"x":40,"y":813.9011},{"x":41,"y":818.9772},{"x":42,"y":819.5966},{"x":43,"y":816.3986},{"x":44,"y":814.5429},{"x":45,"y":812.3569},{"x":46,"y":811.4889},{"x":47,"y":810.7485},{"x":48,"y":813.7063},{"x":49,"y":815.2679},{"x":50,"y":818.2395},{"x":51,"y":823.7207},{"x":52,"y":833.0654},{"x":53,"y":837.8499},{"x":54,"y":839.3394},{"x":55,"y":845.6004},{"x":56,"y":844.3926},{"x":57,"y":835.1113},{"x":58,"y":830.783},{"x":59,"y":829.4114},{"x":60,"y":824.4174},{"x":61,"y":821.2263},{"x":62,"y":818.2473},{"x":63,"y":814.6539},{"x":64,"y":813.7712},{"x":65,"y":817.1059},{"x":66,"y":818.4569},{"x":67,"y":819.4559},{"x":68,"y":826.8877},{"x":69,"y":830.6852},{"x":70,"y":836.927},{"x":71,"y":836.2376},{"x":72,"y":832.8156},{"x":73,"y":828.1681},{"x":74,"y":818.5491},{"x":75,"y":810.3988},{"x":76,"y":801.9501},{"x":77,"y":798.493},{"x":78,"y":798.3051},{"x":79,"y":794.3033},{"x":80,"y":788.8317},{"x":81,"y":784.921},{"x":82,"y":778.1703},{"x":83,"y":769.7684},{"x":84,"y":758.4028},{"x":85,"y":745.0126},{"x":86,"y":740.0665},{"x":87,"y":733.2654},{"x":88,"y":724.5991},{"x":89,"y":716.9815},{"x":90,"y":708.8412},{"x":91,"y":694.1066},{"x":92,"y":676.898},{"x":93,"y":659.5769},{"x":94,"y":644.7383},{"x":95,"y":630.7544},{"x":96,"y":622.2096},{"x":97,"y":610.0965},{"x":98,"y":599.3964},{"x":99,"y":584.7361},{"x":100,"y":571.6659}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area PFm.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":10.9525},{"x":1,"y":13.7983},{"x":2,"y":16.8933},{"x":3,"y":20.661},{"x":4,"y":24.5308},{"x":5,"y":26.7085},{"x":6,"y":29.3965},{"x":7,"y":31.4594},{"x":8,"y":30.5761},{"x":9,"y":32.1735},{"x":10,"y":34.3368},{"x":11,"y":37.636},{"x":12,"y":41.7252},{"x":13,"y":43.5344},{"x":14,"y":43.3511},{"x":15,"y":42.008},{"x":16,"y":41.6332},{"x":17,"y":42.6702},{"x":18,"y":43.58},{"x":19,"y":44.4205},{"x":20,"y":43.5457},{"x":21,"y":43.2397},{"x":22,"y":44.4628},{"x":23,"y":48.649},{"x":24,"y":49.1803},{"x":25,"y":49.8894},{"x":26,"y":50.4078},{"x":27,"y":52.5366},{"x":28,"y":51.4152},{"x":29,"y":51.0567},{"x":30,"y":51.6615},{"x":31,"y":54.0162},{"x":32,"y":55.219},{"x":33,"y":54.742},{"x":34,"y":53.8983},{"x":35,"y":53.5327},{"x":36,"y":52.2835},{"x":37,"y":50.5276},{"x":38,"y":48.4643},{"x":39,"y":49.3542},{"x":40,"y":50.3873},{"x":41,"y":52.9868},{"x":42,"y":54.7023},{"x":43,"y":57.1474},{"x":44,"y":57.8795},{"x":45,"y":57.5492},{"x":46,"y":56.0614},{"x":47,"y":53.4834},{"x":48,"y":50.3447},{"x":49,"y":48.055},{"x":50,"y":45.5072},{"x":51,"y":43.2927},{"x":52,"y":44.4765},{"x":53,"y":44.5942},{"x":54,"y":43.612},{"x":55,"y":43.7712},{"x":56,"y":46.0803},{"x":57,"y":48.1456},{"x":58,"y":50.7599},{"x":59,"y":51.0952},{"x":60,"y":53.4478},{"x":61,"y":53.4372},{"x":62,"y":52.0142},{"x":63,"y":51.7924},{"x":64,"y":50.938},{"x":65,"y":49.7906},{"x":66,"y":49.0863},{"x":67,"y":52.7661},{"x":68,"y":55.3132},{"x":69,"y":58.8055},{"x":70,"y":60.4207},{"x":71,"y":64.3806},{"x":72,"y":68.2688},{"x":73,"y":69.9634},{"x":74,"y":67.564},{"x":75,"y":65.6081},{"x":76,"y":65.1647},{"x":77,"y":64.6402},{"x":78,"y":66.4672},{"x":79,"y":66.7833},{"x":80,"y":67.3829},{"x":81,"y":70.0968},{"x":82,"y":70.4616},{"x":83,"y":68.3018},{"x":84,"y":63.7082},{"x":85,"y":59.7576},{"x":86,"y":58.9443},{"x":87,"y":59.2391},{"x":88,"y":61.1348},{"x":89,"y":61.9096},{"x":90,"y":62.7221},{"x":91,"y":64.2393},{"x":92,"y":62.6537},{"x":93,"y":63.5997},{"x":94,"y":65.4311},{"x":95,"y":65.0761},{"x":96,"y":65.8512},{"x":97,"y":67.3648},{"x":98,"y":64.1934},{"x":99,"y":59.792},{"x":100,"y":55.6246}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area PFm","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area PFm.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":222.9819},{"x":1,"y":257.3062},{"x":2,"y":301.232},{"x":3,"y":360.3595},{"x":4,"y":411.1464},{"x":5,"y":453.1503},{"x":6,"y":488.2737},{"x":7,"y":532.1241},{"x":8,"y":568.0223},{"x":9,"y":594.1367},{"x":10,"y":611.3606},{"x":11,"y":624.9792},{"x":12,"y":637.2301},{"x":13,"y":645.8093},{"x":14,"y":648.7144},{"x":15,"y":648.8767},{"x":16,"y":653.9823},{"x":17,"y":656.643},{"x":18,"y":656.122},{"x":19,"y":655.8582},{"x":20,"y":652.3616},{"x":21,"y":649.8126},{"x":22,"y":647.6234},{"x":23,"y":643.4561},{"x":24,"y":641.884},{"x":25,"y":639.0562},{"x":26,"y":632.4965},{"x":27,"y":627.2677},{"x":28,"y":622.4582},{"x":29,"y":616.5911},{"x":30,"y":610.0373},{"x":31,"y":603.4589},{"x":32,"y":596.8318},{"x":33,"y":586.7784},{"x":34,"y":577.6716},{"x":35,"y":572.4562},{"x":36,"y":566.1598},{"x":37,"y":559.5024},{"x":38,"y":555.1174},{"x":39,"y":551.4646},{"x":40,"y":552.3742},{"x":41,"y":556.6502},{"x":42,"y":558.5327},{"x":43,"y":558.3553},{"x":44,"y":557.7356},{"x":45,"y":557.6063},{"x":46,"y":558.7175},{"x":47,"y":558.6156},{"x":48,"y":558.3882},{"x":49,"y":558.33},{"x":50,"y":557.7576},{"x":51,"y":555.4275},{"x":52,"y":551.8005},{"x":53,"y":549.2268},{"x":54,"y":546.2649},{"x":55,"y":542.9368},{"x":56,"y":537.5792},{"x":57,"y":535.3208},{"x":58,"y":534.2044},{"x":59,"y":533.5621},{"x":60,"y":530.047},{"x":61,"y":526.7027},{"x":62,"y":523.2002},{"x":63,"y":519.5795},{"x":64,"y":517.4336},{"x":65,"y":518.1881},{"x":66,"y":518.6044},{"x":67,"y":520.334},{"x":68,"y":521.0821},{"x":69,"y":518.9551},{"x":70,"y":517.9046},{"x":71,"y":518.3208},{"x":72,"y":518.8176},{"x":73,"y":517.2892},{"x":74,"y":514.8359},{"x":75,"y":512.8684},{"x":76,"y":510.172},{"x":77,"y":503.7294},{"x":78,"y":496.0832},{"x":79,"y":490.9644},{"x":80,"y":485.5388},{"x":81,"y":480.219},{"x":82,"y":478.0453},{"x":83,"y":475.1307},{"x":84,"y":473.0779},{"x":85,"y":470.5059},{"x":86,"y":466.8079},{"x":87,"y":460.8546},{"x":88,"y":453.6991},{"x":89,"y":444.3507},{"x":90,"y":431.9699},{"x":91,"y":417.178},{"x":92,"y":403.9866},{"x":93,"y":388.1319},{"x":94,"y":369.655},{"x":95,"y":355.0118},{"x":96,"y":343.8632},{"x":97,"y":329.5792},{"x":98,"y":313.0801},{"x":99,"y":303.8542},{"x":100,"y":293.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area PFm","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area PFm.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":178.9409},{"x":1,"y":221.3682},{"x":2,"y":266.3416},{"x":3,"y":311.7817},{"x":4,"y":361.6268},{"x":5,"y":426.2078},{"x":6,"y":489.66},{"x":7,"y":548.3518},{"x":8,"y":601.5318},{"x":9,"y":645.1545},{"x":10,"y":684.4057},{"x":11,"y":714.9074},{"x":12,"y":730.3084},{"x":13,"y":743.4942},{"x":14,"y":754.8556},{"x":15,"y":760.8008},{"x":16,"y":762.8721},{"x":17,"y":767.2397},{"x":18,"y":763.0848},{"x":19,"y":753.0896},{"x":20,"y":737.7586},{"x":21,"y":718.7249},{"x":22,"y":701.1423},{"x":23,"y":676.8934},{"x":24,"y":644.1758},{"x":25,"y":609.7027},{"x":26,"y":569.6236},{"x":27,"y":525.946},{"x":28,"y":475.5022},{"x":29,"y":427.3785},{"x":30,"y":389.4978},{"x":31,"y":349.5367},{"x":32,"y":311.4599},{"x":33,"y":281.6493},{"x":34,"y":258.2406},{"x":35,"y":237.618},{"x":36,"y":222.0312},{"x":37,"y":208.6032},{"x":38,"y":195.7721},{"x":39,"y":187.0238},{"x":40,"y":175.7821},{"x":41,"y":164.8443},{"x":42,"y":153.9147},{"x":43,"y":145.9143},{"x":44,"y":141.9929},{"x":45,"y":137.4399},{"x":46,"y":134.4055},{"x":47,"y":133.3636},{"x":48,"y":131.8849},{"x":49,"y":130.0535},{"x":50,"y":130.0931},{"x":51,"y":131.0189},{"x":52,"y":133.618},{"x":53,"y":138.2265},{"x":54,"y":144.636},{"x":55,"y":149.7509},{"x":56,"y":156.749},{"x":57,"y":163.8689},{"x":58,"y":172.4409},{"x":59,"y":179.2705},{"x":60,"y":185.6774},{"x":61,"y":191.3106},{"x":62,"y":195.5594},{"x":63,"y":198.6216},{"x":64,"y":201.4065},{"x":65,"y":203.6512},{"x":66,"y":204.6507},{"x":67,"y":203.7297},{"x":68,"y":205.5465},{"x":69,"y":207.4703},{"x":70,"y":211.5302},{"x":71,"y":214.4259},{"x":72,"y":219.735},{"x":73,"y":223.0547},{"x":74,"y":229.8002},{"x":75,"y":232.2087},{"x":76,"y":233.7572},{"x":77,"y":232.442},{"x":78,"y":233.0222},{"x":79,"y":232.802},{"x":80,"y":232.3752},{"x":81,"y":230.6116},{"x":82,"y":231.2732},{"x":83,"y":233.0882},{"x":84,"y":231.3036},{"x":85,"y":228.7976},{"x":86,"y":226.3781},{"x":87,"y":221.5949},{"x":88,"y":220.6944},{"x":89,"y":220.0755},{"x":90,"y":220.5519},{"x":91,"y":220.722},{"x":92,"y":218.1681},{"x":93,"y":216.2651},{"x":94,"y":213.9825},{"x":95,"y":209.7935},{"x":96,"y":204.6744},{"x":97,"y":201.8038},{"x":98,"y":197.803},{"x":99,"y":188.8238},{"x":100,"y":179.1047}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area PFm","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area PFm.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":612.0971},{"x":1,"y":700.5788},{"x":2,"y":767.4826},{"x":3,"y":838.8742},{"x":4,"y":897.4627},{"x":5,"y":933.5483},{"x":6,"y":950.4446},{"x":7,"y":965.2636},{"x":8,"y":973.041},{"x":9,"y":976.2026},{"x":10,"y":971.9536},{"x":11,"y":962.0346},{"x":12,"y":954.711},{"x":13,"y":953.6688},{"x":14,"y":954.406},{"x":15,"y":946.2501},{"x":16,"y":941.4819},{"x":17,"y":937.8259},{"x":18,"y":931.7584},{"x":19,"y":930.3836},{"x":20,"y":923.0986},{"x":21,"y":923.6782},{"x":22,"y":938.3746},{"x":23,"y":947.7402},{"x":24,"y":948.2214},{"x":25,"y":953.8739},{"x":26,"y":962.4483},{"x":27,"y":970.1679},{"x":28,"y":978.8258},{"x":29,"y":992.4646},{"x":30,"y":1008.7311},{"x":31,"y":1017.1603},{"x":32,"y":1025.7543},{"x":33,"y":1031.6309},{"x":34,"y":1040.599},{"x":35,"y":1043.4077},{"x":36,"y":1041.2253},{"x":37,"y":1045.4147},{"x":38,"y":1053.6018},{"x":39,"y":1067.3037},{"x":40,"y":1080.9704},{"x":41,"y":1087.8732},{"x":42,"y":1099.4879},{"x":43,"y":1110.9138},{"x":44,"y":1115.5679},{"x":45,"y":1127.7745},{"x":46,"y":1137.1646},{"x":47,"y":1143.5387},{"x":48,"y":1151.5789},{"x":49,"y":1165.3944},{"x":50,"y":1177.7728},{"x":51,"y":1191.3442},{"x":52,"y":1208.9196},{"x":53,"y":1218.5714},{"x":54,"y":1225.3123},{"x":55,"y":1237.567},{"x":56,"y":1245.5211},{"x":57,"y":1250.3525},{"x":58,"y":1252.8015},{"x":59,"y":1256.9281},{"x":60,"y":1255.2233},{"x":61,"y":1256.4467},{"x":62,"y":1249.7518},{"x":63,"y":1240.9727},{"x":64,"y":1236.655},{"x":65,"y":1235.834},{"x":66,"y":1237.4067},{"x":67,"y":1238.0246},{"x":68,"y":1241.5674},{"x":69,"y":1243.809},{"x":70,"y":1241.4102},{"x":71,"y":1244.174},{"x":72,"y":1249.6207},{"x":73,"y":1252.3317},{"x":74,"y":1255.0968},{"x":75,"y":1253.6994},{"x":76,"y":1264.6417},{"x":77,"y":1281.7748},{"x":78,"y":1294.5093},{"x":79,"y":1300.1796},{"x":80,"y":1303.4348},{"x":81,"y":1302.8782},{"x":82,"y":1301.1223},{"x":83,"y":1298.1747},{"x":84,"y":1298.6703},{"x":85,"y":1285.2761},{"x":86,"y":1272.5903},{"x":87,"y":1267.3914},{"x":88,"y":1261.2636},{"x":89,"y":1253.4034},{"x":90,"y":1241.0226},{"x":91,"y":1236.1091},{"x":92,"y":1230.6918},{"x":93,"y":1219.3062},{"x":94,"y":1207.4386},{"x":95,"y":1194.7681},{"x":96,"y":1178.3724},{"x":97,"y":1147.7234},{"x":98,"y":1121.5922},{"x":99,"y":1107.9492},{"x":100,"y":1092.0591}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area PFm","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area PFm.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":84.6477},{"x":1,"y":93.2695},{"x":2,"y":103.4352},{"x":3,"y":115.6859},{"x":4,"y":127.7598},{"x":5,"y":135.6121},{"x":6,"y":142.6476},{"x":7,"y":145.9338},{"x":8,"y":150.498},{"x":9,"y":155.1707},{"x":10,"y":156.9823},{"x":11,"y":157.7596},{"x":12,"y":157.8233},{"x":13,"y":157.6372},{"x":14,"y":158.8639},{"x":15,"y":158.7868},{"x":16,"y":158.7608},{"x":17,"y":157.914},{"x":18,"y":161.1105},{"x":19,"y":164.6396},{"x":20,"y":165.9435},{"x":21,"y":170.475},{"x":22,"y":176.8111},{"x":23,"y":179.0959},{"x":24,"y":178.736},{"x":25,"y":180.9806},{"x":26,"y":180.3764},{"x":27,"y":180.2802},{"x":28,"y":184.7803},{"x":29,"y":188.6613},{"x":30,"y":193.4912},{"x":31,"y":197.0957},{"x":32,"y":200.0429},{"x":33,"y":203.0107},{"x":34,"y":205.0235},{"x":35,"y":204.7353},{"x":36,"y":202.6343},{"x":37,"y":202.3725},{"x":38,"y":203.0957},{"x":39,"y":207.7596},{"x":40,"y":211.0369},{"x":41,"y":212.1601},{"x":42,"y":213.7542},{"x":43,"y":215.7543},{"x":44,"y":218.4313},{"x":45,"y":222.4281},{"x":46,"y":228.4705},{"x":47,"y":233.6961},{"x":48,"y":238.9946},{"x":49,"y":242.1399},{"x":50,"y":245.9088},{"x":51,"y":253.4642},{"x":52,"y":260.3492},{"x":53,"y":266.1818},{"x":54,"y":270.3434},{"x":55,"y":274.1293},{"x":56,"y":275.3021},{"x":57,"y":275.5601},{"x":58,"y":276.0092},{"x":59,"y":276.8751},{"x":60,"y":275.4816},{"x":61,"y":272.9742},{"x":62,"y":271.4523},{"x":63,"y":270.1365},{"x":64,"y":268.27},{"x":65,"y":266.6988},{"x":66,"y":262.7834},{"x":67,"y":259.8237},{"x":68,"y":254.7546},{"x":69,"y":249.7533},{"x":70,"y":245.4534},{"x":71,"y":241.7682},{"x":72,"y":239.8094},{"x":73,"y":238.0626},{"x":74,"y":235.8818},{"x":75,"y":230.7443},{"x":76,"y":228.0226},{"x":77,"y":226.4827},{"x":78,"y":222.9297},{"x":79,"y":220.2826},{"x":80,"y":215.0989},{"x":81,"y":210.7847},{"x":82,"y":205.7083},{"x":83,"y":196.8683},{"x":84,"y":191.1009},{"x":85,"y":187.6439},{"x":86,"y":185.2418},{"x":87,"y":182.5054},{"x":88,"y":178.8836},{"x":89,"y":175.7992},{"x":90,"y":171.9279},{"x":91,"y":166.7175},{"x":92,"y":157.6449},{"x":93,"y":147.1877},{"x":94,"y":139.3689},{"x":95,"y":134.1763},{"x":96,"y":129.1793},{"x":97,"y":126.9102},{"x":98,"y":126.3367},{"x":99,"y":122.3542},{"x":100,"y":116.9453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area PFm.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":405.5729},{"x":1,"y":451.8444},{"x":2,"y":497.2293},{"x":3,"y":525.8658},{"x":4,"y":545.0973},{"x":5,"y":557.324},{"x":6,"y":575.845},{"x":7,"y":598.0745},{"x":8,"y":616.0735},{"x":9,"y":630.0659},{"x":10,"y":641.9863},{"x":11,"y":652.885},{"x":12,"y":659.1001},{"x":13,"y":669.1597},{"x":14,"y":675.6552},{"x":15,"y":668.1356},{"x":16,"y":652.8647},{"x":17,"y":635.8774},{"x":18,"y":626.3587},{"x":19,"y":618.4538},{"x":20,"y":605.7924},{"x":21,"y":591.05},{"x":22,"y":576.7722},{"x":23,"y":568.0839},{"x":24,"y":561.7794},{"x":25,"y":553.1086},{"x":26,"y":548.8052},{"x":27,"y":532.8971},{"x":28,"y":519.8256},{"x":29,"y":516.2577},{"x":30,"y":503.6507},{"x":31,"y":496.4829},{"x":32,"y":488.3557},{"x":33,"y":466.8666},{"x":34,"y":456.7964},{"x":35,"y":460.8351},{"x":36,"y":466.4865},{"x":37,"y":464.9287},{"x":38,"y":454.4103},{"x":39,"y":449.8788},{"x":40,"y":431.8908},{"x":41,"y":417.7714},{"x":42,"y":409.133},{"x":43,"y":416.0307},{"x":44,"y":427.5151},{"x":45,"y":431.7865},{"x":46,"y":438.3853},{"x":47,"y":433.6461},{"x":48,"y":428.7599},{"x":49,"y":420.7188},{"x":50,"y":424.8132},{"x":51,"y":426.0907},{"x":52,"y":436.9364},{"x":53,"y":445.7628},{"x":54,"y":447.0122},{"x":55,"y":434.5986},{"x":56,"y":419.1719},{"x":57,"y":410.0317},{"x":58,"y":393.2125},{"x":59,"y":379.621},{"x":60,"y":374.2348},{"x":61,"y":374.2654},{"x":62,"y":379.0425},{"x":63,"y":388.3258},{"x":64,"y":392.2651},{"x":65,"y":399.2769},{"x":66,"y":399.7033},{"x":67,"y":396.3172},{"x":68,"y":394.2565},{"x":69,"y":398.9991},{"x":70,"y":396.441},{"x":71,"y":391.3304},{"x":72,"y":383.9955},{"x":73,"y":390.3641},{"x":74,"y":402.8404},{"x":75,"y":401.4029},{"x":76,"y":395.845},{"x":77,"y":392.7307},{"x":78,"y":384.5419},{"x":79,"y":382.5594},{"x":80,"y":385.6433},{"x":81,"y":392.5939},{"x":82,"y":403.0249},{"x":83,"y":405.9239},{"x":84,"y":399.9345},{"x":85,"y":391.6423},{"x":86,"y":393.2337},{"x":87,"y":396.4047},{"x":88,"y":399.3001},{"x":89,"y":399.894},{"x":90,"y":405.9114},{"x":91,"y":413.8407},{"x":92,"y":412.8103},{"x":93,"y":416.9961},{"x":94,"y":416.351},{"x":95,"y":410.828},{"x":96,"y":401.764},{"x":97,"y":397.6487},{"x":98,"y":386.7589},{"x":99,"y":366.2726},{"x":100,"y":344.3997}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area PFm","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area PFm.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":71.7961},{"x":1,"y":96.0361},{"x":2,"y":121.9873},{"x":3,"y":148.5828},{"x":4,"y":169.607},{"x":5,"y":183.1485},{"x":6,"y":193.7369},{"x":7,"y":202.2761},{"x":8,"y":207.5636},{"x":9,"y":209.1416},{"x":10,"y":209.6546},{"x":11,"y":209.2487},{"x":12,"y":210.3938},{"x":13,"y":209.1629},{"x":14,"y":207.6902},{"x":15,"y":206.7537},{"x":16,"y":204.9011},{"x":17,"y":202.9269},{"x":18,"y":203.6056},{"x":19,"y":204.3025},{"x":20,"y":206.8464},{"x":21,"y":207.2218},{"x":22,"y":205.8387},{"x":23,"y":203.5968},{"x":24,"y":199.5774},{"x":25,"y":193.7339},{"x":26,"y":188.6019},{"x":27,"y":183.4718},{"x":28,"y":180.0857},{"x":29,"y":178.3286},{"x":30,"y":176.8736},{"x":31,"y":171.8384},{"x":32,"y":168.8552},{"x":33,"y":166.5311},{"x":34,"y":164.7591},{"x":35,"y":164.5351},{"x":36,"y":164.0599},{"x":37,"y":162.187},{"x":38,"y":161.5447},{"x":39,"y":160.8484},{"x":40,"y":159.9339},{"x":41,"y":157.7707},{"x":42,"y":159.0717},{"x":43,"y":159.6655},{"x":44,"y":159.7806},{"x":45,"y":163.0386},{"x":46,"y":166.6397},{"x":47,"y":169.43},{"x":48,"y":170.9491},{"x":49,"y":173.6838},{"x":50,"y":174.9978},{"x":51,"y":174.3716},{"x":52,"y":177.6136},{"x":53,"y":178.6717},{"x":54,"y":178.3596},{"x":55,"y":178.7765},{"x":56,"y":179.5655},{"x":57,"y":181.5343},{"x":58,"y":180.1617},{"x":59,"y":181.883},{"x":60,"y":182.7184},{"x":61,"y":181.9094},{"x":62,"y":182.0055},{"x":63,"y":181.4463},{"x":64,"y":180.1232},{"x":65,"y":181.4385},{"x":66,"y":180.6042},{"x":67,"y":181.7121},{"x":68,"y":182.9283},{"x":69,"y":182.7583},{"x":70,"y":179.6249},{"x":71,"y":177.1991},{"x":72,"y":176.6458},{"x":73,"y":176.831},{"x":74,"y":176.1423},{"x":75,"y":175.3482},{"x":76,"y":173.3404},{"x":77,"y":170.9682},{"x":78,"y":169.3456},{"x":79,"y":169.2848},{"x":80,"y":169.2037},{"x":81,"y":169.232},{"x":82,"y":165.9925},{"x":83,"y":162.5302},{"x":84,"y":162.7598},{"x":85,"y":161.8939},{"x":86,"y":160.9315},{"x":87,"y":157.2686},{"x":88,"y":152.5733},{"x":89,"y":150.7818},{"x":90,"y":149.7141},{"x":91,"y":149.2394},{"x":92,"y":148.6755},{"x":93,"y":147.1266},{"x":94,"y":147.1818},{"x":95,"y":145.8475},{"x":96,"y":143.4535},{"x":97,"y":137.7632},{"x":98,"y":133.8054},{"x":99,"y":124.6529},{"x":100,"y":117.0293}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area PFm","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area PFm.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1187.3566},{"x":1,"y":1323.5235},{"x":2,"y":1428.9562},{"x":3,"y":1486.5143},{"x":4,"y":1550.7895},{"x":5,"y":1603.5561},{"x":6,"y":1646.1602},{"x":7,"y":1676.798},{"x":8,"y":1695.4511},{"x":9,"y":1712.1351},{"x":10,"y":1732.3376},{"x":11,"y":1746.039},{"x":12,"y":1757.3188},{"x":13,"y":1764.7332},{"x":14,"y":1767.9907},{"x":15,"y":1771.4037},{"x":16,"y":1775.9087},{"x":17,"y":1778.1755},{"x":18,"y":1778.8636},{"x":19,"y":1789.6876},{"x":20,"y":1804.7697},{"x":21,"y":1808.8769},{"x":22,"y":1808.3629},{"x":23,"y":1805.0579},{"x":24,"y":1803.5057},{"x":25,"y":1798.2686},{"x":26,"y":1790.0578},{"x":27,"y":1783.3516},{"x":28,"y":1776.504},{"x":29,"y":1763.8394},{"x":30,"y":1748.0961},{"x":31,"y":1730.7008},{"x":32,"y":1715.2495},{"x":33,"y":1699.4509},{"x":34,"y":1691.9305},{"x":35,"y":1687.5653},{"x":36,"y":1685.895},{"x":37,"y":1683.7524},{"x":38,"y":1678.8643},{"x":39,"y":1667.4082},{"x":40,"y":1655.397},{"x":41,"y":1645.8773},{"x":42,"y":1634.125},{"x":43,"y":1627.5713},{"x":44,"y":1621.7817},{"x":45,"y":1620.5241},{"x":46,"y":1617.425},{"x":47,"y":1614.6611},{"x":48,"y":1610.3926},{"x":49,"y":1603.4878},{"x":50,"y":1598.6887},{"x":51,"y":1593.8563},{"x":52,"y":1587.7358},{"x":53,"y":1581.487},{"x":54,"y":1570.3626},{"x":55,"y":1558.6219},{"x":56,"y":1545.252},{"x":57,"y":1533.5059},{"x":58,"y":1525.0995},{"x":59,"y":1518.164},{"x":60,"y":1514.1891},{"x":61,"y":1510.3113},{"x":62,"y":1507.5093},{"x":63,"y":1508.0609},{"x":64,"y":1501.4626},{"x":65,"y":1498.8259},{"x":66,"y":1498.6077},{"x":67,"y":1497.1689},{"x":68,"y":1497.458},{"x":69,"y":1498.13},{"x":70,"y":1497.4811},{"x":71,"y":1498.9913},{"x":72,"y":1501.9641},{"x":73,"y":1504.9326},{"x":74,"y":1505.4971},{"x":75,"y":1501.024},{"x":76,"y":1495.4044},{"x":77,"y":1487.6982},{"x":78,"y":1477.4397},{"x":79,"y":1471.5396},{"x":80,"y":1467.5162},{"x":81,"y":1463.8119},{"x":82,"y":1459.0814},{"x":83,"y":1449.3861},{"x":84,"y":1435.3861},{"x":85,"y":1419.4158},{"x":86,"y":1403.7526},{"x":87,"y":1385.1055},{"x":88,"y":1359.1972},{"x":89,"y":1332.6952},{"x":90,"y":1300.6404},{"x":91,"y":1265.4414},{"x":92,"y":1229.3579},{"x":93,"y":1193.6507},{"x":94,"y":1152.3841},{"x":95,"y":1114.6689},{"x":96,"y":1073.1532},{"x":97,"y":1037.2619},{"x":98,"y":1007.3073},{"x":99,"y":968.4259},{"x":100,"y":926.7198}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area PFm.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1527.3001},{"x":1,"y":1839.0984},{"x":2,"y":2189.7366},{"x":3,"y":2639.5104},{"x":4,"y":3131.3987},{"x":5,"y":3546.1502},{"x":6,"y":3968.0329},{"x":7,"y":4313.3664},{"x":8,"y":4629.8887},{"x":9,"y":4921.8474},{"x":10,"y":5182.0203},{"x":11,"y":5426.3305},{"x":12,"y":5630.5118},{"x":13,"y":5826.4645},{"x":14,"y":6018.1452},{"x":15,"y":6144.1827},{"x":16,"y":6230.8311},{"x":17,"y":6263.8153},{"x":18,"y":6295.1772},{"x":19,"y":6296.3602},{"x":20,"y":6294.3915},{"x":21,"y":6314.7012},{"x":22,"y":6362.3784},{"x":23,"y":6393.6048},{"x":24,"y":6420.5427},{"x":25,"y":6462.1369},{"x":26,"y":6503.4864},{"x":27,"y":6486.3374},{"x":28,"y":6458.1349},{"x":29,"y":6408.5281},{"x":30,"y":6308.3592},{"x":31,"y":6183.2181},{"x":32,"y":6088.2681},{"x":33,"y":5990.1512},{"x":34,"y":5911.5681},{"x":35,"y":5814.0018},{"x":36,"y":5734.8252},{"x":37,"y":5661.2506},{"x":38,"y":5574.9418},{"x":39,"y":5489.2553},{"x":40,"y":5425.5495},{"x":41,"y":5373.17},{"x":42,"y":5327.9416},{"x":43,"y":5299.4144},{"x":44,"y":5248.7505},{"x":45,"y":5200.1832},{"x":46,"y":5163.8114},{"x":47,"y":5144.2242},{"x":48,"y":5116.2263},{"x":49,"y":5087.371},{"x":50,"y":5045.9499},{"x":51,"y":4961.5553},{"x":52,"y":4864.9578},{"x":53,"y":4758.0079},{"x":54,"y":4660.895},{"x":55,"y":4598.5002},{"x":56,"y":4536.0734},{"x":57,"y":4461.2234},{"x":58,"y":4398.3649},{"x":59,"y":4355.6073},{"x":60,"y":4314.6257},{"x":61,"y":4267.4302},{"x":62,"y":4189.1331},{"x":63,"y":4131.0034},{"x":64,"y":4072.6532},{"x":65,"y":3997.7178},{"x":66,"y":3924.6518},{"x":67,"y":3860.0437},{"x":68,"y":3787.0319},{"x":69,"y":3704.1567},{"x":70,"y":3633.4575},{"x":71,"y":3567.382},{"x":72,"y":3512.4774},{"x":73,"y":3477.1785},{"x":74,"y":3454.906},{"x":75,"y":3445.1648},{"x":76,"y":3436.9216},{"x":77,"y":3436.4549},{"x":78,"y":3437.5753},{"x":79,"y":3415.6112},{"x":80,"y":3392.0835},{"x":81,"y":3375.1237},{"x":82,"y":3364.7892},{"x":83,"y":3354.9507},{"x":84,"y":3328.3289},{"x":85,"y":3303.3088},{"x":86,"y":3263.5839},{"x":87,"y":3211.2551},{"x":88,"y":3166.2806},{"x":89,"y":3117.2966},{"x":90,"y":3042.0249},{"x":91,"y":2985.2467},{"x":92,"y":2883.7574},{"x":93,"y":2773.0366},{"x":94,"y":2642.1972},{"x":95,"y":2502.4948},{"x":96,"y":2377.1516},{"x":97,"y":2268.729},{"x":98,"y":2177.3427},{"x":99,"y":2123.8062},{"x":100,"y":2083.8323}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area PFm","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area PFm.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":350.924},{"x":1,"y":384.2545},{"x":2,"y":420.4888},{"x":3,"y":453.5182},{"x":4,"y":475.1151},{"x":5,"y":488.122},{"x":6,"y":501.9878},{"x":7,"y":527.154},{"x":8,"y":551.6976},{"x":9,"y":576.1593},{"x":10,"y":601.1472},{"x":11,"y":626.8803},{"x":12,"y":646.6886},{"x":13,"y":669.9733},{"x":14,"y":695.0681},{"x":15,"y":723.951},{"x":16,"y":751.1475},{"x":17,"y":779.3186},{"x":18,"y":811.9418},{"x":19,"y":841.6441},{"x":20,"y":870.2346},{"x":21,"y":902.4196},{"x":22,"y":933.2005},{"x":23,"y":955.4812},{"x":24,"y":973.7632},{"x":25,"y":994.3365},{"x":26,"y":1010.2058},{"x":27,"y":1032.3017},{"x":28,"y":1050.0611},{"x":29,"y":1070.9975},{"x":30,"y":1086.8784},{"x":31,"y":1092.7762},{"x":32,"y":1093.2012},{"x":33,"y":1087.0664},{"x":34,"y":1076.1617},{"x":35,"y":1061.3283},{"x":36,"y":1050.8619},{"x":37,"y":1038.326},{"x":38,"y":1026.0398},{"x":39,"y":1013.1174},{"x":40,"y":995.1291},{"x":41,"y":982.5762},{"x":42,"y":972.3553},{"x":43,"y":959.9188},{"x":44,"y":950.6932},{"x":45,"y":940.5263},{"x":46,"y":934.7189},{"x":47,"y":930.807},{"x":48,"y":929.6185},{"x":49,"y":931.1468},{"x":50,"y":932.5176},{"x":51,"y":934.2126},{"x":52,"y":931.8024},{"x":53,"y":929.4346},{"x":54,"y":928.0453},{"x":55,"y":923.7144},{"x":56,"y":915.6868},{"x":57,"y":908.9238},{"x":58,"y":899.4296},{"x":59,"y":886.0047},{"x":60,"y":873.9596},{"x":61,"y":865.4562},{"x":62,"y":856.5329},{"x":63,"y":845.7543},{"x":64,"y":834.0316},{"x":65,"y":816.9375},{"x":66,"y":798.7362},{"x":67,"y":782.2733},{"x":68,"y":768.0219},{"x":69,"y":756.9281},{"x":70,"y":749.4084},{"x":71,"y":738.0489},{"x":72,"y":726.5856},{"x":73,"y":718.8053},{"x":74,"y":710.0391},{"x":75,"y":704.2395},{"x":76,"y":697.6099},{"x":77,"y":691.1072},{"x":78,"y":683.6053},{"x":79,"y":665.6237},{"x":80,"y":650.4815},{"x":81,"y":640.1421},{"x":82,"y":633.3483},{"x":83,"y":629.3863},{"x":84,"y":630.3066},{"x":85,"y":628.2752},{"x":86,"y":620.8921},{"x":87,"y":613.1794},{"x":88,"y":604.1506},{"x":89,"y":594.4043},{"x":90,"y":581.6574},{"x":91,"y":568.0625},{"x":92,"y":556.0725},{"x":93,"y":542.6974},{"x":94,"y":527.2901},{"x":95,"y":516.9345},{"x":96,"y":508.7705},{"x":97,"y":491.4733},{"x":98,"y":470.0076},{"x":99,"y":454.3691},{"x":100,"y":443.1489}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area PFm","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area PFm.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":573.1877},{"x":1,"y":804.0202},{"x":2,"y":1071.8902},{"x":3,"y":1339.0262},{"x":4,"y":1599.0561},{"x":5,"y":1891.4777},{"x":6,"y":2183.0962},{"x":7,"y":2471.9999},{"x":8,"y":2724.2566},{"x":9,"y":2973.4222},{"x":10,"y":3214.1044},{"x":11,"y":3428.8791},{"x":12,"y":3622.7196},{"x":13,"y":3802.703},{"x":14,"y":3941.5544},{"x":15,"y":4045.2755},{"x":16,"y":4122.2815},{"x":17,"y":4177.8563},{"x":18,"y":4229.1878},{"x":19,"y":4280.8852},{"x":20,"y":4311.9339},{"x":21,"y":4336.7753},{"x":22,"y":4367.9924},{"x":23,"y":4380.3107},{"x":24,"y":4376.6181},{"x":25,"y":4350.6657},{"x":26,"y":4315.2528},{"x":27,"y":4285.5},{"x":28,"y":4262.5087},{"x":29,"y":4253.2519},{"x":30,"y":4244.5886},{"x":31,"y":4197.4294},{"x":32,"y":4096.0252},{"x":33,"y":3982.8171},{"x":34,"y":3877.8225},{"x":35,"y":3790.9951},{"x":36,"y":3720.0325},{"x":37,"y":3672.8532},{"x":38,"y":3646.2768},{"x":39,"y":3623.06},{"x":40,"y":3608.05},{"x":41,"y":3579.1184},{"x":42,"y":3556.7084},{"x":43,"y":3518.7706},{"x":44,"y":3474.4283},{"x":45,"y":3421.4001},{"x":46,"y":3356.5385},{"x":47,"y":3296.1175},{"x":48,"y":3242.3036},{"x":49,"y":3203.5722},{"x":50,"y":3172.9243},{"x":51,"y":3152.7316},{"x":52,"y":3160.0208},{"x":53,"y":3182.0019},{"x":54,"y":3200.4349},{"x":55,"y":3210.4232},{"x":56,"y":3220.7546},{"x":57,"y":3231.9356},{"x":58,"y":3229.8094},{"x":59,"y":3199.2304},{"x":60,"y":3149.499},{"x":61,"y":3090.6089},{"x":62,"y":3041.8902},{"x":63,"y":3009.7549},{"x":64,"y":2986.3286},{"x":65,"y":2951.1689},{"x":66,"y":2913.7027},{"x":67,"y":2876.8481},{"x":68,"y":2851.3901},{"x":69,"y":2843.3843},{"x":70,"y":2848.4798},{"x":71,"y":2865.8639},{"x":72,"y":2890.695},{"x":73,"y":2907.7937},{"x":74,"y":2899.8862},{"x":75,"y":2881.5885},{"x":76,"y":2858.776},{"x":77,"y":2826.9979},{"x":78,"y":2796.5929},{"x":79,"y":2771.0312},{"x":80,"y":2743.2496},{"x":81,"y":2720.0674},{"x":82,"y":2700.2702},{"x":83,"y":2664.1631},{"x":84,"y":2616.6772},{"x":85,"y":2550.1042},{"x":86,"y":2489.7028},{"x":87,"y":2425.079},{"x":88,"y":2347.6158},{"x":89,"y":2275.0935},{"x":90,"y":2186.8813},{"x":91,"y":2112.803},{"x":92,"y":2051.0543},{"x":93,"y":1994.9916},{"x":94,"y":1942.902},{"x":95,"y":1875.2428},{"x":96,"y":1769.9738},{"x":97,"y":1668.7373},{"x":98,"y":1564.0407},{"x":99,"y":1444.2464},{"x":100,"y":1326.3748}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PGp",[{"name":"Receptor density fingerprint of Area PGp","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["428","518","1081","3416","1847","2374","2294","461","202","843","54","386","855","315","419","130"]},{"label":"mean_sd","data":["242","360","313","1572","767","790","830","180","74","432","31","165","mg/mol","169","233","58"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGp (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(42,60,252,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area 45",[{"name":"Receptor density fingerprint of Area 45","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 45.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 45. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["472","434","1078","NA","1515","1428","2038","676","215","420","47","200","165","404","266","69"]},{"label":"mean_sd","data":["379","264","40","NA","283","1197","1372","493","162","20","49","143","136","346","192","51"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 45 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area 45","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area 45","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area 45","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 45","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area 45","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area 45","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 45","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area 45","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area 45","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 45","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area 45","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area 45","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area 45","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 45.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area 45"],"datasets":[{"data":[{"x":0,"y":1460.5346},{"x":1,"y":1583.3308},{"x":2,"y":1708.1363},{"x":3,"y":1800.648},{"x":4,"y":1890.2756},{"x":5,"y":1984.8448},{"x":6,"y":2070.8684},{"x":7,"y":2152.0161},{"x":8,"y":2222.3149},{"x":9,"y":2291.0953},{"x":10,"y":2356.3471},{"x":11,"y":2423.0595},{"x":12,"y":2481.5627},{"x":13,"y":2528.1947},{"x":14,"y":2561.3445},{"x":15,"y":2579.1757},{"x":16,"y":2590.0611},{"x":17,"y":2599.5073},{"x":18,"y":2600.3773},{"x":19,"y":2596.3105},{"x":20,"y":2599.551},{"x":21,"y":2610.8303},{"x":22,"y":2630.3976},{"x":23,"y":2650.42},{"x":24,"y":2661.193},{"x":25,"y":2673.7478},{"x":26,"y":2696.2352},{"x":27,"y":2715.9422},{"x":28,"y":2722.3722},{"x":29,"y":2714.4745},{"x":30,"y":2696.9457},{"x":31,"y":2666.065},{"x":32,"y":2628.7015},{"x":33,"y":2586.6432},{"x":34,"y":2539.0687},{"x":35,"y":2492.0848},{"x":36,"y":2445.7293},{"x":37,"y":2401.4904},{"x":38,"y":2355.5708},{"x":39,"y":2307.831},{"x":40,"y":2266.8691},{"x":41,"y":2227.8105},{"x":42,"y":2189.3588},{"x":43,"y":2160.8589},{"x":44,"y":2138.9827},{"x":45,"y":2124.0153},{"x":46,"y":2112.5699},{"x":47,"y":2107.8888},{"x":48,"y":2115.4407},{"x":49,"y":2125.1132},{"x":50,"y":2134.312},{"x":51,"y":2144.0797},{"x":52,"y":2148.1026},{"x":53,"y":2140.9344},{"x":54,"y":2126.352},{"x":55,"y":2107.0662},{"x":56,"y":2080.8445},{"x":57,"y":2044.8838},{"x":58,"y":2005.5724},{"x":59,"y":1971.4869},{"x":60,"y":1945.5765},{"x":61,"y":1920.2847},{"x":62,"y":1903.216},{"x":63,"y":1896.7831},{"x":64,"y":1896.8248},{"x":65,"y":1896.7542},{"x":66,"y":1896.0333},{"x":67,"y":1898.1594},{"x":68,"y":1898.8414},{"x":69,"y":1898.7958},{"x":70,"y":1893.3436},{"x":71,"y":1883.2048},{"x":72,"y":1866.9435},{"x":73,"y":1852.3357},{"x":74,"y":1837.6232},{"x":75,"y":1820.6235},{"x":76,"y":1801.4688},{"x":77,"y":1781.3909},{"x":78,"y":1760.8147},{"x":79,"y":1739.6217},{"x":80,"y":1712.6818},{"x":81,"y":1684.8448},{"x":82,"y":1654.5207},{"x":83,"y":1621.3143},{"x":84,"y":1585.5909},{"x":85,"y":1547.395},{"x":86,"y":1511.2916},{"x":87,"y":1469.6548},{"x":88,"y":1430.0076},{"x":89,"y":1392.449},{"x":90,"y":1359.7888},{"x":91,"y":1325.4199},{"x":92,"y":1293.4337},{"x":93,"y":1259.0874},{"x":94,"y":1221.506},{"x":95,"y":1183.6323},{"x":96,"y":1148.2095},{"x":97,"y":1114.2643},{"x":98,"y":1083.8378},{"x":99,"y":1047.8342},{"x":100,"y":1012.4125}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area 45","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 45.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":327.8791},{"x":1,"y":341.1026},{"x":2,"y":351.617},{"x":3,"y":359.3051},{"x":4,"y":364.3489},{"x":5,"y":368.2543},{"x":6,"y":369.8121},{"x":7,"y":370.5904},{"x":8,"y":370.2079},{"x":9,"y":368.4334},{"x":10,"y":366.0463},{"x":11,"y":363.6573},{"x":12,"y":360.9928},{"x":13,"y":358.2906},{"x":14,"y":354.5059},{"x":15,"y":351.5285},{"x":16,"y":349.3263},{"x":17,"y":347.299},{"x":18,"y":344.9121},{"x":19,"y":342.3601},{"x":20,"y":339.4348},{"x":21,"y":337.1609},{"x":22,"y":334.8319},{"x":23,"y":332.476},{"x":24,"y":329.6532},{"x":25,"y":326.627},{"x":26,"y":323.0913},{"x":27,"y":319.9109},{"x":28,"y":316.3637},{"x":29,"y":313.8329},{"x":30,"y":312.1855},{"x":31,"y":309.8868},{"x":32,"y":307.8339},{"x":33,"y":305.3263},{"x":34,"y":303.0805},{"x":35,"y":300.7978},{"x":36,"y":297.37},{"x":37,"y":294.9973},{"x":38,"y":292.9894},{"x":39,"y":290.5998},{"x":40,"y":288.3233},{"x":41,"y":285.9239},{"x":42,"y":283.3922},{"x":43,"y":280.0843},{"x":44,"y":276.3924},{"x":45,"y":272.3486},{"x":46,"y":268.0093},{"x":47,"y":263.137},{"x":48,"y":257.545},{"x":49,"y":252.9017},{"x":50,"y":248.6916},{"x":51,"y":243.4231},{"x":52,"y":238.875},{"x":53,"y":235.322},{"x":54,"y":232.3812},{"x":55,"y":229.4491},{"x":56,"y":228.4114},{"x":57,"y":228.2313},{"x":58,"y":229.1504},{"x":59,"y":230.5842},{"x":60,"y":231.8071},{"x":61,"y":234.1302},{"x":62,"y":236.2096},{"x":63,"y":237.869},{"x":64,"y":239.9943},{"x":65,"y":242.0023},{"x":66,"y":242.9794},{"x":67,"y":243.8649},{"x":68,"y":244.8978},{"x":69,"y":245.1278},{"x":70,"y":245.4387},{"x":71,"y":245.8692},{"x":72,"y":246.3646},{"x":73,"y":246.9616},{"x":74,"y":247.4434},{"x":75,"y":247.6941},{"x":76,"y":248.3069},{"x":77,"y":248.0117},{"x":78,"y":248.1423},{"x":79,"y":248.4666},{"x":80,"y":247.758},{"x":81,"y":247.3917},{"x":82,"y":247.5765},{"x":83,"y":247.33},{"x":84,"y":246.4404},{"x":85,"y":245.1479},{"x":86,"y":243.0743},{"x":87,"y":239.8171},{"x":88,"y":237.5107},{"x":89,"y":234.2044},{"x":90,"y":229.576},{"x":91,"y":224.9077},{"x":92,"y":220.0178},{"x":93,"y":214.1619},{"x":94,"y":208.4733},{"x":95,"y":201.9736},{"x":96,"y":194.6076},{"x":97,"y":187.7017},{"x":98,"y":181.5218},{"x":99,"y":173.9228},{"x":100,"y":165.131}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 45.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":794.48},{"x":1,"y":940.5194},{"x":2,"y":1053.7778},{"x":3,"y":1138.8911},{"x":4,"y":1203.1464},{"x":5,"y":1267.0606},{"x":6,"y":1327.3684},{"x":7,"y":1379.3621},{"x":8,"y":1419.2054},{"x":9,"y":1446.2068},{"x":10,"y":1473.0183},{"x":11,"y":1492.259},{"x":12,"y":1518.4788},{"x":13,"y":1535.2658},{"x":14,"y":1544.8996},{"x":15,"y":1552.355},{"x":16,"y":1558.8289},{"x":17,"y":1564.4463},{"x":18,"y":1562.6365},{"x":19,"y":1559.8785},{"x":20,"y":1552.9332},{"x":21,"y":1554.6604},{"x":22,"y":1554.1087},{"x":23,"y":1560.5853},{"x":24,"y":1562.5948},{"x":25,"y":1571.5308},{"x":26,"y":1572.5263},{"x":27,"y":1574.6635},{"x":28,"y":1578.3071},{"x":29,"y":1580.245},{"x":30,"y":1576.3369},{"x":31,"y":1572.3838},{"x":32,"y":1560.6553},{"x":33,"y":1540.2516},{"x":34,"y":1528.7306},{"x":35,"y":1524.9832},{"x":36,"y":1519.8077},{"x":37,"y":1511.4899},{"x":38,"y":1496.5061},{"x":39,"y":1480.3498},{"x":40,"y":1458.8332},{"x":41,"y":1443.0229},{"x":42,"y":1435.5261},{"x":43,"y":1442.0053},{"x":44,"y":1444.9074},{"x":45,"y":1441.6402},{"x":46,"y":1431.2902},{"x":47,"y":1414.4441},{"x":48,"y":1386.7586},{"x":49,"y":1366.3089},{"x":50,"y":1356.5942},{"x":51,"y":1344.4671},{"x":52,"y":1347.008},{"x":53,"y":1353.9855},{"x":54,"y":1361.1103},{"x":55,"y":1370.0409},{"x":56,"y":1372.2204},{"x":57,"y":1368.4059},{"x":58,"y":1351.1588},{"x":59,"y":1322.46},{"x":60,"y":1289.138},{"x":61,"y":1265.448},{"x":62,"y":1254.4053},{"x":63,"y":1248.441},{"x":64,"y":1243.3412},{"x":65,"y":1237.8682},{"x":66,"y":1242.824},{"x":67,"y":1246.9858},{"x":68,"y":1263.4056},{"x":69,"y":1278.3532},{"x":70,"y":1288.1314},{"x":71,"y":1290.8899},{"x":72,"y":1292.9224},{"x":73,"y":1299.5247},{"x":74,"y":1303.8868},{"x":75,"y":1301.8321},{"x":76,"y":1300.349},{"x":77,"y":1296.586},{"x":78,"y":1289.4988},{"x":79,"y":1285.662},{"x":80,"y":1267.5848},{"x":81,"y":1257.3968},{"x":82,"y":1252.3141},{"x":83,"y":1241.438},{"x":84,"y":1222.7781},{"x":85,"y":1212.0271},{"x":86,"y":1190.7008},{"x":87,"y":1171.4413},{"x":88,"y":1155.1947},{"x":89,"y":1135.3368},{"x":90,"y":1119.4464},{"x":91,"y":1105.8203},{"x":92,"y":1095.4363},{"x":93,"y":1091.4803},{"x":94,"y":1087.1864},{"x":95,"y":1078.3759},{"x":96,"y":1066.9846},{"x":97,"y":1043.7603},{"x":98,"y":1004.485},{"x":99,"y":956.7271},{"x":100,"y":913.7368}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area 45","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 45.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":634.7955},{"x":1,"y":715.7687},{"x":2,"y":781.4727},{"x":3,"y":841.6638},{"x":4,"y":893.3103},{"x":5,"y":942.649},{"x":6,"y":985.8463},{"x":7,"y":1025.6416},{"x":8,"y":1062.7935},{"x":9,"y":1096.052},{"x":10,"y":1126.9579},{"x":11,"y":1153.8377},{"x":12,"y":1179.5711},{"x":13,"y":1201.6221},{"x":14,"y":1229.0763},{"x":15,"y":1253.4402},{"x":16,"y":1275.9424},{"x":17,"y":1296.356},{"x":18,"y":1314.8697},{"x":19,"y":1331.5639},{"x":20,"y":1347.287},{"x":21,"y":1360.9799},{"x":22,"y":1372.1697},{"x":23,"y":1380.9359},{"x":24,"y":1388.4395},{"x":25,"y":1392.0004},{"x":26,"y":1396.9711},{"x":27,"y":1401.0227},{"x":28,"y":1403.3993},{"x":29,"y":1404.9848},{"x":30,"y":1404.3766},{"x":31,"y":1402.9943},{"x":32,"y":1401.174},{"x":33,"y":1399.7365},{"x":34,"y":1397.613},{"x":35,"y":1394.3467},{"x":36,"y":1387.9961},{"x":37,"y":1379.3701},{"x":38,"y":1371.4225},{"x":39,"y":1358.4867},{"x":40,"y":1342.9006},{"x":41,"y":1327.155},{"x":42,"y":1315.2908},{"x":43,"y":1305.4578},{"x":44,"y":1295.1727},{"x":45,"y":1287.0624},{"x":46,"y":1278.0306},{"x":47,"y":1266.3693},{"x":48,"y":1257.2815},{"x":49,"y":1245.7491},{"x":50,"y":1235.1726},{"x":51,"y":1224.1686},{"x":52,"y":1208.1746},{"x":53,"y":1192.3328},{"x":54,"y":1177.2653},{"x":55,"y":1163.3418},{"x":56,"y":1147.4035},{"x":57,"y":1129.5419},{"x":58,"y":1114.4937},{"x":59,"y":1099.1838},{"x":60,"y":1086.0729},{"x":61,"y":1076.9446},{"x":62,"y":1070.4595},{"x":63,"y":1064.1696},{"x":64,"y":1058.0249},{"x":65,"y":1053.0802},{"x":66,"y":1044.8731},{"x":67,"y":1035.0001},{"x":68,"y":1023.007},{"x":69,"y":1006.423},{"x":70,"y":991.4522},{"x":71,"y":978.5116},{"x":72,"y":967.3209},{"x":73,"y":956.6532},{"x":74,"y":947.8532},{"x":75,"y":941.6319},{"x":76,"y":935.5573},{"x":77,"y":930.03},{"x":78,"y":926.5992},{"x":79,"y":925.0053},{"x":80,"y":920.6719},{"x":81,"y":918.1176},{"x":82,"y":915.8306},{"x":83,"y":914.1149},{"x":84,"y":913.2848},{"x":85,"y":911.3195},{"x":86,"y":910.1863},{"x":87,"y":905.2434},{"x":88,"y":899.6303},{"x":89,"y":892.9108},{"x":90,"y":884.336},{"x":91,"y":875.9214},{"x":92,"y":868.2849},{"x":93,"y":858.6831},{"x":94,"y":847.3264},{"x":95,"y":832.4932},{"x":96,"y":815.744},{"x":97,"y":799.3396},{"x":98,"y":779.2884},{"x":99,"y":760.3062},{"x":100,"y":740.1593}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 45","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 45.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":469.4491},{"x":1,"y":565.3924},{"x":2,"y":649.6494},{"x":3,"y":706.2583},{"x":4,"y":752.2487},{"x":5,"y":781.4631},{"x":6,"y":799.2048},{"x":7,"y":819.3022},{"x":8,"y":834.5061},{"x":9,"y":846.5419},{"x":10,"y":850.3304},{"x":11,"y":854.2942},{"x":12,"y":862.9013},{"x":13,"y":871.4134},{"x":14,"y":878.3993},{"x":15,"y":887.5916},{"x":16,"y":894.3492},{"x":17,"y":897.555},{"x":18,"y":897.5188},{"x":19,"y":890.8574},{"x":20,"y":873.5223},{"x":21,"y":862.6063},{"x":22,"y":855.4998},{"x":23,"y":851.1521},{"x":24,"y":848.3233},{"x":25,"y":841.817},{"x":26,"y":830.2764},{"x":27,"y":822.4912},{"x":28,"y":823.464},{"x":29,"y":820.342},{"x":30,"y":808.145},{"x":31,"y":801.8473},{"x":32,"y":799.092},{"x":33,"y":782.1962},{"x":34,"y":767.9729},{"x":35,"y":758.9476},{"x":36,"y":745.7124},{"x":37,"y":733.059},{"x":38,"y":712.6502},{"x":39,"y":703.5573},{"x":40,"y":698.6915},{"x":41,"y":692.2061},{"x":42,"y":690.6356},{"x":43,"y":685.4944},{"x":44,"y":679.0913},{"x":45,"y":675.183},{"x":46,"y":664.7518},{"x":47,"y":652.0746},{"x":48,"y":641.0708},{"x":49,"y":634.0346},{"x":50,"y":628.3031},{"x":51,"y":616.9945},{"x":52,"y":601.6129},{"x":53,"y":591.6409},{"x":54,"y":585.105},{"x":55,"y":577.5199},{"x":56,"y":566.2117},{"x":57,"y":567.1189},{"x":58,"y":577.0754},{"x":59,"y":584.2058},{"x":60,"y":582.6771},{"x":61,"y":584.2724},{"x":62,"y":585.7733},{"x":63,"y":587.1189},{"x":64,"y":581.0198},{"x":65,"y":578.8378},{"x":66,"y":579.3392},{"x":67,"y":575.0687},{"x":68,"y":562.4258},{"x":69,"y":547.4474},{"x":70,"y":534.9731},{"x":71,"y":522.2081},{"x":72,"y":516.2615},{"x":73,"y":504.3176},{"x":74,"y":493.2196},{"x":75,"y":485.6598},{"x":76,"y":480.8628},{"x":77,"y":476.1611},{"x":78,"y":469.3088},{"x":79,"y":462.6646},{"x":80,"y":457.6205},{"x":81,"y":452.4885},{"x":82,"y":450.9453},{"x":83,"y":452.5669},{"x":84,"y":445.114},{"x":85,"y":438.5897},{"x":86,"y":426.6008},{"x":87,"y":409.3276},{"x":88,"y":395.8666},{"x":89,"y":372.2243},{"x":90,"y":344.2449},{"x":91,"y":321.0722},{"x":92,"y":301.7635},{"x":93,"y":283.1574},{"x":94,"y":267.6314},{"x":95,"y":259.9897},{"x":96,"y":252.0991},{"x":97,"y":243.6278},{"x":98,"y":235.2602},{"x":99,"y":221.5029},{"x":100,"y":207.5209}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 45.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":13.2101},{"x":1,"y":15.6055},{"x":2,"y":17.279},{"x":3,"y":19.2977},{"x":4,"y":21.3187},{"x":5,"y":23.1311},{"x":6,"y":26.4183},{"x":7,"y":28.5334},{"x":8,"y":28.7524},{"x":9,"y":29.8097},{"x":10,"y":30.7849},{"x":11,"y":30.8247},{"x":12,"y":30.2471},{"x":13,"y":28.7272},{"x":14,"y":27.1162},{"x":15,"y":26.1655},{"x":16,"y":26.1373},{"x":17,"y":26.6089},{"x":18,"y":26.8998},{"x":19,"y":27.1571},{"x":20,"y":27.271},{"x":21,"y":27.3772},{"x":22,"y":27.5579},{"x":23,"y":27.463},{"x":24,"y":27.2674},{"x":25,"y":27.3969},{"x":26,"y":28.0425},{"x":27,"y":29.0192},{"x":28,"y":29.6249},{"x":29,"y":30.4451},{"x":30,"y":30.3474},{"x":31,"y":31.8173},{"x":32,"y":32.6919},{"x":33,"y":32.9726},{"x":34,"y":33.1706},{"x":35,"y":33.6537},{"x":36,"y":33.4897},{"x":37,"y":33.6151},{"x":38,"y":33.682},{"x":39,"y":33.3453},{"x":40,"y":32.3363},{"x":41,"y":31.7709},{"x":42,"y":30.8566},{"x":43,"y":30.3814},{"x":44,"y":30.7077},{"x":45,"y":30.5846},{"x":46,"y":30.4693},{"x":47,"y":29.9682},{"x":48,"y":29.9551},{"x":49,"y":29.3887},{"x":50,"y":29.3968},{"x":51,"y":30.2142},{"x":52,"y":30.3134},{"x":53,"y":30.1211},{"x":54,"y":29.7808},{"x":55,"y":29.2502},{"x":56,"y":28.5542},{"x":57,"y":28.1366},{"x":58,"y":28.7265},{"x":59,"y":29.1477},{"x":60,"y":29.6566},{"x":61,"y":29.5394},{"x":62,"y":29.0037},{"x":63,"y":28.3007},{"x":64,"y":27.6114},{"x":65,"y":28.3795},{"x":66,"y":29.7751},{"x":67,"y":29.5407},{"x":68,"y":28.8095},{"x":69,"y":28.3867},{"x":70,"y":29.0855},{"x":71,"y":28.9202},{"x":72,"y":28.5972},{"x":73,"y":27.7725},{"x":74,"y":27.6129},{"x":75,"y":27.3254},{"x":76,"y":27.9318},{"x":77,"y":28.2839},{"x":78,"y":29.1676},{"x":79,"y":30.1504},{"x":80,"y":30.9573},{"x":81,"y":31.6251},{"x":82,"y":31.6644},{"x":83,"y":31.6194},{"x":84,"y":31.734},{"x":85,"y":32.0767},{"x":86,"y":32.0147},{"x":87,"y":32.4512},{"x":88,"y":32.5375},{"x":89,"y":31.6079},{"x":90,"y":30.9472},{"x":91,"y":30.4269},{"x":92,"y":30.384},{"x":93,"y":30.8271},{"x":94,"y":30.6763},{"x":95,"y":29.2631},{"x":96,"y":27.2017},{"x":97,"y":26.1304},{"x":98,"y":24.631},{"x":99,"y":23.3251},{"x":100,"y":22.6634}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area 45","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 45.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":381.9101},{"x":1,"y":436.8927},{"x":2,"y":478.9781},{"x":3,"y":506.1044},{"x":4,"y":520.4062},{"x":5,"y":533.0569},{"x":6,"y":549.4602},{"x":7,"y":566.1098},{"x":8,"y":578.5351},{"x":9,"y":585.9845},{"x":10,"y":587.9969},{"x":11,"y":588.5602},{"x":12,"y":589.9104},{"x":13,"y":587.9436},{"x":14,"y":586.9858},{"x":15,"y":584.7292},{"x":16,"y":581.5806},{"x":17,"y":580.4543},{"x":18,"y":577.1911},{"x":19,"y":572.4089},{"x":20,"y":567.5581},{"x":21,"y":567.5312},{"x":22,"y":566.414},{"x":23,"y":563.5261},{"x":24,"y":562.8925},{"x":25,"y":559.6155},{"x":26,"y":561.1417},{"x":27,"y":561.2087},{"x":28,"y":561.1357},{"x":29,"y":562.8276},{"x":30,"y":561.7152},{"x":31,"y":559.0178},{"x":32,"y":555.3889},{"x":33,"y":550.7541},{"x":34,"y":539.5945},{"x":35,"y":529.6209},{"x":36,"y":524.797},{"x":37,"y":523.7451},{"x":38,"y":520.7351},{"x":39,"y":514.339},{"x":40,"y":504.8223},{"x":41,"y":496.7218},{"x":42,"y":497.2493},{"x":43,"y":494.5142},{"x":44,"y":492.4384},{"x":45,"y":494.3176},{"x":46,"y":495.8264},{"x":47,"y":499.0646},{"x":48,"y":498.9326},{"x":49,"y":501.257},{"x":50,"y":504.9812},{"x":51,"y":506.9896},{"x":52,"y":509.9079},{"x":53,"y":509.6259},{"x":54,"y":510.1441},{"x":55,"y":512.866},{"x":56,"y":516.1428},{"x":57,"y":520.7067},{"x":58,"y":519.7416},{"x":59,"y":518.1057},{"x":60,"y":512.3378},{"x":61,"y":506.6333},{"x":62,"y":498.6401},{"x":63,"y":490.7246},{"x":64,"y":481.579},{"x":65,"y":479.2424},{"x":66,"y":483.5324},{"x":67,"y":488.5284},{"x":68,"y":493.0161},{"x":69,"y":497.8114},{"x":70,"y":496.7059},{"x":71,"y":494.195},{"x":72,"y":495.16},{"x":73,"y":500.0311},{"x":74,"y":509.392},{"x":75,"y":519.6998},{"x":76,"y":525.8513},{"x":77,"y":532.4273},{"x":78,"y":539.4819},{"x":79,"y":543.8892},{"x":80,"y":549.4755},{"x":81,"y":548.9542},{"x":82,"y":546.5351},{"x":83,"y":540.1034},{"x":84,"y":531.8678},{"x":85,"y":525.7068},{"x":86,"y":520.4424},{"x":87,"y":510.6088},{"x":88,"y":503.5733},{"x":89,"y":494.3613},{"x":90,"y":482.2789},{"x":91,"y":471.8525},{"x":92,"y":459.313},{"x":93,"y":443.7903},{"x":94,"y":430.1989},{"x":95,"y":413.6311},{"x":96,"y":405.3675},{"x":97,"y":387.6068},{"x":98,"y":373.6256},{"x":99,"y":362.4871},{"x":100,"y":350.1698}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area 45","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 45.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":446.4682},{"x":1,"y":478.6471},{"x":2,"y":509.2584},{"x":3,"y":540.6435},{"x":4,"y":566.3428},{"x":5,"y":588.0512},{"x":6,"y":608.3105},{"x":7,"y":625.0107},{"x":8,"y":636.1673},{"x":9,"y":643.9884},{"x":10,"y":648.3029},{"x":11,"y":649.924},{"x":12,"y":647.4576},{"x":13,"y":642.3212},{"x":14,"y":634.378},{"x":15,"y":622.8576},{"x":16,"y":607.448},{"x":17,"y":590.2758},{"x":18,"y":571.8925},{"x":19,"y":553.8814},{"x":20,"y":535.8393},{"x":21,"y":515.5943},{"x":22,"y":497.1233},{"x":23,"y":479.3945},{"x":24,"y":459.785},{"x":25,"y":438.6457},{"x":26,"y":417.0415},{"x":27,"y":396.816},{"x":28,"y":372.5078},{"x":29,"y":349.9618},{"x":30,"y":328.4453},{"x":31,"y":306.9185},{"x":32,"y":284.8545},{"x":33,"y":263.7074},{"x":34,"y":242.3922},{"x":35,"y":222.3236},{"x":36,"y":201.4712},{"x":37,"y":183.0173},{"x":38,"y":168.4927},{"x":39,"y":157.2917},{"x":40,"y":147.5868},{"x":41,"y":138.0575},{"x":42,"y":129.3287},{"x":43,"y":122.5712},{"x":44,"y":115.2238},{"x":45,"y":108.158},{"x":46,"y":103.2221},{"x":47,"y":98.3181},{"x":48,"y":94.6898},{"x":49,"y":93.0116},{"x":50,"y":91.8996},{"x":51,"y":92.8934},{"x":52,"y":94.2564},{"x":53,"y":95.806},{"x":54,"y":97.0351},{"x":55,"y":99.1721},{"x":56,"y":101.208},{"x":57,"y":103.449},{"x":58,"y":105.6208},{"x":59,"y":109.1625},{"x":60,"y":113.0543},{"x":61,"y":116.162},{"x":62,"y":119.7928},{"x":63,"y":123.3744},{"x":64,"y":129.2577},{"x":65,"y":132.9809},{"x":66,"y":136.5838},{"x":67,"y":139.6859},{"x":68,"y":141.8055},{"x":69,"y":142.7797},{"x":70,"y":144.2386},{"x":71,"y":145.6713},{"x":72,"y":146.4523},{"x":73,"y":147.8483},{"x":74,"y":150.8827},{"x":75,"y":154.3874},{"x":76,"y":158.0307},{"x":77,"y":162.4452},{"x":78,"y":166.3661},{"x":79,"y":167.4467},{"x":80,"y":167.673},{"x":81,"y":167.0871},{"x":82,"y":165.8395},{"x":83,"y":164.3776},{"x":84,"y":164.2927},{"x":85,"y":165.2644},{"x":86,"y":166.9129},{"x":87,"y":168.346},{"x":88,"y":169.7038},{"x":89,"y":170.2005},{"x":90,"y":169.9151},{"x":91,"y":166.5571},{"x":92,"y":163.6538},{"x":93,"y":161.3259},{"x":94,"y":157.0934},{"x":95,"y":153.4914},{"x":96,"y":149.4574},{"x":97,"y":145.4651},{"x":98,"y":142.6291},{"x":99,"y":138.3102},{"x":100,"y":135.5216}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 45","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 45.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":128.2432},{"x":1,"y":133.4718},{"x":2,"y":137.4436},{"x":3,"y":141.3498},{"x":4,"y":144.5227},{"x":5,"y":150.0921},{"x":6,"y":151.1739},{"x":7,"y":156.9486},{"x":8,"y":158.6138},{"x":9,"y":160.1789},{"x":10,"y":158.062},{"x":11,"y":157.9045},{"x":12,"y":159.4278},{"x":13,"y":157.4277},{"x":14,"y":156.3406},{"x":15,"y":155.6615},{"x":16,"y":155.8074},{"x":17,"y":154.9571},{"x":18,"y":151.5084},{"x":19,"y":148.7766},{"x":20,"y":147.8011},{"x":21,"y":149.441},{"x":22,"y":149.1402},{"x":23,"y":147.3879},{"x":24,"y":145.9776},{"x":25,"y":147.4142},{"x":26,"y":149.2054},{"x":27,"y":149.8993},{"x":28,"y":150.6654},{"x":29,"y":152.7007},{"x":30,"y":154.1278},{"x":31,"y":152.3247},{"x":32,"y":149.1021},{"x":33,"y":148.4685},{"x":34,"y":147.7671},{"x":35,"y":148.5821},{"x":36,"y":148.9318},{"x":37,"y":150.0955},{"x":38,"y":152.7142},{"x":39,"y":154.7568},{"x":40,"y":158.9343},{"x":41,"y":160.7979},{"x":42,"y":162.3624},{"x":43,"y":166.3793},{"x":44,"y":168.8671},{"x":45,"y":173.4001},{"x":46,"y":177.4207},{"x":47,"y":181.5218},{"x":48,"y":187.0071},{"x":49,"y":188.0529},{"x":50,"y":188.0249},{"x":51,"y":189.9901},{"x":52,"y":190.2867},{"x":53,"y":192.1188},{"x":54,"y":202.2524},{"x":55,"y":210.0858},{"x":56,"y":215.743},{"x":57,"y":217.8028},{"x":58,"y":223.8773},{"x":59,"y":228.4059},{"x":60,"y":229.7807},{"x":61,"y":229.2109},{"x":62,"y":230.6402},{"x":63,"y":232.917},{"x":64,"y":235.4387},{"x":65,"y":236.6682},{"x":66,"y":237.4886},{"x":67,"y":241.6481},{"x":68,"y":244.9507},{"x":69,"y":245.65},{"x":70,"y":248.3345},{"x":71,"y":250.5447},{"x":72,"y":256.2273},{"x":73,"y":259.1402},{"x":74,"y":257.6825},{"x":75,"y":257.2173},{"x":76,"y":259.8811},{"x":77,"y":260.9476},{"x":78,"y":262.6104},{"x":79,"y":264.0823},{"x":80,"y":262.1313},{"x":81,"y":260.4572},{"x":82,"y":259.0434},{"x":83,"y":258.0762},{"x":84,"y":255.4195},{"x":85,"y":252.788},{"x":86,"y":251.6301},{"x":87,"y":253.008},{"x":88,"y":254.917},{"x":89,"y":255.733},{"x":90,"y":256.2008},{"x":91,"y":253.5028},{"x":92,"y":247.748},{"x":93,"y":243.7458},{"x":94,"y":236.6708},{"x":95,"y":231.8607},{"x":96,"y":229.1243},{"x":97,"y":222.6816},{"x":98,"y":216.0715},{"x":99,"y":207.8698},{"x":100,"y":198.6453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area 45","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 45.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":148.2509},{"x":1,"y":160.4788},{"x":2,"y":172.7641},{"x":3,"y":188.286},{"x":4,"y":202.4919},{"x":5,"y":211.0979},{"x":6,"y":217.7748},{"x":7,"y":225.6758},{"x":8,"y":233.2973},{"x":9,"y":238.0511},{"x":10,"y":242.8574},{"x":11,"y":246.1199},{"x":12,"y":248.1379},{"x":13,"y":250.3073},{"x":14,"y":253.4073},{"x":15,"y":255.9217},{"x":16,"y":255.3769},{"x":17,"y":256.2855},{"x":18,"y":256.7336},{"x":19,"y":255.8608},{"x":20,"y":255.5498},{"x":21,"y":257.467},{"x":22,"y":257.1439},{"x":23,"y":256.9265},{"x":24,"y":257.0385},{"x":25,"y":257.6207},{"x":26,"y":260.1275},{"x":27,"y":260.2744},{"x":28,"y":258.071},{"x":29,"y":258.9127},{"x":30,"y":258.0414},{"x":31,"y":256.9024},{"x":32,"y":255.1509},{"x":33,"y":255.3897},{"x":34,"y":254.6337},{"x":35,"y":254.2197},{"x":36,"y":252.7252},{"x":37,"y":251.3689},{"x":38,"y":250.0491},{"x":39,"y":249.2892},{"x":40,"y":250.3386},{"x":41,"y":252.2995},{"x":42,"y":254.0825},{"x":43,"y":254.6392},{"x":44,"y":255.3837},{"x":45,"y":255.833},{"x":46,"y":257.2473},{"x":47,"y":258.6471},{"x":48,"y":259.0378},{"x":49,"y":257.0129},{"x":50,"y":257.6312},{"x":51,"y":257.436},{"x":52,"y":258.2143},{"x":53,"y":258.2644},{"x":54,"y":257.8273},{"x":55,"y":258.1356},{"x":56,"y":257.5567},{"x":57,"y":256.1952},{"x":58,"y":256.4853},{"x":59,"y":258.2186},{"x":60,"y":260.9326},{"x":61,"y":262.1186},{"x":62,"y":262.9369},{"x":63,"y":261.639},{"x":64,"y":260.6033},{"x":65,"y":260.9028},{"x":66,"y":259.535},{"x":67,"y":259.6838},{"x":68,"y":258.9229},{"x":69,"y":258.0758},{"x":70,"y":255.9138},{"x":71,"y":253.6645},{"x":72,"y":252.8365},{"x":73,"y":252.5917},{"x":74,"y":249.7885},{"x":75,"y":248.9866},{"x":76,"y":249.7967},{"x":77,"y":249.386},{"x":78,"y":246.1164},{"x":79,"y":244.1496},{"x":80,"y":244.03},{"x":81,"y":242.4811},{"x":82,"y":241.1196},{"x":83,"y":239.2815},{"x":84,"y":235.9196},{"x":85,"y":232.4495},{"x":86,"y":228.9631},{"x":87,"y":226.325},{"x":88,"y":223.5355},{"x":89,"y":220.0405},{"x":90,"y":216.8779},{"x":91,"y":214.3161},{"x":92,"y":209.9348},{"x":93,"y":203.217},{"x":94,"y":195.4991},{"x":95,"y":187.8444},{"x":96,"y":181.5077},{"x":97,"y":172.7914},{"x":98,"y":162.8512},{"x":99,"y":154.3011},{"x":100,"y":147.3262}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 45.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":363.1229},{"x":1,"y":387.8446},{"x":2,"y":412.6686},{"x":3,"y":435.4615},{"x":4,"y":459.3812},{"x":5,"y":478.3833},{"x":6,"y":491.5823},{"x":7,"y":501.6668},{"x":8,"y":507.1233},{"x":9,"y":507.0855},{"x":10,"y":502.6994},{"x":11,"y":496.5091},{"x":12,"y":487.0889},{"x":13,"y":479.0364},{"x":14,"y":473.6371},{"x":15,"y":465.5097},{"x":16,"y":457.15},{"x":17,"y":450.4011},{"x":18,"y":443.7644},{"x":19,"y":436.2319},{"x":20,"y":428.6994},{"x":21,"y":419.0023},{"x":22,"y":411.1127},{"x":23,"y":405.6558},{"x":24,"y":401.1618},{"x":25,"y":399.5792},{"x":26,"y":402.3016},{"x":27,"y":408.1729},{"x":28,"y":412.7131},{"x":29,"y":411.2129},{"x":30,"y":404.6575},{"x":31,"y":398.4513},{"x":32,"y":389.7323},{"x":33,"y":378.2357},{"x":34,"y":365.5536},{"x":35,"y":350.043},{"x":36,"y":337.0479},{"x":37,"y":325.1481},{"x":38,"y":309.7302},{"x":39,"y":293.6685},{"x":40,"y":278.9523},{"x":41,"y":265.2233},{"x":42,"y":255.5226},{"x":43,"y":249.5831},{"x":44,"y":247.6395},{"x":45,"y":246.6937},{"x":46,"y":242.4396},{"x":47,"y":239.6172},{"x":48,"y":238.1692},{"x":49,"y":237.5023},{"x":50,"y":238.0605},{"x":51,"y":235.9509},{"x":52,"y":234.4507},{"x":53,"y":230.1675},{"x":54,"y":229.9983},{"x":55,"y":233.2483},{"x":56,"y":234.0215},{"x":57,"y":236.4597},{"x":58,"y":237.7025},{"x":59,"y":237.5634},{"x":60,"y":238.2972},{"x":61,"y":240.7975},{"x":62,"y":241.8165},{"x":63,"y":243.0112},{"x":64,"y":241.311},{"x":65,"y":238.9827},{"x":66,"y":239.6403},{"x":67,"y":239.7592},{"x":68,"y":241.4406},{"x":69,"y":244.8075},{"x":70,"y":248.7895},{"x":71,"y":252.1568},{"x":72,"y":254.1116},{"x":73,"y":257.2797},{"x":74,"y":259.2491},{"x":75,"y":262.5645},{"x":76,"y":269.9665},{"x":77,"y":274.6952},{"x":78,"y":280.4762},{"x":79,"y":288.2045},{"x":80,"y":292.5784},{"x":81,"y":297.4214},{"x":82,"y":299.5389},{"x":83,"y":298.7706},{"x":84,"y":298.3684},{"x":85,"y":294.9061},{"x":86,"y":291.7974},{"x":87,"y":288.7943},{"x":88,"y":284.1133},{"x":89,"y":281.039},{"x":90,"y":273.96},{"x":91,"y":269.7795},{"x":92,"y":266.2041},{"x":93,"y":263.1902},{"x":94,"y":259.2016},{"x":95,"y":253.2865},{"x":96,"y":249.3632},{"x":97,"y":241.6962},{"x":98,"y":236.1636},{"x":99,"y":229.2335},{"x":100,"y":220.5767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area 45","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 45.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area 45"],"datasets":[{"data":[{"x":0,"y":78.1084},{"x":1,"y":84.9645},{"x":2,"y":91.0532},{"x":3,"y":95.5791},{"x":4,"y":98.3777},{"x":5,"y":100.4353},{"x":6,"y":102.0098},{"x":7,"y":103.4378},{"x":8,"y":105.096},{"x":9,"y":106.5489},{"x":10,"y":107.8973},{"x":11,"y":108.5222},{"x":12,"y":108.471},{"x":13,"y":108.2248},{"x":14,"y":108.2734},{"x":15,"y":108.043},{"x":16,"y":107.8699},{"x":17,"y":107.6634},{"x":18,"y":107.6015},{"x":19,"y":107.1348},{"x":20,"y":106.8158},{"x":21,"y":106.8694},{"x":22,"y":107.5786},{"x":23,"y":108.7444},{"x":24,"y":109.4443},{"x":25,"y":109.7067},{"x":26,"y":109.8513},{"x":27,"y":109.3219},{"x":28,"y":108.7429},{"x":29,"y":108.1614},{"x":30,"y":107.9891},{"x":31,"y":106.603},{"x":32,"y":105.6344},{"x":33,"y":104.8022},{"x":34,"y":104.1244},{"x":35,"y":103.1104},{"x":36,"y":102.3964},{"x":37,"y":102.7234},{"x":38,"y":103.6768},{"x":39,"y":104.0412},{"x":40,"y":104.2372},{"x":41,"y":104.2372},{"x":42,"y":104.5237},{"x":43,"y":104.2933},{"x":44,"y":104.0511},{"x":45,"y":103.0073},{"x":46,"y":102.6726},{"x":47,"y":102.1502},{"x":48,"y":101.7177},{"x":49,"y":101.6195},{"x":50,"y":102.3458},{"x":51,"y":102.4462},{"x":52,"y":101.9925},{"x":53,"y":101.934},{"x":54,"y":101.8345},{"x":55,"y":101.7546},{"x":56,"y":101.7766},{"x":57,"y":101.8297},{"x":58,"y":101.925},{"x":59,"y":101.5507},{"x":60,"y":101.6761},{"x":61,"y":101.4481},{"x":62,"y":100.8504},{"x":63,"y":100.0694},{"x":64,"y":99.1571},{"x":65,"y":97.7408},{"x":66,"y":96.8638},{"x":67,"y":95.7591},{"x":68,"y":93.8969},{"x":69,"y":91.8417},{"x":70,"y":90.107},{"x":71,"y":89.1044},{"x":72,"y":87.4652},{"x":73,"y":85.9192},{"x":74,"y":84.9756},{"x":75,"y":83.969},{"x":76,"y":83.6151},{"x":77,"y":83.4688},{"x":78,"y":83.5502},{"x":79,"y":83.3848},{"x":80,"y":83.4078},{"x":81,"y":83.0115},{"x":82,"y":82.5122},{"x":83,"y":81.9019},{"x":84,"y":80.5658},{"x":85,"y":79.442},{"x":86,"y":78.2936},{"x":87,"y":77.4462},{"x":88,"y":76.4354},{"x":89,"y":74.5846},{"x":90,"y":72.1056},{"x":91,"y":70.1597},{"x":92,"y":68.7571},{"x":93,"y":66.9971},{"x":94,"y":65.6739},{"x":95,"y":64.3799},{"x":96,"y":63.1736},{"x":97,"y":61.0219},{"x":98,"y":58.9807},{"x":99,"y":57.1969},{"x":100,"y":54.9126}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 45","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 45.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":242.4714},{"x":1,"y":250.7951},{"x":2,"y":259.7815},{"x":3,"y":268.408},{"x":4,"y":275.2378},{"x":5,"y":280.239},{"x":6,"y":283.9212},{"x":7,"y":285.7811},{"x":8,"y":286.0227},{"x":9,"y":286.4763},{"x":10,"y":286.4911},{"x":11,"y":286.4111},{"x":12,"y":286.1154},{"x":13,"y":285.4677},{"x":14,"y":285.0456},{"x":15,"y":284.5767},{"x":16,"y":284.1206},{"x":17,"y":283.1973},{"x":18,"y":282.7552},{"x":19,"y":282.0832},{"x":20,"y":280.6612},{"x":21,"y":278.8055},{"x":22,"y":277.1465},{"x":23,"y":276.0516},{"x":24,"y":274.833},{"x":25,"y":274.214},{"x":26,"y":274.0571},{"x":27,"y":273.5409},{"x":28,"y":272.419},{"x":29,"y":271.9615},{"x":30,"y":271.0815},{"x":31,"y":269.8926},{"x":32,"y":267.7079},{"x":33,"y":265.4575},{"x":34,"y":263.6548},{"x":35,"y":261.6827},{"x":36,"y":259.2279},{"x":37,"y":256.5618},{"x":38,"y":253.571},{"x":39,"y":249.8624},{"x":40,"y":246.2392},{"x":41,"y":242.1144},{"x":42,"y":238.5763},{"x":43,"y":236.484},{"x":44,"y":234.5967},{"x":45,"y":232.173},{"x":46,"y":229.5571},{"x":47,"y":227.0632},{"x":48,"y":224.5747},{"x":49,"y":222.4277},{"x":50,"y":220.5809},{"x":51,"y":219.0437},{"x":52,"y":217.7184},{"x":53,"y":217.0493},{"x":54,"y":216.2636},{"x":55,"y":215.6882},{"x":56,"y":215.3476},{"x":57,"y":216.0696},{"x":58,"y":216.3634},{"x":59,"y":216.7627},{"x":60,"y":216.4955},{"x":61,"y":216.5857},{"x":62,"y":215.5667},{"x":63,"y":213.578},{"x":64,"y":212.1659},{"x":65,"y":209.9465},{"x":66,"y":208.2169},{"x":67,"y":207.2508},{"x":68,"y":206.4585},{"x":69,"y":205.6267},{"x":70,"y":205.8085},{"x":71,"y":205.7924},{"x":72,"y":205.6573},{"x":73,"y":205.6143},{"x":74,"y":205.8285},{"x":75,"y":205.8996},{"x":76,"y":205.2856},{"x":77,"y":204.803},{"x":78,"y":203.5548},{"x":79,"y":202.6549},{"x":80,"y":201.3211},{"x":81,"y":200.1485},{"x":82,"y":199.6121},{"x":83,"y":199.7426},{"x":84,"y":199.7115},{"x":85,"y":199.7334},{"x":86,"y":199.8951},{"x":87,"y":200.3864},{"x":88,"y":200.3858},{"x":89,"y":200.0216},{"x":90,"y":200.2697},{"x":91,"y":199.6195},{"x":92,"y":197.5551},{"x":93,"y":195.1741},{"x":94,"y":191.6469},{"x":95,"y":188.0536},{"x":96,"y":185.0563},{"x":97,"y":181.4895},{"x":98,"y":178.9988},{"x":99,"y":176.4345},{"x":100,"y":173.4422}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 45.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":2329.1235},{"x":1,"y":2525.8177},{"x":2,"y":2663.7145},{"x":3,"y":2780.8164},{"x":4,"y":2872.1168},{"x":5,"y":2933.5586},{"x":6,"y":2969.7929},{"x":7,"y":3014.8606},{"x":8,"y":3041.0337},{"x":9,"y":3062.6667},{"x":10,"y":3082.1499},{"x":11,"y":3103.616},{"x":12,"y":3119.5096},{"x":13,"y":3137.6468},{"x":14,"y":3150.0613},{"x":15,"y":3166.116},{"x":16,"y":3182.8989},{"x":17,"y":3188.6492},{"x":18,"y":3188.1948},{"x":19,"y":3188.0656},{"x":20,"y":3187.0585},{"x":21,"y":3180.8013},{"x":22,"y":3173.0829},{"x":23,"y":3163.6916},{"x":24,"y":3142.0249},{"x":25,"y":3117.5816},{"x":26,"y":3091.4563},{"x":27,"y":3057.6253},{"x":28,"y":3027.5128},{"x":29,"y":3003.6084},{"x":30,"y":2995.6601},{"x":31,"y":2984.5468},{"x":32,"y":2976.7859},{"x":33,"y":2967.3817},{"x":34,"y":2956.0409},{"x":35,"y":2939.6534},{"x":36,"y":2923.1503},{"x":37,"y":2917.5128},{"x":38,"y":2910.8969},{"x":39,"y":2902.394},{"x":40,"y":2889.0886},{"x":41,"y":2881.9775},{"x":42,"y":2875.0169},{"x":43,"y":2853.1159},{"x":44,"y":2820.7971},{"x":45,"y":2791.7109},{"x":46,"y":2758.1112},{"x":47,"y":2728.1731},{"x":48,"y":2685.1843},{"x":49,"y":2642.4576},{"x":50,"y":2608.4185},{"x":51,"y":2578.6758},{"x":52,"y":2547.2736},{"x":53,"y":2508.4241},{"x":54,"y":2463.5647},{"x":55,"y":2425.1331},{"x":56,"y":2383.5863},{"x":57,"y":2338.9373},{"x":58,"y":2302.3089},{"x":59,"y":2265.7624},{"x":60,"y":2225.8775},{"x":61,"y":2177.8831},{"x":62,"y":2139.7348},{"x":63,"y":2091.8873},{"x":64,"y":2043.7491},{"x":65,"y":2001.6689},{"x":66,"y":1957.9636},{"x":67,"y":1918.2625},{"x":68,"y":1868.5604},{"x":69,"y":1828.4216},{"x":70,"y":1790.7205},{"x":71,"y":1759.1246},{"x":72,"y":1736.3443},{"x":73,"y":1708.2351},{"x":74,"y":1685.7374},{"x":75,"y":1661.7608},{"x":76,"y":1637.0638},{"x":77,"y":1618.0377},{"x":78,"y":1610.9442},{"x":79,"y":1600.5609},{"x":80,"y":1588.0873},{"x":81,"y":1577.4166},{"x":82,"y":1555.6453},{"x":83,"y":1538.047},{"x":84,"y":1517.906},{"x":85,"y":1500.8983},{"x":86,"y":1486.9246},{"x":87,"y":1469.6974},{"x":88,"y":1457.2807},{"x":89,"y":1434.636},{"x":90,"y":1400.474},{"x":91,"y":1349.5559},{"x":92,"y":1290.592},{"x":93,"y":1240.8654},{"x":94,"y":1186.2181},{"x":95,"y":1128.2174},{"x":96,"y":1072.6946},{"x":97,"y":1025.0802},{"x":98,"y":969.9934},{"x":99,"y":915.1584},{"x":100,"y":855.2369}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area 45","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 45.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":288.9923},{"x":1,"y":309.7773},{"x":2,"y":328.8126},{"x":3,"y":345.6034},{"x":4,"y":358.1815},{"x":5,"y":366.2937},{"x":6,"y":372.7815},{"x":7,"y":376.1244},{"x":8,"y":378.2773},{"x":9,"y":380.2499},{"x":10,"y":381.7339},{"x":11,"y":382.5514},{"x":12,"y":384.1955},{"x":13,"y":385.053},{"x":14,"y":387.5857},{"x":15,"y":390.0167},{"x":16,"y":393.3792},{"x":17,"y":397.0094},{"x":18,"y":400.449},{"x":19,"y":404.9659},{"x":20,"y":409.1248},{"x":21,"y":413.3365},{"x":22,"y":415.7244},{"x":23,"y":417.682},{"x":24,"y":418.4909},{"x":25,"y":419.2575},{"x":26,"y":420.2398},{"x":27,"y":421.1289},{"x":28,"y":421.824},{"x":29,"y":423.2846},{"x":30,"y":425.636},{"x":31,"y":426.3901},{"x":32,"y":428.4124},{"x":33,"y":429.6646},{"x":34,"y":429.9736},{"x":35,"y":430.6096},{"x":36,"y":430.1823},{"x":37,"y":429.0452},{"x":38,"y":426.6607},{"x":39,"y":423.7124},{"x":40,"y":420.2925},{"x":41,"y":416.5521},{"x":42,"y":413.1852},{"x":43,"y":411.0173},{"x":44,"y":409.1146},{"x":45,"y":407.8484},{"x":46,"y":406.0724},{"x":47,"y":404.7061},{"x":48,"y":403.908},{"x":49,"y":402.6198},{"x":50,"y":400.687},{"x":51,"y":399.5797},{"x":52,"y":399.638},{"x":53,"y":399.1563},{"x":54,"y":397.7003},{"x":55,"y":396.4008},{"x":56,"y":394.9067},{"x":57,"y":391.0736},{"x":58,"y":388.5069},{"x":59,"y":384.5821},{"x":60,"y":380.3568},{"x":61,"y":377.5674},{"x":62,"y":373.4415},{"x":63,"y":369.8718},{"x":64,"y":366.714},{"x":65,"y":363.3653},{"x":66,"y":360.1197},{"x":67,"y":357.0405},{"x":68,"y":354.6639},{"x":69,"y":352.6405},{"x":70,"y":351.2026},{"x":71,"y":349.9003},{"x":72,"y":348.2182},{"x":73,"y":346.2901},{"x":74,"y":344.4846},{"x":75,"y":341.7091},{"x":76,"y":339.161},{"x":77,"y":336.1284},{"x":78,"y":333.2884},{"x":79,"y":329.922},{"x":80,"y":326.4277},{"x":81,"y":323.5492},{"x":82,"y":320.9594},{"x":83,"y":319.265},{"x":84,"y":316.1492},{"x":85,"y":313.1071},{"x":86,"y":311.1015},{"x":87,"y":308.7417},{"x":88,"y":306.4135},{"x":89,"y":304.1751},{"x":90,"y":302.0387},{"x":91,"y":298.6621},{"x":92,"y":294.9564},{"x":93,"y":290.4507},{"x":94,"y":284.9639},{"x":95,"y":278.1515},{"x":96,"y":273.482},{"x":97,"y":269.7171},{"x":98,"y":266.0367},{"x":99,"y":262.0832},{"x":100,"y":258.7819}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area 45","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 45.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":1005.5544},{"x":1,"y":1140.6296},{"x":2,"y":1282.2927},{"x":3,"y":1427.0001},{"x":4,"y":1537.5862},{"x":5,"y":1628.6752},{"x":6,"y":1720.0773},{"x":7,"y":1780.514},{"x":8,"y":1822.415},{"x":9,"y":1871.5799},{"x":10,"y":1922.7094},{"x":11,"y":1956.1988},{"x":12,"y":1995.0287},{"x":13,"y":2029.0892},{"x":14,"y":2051.0292},{"x":15,"y":2073.3927},{"x":16,"y":2086.5145},{"x":17,"y":2100.9911},{"x":18,"y":2114.785},{"x":19,"y":2117.8656},{"x":20,"y":2119.9499},{"x":21,"y":2122.6338},{"x":22,"y":2126.5934},{"x":23,"y":2130.3621},{"x":24,"y":2128.5693},{"x":25,"y":2119.9486},{"x":26,"y":2109.881},{"x":27,"y":2090.9789},{"x":28,"y":2061.8335},{"x":29,"y":2034.1653},{"x":30,"y":2000.8524},{"x":31,"y":1975.8356},{"x":32,"y":1954.9807},{"x":33,"y":1933.406},{"x":34,"y":1904.9711},{"x":35,"y":1877.5919},{"x":36,"y":1848.9845},{"x":37,"y":1813.6243},{"x":38,"y":1779.8701},{"x":39,"y":1750.2535},{"x":40,"y":1721.1585},{"x":41,"y":1696.3829},{"x":42,"y":1670.4723},{"x":43,"y":1648.3853},{"x":44,"y":1625.5198},{"x":45,"y":1608.239},{"x":46,"y":1599.82},{"x":47,"y":1593.3035},{"x":48,"y":1587.853},{"x":49,"y":1586.2885},{"x":50,"y":1587.6321},{"x":51,"y":1592.5324},{"x":52,"y":1599.0063},{"x":53,"y":1603.4052},{"x":54,"y":1614.2161},{"x":55,"y":1613.4045},{"x":56,"y":1608.3359},{"x":57,"y":1600.0201},{"x":58,"y":1586.2777},{"x":59,"y":1570.8167},{"x":60,"y":1556.1897},{"x":61,"y":1534.6709},{"x":62,"y":1517.2144},{"x":63,"y":1503.299},{"x":64,"y":1490.5743},{"x":65,"y":1477.577},{"x":66,"y":1464.6239},{"x":67,"y":1456.9567},{"x":68,"y":1451.543},{"x":69,"y":1456.3787},{"x":70,"y":1457.9518},{"x":71,"y":1475.7819},{"x":72,"y":1492.3323},{"x":73,"y":1520.6312},{"x":74,"y":1553.3891},{"x":75,"y":1584.1544},{"x":76,"y":1614.3661},{"x":77,"y":1635.184},{"x":78,"y":1653.5622},{"x":79,"y":1667.6292},{"x":80,"y":1678.3806},{"x":81,"y":1679.2344},{"x":82,"y":1678.8372},{"x":83,"y":1677.2387},{"x":84,"y":1679.506},{"x":85,"y":1682.4859},{"x":86,"y":1675.7679},{"x":87,"y":1660.1836},{"x":88,"y":1638.2992},{"x":89,"y":1612.9416},{"x":90,"y":1583.2615},{"x":91,"y":1554.9181},{"x":92,"y":1527.0889},{"x":93,"y":1503.3339},{"x":94,"y":1477.0244},{"x":95,"y":1446.2743},{"x":96,"y":1419.2013},{"x":97,"y":1388.1481},{"x":98,"y":1349.6414},{"x":99,"y":1313.3331},{"x":100,"y":1274.671}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 7A",[{"name":"Receptor density fingerprint of Area 7A","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["136","327","315","1327","549","634","1007","175","70","371","34","165","252","87","224","41"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 7A (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(175,238,238,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area 7A","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area 7A","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area 7A","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 7A","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area 7A","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area 7A","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 7A","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area 7A","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area 7A","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 7A","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area 7A","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area 7A","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area 7A","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area 7A"],"datasets":[{"data":[{"x":0,"y":663.539},{"x":1,"y":752.8634},{"x":2,"y":871.9389},{"x":3,"y":1098.3071},{"x":4,"y":1300.2764},{"x":5,"y":1359.9664},{"x":6,"y":1537.4431},{"x":7,"y":1723.7547},{"x":8,"y":1876.9231},{"x":9,"y":1959.4494},{"x":10,"y":2050.1882},{"x":11,"y":2166.3914},{"x":12,"y":2276.5378},{"x":13,"y":2335.9971},{"x":14,"y":2402.0258},{"x":15,"y":2519.0376},{"x":16,"y":2607.1689},{"x":17,"y":2669.0358},{"x":18,"y":2765.7592},{"x":19,"y":2864.845},{"x":20,"y":2943.0192},{"x":21,"y":3026.1182},{"x":22,"y":3077.0223},{"x":23,"y":3140.239},{"x":24,"y":3185.3043},{"x":25,"y":3216.7453},{"x":26,"y":3242.3179},{"x":27,"y":3270.7454},{"x":28,"y":3296.7027},{"x":29,"y":3311.2376},{"x":30,"y":3325.7087},{"x":31,"y":3343.813},{"x":32,"y":3358.2682},{"x":33,"y":3363.0345},{"x":34,"y":3359.3941},{"x":35,"y":3342.1894},{"x":36,"y":3319.2095},{"x":37,"y":3295.9588},{"x":38,"y":3261.208},{"x":39,"y":3213.2799},{"x":40,"y":3158.0433},{"x":41,"y":3073.2887},{"x":42,"y":2996.6862},{"x":43,"y":2912.3453},{"x":44,"y":2817.6401},{"x":45,"y":2736.7014},{"x":46,"y":2672.117},{"x":47,"y":2624.4041},{"x":48,"y":2565.9559},{"x":49,"y":2510.5804},{"x":50,"y":2464.0681},{"x":51,"y":2408.6072},{"x":52,"y":2357.4098},{"x":53,"y":2316.1774},{"x":54,"y":2275.7995},{"x":55,"y":2239.1028},{"x":56,"y":2213.0319},{"x":57,"y":2192.9383},{"x":58,"y":2173.8939},{"x":59,"y":2152.2656},{"x":60,"y":2130.8386},{"x":61,"y":2105.0342},{"x":62,"y":2072.1947},{"x":63,"y":2051.3312},{"x":64,"y":2023.5314},{"x":65,"y":1988.2613},{"x":66,"y":1952.1707},{"x":67,"y":1927.6988},{"x":68,"y":1903.5798},{"x":69,"y":1876.4679},{"x":70,"y":1852.6695},{"x":71,"y":1834.4395},{"x":72,"y":1821.0351},{"x":73,"y":1809.7367},{"x":74,"y":1803.0215},{"x":75,"y":1795.4408},{"x":76,"y":1789.3414},{"x":77,"y":1781.8507},{"x":78,"y":1776.5435},{"x":79,"y":1770.8319},{"x":80,"y":1762.5341},{"x":81,"y":1750.7678},{"x":82,"y":1733.7874},{"x":83,"y":1711.1019},{"x":84,"y":1691.6025},{"x":85,"y":1659.384},{"x":86,"y":1608.8117},{"x":87,"y":1575.5129},{"x":88,"y":1537.8691},{"x":89,"y":1461.1373},{"x":90,"y":1370.9544},{"x":91,"y":1300.9845},{"x":92,"y":1238.4245},{"x":93,"y":1134.4825},{"x":94,"y":1024.7995},{"x":95,"y":933.0514},{"x":96,"y":904.9452},{"x":97,"y":821.7994},{"x":98,"y":723.583},{"x":99,"y":665.7601},{"x":100,"y":617.7757}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area 7A","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":151.1982},{"x":1,"y":167.9588},{"x":2,"y":180.7446},{"x":3,"y":209.3757},{"x":4,"y":234.6896},{"x":5,"y":247.0121},{"x":6,"y":259.9775},{"x":7,"y":276.313},{"x":8,"y":292.8569},{"x":9,"y":307.6324},{"x":10,"y":314.6665},{"x":11,"y":317.5765},{"x":12,"y":323.5495},{"x":13,"y":329.3788},{"x":14,"y":333.624},{"x":15,"y":337.7094},{"x":16,"y":343.0088},{"x":17,"y":345.7185},{"x":18,"y":345.7708},{"x":19,"y":345.34},{"x":20,"y":342.5929},{"x":21,"y":339.5283},{"x":22,"y":334.1857},{"x":23,"y":329.4968},{"x":24,"y":325.7451},{"x":25,"y":321.0262},{"x":26,"y":315.8866},{"x":27,"y":313.555},{"x":28,"y":309.564},{"x":29,"y":304.9244},{"x":30,"y":301.1883},{"x":31,"y":299.1027},{"x":32,"y":295.3722},{"x":33,"y":292.4578},{"x":34,"y":289.8857},{"x":35,"y":288.1151},{"x":36,"y":287.7071},{"x":37,"y":286.264},{"x":38,"y":283.7241},{"x":39,"y":281.7018},{"x":40,"y":280.0032},{"x":41,"y":276.4685},{"x":42,"y":274.8314},{"x":43,"y":272.648},{"x":44,"y":271.053},{"x":45,"y":267.845},{"x":46,"y":264.7229},{"x":47,"y":261.6784},{"x":48,"y":259.0415},{"x":49,"y":254.4292},{"x":50,"y":249.1945},{"x":51,"y":243.9464},{"x":52,"y":237.1176},{"x":53,"y":234.2906},{"x":54,"y":229.7013},{"x":55,"y":223.725},{"x":56,"y":219.4258},{"x":57,"y":218.27},{"x":58,"y":216.7424},{"x":59,"y":217.2732},{"x":60,"y":221.3406},{"x":61,"y":222.8124},{"x":62,"y":225.8965},{"x":63,"y":230.6049},{"x":64,"y":233.7853},{"x":65,"y":234.0624},{"x":66,"y":236.9654},{"x":67,"y":237.9515},{"x":68,"y":237.1583},{"x":69,"y":235.7405},{"x":70,"y":235.0882},{"x":71,"y":236.4694},{"x":72,"y":238.1819},{"x":73,"y":239.3653},{"x":74,"y":240.0334},{"x":75,"y":243.7328},{"x":76,"y":248.7648},{"x":77,"y":250.6977},{"x":78,"y":256.4478},{"x":79,"y":263.7341},{"x":80,"y":269.4329},{"x":81,"y":272.9431},{"x":82,"y":273.2535},{"x":83,"y":272.8054},{"x":84,"y":269.2076},{"x":85,"y":261.1283},{"x":86,"y":256.163},{"x":87,"y":248.0658},{"x":88,"y":240.6242},{"x":89,"y":229.6725},{"x":90,"y":225.1961},{"x":91,"y":216.5756},{"x":92,"y":205.4539},{"x":93,"y":196.2495},{"x":94,"y":187.3501},{"x":95,"y":179.1233},{"x":96,"y":176.3328},{"x":97,"y":163.8241},{"x":98,"y":149.2057},{"x":99,"y":142.1163},{"x":100,"y":132.4732}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":227.9966},{"x":1,"y":260.1266},{"x":2,"y":312.0763},{"x":3,"y":414.6762},{"x":4,"y":490.9821},{"x":5,"y":513.4323},{"x":6,"y":561.5589},{"x":7,"y":600.4185},{"x":8,"y":610.9572},{"x":9,"y":640.1746},{"x":10,"y":805.0683},{"x":11,"y":831.3194},{"x":12,"y":851.5793},{"x":13,"y":860.5195},{"x":14,"y":863.3874},{"x":15,"y":877.9134},{"x":16,"y":886.6789},{"x":17,"y":891.857},{"x":18,"y":899.2275},{"x":19,"y":898.8455},{"x":20,"y":895.2042},{"x":21,"y":900.0077},{"x":22,"y":912.3623},{"x":23,"y":922.4453},{"x":24,"y":924.3774},{"x":25,"y":923.0026},{"x":26,"y":920.5417},{"x":27,"y":908.0752},{"x":28,"y":902.868},{"x":29,"y":893.4912},{"x":30,"y":895.781},{"x":31,"y":902.2439},{"x":32,"y":909.2903},{"x":33,"y":919.912},{"x":34,"y":925.0444},{"x":35,"y":920.5286},{"x":36,"y":909.8859},{"x":37,"y":904.182},{"x":38,"y":895.9315},{"x":39,"y":872.0172},{"x":40,"y":861.0069},{"x":41,"y":836.2822},{"x":42,"y":809.4185},{"x":43,"y":806.4975},{"x":44,"y":803.9193},{"x":45,"y":809.979},{"x":46,"y":819.136},{"x":47,"y":809.1287},{"x":48,"y":811.6801},{"x":49,"y":809.7502},{"x":50,"y":801.0422},{"x":51,"y":796.4513},{"x":52,"y":801.6047},{"x":53,"y":802.4903},{"x":54,"y":799.5808},{"x":55,"y":791.7419},{"x":56,"y":782.1892},{"x":57,"y":768.3173},{"x":58,"y":761.1379},{"x":59,"y":754.6662},{"x":60,"y":750.5267},{"x":61,"y":746.3632},{"x":62,"y":752.628},{"x":63,"y":754.018},{"x":64,"y":741.9876},{"x":65,"y":718.1295},{"x":66,"y":700.2568},{"x":67,"y":694.647},{"x":68,"y":692.1945},{"x":69,"y":704.0222},{"x":70,"y":720.6166},{"x":71,"y":735.6487},{"x":72,"y":734.1254},{"x":73,"y":733.8152},{"x":74,"y":733.1211},{"x":75,"y":725.1063},{"x":76,"y":725.3215},{"x":77,"y":723.1042},{"x":78,"y":710.1375},{"x":79,"y":706.906},{"x":80,"y":704.8816},{"x":81,"y":692.3977},{"x":82,"y":690.9053},{"x":83,"y":683.7458},{"x":84,"y":682.2311},{"x":85,"y":682.1647},{"x":86,"y":680.3273},{"x":87,"y":677.0761},{"x":88,"y":676.8538},{"x":89,"y":663.8228},{"x":90,"y":641.4838},{"x":91,"y":592.7274},{"x":92,"y":530.0127},{"x":93,"y":497.9832},{"x":94,"y":489.8614},{"x":95,"y":482.0792},{"x":96,"y":450.2751},{"x":97,"y":429.2006},{"x":98,"y":427.9265},{"x":99,"y":392.5824},{"x":100,"y":344.8273}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area 7A","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":633.2543},{"x":1,"y":683.8895},{"x":2,"y":733.8831},{"x":3,"y":817.8773},{"x":4,"y":913.5019},{"x":5,"y":962.923},{"x":6,"y":1029.0366},{"x":7,"y":1115.5869},{"x":8,"y":1181.192},{"x":9,"y":1215.1331},{"x":10,"y":1256.9819},{"x":11,"y":1323.7506},{"x":12,"y":1391.0358},{"x":13,"y":1438.3863},{"x":14,"y":1473.8055},{"x":15,"y":1529.6385},{"x":16,"y":1593.784},{"x":17,"y":1645.9451},{"x":18,"y":1674.4854},{"x":19,"y":1713.1953},{"x":20,"y":1761.9109},{"x":21,"y":1803.5934},{"x":22,"y":1815.8655},{"x":23,"y":1844.8328},{"x":24,"y":1875.7601},{"x":25,"y":1900.514},{"x":26,"y":1913.0381},{"x":27,"y":1915.5459},{"x":28,"y":1927.6898},{"x":29,"y":1946.5079},{"x":30,"y":1949.7002},{"x":31,"y":1946.5862},{"x":32,"y":1933.0266},{"x":33,"y":1917.4317},{"x":34,"y":1911.9525},{"x":35,"y":1897.0949},{"x":36,"y":1864.5121},{"x":37,"y":1832.8557},{"x":38,"y":1818.4731},{"x":39,"y":1786.3761},{"x":40,"y":1753.9339},{"x":41,"y":1717.9174},{"x":42,"y":1701.4803},{"x":43,"y":1675.9082},{"x":44,"y":1639.8605},{"x":45,"y":1609.1988},{"x":46,"y":1585.0067},{"x":47,"y":1563.7425},{"x":48,"y":1520.0845},{"x":49,"y":1472.4049},{"x":50,"y":1445.4671},{"x":51,"y":1409.7009},{"x":52,"y":1382.6194},{"x":53,"y":1368.7174},{"x":54,"y":1367.3614},{"x":55,"y":1355.4199},{"x":56,"y":1337.8691},{"x":57,"y":1327.0411},{"x":58,"y":1319.947},{"x":59,"y":1305.888},{"x":60,"y":1279.8923},{"x":61,"y":1243.9255},{"x":62,"y":1225.4457},{"x":63,"y":1219.6575},{"x":64,"y":1194.7077},{"x":65,"y":1170.3944},{"x":66,"y":1156.6991},{"x":67,"y":1151.1224},{"x":68,"y":1135.6361},{"x":69,"y":1117.7497},{"x":70,"y":1102.9007},{"x":71,"y":1094.3394},{"x":72,"y":1087.649},{"x":73,"y":1077.8298},{"x":74,"y":1069.0679},{"x":75,"y":1057.8355},{"x":76,"y":1043.0357},{"x":77,"y":1031.6027},{"x":78,"y":1016.6468},{"x":79,"y":1014.9124},{"x":80,"y":1009.3228},{"x":81,"y":992.1571},{"x":82,"y":981.1846},{"x":83,"y":975.0292},{"x":84,"y":965.3488},{"x":85,"y":932.1156},{"x":86,"y":905.011},{"x":87,"y":895.5183},{"x":88,"y":870.3877},{"x":89,"y":830.6858},{"x":90,"y":795.4082},{"x":91,"y":771.3419},{"x":92,"y":742.4899},{"x":93,"y":695.7374},{"x":94,"y":647.5571},{"x":95,"y":604.6211},{"x":96,"y":583.8928},{"x":97,"y":535.3829},{"x":98,"y":491.9205},{"x":99,"y":467.8257},{"x":100,"y":438.1232}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 7A","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":287.485},{"x":1,"y":323.9207},{"x":2,"y":355.1854},{"x":3,"y":406.9999},{"x":4,"y":446.3021},{"x":5,"y":484.376},{"x":6,"y":497.9161},{"x":7,"y":507.6449},{"x":8,"y":511.2654},{"x":9,"y":506.5552},{"x":10,"y":498.8589},{"x":11,"y":495.4824},{"x":12,"y":489.8124},{"x":13,"y":489.5566},{"x":14,"y":489.9393},{"x":15,"y":494.1125},{"x":16,"y":504.6869},{"x":17,"y":518.426},{"x":18,"y":524.4163},{"x":19,"y":534.2099},{"x":20,"y":546.0606},{"x":21,"y":560.1012},{"x":22,"y":574.3908},{"x":23,"y":579.876},{"x":24,"y":587.7441},{"x":25,"y":600.8418},{"x":26,"y":615.6641},{"x":27,"y":621.802},{"x":28,"y":627.6544},{"x":29,"y":629.3529},{"x":30,"y":628.0793},{"x":31,"y":630.3142},{"x":32,"y":626.9981},{"x":33,"y":624.1968},{"x":34,"y":618.3419},{"x":35,"y":612.0252},{"x":36,"y":603.0811},{"x":37,"y":591.6378},{"x":38,"y":573.8886},{"x":39,"y":563.6174},{"x":40,"y":552.9144},{"x":41,"y":537.4074},{"x":42,"y":529.4972},{"x":43,"y":521.2704},{"x":44,"y":515.5684},{"x":45,"y":501.9214},{"x":46,"y":494.5647},{"x":47,"y":491.4766},{"x":48,"y":490.4517},{"x":49,"y":491.2178},{"x":50,"y":493.6335},{"x":51,"y":494.9937},{"x":52,"y":496.1865},{"x":53,"y":497.0359},{"x":54,"y":500.1779},{"x":55,"y":501.9808},{"x":56,"y":496.7596},{"x":57,"y":491.0044},{"x":58,"y":483.6493},{"x":59,"y":473.5738},{"x":60,"y":459.3373},{"x":61,"y":452.936},{"x":62,"y":446.0854},{"x":63,"y":434.4769},{"x":64,"y":427.8319},{"x":65,"y":420.8046},{"x":66,"y":418.7184},{"x":67,"y":420.1777},{"x":68,"y":420.5275},{"x":69,"y":419.7971},{"x":70,"y":419.1136},{"x":71,"y":415.8936},{"x":72,"y":408.3836},{"x":73,"y":398.0484},{"x":74,"y":393.1448},{"x":75,"y":385.1306},{"x":76,"y":373.5769},{"x":77,"y":365.8039},{"x":78,"y":362.7305},{"x":79,"y":357.5371},{"x":80,"y":350.5533},{"x":81,"y":344.3416},{"x":82,"y":343.9415},{"x":83,"y":343.2905},{"x":84,"y":339.7408},{"x":85,"y":331.7992},{"x":86,"y":324.7165},{"x":87,"y":318.9469},{"x":88,"y":304.6224},{"x":89,"y":287.7717},{"x":90,"y":276.7229},{"x":91,"y":266.0581},{"x":92,"y":251.5404},{"x":93,"y":238.0793},{"x":94,"y":229.0837},{"x":95,"y":222.7677},{"x":96,"y":208.9835},{"x":97,"y":192.3791},{"x":98,"y":170.9256},{"x":99,"y":158.565},{"x":100,"y":142.0767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":16.2196},{"x":1,"y":18.623},{"x":2,"y":21.2825},{"x":3,"y":22.1199},{"x":4,"y":24.2586},{"x":5,"y":29.259},{"x":6,"y":31.8485},{"x":7,"y":34.6942},{"x":8,"y":37.9384},{"x":9,"y":38.0038},{"x":10,"y":36.569},{"x":11,"y":35.3809},{"x":12,"y":35.0293},{"x":13,"y":33.7838},{"x":14,"y":33.5527},{"x":15,"y":32.957},{"x":16,"y":34.0727},{"x":17,"y":34.848},{"x":18,"y":32.9535},{"x":19,"y":30.2609},{"x":20,"y":29.1827},{"x":21,"y":26.0969},{"x":22,"y":25.0696},{"x":23,"y":23.5956},{"x":24,"y":23.6397},{"x":25,"y":25.2483},{"x":26,"y":26.0559},{"x":27,"y":26.4713},{"x":28,"y":27.2641},{"x":29,"y":26.4122},{"x":30,"y":25.6611},{"x":31,"y":24.7922},{"x":32,"y":24.7539},{"x":33,"y":24.8243},{"x":34,"y":25.8481},{"x":35,"y":28.3815},{"x":36,"y":31.4486},{"x":37,"y":32.5446},{"x":38,"y":33.3392},{"x":39,"y":34.5921},{"x":40,"y":34.5468},{"x":41,"y":35.1758},{"x":42,"y":34.9421},{"x":43,"y":33.375},{"x":44,"y":32.0848},{"x":45,"y":30.3217},{"x":46,"y":29.9827},{"x":47,"y":26.7384},{"x":48,"y":20.7231},{"x":49,"y":18.3694},{"x":50,"y":18.7271},{"x":51,"y":17.8191},{"x":52,"y":17.5363},{"x":53,"y":19.2476},{"x":54,"y":19.5426},{"x":55,"y":20.2188},{"x":56,"y":23.112},{"x":57,"y":26.35},{"x":58,"y":28.4336},{"x":59,"y":29.6557},{"x":60,"y":31.1873},{"x":61,"y":32.0824},{"x":62,"y":32.0225},{"x":63,"y":31.2771},{"x":64,"y":31.2681},{"x":65,"y":30.8967},{"x":66,"y":30.0159},{"x":67,"y":29.5928},{"x":68,"y":29.8552},{"x":69,"y":29.6338},{"x":70,"y":29.3096},{"x":71,"y":29.8545},{"x":72,"y":30.439},{"x":73,"y":31.4543},{"x":74,"y":32.4313},{"x":75,"y":32.571},{"x":76,"y":31.993},{"x":77,"y":31.273},{"x":78,"y":31.3937},{"x":79,"y":31.3067},{"x":80,"y":32.3891},{"x":81,"y":33.3738},{"x":82,"y":31.73},{"x":83,"y":30.142},{"x":84,"y":28.7389},{"x":85,"y":26.1794},{"x":86,"y":25.5832},{"x":87,"y":24.709},{"x":88,"y":22.6134},{"x":89,"y":21.3432},{"x":90,"y":22.0623},{"x":91,"y":21.777},{"x":92,"y":20.1682},{"x":93,"y":22.4356},{"x":94,"y":21.2946},{"x":95,"y":16.7963},{"x":96,"y":13.4095},{"x":97,"y":10.1954},{"x":98,"y":8.3018},{"x":99,"y":7.8181},{"x":100,"y":8.4898}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area 7A","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":382.3219},{"x":1,"y":438.3244},{"x":2,"y":525.1396},{"x":3,"y":642.9287},{"x":4,"y":723.291},{"x":5,"y":747.786},{"x":6,"y":796.3545},{"x":7,"y":836.167},{"x":8,"y":858.2237},{"x":9,"y":877.5671},{"x":10,"y":905.5817},{"x":11,"y":943.4378},{"x":12,"y":957.1879},{"x":13,"y":972.0211},{"x":14,"y":991.6481},{"x":15,"y":999.2225},{"x":16,"y":1001.7807},{"x":17,"y":996.5057},{"x":18,"y":991.1604},{"x":19,"y":990.3797},{"x":20,"y":988.3148},{"x":21,"y":984.3874},{"x":22,"y":973.9103},{"x":23,"y":965.1029},{"x":24,"y":955.8308},{"x":25,"y":947.6097},{"x":26,"y":946.8864},{"x":27,"y":949.9137},{"x":28,"y":952.3448},{"x":29,"y":951.2108},{"x":30,"y":942.2136},{"x":31,"y":930.2366},{"x":32,"y":921.215},{"x":33,"y":900.6559},{"x":34,"y":887.3783},{"x":35,"y":876.8349},{"x":36,"y":863.58},{"x":37,"y":841.8048},{"x":38,"y":820.5465},{"x":39,"y":804.5433},{"x":40,"y":777.6351},{"x":41,"y":743.3054},{"x":42,"y":719.2131},{"x":43,"y":690.1274},{"x":44,"y":669.1188},{"x":45,"y":656.207},{"x":46,"y":642.16},{"x":47,"y":633.1034},{"x":48,"y":637.0209},{"x":49,"y":642.5582},{"x":50,"y":650.6476},{"x":51,"y":658.2378},{"x":52,"y":667.8891},{"x":53,"y":673.6998},{"x":54,"y":677.3347},{"x":55,"y":677.9197},{"x":56,"y":680.334},{"x":57,"y":686.7457},{"x":58,"y":695.4823},{"x":59,"y":702.1373},{"x":60,"y":712.301},{"x":61,"y":715.7087},{"x":62,"y":708.5097},{"x":63,"y":701.6702},{"x":64,"y":691.9411},{"x":65,"y":671.646},{"x":66,"y":652.6915},{"x":67,"y":642.6635},{"x":68,"y":637.9381},{"x":69,"y":638.2236},{"x":70,"y":637.9743},{"x":71,"y":636.6224},{"x":72,"y":635.8584},{"x":73,"y":632.9066},{"x":74,"y":628.4894},{"x":75,"y":629.1575},{"x":76,"y":629.3483},{"x":77,"y":633.039},{"x":78,"y":632.1897},{"x":79,"y":628.5441},{"x":80,"y":620.6626},{"x":81,"y":610.0377},{"x":82,"y":605.1272},{"x":83,"y":607.4589},{"x":84,"y":607.969},{"x":85,"y":606.0623},{"x":86,"y":600.9026},{"x":87,"y":595.6902},{"x":88,"y":577.2762},{"x":89,"y":540.8229},{"x":90,"y":516.11},{"x":91,"y":497.9378},{"x":92,"y":450.5715},{"x":93,"y":411.9622},{"x":94,"y":392.5805},{"x":95,"y":376.4116},{"x":96,"y":349.2774},{"x":97,"y":322.4285},{"x":98,"y":305.8261},{"x":99,"y":281.4086},{"x":100,"y":254.1402}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area 7A","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":139.9628},{"x":1,"y":159.4456},{"x":2,"y":173.6681},{"x":3,"y":205.9561},{"x":4,"y":243.5842},{"x":5,"y":258.3094},{"x":6,"y":274.8404},{"x":7,"y":302.1868},{"x":8,"y":327.0849},{"x":9,"y":339.5041},{"x":10,"y":345.5591},{"x":11,"y":360.8777},{"x":12,"y":382.4319},{"x":13,"y":396.7576},{"x":14,"y":405.4409},{"x":15,"y":410.1708},{"x":16,"y":416.519},{"x":17,"y":417.4106},{"x":18,"y":417.3862},{"x":19,"y":413.7091},{"x":20,"y":402.3244},{"x":21,"y":389.7984},{"x":22,"y":378.7112},{"x":23,"y":370.6574},{"x":24,"y":357.4796},{"x":25,"y":339.2121},{"x":26,"y":316.3164},{"x":27,"y":303.4193},{"x":28,"y":289.1645},{"x":29,"y":264.6483},{"x":30,"y":244.9837},{"x":31,"y":235.0097},{"x":32,"y":220.8909},{"x":33,"y":199.5047},{"x":34,"y":182.9034},{"x":35,"y":172.3891},{"x":36,"y":165.8176},{"x":37,"y":155.114},{"x":38,"y":146.7524},{"x":39,"y":137.171},{"x":40,"y":133.4841},{"x":41,"y":128.4862},{"x":42,"y":122.8328},{"x":43,"y":119.2062},{"x":44,"y":123.0689},{"x":45,"y":124.4356},{"x":46,"y":124.4356},{"x":47,"y":124.7959},{"x":48,"y":122.8447},{"x":49,"y":120.9847},{"x":50,"y":117.7807},{"x":51,"y":116.545},{"x":52,"y":117.8415},{"x":53,"y":120.6954},{"x":54,"y":124.0505},{"x":55,"y":129.6019},{"x":56,"y":131.9711},{"x":57,"y":132.3113},{"x":58,"y":133.1741},{"x":59,"y":134.8043},{"x":60,"y":130.7193},{"x":61,"y":124.7211},{"x":62,"y":119.233},{"x":63,"y":113.6246},{"x":64,"y":107.1462},{"x":65,"y":99.4469},{"x":66,"y":95.3613},{"x":67,"y":94.5086},{"x":68,"y":94.3806},{"x":69,"y":90.7424},{"x":70,"y":87.5501},{"x":71,"y":85.4694},{"x":72,"y":83.4803},{"x":73,"y":80.3618},{"x":74,"y":76.4014},{"x":75,"y":75.6064},{"x":76,"y":75.1677},{"x":77,"y":70.9984},{"x":78,"y":66.679},{"x":79,"y":64.1909},{"x":80,"y":62.5636},{"x":81,"y":62.8862},{"x":82,"y":64.1567},{"x":83,"y":62.5512},{"x":84,"y":58.6145},{"x":85,"y":55.8612},{"x":86,"y":49.0966},{"x":87,"y":44.6165},{"x":88,"y":44.0364},{"x":89,"y":42.8588},{"x":90,"y":41.277},{"x":91,"y":39.5338},{"x":92,"y":37.5767},{"x":93,"y":34.2379},{"x":94,"y":31.4925},{"x":95,"y":36.1056},{"x":96,"y":37.7222},{"x":97,"y":37.3067},{"x":98,"y":35.1788},{"x":99,"y":30.4756},{"x":100,"y":26.7841}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 7A","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":251.0298},{"x":1,"y":276.7229},{"x":2,"y":323.8144},{"x":3,"y":377.3279},{"x":4,"y":409.3778},{"x":5,"y":427.005},{"x":6,"y":470.8358},{"x":7,"y":510.8359},{"x":8,"y":527.2009},{"x":9,"y":538.767},{"x":10,"y":555.7251},{"x":11,"y":571.3581},{"x":12,"y":586.5456},{"x":13,"y":593.2975},{"x":14,"y":599.0479},{"x":15,"y":600.0229},{"x":16,"y":597.5062},{"x":17,"y":589.7764},{"x":18,"y":574.6197},{"x":19,"y":564.1533},{"x":20,"y":561.3965},{"x":21,"y":548.2548},{"x":22,"y":531.669},{"x":23,"y":519.1976},{"x":24,"y":517.561},{"x":25,"y":513.3273},{"x":26,"y":505.345},{"x":27,"y":502.7763},{"x":28,"y":498.0292},{"x":29,"y":489.3411},{"x":30,"y":487.7708},{"x":31,"y":491.6979},{"x":32,"y":493.7672},{"x":33,"y":495.091},{"x":34,"y":500.831},{"x":35,"y":502.5232},{"x":36,"y":499.8632},{"x":37,"y":493.6959},{"x":38,"y":488.9429},{"x":39,"y":487.3495},{"x":40,"y":483.8299},{"x":41,"y":479.8632},{"x":42,"y":483.3104},{"x":43,"y":481.6235},{"x":44,"y":482.1299},{"x":45,"y":485.1353},{"x":46,"y":487.6038},{"x":47,"y":487.2922},{"x":48,"y":488.1},{"x":49,"y":490.7919},{"x":50,"y":491.9073},{"x":51,"y":491.354},{"x":52,"y":493.5581},{"x":53,"y":505.4464},{"x":54,"y":512.3731},{"x":55,"y":526.7837},{"x":56,"y":541.9906},{"x":57,"y":560.2633},{"x":58,"y":566.3225},{"x":59,"y":577.4442},{"x":60,"y":584.235},{"x":61,"y":578.5537},{"x":62,"y":570.2319},{"x":63,"y":558.1292},{"x":64,"y":545.7895},{"x":65,"y":537.263},{"x":66,"y":532.8748},{"x":67,"y":527.3047},{"x":68,"y":529.2707},{"x":69,"y":533.4476},{"x":70,"y":533.1249},{"x":71,"y":535.3997},{"x":72,"y":542.1088},{"x":73,"y":546.3172},{"x":74,"y":550.6567},{"x":75,"y":554.8595},{"x":76,"y":560.8036},{"x":77,"y":564.2271},{"x":78,"y":573.2995},{"x":79,"y":586.0712},{"x":80,"y":594.3494},{"x":81,"y":595.4835},{"x":82,"y":601.0798},{"x":83,"y":608.2318},{"x":84,"y":606.8465},{"x":85,"y":603.6826},{"x":86,"y":594.543},{"x":87,"y":581.347},{"x":88,"y":564.5142},{"x":89,"y":547.7568},{"x":90,"y":520.4909},{"x":91,"y":489.785},{"x":92,"y":468.5371},{"x":93,"y":451.9617},{"x":94,"y":425.3122},{"x":95,"y":399.4838},{"x":96,"y":388.217},{"x":97,"y":369.3565},{"x":98,"y":333.0285},{"x":99,"y":300.525},{"x":100,"y":274.4998}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area 7A","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":114.8929},{"x":1,"y":130.3703},{"x":2,"y":144.0927},{"x":3,"y":170.4441},{"x":4,"y":195.7123},{"x":5,"y":206.5739},{"x":6,"y":222.8406},{"x":7,"y":239.9028},{"x":8,"y":247.2082},{"x":9,"y":254.2513},{"x":10,"y":264.1531},{"x":11,"y":276.0237},{"x":12,"y":283.3915},{"x":13,"y":287.4534},{"x":14,"y":294.442},{"x":15,"y":300.26},{"x":16,"y":305.8507},{"x":17,"y":310.466},{"x":18,"y":319.1073},{"x":19,"y":324.0618},{"x":20,"y":329.1759},{"x":21,"y":335.5972},{"x":22,"y":340.5558},{"x":23,"y":342.1647},{"x":24,"y":340.6717},{"x":25,"y":338.7729},{"x":26,"y":334.0883},{"x":27,"y":334.2105},{"x":28,"y":336.9638},{"x":29,"y":337.3929},{"x":30,"y":342.817},{"x":31,"y":347.1665},{"x":32,"y":352.3684},{"x":33,"y":358.0049},{"x":34,"y":361.7798},{"x":35,"y":366.2793},{"x":36,"y":369.133},{"x":37,"y":369.9137},{"x":38,"y":371.1053},{"x":39,"y":370.28},{"x":40,"y":369.7033},{"x":41,"y":366.8806},{"x":42,"y":361.1273},{"x":43,"y":352.8706},{"x":44,"y":347.936},{"x":45,"y":342.8508},{"x":46,"y":338.9172},{"x":47,"y":332.2496},{"x":48,"y":323.4147},{"x":49,"y":315.4865},{"x":50,"y":309.0126},{"x":51,"y":301.6881},{"x":52,"y":297.204},{"x":53,"y":297.1408},{"x":54,"y":294.9886},{"x":55,"y":291.938},{"x":56,"y":292.2467},{"x":57,"y":295.3064},{"x":58,"y":298.4452},{"x":59,"y":299.1345},{"x":60,"y":304.7172},{"x":61,"y":305.8713},{"x":62,"y":305.3739},{"x":63,"y":306.9435},{"x":64,"y":307.6885},{"x":65,"y":308.048},{"x":66,"y":307.9314},{"x":67,"y":306.7715},{"x":68,"y":304.9074},{"x":69,"y":304.3974},{"x":70,"y":304.8622},{"x":71,"y":306.6599},{"x":72,"y":308.4472},{"x":73,"y":310.6843},{"x":74,"y":311.2315},{"x":75,"y":311.6819},{"x":76,"y":313.1128},{"x":77,"y":312.8166},{"x":78,"y":307.4156},{"x":79,"y":301.7453},{"x":80,"y":294.3241},{"x":81,"y":281.7214},{"x":82,"y":276.4935},{"x":83,"y":272.8251},{"x":84,"y":270.7132},{"x":85,"y":268.4946},{"x":86,"y":265.4647},{"x":87,"y":262.5601},{"x":88,"y":257.4283},{"x":89,"y":248.0727},{"x":90,"y":241.656},{"x":91,"y":233.9629},{"x":92,"y":215.2836},{"x":93,"y":203.0747},{"x":94,"y":195.0354},{"x":95,"y":186.7481},{"x":96,"y":174.4074},{"x":97,"y":163.5985},{"x":98,"y":157.4363},{"x":99,"y":143.3972},{"x":100,"y":126.4762}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":165.8269},{"x":1,"y":178.6777},{"x":2,"y":192.29},{"x":3,"y":222.4915},{"x":4,"y":250.8446},{"x":5,"y":261.4638},{"x":6,"y":274.4116},{"x":7,"y":294.6773},{"x":8,"y":307.9743},{"x":9,"y":313.3783},{"x":10,"y":319.7029},{"x":11,"y":331.7129},{"x":12,"y":342.8041},{"x":13,"y":348.4396},{"x":14,"y":358.5806},{"x":15,"y":367.1346},{"x":16,"y":372.7828},{"x":17,"y":377.325},{"x":18,"y":379.1914},{"x":19,"y":380.8765},{"x":20,"y":379.5686},{"x":21,"y":378.6225},{"x":22,"y":377.4324},{"x":23,"y":372.9805},{"x":24,"y":369.8772},{"x":25,"y":364.8685},{"x":26,"y":357.2026},{"x":27,"y":353.5835},{"x":28,"y":349.3376},{"x":29,"y":337.8648},{"x":30,"y":322.7376},{"x":31,"y":314.552},{"x":32,"y":307.8342},{"x":33,"y":300.6247},{"x":34,"y":295.2776},{"x":35,"y":289.2362},{"x":36,"y":286.1694},{"x":37,"y":278.6468},{"x":38,"y":270.4222},{"x":39,"y":264.9096},{"x":40,"y":259.2552},{"x":41,"y":249.823},{"x":42,"y":244.1371},{"x":43,"y":244.0012},{"x":44,"y":244.6413},{"x":45,"y":245.4113},{"x":46,"y":245.3238},{"x":47,"y":246.9841},{"x":48,"y":248.6358},{"x":49,"y":249.6081},{"x":50,"y":249.203},{"x":51,"y":252.759},{"x":52,"y":252.2215},{"x":53,"y":247.2017},{"x":54,"y":241.6193},{"x":55,"y":241.4535},{"x":56,"y":235.9386},{"x":57,"y":235.5753},{"x":58,"y":234.997},{"x":59,"y":231.3455},{"x":60,"y":229.0312},{"x":61,"y":223.6788},{"x":62,"y":218.5157},{"x":63,"y":213.5319},{"x":64,"y":210.5304},{"x":65,"y":210.3188},{"x":66,"y":209.2017},{"x":67,"y":210.7303},{"x":68,"y":214.214},{"x":69,"y":216.1423},{"x":70,"y":218.1638},{"x":71,"y":215.398},{"x":72,"y":207.1968},{"x":73,"y":204.068},{"x":74,"y":199.9659},{"x":75,"y":195.2424},{"x":76,"y":193.9523},{"x":77,"y":193.5182},{"x":78,"y":193.4707},{"x":79,"y":192.9171},{"x":80,"y":190.5196},{"x":81,"y":189.1443},{"x":82,"y":192.7447},{"x":83,"y":199.7749},{"x":84,"y":207.3913},{"x":85,"y":213.3254},{"x":86,"y":216.0479},{"x":87,"y":214.0178},{"x":88,"y":213.0261},{"x":89,"y":208.3971},{"x":90,"y":200.8762},{"x":91,"y":195.1287},{"x":92,"y":189.2882},{"x":93,"y":178.9209},{"x":94,"y":167.766},{"x":95,"y":160.129},{"x":96,"y":153.9663},{"x":97,"y":142.3762},{"x":98,"y":124.4451},{"x":99,"y":115.9433},{"x":100,"y":105.697}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area 7A","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":82.3706},{"x":1,"y":90.3893},{"x":2,"y":100.1785},{"x":3,"y":107.9235},{"x":4,"y":115.6573},{"x":5,"y":119.7377},{"x":6,"y":125.2441},{"x":7,"y":135.2463},{"x":8,"y":141.4176},{"x":9,"y":149.1826},{"x":10,"y":156.189},{"x":11,"y":161.4988},{"x":12,"y":162.4539},{"x":13,"y":162.8742},{"x":14,"y":158.7893},{"x":15,"y":152.0452},{"x":16,"y":143.7672},{"x":17,"y":139.6443},{"x":18,"y":135.1313},{"x":19,"y":131.8678},{"x":20,"y":133.0253},{"x":21,"y":132.6677},{"x":22,"y":134.1043},{"x":23,"y":138.7863},{"x":24,"y":139.8736},{"x":25,"y":140.2394},{"x":26,"y":140.3024},{"x":27,"y":139.8431},{"x":28,"y":139.3562},{"x":29,"y":137.8853},{"x":30,"y":135.2239},{"x":31,"y":135.2929},{"x":32,"y":136.2921},{"x":33,"y":136.809},{"x":34,"y":139.1511},{"x":35,"y":140.9525},{"x":36,"y":140.0342},{"x":37,"y":140.5578},{"x":38,"y":138.7285},{"x":39,"y":134.9028},{"x":40,"y":133.0436},{"x":41,"y":131.1695},{"x":42,"y":129.7595},{"x":43,"y":129.1131},{"x":44,"y":129.6366},{"x":45,"y":131.0113},{"x":46,"y":133.2678},{"x":47,"y":134.9277},{"x":48,"y":134.7854},{"x":49,"y":133.9852},{"x":50,"y":134.0755},{"x":51,"y":133.0952},{"x":52,"y":131.5614},{"x":53,"y":127.3637},{"x":54,"y":126.3117},{"x":55,"y":124.1813},{"x":56,"y":121.5154},{"x":57,"y":121.601},{"x":58,"y":122.3969},{"x":59,"y":123.8415},{"x":60,"y":125.5515},{"x":61,"y":125.2313},{"x":62,"y":124.8034},{"x":63,"y":125.6635},{"x":64,"y":125.1942},{"x":65,"y":122.8819},{"x":66,"y":120.3305},{"x":67,"y":116.2642},{"x":68,"y":112.9832},{"x":69,"y":112.2761},{"x":70,"y":112.2809},{"x":71,"y":112.5116},{"x":72,"y":111.4163},{"x":73,"y":112.6439},{"x":74,"y":114.9792},{"x":75,"y":115.0479},{"x":76,"y":116.3963},{"x":77,"y":118.2606},{"x":78,"y":118.6052},{"x":79,"y":118.6889},{"x":80,"y":117.4169},{"x":81,"y":114.8647},{"x":82,"y":111.1505},{"x":83,"y":107.7304},{"x":84,"y":103.813},{"x":85,"y":99.3413},{"x":86,"y":96.5002},{"x":87,"y":95.5544},{"x":88,"y":93.9831},{"x":89,"y":93.2571},{"x":90,"y":92.6696},{"x":91,"y":90.4918},{"x":92,"y":88.3666},{"x":93,"y":86.7248},{"x":94,"y":84.7815},{"x":95,"y":81.1593},{"x":96,"y":77.5223},{"x":97,"y":72.3289},{"x":98,"y":68.6545},{"x":99,"y":65.8115},{"x":100,"y":60.2677}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 7A","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":262.2453},{"x":1,"y":301.3725},{"x":2,"y":329.3785},{"x":3,"y":386.1118},{"x":4,"y":475.2152},{"x":5,"y":536.1097},{"x":6,"y":589.1526},{"x":7,"y":657.6791},{"x":8,"y":712.4421},{"x":9,"y":768.8856},{"x":10,"y":795.4745},{"x":11,"y":809.7042},{"x":12,"y":826.6472},{"x":13,"y":841.0776},{"x":14,"y":853.4719},{"x":15,"y":858.9538},{"x":16,"y":870.4296},{"x":17,"y":883.5447},{"x":18,"y":894.9556},{"x":19,"y":902.2325},{"x":20,"y":905.7851},{"x":21,"y":909.5306},{"x":22,"y":915.3387},{"x":23,"y":920.2709},{"x":24,"y":922.1055},{"x":25,"y":924.6335},{"x":26,"y":927.0689},{"x":27,"y":929.3031},{"x":28,"y":928.8533},{"x":29,"y":926.8713},{"x":30,"y":924.2145},{"x":31,"y":917.6357},{"x":32,"y":909.5613},{"x":33,"y":901.5776},{"x":34,"y":890.1075},{"x":35,"y":875.7447},{"x":36,"y":864.8834},{"x":37,"y":859.2525},{"x":38,"y":847.3905},{"x":39,"y":834.7358},{"x":40,"y":824.5601},{"x":41,"y":816.5769},{"x":42,"y":810.4789},{"x":43,"y":801.391},{"x":44,"y":788.5195},{"x":45,"y":774.7673},{"x":46,"y":766.4622},{"x":47,"y":752.2814},{"x":48,"y":738.4437},{"x":49,"y":726.1303},{"x":50,"y":714.7208},{"x":51,"y":699.2138},{"x":52,"y":686.8},{"x":53,"y":678.7894},{"x":54,"y":674.8372},{"x":55,"y":673.9734},{"x":56,"y":674.6517},{"x":57,"y":677.2477},{"x":58,"y":681.0908},{"x":59,"y":682.8671},{"x":60,"y":683.0743},{"x":61,"y":676.4656},{"x":62,"y":666.0216},{"x":63,"y":657.1697},{"x":64,"y":651.5592},{"x":65,"y":641.6641},{"x":66,"y":631.0699},{"x":67,"y":624.5821},{"x":68,"y":619.1694},{"x":69,"y":613.6037},{"x":70,"y":611.3418},{"x":71,"y":608.9645},{"x":72,"y":610.0555},{"x":73,"y":610.7931},{"x":74,"y":614.8636},{"x":75,"y":619.8534},{"x":76,"y":625.8974},{"x":77,"y":628.9361},{"x":78,"y":635.588},{"x":79,"y":637.0061},{"x":80,"y":636.0802},{"x":81,"y":631.3841},{"x":82,"y":620.7328},{"x":83,"y":604.283},{"x":84,"y":581.6371},{"x":85,"y":560.7332},{"x":86,"y":546.1187},{"x":87,"y":518.6196},{"x":88,"y":489.1823},{"x":89,"y":460.297},{"x":90,"y":443.2595},{"x":91,"y":421.1332},{"x":92,"y":386.9171},{"x":93,"y":360.6118},{"x":94,"y":330.4156},{"x":95,"y":309.4416},{"x":96,"y":284.8695},{"x":97,"y":244.7918},{"x":98,"y":217.7168},{"x":99,"y":204.6012},{"x":100,"y":187.0507}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1276.6393},{"x":1,"y":1416.6576},{"x":2,"y":1600.8501},{"x":3,"y":1799.8068},{"x":4,"y":1975.4301},{"x":5,"y":2019.5139},{"x":6,"y":2138.103},{"x":7,"y":2271.7284},{"x":8,"y":2333.6814},{"x":9,"y":2354.3451},{"x":10,"y":2421.0831},{"x":11,"y":2448.349},{"x":12,"y":2489.6455},{"x":13,"y":2518.603},{"x":14,"y":2564.8087},{"x":15,"y":2661.2743},{"x":16,"y":2785.5394},{"x":17,"y":2846.3764},{"x":18,"y":2922.1705},{"x":19,"y":3017.1913},{"x":20,"y":3065.413},{"x":21,"y":3103.0527},{"x":22,"y":3136.0391},{"x":23,"y":3136.3974},{"x":24,"y":3112.5531},{"x":25,"y":3095.9034},{"x":26,"y":3044.3648},{"x":27,"y":2978.9985},{"x":28,"y":2897.3784},{"x":29,"y":2841.3434},{"x":30,"y":2813.4762},{"x":31,"y":2781.1183},{"x":32,"y":2767.6111},{"x":33,"y":2739.491},{"x":34,"y":2725.6216},{"x":35,"y":2719.2591},{"x":36,"y":2689.2281},{"x":37,"y":2650.694},{"x":38,"y":2607.8615},{"x":39,"y":2519.3011},{"x":40,"y":2430.6736},{"x":41,"y":2398.404},{"x":42,"y":2316.0988},{"x":43,"y":2187.962},{"x":44,"y":2045.462},{"x":45,"y":1945.3265},{"x":46,"y":1852.3396},{"x":47,"y":1762.6735},{"x":48,"y":1655.1016},{"x":49,"y":1578.7541},{"x":50,"y":1543.3275},{"x":51,"y":1529.6925},{"x":52,"y":1528.9028},{"x":53,"y":1544.0347},{"x":54,"y":1535.05},{"x":55,"y":1545.5799},{"x":56,"y":1532.2462},{"x":57,"y":1528.5048},{"x":58,"y":1551.9414},{"x":59,"y":1597.5022},{"x":60,"y":1658.9033},{"x":61,"y":1700.5322},{"x":62,"y":1737.582},{"x":63,"y":1735.3384},{"x":64,"y":1689.6181},{"x":65,"y":1644.5749},{"x":66,"y":1583.8934},{"x":67,"y":1474.3109},{"x":68,"y":1399.0384},{"x":69,"y":1356.3718},{"x":70,"y":1319.0208},{"x":71,"y":1300.4523},{"x":72,"y":1304.0509},{"x":73,"y":1323.4005},{"x":74,"y":1337.4719},{"x":75,"y":1354.6358},{"x":76,"y":1366.3823},{"x":77,"y":1384.0555},{"x":78,"y":1396.1785},{"x":79,"y":1409.2968},{"x":80,"y":1403.7374},{"x":81,"y":1363.6879},{"x":82,"y":1344.6398},{"x":83,"y":1295.8706},{"x":84,"y":1278.1333},{"x":85,"y":1268.0291},{"x":86,"y":1274.1699},{"x":87,"y":1312.8478},{"x":88,"y":1361.3832},{"x":89,"y":1374.4552},{"x":90,"y":1367.7086},{"x":91,"y":1367.1454},{"x":92,"y":1366.7719},{"x":93,"y":1322.9096},{"x":94,"y":1260.4142},{"x":95,"y":1180.6975},{"x":96,"y":1058.7647},{"x":97,"y":935.7444},{"x":98,"y":880.0041},{"x":99,"y":772.0206},{"x":100,"y":630.5493}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area 7A","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":242.2038},{"x":1,"y":255.429},{"x":2,"y":267.7241},{"x":3,"y":279.0103},{"x":4,"y":291.6608},{"x":5,"y":295.9546},{"x":6,"y":299.9036},{"x":7,"y":301.5689},{"x":8,"y":304.2633},{"x":9,"y":309.8645},{"x":10,"y":313.8278},{"x":11,"y":319.2057},{"x":12,"y":327.8362},{"x":13,"y":331.4444},{"x":14,"y":339.0641},{"x":15,"y":350.7271},{"x":16,"y":360.2297},{"x":17,"y":369.9275},{"x":18,"y":377.3569},{"x":19,"y":382.1865},{"x":20,"y":389.8425},{"x":21,"y":399.2808},{"x":22,"y":406.8255},{"x":23,"y":412.5805},{"x":24,"y":417.9728},{"x":25,"y":420.6806},{"x":26,"y":422.6222},{"x":27,"y":424.0387},{"x":28,"y":428.5667},{"x":29,"y":432.5041},{"x":30,"y":432.0832},{"x":31,"y":433.4775},{"x":32,"y":433.7371},{"x":33,"y":432.8811},{"x":34,"y":431.4239},{"x":35,"y":430.6295},{"x":36,"y":431.0695},{"x":37,"y":431.7824},{"x":38,"y":431.5001},{"x":39,"y":430.1665},{"x":40,"y":428.4513},{"x":41,"y":428.1761},{"x":42,"y":427.3997},{"x":43,"y":426.6064},{"x":44,"y":424.3744},{"x":45,"y":420.7311},{"x":46,"y":416.8468},{"x":47,"y":414.0092},{"x":48,"y":410.5026},{"x":49,"y":407.0281},{"x":50,"y":404.5828},{"x":51,"y":400.2905},{"x":52,"y":395.4896},{"x":53,"y":394.9918},{"x":54,"y":392.9237},{"x":55,"y":388.4179},{"x":56,"y":385.1925},{"x":57,"y":383.5663},{"x":58,"y":383.421},{"x":59,"y":382.8771},{"x":60,"y":380.0523},{"x":61,"y":378.0033},{"x":62,"y":376.2923},{"x":63,"y":374.2232},{"x":64,"y":369.5993},{"x":65,"y":366.3369},{"x":66,"y":361.0353},{"x":67,"y":352.2224},{"x":68,"y":346.1572},{"x":69,"y":342.7126},{"x":70,"y":339.8492},{"x":71,"y":337.3583},{"x":72,"y":329.98},{"x":73,"y":324.276},{"x":74,"y":319.5903},{"x":75,"y":313.9487},{"x":76,"y":310.3027},{"x":77,"y":309.5322},{"x":78,"y":306.4743},{"x":79,"y":300.9548},{"x":80,"y":295.3083},{"x":81,"y":291.7602},{"x":82,"y":290.5495},{"x":83,"y":285.6468},{"x":84,"y":278.1925},{"x":85,"y":271.4423},{"x":86,"y":259.904},{"x":87,"y":251.1477},{"x":88,"y":244.9073},{"x":89,"y":233.0483},{"x":90,"y":221.3004},{"x":91,"y":214.2335},{"x":92,"y":206.5496},{"x":93,"y":201.3465},{"x":94,"y":198.1938},{"x":95,"y":191.2219},{"x":96,"y":184.4615},{"x":97,"y":176.7826},{"x":98,"y":169.376},{"x":99,"y":161.2589},{"x":100,"y":154.8098}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area 7A","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1156.1503},{"x":1,"y":1355.3643},{"x":2,"y":1631.4605},{"x":3,"y":2031.9433},{"x":4,"y":2398.5408},{"x":5,"y":2655.2859},{"x":6,"y":2814.1466},{"x":7,"y":3105.5639},{"x":8,"y":3275.4003},{"x":9,"y":3354.4507},{"x":10,"y":3428.7803},{"x":11,"y":3492.3326},{"x":12,"y":3557.9408},{"x":13,"y":3597.4988},{"x":14,"y":3629.379},{"x":15,"y":3685.4961},{"x":16,"y":3720.6345},{"x":17,"y":3744.9326},{"x":18,"y":3739.527},{"x":19,"y":3719.9883},{"x":20,"y":3660.7312},{"x":21,"y":3620.1131},{"x":22,"y":3613.7725},{"x":23,"y":3597.0596},{"x":24,"y":3570.9657},{"x":25,"y":3534.6392},{"x":26,"y":3501.8373},{"x":27,"y":3440.9219},{"x":28,"y":3356.2778},{"x":29,"y":3291.713},{"x":30,"y":3255.3961},{"x":31,"y":3164.543},{"x":32,"y":3064.1379},{"x":33,"y":3001.1613},{"x":34,"y":2975.026},{"x":35,"y":2933.2342},{"x":36,"y":2919.994},{"x":37,"y":2909.7543},{"x":38,"y":2899.71},{"x":39,"y":2881.0588},{"x":40,"y":2843.6094},{"x":41,"y":2791.959},{"x":42,"y":2750.5244},{"x":43,"y":2697.688},{"x":44,"y":2615.8356},{"x":45,"y":2520.23},{"x":46,"y":2456.3633},{"x":47,"y":2400.6612},{"x":48,"y":2326.8185},{"x":49,"y":2289.6689},{"x":50,"y":2283.5967},{"x":51,"y":2290.7856},{"x":52,"y":2329.2688},{"x":53,"y":2357.0118},{"x":54,"y":2362.333},{"x":55,"y":2362.336},{"x":56,"y":2361.9552},{"x":57,"y":2367.9274},{"x":58,"y":2368.522},{"x":59,"y":2374.1113},{"x":60,"y":2362.7651},{"x":61,"y":2348.8044},{"x":62,"y":2315.9224},{"x":63,"y":2275.5391},{"x":64,"y":2206.0325},{"x":65,"y":2112.2779},{"x":66,"y":2055.4444},{"x":67,"y":2044.3293},{"x":68,"y":2047.5537},{"x":69,"y":2089.2383},{"x":70,"y":2140.2902},{"x":71,"y":2158.2404},{"x":72,"y":2168.1091},{"x":73,"y":2179.0646},{"x":74,"y":2166.174},{"x":75,"y":2149.4004},{"x":76,"y":2105.4029},{"x":77,"y":2046.534},{"x":78,"y":1997.6759},{"x":79,"y":1974.2813},{"x":80,"y":1936.0846},{"x":81,"y":1887.2022},{"x":82,"y":1848.6358},{"x":83,"y":1808.6652},{"x":84,"y":1767.6402},{"x":85,"y":1711.0813},{"x":86,"y":1630.4481},{"x":87,"y":1592.159},{"x":88,"y":1526.7898},{"x":89,"y":1405.8421},{"x":90,"y":1307.0386},{"x":91,"y":1226.3495},{"x":92,"y":1156.3211},{"x":93,"y":1049.1288},{"x":94,"y":919.7275},{"x":95,"y":862.9674},{"x":96,"y":799.3356},{"x":97,"y":719.6935},{"x":98,"y":650.9807},{"x":99,"y":602.711},{"x":100,"y":565.6492}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PFop",[{"name":"Receptor density fingerprint of Area PFop","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["388","427","1065","3008","1524","2173","2744","550","159","968","48","374","661","414","430","92"]},{"label":"mean_sd","data":["204","187","118","1211","404","605","658","200","41","571","30","118","mg/mol","178","121","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFop (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PF",[{"name":"Receptor density fingerprint of Area PF","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["496","647","1157","3398","1595","2225","2706","501","185","957","49","409","837","298","439","113"]},{"label":"mean_sd","data":["131","260","289","1453","527","652","830","197","63","285","17","163","mg/mol","83","146","40"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PF (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(239,134,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PFt",[{"name":"Receptor density fingerprint of Area PFt","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["367","503","1085","3044","1555","2140","2630","499","175","872","47","364","429","319","416","82"]},{"label":"mean_sd","data":["171","217","189","985","454","519","661","154","47","431","25","103","237","140","129","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFt (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PFcm",[{"name":"Receptor density fingerprint of Area PFcm","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["412","602","1237","3194","1598","2188","2379","536","182","866","63","398","831","300","444","113"]},{"label":"mean_sd","data":["149","303","230","1582","389","768","719","198","62","393","33","155","mg/mol","82","204","54"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFcm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area FG1",[{"name":"Receptor density fingerprint of Area FG1","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["419","499","1176","NA","1933","2140","2731","480","219","833","56","343","467","317","441","107"]},{"label":"mean_sd","data":["65","117","142","NA","255","216","421","67","34","163","12","45","93","60","82","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,100,209,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area FG1","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area FG1","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area FG1","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area FG1","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area FG1","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area FG1","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area FG1","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area FG1","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area FG1","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_GABAB.jpg"}]],["Density measurements of different receptors for Area PGa",[{"name":"Receptor density fingerprint of Area PGa","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["463","635","1259","3957","1998","2742","2442","479","172","827","70","361","698","303","441","136"]},{"label":"mean_sd","data":["187","405","278","1655","577","291","876","192","77","348","34","169","mg/mol","123","238","55"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGa (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(5,198,198,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]]] \ No newline at end of file +[["Density measurements of different receptors for Area 44d",[{"name":"Receptor density fingerprint of Area 44d","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 44d.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 44d. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["492","498","964","NA","1302","1487","1797","631","247","432","47","126","179","284","271","62"]},{"label":"mean_sd","data":["70","84","95","NA","91","64","105","49","20","32","13","9","15","38","11","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 44d (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,10,10,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area 44d","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area 44d","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 44d","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area 44d","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 44d","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 44d","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area 44d","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area 44d","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 44d","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area 44d","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 44d","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area 44d","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 44d","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 44d","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area 44d","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area 44d","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area 44d","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 44d.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area 44d"],"datasets":[{"data":[{"x":0,"y":862.4783},{"x":1,"y":904.9561},{"x":2,"y":940.0621},{"x":3,"y":978.1732},{"x":4,"y":1021.4554},{"x":5,"y":1063.5893},{"x":6,"y":1100.5906},{"x":7,"y":1148.4482},{"x":8,"y":1196.1297},{"x":9,"y":1232.1727},{"x":10,"y":1279.4679},{"x":11,"y":1327.8814},{"x":12,"y":1381.3095},{"x":13,"y":1420.287},{"x":14,"y":1445.6493},{"x":15,"y":1466.8894},{"x":16,"y":1489.8366},{"x":17,"y":1516.5528},{"x":18,"y":1537.983},{"x":19,"y":1549.82},{"x":20,"y":1560.0878},{"x":21,"y":1567.4582},{"x":22,"y":1566.6033},{"x":23,"y":1563.7507},{"x":24,"y":1563.5412},{"x":25,"y":1556.1077},{"x":26,"y":1545.7337},{"x":27,"y":1538.1084},{"x":28,"y":1530.9002},{"x":29,"y":1520.4582},{"x":30,"y":1503.7746},{"x":31,"y":1487.0829},{"x":32,"y":1471.0083},{"x":33,"y":1453.8871},{"x":34,"y":1432.2643},{"x":35,"y":1411.4065},{"x":36,"y":1387.046},{"x":37,"y":1366.0299},{"x":38,"y":1344.2281},{"x":39,"y":1329.7899},{"x":40,"y":1314.2608},{"x":41,"y":1302.004},{"x":42,"y":1296.7537},{"x":43,"y":1291.258},{"x":44,"y":1287.8412},{"x":45,"y":1281.8791},{"x":46,"y":1275.2256},{"x":47,"y":1268.6997},{"x":48,"y":1259.4717},{"x":49,"y":1255.229},{"x":50,"y":1250.4567},{"x":51,"y":1242.1166},{"x":52,"y":1233.2152},{"x":53,"y":1219.9536},{"x":54,"y":1204.539},{"x":55,"y":1191.1147},{"x":56,"y":1172.3973},{"x":57,"y":1152.7135},{"x":58,"y":1138.4501},{"x":59,"y":1127.8171},{"x":60,"y":1117.035},{"x":61,"y":1109.6632},{"x":62,"y":1104.9799},{"x":63,"y":1102.4032},{"x":64,"y":1099.7075},{"x":65,"y":1094.5447},{"x":66,"y":1092.653},{"x":67,"y":1084.0402},{"x":68,"y":1075.0572},{"x":69,"y":1062.0217},{"x":70,"y":1047.0548},{"x":71,"y":1027.9635},{"x":72,"y":1014.9857},{"x":73,"y":1007.8998},{"x":74,"y":1001.2393},{"x":75,"y":994.2144},{"x":76,"y":990.1416},{"x":77,"y":993.5673},{"x":78,"y":1004.6509},{"x":79,"y":1024.5691},{"x":80,"y":1047.7956},{"x":81,"y":1063.0773},{"x":82,"y":1078.7763},{"x":83,"y":1090.9517},{"x":84,"y":1095.9374},{"x":85,"y":1095.7341},{"x":86,"y":1090.4028},{"x":87,"y":1081.8609},{"x":88,"y":1069.6875},{"x":89,"y":1057.9219},{"x":90,"y":1045.814},{"x":91,"y":1036.204},{"x":92,"y":1026.1815},{"x":93,"y":1013.0357},{"x":94,"y":997.8474},{"x":95,"y":983.3172},{"x":96,"y":965.7575},{"x":97,"y":941.5706},{"x":98,"y":912.861},{"x":99,"y":895.6904},{"x":100,"y":871.7232}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area 44d","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 44d.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":130.7896},{"x":1,"y":140.9879},{"x":2,"y":149.0042},{"x":3,"y":156.8055},{"x":4,"y":161.9389},{"x":5,"y":166.5248},{"x":6,"y":170.7821},{"x":7,"y":175.1421},{"x":8,"y":178.7428},{"x":9,"y":181.1797},{"x":10,"y":183.5982},{"x":11,"y":184.1112},{"x":12,"y":182.259},{"x":13,"y":179.5397},{"x":14,"y":176.7495},{"x":15,"y":174.4247},{"x":16,"y":170.6559},{"x":17,"y":167.6534},{"x":18,"y":165.7885},{"x":19,"y":163.5237},{"x":20,"y":160.065},{"x":21,"y":157.9938},{"x":22,"y":155.5715},{"x":23,"y":151.8706},{"x":24,"y":147.3292},{"x":25,"y":144.302},{"x":26,"y":141.1756},{"x":27,"y":139.0418},{"x":28,"y":138.7087},{"x":29,"y":138.8131},{"x":30,"y":138.2365},{"x":31,"y":136.8411},{"x":32,"y":135.4582},{"x":33,"y":133.5539},{"x":34,"y":132.2366},{"x":35,"y":130.2886},{"x":36,"y":129.0109},{"x":37,"y":126.0496},{"x":38,"y":123.3321},{"x":39,"y":120.5614},{"x":40,"y":115.2084},{"x":41,"y":110.1425},{"x":42,"y":106.4546},{"x":43,"y":103.1611},{"x":44,"y":99.9261},{"x":45,"y":98.6637},{"x":46,"y":98.0565},{"x":47,"y":98.1878},{"x":48,"y":98.5189},{"x":49,"y":100.3296},{"x":50,"y":102.5879},{"x":51,"y":105.4071},{"x":52,"y":108.0192},{"x":53,"y":110.4559},{"x":54,"y":112.2943},{"x":55,"y":114.54},{"x":56,"y":116.1756},{"x":57,"y":116.5185},{"x":58,"y":117.7535},{"x":59,"y":119.244},{"x":60,"y":119.971},{"x":61,"y":121.1285},{"x":62,"y":121.2101},{"x":63,"y":119.7802},{"x":64,"y":117.5138},{"x":65,"y":115.7242},{"x":66,"y":113.4026},{"x":67,"y":111.6592},{"x":68,"y":110.293},{"x":69,"y":109.692},{"x":70,"y":108.6343},{"x":71,"y":108.5367},{"x":72,"y":108.3105},{"x":73,"y":108.2214},{"x":74,"y":108.7634},{"x":75,"y":108.8954},{"x":76,"y":108.4594},{"x":77,"y":108.3565},{"x":78,"y":109.0722},{"x":79,"y":109.682},{"x":80,"y":110.8478},{"x":81,"y":112.0725},{"x":82,"y":112.4945},{"x":83,"y":113.0226},{"x":84,"y":113.7216},{"x":85,"y":114.6475},{"x":86,"y":114.9371},{"x":87,"y":113.7731},{"x":88,"y":111.8517},{"x":89,"y":108.946},{"x":90,"y":106.0041},{"x":91,"y":102.8956},{"x":92,"y":99.6637},{"x":93,"y":96.4381},{"x":94,"y":94.214},{"x":95,"y":91.7969},{"x":96,"y":89.1278},{"x":97,"y":87.4982},{"x":98,"y":85.4295},{"x":99,"y":82.8105},{"x":100,"y":80.9758}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 44d","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 44d.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":635.6834},{"x":1,"y":675.208},{"x":2,"y":731.566},{"x":3,"y":801.7801},{"x":4,"y":856.3079},{"x":5,"y":897.7443},{"x":6,"y":948.6629},{"x":7,"y":993.517},{"x":8,"y":1029.8431},{"x":9,"y":1073.4983},{"x":10,"y":1107.4572},{"x":11,"y":1131.4918},{"x":12,"y":1156.1907},{"x":13,"y":1173.8513},{"x":14,"y":1182.4837},{"x":15,"y":1183.8551},{"x":16,"y":1185.7537},{"x":17,"y":1186.214},{"x":18,"y":1186.8223},{"x":19,"y":1190.7089},{"x":20,"y":1189.4357},{"x":21,"y":1188.8477},{"x":22,"y":1186.0213},{"x":23,"y":1180.0307},{"x":24,"y":1176.4207},{"x":25,"y":1167.4097},{"x":26,"y":1158.4317},{"x":27,"y":1156.7935},{"x":28,"y":1160.3882},{"x":29,"y":1166.0116},{"x":30,"y":1166.2152},{"x":31,"y":1165.6131},{"x":32,"y":1152.5813},{"x":33,"y":1136.9478},{"x":34,"y":1125.1997},{"x":35,"y":1113.9549},{"x":36,"y":1102.5153},{"x":37,"y":1092.1359},{"x":38,"y":1087.1594},{"x":39,"y":1084.7349},{"x":40,"y":1079.316},{"x":41,"y":1067.3251},{"x":42,"y":1049.1084},{"x":43,"y":1028.4688},{"x":44,"y":1016.6733},{"x":45,"y":1002.3098},{"x":46,"y":992.7893},{"x":47,"y":982.9068},{"x":48,"y":976.464},{"x":49,"y":973.9465},{"x":50,"y":972.8533},{"x":51,"y":967.9861},{"x":52,"y":962.3695},{"x":53,"y":957.2399},{"x":54,"y":956.5291},{"x":55,"y":952.3528},{"x":56,"y":951.5988},{"x":57,"y":955.7469},{"x":58,"y":951.71},{"x":59,"y":947.1888},{"x":60,"y":935.9046},{"x":61,"y":919.8848},{"x":62,"y":901.3947},{"x":63,"y":889.9072},{"x":64,"y":881.2536},{"x":65,"y":885.4057},{"x":66,"y":893.8111},{"x":67,"y":896.4547},{"x":68,"y":894.5928},{"x":69,"y":887.2078},{"x":70,"y":886.2902},{"x":71,"y":889.8892},{"x":72,"y":900.173},{"x":73,"y":906.2113},{"x":74,"y":907.9776},{"x":75,"y":912.0918},{"x":76,"y":911.2674},{"x":77,"y":906.7842},{"x":78,"y":901.9207},{"x":79,"y":890.6728},{"x":80,"y":883.168},{"x":81,"y":875.8116},{"x":82,"y":875.735},{"x":83,"y":880.3059},{"x":84,"y":882.1947},{"x":85,"y":878.5786},{"x":86,"y":871.6391},{"x":87,"y":857.0674},{"x":88,"y":841.2104},{"x":89,"y":824.9857},{"x":90,"y":810.9442},{"x":91,"y":792.5228},{"x":92,"y":782.8442},{"x":93,"y":777.4051},{"x":94,"y":769.2498},{"x":95,"y":749},{"x":96,"y":728.1304},{"x":97,"y":698.4146},{"x":98,"y":663.5727},{"x":99,"y":645.9479},{"x":100,"y":636.295}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area 44d","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 44d.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":912.3481},{"x":1,"y":996.6432},{"x":2,"y":1079.7845},{"x":3,"y":1171.4523},{"x":4,"y":1262.3768},{"x":5,"y":1335.6448},{"x":6,"y":1396.0595},{"x":7,"y":1455.7233},{"x":8,"y":1522.3495},{"x":9,"y":1580.9966},{"x":10,"y":1637.3171},{"x":11,"y":1687.9301},{"x":12,"y":1735.6324},{"x":13,"y":1774.6996},{"x":14,"y":1808.1959},{"x":15,"y":1836.3758},{"x":16,"y":1865.2314},{"x":17,"y":1892.1688},{"x":18,"y":1911.4762},{"x":19,"y":1925.1241},{"x":20,"y":1935.6455},{"x":21,"y":1943.2833},{"x":22,"y":1946.4122},{"x":23,"y":1945.428},{"x":24,"y":1942.7371},{"x":25,"y":1938.6823},{"x":26,"y":1929.423},{"x":27,"y":1916.1787},{"x":28,"y":1902.8158},{"x":29,"y":1889.6722},{"x":30,"y":1878.5519},{"x":31,"y":1865.9414},{"x":32,"y":1850.4099},{"x":33,"y":1836.4709},{"x":34,"y":1822.2781},{"x":35,"y":1804.9761},{"x":36,"y":1779.1261},{"x":37,"y":1758.0129},{"x":38,"y":1737.5998},{"x":39,"y":1714.4166},{"x":40,"y":1690.3024},{"x":41,"y":1669.4437},{"x":42,"y":1644.9303},{"x":43,"y":1618.1184},{"x":44,"y":1594.6439},{"x":45,"y":1574.1264},{"x":46,"y":1557.4766},{"x":47,"y":1535.8774},{"x":48,"y":1508.4733},{"x":49,"y":1481.9088},{"x":50,"y":1455.3302},{"x":51,"y":1430.6069},{"x":52,"y":1410.9065},{"x":53,"y":1388.7577},{"x":54,"y":1365.7271},{"x":55,"y":1341.8161},{"x":56,"y":1313.3073},{"x":57,"y":1283.5357},{"x":58,"y":1246.5555},{"x":59,"y":1211.1568},{"x":60,"y":1186.053},{"x":61,"y":1156.1117},{"x":62,"y":1126.0098},{"x":63,"y":1101.1334},{"x":64,"y":1083.0201},{"x":65,"y":1068.5558},{"x":66,"y":1058.3183},{"x":67,"y":1048.257},{"x":68,"y":1041.41},{"x":69,"y":1038.1881},{"x":70,"y":1039.6274},{"x":71,"y":1044.254},{"x":72,"y":1050.0164},{"x":73,"y":1059.0834},{"x":74,"y":1070.4546},{"x":75,"y":1076.9672},{"x":76,"y":1076.3121},{"x":77,"y":1074.6215},{"x":78,"y":1074.6933},{"x":79,"y":1073.7146},{"x":80,"y":1070.2358},{"x":81,"y":1062.9492},{"x":82,"y":1056.7149},{"x":83,"y":1045.6092},{"x":84,"y":1032.4597},{"x":85,"y":1022.5733},{"x":86,"y":1009.3236},{"x":87,"y":986.6053},{"x":88,"y":963.0126},{"x":89,"y":935.8529},{"x":90,"y":912.2505},{"x":91,"y":883.9803},{"x":92,"y":847.4967},{"x":93,"y":804.4859},{"x":94,"y":769.2487},{"x":95,"y":732.9212},{"x":96,"y":690.3731},{"x":97,"y":643.1514},{"x":98,"y":596.0863},{"x":99,"y":553.514},{"x":100,"y":509.3552}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 44d","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 44d.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":258.906},{"x":1,"y":323.761},{"x":2,"y":385.6594},{"x":3,"y":487.0577},{"x":4,"y":578.5347},{"x":5,"y":638.3412},{"x":6,"y":680.9127},{"x":7,"y":715.6179},{"x":8,"y":729.571},{"x":9,"y":735.6994},{"x":10,"y":739.6825},{"x":11,"y":737.0603},{"x":12,"y":730.7463},{"x":13,"y":728.7334},{"x":14,"y":725.1795},{"x":15,"y":721.2406},{"x":16,"y":711.7179},{"x":17,"y":705.9346},{"x":18,"y":702.8863},{"x":19,"y":705.6425},{"x":20,"y":709.4504},{"x":21,"y":709.7301},{"x":22,"y":707.2349},{"x":23,"y":702.9435},{"x":24,"y":689.2798},{"x":25,"y":667.4628},{"x":26,"y":649.9016},{"x":27,"y":636.0541},{"x":28,"y":623.3399},{"x":29,"y":618.5677},{"x":30,"y":614.4416},{"x":31,"y":609.7299},{"x":32,"y":598.9496},{"x":33,"y":585.4909},{"x":34,"y":571.5837},{"x":35,"y":565.209},{"x":36,"y":565.0373},{"x":37,"y":565.2943},{"x":38,"y":567.3824},{"x":39,"y":568.5015},{"x":40,"y":568.9158},{"x":41,"y":566.5511},{"x":42,"y":568.1449},{"x":43,"y":568.3208},{"x":44,"y":562.7546},{"x":45,"y":560.2755},{"x":46,"y":551.3378},{"x":47,"y":542.831},{"x":48,"y":537.2806},{"x":49,"y":535.26},{"x":50,"y":534.8153},{"x":51,"y":532.5874},{"x":52,"y":526.6135},{"x":53,"y":529.0138},{"x":54,"y":532.7288},{"x":55,"y":545.1786},{"x":56,"y":556.5306},{"x":57,"y":560.7763},{"x":58,"y":559.8273},{"x":59,"y":562.9999},{"x":60,"y":566.9763},{"x":61,"y":570.8686},{"x":62,"y":578.7531},{"x":63,"y":583.6336},{"x":64,"y":583.4727},{"x":65,"y":577.0996},{"x":66,"y":571.3407},{"x":67,"y":565.1271},{"x":68,"y":555.9465},{"x":69,"y":549.4008},{"x":70,"y":547.2537},{"x":71,"y":546.2475},{"x":72,"y":550.0539},{"x":73,"y":548.5338},{"x":74,"y":546.8921},{"x":75,"y":540.4656},{"x":76,"y":530.5863},{"x":77,"y":522.8556},{"x":78,"y":509.1711},{"x":79,"y":498.7558},{"x":80,"y":485.3802},{"x":81,"y":484.1224},{"x":82,"y":475.032},{"x":83,"y":469.7197},{"x":84,"y":469.363},{"x":85,"y":465.997},{"x":86,"y":466.2453},{"x":87,"y":470.733},{"x":88,"y":484.8594},{"x":89,"y":488.6708},{"x":90,"y":489.6416},{"x":91,"y":485.8919},{"x":92,"y":478.3548},{"x":93,"y":474.0475},{"x":94,"y":467.2134},{"x":95,"y":455.6761},{"x":96,"y":441.6636},{"x":97,"y":429.3606},{"x":98,"y":418.8048},{"x":99,"y":410.5251},{"x":100,"y":400.7364}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 44d","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 44d.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one female subject (brain id: hg0201, sample id: ID08, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":17.5526},{"x":1,"y":18.2404},{"x":2,"y":19.5733},{"x":3,"y":20.7844},{"x":4,"y":21.6193},{"x":5,"y":22.3846},{"x":6,"y":22.8477},{"x":7,"y":23.1654},{"x":8,"y":23.5847},{"x":9,"y":23.7386},{"x":10,"y":23.6701},{"x":11,"y":23.5301},{"x":12,"y":23.2492},{"x":13,"y":23.2957},{"x":14,"y":23.5427},{"x":15,"y":23.2245},{"x":16,"y":22.832},{"x":17,"y":23.0307},{"x":18,"y":23.2984},{"x":19,"y":23.4381},{"x":20,"y":23.4944},{"x":21,"y":23.7969},{"x":22,"y":24.0208},{"x":23,"y":24.0548},{"x":24,"y":23.5701},{"x":25,"y":22.8164},{"x":26,"y":22.5366},{"x":27,"y":22.3094},{"x":28,"y":22.2348},{"x":29,"y":22.7725},{"x":30,"y":23.5598},{"x":31,"y":24.0013},{"x":32,"y":23.9982},{"x":33,"y":23.9236},{"x":34,"y":23.7299},{"x":35,"y":23.5581},{"x":36,"y":23.3843},{"x":37,"y":23.1688},{"x":38,"y":22.9755},{"x":39,"y":22.7365},{"x":40,"y":22.6232},{"x":41,"y":22.6734},{"x":42,"y":22.9171},{"x":43,"y":22.956},{"x":44,"y":23.3183},{"x":45,"y":23.7455},{"x":46,"y":23.5557},{"x":47,"y":23.005},{"x":48,"y":22.2134},{"x":49,"y":21.7504},{"x":50,"y":21.7787},{"x":51,"y":21.4508},{"x":52,"y":20.8724},{"x":53,"y":20.5354},{"x":54,"y":20.3356},{"x":55,"y":20.1915},{"x":56,"y":20.0113},{"x":57,"y":20.2368},{"x":58,"y":20.7617},{"x":59,"y":20.7408},{"x":60,"y":20.2946},{"x":61,"y":20.2009},{"x":62,"y":20.0558},{"x":63,"y":20.0194},{"x":64,"y":20.2714},{"x":65,"y":20.5244},{"x":66,"y":21.0666},{"x":67,"y":21.6686},{"x":68,"y":22.3135},{"x":69,"y":22.677},{"x":70,"y":22.5304},{"x":71,"y":22.0354},{"x":72,"y":21.3802},{"x":73,"y":21.1139},{"x":74,"y":20.9309},{"x":75,"y":20.402},{"x":76,"y":20.008},{"x":77,"y":19.9195},{"x":78,"y":19.8669},{"x":79,"y":19.9247},{"x":80,"y":20.0564},{"x":81,"y":20.1244},{"x":82,"y":20.026},{"x":83,"y":20.2388},{"x":84,"y":20.5598},{"x":85,"y":20.7589},{"x":86,"y":20.7626},{"x":87,"y":20.5186},{"x":88,"y":20.1381},{"x":89,"y":19.7113},{"x":90,"y":19.2301},{"x":91,"y":18.6025},{"x":92,"y":18.1931},{"x":93,"y":17.9235},{"x":94,"y":17.6553},{"x":95,"y":17.284},{"x":96,"y":17.0644},{"x":97,"y":17.3845},{"x":98,"y":17.9617},{"x":99,"y":18.4356},{"x":100,"y":18.5941}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area 44d","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 44d.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":313.546},{"x":1,"y":361.7929},{"x":2,"y":447.2941},{"x":3,"y":514.3602},{"x":4,"y":558.0369},{"x":5,"y":593.8824},{"x":6,"y":618.8681},{"x":7,"y":639.7403},{"x":8,"y":653.2936},{"x":9,"y":664.0382},{"x":10,"y":672.2016},{"x":11,"y":672.6758},{"x":12,"y":668.9245},{"x":13,"y":658.5671},{"x":14,"y":648.145},{"x":15,"y":641.9965},{"x":16,"y":636.6961},{"x":17,"y":630.5368},{"x":18,"y":628.4637},{"x":19,"y":621.4073},{"x":20,"y":614.7505},{"x":21,"y":605.0924},{"x":22,"y":594.472},{"x":23,"y":585.8544},{"x":24,"y":579.2243},{"x":25,"y":570.2165},{"x":26,"y":565.5268},{"x":27,"y":560.7574},{"x":28,"y":553.8616},{"x":29,"y":545.1053},{"x":30,"y":539.9686},{"x":31,"y":538.2401},{"x":32,"y":539.8369},{"x":33,"y":539.2209},{"x":34,"y":533.8936},{"x":35,"y":524.6271},{"x":36,"y":519.2756},{"x":37,"y":518.0102},{"x":38,"y":517.2448},{"x":39,"y":517.3816},{"x":40,"y":515.6336},{"x":41,"y":511.6281},{"x":42,"y":503.8306},{"x":43,"y":494.9269},{"x":44,"y":488.3262},{"x":45,"y":488.6405},{"x":46,"y":488.2667},{"x":47,"y":486.8587},{"x":48,"y":489.9742},{"x":49,"y":494.2543},{"x":50,"y":495.6959},{"x":51,"y":493.5618},{"x":52,"y":497.9808},{"x":53,"y":504.9782},{"x":54,"y":509.9584},{"x":55,"y":511.0333},{"x":56,"y":511.1714},{"x":57,"y":510.1776},{"x":58,"y":505.1185},{"x":59,"y":502.1561},{"x":60,"y":502.4967},{"x":61,"y":502.4418},{"x":62,"y":501.1555},{"x":63,"y":498.1769},{"x":64,"y":491.0947},{"x":65,"y":484.2246},{"x":66,"y":472.3104},{"x":67,"y":464.3543},{"x":68,"y":460.1109},{"x":69,"y":456.0898},{"x":70,"y":456.9378},{"x":71,"y":458.5709},{"x":72,"y":458.4806},{"x":73,"y":462.3733},{"x":74,"y":465.7086},{"x":75,"y":466.2267},{"x":76,"y":466.8956},{"x":77,"y":466.21},{"x":78,"y":465.885},{"x":79,"y":465.204},{"x":80,"y":460.9182},{"x":81,"y":456.0116},{"x":82,"y":455.5528},{"x":83,"y":459.9597},{"x":84,"y":464.2115},{"x":85,"y":465.2537},{"x":86,"y":463.1011},{"x":87,"y":463.6073},{"x":88,"y":460.8817},{"x":89,"y":460.0774},{"x":90,"y":456.752},{"x":91,"y":450.5186},{"x":92,"y":443.8293},{"x":93,"y":437.5721},{"x":94,"y":429.0259},{"x":95,"y":425.7858},{"x":96,"y":419.5481},{"x":97,"y":409.6851},{"x":98,"y":398.6156},{"x":99,"y":382.1942},{"x":100,"y":369.2543}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area 44d","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 44d.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area 44d"],"datasets":[{"data":[{"x":0,"y":251.1687},{"x":1,"y":292.1791},{"x":2,"y":335.4423},{"x":3,"y":373.1974},{"x":4,"y":402.1425},{"x":5,"y":423.6878},{"x":6,"y":440.8275},{"x":7,"y":449.0834},{"x":8,"y":453.0224},{"x":9,"y":448.8108},{"x":10,"y":441.9429},{"x":11,"y":428.5094},{"x":12,"y":409.0018},{"x":13,"y":384.7616},{"x":14,"y":359.0341},{"x":15,"y":331.8055},{"x":16,"y":304.2962},{"x":17,"y":278.2472},{"x":18,"y":253.0892},{"x":19,"y":227.7848},{"x":20,"y":202.2447},{"x":21,"y":173.8034},{"x":22,"y":150.6384},{"x":23,"y":130.4725},{"x":24,"y":113.875},{"x":25,"y":100.5917},{"x":26,"y":87.8384},{"x":27,"y":77.2268},{"x":28,"y":69.2425},{"x":29,"y":61.2597},{"x":30,"y":54.8477},{"x":31,"y":50.0124},{"x":32,"y":45.5695},{"x":33,"y":42.0285},{"x":34,"y":40.4439},{"x":35,"y":39.8744},{"x":36,"y":40.2188},{"x":37,"y":40.3293},{"x":38,"y":41.1093},{"x":39,"y":42.2988},{"x":40,"y":45.3175},{"x":41,"y":47.7411},{"x":42,"y":49.5772},{"x":43,"y":50.8485},{"x":44,"y":51.5155},{"x":45,"y":52.0944},{"x":46,"y":52.5555},{"x":47,"y":53.0344},{"x":48,"y":53.3247},{"x":49,"y":54.1581},{"x":50,"y":54.6232},{"x":51,"y":54.6159},{"x":52,"y":53.527},{"x":53,"y":52.023},{"x":54,"y":50.158},{"x":55,"y":48.7169},{"x":56,"y":48.4705},{"x":57,"y":50.2604},{"x":58,"y":53.1866},{"x":59,"y":55.874},{"x":60,"y":56.7547},{"x":61,"y":57.8921},{"x":62,"y":59.834},{"x":63,"y":62.9697},{"x":64,"y":64.2389},{"x":65,"y":65.4007},{"x":66,"y":67.5106},{"x":67,"y":70.1354},{"x":68,"y":72.1528},{"x":69,"y":72.3329},{"x":70,"y":71.9944},{"x":71,"y":71.7902},{"x":72,"y":71.1925},{"x":73,"y":70.0294},{"x":74,"y":69.8533},{"x":75,"y":70.1553},{"x":76,"y":69.6739},{"x":77,"y":69.4489},{"x":78,"y":69.2739},{"x":79,"y":68.9588},{"x":80,"y":68.5633},{"x":81,"y":68.7765},{"x":82,"y":68.8536},{"x":83,"y":68.706},{"x":84,"y":68.4658},{"x":85,"y":67.1182},{"x":86,"y":64.856},{"x":87,"y":63.0971},{"x":88,"y":62.3344},{"x":89,"y":62.4029},{"x":90,"y":62.2243},{"x":91,"y":62.4207},{"x":92,"y":60.2785},{"x":93,"y":57.5698},{"x":94,"y":53.9428},{"x":95,"y":50.9729},{"x":96,"y":49.0661},{"x":97,"y":46.3767},{"x":98,"y":43.7904},{"x":99,"y":42.0633},{"x":100,"y":40.3077}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 44d","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 44d.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":200.462},{"x":1,"y":219.0966},{"x":2,"y":240.2642},{"x":3,"y":257.251},{"x":4,"y":268.9426},{"x":5,"y":273.9886},{"x":6,"y":276.9463},{"x":7,"y":277.3568},{"x":8,"y":278.1795},{"x":9,"y":279.0618},{"x":10,"y":279.7376},{"x":11,"y":276.6454},{"x":12,"y":274.9393},{"x":13,"y":269.1932},{"x":14,"y":261.135},{"x":15,"y":256.8986},{"x":16,"y":252.4615},{"x":17,"y":248.378},{"x":18,"y":243.7802},{"x":19,"y":242.3742},{"x":20,"y":242.4677},{"x":21,"y":242.5239},{"x":22,"y":243.5352},{"x":23,"y":247.7247},{"x":24,"y":252.8253},{"x":25,"y":261.1373},{"x":26,"y":268.2339},{"x":27,"y":275.328},{"x":28,"y":279.2139},{"x":29,"y":281.4273},{"x":30,"y":283.789},{"x":31,"y":287.7375},{"x":32,"y":287.595},{"x":33,"y":288.4525},{"x":34,"y":291.7259},{"x":35,"y":296.1431},{"x":36,"y":300.1256},{"x":37,"y":302.6832},{"x":38,"y":306.7004},{"x":39,"y":309.166},{"x":40,"y":311.6866},{"x":41,"y":314.5176},{"x":42,"y":318.5202},{"x":43,"y":321.2466},{"x":44,"y":328.6461},{"x":45,"y":338.2755},{"x":46,"y":347.1668},{"x":47,"y":355.3187},{"x":48,"y":358.9274},{"x":49,"y":358.8277},{"x":50,"y":360.8641},{"x":51,"y":361.5955},{"x":52,"y":362.6113},{"x":53,"y":363.6982},{"x":54,"y":364.006},{"x":55,"y":365.4474},{"x":56,"y":367.6931},{"x":57,"y":371.5471},{"x":58,"y":364.4084},{"x":59,"y":355.9306},{"x":60,"y":351.1936},{"x":61,"y":348.4529},{"x":62,"y":351.8186},{"x":63,"y":356.8513},{"x":64,"y":364.5136},{"x":65,"y":374.6698},{"x":66,"y":384.8628},{"x":67,"y":394.1341},{"x":68,"y":400.9571},{"x":69,"y":406.2036},{"x":70,"y":404.063},{"x":71,"y":399.9617},{"x":72,"y":397.3096},{"x":73,"y":394.8178},{"x":74,"y":395.9058},{"x":75,"y":401.1612},{"x":76,"y":412.6467},{"x":77,"y":424.0189},{"x":78,"y":430.9132},{"x":79,"y":436.0668},{"x":80,"y":439.8324},{"x":81,"y":441.4092},{"x":82,"y":441.8477},{"x":83,"y":444.485},{"x":84,"y":442.8231},{"x":85,"y":440.8566},{"x":86,"y":438.4664},{"x":87,"y":434.6087},{"x":88,"y":427.8757},{"x":89,"y":420.1199},{"x":90,"y":409.5986},{"x":91,"y":391.2202},{"x":92,"y":376.3157},{"x":93,"y":365.8075},{"x":94,"y":353.0862},{"x":95,"y":338.7337},{"x":96,"y":324.7985},{"x":97,"y":308.619},{"x":98,"y":292.278},{"x":99,"y":277.6494},{"x":100,"y":266.1569}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area 44d","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 44d.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":93.2184},{"x":1,"y":103.1357},{"x":2,"y":115.1558},{"x":3,"y":123.1287},{"x":4,"y":131.034},{"x":5,"y":140.4591},{"x":6,"y":151.3235},{"x":7,"y":161.2224},{"x":8,"y":169.6143},{"x":9,"y":175.8825},{"x":10,"y":180.0235},{"x":11,"y":184.3022},{"x":12,"y":188.5825},{"x":13,"y":192.049},{"x":14,"y":194.6534},{"x":15,"y":196.1512},{"x":16,"y":198.6462},{"x":17,"y":199.9249},{"x":18,"y":200.5163},{"x":19,"y":201.5036},{"x":20,"y":202.4789},{"x":21,"y":202.1745},{"x":22,"y":201.1561},{"x":23,"y":199.3915},{"x":24,"y":198.8221},{"x":25,"y":199.1613},{"x":26,"y":200.2707},{"x":27,"y":202.8377},{"x":28,"y":205.8513},{"x":29,"y":209.7773},{"x":30,"y":213.1075},{"x":31,"y":216.4215},{"x":32,"y":219.7069},{"x":33,"y":222.5147},{"x":34,"y":224.6821},{"x":35,"y":226.8198},{"x":36,"y":228.7891},{"x":37,"y":230.8875},{"x":38,"y":233.0398},{"x":39,"y":234.119},{"x":40,"y":235.1935},{"x":41,"y":235.4642},{"x":42,"y":234.6575},{"x":43,"y":233.0776},{"x":44,"y":229.6466},{"x":45,"y":225.3951},{"x":46,"y":220.0536},{"x":47,"y":214.4221},{"x":48,"y":210.509},{"x":49,"y":207.6994},{"x":50,"y":203.7463},{"x":51,"y":199.6389},{"x":52,"y":196.9513},{"x":53,"y":194.1214},{"x":54,"y":191.4016},{"x":55,"y":189.3127},{"x":56,"y":186.9284},{"x":57,"y":182.9922},{"x":58,"y":178.7413},{"x":59,"y":172.8912},{"x":60,"y":167.9207},{"x":61,"y":164.8473},{"x":62,"y":161.9009},{"x":63,"y":159.9647},{"x":64,"y":157.7585},{"x":65,"y":155.499},{"x":66,"y":153.1585},{"x":67,"y":151.2885},{"x":68,"y":148.9759},{"x":69,"y":145.7406},{"x":70,"y":141.3745},{"x":71,"y":137.0934},{"x":72,"y":132.1629},{"x":73,"y":127.965},{"x":74,"y":125.2032},{"x":75,"y":122.6182},{"x":76,"y":119.963},{"x":77,"y":117.1314},{"x":78,"y":113.9643},{"x":79,"y":110.1572},{"x":80,"y":105.3613},{"x":81,"y":100.4543},{"x":82,"y":95.4555},{"x":83,"y":90.4828},{"x":84,"y":85.3958},{"x":85,"y":80.6497},{"x":86,"y":77.4294},{"x":87,"y":74.2347},{"x":88,"y":71.0402},{"x":89,"y":68.3724},{"x":90,"y":66.644},{"x":91,"y":65.1889},{"x":92,"y":64.5341},{"x":93,"y":63.8138},{"x":94,"y":62.9068},{"x":95,"y":62.3178},{"x":96,"y":62.2611},{"x":97,"y":61.4104},{"x":98,"y":59.9989},{"x":99,"y":57.7467},{"x":100,"y":54.8007}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 44d","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 44d.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":394.4893},{"x":1,"y":471.3484},{"x":2,"y":537.6635},{"x":3,"y":580.7668},{"x":4,"y":626.9292},{"x":5,"y":668.1917},{"x":6,"y":698.0975},{"x":7,"y":717.6599},{"x":8,"y":738.6288},{"x":9,"y":757.4366},{"x":10,"y":763.276},{"x":11,"y":768.1709},{"x":12,"y":767.0118},{"x":13,"y":765.8774},{"x":14,"y":760.4468},{"x":15,"y":744.8279},{"x":16,"y":727.0702},{"x":17,"y":705.4638},{"x":18,"y":690.7208},{"x":19,"y":684.4329},{"x":20,"y":671.4423},{"x":21,"y":655.0578},{"x":22,"y":639.5821},{"x":23,"y":625.8872},{"x":24,"y":615.6989},{"x":25,"y":605.1466},{"x":26,"y":588.8357},{"x":27,"y":577.4551},{"x":28,"y":575.4859},{"x":29,"y":571.1853},{"x":30,"y":559.9771},{"x":31,"y":550.3172},{"x":32,"y":542.5281},{"x":33,"y":528.7033},{"x":34,"y":510.5884},{"x":35,"y":495.527},{"x":36,"y":475.044},{"x":37,"y":461.1956},{"x":38,"y":444.2648},{"x":39,"y":430.852},{"x":40,"y":423.8031},{"x":41,"y":414.6737},{"x":42,"y":412.4612},{"x":43,"y":408.9242},{"x":44,"y":408.6765},{"x":45,"y":409.7371},{"x":46,"y":409.4022},{"x":47,"y":407.8029},{"x":48,"y":405.3546},{"x":49,"y":401.0269},{"x":50,"y":407.9722},{"x":51,"y":408.8483},{"x":52,"y":410.6582},{"x":53,"y":415.5281},{"x":54,"y":417.1553},{"x":55,"y":416.2761},{"x":56,"y":415.384},{"x":57,"y":411.2004},{"x":58,"y":413.7434},{"x":59,"y":408.9485},{"x":60,"y":404.2081},{"x":61,"y":392.6014},{"x":62,"y":380.484},{"x":63,"y":369.9535},{"x":64,"y":362.7408},{"x":65,"y":364.9497},{"x":66,"y":365.5551},{"x":67,"y":372.0932},{"x":68,"y":376.5054},{"x":69,"y":380.6667},{"x":70,"y":386.7289},{"x":71,"y":395.5113},{"x":72,"y":407.996},{"x":73,"y":416.1717},{"x":74,"y":426.1499},{"x":75,"y":438.1099},{"x":76,"y":450.444},{"x":77,"y":464.721},{"x":78,"y":468.764},{"x":79,"y":469.6122},{"x":80,"y":470.3785},{"x":81,"y":468.9733},{"x":82,"y":463.8951},{"x":83,"y":459.4332},{"x":84,"y":454.636},{"x":85,"y":452.3507},{"x":86,"y":448.2997},{"x":87,"y":436.8888},{"x":88,"y":431.6521},{"x":89,"y":427.1004},{"x":90,"y":418.4885},{"x":91,"y":409.6601},{"x":92,"y":399.4179},{"x":93,"y":397.2279},{"x":94,"y":392.7307},{"x":95,"y":387.8207},{"x":96,"y":386.4799},{"x":97,"y":375.6887},{"x":98,"y":368.8953},{"x":99,"y":356.695},{"x":100,"y":347.1782}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area 44d","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 44d.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":32.7319},{"x":1,"y":35.9145},{"x":2,"y":38.7367},{"x":3,"y":42.3227},{"x":4,"y":45.1992},{"x":5,"y":47.5694},{"x":6,"y":50.2197},{"x":7,"y":52.3706},{"x":8,"y":54.0297},{"x":9,"y":54.7911},{"x":10,"y":54.4683},{"x":11,"y":54.4828},{"x":12,"y":54.4581},{"x":13,"y":54.3194},{"x":14,"y":55.1041},{"x":15,"y":56.0905},{"x":16,"y":56.3338},{"x":17,"y":56.4085},{"x":18,"y":57.339},{"x":19,"y":57.9534},{"x":20,"y":59.3908},{"x":21,"y":61.1295},{"x":22,"y":61.7137},{"x":23,"y":62.1137},{"x":24,"y":62.7767},{"x":25,"y":62.7798},{"x":26,"y":62.7508},{"x":27,"y":61.6807},{"x":28,"y":60.8846},{"x":29,"y":59.1123},{"x":30,"y":57.1592},{"x":31,"y":55.2384},{"x":32,"y":52.8224},{"x":33,"y":51.174},{"x":34,"y":49.9322},{"x":35,"y":49.3391},{"x":36,"y":49.3445},{"x":37,"y":49.6293},{"x":38,"y":49.9597},{"x":39,"y":50.6534},{"x":40,"y":50.4038},{"x":41,"y":50.6273},{"x":42,"y":49.8134},{"x":43,"y":49.3184},{"x":44,"y":49.9259},{"x":45,"y":50.0113},{"x":46,"y":49.2021},{"x":47,"y":47.9126},{"x":48,"y":47.632},{"x":49,"y":46.9682},{"x":50,"y":47.2963},{"x":51,"y":47.2764},{"x":52,"y":46.6159},{"x":53,"y":45.4707},{"x":54,"y":43.1105},{"x":55,"y":40.8404},{"x":56,"y":39.3035},{"x":57,"y":37.9769},{"x":58,"y":37.951},{"x":59,"y":37.253},{"x":60,"y":37.0677},{"x":61,"y":38.0543},{"x":62,"y":39.5552},{"x":63,"y":40.7926},{"x":64,"y":41.3663},{"x":65,"y":41.1027},{"x":66,"y":40.5752},{"x":67,"y":40.097},{"x":68,"y":40.061},{"x":69,"y":39.779},{"x":70,"y":39.3922},{"x":71,"y":39.3561},{"x":72,"y":39.6772},{"x":73,"y":39.7309},{"x":74,"y":39.1817},{"x":75,"y":38.3751},{"x":76,"y":37.4357},{"x":77,"y":37.5507},{"x":78,"y":38.1718},{"x":79,"y":39.0326},{"x":80,"y":40.3452},{"x":81,"y":40.9292},{"x":82,"y":40.7408},{"x":83,"y":40.9235},{"x":84,"y":40.7911},{"x":85,"y":40.3003},{"x":86,"y":39.7719},{"x":87,"y":38.9232},{"x":88,"y":38.9567},{"x":89,"y":37.904},{"x":90,"y":37.2853},{"x":91,"y":36.5316},{"x":92,"y":35.8586},{"x":93,"y":35.3685},{"x":94,"y":35.2083},{"x":95,"y":34.9295},{"x":96,"y":34.3932},{"x":97,"y":33.2022},{"x":98,"y":32.2496},{"x":99,"y":32.3176},{"x":100,"y":32.1952}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 44d","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 44d.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":181.6928},{"x":1,"y":209.3769},{"x":2,"y":238.8042},{"x":3,"y":266.3184},{"x":4,"y":290.9064},{"x":5,"y":321.2672},{"x":6,"y":345.6814},{"x":7,"y":367.6579},{"x":8,"y":386.4631},{"x":9,"y":401.9595},{"x":10,"y":419.3571},{"x":11,"y":430.0322},{"x":12,"y":442.0946},{"x":13,"y":455.5119},{"x":14,"y":464.2999},{"x":15,"y":468.9489},{"x":16,"y":473.2186},{"x":17,"y":477.8601},{"x":18,"y":479.255},{"x":19,"y":481.2788},{"x":20,"y":482.211},{"x":21,"y":482.6805},{"x":22,"y":483.2452},{"x":23,"y":482.4359},{"x":24,"y":481.3923},{"x":25,"y":479.8466},{"x":26,"y":476.2967},{"x":27,"y":471.173},{"x":28,"y":465.3557},{"x":29,"y":457.9935},{"x":30,"y":451.0613},{"x":31,"y":443.6187},{"x":32,"y":438.2385},{"x":33,"y":433.2688},{"x":34,"y":427.6463},{"x":35,"y":423.1749},{"x":36,"y":419.5321},{"x":37,"y":417.1595},{"x":38,"y":413.3019},{"x":39,"y":411.1995},{"x":40,"y":409.2883},{"x":41,"y":408.4487},{"x":42,"y":408.3474},{"x":43,"y":409.2216},{"x":44,"y":409.1365},{"x":45,"y":408.8721},{"x":46,"y":408.8611},{"x":47,"y":409.1125},{"x":48,"y":409.0853},{"x":49,"y":407.0625},{"x":50,"y":405.8662},{"x":51,"y":404.8174},{"x":52,"y":402.1933},{"x":53,"y":399.1475},{"x":54,"y":395.8763},{"x":55,"y":392.1377},{"x":56,"y":389.2213},{"x":57,"y":387.29},{"x":58,"y":385.3987},{"x":59,"y":384.0028},{"x":60,"y":382.9141},{"x":61,"y":381.5524},{"x":62,"y":382.2029},{"x":63,"y":383.9521},{"x":64,"y":385.8295},{"x":65,"y":388.4446},{"x":66,"y":389.6158},{"x":67,"y":390.3206},{"x":68,"y":389.7638},{"x":69,"y":389.4435},{"x":70,"y":391.1708},{"x":71,"y":393.4089},{"x":72,"y":394.9677},{"x":73,"y":395.5718},{"x":74,"y":395.2982},{"x":75,"y":394.149},{"x":76,"y":392.1427},{"x":77,"y":390.222},{"x":78,"y":387.3561},{"x":79,"y":383.2475},{"x":80,"y":379.4461},{"x":81,"y":375.2683},{"x":82,"y":372.0121},{"x":83,"y":367.3401},{"x":84,"y":363.5408},{"x":85,"y":359.2233},{"x":86,"y":353.7349},{"x":87,"y":347.4025},{"x":88,"y":339.2659},{"x":89,"y":332.0984},{"x":90,"y":325.5551},{"x":91,"y":315.075},{"x":92,"y":305.2236},{"x":93,"y":294.2752},{"x":94,"y":281.8591},{"x":95,"y":269.8909},{"x":96,"y":255.5991},{"x":97,"y":244.3628},{"x":98,"y":233.264},{"x":99,"y":221.1245},{"x":100,"y":210.8364}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 44d","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 44d.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":4403.4427},{"x":1,"y":4958.9049},{"x":2,"y":5357.2508},{"x":3,"y":5598.1364},{"x":4,"y":5722.5589},{"x":5,"y":5761.7748},{"x":6,"y":5778.6601},{"x":7,"y":5808.6354},{"x":8,"y":5835.6404},{"x":9,"y":5862.9675},{"x":10,"y":5875.6631},{"x":11,"y":5875.3053},{"x":12,"y":5865.107},{"x":13,"y":5850.7607},{"x":14,"y":5844.5375},{"x":15,"y":5859.6391},{"x":16,"y":5853.783},{"x":17,"y":5820.8639},{"x":18,"y":5762.0115},{"x":19,"y":5699.3007},{"x":20,"y":5666.3809},{"x":21,"y":5671.3401},{"x":22,"y":5684.4404},{"x":23,"y":5666.4862},{"x":24,"y":5654.5559},{"x":25,"y":5622.9561},{"x":26,"y":5578.0225},{"x":27,"y":5543.372},{"x":28,"y":5513.3453},{"x":29,"y":5479.742},{"x":30,"y":5456.7717},{"x":31,"y":5475.507},{"x":32,"y":5487.5298},{"x":33,"y":5503.9094},{"x":34,"y":5502.4428},{"x":35,"y":5469.6668},{"x":36,"y":5448.6554},{"x":37,"y":5409.1504},{"x":38,"y":5359.8822},{"x":39,"y":5316.8486},{"x":40,"y":5263.6399},{"x":41,"y":5197.8975},{"x":42,"y":5116.3108},{"x":43,"y":5046.9792},{"x":44,"y":4983.1791},{"x":45,"y":4961.242},{"x":46,"y":4956.5321},{"x":47,"y":4925.8746},{"x":48,"y":4876.8215},{"x":49,"y":4847.9979},{"x":50,"y":4802.6523},{"x":51,"y":4713.9049},{"x":52,"y":4642.1307},{"x":53,"y":4571.7316},{"x":54,"y":4510.3528},{"x":55,"y":4441.5053},{"x":56,"y":4387.2892},{"x":57,"y":4287.4281},{"x":58,"y":4200.6298},{"x":59,"y":4122.5647},{"x":60,"y":4055.6308},{"x":61,"y":3998.0453},{"x":62,"y":3967.3063},{"x":63,"y":3985.6947},{"x":64,"y":4013.0377},{"x":65,"y":4075.9459},{"x":66,"y":4108.4332},{"x":67,"y":4119.8832},{"x":68,"y":4159.3305},{"x":69,"y":4178.9854},{"x":70,"y":4158.6225},{"x":71,"y":4152.0297},{"x":72,"y":4142.6888},{"x":73,"y":4119.9504},{"x":74,"y":4124.674},{"x":75,"y":4107.5824},{"x":76,"y":4096.622},{"x":77,"y":4079.7335},{"x":78,"y":4059.4347},{"x":79,"y":4055.9697},{"x":80,"y":4042.1845},{"x":81,"y":3993.9711},{"x":82,"y":3944.7543},{"x":83,"y":3893.0194},{"x":84,"y":3808.2293},{"x":85,"y":3722.8443},{"x":86,"y":3673.9847},{"x":87,"y":3601.4674},{"x":88,"y":3530.9261},{"x":89,"y":3453.8714},{"x":90,"y":3379.6515},{"x":91,"y":3288.3335},{"x":92,"y":3193.5304},{"x":93,"y":3110.969},{"x":94,"y":3030.3055},{"x":95,"y":2951.1841},{"x":96,"y":2881.4371},{"x":97,"y":2794.7832},{"x":98,"y":2717.0913},{"x":99,"y":2650.9733},{"x":100,"y":2566.4734}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area 44d","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 44d.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one female subject (brain id: hg0201, sample id: ID08, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area 44d"],"datasets":[{"data":[{"x":0,"y":97.092},{"x":1,"y":104.3408},{"x":2,"y":110.5164},{"x":3,"y":116.3236},{"x":4,"y":122.4668},{"x":5,"y":128.5473},{"x":6,"y":135.3223},{"x":7,"y":142.6933},{"x":8,"y":149.4714},{"x":9,"y":155.1314},{"x":10,"y":161.8751},{"x":11,"y":169.7881},{"x":12,"y":177.4956},{"x":13,"y":184.6693},{"x":14,"y":191.439},{"x":15,"y":196.9733},{"x":16,"y":202.4843},{"x":17,"y":207.5687},{"x":18,"y":211.8998},{"x":19,"y":215.3632},{"x":20,"y":218.635},{"x":21,"y":220.5285},{"x":22,"y":222.0008},{"x":23,"y":223.7732},{"x":24,"y":224.1718},{"x":25,"y":224.3354},{"x":26,"y":224.548},{"x":27,"y":224.4246},{"x":28,"y":223.3974},{"x":29,"y":222.4332},{"x":30,"y":221.6875},{"x":31,"y":220.4874},{"x":32,"y":218.9136},{"x":33,"y":216.2046},{"x":34,"y":213.5476},{"x":35,"y":211.5501},{"x":36,"y":210.1752},{"x":37,"y":208.9046},{"x":38,"y":207.1878},{"x":39,"y":205.0565},{"x":40,"y":203.0967},{"x":41,"y":200.9384},{"x":42,"y":198.3259},{"x":43,"y":195.66},{"x":44,"y":192.834},{"x":45,"y":190.5644},{"x":46,"y":188.6767},{"x":47,"y":186.2852},{"x":48,"y":183.7053},{"x":49,"y":181.4329},{"x":50,"y":179.5511},{"x":51,"y":177.63},{"x":52,"y":175.4918},{"x":53,"y":173.1011},{"x":54,"y":170.8088},{"x":55,"y":168.0304},{"x":56,"y":164.914},{"x":57,"y":162.3261},{"x":58,"y":158.8997},{"x":59,"y":154.8305},{"x":60,"y":150.7637},{"x":61,"y":147.4759},{"x":62,"y":144.9258},{"x":63,"y":142.3047},{"x":64,"y":139.4476},{"x":65,"y":136.7734},{"x":66,"y":134.5885},{"x":67,"y":132.7118},{"x":68,"y":131.8688},{"x":69,"y":130.8907},{"x":70,"y":129.2658},{"x":71,"y":128.0842},{"x":72,"y":126.6551},{"x":73,"y":124.2787},{"x":74,"y":121.9226},{"x":75,"y":119.7772},{"x":76,"y":118.1565},{"x":77,"y":116.4454},{"x":78,"y":114.612},{"x":79,"y":112.7643},{"x":80,"y":111.1953},{"x":81,"y":109.7456},{"x":82,"y":108.7578},{"x":83,"y":108.5931},{"x":84,"y":109.038},{"x":85,"y":109.6749},{"x":86,"y":109.9372},{"x":87,"y":109.6498},{"x":88,"y":109.0769},{"x":89,"y":107.8839},{"x":90,"y":106.5514},{"x":91,"y":105.715},{"x":92,"y":104.928},{"x":93,"y":103.0836},{"x":94,"y":100.6395},{"x":95,"y":98.422},{"x":96,"y":96.3502},{"x":97,"y":94.5795},{"x":98,"y":92.5648},{"x":99,"y":90.7519},{"x":100,"y":89.1113}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area 44d","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 44d.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":1476.2919},{"x":1,"y":1762.5631},{"x":2,"y":2034.7877},{"x":3,"y":2313.8205},{"x":4,"y":2600.5045},{"x":5,"y":2826.3772},{"x":6,"y":3009.7421},{"x":7,"y":3161.098},{"x":8,"y":3277.4132},{"x":9,"y":3339.5074},{"x":10,"y":3372.7479},{"x":11,"y":3383.8467},{"x":12,"y":3398.1041},{"x":13,"y":3419.0881},{"x":14,"y":3430.3504},{"x":15,"y":3440.8358},{"x":16,"y":3444.5447},{"x":17,"y":3440.4988},{"x":18,"y":3431.5065},{"x":19,"y":3420.8827},{"x":20,"y":3406.2077},{"x":21,"y":3405.592},{"x":22,"y":3408.1927},{"x":23,"y":3402.2505},{"x":24,"y":3389.0047},{"x":25,"y":3369.005},{"x":26,"y":3334.0964},{"x":27,"y":3297.8908},{"x":28,"y":3267.094},{"x":29,"y":3214.5224},{"x":30,"y":3163.3301},{"x":31,"y":3111.1754},{"x":32,"y":3062.2394},{"x":33,"y":3008.4039},{"x":34,"y":2950.6647},{"x":35,"y":2898.9615},{"x":36,"y":2845.1664},{"x":37,"y":2797.7995},{"x":38,"y":2750.2183},{"x":39,"y":2719.4246},{"x":40,"y":2689.8681},{"x":41,"y":2669.7715},{"x":42,"y":2653.8023},{"x":43,"y":2638.6884},{"x":44,"y":2620.0035},{"x":45,"y":2589.7398},{"x":46,"y":2551.3653},{"x":47,"y":2504.5155},{"x":48,"y":2468.7001},{"x":49,"y":2438.1229},{"x":50,"y":2412.2376},{"x":51,"y":2397.2192},{"x":52,"y":2387.1292},{"x":53,"y":2380.2226},{"x":54,"y":2376.0807},{"x":55,"y":2371.7558},{"x":56,"y":2368.3975},{"x":57,"y":2362.9948},{"x":58,"y":2360.5638},{"x":59,"y":2359.5598},{"x":60,"y":2361.8978},{"x":61,"y":2367.7813},{"x":62,"y":2368.0788},{"x":63,"y":2364.6556},{"x":64,"y":2359.5789},{"x":65,"y":2357.0598},{"x":66,"y":2349.8808},{"x":67,"y":2346.5194},{"x":68,"y":2342.2303},{"x":69,"y":2337.7906},{"x":70,"y":2340.0741},{"x":71,"y":2340.5464},{"x":72,"y":2343.1373},{"x":73,"y":2340.3749},{"x":74,"y":2326.9112},{"x":75,"y":2316.0376},{"x":76,"y":2299.2577},{"x":77,"y":2282.555},{"x":78,"y":2263.6567},{"x":79,"y":2247.6646},{"x":80,"y":2228.4797},{"x":81,"y":2208.8971},{"x":82,"y":2176.8879},{"x":83,"y":2131.3527},{"x":84,"y":2085.0548},{"x":85,"y":2031.9146},{"x":86,"y":1972.8947},{"x":87,"y":1899.0239},{"x":88,"y":1827.7844},{"x":89,"y":1749.6744},{"x":90,"y":1667.788},{"x":91,"y":1588.1607},{"x":92,"y":1513.0203},{"x":93,"y":1419.6582},{"x":94,"y":1322.0766},{"x":95,"y":1228.7828},{"x":96,"y":1139.0645},{"x":97,"y":1035.4337},{"x":98,"y":948.0768},{"x":99,"y":880.2652},{"x":100,"y":823.6772}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 44v",[{"name":"Receptor density fingerprint of Area 44v","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["295","490","1129","3545","1420","1965","2135","532","143","653","67","320","417","268","387","69"]},{"label":"mean_sd","data":["112","205","382","913","216","742","641","102","59","230","37","157","160","100","157","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 44v (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,10,10,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area 4p",[{"name":"Receptor density fingerprint of Area 4p","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 4p.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 4p. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["286","286","739","NA","999","1842","1337","245","141","400","69","193","111","162","234","49"]},{"label":"mean_sd","data":["40","35","1","NA","108","10","65","23","27","44","13","7","15","31","2","5"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 4p (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(139,71,137,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area 4p","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area 4p","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area 4p","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 4p","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area 4p","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area 4p","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 4p","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area 4p","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area 4p","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 4p","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area 4p","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area 4p","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F4p_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area 4p","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 4p.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area 4p"],"datasets":[{"data":[{"x":0,"y":2413.7942},{"x":1,"y":2579.6044},{"x":2,"y":2702.8189},{"x":3,"y":2798.8989},{"x":4,"y":2884.1463},{"x":5,"y":2974.3385},{"x":6,"y":3051.5047},{"x":7,"y":3111.7795},{"x":8,"y":3147.6055},{"x":9,"y":3166.3901},{"x":10,"y":3176.7118},{"x":11,"y":3186.6968},{"x":12,"y":3190.6774},{"x":13,"y":3175.9626},{"x":14,"y":3150.1009},{"x":15,"y":3126.9474},{"x":16,"y":3101.0072},{"x":17,"y":3067.388},{"x":18,"y":3019.0921},{"x":19,"y":2941.8543},{"x":20,"y":2848.7345},{"x":21,"y":2764.5887},{"x":22,"y":2685.3707},{"x":23,"y":2594.0466},{"x":24,"y":2495.2953},{"x":25,"y":2407.7066},{"x":26,"y":2333.9791},{"x":27,"y":2251.1285},{"x":28,"y":2180.8211},{"x":29,"y":2123.6526},{"x":30,"y":2079.9581},{"x":31,"y":2034.0584},{"x":32,"y":1997.3294},{"x":33,"y":1965.5269},{"x":34,"y":1940.2193},{"x":35,"y":1916.1916},{"x":36,"y":1883.4167},{"x":37,"y":1853.6692},{"x":38,"y":1826.0956},{"x":39,"y":1798.6402},{"x":40,"y":1775.9312},{"x":41,"y":1750.9717},{"x":42,"y":1727.9437},{"x":43,"y":1717.8377},{"x":44,"y":1704.3227},{"x":45,"y":1694.9437},{"x":46,"y":1689.5052},{"x":47,"y":1686.4007},{"x":48,"y":1677.6482},{"x":49,"y":1661.8785},{"x":50,"y":1644.2679},{"x":51,"y":1620.0272},{"x":52,"y":1587.3433},{"x":53,"y":1554.6403},{"x":54,"y":1521.1183},{"x":55,"y":1486.9183},{"x":56,"y":1456.6702},{"x":57,"y":1437.946},{"x":58,"y":1421.5769},{"x":59,"y":1408.4279},{"x":60,"y":1398.5662},{"x":61,"y":1392.2645},{"x":62,"y":1387.9689},{"x":63,"y":1381.544},{"x":64,"y":1371.8216},{"x":65,"y":1366.965},{"x":66,"y":1370.4149},{"x":67,"y":1366.3302},{"x":68,"y":1347.7732},{"x":69,"y":1331.3701},{"x":70,"y":1324.8525},{"x":71,"y":1319.6012},{"x":72,"y":1305.0713},{"x":73,"y":1286.3558},{"x":74,"y":1267.4558},{"x":75,"y":1254.2137},{"x":76,"y":1240.9391},{"x":77,"y":1223.9838},{"x":78,"y":1203.4248},{"x":79,"y":1185.6071},{"x":80,"y":1161.864},{"x":81,"y":1125.0255},{"x":82,"y":1091.9493},{"x":83,"y":1069.7976},{"x":84,"y":1045.3628},{"x":85,"y":1021.5118},{"x":86,"y":1002.7278},{"x":87,"y":990.1426},{"x":88,"y":974.0419},{"x":89,"y":950.0222},{"x":90,"y":927.9979},{"x":91,"y":915.1907},{"x":92,"y":895.0272},{"x":93,"y":863.2511},{"x":94,"y":825.0214},{"x":95,"y":784.9342},{"x":96,"y":741.202},{"x":97,"y":698.1911},{"x":98,"y":646.022},{"x":99,"y":581.6678},{"x":100,"y":528.1679}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area 4p","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 4p.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":205.1842},{"x":1,"y":240.3517},{"x":2,"y":275.207},{"x":3,"y":299.4163},{"x":4,"y":314.1489},{"x":5,"y":321.4688},{"x":6,"y":323.7348},{"x":7,"y":322.5535},{"x":8,"y":319.1139},{"x":9,"y":313.5944},{"x":10,"y":307.5699},{"x":11,"y":300.6218},{"x":12,"y":293.9241},{"x":13,"y":287.1282},{"x":14,"y":279.3099},{"x":15,"y":271.8437},{"x":16,"y":265.1888},{"x":17,"y":259.4219},{"x":18,"y":254.1061},{"x":19,"y":247.1481},{"x":20,"y":239.451},{"x":21,"y":231.8765},{"x":22,"y":223.962},{"x":23,"y":217.4048},{"x":24,"y":211.3585},{"x":25,"y":204.6168},{"x":26,"y":199.1226},{"x":27,"y":192.9799},{"x":28,"y":187.1456},{"x":29,"y":183.5182},{"x":30,"y":180.0959},{"x":31,"y":176.4296},{"x":32,"y":173.5105},{"x":33,"y":171.3133},{"x":34,"y":168.9334},{"x":35,"y":167.0311},{"x":36,"y":165.0458},{"x":37,"y":163.317},{"x":38,"y":160.9514},{"x":39,"y":157.7277},{"x":40,"y":154.1254},{"x":41,"y":152.0029},{"x":42,"y":151.2182},{"x":43,"y":148.4541},{"x":44,"y":146.2252},{"x":45,"y":145.4551},{"x":46,"y":144.9319},{"x":47,"y":145.0735},{"x":48,"y":146.0921},{"x":49,"y":147.1874},{"x":50,"y":148.6085},{"x":51,"y":149.702},{"x":52,"y":151.0333},{"x":53,"y":153.2793},{"x":54,"y":155.3491},{"x":55,"y":157.6639},{"x":56,"y":158.7428},{"x":57,"y":160.2607},{"x":58,"y":160.9932},{"x":59,"y":160.3886},{"x":60,"y":159.3193},{"x":61,"y":158.2289},{"x":62,"y":157.1462},{"x":63,"y":157.2808},{"x":64,"y":158.3863},{"x":65,"y":158.7046},{"x":66,"y":158.4448},{"x":67,"y":157.8302},{"x":68,"y":156.3656},{"x":69,"y":154.7349},{"x":70,"y":154.0051},{"x":71,"y":153.2451},{"x":72,"y":152.9668},{"x":73,"y":153.9097},{"x":74,"y":154.6538},{"x":75,"y":155.4769},{"x":76,"y":157.1326},{"x":77,"y":157.4459},{"x":78,"y":157.7777},{"x":79,"y":159.3443},{"x":80,"y":161.0418},{"x":81,"y":162.1393},{"x":82,"y":161.385},{"x":83,"y":158.7497},{"x":84,"y":155.2385},{"x":85,"y":151.8252},{"x":86,"y":147.909},{"x":87,"y":144.1392},{"x":88,"y":140.7435},{"x":89,"y":138.6898},{"x":90,"y":135.0542},{"x":91,"y":130.393},{"x":92,"y":126.5798},{"x":93,"y":122.5006},{"x":94,"y":117.679},{"x":95,"y":113.1031},{"x":96,"y":109.215},{"x":97,"y":103.6431},{"x":98,"y":97.0317},{"x":99,"y":89.5429},{"x":100,"y":83.3149}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 4p.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":671.5327},{"x":1,"y":762.0834},{"x":2,"y":825.9149},{"x":3,"y":876.0997},{"x":4,"y":908.4196},{"x":5,"y":948.0117},{"x":6,"y":983.0097},{"x":7,"y":1006.7643},{"x":8,"y":1024.6274},{"x":9,"y":1040.8895},{"x":10,"y":1055.4347},{"x":11,"y":1065.6967},{"x":12,"y":1073.718},{"x":13,"y":1076.7193},{"x":14,"y":1076.3371},{"x":15,"y":1076.2685},{"x":16,"y":1072.7573},{"x":17,"y":1065.5468},{"x":18,"y":1060.4237},{"x":19,"y":1054.4459},{"x":20,"y":1043.0831},{"x":21,"y":1031.6371},{"x":22,"y":1019.9855},{"x":23,"y":1011.1376},{"x":24,"y":1001.1152},{"x":25,"y":990.5897},{"x":26,"y":983.1137},{"x":27,"y":973.6314},{"x":28,"y":962.1853},{"x":29,"y":949.9465},{"x":30,"y":940.0855},{"x":31,"y":927.9226},{"x":32,"y":912.8959},{"x":33,"y":895.8703},{"x":34,"y":876.6853},{"x":35,"y":860.5046},{"x":36,"y":847.7047},{"x":37,"y":833.4613},{"x":38,"y":817.7553},{"x":39,"y":805.428},{"x":40,"y":793.0707},{"x":41,"y":784.4402},{"x":42,"y":780.7564},{"x":43,"y":777.5456},{"x":44,"y":778.4201},{"x":45,"y":777.6818},{"x":46,"y":769.9891},{"x":47,"y":759.2726},{"x":48,"y":748.9673},{"x":49,"y":738.2948},{"x":50,"y":727.8748},{"x":51,"y":714.372},{"x":52,"y":702.6996},{"x":53,"y":694.3483},{"x":54,"y":691.909},{"x":55,"y":692.0614},{"x":56,"y":688.4385},{"x":57,"y":685.6036},{"x":58,"y":683.1186},{"x":59,"y":676.6456},{"x":60,"y":669.4609},{"x":61,"y":669.0202},{"x":62,"y":669.4426},{"x":63,"y":669.2955},{"x":64,"y":671.8318},{"x":65,"y":671.8088},{"x":66,"y":666.7441},{"x":67,"y":659.3642},{"x":68,"y":653.5222},{"x":69,"y":648.1735},{"x":70,"y":641.1897},{"x":71,"y":633.3543},{"x":72,"y":624.8101},{"x":73,"y":617.3287},{"x":74,"y":607.1936},{"x":75,"y":596.4136},{"x":76,"y":588.6646},{"x":77,"y":584.88},{"x":78,"y":583.2397},{"x":79,"y":578.3057},{"x":80,"y":569.7393},{"x":81,"y":565.8268},{"x":82,"y":567.3331},{"x":83,"y":561.5273},{"x":84,"y":556.82},{"x":85,"y":558.0755},{"x":86,"y":557.7605},{"x":87,"y":556.2149},{"x":88,"y":551.3922},{"x":89,"y":549.3613},{"x":90,"y":548.2166},{"x":91,"y":542.1893},{"x":92,"y":532.1291},{"x":93,"y":520.8956},{"x":94,"y":510.1724},{"x":95,"y":496.3677},{"x":96,"y":480.5641},{"x":97,"y":468.4919},{"x":98,"y":455.219},{"x":99,"y":441.33},{"x":100,"y":422.7714}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area 4p","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 4p.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":965.5393},{"x":1,"y":1151.589},{"x":2,"y":1269.8641},{"x":3,"y":1430.0462},{"x":4,"y":1647.1004},{"x":5,"y":1845.1383},{"x":6,"y":1973.9805},{"x":7,"y":2039.1232},{"x":8,"y":2121.6727},{"x":9,"y":2198.0932},{"x":10,"y":2271.2382},{"x":11,"y":2330.7525},{"x":12,"y":2381.1104},{"x":13,"y":2422.7618},{"x":14,"y":2472.3095},{"x":15,"y":2517.238},{"x":16,"y":2551.9437},{"x":17,"y":2565.2157},{"x":18,"y":2569.4004},{"x":19,"y":2563.6702},{"x":20,"y":2552.1965},{"x":21,"y":2533.0733},{"x":22,"y":2507.8129},{"x":23,"y":2490.4359},{"x":24,"y":2466.1782},{"x":25,"y":2432.777},{"x":26,"y":2381.5361},{"x":27,"y":2312.2432},{"x":28,"y":2236.4699},{"x":29,"y":2162.9645},{"x":30,"y":2086.5463},{"x":31,"y":2014.0596},{"x":32,"y":1943.6458},{"x":33,"y":1871.2318},{"x":34,"y":1812.889},{"x":35,"y":1747.1772},{"x":36,"y":1687.3703},{"x":37,"y":1631.6518},{"x":38,"y":1572.9243},{"x":39,"y":1525.8313},{"x":40,"y":1491.4072},{"x":41,"y":1452.491},{"x":42,"y":1407.0283},{"x":43,"y":1364.8219},{"x":44,"y":1324.3999},{"x":45,"y":1285.3707},{"x":46,"y":1245.3963},{"x":47,"y":1205.4298},{"x":48,"y":1172.975},{"x":49,"y":1151.8664},{"x":50,"y":1135.9644},{"x":51,"y":1112.919},{"x":52,"y":1089.5399},{"x":53,"y":1070.048},{"x":54,"y":1051.2739},{"x":55,"y":1032.4496},{"x":56,"y":1013.6026},{"x":57,"y":993.1959},{"x":58,"y":972.977},{"x":59,"y":953.3375},{"x":60,"y":936.7445},{"x":61,"y":924.2896},{"x":62,"y":909.1979},{"x":63,"y":898.075},{"x":64,"y":888.4155},{"x":65,"y":866.639},{"x":66,"y":849.7873},{"x":67,"y":843.6005},{"x":68,"y":830.8216},{"x":69,"y":813.7414},{"x":70,"y":796.1059},{"x":71,"y":787.1312},{"x":72,"y":781.821},{"x":73,"y":776.9668},{"x":74,"y":773.711},{"x":75,"y":771.0308},{"x":76,"y":769.5572},{"x":77,"y":762.1573},{"x":78,"y":755.5919},{"x":79,"y":748.7084},{"x":80,"y":744.6876},{"x":81,"y":742.9751},{"x":82,"y":745.0323},{"x":83,"y":746.6802},{"x":84,"y":739.1477},{"x":85,"y":714.0092},{"x":86,"y":684.6236},{"x":87,"y":657.7985},{"x":88,"y":639.7674},{"x":89,"y":616.9143},{"x":90,"y":594.2077},{"x":91,"y":576.7812},{"x":92,"y":557.1305},{"x":93,"y":535.8097},{"x":94,"y":521.4719},{"x":95,"y":491.7572},{"x":96,"y":446.4722},{"x":97,"y":400.0985},{"x":98,"y":369.1684},{"x":99,"y":351.5054},{"x":100,"y":326.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 4p","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 4p.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":246.2534},{"x":1,"y":259.4862},{"x":2,"y":277.4986},{"x":3,"y":285.2216},{"x":4,"y":294.0173},{"x":5,"y":300.7106},{"x":6,"y":306.3066},{"x":7,"y":312.9451},{"x":8,"y":314.0576},{"x":9,"y":314.2408},{"x":10,"y":314.8368},{"x":11,"y":317.026},{"x":12,"y":320.4883},{"x":13,"y":321.852},{"x":14,"y":326.9512},{"x":15,"y":328.7829},{"x":16,"y":328.8389},{"x":17,"y":328.4249},{"x":18,"y":328.2449},{"x":19,"y":327.5129},{"x":20,"y":325.5236},{"x":21,"y":324.4907},{"x":22,"y":322.0809},{"x":23,"y":320.5948},{"x":24,"y":318.2293},{"x":25,"y":312.8317},{"x":26,"y":307.4058},{"x":27,"y":303.2551},{"x":28,"y":297.6031},{"x":29,"y":291.8421},{"x":30,"y":287.2327},{"x":31,"y":280.3822},{"x":32,"y":272.6439},{"x":33,"y":266.0348},{"x":34,"y":260.7282},{"x":35,"y":255.295},{"x":36,"y":251.4279},{"x":37,"y":246.2224},{"x":38,"y":240.9865},{"x":39,"y":232.7538},{"x":40,"y":225.5775},{"x":41,"y":219.1856},{"x":42,"y":212.542},{"x":43,"y":206.4109},{"x":44,"y":198.4776},{"x":45,"y":191.7136},{"x":46,"y":184.8949},{"x":47,"y":177.3725},{"x":48,"y":170.9253},{"x":49,"y":163.2244},{"x":50,"y":158.5991},{"x":51,"y":155.6667},{"x":52,"y":151.1555},{"x":53,"y":149.0065},{"x":54,"y":146.8623},{"x":55,"y":143.5166},{"x":56,"y":142.1431},{"x":57,"y":139.5216},{"x":58,"y":137.763},{"x":59,"y":135.723},{"x":60,"y":134.9706},{"x":61,"y":134.3301},{"x":62,"y":132.7478},{"x":63,"y":128.6403},{"x":64,"y":128.8844},{"x":65,"y":127.1248},{"x":66,"y":124.9873},{"x":67,"y":122.3877},{"x":68,"y":120.8569},{"x":69,"y":119.7062},{"x":70,"y":117.9047},{"x":71,"y":118.1982},{"x":72,"y":117.7951},{"x":73,"y":117.6583},{"x":74,"y":118.3453},{"x":75,"y":121.5278},{"x":76,"y":122.7096},{"x":77,"y":121.637},{"x":78,"y":120.9788},{"x":79,"y":121.9424},{"x":80,"y":124.0766},{"x":81,"y":127.485},{"x":82,"y":128.8032},{"x":83,"y":131.1107},{"x":84,"y":131.5831},{"x":85,"y":131.9437},{"x":86,"y":132.7724},{"x":87,"y":131.3279},{"x":88,"y":130.4136},{"x":89,"y":129.4572},{"x":90,"y":128.3176},{"x":91,"y":127.5929},{"x":92,"y":125.9543},{"x":93,"y":121.9733},{"x":94,"y":114.7188},{"x":95,"y":110.2009},{"x":96,"y":103.4671},{"x":97,"y":97.5537},{"x":98,"y":93.8018},{"x":99,"y":85.5132},{"x":100,"y":78.944}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 4p.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":23.3964},{"x":1,"y":27.5677},{"x":2,"y":33.1487},{"x":3,"y":38.0441},{"x":4,"y":39.9948},{"x":5,"y":41.6577},{"x":6,"y":41.4725},{"x":7,"y":42.5339},{"x":8,"y":41.9263},{"x":9,"y":42.1979},{"x":10,"y":42.9298},{"x":11,"y":43.7589},{"x":12,"y":47.5871},{"x":13,"y":52.4842},{"x":14,"y":56.0057},{"x":15,"y":59.4803},{"x":16,"y":63.3273},{"x":17,"y":64.846},{"x":18,"y":65.7842},{"x":19,"y":67.2184},{"x":20,"y":65.0516},{"x":21,"y":63.3048},{"x":22,"y":63.2549},{"x":23,"y":63.0501},{"x":24,"y":61.1246},{"x":25,"y":58.7209},{"x":26,"y":58.6303},{"x":27,"y":57.2076},{"x":28,"y":56.8928},{"x":29,"y":58.8376},{"x":30,"y":60.7044},{"x":31,"y":60.8714},{"x":32,"y":60.1396},{"x":33,"y":57.9379},{"x":34,"y":54.8886},{"x":35,"y":53.3826},{"x":36,"y":54.1466},{"x":37,"y":52.2331},{"x":38,"y":50.1424},{"x":39,"y":47.0771},{"x":40,"y":44.8462},{"x":41,"y":43.2539},{"x":42,"y":41.6472},{"x":43,"y":40.3653},{"x":44,"y":38.8388},{"x":45,"y":36.4354},{"x":46,"y":34.9368},{"x":47,"y":32.7955},{"x":48,"y":30.5269},{"x":49,"y":29.4819},{"x":50,"y":28.6333},{"x":51,"y":27.4856},{"x":52,"y":30.0795},{"x":53,"y":29.6557},{"x":54,"y":27.9403},{"x":55,"y":27.1986},{"x":56,"y":27.3866},{"x":57,"y":28.5206},{"x":58,"y":29.9391},{"x":59,"y":28.32},{"x":60,"y":26.3162},{"x":61,"y":25.2729},{"x":62,"y":23.8304},{"x":63,"y":23.2192},{"x":64,"y":22.7362},{"x":65,"y":23.9736},{"x":66,"y":26.6035},{"x":67,"y":28.2756},{"x":68,"y":29.7539},{"x":69,"y":29.3688},{"x":70,"y":28.7515},{"x":71,"y":27.8298},{"x":72,"y":26.2974},{"x":73,"y":26.1557},{"x":74,"y":25.338},{"x":75,"y":26.0453},{"x":76,"y":27.9933},{"x":77,"y":26.4202},{"x":78,"y":24.6767},{"x":79,"y":27.4102},{"x":80,"y":27.7946},{"x":81,"y":29.4776},{"x":82,"y":30.8489},{"x":83,"y":30.712},{"x":84,"y":30.2648},{"x":85,"y":27.2451},{"x":86,"y":26.7469},{"x":87,"y":24.9955},{"x":88,"y":22.4077},{"x":89,"y":19.4475},{"x":90,"y":17.9922},{"x":91,"y":17.8824},{"x":92,"y":17.8844},{"x":93,"y":17.4764},{"x":94,"y":19.2903},{"x":95,"y":23.8196},{"x":96,"y":27.6593},{"x":97,"y":29.3031},{"x":98,"y":29.8073},{"x":99,"y":28.1852},{"x":100,"y":24.9341}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area 4p","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 4p.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":177.5613},{"x":1,"y":212.9125},{"x":2,"y":237.2639},{"x":3,"y":246.8467},{"x":4,"y":251.8385},{"x":5,"y":261.0618},{"x":6,"y":273.723},{"x":7,"y":280.7772},{"x":8,"y":285.8265},{"x":9,"y":290.192},{"x":10,"y":297.355},{"x":11,"y":301.9992},{"x":12,"y":303.6063},{"x":13,"y":303.2138},{"x":14,"y":302.084},{"x":15,"y":300.7632},{"x":16,"y":297.0427},{"x":17,"y":296.8666},{"x":18,"y":298.0317},{"x":19,"y":301.7782},{"x":20,"y":301.3352},{"x":21,"y":297.8462},{"x":22,"y":288.1062},{"x":23,"y":280.651},{"x":24,"y":280.3739},{"x":25,"y":284.5969},{"x":26,"y":292.552},{"x":27,"y":297.0228},{"x":28,"y":295.1052},{"x":29,"y":290.6341},{"x":30,"y":282.2568},{"x":31,"y":276.5483},{"x":32,"y":273.3071},{"x":33,"y":272.3669},{"x":34,"y":268.6228},{"x":35,"y":264.066},{"x":36,"y":255.4622},{"x":37,"y":247.7011},{"x":38,"y":244.7823},{"x":39,"y":242.7695},{"x":40,"y":244.436},{"x":41,"y":239.7032},{"x":42,"y":240.084},{"x":43,"y":241.3789},{"x":44,"y":239.0415},{"x":45,"y":231.2252},{"x":46,"y":225.5254},{"x":47,"y":227.1775},{"x":48,"y":229.674},{"x":49,"y":231.0203},{"x":50,"y":226.7826},{"x":51,"y":223.0323},{"x":52,"y":223.463},{"x":53,"y":225.4177},{"x":54,"y":226.4601},{"x":55,"y":223.5417},{"x":56,"y":220.1629},{"x":57,"y":211.5754},{"x":58,"y":206.0136},{"x":59,"y":202.2226},{"x":60,"y":201.2661},{"x":61,"y":203.4258},{"x":62,"y":204.7404},{"x":63,"y":205.0382},{"x":64,"y":208.381},{"x":65,"y":212.1368},{"x":66,"y":214.4771},{"x":67,"y":212.6352},{"x":68,"y":204.4166},{"x":69,"y":196.9347},{"x":70,"y":191.4556},{"x":71,"y":189.1072},{"x":72,"y":190.59},{"x":73,"y":188.3134},{"x":74,"y":184.0019},{"x":75,"y":180.1806},{"x":76,"y":175.4552},{"x":77,"y":173.0925},{"x":78,"y":170.2103},{"x":79,"y":167.2494},{"x":80,"y":164.0523},{"x":81,"y":156.5838},{"x":82,"y":149.7573},{"x":83,"y":149.6057},{"x":84,"y":159.9707},{"x":85,"y":168.7063},{"x":86,"y":168.9057},{"x":87,"y":170.7221},{"x":88,"y":171.0815},{"x":89,"y":169.9085},{"x":90,"y":168.0826},{"x":91,"y":169.9774},{"x":92,"y":175.4958},{"x":93,"y":178.4184},{"x":94,"y":174.982},{"x":95,"y":177.1927},{"x":96,"y":178.7234},{"x":97,"y":176.297},{"x":98,"y":170.38},{"x":99,"y":158.8722},{"x":100,"y":147.2249}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area 4p","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 4p.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":428.9308},{"x":1,"y":495.1403},{"x":2,"y":541.9164},{"x":3,"y":588.555},{"x":4,"y":647.0351},{"x":5,"y":692.3516},{"x":6,"y":724.4157},{"x":7,"y":736.4219},{"x":8,"y":741.1353},{"x":9,"y":742.8676},{"x":10,"y":750.2411},{"x":11,"y":748.3506},{"x":12,"y":734.6194},{"x":13,"y":714.5461},{"x":14,"y":693.3643},{"x":15,"y":676.2287},{"x":16,"y":645.0704},{"x":17,"y":602.1474},{"x":18,"y":552.7692},{"x":19,"y":514.9649},{"x":20,"y":490.3583},{"x":21,"y":439.6608},{"x":22,"y":388.6937},{"x":23,"y":345.0375},{"x":24,"y":300.4365},{"x":25,"y":263.1994},{"x":26,"y":244.5633},{"x":27,"y":225.1518},{"x":28,"y":197.3158},{"x":29,"y":173.332},{"x":30,"y":153.4922},{"x":31,"y":137.1926},{"x":32,"y":129.6507},{"x":33,"y":125.2547},{"x":34,"y":115.9493},{"x":35,"y":106.9346},{"x":36,"y":99.137},{"x":37,"y":93.7743},{"x":38,"y":91.4765},{"x":39,"y":88.9536},{"x":40,"y":85.2524},{"x":41,"y":82.2302},{"x":42,"y":80.2956},{"x":43,"y":79.4478},{"x":44,"y":80.01},{"x":45,"y":81.0778},{"x":46,"y":81.496},{"x":47,"y":82.1455},{"x":48,"y":82.2895},{"x":49,"y":82.5744},{"x":50,"y":83.0285},{"x":51,"y":83.3794},{"x":52,"y":83.746},{"x":53,"y":84.2743},{"x":54,"y":84.9396},{"x":55,"y":84.8718},{"x":56,"y":85.0799},{"x":57,"y":85.1204},{"x":58,"y":83.9936},{"x":59,"y":82.4071},{"x":60,"y":82.0888},{"x":61,"y":83.2833},{"x":62,"y":82.994},{"x":63,"y":82.5629},{"x":64,"y":82.4524},{"x":65,"y":82.6655},{"x":66,"y":83.2486},{"x":67,"y":84.6959},{"x":68,"y":85.0116},{"x":69,"y":85.4611},{"x":70,"y":87.0886},{"x":71,"y":87.4156},{"x":72,"y":86.4148},{"x":73,"y":85.9081},{"x":74,"y":86.8308},{"x":75,"y":88.2356},{"x":76,"y":88.6416},{"x":77,"y":89.0933},{"x":78,"y":90.7302},{"x":79,"y":92.9634},{"x":80,"y":95.5819},{"x":81,"y":96.8833},{"x":82,"y":100.074},{"x":83,"y":103.905},{"x":84,"y":108.4788},{"x":85,"y":111.3809},{"x":86,"y":111.5588},{"x":87,"y":112.7189},{"x":88,"y":113.3942},{"x":89,"y":113.6225},{"x":90,"y":112.8714},{"x":91,"y":111.7206},{"x":92,"y":111.6132},{"x":93,"y":110.3027},{"x":94,"y":107.5104},{"x":95,"y":103.692},{"x":96,"y":99.1192},{"x":97,"y":94.175},{"x":98,"y":90.759},{"x":99,"y":88.0743},{"x":100,"y":86.1116}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 4p","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 4p.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":444.9013},{"x":1,"y":478.853},{"x":2,"y":522.3044},{"x":3,"y":566.3769},{"x":4,"y":611.4381},{"x":5,"y":639.1643},{"x":6,"y":670.3777},{"x":7,"y":709.8891},{"x":8,"y":736.845},{"x":9,"y":751.4612},{"x":10,"y":759.8265},{"x":11,"y":760.0773},{"x":12,"y":755.6988},{"x":13,"y":748.2128},{"x":14,"y":737.3758},{"x":15,"y":714.9009},{"x":16,"y":698.4431},{"x":17,"y":692.0432},{"x":18,"y":693.9772},{"x":19,"y":694.4279},{"x":20,"y":689.9882},{"x":21,"y":673.9338},{"x":22,"y":662.2802},{"x":23,"y":659.3315},{"x":24,"y":647.7461},{"x":25,"y":635.2646},{"x":26,"y":624.9549},{"x":27,"y":613.6821},{"x":28,"y":601.6596},{"x":29,"y":595.9311},{"x":30,"y":585.5849},{"x":31,"y":572.7356},{"x":32,"y":564.8913},{"x":33,"y":552.4053},{"x":34,"y":546.3442},{"x":35,"y":543.6978},{"x":36,"y":537.0066},{"x":37,"y":539.8829},{"x":38,"y":543.2446},{"x":39,"y":539.9692},{"x":40,"y":538.3033},{"x":41,"y":537.9807},{"x":42,"y":535.1719},{"x":43,"y":526.5822},{"x":44,"y":513.5545},{"x":45,"y":514.0201},{"x":46,"y":509.4211},{"x":47,"y":517.0931},{"x":48,"y":529.9028},{"x":49,"y":541.1426},{"x":50,"y":548.2803},{"x":51,"y":550.3827},{"x":52,"y":558.8487},{"x":53,"y":559.927},{"x":54,"y":560.2662},{"x":55,"y":557.1831},{"x":56,"y":548.6018},{"x":57,"y":555.1562},{"x":58,"y":555.5079},{"x":59,"y":557.5307},{"x":60,"y":553.8345},{"x":61,"y":549.0618},{"x":62,"y":537.1122},{"x":63,"y":531.8627},{"x":64,"y":512.7822},{"x":65,"y":500.884},{"x":66,"y":494.9313},{"x":67,"y":503.8626},{"x":68,"y":509.7465},{"x":69,"y":507.8355},{"x":70,"y":516.0139},{"x":71,"y":515.2897},{"x":72,"y":505.1189},{"x":73,"y":499.4815},{"x":74,"y":500.4826},{"x":75,"y":509.1224},{"x":76,"y":520.0008},{"x":77,"y":537.0228},{"x":78,"y":541.7035},{"x":79,"y":540.2282},{"x":80,"y":550.8264},{"x":81,"y":558.0364},{"x":82,"y":554.3041},{"x":83,"y":557.8952},{"x":84,"y":561.7992},{"x":85,"y":560.6808},{"x":86,"y":560.0122},{"x":87,"y":549.6383},{"x":88,"y":544.6991},{"x":89,"y":530.6341},{"x":90,"y":519.7908},{"x":91,"y":503.1348},{"x":92,"y":488.2597},{"x":93,"y":472.8749},{"x":94,"y":453.6037},{"x":95,"y":443.4381},{"x":96,"y":425.9718},{"x":97,"y":392.7833},{"x":98,"y":359.1279},{"x":99,"y":327.3993},{"x":100,"y":302.0907}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area 4p","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 4p.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":108.2147},{"x":1,"y":114.7941},{"x":2,"y":120.2603},{"x":3,"y":125.0035},{"x":4,"y":128.6499},{"x":5,"y":132.0851},{"x":6,"y":134.0588},{"x":7,"y":134.9646},{"x":8,"y":135.1502},{"x":9,"y":136.6637},{"x":10,"y":139.1111},{"x":11,"y":141.3666},{"x":12,"y":143.7458},{"x":13,"y":146.0771},{"x":14,"y":148.2536},{"x":15,"y":149.713},{"x":16,"y":150.2325},{"x":17,"y":149.7311},{"x":18,"y":149.3945},{"x":19,"y":149.9737},{"x":20,"y":150.5448},{"x":21,"y":150.9979},{"x":22,"y":151.4884},{"x":23,"y":152.231},{"x":24,"y":153.3646},{"x":25,"y":153.7209},{"x":26,"y":152.6501},{"x":27,"y":150.9449},{"x":28,"y":150.306},{"x":29,"y":149.1485},{"x":30,"y":145.8366},{"x":31,"y":142.4922},{"x":32,"y":140.3508},{"x":33,"y":137.7917},{"x":34,"y":134.5651},{"x":35,"y":131.6808},{"x":36,"y":128.9564},{"x":37,"y":125.9953},{"x":38,"y":123.1399},{"x":39,"y":120.5989},{"x":40,"y":118.195},{"x":41,"y":115.7174},{"x":42,"y":113.2899},{"x":43,"y":111.0312},{"x":44,"y":109.5123},{"x":45,"y":108.6353},{"x":46,"y":107.6214},{"x":47,"y":106.4588},{"x":48,"y":106.1123},{"x":49,"y":106.3376},{"x":50,"y":106.3804},{"x":51,"y":106.4234},{"x":52,"y":107.1362},{"x":53,"y":108.5413},{"x":54,"y":110.5437},{"x":55,"y":112.1884},{"x":56,"y":112.5979},{"x":57,"y":111.7477},{"x":58,"y":110.9647},{"x":59,"y":110.829},{"x":60,"y":110.451},{"x":61,"y":110.8103},{"x":62,"y":111.6594},{"x":63,"y":111.6352},{"x":64,"y":111.4361},{"x":65,"y":111.1668},{"x":66,"y":111.0769},{"x":67,"y":111.3845},{"x":68,"y":111.3357},{"x":69,"y":110.8876},{"x":70,"y":110.7298},{"x":71,"y":110.6314},{"x":72,"y":110.1852},{"x":73,"y":110.0184},{"x":74,"y":110.7682},{"x":75,"y":111.9656},{"x":76,"y":113.3596},{"x":77,"y":114.1831},{"x":78,"y":113.6895},{"x":79,"y":112.8259},{"x":80,"y":111.3391},{"x":81,"y":108.0408},{"x":82,"y":104.7079},{"x":83,"y":102.3317},{"x":84,"y":100.0946},{"x":85,"y":97.6344},{"x":86,"y":95.0103},{"x":87,"y":92.2051},{"x":88,"y":90.4907},{"x":89,"y":90.0506},{"x":90,"y":89.2417},{"x":91,"y":87.593},{"x":92,"y":85.9571},{"x":93,"y":84.4195},{"x":94,"y":82.4064},{"x":95,"y":79.9042},{"x":96,"y":77.0442},{"x":97,"y":74.3645},{"x":98,"y":71.9937},{"x":99,"y":69.748},{"x":100,"y":67.4857}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 4p.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":405.7916},{"x":1,"y":451.3663},{"x":2,"y":486.7215},{"x":3,"y":556.2107},{"x":4,"y":609.283},{"x":5,"y":645.7985},{"x":6,"y":667.0372},{"x":7,"y":716.559},{"x":8,"y":766.1185},{"x":9,"y":798.6767},{"x":10,"y":810.0016},{"x":11,"y":817.6583},{"x":12,"y":820.0057},{"x":13,"y":809.1266},{"x":14,"y":808.9703},{"x":15,"y":794.2326},{"x":16,"y":772.7793},{"x":17,"y":748.0217},{"x":18,"y":735.2597},{"x":19,"y":723.7105},{"x":20,"y":708.2348},{"x":21,"y":692.1717},{"x":22,"y":683.6878},{"x":23,"y":672.5242},{"x":24,"y":650.3613},{"x":25,"y":634.4599},{"x":26,"y":618.5452},{"x":27,"y":606.5234},{"x":28,"y":592.2186},{"x":29,"y":574.8941},{"x":30,"y":555.0607},{"x":31,"y":540.9853},{"x":32,"y":529.1812},{"x":33,"y":518.2187},{"x":34,"y":501.6061},{"x":35,"y":485.3405},{"x":36,"y":479.7732},{"x":37,"y":468.6642},{"x":38,"y":456.7342},{"x":39,"y":440.1297},{"x":40,"y":435.0405},{"x":41,"y":431.0196},{"x":42,"y":431.2259},{"x":43,"y":433.7448},{"x":44,"y":437.309},{"x":45,"y":436.3714},{"x":46,"y":430.2076},{"x":47,"y":423.0664},{"x":48,"y":423.831},{"x":49,"y":418.9397},{"x":50,"y":409.6095},{"x":51,"y":407.9441},{"x":52,"y":410.3914},{"x":53,"y":406.0006},{"x":54,"y":410.7625},{"x":55,"y":418.8226},{"x":56,"y":424.2864},{"x":57,"y":424.1622},{"x":58,"y":421.3889},{"x":59,"y":415.1754},{"x":60,"y":415.0224},{"x":61,"y":419.8106},{"x":62,"y":421.9317},{"x":63,"y":423.2834},{"x":64,"y":416.2717},{"x":65,"y":418.4447},{"x":66,"y":413.9094},{"x":67,"y":405.157},{"x":68,"y":391.95},{"x":69,"y":386.3918},{"x":70,"y":384.7671},{"x":71,"y":386.3889},{"x":72,"y":375.4532},{"x":73,"y":371.8443},{"x":74,"y":366.1416},{"x":75,"y":357.2842},{"x":76,"y":355.9336},{"x":77,"y":355.7511},{"x":78,"y":353.0054},{"x":79,"y":355.1551},{"x":80,"y":355.1524},{"x":81,"y":355.9313},{"x":82,"y":362.7427},{"x":83,"y":367.925},{"x":84,"y":379.8562},{"x":85,"y":391.2873},{"x":86,"y":400.3471},{"x":87,"y":406.154},{"x":88,"y":414.1834},{"x":89,"y":416.4235},{"x":90,"y":408.1863},{"x":91,"y":404.4585},{"x":92,"y":403.4157},{"x":93,"y":408.1966},{"x":94,"y":418.5663},{"x":95,"y":419.7757},{"x":96,"y":418.716},{"x":97,"y":410.7785},{"x":98,"y":388.4193},{"x":99,"y":373.8454},{"x":100,"y":356.4581}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area 4p","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 4p.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":81.0356},{"x":1,"y":85.4032},{"x":2,"y":91.5277},{"x":3,"y":95.2649},{"x":4,"y":98.9659},{"x":5,"y":101.4835},{"x":6,"y":102.5073},{"x":7,"y":103.2116},{"x":8,"y":103.5853},{"x":9,"y":102.1317},{"x":10,"y":100.4424},{"x":11,"y":98.5238},{"x":12,"y":97.7946},{"x":13,"y":97.9194},{"x":14,"y":98.453},{"x":15,"y":98.4084},{"x":16,"y":98.6345},{"x":17,"y":98.3342},{"x":18,"y":98.0803},{"x":19,"y":98.4198},{"x":20,"y":99.6212},{"x":21,"y":100.3751},{"x":22,"y":100.9769},{"x":23,"y":102.7118},{"x":24,"y":102.9193},{"x":25,"y":103.5926},{"x":26,"y":103.0699},{"x":27,"y":103.2264},{"x":28,"y":102.756},{"x":29,"y":102.0663},{"x":30,"y":102.022},{"x":31,"y":101.9923},{"x":32,"y":102.0377},{"x":33,"y":102.5273},{"x":34,"y":102.7723},{"x":35,"y":102.642},{"x":36,"y":102.2675},{"x":37,"y":101.5016},{"x":38,"y":100.3767},{"x":39,"y":99.8386},{"x":40,"y":99.8115},{"x":41,"y":99.7355},{"x":42,"y":99.8677},{"x":43,"y":100.6552},{"x":44,"y":101.0978},{"x":45,"y":101.2235},{"x":46,"y":101.0145},{"x":47,"y":100.1424},{"x":48,"y":99.1919},{"x":49,"y":98.7438},{"x":50,"y":97.2201},{"x":51,"y":96.1272},{"x":52,"y":94.8739},{"x":53,"y":93.9007},{"x":54,"y":94.0279},{"x":55,"y":94.9375},{"x":56,"y":96.2987},{"x":57,"y":96.7444},{"x":58,"y":96.2991},{"x":59,"y":95.6324},{"x":60,"y":94.5576},{"x":61,"y":92.8479},{"x":62,"y":91.5215},{"x":63,"y":89.8499},{"x":64,"y":88.5296},{"x":65,"y":87.9721},{"x":66,"y":87.3046},{"x":67,"y":86.311},{"x":68,"y":85.6674},{"x":69,"y":85.8799},{"x":70,"y":86.2137},{"x":71,"y":86.1636},{"x":72,"y":85.6039},{"x":73,"y":84.7779},{"x":74,"y":84.3983},{"x":75,"y":85.2993},{"x":76,"y":85.1569},{"x":77,"y":84.6755},{"x":78,"y":83.4431},{"x":79,"y":81.6805},{"x":80,"y":79.8961},{"x":81,"y":79.2903},{"x":82,"y":80.3898},{"x":83,"y":80.8137},{"x":84,"y":80.7606},{"x":85,"y":80.3767},{"x":86,"y":80.0834},{"x":87,"y":79.1542},{"x":88,"y":77.6828},{"x":89,"y":76.7582},{"x":90,"y":75.375},{"x":91,"y":73.7344},{"x":92,"y":72.0057},{"x":93,"y":70.4787},{"x":94,"y":69.9832},{"x":95,"y":69.777},{"x":96,"y":69.4156},{"x":97,"y":68.9271},{"x":98,"y":68.4438},{"x":99,"y":65.4653},{"x":100,"y":62.7346}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 4p","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 4p.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":238.8069},{"x":1,"y":280.2313},{"x":2,"y":325.6811},{"x":3,"y":349.2281},{"x":4,"y":374.0297},{"x":5,"y":393.2599},{"x":6,"y":405.054},{"x":7,"y":417.0671},{"x":8,"y":424.9056},{"x":9,"y":432.4293},{"x":10,"y":435.5911},{"x":11,"y":435.02},{"x":12,"y":433.1668},{"x":13,"y":430.5725},{"x":14,"y":429.3597},{"x":15,"y":428.5402},{"x":16,"y":426.886},{"x":17,"y":421.9685},{"x":18,"y":417.0921},{"x":19,"y":410.6056},{"x":20,"y":403.318},{"x":21,"y":398.3886},{"x":22,"y":392.5697},{"x":23,"y":387.803},{"x":24,"y":382.9819},{"x":25,"y":379.3677},{"x":26,"y":375.6492},{"x":27,"y":370.0806},{"x":28,"y":365.9916},{"x":29,"y":360.2961},{"x":30,"y":356.1784},{"x":31,"y":351.7452},{"x":32,"y":345.845},{"x":33,"y":340.7166},{"x":34,"y":335.1268},{"x":35,"y":330.1108},{"x":36,"y":325.7945},{"x":37,"y":321.3716},{"x":38,"y":317.7494},{"x":39,"y":314.3934},{"x":40,"y":311.6953},{"x":41,"y":309.8798},{"x":42,"y":307.991},{"x":43,"y":305.4804},{"x":44,"y":302.225},{"x":45,"y":299.7676},{"x":46,"y":298.6813},{"x":47,"y":297.5102},{"x":48,"y":297.8277},{"x":49,"y":298.792},{"x":50,"y":299.1612},{"x":51,"y":299.5356},{"x":52,"y":300.5433},{"x":53,"y":300.3015},{"x":54,"y":299.9078},{"x":55,"y":298.5431},{"x":56,"y":295.263},{"x":57,"y":293.6305},{"x":58,"y":291.2533},{"x":59,"y":289.213},{"x":60,"y":287.1969},{"x":61,"y":285.8204},{"x":62,"y":283.6904},{"x":63,"y":281.8311},{"x":64,"y":279.581},{"x":65,"y":277.4034},{"x":66,"y":273.7292},{"x":67,"y":271.641},{"x":68,"y":270.4709},{"x":69,"y":268.7126},{"x":70,"y":267.2965},{"x":71,"y":265.9582},{"x":72,"y":266.1968},{"x":73,"y":266.4517},{"x":74,"y":267.4044},{"x":75,"y":268.4662},{"x":76,"y":269.5347},{"x":77,"y":270.3887},{"x":78,"y":272.2776},{"x":79,"y":274.0281},{"x":80,"y":274.109},{"x":81,"y":274.518},{"x":82,"y":274.8256},{"x":83,"y":275.5447},{"x":84,"y":276.3067},{"x":85,"y":276.4332},{"x":86,"y":274.8957},{"x":87,"y":272.0392},{"x":88,"y":268.3825},{"x":89,"y":261.8862},{"x":90,"y":257.2851},{"x":91,"y":251.2371},{"x":92,"y":245.5257},{"x":93,"y":239.9286},{"x":94,"y":232.077},{"x":95,"y":225.0543},{"x":96,"y":215.0261},{"x":97,"y":203.8563},{"x":98,"y":194.9882},{"x":99,"y":179.5477},{"x":100,"y":168.421}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 4p.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":1362.7526},{"x":1,"y":1623.7655},{"x":2,"y":1931.6576},{"x":3,"y":2072.2325},{"x":4,"y":2226.3597},{"x":5,"y":2293.6503},{"x":6,"y":2337.3374},{"x":7,"y":2353.4959},{"x":8,"y":2380.6},{"x":9,"y":2396.5804},{"x":10,"y":2421.1059},{"x":11,"y":2429.5757},{"x":12,"y":2445.7819},{"x":13,"y":2459.5389},{"x":14,"y":2462.9697},{"x":15,"y":2460.5987},{"x":16,"y":2447.8776},{"x":17,"y":2433.9832},{"x":18,"y":2407.3267},{"x":19,"y":2367.5993},{"x":20,"y":2332.5256},{"x":21,"y":2290.9801},{"x":22,"y":2250.6076},{"x":23,"y":2175.8714},{"x":24,"y":2108.8494},{"x":25,"y":1983.6804},{"x":26,"y":1905.2304},{"x":27,"y":1828.3765},{"x":28,"y":1769.5882},{"x":29,"y":1720.4662},{"x":30,"y":1674.4628},{"x":31,"y":1635.6467},{"x":32,"y":1594.0765},{"x":33,"y":1552.6051},{"x":34,"y":1516.6606},{"x":35,"y":1479.7696},{"x":36,"y":1430.2682},{"x":37,"y":1395.32},{"x":38,"y":1347.4058},{"x":39,"y":1318.4095},{"x":40,"y":1270.2151},{"x":41,"y":1241.4851},{"x":42,"y":1218.3314},{"x":43,"y":1211.3165},{"x":44,"y":1193.297},{"x":45,"y":1174.9505},{"x":46,"y":1140.7864},{"x":47,"y":1109.8595},{"x":48,"y":1080.7802},{"x":49,"y":1063.9305},{"x":50,"y":1042.3092},{"x":51,"y":1031.5677},{"x":52,"y":1024.8403},{"x":53,"y":1016.885},{"x":54,"y":1001.3821},{"x":55,"y":982.0933},{"x":56,"y":969.3594},{"x":57,"y":945.2689},{"x":58,"y":928.9326},{"x":59,"y":905.3721},{"x":60,"y":893.1365},{"x":61,"y":878.9716},{"x":62,"y":865.5179},{"x":63,"y":843.4146},{"x":64,"y":821.0866},{"x":65,"y":814.6251},{"x":66,"y":816.8045},{"x":67,"y":817.7019},{"x":68,"y":817.2266},{"x":69,"y":812.3679},{"x":70,"y":803.0254},{"x":71,"y":802.4512},{"x":72,"y":800.7972},{"x":73,"y":802.2448},{"x":74,"y":801.2546},{"x":75,"y":806.9519},{"x":76,"y":823.2623},{"x":77,"y":831.6546},{"x":78,"y":849.466},{"x":79,"y":857.9146},{"x":80,"y":891.4304},{"x":81,"y":906.4574},{"x":82,"y":915.4269},{"x":83,"y":921.8337},{"x":84,"y":924.4591},{"x":85,"y":928.9587},{"x":86,"y":928.5737},{"x":87,"y":913.8813},{"x":88,"y":909.1288},{"x":89,"y":910.6338},{"x":90,"y":909.2341},{"x":91,"y":893.5264},{"x":92,"y":871.2802},{"x":93,"y":841.0226},{"x":94,"y":803.2697},{"x":95,"y":745.0494},{"x":96,"y":703.5494},{"x":97,"y":636.1194},{"x":98,"y":589.1755},{"x":99,"y":521.9796},{"x":100,"y":472.3728}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area 4p","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 4p.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":179.9836},{"x":1,"y":200.3762},{"x":2,"y":211.451},{"x":3,"y":222.2991},{"x":4,"y":236.1383},{"x":5,"y":248.6507},{"x":6,"y":257.1125},{"x":7,"y":260.5257},{"x":8,"y":264.4934},{"x":9,"y":268.956},{"x":10,"y":273.6446},{"x":11,"y":278.7552},{"x":12,"y":283.4397},{"x":13,"y":287.3162},{"x":14,"y":290.5109},{"x":15,"y":293.9565},{"x":16,"y":297.6853},{"x":17,"y":302.0848},{"x":18,"y":305.7314},{"x":19,"y":309.3778},{"x":20,"y":311.836},{"x":21,"y":313.7182},{"x":22,"y":315.9635},{"x":23,"y":317.9053},{"x":24,"y":318.5886},{"x":25,"y":317.5704},{"x":26,"y":316.6828},{"x":27,"y":315.2617},{"x":28,"y":313.201},{"x":29,"y":309.9313},{"x":30,"y":305.9518},{"x":31,"y":301.3275},{"x":32,"y":297.3132},{"x":33,"y":294.1857},{"x":34,"y":291.9383},{"x":35,"y":291.1475},{"x":36,"y":290.8454},{"x":37,"y":289.9765},{"x":38,"y":287.7755},{"x":39,"y":283.566},{"x":40,"y":277.8046},{"x":41,"y":271.2469},{"x":42,"y":265.0297},{"x":43,"y":259.5282},{"x":44,"y":256.2872},{"x":45,"y":254.189},{"x":46,"y":252.385},{"x":47,"y":250.9218},{"x":48,"y":248.5836},{"x":49,"y":246.0226},{"x":50,"y":243.1453},{"x":51,"y":237.5159},{"x":52,"y":231.7849},{"x":53,"y":227.1036},{"x":54,"y":221.043},{"x":55,"y":216.2664},{"x":56,"y":213.7248},{"x":57,"y":211.1546},{"x":58,"y":207.5552},{"x":59,"y":205.0634},{"x":60,"y":202.3326},{"x":61,"y":199.7527},{"x":62,"y":198.0013},{"x":63,"y":195.9624},{"x":64,"y":193.3749},{"x":65,"y":191.5068},{"x":66,"y":190.5698},{"x":67,"y":188.8002},{"x":68,"y":184.6829},{"x":69,"y":180.51},{"x":70,"y":177.6765},{"x":71,"y":175.3894},{"x":72,"y":172.6601},{"x":73,"y":170.8123},{"x":74,"y":171.7776},{"x":75,"y":173.0175},{"x":76,"y":174.9289},{"x":77,"y":175.5956},{"x":78,"y":176.2603},{"x":79,"y":176.876},{"x":80,"y":176.2783},{"x":81,"y":174.1849},{"x":82,"y":171.6032},{"x":83,"y":169.6317},{"x":84,"y":166.8814},{"x":85,"y":164.6345},{"x":86,"y":162.8298},{"x":87,"y":162.009},{"x":88,"y":161.9841},{"x":89,"y":161.4138},{"x":90,"y":160.5861},{"x":91,"y":160.7514},{"x":92,"y":162.097},{"x":93,"y":163.2675},{"x":94,"y":163.5517},{"x":95,"y":163.2571},{"x":96,"y":162.1044},{"x":97,"y":158.4227},{"x":98,"y":154.081},{"x":99,"y":148.6046},{"x":100,"y":142.329}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area 4p","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 4p.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":647.8443},{"x":1,"y":764.921},{"x":2,"y":911.7294},{"x":3,"y":965.0076},{"x":4,"y":1030.6123},{"x":5,"y":1073.3067},{"x":6,"y":1101.0091},{"x":7,"y":1126.5066},{"x":8,"y":1136.7282},{"x":9,"y":1143.2325},{"x":10,"y":1143.1119},{"x":11,"y":1136.3096},{"x":12,"y":1127.7336},{"x":13,"y":1113.6974},{"x":14,"y":1103.9653},{"x":15,"y":1096.8742},{"x":16,"y":1089.088},{"x":17,"y":1078.5928},{"x":18,"y":1068.66},{"x":19,"y":1058.6944},{"x":20,"y":1043.0274},{"x":21,"y":1028.8727},{"x":22,"y":1013.0906},{"x":23,"y":997.4171},{"x":24,"y":979.6308},{"x":25,"y":968.4887},{"x":26,"y":956.8527},{"x":27,"y":943.2355},{"x":28,"y":929.8372},{"x":29,"y":913.0275},{"x":30,"y":900.7571},{"x":31,"y":885.3778},{"x":32,"y":868.7038},{"x":33,"y":853.8224},{"x":34,"y":840.2669},{"x":35,"y":831.2061},{"x":36,"y":824.5625},{"x":37,"y":817.738},{"x":38,"y":810.0107},{"x":39,"y":802.9903},{"x":40,"y":796.1557},{"x":41,"y":790.8052},{"x":42,"y":790.2412},{"x":43,"y":791.5338},{"x":44,"y":792.9265},{"x":45,"y":792.5888},{"x":46,"y":791.7291},{"x":47,"y":791.6414},{"x":48,"y":792.0469},{"x":49,"y":794.6018},{"x":50,"y":796.1359},{"x":51,"y":794.8847},{"x":52,"y":792.0887},{"x":53,"y":788.6834},{"x":54,"y":782.5741},{"x":55,"y":779.3821},{"x":56,"y":775.92},{"x":57,"y":774.225},{"x":58,"y":767.6827},{"x":59,"y":761.0554},{"x":60,"y":751.196},{"x":61,"y":737.5793},{"x":62,"y":725.6186},{"x":63,"y":720.3813},{"x":64,"y":719.8351},{"x":65,"y":720.8896},{"x":66,"y":717.9423},{"x":67,"y":712.9865},{"x":68,"y":708.1174},{"x":69,"y":706.658},{"x":70,"y":708.9637},{"x":71,"y":708.2627},{"x":72,"y":703.2908},{"x":73,"y":701.796},{"x":74,"y":703.9189},{"x":75,"y":708.9648},{"x":76,"y":716.4255},{"x":77,"y":724.1312},{"x":78,"y":732.6432},{"x":79,"y":739.5911},{"x":80,"y":744.9111},{"x":81,"y":750.717},{"x":82,"y":752.4934},{"x":83,"y":750.2768},{"x":84,"y":745.2086},{"x":85,"y":739.9001},{"x":86,"y":737.4896},{"x":87,"y":732.7},{"x":88,"y":726.2139},{"x":89,"y":720.4608},{"x":90,"y":716.4485},{"x":91,"y":714.3946},{"x":92,"y":711.1947},{"x":93,"y":706.17},{"x":94,"y":693.3673},{"x":95,"y":678.3776},{"x":96,"y":663.0551},{"x":97,"y":642.0024},{"x":98,"y":623.1513},{"x":99,"y":575.478},{"x":100,"y":543.276}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 3b",[{"name":"Receptor density fingerprint of Area 3b","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["162","180","147","541","352","623","601","121","63","283","20","91","291","90","97","31"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 3b (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(17,250,140,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area FG2",[{"name":"Receptor density fingerprint of Area FG2","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["427","490","1315","NA","1933","2329","2918","499","213","871","61","368","522","396","476","114"]},{"label":"mean_sd","data":["65","116","152","NA","292","237","422","72","35","172","12","57","118","74","97","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG2 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,209,56,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area FG2","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area FG2","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG2","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area FG2","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG2","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG2","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area FG2","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area FG2","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG2","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area FG2","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG2","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area FG2","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG2","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area FG2","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area FG2","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG2_bm_GABAB.jpg"}]],["Density measurements of different receptors for Area hOc1",[{"name":"Receptor density fingerprint of Area hOc1","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area hOc1.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area hOc1. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["500","260","1348","NA ","2508","2187","3882","661","390","524","48","264","347","192","408","102"]},{"label":"mean_sd","data":["223","239","320","NA","828","274","1761","123","35","395","14","59","120","145","198","37"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area hOc1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(250,30,250,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area hOc1","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area hOc1","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area hOc1","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area hOc1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area hOc1","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area hOc1","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area hOc1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area hOc1","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area hOc1","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area hOc1","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area hOc1","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FhOc1_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area hOc1","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area hOc1.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":2473.0437},{"x":1,"y":2709.9649},{"x":2,"y":2863.8033},{"x":3,"y":3020.3183},{"x":4,"y":3233.9841},{"x":5,"y":3468.3864},{"x":6,"y":3635.4238},{"x":7,"y":3809.6804},{"x":8,"y":3922.8191},{"x":9,"y":4019.787},{"x":10,"y":4145.7154},{"x":11,"y":4262.8654},{"x":12,"y":4359.3683},{"x":13,"y":4456.6648},{"x":14,"y":4547.5351},{"x":15,"y":4604.5476},{"x":16,"y":4656.1231},{"x":17,"y":4715.721},{"x":18,"y":4772.0907},{"x":19,"y":4824.9797},{"x":20,"y":4872.6302},{"x":21,"y":4899.9467},{"x":22,"y":4919.0758},{"x":23,"y":4943.3431},{"x":24,"y":4967.8908},{"x":25,"y":4992.6181},{"x":26,"y":5010.1393},{"x":27,"y":5022.2447},{"x":28,"y":5025.7343},{"x":29,"y":5018.2688},{"x":30,"y":4999.2744},{"x":31,"y":4980.2195},{"x":32,"y":4950.6731},{"x":33,"y":4911.5604},{"x":34,"y":4864.8777},{"x":35,"y":4814.1784},{"x":36,"y":4758.6408},{"x":37,"y":4700.4906},{"x":38,"y":4639.9174},{"x":39,"y":4574.9785},{"x":40,"y":4518.5558},{"x":41,"y":4445.2934},{"x":42,"y":4347.7528},{"x":43,"y":4266.0345},{"x":44,"y":4171.7632},{"x":45,"y":4066.8372},{"x":46,"y":3968.7016},{"x":47,"y":3893.0113},{"x":48,"y":3810.7725},{"x":49,"y":3722.9195},{"x":50,"y":3628.5303},{"x":51,"y":3522.0748},{"x":52,"y":3419.824},{"x":53,"y":3343.1842},{"x":54,"y":3284.7654},{"x":55,"y":3219.3612},{"x":56,"y":3160.9294},{"x":57,"y":3130.377},{"x":58,"y":3117.2719},{"x":59,"y":3124.664},{"x":60,"y":3149.251},{"x":61,"y":3181.78},{"x":62,"y":3245.5631},{"x":63,"y":3314.7894},{"x":64,"y":3404.5372},{"x":65,"y":3510.9699},{"x":66,"y":3600.425},{"x":67,"y":3682.2393},{"x":68,"y":3771.8579},{"x":69,"y":3851.3836},{"x":70,"y":3895.5587},{"x":71,"y":3909.6633},{"x":72,"y":3911.9156},{"x":73,"y":3885.9771},{"x":74,"y":3822.6901},{"x":75,"y":3726.9774},{"x":76,"y":3619.4826},{"x":77,"y":3509.3705},{"x":78,"y":3405.0033},{"x":79,"y":3311.1286},{"x":80,"y":3188.7399},{"x":81,"y":3074.0034},{"x":82,"y":2972.5357},{"x":83,"y":2888.1664},{"x":84,"y":2811.053},{"x":85,"y":2752.6464},{"x":86,"y":2708.332},{"x":87,"y":2647.6693},{"x":88,"y":2589.5925},{"x":89,"y":2538.7695},{"x":90,"y":2478.0323},{"x":91,"y":2402.2417},{"x":92,"y":2331.6322},{"x":93,"y":2242.612},{"x":94,"y":2123.8865},{"x":95,"y":2017.2915},{"x":96,"y":1867.9429},{"x":97,"y":1730.0878},{"x":98,"y":1630.6138},{"x":99,"y":1527.1209},{"x":100,"y":1383.8565}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area hOc1","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area hOc1.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":168.6749},{"x":1,"y":182.1696},{"x":2,"y":185.3947},{"x":3,"y":187.4005},{"x":4,"y":191.0936},{"x":5,"y":197.8342},{"x":6,"y":209.5895},{"x":7,"y":212.9179},{"x":8,"y":210.3358},{"x":9,"y":204.672},{"x":10,"y":198.3559},{"x":11,"y":192.2141},{"x":12,"y":184.6792},{"x":13,"y":176.5573},{"x":14,"y":167.6668},{"x":15,"y":155.016},{"x":16,"y":139.9113},{"x":17,"y":130.1627},{"x":18,"y":125.9382},{"x":19,"y":123.6029},{"x":20,"y":118.239},{"x":21,"y":113.5298},{"x":22,"y":110.5245},{"x":23,"y":108.3136},{"x":24,"y":102.8691},{"x":25,"y":101.3295},{"x":26,"y":102.7557},{"x":27,"y":101.7567},{"x":28,"y":99.6596},{"x":29,"y":96.9543},{"x":30,"y":93.9327},{"x":31,"y":91.7224},{"x":32,"y":88.1879},{"x":33,"y":85.0743},{"x":34,"y":83.9862},{"x":35,"y":83.5078},{"x":36,"y":83.7018},{"x":37,"y":85.1439},{"x":38,"y":85.7278},{"x":39,"y":86.1452},{"x":40,"y":84.2475},{"x":41,"y":82.1894},{"x":42,"y":78.456},{"x":43,"y":72.7331},{"x":44,"y":68.6578},{"x":45,"y":62.8413},{"x":46,"y":60.8788},{"x":47,"y":62.651},{"x":48,"y":64.8375},{"x":49,"y":64.6198},{"x":50,"y":62.7509},{"x":51,"y":61.7825},{"x":52,"y":57.3576},{"x":53,"y":56.1031},{"x":54,"y":56.3921},{"x":55,"y":58.7134},{"x":56,"y":60.9693},{"x":57,"y":62.4585},{"x":58,"y":59.0945},{"x":59,"y":53.9828},{"x":60,"y":50.213},{"x":61,"y":50.0645},{"x":62,"y":53.8254},{"x":63,"y":59.7737},{"x":64,"y":63.0181},{"x":65,"y":63.9535},{"x":66,"y":64.0462},{"x":67,"y":65.6225},{"x":68,"y":71.6348},{"x":69,"y":76.1939},{"x":70,"y":81.6869},{"x":71,"y":87.3107},{"x":72,"y":91.7488},{"x":73,"y":96.3965},{"x":74,"y":98.7351},{"x":75,"y":102.4217},{"x":76,"y":106.6856},{"x":77,"y":110.8446},{"x":78,"y":116.0606},{"x":79,"y":119.1487},{"x":80,"y":117.2004},{"x":81,"y":112.0626},{"x":82,"y":110.0738},{"x":83,"y":109.4078},{"x":84,"y":112.0437},{"x":85,"y":111.7614},{"x":86,"y":109.5021},{"x":87,"y":103.9489},{"x":88,"y":99.3451},{"x":89,"y":98.5225},{"x":90,"y":97.1939},{"x":91,"y":100.2859},{"x":92,"y":105.9594},{"x":93,"y":111.2528},{"x":94,"y":114.1552},{"x":95,"y":111.1529},{"x":96,"y":98.7504},{"x":97,"y":81.3371},{"x":98,"y":67.5288},{"x":99,"y":56.9752},{"x":100,"y":45.3638}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area hOc1.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":572.0054},{"x":1,"y":614.2075},{"x":2,"y":649.1235},{"x":3,"y":690.7202},{"x":4,"y":711.4168},{"x":5,"y":727.3087},{"x":6,"y":738.8004},{"x":7,"y":739.6577},{"x":8,"y":740.3816},{"x":9,"y":743.605},{"x":10,"y":746.1732},{"x":11,"y":747.2647},{"x":12,"y":745.3762},{"x":13,"y":747.7438},{"x":14,"y":744.0118},{"x":15,"y":732.7667},{"x":16,"y":724.1488},{"x":17,"y":718.3944},{"x":18,"y":709.9797},{"x":19,"y":716.7964},{"x":20,"y":731.8721},{"x":21,"y":739.0177},{"x":22,"y":739.8535},{"x":23,"y":737.4356},{"x":24,"y":732.0279},{"x":25,"y":726.0898},{"x":26,"y":721.8319},{"x":27,"y":713.8019},{"x":28,"y":702.042},{"x":29,"y":685.841},{"x":30,"y":665.4271},{"x":31,"y":653.5912},{"x":32,"y":649.2724},{"x":33,"y":644.9724},{"x":34,"y":650.6951},{"x":35,"y":650.6101},{"x":36,"y":651.3148},{"x":37,"y":652.7863},{"x":38,"y":650.4579},{"x":39,"y":648.0021},{"x":40,"y":647.8156},{"x":41,"y":650.941},{"x":42,"y":650.3177},{"x":43,"y":645.8745},{"x":44,"y":641.2981},{"x":45,"y":635.7545},{"x":46,"y":624.975},{"x":47,"y":624.4013},{"x":48,"y":617.0492},{"x":49,"y":608.5372},{"x":50,"y":605.8666},{"x":51,"y":615.2715},{"x":52,"y":627.1219},{"x":53,"y":635.482},{"x":54,"y":644.3173},{"x":55,"y":649.9436},{"x":56,"y":665.8279},{"x":57,"y":672.7705},{"x":58,"y":674.4},{"x":59,"y":680.3973},{"x":60,"y":681.5213},{"x":61,"y":681.2878},{"x":62,"y":682.9132},{"x":63,"y":683.3346},{"x":64,"y":675.0873},{"x":65,"y":657.7742},{"x":66,"y":633.5167},{"x":67,"y":619.555},{"x":68,"y":600.2568},{"x":69,"y":581.369},{"x":70,"y":566.3398},{"x":71,"y":552.2866},{"x":72,"y":537.1043},{"x":73,"y":520.475},{"x":74,"y":504.502},{"x":75,"y":490.7681},{"x":76,"y":476.7009},{"x":77,"y":463.6569},{"x":78,"y":453.9446},{"x":79,"y":450.2859},{"x":80,"y":451.9531},{"x":81,"y":460.6127},{"x":82,"y":476.086},{"x":83,"y":481.1458},{"x":84,"y":475.1103},{"x":85,"y":458.0221},{"x":86,"y":439.422},{"x":87,"y":420.8552},{"x":88,"y":406.0399},{"x":89,"y":397.0358},{"x":90,"y":406.0541},{"x":91,"y":423.9473},{"x":92,"y":440.2471},{"x":93,"y":450.8751},{"x":94,"y":447.9673},{"x":95,"y":431.8788},{"x":96,"y":417.122},{"x":97,"y":403.7767},{"x":98,"y":382.1547},{"x":99,"y":364.2236},{"x":100,"y":342.4615}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area hOc1","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area hOc1.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1052.5885},{"x":1,"y":1101.1443},{"x":2,"y":1153.1879},{"x":3,"y":1213.3273},{"x":4,"y":1273.632},{"x":5,"y":1333.742},{"x":6,"y":1385.7007},{"x":7,"y":1427.3979},{"x":8,"y":1472.1368},{"x":9,"y":1517.0938},{"x":10,"y":1553.9951},{"x":11,"y":1584.5964},{"x":12,"y":1604.8042},{"x":13,"y":1620.4829},{"x":14,"y":1636.4992},{"x":15,"y":1648.9745},{"x":16,"y":1660.725},{"x":17,"y":1670.5646},{"x":18,"y":1681.9283},{"x":19,"y":1685.7565},{"x":20,"y":1689.3959},{"x":21,"y":1687.323},{"x":22,"y":1685.2188},{"x":23,"y":1684.2764},{"x":24,"y":1692.8372},{"x":25,"y":1694.5134},{"x":26,"y":1692.2493},{"x":27,"y":1690.2391},{"x":28,"y":1690.9645},{"x":29,"y":1693.1758},{"x":30,"y":1679.6812},{"x":31,"y":1661.967},{"x":32,"y":1642.9101},{"x":33,"y":1610.6031},{"x":34,"y":1577.8663},{"x":35,"y":1536.8259},{"x":36,"y":1490.2543},{"x":37,"y":1441.318},{"x":38,"y":1401.5537},{"x":39,"y":1364.837},{"x":40,"y":1342.4044},{"x":41,"y":1318.6012},{"x":42,"y":1300.8426},{"x":43,"y":1288.5195},{"x":44,"y":1276.976},{"x":45,"y":1274.4948},{"x":46,"y":1286.5711},{"x":47,"y":1290.7743},{"x":48,"y":1289.5208},{"x":49,"y":1293.9939},{"x":50,"y":1294.2422},{"x":51,"y":1299.954},{"x":52,"y":1321.752},{"x":53,"y":1343.3275},{"x":54,"y":1372.7546},{"x":55,"y":1394.0418},{"x":56,"y":1425.4556},{"x":57,"y":1452.2623},{"x":58,"y":1475.6817},{"x":59,"y":1499.9404},{"x":60,"y":1513.4978},{"x":61,"y":1518.5183},{"x":62,"y":1529.7354},{"x":63,"y":1541.8937},{"x":64,"y":1540.2387},{"x":65,"y":1528.4263},{"x":66,"y":1506.9652},{"x":67,"y":1476.3935},{"x":68,"y":1428.1851},{"x":69,"y":1362.8467},{"x":70,"y":1298.3711},{"x":71,"y":1233.893},{"x":72,"y":1189.039},{"x":73,"y":1139.1874},{"x":74,"y":1098.413},{"x":75,"y":1047.3563},{"x":76,"y":1020.0548},{"x":77,"y":987.2062},{"x":78,"y":957.9883},{"x":79,"y":934.2743},{"x":80,"y":908.8416},{"x":81,"y":896.0374},{"x":82,"y":889.6003},{"x":83,"y":876.6913},{"x":84,"y":853.6658},{"x":85,"y":840.4487},{"x":86,"y":822.7237},{"x":87,"y":807.963},{"x":88,"y":795.9198},{"x":89,"y":775.4862},{"x":90,"y":754.5063},{"x":91,"y":741.7523},{"x":92,"y":718.9533},{"x":93,"y":701.1496},{"x":94,"y":685.4908},{"x":95,"y":660.0061},{"x":96,"y":634.1871},{"x":97,"y":602.2557},{"x":98,"y":579.7194},{"x":99,"y":558.718},{"x":100,"y":529.4428}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area hOc1","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":565.5327},{"x":1,"y":603.732},{"x":2,"y":657.7538},{"x":3,"y":714.4727},{"x":4,"y":771.9365},{"x":5,"y":819.6543},{"x":6,"y":867.7175},{"x":7,"y":896.3946},{"x":8,"y":913.7756},{"x":9,"y":951.6106},{"x":10,"y":991.8389},{"x":11,"y":1027.8739},{"x":12,"y":1054.4826},{"x":13,"y":1080.7762},{"x":14,"y":1105.0313},{"x":15,"y":1135.6738},{"x":16,"y":1165.7187},{"x":17,"y":1196.5823},{"x":18,"y":1216.0058},{"x":19,"y":1230.7155},{"x":20,"y":1252.3499},{"x":21,"y":1281.8855},{"x":22,"y":1304.6098},{"x":23,"y":1316.7398},{"x":24,"y":1326.0868},{"x":25,"y":1335.2385},{"x":26,"y":1343.1457},{"x":27,"y":1352.9938},{"x":28,"y":1361.8641},{"x":29,"y":1373.8431},{"x":30,"y":1380.7078},{"x":31,"y":1376.2216},{"x":32,"y":1373.659},{"x":33,"y":1370.9288},{"x":34,"y":1362.927},{"x":35,"y":1350.2114},{"x":36,"y":1342.8246},{"x":37,"y":1334.9764},{"x":38,"y":1317.2357},{"x":39,"y":1294.0315},{"x":40,"y":1277.1577},{"x":41,"y":1264.6251},{"x":42,"y":1244.698},{"x":43,"y":1211.2148},{"x":44,"y":1181.7519},{"x":45,"y":1157.1657},{"x":46,"y":1125.8638},{"x":47,"y":1102.6032},{"x":48,"y":1079.2901},{"x":49,"y":1042.8401},{"x":50,"y":1012.3251},{"x":51,"y":982.8416},{"x":52,"y":952.3972},{"x":53,"y":931.584},{"x":54,"y":913.6329},{"x":55,"y":892.8916},{"x":56,"y":879.4261},{"x":57,"y":876.1527},{"x":58,"y":872.8202},{"x":59,"y":860.8477},{"x":60,"y":862.2473},{"x":61,"y":863.4877},{"x":62,"y":860.7376},{"x":63,"y":863.6045},{"x":64,"y":866.3627},{"x":65,"y":869.9129},{"x":66,"y":876.2006},{"x":67,"y":882.1477},{"x":68,"y":890.1761},{"x":69,"y":900.7452},{"x":70,"y":910.7396},{"x":71,"y":919.7907},{"x":72,"y":928.5848},{"x":73,"y":942.6796},{"x":74,"y":953.8475},{"x":75,"y":965.6336},{"x":76,"y":977.4255},{"x":77,"y":992.9898},{"x":78,"y":1006.5748},{"x":79,"y":1014.3239},{"x":80,"y":1026.2165},{"x":81,"y":1037.2182},{"x":82,"y":1044.2283},{"x":83,"y":1042.6564},{"x":84,"y":1038.3188},{"x":85,"y":1027.9061},{"x":86,"y":1013.1014},{"x":87,"y":998.2893},{"x":88,"y":981.9831},{"x":89,"y":967.5264},{"x":90,"y":940.3067},{"x":91,"y":907.9457},{"x":92,"y":876.6847},{"x":93,"y":854.2001},{"x":94,"y":826.2766},{"x":95,"y":773.7516},{"x":96,"y":716.9934},{"x":97,"y":664.677},{"x":98,"y":620.8819},{"x":99,"y":577.8488},{"x":100,"y":544.7912}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":76.2683},{"x":1,"y":75.0167},{"x":2,"y":72.401},{"x":3,"y":68.6732},{"x":4,"y":65.4106},{"x":5,"y":62.2464},{"x":6,"y":58.66},{"x":7,"y":56.7985},{"x":8,"y":55.4758},{"x":9,"y":54.8986},{"x":10,"y":54.7289},{"x":11,"y":52.1096},{"x":12,"y":47.7716},{"x":13,"y":45.0727},{"x":14,"y":43.8235},{"x":15,"y":42.6596},{"x":16,"y":39.3104},{"x":17,"y":38.2129},{"x":18,"y":38.1269},{"x":19,"y":37.5034},{"x":20,"y":37.7552},{"x":21,"y":35.7274},{"x":22,"y":31.441},{"x":23,"y":27.0863},{"x":24,"y":22.9707},{"x":25,"y":19.3137},{"x":26,"y":17.0069},{"x":27,"y":17.7011},{"x":28,"y":20.7183},{"x":29,"y":21.6929},{"x":30,"y":21.8768},{"x":31,"y":22.9711},{"x":32,"y":25.6515},{"x":33,"y":27.2575},{"x":34,"y":27.7914},{"x":35,"y":27.1827},{"x":36,"y":26.2036},{"x":37,"y":25.8425},{"x":38,"y":25.5295},{"x":39,"y":24.9211},{"x":40,"y":26.0603},{"x":41,"y":28.3008},{"x":42,"y":28.9225},{"x":43,"y":29.8913},{"x":44,"y":31.3723},{"x":45,"y":31.8183},{"x":46,"y":31.4389},{"x":47,"y":31.73},{"x":48,"y":31.3142},{"x":49,"y":31.2948},{"x":50,"y":32.0832},{"x":51,"y":32.2978},{"x":52,"y":33.7697},{"x":53,"y":35.3707},{"x":54,"y":37.1318},{"x":55,"y":38.5971},{"x":56,"y":38.9624},{"x":57,"y":36.7528},{"x":58,"y":35.4657},{"x":59,"y":35.6939},{"x":60,"y":34.0771},{"x":61,"y":31.699},{"x":62,"y":30.5999},{"x":63,"y":30.4193},{"x":64,"y":31.6578},{"x":65,"y":37.2199},{"x":66,"y":41.7566},{"x":67,"y":45.7892},{"x":68,"y":49.1681},{"x":69,"y":51.6315},{"x":70,"y":53.3099},{"x":71,"y":51.8012},{"x":72,"y":48.6715},{"x":73,"y":45.9925},{"x":74,"y":44.5297},{"x":75,"y":42.6407},{"x":76,"y":42.1098},{"x":77,"y":41.197},{"x":78,"y":38.6238},{"x":79,"y":36.1996},{"x":80,"y":34.8974},{"x":81,"y":34.7944},{"x":82,"y":34.4504},{"x":83,"y":33.6926},{"x":84,"y":32.3961},{"x":85,"y":32.8857},{"x":86,"y":33.3565},{"x":87,"y":34.7668},{"x":88,"y":39.2503},{"x":89,"y":43.0034},{"x":90,"y":44.4437},{"x":91,"y":45.7973},{"x":92,"y":47.0563},{"x":93,"y":48.2226},{"x":94,"y":48.0095},{"x":95,"y":45.6135},{"x":96,"y":43.2989},{"x":97,"y":42.1107},{"x":98,"y":40.2421},{"x":99,"y":38.7997},{"x":100,"y":36.9082}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area hOc1","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area hOc1.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":441.085},{"x":1,"y":453.4159},{"x":2,"y":464.3631},{"x":3,"y":471.2128},{"x":4,"y":476.2852},{"x":5,"y":483.4172},{"x":6,"y":494.5519},{"x":7,"y":503.1657},{"x":8,"y":511.3589},{"x":9,"y":517.8983},{"x":10,"y":521.7943},{"x":11,"y":525.6308},{"x":12,"y":528.1456},{"x":13,"y":528.6413},{"x":14,"y":528.7076},{"x":15,"y":527.3279},{"x":16,"y":525.7541},{"x":17,"y":525.8783},{"x":18,"y":526.8102},{"x":19,"y":525.2279},{"x":20,"y":522.1177},{"x":21,"y":521.1822},{"x":22,"y":518.7488},{"x":23,"y":516.2637},{"x":24,"y":514.3933},{"x":25,"y":511.2544},{"x":26,"y":508.4808},{"x":27,"y":507.0339},{"x":28,"y":505.6586},{"x":29,"y":503.0545},{"x":30,"y":498.4712},{"x":31,"y":496.9603},{"x":32,"y":494.469},{"x":33,"y":489.0884},{"x":34,"y":483.9921},{"x":35,"y":476.7346},{"x":36,"y":469.3484},{"x":37,"y":464.8594},{"x":38,"y":459.4245},{"x":39,"y":450.1533},{"x":40,"y":437.2998},{"x":41,"y":423.1184},{"x":42,"y":410.2341},{"x":43,"y":396.3509},{"x":44,"y":381.9339},{"x":45,"y":371.2945},{"x":46,"y":365.5805},{"x":47,"y":355.5038},{"x":48,"y":341.7607},{"x":49,"y":328.7836},{"x":50,"y":315.8527},{"x":51,"y":305.7668},{"x":52,"y":296.629},{"x":53,"y":288.6043},{"x":54,"y":284.6497},{"x":55,"y":283.4328},{"x":56,"y":281.6549},{"x":57,"y":278.3931},{"x":58,"y":277.779},{"x":59,"y":279.7791},{"x":60,"y":283.8625},{"x":61,"y":288.4781},{"x":62,"y":291.6397},{"x":63,"y":293.0356},{"x":64,"y":295.34},{"x":65,"y":300.0218},{"x":66,"y":304.016},{"x":67,"y":306.3743},{"x":68,"y":309.2145},{"x":69,"y":313.4108},{"x":70,"y":316.5417},{"x":71,"y":320.9665},{"x":72,"y":323.6716},{"x":73,"y":325.5495},{"x":74,"y":327.8367},{"x":75,"y":329.5919},{"x":76,"y":332.1727},{"x":77,"y":336.1006},{"x":78,"y":341.3651},{"x":79,"y":344.5652},{"x":80,"y":345.9074},{"x":81,"y":346.5085},{"x":82,"y":346.2388},{"x":83,"y":346.2171},{"x":84,"y":344.782},{"x":85,"y":340.1649},{"x":86,"y":334.1118},{"x":87,"y":328.4941},{"x":88,"y":326.0946},{"x":89,"y":323.1798},{"x":90,"y":318.4895},{"x":91,"y":311.8383},{"x":92,"y":304.786},{"x":93,"y":296.6544},{"x":94,"y":288.1467},{"x":95,"y":278.0743},{"x":96,"y":270.0905},{"x":97,"y":264.1711},{"x":98,"y":255.5504},{"x":99,"y":240.4933},{"x":100,"y":223.9617}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area hOc1","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":277.0141},{"x":1,"y":293.8962},{"x":2,"y":311.1592},{"x":3,"y":326.4593},{"x":4,"y":346.5845},{"x":5,"y":369.2813},{"x":6,"y":382.2811},{"x":7,"y":394.0113},{"x":8,"y":400.4228},{"x":9,"y":403.8859},{"x":10,"y":410.9967},{"x":11,"y":412.9813},{"x":12,"y":412.7875},{"x":13,"y":412.2535},{"x":14,"y":412.1029},{"x":15,"y":409.3777},{"x":16,"y":402.7065},{"x":17,"y":394.2997},{"x":18,"y":382.7924},{"x":19,"y":369.8792},{"x":20,"y":354.0808},{"x":21,"y":341.8975},{"x":22,"y":331.0868},{"x":23,"y":318.3883},{"x":24,"y":301.0037},{"x":25,"y":281.3906},{"x":26,"y":259.2463},{"x":27,"y":238.5027},{"x":28,"y":223.1992},{"x":29,"y":208.9446},{"x":30,"y":196.0971},{"x":31,"y":180.5171},{"x":32,"y":166.1122},{"x":33,"y":157.3355},{"x":34,"y":151.5574},{"x":35,"y":142.8464},{"x":36,"y":134.7217},{"x":37,"y":128.6889},{"x":38,"y":124.3928},{"x":39,"y":120.3172},{"x":40,"y":116.1346},{"x":41,"y":111.29},{"x":42,"y":108.477},{"x":43,"y":107.1111},{"x":44,"y":104.8382},{"x":45,"y":101.7875},{"x":46,"y":99.0924},{"x":47,"y":97.3351},{"x":48,"y":93.1004},{"x":49,"y":91.1935},{"x":50,"y":88.2579},{"x":51,"y":85.0275},{"x":52,"y":83.6336},{"x":53,"y":82.4392},{"x":54,"y":81.4082},{"x":55,"y":80.0332},{"x":56,"y":79.994},{"x":57,"y":79.63},{"x":58,"y":80.3098},{"x":59,"y":81.5769},{"x":60,"y":81.1647},{"x":61,"y":80.9678},{"x":62,"y":82.7681},{"x":63,"y":82.2918},{"x":64,"y":80.0518},{"x":65,"y":78.6589},{"x":66,"y":79.7955},{"x":67,"y":79.4244},{"x":68,"y":79.3766},{"x":69,"y":79.737},{"x":70,"y":77.8016},{"x":71,"y":78.0166},{"x":72,"y":79.6687},{"x":73,"y":79.755},{"x":74,"y":79.1304},{"x":75,"y":79.4092},{"x":76,"y":81.7275},{"x":77,"y":85.3492},{"x":78,"y":86.9633},{"x":79,"y":89.0619},{"x":80,"y":90.2202},{"x":81,"y":90.9334},{"x":82,"y":93.4774},{"x":83,"y":96.3332},{"x":84,"y":96.625},{"x":85,"y":97.2223},{"x":86,"y":98.333},{"x":87,"y":98.3652},{"x":88,"y":98.6111},{"x":89,"y":98.1908},{"x":90,"y":98.6281},{"x":91,"y":97.1698},{"x":92,"y":95.6972},{"x":93,"y":93.6332},{"x":94,"y":90.3818},{"x":95,"y":87.8648},{"x":96,"y":82.8942},{"x":97,"y":79.1579},{"x":98,"y":77.5917},{"x":99,"y":75.3425},{"x":100,"y":71.4874}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area hOc1","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area hOc1.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":111.7024},{"x":1,"y":120.7676},{"x":2,"y":124.713},{"x":3,"y":128.666},{"x":4,"y":133.3706},{"x":5,"y":138.896},{"x":6,"y":146.7855},{"x":7,"y":152.7374},{"x":8,"y":159.7736},{"x":9,"y":166.8849},{"x":10,"y":169.8943},{"x":11,"y":170.3749},{"x":12,"y":168.1731},{"x":13,"y":167.2757},{"x":14,"y":170.4316},{"x":15,"y":172.5422},{"x":16,"y":178.5668},{"x":17,"y":186.3632},{"x":18,"y":190.8588},{"x":19,"y":193.3013},{"x":20,"y":194.0643},{"x":21,"y":197.1141},{"x":22,"y":203.1535},{"x":23,"y":212.6348},{"x":24,"y":216.715},{"x":25,"y":214.0611},{"x":26,"y":209.2847},{"x":27,"y":202.3903},{"x":28,"y":200.1492},{"x":29,"y":206.1437},{"x":30,"y":214.2428},{"x":31,"y":221.7666},{"x":32,"y":225.5812},{"x":33,"y":222.7095},{"x":34,"y":218.3648},{"x":35,"y":210.9264},{"x":36,"y":206.6764},{"x":37,"y":205.0837},{"x":38,"y":201.9195},{"x":39,"y":197.1396},{"x":40,"y":186.0637},{"x":41,"y":176.2788},{"x":42,"y":167.1833},{"x":43,"y":162.1711},{"x":44,"y":160.3854},{"x":45,"y":160.8925},{"x":46,"y":166.0948},{"x":47,"y":169.1525},{"x":48,"y":171.3924},{"x":49,"y":175.9716},{"x":50,"y":178.3272},{"x":51,"y":178.3115},{"x":52,"y":173.934},{"x":53,"y":168.2591},{"x":54,"y":159.7846},{"x":55,"y":156.036},{"x":56,"y":155.0899},{"x":57,"y":161.3088},{"x":58,"y":170.2551},{"x":59,"y":178.6887},{"x":60,"y":185.8098},{"x":61,"y":190.9348},{"x":62,"y":195.1153},{"x":63,"y":197.8296},{"x":64,"y":199.6482},{"x":65,"y":201.0436},{"x":66,"y":198.4942},{"x":67,"y":189.6844},{"x":68,"y":179.744},{"x":69,"y":168.5765},{"x":70,"y":161.2516},{"x":71,"y":158.3052},{"x":72,"y":161.4},{"x":73,"y":170.7534},{"x":74,"y":183.4262},{"x":75,"y":191.2723},{"x":76,"y":200.1538},{"x":77,"y":206.8902},{"x":78,"y":210.5596},{"x":79,"y":211.2033},{"x":80,"y":211.3832},{"x":81,"y":210.9054},{"x":82,"y":209.4243},{"x":83,"y":205.4435},{"x":84,"y":201.1329},{"x":85,"y":197.5022},{"x":86,"y":194.4099},{"x":87,"y":189.4452},{"x":88,"y":182.6296},{"x":89,"y":177.4467},{"x":90,"y":177.2075},{"x":91,"y":179.9399},{"x":92,"y":185.1795},{"x":93,"y":189.6287},{"x":94,"y":191.4508},{"x":95,"y":188.6204},{"x":96,"y":179.9949},{"x":97,"y":168.4251},{"x":98,"y":151.9648},{"x":99,"y":136.9735},{"x":100,"y":112.6901}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area hOc1.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":296.5185},{"x":1,"y":310.0072},{"x":2,"y":323.6652},{"x":3,"y":341.0282},{"x":4,"y":349.2329},{"x":5,"y":356.5307},{"x":6,"y":357.9476},{"x":7,"y":352.3415},{"x":8,"y":344.777},{"x":9,"y":338.6273},{"x":10,"y":334.1112},{"x":11,"y":332.0932},{"x":12,"y":331.5188},{"x":13,"y":328.8927},{"x":14,"y":328.0489},{"x":15,"y":323.2791},{"x":16,"y":316.9786},{"x":17,"y":310.6167},{"x":18,"y":303.2973},{"x":19,"y":298.0369},{"x":20,"y":295.6883},{"x":21,"y":293.3655},{"x":22,"y":289.7928},{"x":23,"y":288.8423},{"x":24,"y":285.8074},{"x":25,"y":278.3854},{"x":26,"y":275.6608},{"x":27,"y":268.4886},{"x":28,"y":260.6856},{"x":29,"y":253.0161},{"x":30,"y":249.18},{"x":31,"y":245.06},{"x":32,"y":243.1107},{"x":33,"y":241.5847},{"x":34,"y":233.3878},{"x":35,"y":225.3179},{"x":36,"y":217.5141},{"x":37,"y":205.2174},{"x":38,"y":198.9368},{"x":39,"y":195.3924},{"x":40,"y":188.3596},{"x":41,"y":182.7604},{"x":42,"y":177.7724},{"x":43,"y":167.8532},{"x":44,"y":165.2347},{"x":45,"y":161.148},{"x":46,"y":156.3672},{"x":47,"y":154.1189},{"x":48,"y":153.6221},{"x":49,"y":149.8172},{"x":50,"y":147.2099},{"x":51,"y":144.5575},{"x":52,"y":144.755},{"x":53,"y":142.919},{"x":54,"y":145.3835},{"x":55,"y":147.7908},{"x":56,"y":146.9777},{"x":57,"y":146.862},{"x":58,"y":149.7686},{"x":59,"y":153.0596},{"x":60,"y":155.5628},{"x":61,"y":160.2682},{"x":62,"y":166.7621},{"x":63,"y":175.6181},{"x":64,"y":177.1999},{"x":65,"y":177.6232},{"x":66,"y":177.3875},{"x":67,"y":181.1511},{"x":68,"y":180.7511},{"x":69,"y":178.4602},{"x":70,"y":179.1944},{"x":71,"y":181.6564},{"x":72,"y":187.3608},{"x":73,"y":192.4361},{"x":74,"y":197.441},{"x":75,"y":204.5389},{"x":76,"y":211.8954},{"x":77,"y":219.3225},{"x":78,"y":221.5775},{"x":79,"y":226.2557},{"x":80,"y":227.5431},{"x":81,"y":226.7665},{"x":82,"y":229.3286},{"x":83,"y":229.5464},{"x":84,"y":233.8443},{"x":85,"y":234.6858},{"x":86,"y":240.5448},{"x":87,"y":247.6617},{"x":88,"y":252.0637},{"x":89,"y":257.513},{"x":90,"y":261.6658},{"x":91,"y":259.2819},{"x":92,"y":254.2516},{"x":93,"y":249.9736},{"x":94,"y":243.1471},{"x":95,"y":231.5393},{"x":96,"y":225.1279},{"x":97,"y":216.5944},{"x":98,"y":209.4079},{"x":99,"y":206.6908},{"x":100,"y":201.3045}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area hOc1","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area hOc1.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":207.7441},{"x":1,"y":215.511},{"x":2,"y":226.0892},{"x":3,"y":235.031},{"x":4,"y":238.9458},{"x":5,"y":241.4951},{"x":6,"y":245.7857},{"x":7,"y":252.3796},{"x":8,"y":254.8791},{"x":9,"y":259.0769},{"x":10,"y":264.0641},{"x":11,"y":268.4594},{"x":12,"y":273.8793},{"x":13,"y":279.9837},{"x":14,"y":282.8553},{"x":15,"y":284.6941},{"x":16,"y":289.7838},{"x":17,"y":293.2425},{"x":18,"y":293.798},{"x":19,"y":291.4762},{"x":20,"y":285.3904},{"x":21,"y":283.266},{"x":22,"y":281.3792},{"x":23,"y":278.3961},{"x":24,"y":277.8827},{"x":25,"y":276.6527},{"x":26,"y":271.455},{"x":27,"y":268.8769},{"x":28,"y":265.5565},{"x":29,"y":261.3125},{"x":30,"y":257.7901},{"x":31,"y":255.3523},{"x":32,"y":252.8395},{"x":33,"y":250.7056},{"x":34,"y":249.2335},{"x":35,"y":249.1512},{"x":36,"y":248.2857},{"x":37,"y":247.0389},{"x":38,"y":247.9175},{"x":39,"y":248.2511},{"x":40,"y":248.9341},{"x":41,"y":249.4854},{"x":42,"y":249.5802},{"x":43,"y":249.6495},{"x":44,"y":247.9311},{"x":45,"y":246.6846},{"x":46,"y":244.8176},{"x":47,"y":242.3142},{"x":48,"y":240.3888},{"x":49,"y":237.3486},{"x":50,"y":234.6358},{"x":51,"y":230.491},{"x":52,"y":226.5043},{"x":53,"y":222.2163},{"x":54,"y":219.9779},{"x":55,"y":215.9688},{"x":56,"y":214.1612},{"x":57,"y":212.1285},{"x":58,"y":211.9612},{"x":59,"y":212.3389},{"x":60,"y":211.5356},{"x":61,"y":212.6048},{"x":62,"y":216.3678},{"x":63,"y":221.0559},{"x":64,"y":223.8181},{"x":65,"y":226.5403},{"x":66,"y":227.4622},{"x":67,"y":227.9431},{"x":68,"y":230.2788},{"x":69,"y":233.2172},{"x":70,"y":237.4031},{"x":71,"y":239.3619},{"x":72,"y":241.897},{"x":73,"y":246.6127},{"x":74,"y":253.0889},{"x":75,"y":258.2004},{"x":76,"y":261.0606},{"x":77,"y":264.0636},{"x":78,"y":268.5683},{"x":79,"y":274.3705},{"x":80,"y":277.8342},{"x":81,"y":285.054},{"x":82,"y":290.7287},{"x":83,"y":292.6989},{"x":84,"y":292.3012},{"x":85,"y":290.8193},{"x":86,"y":289.8784},{"x":87,"y":292.4998},{"x":88,"y":297.0705},{"x":89,"y":298.7731},{"x":90,"y":299.3802},{"x":91,"y":299.2742},{"x":92,"y":298.5046},{"x":93,"y":300.3571},{"x":94,"y":299.3348},{"x":95,"y":295.7797},{"x":96,"y":290.9805},{"x":97,"y":282.4275},{"x":98,"y":266.5104},{"x":99,"y":253.4289},{"x":100,"y":243.1836}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area hOc1.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":747.2266},{"x":1,"y":865.6087},{"x":2,"y":946.5255},{"x":3,"y":998.8131},{"x":4,"y":1041.1623},{"x":5,"y":1082.1014},{"x":6,"y":1113.3147},{"x":7,"y":1136.6045},{"x":8,"y":1152.5531},{"x":9,"y":1156.4684},{"x":10,"y":1161.711},{"x":11,"y":1164.093},{"x":12,"y":1163.7677},{"x":13,"y":1165.4596},{"x":14,"y":1167.5281},{"x":15,"y":1164.0925},{"x":16,"y":1159.3774},{"x":17,"y":1160.1835},{"x":18,"y":1164.7982},{"x":19,"y":1163.8683},{"x":20,"y":1155.6704},{"x":21,"y":1145.5185},{"x":22,"y":1140.9926},{"x":23,"y":1140.6158},{"x":24,"y":1141.4056},{"x":25,"y":1139.1365},{"x":26,"y":1134.0535},{"x":27,"y":1130.0171},{"x":28,"y":1117.8305},{"x":29,"y":1103.4632},{"x":30,"y":1078.4865},{"x":31,"y":1054.6395},{"x":32,"y":1036.7652},{"x":33,"y":1027.3206},{"x":34,"y":1013.9538},{"x":35,"y":994.1636},{"x":36,"y":973.5138},{"x":37,"y":947.6866},{"x":38,"y":904.1716},{"x":39,"y":844.7921},{"x":40,"y":773.3199},{"x":41,"y":706.9926},{"x":42,"y":652.7577},{"x":43,"y":616.1192},{"x":44,"y":588.1246},{"x":45,"y":562.5917},{"x":46,"y":543.9291},{"x":47,"y":532.2594},{"x":48,"y":527.498},{"x":49,"y":524.0085},{"x":50,"y":523.3199},{"x":51,"y":526.589},{"x":52,"y":536.6216},{"x":53,"y":551.9353},{"x":54,"y":576.6846},{"x":55,"y":607.8316},{"x":56,"y":638.6868},{"x":57,"y":661.2896},{"x":58,"y":678.8031},{"x":59,"y":689.3389},{"x":60,"y":695.9724},{"x":61,"y":693.1446},{"x":62,"y":681.0257},{"x":63,"y":663.0234},{"x":64,"y":648.1835},{"x":65,"y":636.9734},{"x":66,"y":628.1691},{"x":67,"y":632.0165},{"x":68,"y":645.8549},{"x":69,"y":683.0799},{"x":70,"y":735.4547},{"x":71,"y":784.1169},{"x":72,"y":816.0836},{"x":73,"y":831.1279},{"x":74,"y":824.7145},{"x":75,"y":813.242},{"x":76,"y":794.0377},{"x":77,"y":770.6568},{"x":78,"y":752.071},{"x":79,"y":731.3164},{"x":80,"y":709.231},{"x":81,"y":693.622},{"x":82,"y":678.3714},{"x":83,"y":670.9507},{"x":84,"y":672.3956},{"x":85,"y":674.3531},{"x":86,"y":680.4494},{"x":87,"y":681.3667},{"x":88,"y":681.4286},{"x":89,"y":673.1429},{"x":90,"y":660.9871},{"x":91,"y":649.7518},{"x":92,"y":637.4919},{"x":93,"y":629.1207},{"x":94,"y":618.5734},{"x":95,"y":589.9535},{"x":96,"y":548.6126},{"x":97,"y":511.9469},{"x":98,"y":472.9624},{"x":99,"y":433.5808},{"x":100,"y":387.2545}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area hOc1.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1996.4791},{"x":1,"y":1991.9309},{"x":2,"y":1991.5574},{"x":3,"y":1992.9584},{"x":4,"y":1989.7499},{"x":5,"y":1979.245},{"x":6,"y":1952.4576},{"x":7,"y":1928.766},{"x":8,"y":1899.0324},{"x":9,"y":1865.01},{"x":10,"y":1828.0118},{"x":11,"y":1791.4461},{"x":12,"y":1756.2043},{"x":13,"y":1721.0255},{"x":14,"y":1691.8148},{"x":15,"y":1658.0648},{"x":16,"y":1618.3138},{"x":17,"y":1573.6074},{"x":18,"y":1532.8729},{"x":19,"y":1509.9391},{"x":20,"y":1490.2826},{"x":21,"y":1474.6163},{"x":22,"y":1465.5071},{"x":23,"y":1455.6628},{"x":24,"y":1431.5574},{"x":25,"y":1395.7647},{"x":26,"y":1369.1576},{"x":27,"y":1342.4632},{"x":28,"y":1312.4197},{"x":29,"y":1298.4521},{"x":30,"y":1291.8523},{"x":31,"y":1279.4106},{"x":32,"y":1266.165},{"x":33,"y":1250.7491},{"x":34,"y":1228.2233},{"x":35,"y":1201.9093},{"x":36,"y":1177.4919},{"x":37,"y":1153.0602},{"x":38,"y":1124.7354},{"x":39,"y":1100.6607},{"x":40,"y":1080.107},{"x":41,"y":1051.4967},{"x":42,"y":1025.2485},{"x":43,"y":1013.5788},{"x":44,"y":995.9743},{"x":45,"y":978.1474},{"x":46,"y":976.2809},{"x":47,"y":965.7277},{"x":48,"y":945.6575},{"x":49,"y":929.7303},{"x":50,"y":923.0048},{"x":51,"y":902.8096},{"x":52,"y":879.9849},{"x":53,"y":858.0834},{"x":54,"y":841.089},{"x":55,"y":837.0503},{"x":56,"y":836.3678},{"x":57,"y":845.7571},{"x":58,"y":858.0552},{"x":59,"y":858.9432},{"x":60,"y":861.4869},{"x":61,"y":862.8272},{"x":62,"y":869.6961},{"x":63,"y":873.5004},{"x":64,"y":882.8428},{"x":65,"y":901.0304},{"x":66,"y":941.8052},{"x":67,"y":975.8809},{"x":68,"y":1009.0027},{"x":69,"y":1042.7596},{"x":70,"y":1085.387},{"x":71,"y":1117.7279},{"x":72,"y":1152.289},{"x":73,"y":1191.0298},{"x":74,"y":1224.914},{"x":75,"y":1256.1998},{"x":76,"y":1288.5968},{"x":77,"y":1315.6137},{"x":78,"y":1332.3173},{"x":79,"y":1341.2356},{"x":80,"y":1336.4158},{"x":81,"y":1336.1764},{"x":82,"y":1328.0444},{"x":83,"y":1315.1316},{"x":84,"y":1293.852},{"x":85,"y":1270.8022},{"x":86,"y":1261.7084},{"x":87,"y":1253.1999},{"x":88,"y":1241.4214},{"x":89,"y":1236.8467},{"x":90,"y":1229.6931},{"x":91,"y":1216.0618},{"x":92,"y":1191.2109},{"x":93,"y":1164.7855},{"x":94,"y":1130.8177},{"x":95,"y":1089.9143},{"x":96,"y":1043.555},{"x":97,"y":992.5167},{"x":98,"y":938.9935},{"x":99,"y":890.8645},{"x":100,"y":847.4022}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area hOc1","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":331.8035},{"x":1,"y":341.8175},{"x":2,"y":351.839},{"x":3,"y":361.9529},{"x":4,"y":372.8824},{"x":5,"y":384.1077},{"x":6,"y":393.6793},{"x":7,"y":398.3036},{"x":8,"y":401.2285},{"x":9,"y":402.6239},{"x":10,"y":403.1382},{"x":11,"y":403.5769},{"x":12,"y":404.2446},{"x":13,"y":404.5654},{"x":14,"y":404.309},{"x":15,"y":403.9007},{"x":16,"y":403.2127},{"x":17,"y":402.5041},{"x":18,"y":402.3908},{"x":19,"y":402.158},{"x":20,"y":401.2335},{"x":21,"y":399.807},{"x":22,"y":398.6523},{"x":23,"y":398.859},{"x":24,"y":401.93},{"x":25,"y":405.4041},{"x":26,"y":408.2006},{"x":27,"y":410.4632},{"x":28,"y":413.0316},{"x":29,"y":417.2912},{"x":30,"y":422.7087},{"x":31,"y":428.1427},{"x":32,"y":432.0671},{"x":33,"y":434.7887},{"x":34,"y":437.5058},{"x":35,"y":437.952},{"x":36,"y":438.2973},{"x":37,"y":438.9784},{"x":38,"y":441.1463},{"x":39,"y":443.2481},{"x":40,"y":444.6074},{"x":41,"y":443.973},{"x":42,"y":443.295},{"x":43,"y":442.7157},{"x":44,"y":441.9489},{"x":45,"y":440.7082},{"x":46,"y":439.0657},{"x":47,"y":437.3753},{"x":48,"y":435.3961},{"x":49,"y":433.5371},{"x":50,"y":431.7816},{"x":51,"y":430.3912},{"x":52,"y":429.2515},{"x":53,"y":428.2003},{"x":54,"y":426.5748},{"x":55,"y":425.349},{"x":56,"y":424.6872},{"x":57,"y":424.8024},{"x":58,"y":425.3623},{"x":59,"y":426.5301},{"x":60,"y":428.491},{"x":61,"y":430.8133},{"x":62,"y":433.1227},{"x":63,"y":434.5956},{"x":64,"y":435.1387},{"x":65,"y":435.9223},{"x":66,"y":437.5266},{"x":67,"y":438.9172},{"x":68,"y":439.8167},{"x":69,"y":439.6906},{"x":70,"y":438.5755},{"x":71,"y":437.6683},{"x":72,"y":435.9918},{"x":73,"y":433.0423},{"x":74,"y":429.5751},{"x":75,"y":424.4398},{"x":76,"y":418.0263},{"x":77,"y":411.0302},{"x":78,"y":404.3113},{"x":79,"y":398.0299},{"x":80,"y":391.7155},{"x":81,"y":386.2348},{"x":82,"y":380.4688},{"x":83,"y":373.7935},{"x":84,"y":365.6567},{"x":85,"y":356.9932},{"x":86,"y":348.8486},{"x":87,"y":342.0671},{"x":88,"y":335.9903},{"x":89,"y":329.1074},{"x":90,"y":321.5039},{"x":91,"y":314.0194},{"x":92,"y":308.2192},{"x":93,"y":303.7542},{"x":94,"y":298.8987},{"x":95,"y":293.8996},{"x":96,"y":289.5817},{"x":97,"y":285.4463},{"x":98,"y":281.4969},{"x":99,"y":277.2663},{"x":100,"y":273.0395}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area hOc1","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area hOc1.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1950.3144},{"x":1,"y":2100.9605},{"x":2,"y":2203.5831},{"x":3,"y":2292.5689},{"x":4,"y":2374.8703},{"x":5,"y":2468.2905},{"x":6,"y":2533.873},{"x":7,"y":2562.5636},{"x":8,"y":2577.8818},{"x":9,"y":2584.4019},{"x":10,"y":2574.9019},{"x":11,"y":2548.707},{"x":12,"y":2528.7062},{"x":13,"y":2517.7172},{"x":14,"y":2514.4521},{"x":15,"y":2515.2127},{"x":16,"y":2526.5504},{"x":17,"y":2521.6832},{"x":18,"y":2514.001},{"x":19,"y":2508.318},{"x":20,"y":2503.7046},{"x":21,"y":2495.8885},{"x":22,"y":2489.0215},{"x":23,"y":2472.4367},{"x":24,"y":2453.2604},{"x":25,"y":2436.9792},{"x":26,"y":2426.0322},{"x":27,"y":2401.5488},{"x":28,"y":2367.3584},{"x":29,"y":2347.5592},{"x":30,"y":2345.3507},{"x":31,"y":2350.1742},{"x":32,"y":2364.6761},{"x":33,"y":2377.745},{"x":34,"y":2388.1031},{"x":35,"y":2392.8357},{"x":36,"y":2381.181},{"x":37,"y":2358.0164},{"x":38,"y":2338.2177},{"x":39,"y":2286.6437},{"x":40,"y":2215.0929},{"x":41,"y":2144.7276},{"x":42,"y":2055.18},{"x":43,"y":1975.3623},{"x":44,"y":1904.9242},{"x":45,"y":1863.8506},{"x":46,"y":1826.266},{"x":47,"y":1768.0006},{"x":48,"y":1703.9164},{"x":49,"y":1597.3341},{"x":50,"y":1487.9582},{"x":51,"y":1343.9926},{"x":52,"y":1223.3642},{"x":53,"y":1150.7738},{"x":54,"y":1064.9452},{"x":55,"y":1007.5237},{"x":56,"y":972.607},{"x":57,"y":964.5922},{"x":58,"y":970.2298},{"x":59,"y":974.8202},{"x":60,"y":973.0334},{"x":61,"y":970.4423},{"x":62,"y":974.261},{"x":63,"y":990.6322},{"x":64,"y":1010.2082},{"x":65,"y":1032.1683},{"x":66,"y":1057.9906},{"x":67,"y":1083.1967},{"x":68,"y":1107.8037},{"x":69,"y":1136.2589},{"x":70,"y":1170.6473},{"x":71,"y":1199.4241},{"x":72,"y":1226.9452},{"x":73,"y":1257.318},{"x":74,"y":1284.8221},{"x":75,"y":1314.6337},{"x":76,"y":1341.7336},{"x":77,"y":1373.7874},{"x":78,"y":1399.0182},{"x":79,"y":1408.6722},{"x":80,"y":1414.7962},{"x":81,"y":1422.997},{"x":82,"y":1424.5432},{"x":83,"y":1440.6695},{"x":84,"y":1482.6868},{"x":85,"y":1546.4933},{"x":86,"y":1599.4021},{"x":87,"y":1633.8173},{"x":88,"y":1645.4206},{"x":89,"y":1646.9337},{"x":90,"y":1633.9153},{"x":91,"y":1609.1376},{"x":92,"y":1575.6959},{"x":93,"y":1549.9751},{"x":94,"y":1529.5448},{"x":95,"y":1504.3475},{"x":96,"y":1465.7426},{"x":97,"y":1428.6712},{"x":98,"y":1390.4424},{"x":99,"y":1350.4479},{"x":100,"y":1318.5866}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PFm",[{"name":"Receptor density fingerprint of Area PFm","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area PFm.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area PFm. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["513","532","1244","NA","1649","1881","3407","733","187","720","33","321","159","488","368","77"]},{"label":"mean_sd","data":["134","373","311","NA","229","914","1481","73","36","139","16","106","73","194","155","36"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(238,238,14,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area PFm","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area PFm","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area PFm","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area PFm","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area PFm","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area PFm","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area PFm","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area PFm","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area PFm","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area PFm","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area PFm","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area PFm","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FPFm_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area PFm","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area PFm.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area PFm"],"datasets":[{"data":[{"x":0,"y":414.6775},{"x":1,"y":547.3832},{"x":2,"y":750.3479},{"x":3,"y":1025.2073},{"x":4,"y":1272.8043},{"x":5,"y":1502.9083},{"x":6,"y":1809.6361},{"x":7,"y":2074.466},{"x":8,"y":2267.3889},{"x":9,"y":2466.4042},{"x":10,"y":2716.4915},{"x":11,"y":2963.1964},{"x":12,"y":3189.5308},{"x":13,"y":3475.5923},{"x":14,"y":3766.1234},{"x":15,"y":3997.4987},{"x":16,"y":4217.4137},{"x":17,"y":4424.9596},{"x":18,"y":4602.5953},{"x":19,"y":4747.3639},{"x":20,"y":4823.4043},{"x":21,"y":4827.7793},{"x":22,"y":4828.3494},{"x":23,"y":4834.7259},{"x":24,"y":4879.864},{"x":25,"y":4911.0452},{"x":26,"y":4955.2739},{"x":27,"y":4931.1255},{"x":28,"y":4926.7226},{"x":29,"y":4949.8858},{"x":30,"y":4965.6216},{"x":31,"y":4998.7252},{"x":32,"y":4996.599},{"x":33,"y":4926.2325},{"x":34,"y":4819.9849},{"x":35,"y":4693.8485},{"x":36,"y":4573.8724},{"x":37,"y":4451.9143},{"x":38,"y":4287.3062},{"x":39,"y":4160.1753},{"x":40,"y":4022.7371},{"x":41,"y":3899.2575},{"x":42,"y":3778.4443},{"x":43,"y":3680.0035},{"x":44,"y":3599.2844},{"x":45,"y":3499.8822},{"x":46,"y":3356.4288},{"x":47,"y":3221.8133},{"x":48,"y":3126.4153},{"x":49,"y":3033.8599},{"x":50,"y":2951.4299},{"x":51,"y":2899.7882},{"x":52,"y":2879.3989},{"x":53,"y":2843.4544},{"x":54,"y":2775.5895},{"x":55,"y":2705.5753},{"x":56,"y":2662.433},{"x":57,"y":2617.2997},{"x":58,"y":2564.7134},{"x":59,"y":2508.9885},{"x":60,"y":2465.2525},{"x":61,"y":2417.3071},{"x":62,"y":2356.1458},{"x":63,"y":2275.8288},{"x":64,"y":2212.0896},{"x":65,"y":2140.7198},{"x":66,"y":2077.1758},{"x":67,"y":2040.6461},{"x":68,"y":2003.6524},{"x":69,"y":1973.7642},{"x":70,"y":1947.2585},{"x":71,"y":1924.6402},{"x":72,"y":1906.151},{"x":73,"y":1883.4075},{"x":74,"y":1849.2279},{"x":75,"y":1816.7236},{"x":76,"y":1799.4676},{"x":77,"y":1788.9956},{"x":78,"y":1783.2993},{"x":79,"y":1763.4861},{"x":80,"y":1744.703},{"x":81,"y":1714.713},{"x":82,"y":1680.9472},{"x":83,"y":1653.1001},{"x":84,"y":1622.0959},{"x":85,"y":1579.6815},{"x":86,"y":1538.2249},{"x":87,"y":1487.4049},{"x":88,"y":1434.51},{"x":89,"y":1393.3928},{"x":90,"y":1345.2221},{"x":91,"y":1280.4439},{"x":92,"y":1216.7759},{"x":93,"y":1172.3735},{"x":94,"y":1109.6377},{"x":95,"y":1053.4117},{"x":96,"y":1019.2427},{"x":97,"y":981.1075},{"x":98,"y":934.1703},{"x":99,"y":884.1061},{"x":100,"y":835.8167}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area PFm","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area PFm.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":246.0485},{"x":1,"y":302.7126},{"x":2,"y":342.1714},{"x":3,"y":443.336},{"x":4,"y":539.0976},{"x":5,"y":592.9106},{"x":6,"y":620.0483},{"x":7,"y":660.9343},{"x":8,"y":688.9723},{"x":9,"y":701.3227},{"x":10,"y":703.1962},{"x":11,"y":710.5742},{"x":12,"y":711.2233},{"x":13,"y":708.0837},{"x":14,"y":699.91},{"x":15,"y":690.0384},{"x":16,"y":668.2761},{"x":17,"y":647.4805},{"x":18,"y":638.0554},{"x":19,"y":631.7727},{"x":20,"y":626.576},{"x":21,"y":622.3763},{"x":22,"y":617.6824},{"x":23,"y":614.0316},{"x":24,"y":612.523},{"x":25,"y":611.7249},{"x":26,"y":611.7099},{"x":27,"y":609.9237},{"x":28,"y":609.752},{"x":29,"y":612.2496},{"x":30,"y":612.6466},{"x":31,"y":611.3793},{"x":32,"y":611.6471},{"x":33,"y":615.0885},{"x":34,"y":616.0165},{"x":35,"y":618.6871},{"x":36,"y":617.3478},{"x":37,"y":616.7342},{"x":38,"y":615.9005},{"x":39,"y":609.0167},{"x":40,"y":600.533},{"x":41,"y":591.1072},{"x":42,"y":579.1195},{"x":43,"y":565.3021},{"x":44,"y":553.6628},{"x":45,"y":545.7672},{"x":46,"y":541.8615},{"x":47,"y":533.4871},{"x":48,"y":529.5152},{"x":49,"y":529.1189},{"x":50,"y":526.9732},{"x":51,"y":524.5106},{"x":52,"y":526.8232},{"x":53,"y":533.3391},{"x":54,"y":540.3494},{"x":55,"y":540.4475},{"x":56,"y":542.3092},{"x":57,"y":552.1197},{"x":58,"y":553.7407},{"x":59,"y":553.2674},{"x":60,"y":559.9643},{"x":61,"y":565.719},{"x":62,"y":577.1762},{"x":63,"y":592.2511},{"x":64,"y":601.3304},{"x":65,"y":606.5184},{"x":66,"y":611.6904},{"x":67,"y":613.4652},{"x":68,"y":611.611},{"x":69,"y":613.2039},{"x":70,"y":622.8761},{"x":71,"y":634.9369},{"x":72,"y":647.4784},{"x":73,"y":651.7268},{"x":74,"y":657.8105},{"x":75,"y":669.787},{"x":76,"y":677.0422},{"x":77,"y":688.7856},{"x":78,"y":699.8495},{"x":79,"y":711.9961},{"x":80,"y":724.3741},{"x":81,"y":730.2757},{"x":82,"y":732.6087},{"x":83,"y":731.2782},{"x":84,"y":729.9956},{"x":85,"y":731.9646},{"x":86,"y":727.7137},{"x":87,"y":724.1005},{"x":88,"y":719.787},{"x":89,"y":714.7359},{"x":90,"y":712.8529},{"x":91,"y":710.3359},{"x":92,"y":710.2402},{"x":93,"y":704.9708},{"x":94,"y":697.6154},{"x":95,"y":695.004},{"x":96,"y":692.6589},{"x":97,"y":677.4381},{"x":98,"y":657.6423},{"x":99,"y":649.7101},{"x":100,"y":638.1812}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area PFm.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1288.2501},{"x":1,"y":1504.5469},{"x":2,"y":1694.8605},{"x":3,"y":1813.1118},{"x":4,"y":1877.948},{"x":5,"y":1925.6656},{"x":6,"y":1970.4734},{"x":7,"y":2001.3469},{"x":8,"y":2007.5222},{"x":9,"y":2014.9981},{"x":10,"y":2031.2646},{"x":11,"y":2029.487},{"x":12,"y":2015.0831},{"x":13,"y":2019.2004},{"x":14,"y":2020.4191},{"x":15,"y":2018.1737},{"x":16,"y":2024.3706},{"x":17,"y":2044.227},{"x":18,"y":2057.9879},{"x":19,"y":2080.7451},{"x":20,"y":2095.9656},{"x":21,"y":2088.5213},{"x":22,"y":2090.0653},{"x":23,"y":2080.5177},{"x":24,"y":2078.8738},{"x":25,"y":2069.1423},{"x":26,"y":2065.3765},{"x":27,"y":2058.6747},{"x":28,"y":2065.318},{"x":29,"y":2063.454},{"x":30,"y":2044.4191},{"x":31,"y":2022.1456},{"x":32,"y":1995.4147},{"x":33,"y":1983.3173},{"x":34,"y":1958.8393},{"x":35,"y":1939.4605},{"x":36,"y":1931.5578},{"x":37,"y":1904.5965},{"x":38,"y":1883.9031},{"x":39,"y":1881.1964},{"x":40,"y":1869.6666},{"x":41,"y":1855.4454},{"x":42,"y":1835.7264},{"x":43,"y":1829.53},{"x":44,"y":1824.8485},{"x":45,"y":1810.9402},{"x":46,"y":1809.3095},{"x":47,"y":1802.7262},{"x":48,"y":1791.8517},{"x":49,"y":1777.7284},{"x":50,"y":1777.5341},{"x":51,"y":1769.0472},{"x":52,"y":1754.3951},{"x":53,"y":1746.1479},{"x":54,"y":1755.4639},{"x":55,"y":1752.5258},{"x":56,"y":1759.8824},{"x":57,"y":1772.2099},{"x":58,"y":1779.5454},{"x":59,"y":1767.3573},{"x":60,"y":1748.4569},{"x":61,"y":1723.6787},{"x":62,"y":1717.5493},{"x":63,"y":1721.0235},{"x":64,"y":1738.6451},{"x":65,"y":1752.4983},{"x":66,"y":1748.5426},{"x":67,"y":1746.6357},{"x":68,"y":1739.6317},{"x":69,"y":1734.0655},{"x":70,"y":1720.5383},{"x":71,"y":1687.4702},{"x":72,"y":1665.4099},{"x":73,"y":1664.7602},{"x":74,"y":1659.5054},{"x":75,"y":1665.0687},{"x":76,"y":1648.4646},{"x":77,"y":1633.7099},{"x":78,"y":1617.8531},{"x":79,"y":1604.3407},{"x":80,"y":1587.7624},{"x":81,"y":1570.9626},{"x":82,"y":1564.554},{"x":83,"y":1552.3037},{"x":84,"y":1545.679},{"x":85,"y":1523.7966},{"x":86,"y":1508.3343},{"x":87,"y":1509.1098},{"x":88,"y":1492.1835},{"x":89,"y":1479.3753},{"x":90,"y":1468.1662},{"x":91,"y":1431.1263},{"x":92,"y":1389.3058},{"x":93,"y":1356.8627},{"x":94,"y":1306.1475},{"x":95,"y":1249.476},{"x":96,"y":1210.5869},{"x":97,"y":1160.2178},{"x":98,"y":1126.0999},{"x":99,"y":1093.0965},{"x":100,"y":1058.0735}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area PFm","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area PFm.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":649.0201},{"x":1,"y":848.1228},{"x":2,"y":1092.9962},{"x":3,"y":1448.094},{"x":4,"y":1829.4694},{"x":5,"y":2123.6008},{"x":6,"y":2348.2754},{"x":7,"y":2575.8223},{"x":8,"y":2761.369},{"x":9,"y":2960.1959},{"x":10,"y":3134.0293},{"x":11,"y":3289.2282},{"x":12,"y":3416.2688},{"x":13,"y":3516.8015},{"x":14,"y":3562.637},{"x":15,"y":3607.1894},{"x":16,"y":3634.3024},{"x":17,"y":3622.3828},{"x":18,"y":3620.2742},{"x":19,"y":3618.047},{"x":20,"y":3606.6227},{"x":21,"y":3604.7555},{"x":22,"y":3622.4253},{"x":23,"y":3658.9572},{"x":24,"y":3660.2006},{"x":25,"y":3680.0659},{"x":26,"y":3672.4711},{"x":27,"y":3664.3405},{"x":28,"y":3631.6388},{"x":29,"y":3594.7968},{"x":30,"y":3578.8434},{"x":31,"y":3556.649},{"x":32,"y":3507.3248},{"x":33,"y":3460.6467},{"x":34,"y":3441.4708},{"x":35,"y":3394.8057},{"x":36,"y":3361.2346},{"x":37,"y":3314.2736},{"x":38,"y":3263.0982},{"x":39,"y":3202.5102},{"x":40,"y":3122.135},{"x":41,"y":3056.6785},{"x":42,"y":3010.7237},{"x":43,"y":2955.3966},{"x":44,"y":2895.5737},{"x":45,"y":2857.2028},{"x":46,"y":2809.1634},{"x":47,"y":2764.9742},{"x":48,"y":2729.1517},{"x":49,"y":2691.3963},{"x":50,"y":2649.1878},{"x":51,"y":2570.7872},{"x":52,"y":2484.565},{"x":53,"y":2413.8159},{"x":54,"y":2348.5637},{"x":55,"y":2295.6309},{"x":56,"y":2267.3692},{"x":57,"y":2245.0127},{"x":58,"y":2216.1136},{"x":59,"y":2193.2635},{"x":60,"y":2157.833},{"x":61,"y":2116.8885},{"x":62,"y":2077.7201},{"x":63,"y":2041.1328},{"x":64,"y":2022.171},{"x":65,"y":2014.4903},{"x":66,"y":2001.3167},{"x":67,"y":2005.2367},{"x":68,"y":2004.4597},{"x":69,"y":2000.8071},{"x":70,"y":1973.1546},{"x":71,"y":1949.735},{"x":72,"y":1923.9283},{"x":73,"y":1901.3981},{"x":74,"y":1885.0433},{"x":75,"y":1870.4049},{"x":76,"y":1852.5713},{"x":77,"y":1833.3419},{"x":78,"y":1814.9503},{"x":79,"y":1816.0021},{"x":80,"y":1822.1582},{"x":81,"y":1821.6385},{"x":82,"y":1820.1773},{"x":83,"y":1804.2024},{"x":84,"y":1784.211},{"x":85,"y":1746.2127},{"x":86,"y":1710.9548},{"x":87,"y":1675.3408},{"x":88,"y":1633.8367},{"x":89,"y":1595.0674},{"x":90,"y":1577.9456},{"x":91,"y":1540.6935},{"x":92,"y":1500.2981},{"x":93,"y":1457.8082},{"x":94,"y":1415.4122},{"x":95,"y":1381.3558},{"x":96,"y":1334.2406},{"x":97,"y":1283.1642},{"x":98,"y":1241.6997},{"x":99,"y":1218.825},{"x":100,"y":1179.247}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area PFm","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area PFm.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":226.5518},{"x":1,"y":273.3296},{"x":2,"y":329.0038},{"x":3,"y":378.1086},{"x":4,"y":427.5563},{"x":5,"y":468.2745},{"x":6,"y":508.0673},{"x":7,"y":550.6138},{"x":8,"y":581.551},{"x":9,"y":610.2917},{"x":10,"y":642.9606},{"x":11,"y":671.5722},{"x":12,"y":704.5501},{"x":13,"y":724.0761},{"x":14,"y":744.5424},{"x":15,"y":761.424},{"x":16,"y":777.4291},{"x":17,"y":793.6276},{"x":18,"y":807.9863},{"x":19,"y":822.3666},{"x":20,"y":830.9475},{"x":21,"y":842.0264},{"x":22,"y":857.4971},{"x":23,"y":872.3554},{"x":24,"y":879.4366},{"x":25,"y":883.2561},{"x":26,"y":885.9435},{"x":27,"y":889.437},{"x":28,"y":884.922},{"x":29,"y":880.866},{"x":30,"y":877.4526},{"x":31,"y":867.4475},{"x":32,"y":854.3773},{"x":33,"y":841.2544},{"x":34,"y":828.1317},{"x":35,"y":818.6532},{"x":36,"y":813.125},{"x":37,"y":809.7644},{"x":38,"y":808.8884},{"x":39,"y":811.7371},{"x":40,"y":813.9011},{"x":41,"y":818.9772},{"x":42,"y":819.5966},{"x":43,"y":816.3986},{"x":44,"y":814.5429},{"x":45,"y":812.3569},{"x":46,"y":811.4889},{"x":47,"y":810.7485},{"x":48,"y":813.7063},{"x":49,"y":815.2679},{"x":50,"y":818.2395},{"x":51,"y":823.7207},{"x":52,"y":833.0654},{"x":53,"y":837.8499},{"x":54,"y":839.3394},{"x":55,"y":845.6004},{"x":56,"y":844.3926},{"x":57,"y":835.1113},{"x":58,"y":830.783},{"x":59,"y":829.4114},{"x":60,"y":824.4174},{"x":61,"y":821.2263},{"x":62,"y":818.2473},{"x":63,"y":814.6539},{"x":64,"y":813.7712},{"x":65,"y":817.1059},{"x":66,"y":818.4569},{"x":67,"y":819.4559},{"x":68,"y":826.8877},{"x":69,"y":830.6852},{"x":70,"y":836.927},{"x":71,"y":836.2376},{"x":72,"y":832.8156},{"x":73,"y":828.1681},{"x":74,"y":818.5491},{"x":75,"y":810.3988},{"x":76,"y":801.9501},{"x":77,"y":798.493},{"x":78,"y":798.3051},{"x":79,"y":794.3033},{"x":80,"y":788.8317},{"x":81,"y":784.921},{"x":82,"y":778.1703},{"x":83,"y":769.7684},{"x":84,"y":758.4028},{"x":85,"y":745.0126},{"x":86,"y":740.0665},{"x":87,"y":733.2654},{"x":88,"y":724.5991},{"x":89,"y":716.9815},{"x":90,"y":708.8412},{"x":91,"y":694.1066},{"x":92,"y":676.898},{"x":93,"y":659.5769},{"x":94,"y":644.7383},{"x":95,"y":630.7544},{"x":96,"y":622.2096},{"x":97,"y":610.0965},{"x":98,"y":599.3964},{"x":99,"y":584.7361},{"x":100,"y":571.6659}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area PFm.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":10.9525},{"x":1,"y":13.7983},{"x":2,"y":16.8933},{"x":3,"y":20.661},{"x":4,"y":24.5308},{"x":5,"y":26.7085},{"x":6,"y":29.3965},{"x":7,"y":31.4594},{"x":8,"y":30.5761},{"x":9,"y":32.1735},{"x":10,"y":34.3368},{"x":11,"y":37.636},{"x":12,"y":41.7252},{"x":13,"y":43.5344},{"x":14,"y":43.3511},{"x":15,"y":42.008},{"x":16,"y":41.6332},{"x":17,"y":42.6702},{"x":18,"y":43.58},{"x":19,"y":44.4205},{"x":20,"y":43.5457},{"x":21,"y":43.2397},{"x":22,"y":44.4628},{"x":23,"y":48.649},{"x":24,"y":49.1803},{"x":25,"y":49.8894},{"x":26,"y":50.4078},{"x":27,"y":52.5366},{"x":28,"y":51.4152},{"x":29,"y":51.0567},{"x":30,"y":51.6615},{"x":31,"y":54.0162},{"x":32,"y":55.219},{"x":33,"y":54.742},{"x":34,"y":53.8983},{"x":35,"y":53.5327},{"x":36,"y":52.2835},{"x":37,"y":50.5276},{"x":38,"y":48.4643},{"x":39,"y":49.3542},{"x":40,"y":50.3873},{"x":41,"y":52.9868},{"x":42,"y":54.7023},{"x":43,"y":57.1474},{"x":44,"y":57.8795},{"x":45,"y":57.5492},{"x":46,"y":56.0614},{"x":47,"y":53.4834},{"x":48,"y":50.3447},{"x":49,"y":48.055},{"x":50,"y":45.5072},{"x":51,"y":43.2927},{"x":52,"y":44.4765},{"x":53,"y":44.5942},{"x":54,"y":43.612},{"x":55,"y":43.7712},{"x":56,"y":46.0803},{"x":57,"y":48.1456},{"x":58,"y":50.7599},{"x":59,"y":51.0952},{"x":60,"y":53.4478},{"x":61,"y":53.4372},{"x":62,"y":52.0142},{"x":63,"y":51.7924},{"x":64,"y":50.938},{"x":65,"y":49.7906},{"x":66,"y":49.0863},{"x":67,"y":52.7661},{"x":68,"y":55.3132},{"x":69,"y":58.8055},{"x":70,"y":60.4207},{"x":71,"y":64.3806},{"x":72,"y":68.2688},{"x":73,"y":69.9634},{"x":74,"y":67.564},{"x":75,"y":65.6081},{"x":76,"y":65.1647},{"x":77,"y":64.6402},{"x":78,"y":66.4672},{"x":79,"y":66.7833},{"x":80,"y":67.3829},{"x":81,"y":70.0968},{"x":82,"y":70.4616},{"x":83,"y":68.3018},{"x":84,"y":63.7082},{"x":85,"y":59.7576},{"x":86,"y":58.9443},{"x":87,"y":59.2391},{"x":88,"y":61.1348},{"x":89,"y":61.9096},{"x":90,"y":62.7221},{"x":91,"y":64.2393},{"x":92,"y":62.6537},{"x":93,"y":63.5997},{"x":94,"y":65.4311},{"x":95,"y":65.0761},{"x":96,"y":65.8512},{"x":97,"y":67.3648},{"x":98,"y":64.1934},{"x":99,"y":59.792},{"x":100,"y":55.6246}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area PFm","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area PFm.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":222.9819},{"x":1,"y":257.3062},{"x":2,"y":301.232},{"x":3,"y":360.3595},{"x":4,"y":411.1464},{"x":5,"y":453.1503},{"x":6,"y":488.2737},{"x":7,"y":532.1241},{"x":8,"y":568.0223},{"x":9,"y":594.1367},{"x":10,"y":611.3606},{"x":11,"y":624.9792},{"x":12,"y":637.2301},{"x":13,"y":645.8093},{"x":14,"y":648.7144},{"x":15,"y":648.8767},{"x":16,"y":653.9823},{"x":17,"y":656.643},{"x":18,"y":656.122},{"x":19,"y":655.8582},{"x":20,"y":652.3616},{"x":21,"y":649.8126},{"x":22,"y":647.6234},{"x":23,"y":643.4561},{"x":24,"y":641.884},{"x":25,"y":639.0562},{"x":26,"y":632.4965},{"x":27,"y":627.2677},{"x":28,"y":622.4582},{"x":29,"y":616.5911},{"x":30,"y":610.0373},{"x":31,"y":603.4589},{"x":32,"y":596.8318},{"x":33,"y":586.7784},{"x":34,"y":577.6716},{"x":35,"y":572.4562},{"x":36,"y":566.1598},{"x":37,"y":559.5024},{"x":38,"y":555.1174},{"x":39,"y":551.4646},{"x":40,"y":552.3742},{"x":41,"y":556.6502},{"x":42,"y":558.5327},{"x":43,"y":558.3553},{"x":44,"y":557.7356},{"x":45,"y":557.6063},{"x":46,"y":558.7175},{"x":47,"y":558.6156},{"x":48,"y":558.3882},{"x":49,"y":558.33},{"x":50,"y":557.7576},{"x":51,"y":555.4275},{"x":52,"y":551.8005},{"x":53,"y":549.2268},{"x":54,"y":546.2649},{"x":55,"y":542.9368},{"x":56,"y":537.5792},{"x":57,"y":535.3208},{"x":58,"y":534.2044},{"x":59,"y":533.5621},{"x":60,"y":530.047},{"x":61,"y":526.7027},{"x":62,"y":523.2002},{"x":63,"y":519.5795},{"x":64,"y":517.4336},{"x":65,"y":518.1881},{"x":66,"y":518.6044},{"x":67,"y":520.334},{"x":68,"y":521.0821},{"x":69,"y":518.9551},{"x":70,"y":517.9046},{"x":71,"y":518.3208},{"x":72,"y":518.8176},{"x":73,"y":517.2892},{"x":74,"y":514.8359},{"x":75,"y":512.8684},{"x":76,"y":510.172},{"x":77,"y":503.7294},{"x":78,"y":496.0832},{"x":79,"y":490.9644},{"x":80,"y":485.5388},{"x":81,"y":480.219},{"x":82,"y":478.0453},{"x":83,"y":475.1307},{"x":84,"y":473.0779},{"x":85,"y":470.5059},{"x":86,"y":466.8079},{"x":87,"y":460.8546},{"x":88,"y":453.6991},{"x":89,"y":444.3507},{"x":90,"y":431.9699},{"x":91,"y":417.178},{"x":92,"y":403.9866},{"x":93,"y":388.1319},{"x":94,"y":369.655},{"x":95,"y":355.0118},{"x":96,"y":343.8632},{"x":97,"y":329.5792},{"x":98,"y":313.0801},{"x":99,"y":303.8542},{"x":100,"y":293.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area PFm","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area PFm.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":178.9409},{"x":1,"y":221.3682},{"x":2,"y":266.3416},{"x":3,"y":311.7817},{"x":4,"y":361.6268},{"x":5,"y":426.2078},{"x":6,"y":489.66},{"x":7,"y":548.3518},{"x":8,"y":601.5318},{"x":9,"y":645.1545},{"x":10,"y":684.4057},{"x":11,"y":714.9074},{"x":12,"y":730.3084},{"x":13,"y":743.4942},{"x":14,"y":754.8556},{"x":15,"y":760.8008},{"x":16,"y":762.8721},{"x":17,"y":767.2397},{"x":18,"y":763.0848},{"x":19,"y":753.0896},{"x":20,"y":737.7586},{"x":21,"y":718.7249},{"x":22,"y":701.1423},{"x":23,"y":676.8934},{"x":24,"y":644.1758},{"x":25,"y":609.7027},{"x":26,"y":569.6236},{"x":27,"y":525.946},{"x":28,"y":475.5022},{"x":29,"y":427.3785},{"x":30,"y":389.4978},{"x":31,"y":349.5367},{"x":32,"y":311.4599},{"x":33,"y":281.6493},{"x":34,"y":258.2406},{"x":35,"y":237.618},{"x":36,"y":222.0312},{"x":37,"y":208.6032},{"x":38,"y":195.7721},{"x":39,"y":187.0238},{"x":40,"y":175.7821},{"x":41,"y":164.8443},{"x":42,"y":153.9147},{"x":43,"y":145.9143},{"x":44,"y":141.9929},{"x":45,"y":137.4399},{"x":46,"y":134.4055},{"x":47,"y":133.3636},{"x":48,"y":131.8849},{"x":49,"y":130.0535},{"x":50,"y":130.0931},{"x":51,"y":131.0189},{"x":52,"y":133.618},{"x":53,"y":138.2265},{"x":54,"y":144.636},{"x":55,"y":149.7509},{"x":56,"y":156.749},{"x":57,"y":163.8689},{"x":58,"y":172.4409},{"x":59,"y":179.2705},{"x":60,"y":185.6774},{"x":61,"y":191.3106},{"x":62,"y":195.5594},{"x":63,"y":198.6216},{"x":64,"y":201.4065},{"x":65,"y":203.6512},{"x":66,"y":204.6507},{"x":67,"y":203.7297},{"x":68,"y":205.5465},{"x":69,"y":207.4703},{"x":70,"y":211.5302},{"x":71,"y":214.4259},{"x":72,"y":219.735},{"x":73,"y":223.0547},{"x":74,"y":229.8002},{"x":75,"y":232.2087},{"x":76,"y":233.7572},{"x":77,"y":232.442},{"x":78,"y":233.0222},{"x":79,"y":232.802},{"x":80,"y":232.3752},{"x":81,"y":230.6116},{"x":82,"y":231.2732},{"x":83,"y":233.0882},{"x":84,"y":231.3036},{"x":85,"y":228.7976},{"x":86,"y":226.3781},{"x":87,"y":221.5949},{"x":88,"y":220.6944},{"x":89,"y":220.0755},{"x":90,"y":220.5519},{"x":91,"y":220.722},{"x":92,"y":218.1681},{"x":93,"y":216.2651},{"x":94,"y":213.9825},{"x":95,"y":209.7935},{"x":96,"y":204.6744},{"x":97,"y":201.8038},{"x":98,"y":197.803},{"x":99,"y":188.8238},{"x":100,"y":179.1047}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area PFm","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area PFm.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":612.0971},{"x":1,"y":700.5788},{"x":2,"y":767.4826},{"x":3,"y":838.8742},{"x":4,"y":897.4627},{"x":5,"y":933.5483},{"x":6,"y":950.4446},{"x":7,"y":965.2636},{"x":8,"y":973.041},{"x":9,"y":976.2026},{"x":10,"y":971.9536},{"x":11,"y":962.0346},{"x":12,"y":954.711},{"x":13,"y":953.6688},{"x":14,"y":954.406},{"x":15,"y":946.2501},{"x":16,"y":941.4819},{"x":17,"y":937.8259},{"x":18,"y":931.7584},{"x":19,"y":930.3836},{"x":20,"y":923.0986},{"x":21,"y":923.6782},{"x":22,"y":938.3746},{"x":23,"y":947.7402},{"x":24,"y":948.2214},{"x":25,"y":953.8739},{"x":26,"y":962.4483},{"x":27,"y":970.1679},{"x":28,"y":978.8258},{"x":29,"y":992.4646},{"x":30,"y":1008.7311},{"x":31,"y":1017.1603},{"x":32,"y":1025.7543},{"x":33,"y":1031.6309},{"x":34,"y":1040.599},{"x":35,"y":1043.4077},{"x":36,"y":1041.2253},{"x":37,"y":1045.4147},{"x":38,"y":1053.6018},{"x":39,"y":1067.3037},{"x":40,"y":1080.9704},{"x":41,"y":1087.8732},{"x":42,"y":1099.4879},{"x":43,"y":1110.9138},{"x":44,"y":1115.5679},{"x":45,"y":1127.7745},{"x":46,"y":1137.1646},{"x":47,"y":1143.5387},{"x":48,"y":1151.5789},{"x":49,"y":1165.3944},{"x":50,"y":1177.7728},{"x":51,"y":1191.3442},{"x":52,"y":1208.9196},{"x":53,"y":1218.5714},{"x":54,"y":1225.3123},{"x":55,"y":1237.567},{"x":56,"y":1245.5211},{"x":57,"y":1250.3525},{"x":58,"y":1252.8015},{"x":59,"y":1256.9281},{"x":60,"y":1255.2233},{"x":61,"y":1256.4467},{"x":62,"y":1249.7518},{"x":63,"y":1240.9727},{"x":64,"y":1236.655},{"x":65,"y":1235.834},{"x":66,"y":1237.4067},{"x":67,"y":1238.0246},{"x":68,"y":1241.5674},{"x":69,"y":1243.809},{"x":70,"y":1241.4102},{"x":71,"y":1244.174},{"x":72,"y":1249.6207},{"x":73,"y":1252.3317},{"x":74,"y":1255.0968},{"x":75,"y":1253.6994},{"x":76,"y":1264.6417},{"x":77,"y":1281.7748},{"x":78,"y":1294.5093},{"x":79,"y":1300.1796},{"x":80,"y":1303.4348},{"x":81,"y":1302.8782},{"x":82,"y":1301.1223},{"x":83,"y":1298.1747},{"x":84,"y":1298.6703},{"x":85,"y":1285.2761},{"x":86,"y":1272.5903},{"x":87,"y":1267.3914},{"x":88,"y":1261.2636},{"x":89,"y":1253.4034},{"x":90,"y":1241.0226},{"x":91,"y":1236.1091},{"x":92,"y":1230.6918},{"x":93,"y":1219.3062},{"x":94,"y":1207.4386},{"x":95,"y":1194.7681},{"x":96,"y":1178.3724},{"x":97,"y":1147.7234},{"x":98,"y":1121.5922},{"x":99,"y":1107.9492},{"x":100,"y":1092.0591}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area PFm","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area PFm.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":84.6477},{"x":1,"y":93.2695},{"x":2,"y":103.4352},{"x":3,"y":115.6859},{"x":4,"y":127.7598},{"x":5,"y":135.6121},{"x":6,"y":142.6476},{"x":7,"y":145.9338},{"x":8,"y":150.498},{"x":9,"y":155.1707},{"x":10,"y":156.9823},{"x":11,"y":157.7596},{"x":12,"y":157.8233},{"x":13,"y":157.6372},{"x":14,"y":158.8639},{"x":15,"y":158.7868},{"x":16,"y":158.7608},{"x":17,"y":157.914},{"x":18,"y":161.1105},{"x":19,"y":164.6396},{"x":20,"y":165.9435},{"x":21,"y":170.475},{"x":22,"y":176.8111},{"x":23,"y":179.0959},{"x":24,"y":178.736},{"x":25,"y":180.9806},{"x":26,"y":180.3764},{"x":27,"y":180.2802},{"x":28,"y":184.7803},{"x":29,"y":188.6613},{"x":30,"y":193.4912},{"x":31,"y":197.0957},{"x":32,"y":200.0429},{"x":33,"y":203.0107},{"x":34,"y":205.0235},{"x":35,"y":204.7353},{"x":36,"y":202.6343},{"x":37,"y":202.3725},{"x":38,"y":203.0957},{"x":39,"y":207.7596},{"x":40,"y":211.0369},{"x":41,"y":212.1601},{"x":42,"y":213.7542},{"x":43,"y":215.7543},{"x":44,"y":218.4313},{"x":45,"y":222.4281},{"x":46,"y":228.4705},{"x":47,"y":233.6961},{"x":48,"y":238.9946},{"x":49,"y":242.1399},{"x":50,"y":245.9088},{"x":51,"y":253.4642},{"x":52,"y":260.3492},{"x":53,"y":266.1818},{"x":54,"y":270.3434},{"x":55,"y":274.1293},{"x":56,"y":275.3021},{"x":57,"y":275.5601},{"x":58,"y":276.0092},{"x":59,"y":276.8751},{"x":60,"y":275.4816},{"x":61,"y":272.9742},{"x":62,"y":271.4523},{"x":63,"y":270.1365},{"x":64,"y":268.27},{"x":65,"y":266.6988},{"x":66,"y":262.7834},{"x":67,"y":259.8237},{"x":68,"y":254.7546},{"x":69,"y":249.7533},{"x":70,"y":245.4534},{"x":71,"y":241.7682},{"x":72,"y":239.8094},{"x":73,"y":238.0626},{"x":74,"y":235.8818},{"x":75,"y":230.7443},{"x":76,"y":228.0226},{"x":77,"y":226.4827},{"x":78,"y":222.9297},{"x":79,"y":220.2826},{"x":80,"y":215.0989},{"x":81,"y":210.7847},{"x":82,"y":205.7083},{"x":83,"y":196.8683},{"x":84,"y":191.1009},{"x":85,"y":187.6439},{"x":86,"y":185.2418},{"x":87,"y":182.5054},{"x":88,"y":178.8836},{"x":89,"y":175.7992},{"x":90,"y":171.9279},{"x":91,"y":166.7175},{"x":92,"y":157.6449},{"x":93,"y":147.1877},{"x":94,"y":139.3689},{"x":95,"y":134.1763},{"x":96,"y":129.1793},{"x":97,"y":126.9102},{"x":98,"y":126.3367},{"x":99,"y":122.3542},{"x":100,"y":116.9453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area PFm.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":405.5729},{"x":1,"y":451.8444},{"x":2,"y":497.2293},{"x":3,"y":525.8658},{"x":4,"y":545.0973},{"x":5,"y":557.324},{"x":6,"y":575.845},{"x":7,"y":598.0745},{"x":8,"y":616.0735},{"x":9,"y":630.0659},{"x":10,"y":641.9863},{"x":11,"y":652.885},{"x":12,"y":659.1001},{"x":13,"y":669.1597},{"x":14,"y":675.6552},{"x":15,"y":668.1356},{"x":16,"y":652.8647},{"x":17,"y":635.8774},{"x":18,"y":626.3587},{"x":19,"y":618.4538},{"x":20,"y":605.7924},{"x":21,"y":591.05},{"x":22,"y":576.7722},{"x":23,"y":568.0839},{"x":24,"y":561.7794},{"x":25,"y":553.1086},{"x":26,"y":548.8052},{"x":27,"y":532.8971},{"x":28,"y":519.8256},{"x":29,"y":516.2577},{"x":30,"y":503.6507},{"x":31,"y":496.4829},{"x":32,"y":488.3557},{"x":33,"y":466.8666},{"x":34,"y":456.7964},{"x":35,"y":460.8351},{"x":36,"y":466.4865},{"x":37,"y":464.9287},{"x":38,"y":454.4103},{"x":39,"y":449.8788},{"x":40,"y":431.8908},{"x":41,"y":417.7714},{"x":42,"y":409.133},{"x":43,"y":416.0307},{"x":44,"y":427.5151},{"x":45,"y":431.7865},{"x":46,"y":438.3853},{"x":47,"y":433.6461},{"x":48,"y":428.7599},{"x":49,"y":420.7188},{"x":50,"y":424.8132},{"x":51,"y":426.0907},{"x":52,"y":436.9364},{"x":53,"y":445.7628},{"x":54,"y":447.0122},{"x":55,"y":434.5986},{"x":56,"y":419.1719},{"x":57,"y":410.0317},{"x":58,"y":393.2125},{"x":59,"y":379.621},{"x":60,"y":374.2348},{"x":61,"y":374.2654},{"x":62,"y":379.0425},{"x":63,"y":388.3258},{"x":64,"y":392.2651},{"x":65,"y":399.2769},{"x":66,"y":399.7033},{"x":67,"y":396.3172},{"x":68,"y":394.2565},{"x":69,"y":398.9991},{"x":70,"y":396.441},{"x":71,"y":391.3304},{"x":72,"y":383.9955},{"x":73,"y":390.3641},{"x":74,"y":402.8404},{"x":75,"y":401.4029},{"x":76,"y":395.845},{"x":77,"y":392.7307},{"x":78,"y":384.5419},{"x":79,"y":382.5594},{"x":80,"y":385.6433},{"x":81,"y":392.5939},{"x":82,"y":403.0249},{"x":83,"y":405.9239},{"x":84,"y":399.9345},{"x":85,"y":391.6423},{"x":86,"y":393.2337},{"x":87,"y":396.4047},{"x":88,"y":399.3001},{"x":89,"y":399.894},{"x":90,"y":405.9114},{"x":91,"y":413.8407},{"x":92,"y":412.8103},{"x":93,"y":416.9961},{"x":94,"y":416.351},{"x":95,"y":410.828},{"x":96,"y":401.764},{"x":97,"y":397.6487},{"x":98,"y":386.7589},{"x":99,"y":366.2726},{"x":100,"y":344.3997}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area PFm","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area PFm.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":71.7961},{"x":1,"y":96.0361},{"x":2,"y":121.9873},{"x":3,"y":148.5828},{"x":4,"y":169.607},{"x":5,"y":183.1485},{"x":6,"y":193.7369},{"x":7,"y":202.2761},{"x":8,"y":207.5636},{"x":9,"y":209.1416},{"x":10,"y":209.6546},{"x":11,"y":209.2487},{"x":12,"y":210.3938},{"x":13,"y":209.1629},{"x":14,"y":207.6902},{"x":15,"y":206.7537},{"x":16,"y":204.9011},{"x":17,"y":202.9269},{"x":18,"y":203.6056},{"x":19,"y":204.3025},{"x":20,"y":206.8464},{"x":21,"y":207.2218},{"x":22,"y":205.8387},{"x":23,"y":203.5968},{"x":24,"y":199.5774},{"x":25,"y":193.7339},{"x":26,"y":188.6019},{"x":27,"y":183.4718},{"x":28,"y":180.0857},{"x":29,"y":178.3286},{"x":30,"y":176.8736},{"x":31,"y":171.8384},{"x":32,"y":168.8552},{"x":33,"y":166.5311},{"x":34,"y":164.7591},{"x":35,"y":164.5351},{"x":36,"y":164.0599},{"x":37,"y":162.187},{"x":38,"y":161.5447},{"x":39,"y":160.8484},{"x":40,"y":159.9339},{"x":41,"y":157.7707},{"x":42,"y":159.0717},{"x":43,"y":159.6655},{"x":44,"y":159.7806},{"x":45,"y":163.0386},{"x":46,"y":166.6397},{"x":47,"y":169.43},{"x":48,"y":170.9491},{"x":49,"y":173.6838},{"x":50,"y":174.9978},{"x":51,"y":174.3716},{"x":52,"y":177.6136},{"x":53,"y":178.6717},{"x":54,"y":178.3596},{"x":55,"y":178.7765},{"x":56,"y":179.5655},{"x":57,"y":181.5343},{"x":58,"y":180.1617},{"x":59,"y":181.883},{"x":60,"y":182.7184},{"x":61,"y":181.9094},{"x":62,"y":182.0055},{"x":63,"y":181.4463},{"x":64,"y":180.1232},{"x":65,"y":181.4385},{"x":66,"y":180.6042},{"x":67,"y":181.7121},{"x":68,"y":182.9283},{"x":69,"y":182.7583},{"x":70,"y":179.6249},{"x":71,"y":177.1991},{"x":72,"y":176.6458},{"x":73,"y":176.831},{"x":74,"y":176.1423},{"x":75,"y":175.3482},{"x":76,"y":173.3404},{"x":77,"y":170.9682},{"x":78,"y":169.3456},{"x":79,"y":169.2848},{"x":80,"y":169.2037},{"x":81,"y":169.232},{"x":82,"y":165.9925},{"x":83,"y":162.5302},{"x":84,"y":162.7598},{"x":85,"y":161.8939},{"x":86,"y":160.9315},{"x":87,"y":157.2686},{"x":88,"y":152.5733},{"x":89,"y":150.7818},{"x":90,"y":149.7141},{"x":91,"y":149.2394},{"x":92,"y":148.6755},{"x":93,"y":147.1266},{"x":94,"y":147.1818},{"x":95,"y":145.8475},{"x":96,"y":143.4535},{"x":97,"y":137.7632},{"x":98,"y":133.8054},{"x":99,"y":124.6529},{"x":100,"y":117.0293}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area PFm","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area PFm.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1187.3566},{"x":1,"y":1323.5235},{"x":2,"y":1428.9562},{"x":3,"y":1486.5143},{"x":4,"y":1550.7895},{"x":5,"y":1603.5561},{"x":6,"y":1646.1602},{"x":7,"y":1676.798},{"x":8,"y":1695.4511},{"x":9,"y":1712.1351},{"x":10,"y":1732.3376},{"x":11,"y":1746.039},{"x":12,"y":1757.3188},{"x":13,"y":1764.7332},{"x":14,"y":1767.9907},{"x":15,"y":1771.4037},{"x":16,"y":1775.9087},{"x":17,"y":1778.1755},{"x":18,"y":1778.8636},{"x":19,"y":1789.6876},{"x":20,"y":1804.7697},{"x":21,"y":1808.8769},{"x":22,"y":1808.3629},{"x":23,"y":1805.0579},{"x":24,"y":1803.5057},{"x":25,"y":1798.2686},{"x":26,"y":1790.0578},{"x":27,"y":1783.3516},{"x":28,"y":1776.504},{"x":29,"y":1763.8394},{"x":30,"y":1748.0961},{"x":31,"y":1730.7008},{"x":32,"y":1715.2495},{"x":33,"y":1699.4509},{"x":34,"y":1691.9305},{"x":35,"y":1687.5653},{"x":36,"y":1685.895},{"x":37,"y":1683.7524},{"x":38,"y":1678.8643},{"x":39,"y":1667.4082},{"x":40,"y":1655.397},{"x":41,"y":1645.8773},{"x":42,"y":1634.125},{"x":43,"y":1627.5713},{"x":44,"y":1621.7817},{"x":45,"y":1620.5241},{"x":46,"y":1617.425},{"x":47,"y":1614.6611},{"x":48,"y":1610.3926},{"x":49,"y":1603.4878},{"x":50,"y":1598.6887},{"x":51,"y":1593.8563},{"x":52,"y":1587.7358},{"x":53,"y":1581.487},{"x":54,"y":1570.3626},{"x":55,"y":1558.6219},{"x":56,"y":1545.252},{"x":57,"y":1533.5059},{"x":58,"y":1525.0995},{"x":59,"y":1518.164},{"x":60,"y":1514.1891},{"x":61,"y":1510.3113},{"x":62,"y":1507.5093},{"x":63,"y":1508.0609},{"x":64,"y":1501.4626},{"x":65,"y":1498.8259},{"x":66,"y":1498.6077},{"x":67,"y":1497.1689},{"x":68,"y":1497.458},{"x":69,"y":1498.13},{"x":70,"y":1497.4811},{"x":71,"y":1498.9913},{"x":72,"y":1501.9641},{"x":73,"y":1504.9326},{"x":74,"y":1505.4971},{"x":75,"y":1501.024},{"x":76,"y":1495.4044},{"x":77,"y":1487.6982},{"x":78,"y":1477.4397},{"x":79,"y":1471.5396},{"x":80,"y":1467.5162},{"x":81,"y":1463.8119},{"x":82,"y":1459.0814},{"x":83,"y":1449.3861},{"x":84,"y":1435.3861},{"x":85,"y":1419.4158},{"x":86,"y":1403.7526},{"x":87,"y":1385.1055},{"x":88,"y":1359.1972},{"x":89,"y":1332.6952},{"x":90,"y":1300.6404},{"x":91,"y":1265.4414},{"x":92,"y":1229.3579},{"x":93,"y":1193.6507},{"x":94,"y":1152.3841},{"x":95,"y":1114.6689},{"x":96,"y":1073.1532},{"x":97,"y":1037.2619},{"x":98,"y":1007.3073},{"x":99,"y":968.4259},{"x":100,"y":926.7198}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area PFm.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1527.3001},{"x":1,"y":1839.0984},{"x":2,"y":2189.7366},{"x":3,"y":2639.5104},{"x":4,"y":3131.3987},{"x":5,"y":3546.1502},{"x":6,"y":3968.0329},{"x":7,"y":4313.3664},{"x":8,"y":4629.8887},{"x":9,"y":4921.8474},{"x":10,"y":5182.0203},{"x":11,"y":5426.3305},{"x":12,"y":5630.5118},{"x":13,"y":5826.4645},{"x":14,"y":6018.1452},{"x":15,"y":6144.1827},{"x":16,"y":6230.8311},{"x":17,"y":6263.8153},{"x":18,"y":6295.1772},{"x":19,"y":6296.3602},{"x":20,"y":6294.3915},{"x":21,"y":6314.7012},{"x":22,"y":6362.3784},{"x":23,"y":6393.6048},{"x":24,"y":6420.5427},{"x":25,"y":6462.1369},{"x":26,"y":6503.4864},{"x":27,"y":6486.3374},{"x":28,"y":6458.1349},{"x":29,"y":6408.5281},{"x":30,"y":6308.3592},{"x":31,"y":6183.2181},{"x":32,"y":6088.2681},{"x":33,"y":5990.1512},{"x":34,"y":5911.5681},{"x":35,"y":5814.0018},{"x":36,"y":5734.8252},{"x":37,"y":5661.2506},{"x":38,"y":5574.9418},{"x":39,"y":5489.2553},{"x":40,"y":5425.5495},{"x":41,"y":5373.17},{"x":42,"y":5327.9416},{"x":43,"y":5299.4144},{"x":44,"y":5248.7505},{"x":45,"y":5200.1832},{"x":46,"y":5163.8114},{"x":47,"y":5144.2242},{"x":48,"y":5116.2263},{"x":49,"y":5087.371},{"x":50,"y":5045.9499},{"x":51,"y":4961.5553},{"x":52,"y":4864.9578},{"x":53,"y":4758.0079},{"x":54,"y":4660.895},{"x":55,"y":4598.5002},{"x":56,"y":4536.0734},{"x":57,"y":4461.2234},{"x":58,"y":4398.3649},{"x":59,"y":4355.6073},{"x":60,"y":4314.6257},{"x":61,"y":4267.4302},{"x":62,"y":4189.1331},{"x":63,"y":4131.0034},{"x":64,"y":4072.6532},{"x":65,"y":3997.7178},{"x":66,"y":3924.6518},{"x":67,"y":3860.0437},{"x":68,"y":3787.0319},{"x":69,"y":3704.1567},{"x":70,"y":3633.4575},{"x":71,"y":3567.382},{"x":72,"y":3512.4774},{"x":73,"y":3477.1785},{"x":74,"y":3454.906},{"x":75,"y":3445.1648},{"x":76,"y":3436.9216},{"x":77,"y":3436.4549},{"x":78,"y":3437.5753},{"x":79,"y":3415.6112},{"x":80,"y":3392.0835},{"x":81,"y":3375.1237},{"x":82,"y":3364.7892},{"x":83,"y":3354.9507},{"x":84,"y":3328.3289},{"x":85,"y":3303.3088},{"x":86,"y":3263.5839},{"x":87,"y":3211.2551},{"x":88,"y":3166.2806},{"x":89,"y":3117.2966},{"x":90,"y":3042.0249},{"x":91,"y":2985.2467},{"x":92,"y":2883.7574},{"x":93,"y":2773.0366},{"x":94,"y":2642.1972},{"x":95,"y":2502.4948},{"x":96,"y":2377.1516},{"x":97,"y":2268.729},{"x":98,"y":2177.3427},{"x":99,"y":2123.8062},{"x":100,"y":2083.8323}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area PFm","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area PFm.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":350.924},{"x":1,"y":384.2545},{"x":2,"y":420.4888},{"x":3,"y":453.5182},{"x":4,"y":475.1151},{"x":5,"y":488.122},{"x":6,"y":501.9878},{"x":7,"y":527.154},{"x":8,"y":551.6976},{"x":9,"y":576.1593},{"x":10,"y":601.1472},{"x":11,"y":626.8803},{"x":12,"y":646.6886},{"x":13,"y":669.9733},{"x":14,"y":695.0681},{"x":15,"y":723.951},{"x":16,"y":751.1475},{"x":17,"y":779.3186},{"x":18,"y":811.9418},{"x":19,"y":841.6441},{"x":20,"y":870.2346},{"x":21,"y":902.4196},{"x":22,"y":933.2005},{"x":23,"y":955.4812},{"x":24,"y":973.7632},{"x":25,"y":994.3365},{"x":26,"y":1010.2058},{"x":27,"y":1032.3017},{"x":28,"y":1050.0611},{"x":29,"y":1070.9975},{"x":30,"y":1086.8784},{"x":31,"y":1092.7762},{"x":32,"y":1093.2012},{"x":33,"y":1087.0664},{"x":34,"y":1076.1617},{"x":35,"y":1061.3283},{"x":36,"y":1050.8619},{"x":37,"y":1038.326},{"x":38,"y":1026.0398},{"x":39,"y":1013.1174},{"x":40,"y":995.1291},{"x":41,"y":982.5762},{"x":42,"y":972.3553},{"x":43,"y":959.9188},{"x":44,"y":950.6932},{"x":45,"y":940.5263},{"x":46,"y":934.7189},{"x":47,"y":930.807},{"x":48,"y":929.6185},{"x":49,"y":931.1468},{"x":50,"y":932.5176},{"x":51,"y":934.2126},{"x":52,"y":931.8024},{"x":53,"y":929.4346},{"x":54,"y":928.0453},{"x":55,"y":923.7144},{"x":56,"y":915.6868},{"x":57,"y":908.9238},{"x":58,"y":899.4296},{"x":59,"y":886.0047},{"x":60,"y":873.9596},{"x":61,"y":865.4562},{"x":62,"y":856.5329},{"x":63,"y":845.7543},{"x":64,"y":834.0316},{"x":65,"y":816.9375},{"x":66,"y":798.7362},{"x":67,"y":782.2733},{"x":68,"y":768.0219},{"x":69,"y":756.9281},{"x":70,"y":749.4084},{"x":71,"y":738.0489},{"x":72,"y":726.5856},{"x":73,"y":718.8053},{"x":74,"y":710.0391},{"x":75,"y":704.2395},{"x":76,"y":697.6099},{"x":77,"y":691.1072},{"x":78,"y":683.6053},{"x":79,"y":665.6237},{"x":80,"y":650.4815},{"x":81,"y":640.1421},{"x":82,"y":633.3483},{"x":83,"y":629.3863},{"x":84,"y":630.3066},{"x":85,"y":628.2752},{"x":86,"y":620.8921},{"x":87,"y":613.1794},{"x":88,"y":604.1506},{"x":89,"y":594.4043},{"x":90,"y":581.6574},{"x":91,"y":568.0625},{"x":92,"y":556.0725},{"x":93,"y":542.6974},{"x":94,"y":527.2901},{"x":95,"y":516.9345},{"x":96,"y":508.7705},{"x":97,"y":491.4733},{"x":98,"y":470.0076},{"x":99,"y":454.3691},{"x":100,"y":443.1489}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area PFm","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area PFm.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":573.1877},{"x":1,"y":804.0202},{"x":2,"y":1071.8902},{"x":3,"y":1339.0262},{"x":4,"y":1599.0561},{"x":5,"y":1891.4777},{"x":6,"y":2183.0962},{"x":7,"y":2471.9999},{"x":8,"y":2724.2566},{"x":9,"y":2973.4222},{"x":10,"y":3214.1044},{"x":11,"y":3428.8791},{"x":12,"y":3622.7196},{"x":13,"y":3802.703},{"x":14,"y":3941.5544},{"x":15,"y":4045.2755},{"x":16,"y":4122.2815},{"x":17,"y":4177.8563},{"x":18,"y":4229.1878},{"x":19,"y":4280.8852},{"x":20,"y":4311.9339},{"x":21,"y":4336.7753},{"x":22,"y":4367.9924},{"x":23,"y":4380.3107},{"x":24,"y":4376.6181},{"x":25,"y":4350.6657},{"x":26,"y":4315.2528},{"x":27,"y":4285.5},{"x":28,"y":4262.5087},{"x":29,"y":4253.2519},{"x":30,"y":4244.5886},{"x":31,"y":4197.4294},{"x":32,"y":4096.0252},{"x":33,"y":3982.8171},{"x":34,"y":3877.8225},{"x":35,"y":3790.9951},{"x":36,"y":3720.0325},{"x":37,"y":3672.8532},{"x":38,"y":3646.2768},{"x":39,"y":3623.06},{"x":40,"y":3608.05},{"x":41,"y":3579.1184},{"x":42,"y":3556.7084},{"x":43,"y":3518.7706},{"x":44,"y":3474.4283},{"x":45,"y":3421.4001},{"x":46,"y":3356.5385},{"x":47,"y":3296.1175},{"x":48,"y":3242.3036},{"x":49,"y":3203.5722},{"x":50,"y":3172.9243},{"x":51,"y":3152.7316},{"x":52,"y":3160.0208},{"x":53,"y":3182.0019},{"x":54,"y":3200.4349},{"x":55,"y":3210.4232},{"x":56,"y":3220.7546},{"x":57,"y":3231.9356},{"x":58,"y":3229.8094},{"x":59,"y":3199.2304},{"x":60,"y":3149.499},{"x":61,"y":3090.6089},{"x":62,"y":3041.8902},{"x":63,"y":3009.7549},{"x":64,"y":2986.3286},{"x":65,"y":2951.1689},{"x":66,"y":2913.7027},{"x":67,"y":2876.8481},{"x":68,"y":2851.3901},{"x":69,"y":2843.3843},{"x":70,"y":2848.4798},{"x":71,"y":2865.8639},{"x":72,"y":2890.695},{"x":73,"y":2907.7937},{"x":74,"y":2899.8862},{"x":75,"y":2881.5885},{"x":76,"y":2858.776},{"x":77,"y":2826.9979},{"x":78,"y":2796.5929},{"x":79,"y":2771.0312},{"x":80,"y":2743.2496},{"x":81,"y":2720.0674},{"x":82,"y":2700.2702},{"x":83,"y":2664.1631},{"x":84,"y":2616.6772},{"x":85,"y":2550.1042},{"x":86,"y":2489.7028},{"x":87,"y":2425.079},{"x":88,"y":2347.6158},{"x":89,"y":2275.0935},{"x":90,"y":2186.8813},{"x":91,"y":2112.803},{"x":92,"y":2051.0543},{"x":93,"y":1994.9916},{"x":94,"y":1942.902},{"x":95,"y":1875.2428},{"x":96,"y":1769.9738},{"x":97,"y":1668.7373},{"x":98,"y":1564.0407},{"x":99,"y":1444.2464},{"x":100,"y":1326.3748}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PGp",[{"name":"Receptor density fingerprint of Area PGp","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["428","518","1081","3416","1847","2374","2294","461","202","843","54","386","855","315","419","130"]},{"label":"mean_sd","data":["242","360","313","1572","767","790","830","180","74","432","31","165","mg/mol","169","233","58"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGp (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(42,60,252,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area 45",[{"name":"Receptor density fingerprint of Area 45","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 45.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 45. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["472","434","1078","NA","1515","1428","2038","676","215","420","47","200","165","404","266","69"]},{"label":"mean_sd","data":["379","264","40","NA","283","1197","1372","493","162","20","49","143","136","346","192","51"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 45 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area 45","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area 45","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area 45","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 45","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area 45","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area 45","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 45","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area 45","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area 45","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 45","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area 45","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area 45","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F45_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area 45","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 45.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area 45"],"datasets":[{"data":[{"x":0,"y":1460.5346},{"x":1,"y":1583.3308},{"x":2,"y":1708.1363},{"x":3,"y":1800.648},{"x":4,"y":1890.2756},{"x":5,"y":1984.8448},{"x":6,"y":2070.8684},{"x":7,"y":2152.0161},{"x":8,"y":2222.3149},{"x":9,"y":2291.0953},{"x":10,"y":2356.3471},{"x":11,"y":2423.0595},{"x":12,"y":2481.5627},{"x":13,"y":2528.1947},{"x":14,"y":2561.3445},{"x":15,"y":2579.1757},{"x":16,"y":2590.0611},{"x":17,"y":2599.5073},{"x":18,"y":2600.3773},{"x":19,"y":2596.3105},{"x":20,"y":2599.551},{"x":21,"y":2610.8303},{"x":22,"y":2630.3976},{"x":23,"y":2650.42},{"x":24,"y":2661.193},{"x":25,"y":2673.7478},{"x":26,"y":2696.2352},{"x":27,"y":2715.9422},{"x":28,"y":2722.3722},{"x":29,"y":2714.4745},{"x":30,"y":2696.9457},{"x":31,"y":2666.065},{"x":32,"y":2628.7015},{"x":33,"y":2586.6432},{"x":34,"y":2539.0687},{"x":35,"y":2492.0848},{"x":36,"y":2445.7293},{"x":37,"y":2401.4904},{"x":38,"y":2355.5708},{"x":39,"y":2307.831},{"x":40,"y":2266.8691},{"x":41,"y":2227.8105},{"x":42,"y":2189.3588},{"x":43,"y":2160.8589},{"x":44,"y":2138.9827},{"x":45,"y":2124.0153},{"x":46,"y":2112.5699},{"x":47,"y":2107.8888},{"x":48,"y":2115.4407},{"x":49,"y":2125.1132},{"x":50,"y":2134.312},{"x":51,"y":2144.0797},{"x":52,"y":2148.1026},{"x":53,"y":2140.9344},{"x":54,"y":2126.352},{"x":55,"y":2107.0662},{"x":56,"y":2080.8445},{"x":57,"y":2044.8838},{"x":58,"y":2005.5724},{"x":59,"y":1971.4869},{"x":60,"y":1945.5765},{"x":61,"y":1920.2847},{"x":62,"y":1903.216},{"x":63,"y":1896.7831},{"x":64,"y":1896.8248},{"x":65,"y":1896.7542},{"x":66,"y":1896.0333},{"x":67,"y":1898.1594},{"x":68,"y":1898.8414},{"x":69,"y":1898.7958},{"x":70,"y":1893.3436},{"x":71,"y":1883.2048},{"x":72,"y":1866.9435},{"x":73,"y":1852.3357},{"x":74,"y":1837.6232},{"x":75,"y":1820.6235},{"x":76,"y":1801.4688},{"x":77,"y":1781.3909},{"x":78,"y":1760.8147},{"x":79,"y":1739.6217},{"x":80,"y":1712.6818},{"x":81,"y":1684.8448},{"x":82,"y":1654.5207},{"x":83,"y":1621.3143},{"x":84,"y":1585.5909},{"x":85,"y":1547.395},{"x":86,"y":1511.2916},{"x":87,"y":1469.6548},{"x":88,"y":1430.0076},{"x":89,"y":1392.449},{"x":90,"y":1359.7888},{"x":91,"y":1325.4199},{"x":92,"y":1293.4337},{"x":93,"y":1259.0874},{"x":94,"y":1221.506},{"x":95,"y":1183.6323},{"x":96,"y":1148.2095},{"x":97,"y":1114.2643},{"x":98,"y":1083.8378},{"x":99,"y":1047.8342},{"x":100,"y":1012.4125}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area 45","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 45.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":327.8791},{"x":1,"y":341.1026},{"x":2,"y":351.617},{"x":3,"y":359.3051},{"x":4,"y":364.3489},{"x":5,"y":368.2543},{"x":6,"y":369.8121},{"x":7,"y":370.5904},{"x":8,"y":370.2079},{"x":9,"y":368.4334},{"x":10,"y":366.0463},{"x":11,"y":363.6573},{"x":12,"y":360.9928},{"x":13,"y":358.2906},{"x":14,"y":354.5059},{"x":15,"y":351.5285},{"x":16,"y":349.3263},{"x":17,"y":347.299},{"x":18,"y":344.9121},{"x":19,"y":342.3601},{"x":20,"y":339.4348},{"x":21,"y":337.1609},{"x":22,"y":334.8319},{"x":23,"y":332.476},{"x":24,"y":329.6532},{"x":25,"y":326.627},{"x":26,"y":323.0913},{"x":27,"y":319.9109},{"x":28,"y":316.3637},{"x":29,"y":313.8329},{"x":30,"y":312.1855},{"x":31,"y":309.8868},{"x":32,"y":307.8339},{"x":33,"y":305.3263},{"x":34,"y":303.0805},{"x":35,"y":300.7978},{"x":36,"y":297.37},{"x":37,"y":294.9973},{"x":38,"y":292.9894},{"x":39,"y":290.5998},{"x":40,"y":288.3233},{"x":41,"y":285.9239},{"x":42,"y":283.3922},{"x":43,"y":280.0843},{"x":44,"y":276.3924},{"x":45,"y":272.3486},{"x":46,"y":268.0093},{"x":47,"y":263.137},{"x":48,"y":257.545},{"x":49,"y":252.9017},{"x":50,"y":248.6916},{"x":51,"y":243.4231},{"x":52,"y":238.875},{"x":53,"y":235.322},{"x":54,"y":232.3812},{"x":55,"y":229.4491},{"x":56,"y":228.4114},{"x":57,"y":228.2313},{"x":58,"y":229.1504},{"x":59,"y":230.5842},{"x":60,"y":231.8071},{"x":61,"y":234.1302},{"x":62,"y":236.2096},{"x":63,"y":237.869},{"x":64,"y":239.9943},{"x":65,"y":242.0023},{"x":66,"y":242.9794},{"x":67,"y":243.8649},{"x":68,"y":244.8978},{"x":69,"y":245.1278},{"x":70,"y":245.4387},{"x":71,"y":245.8692},{"x":72,"y":246.3646},{"x":73,"y":246.9616},{"x":74,"y":247.4434},{"x":75,"y":247.6941},{"x":76,"y":248.3069},{"x":77,"y":248.0117},{"x":78,"y":248.1423},{"x":79,"y":248.4666},{"x":80,"y":247.758},{"x":81,"y":247.3917},{"x":82,"y":247.5765},{"x":83,"y":247.33},{"x":84,"y":246.4404},{"x":85,"y":245.1479},{"x":86,"y":243.0743},{"x":87,"y":239.8171},{"x":88,"y":237.5107},{"x":89,"y":234.2044},{"x":90,"y":229.576},{"x":91,"y":224.9077},{"x":92,"y":220.0178},{"x":93,"y":214.1619},{"x":94,"y":208.4733},{"x":95,"y":201.9736},{"x":96,"y":194.6076},{"x":97,"y":187.7017},{"x":98,"y":181.5218},{"x":99,"y":173.9228},{"x":100,"y":165.131}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 45.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":794.48},{"x":1,"y":940.5194},{"x":2,"y":1053.7778},{"x":3,"y":1138.8911},{"x":4,"y":1203.1464},{"x":5,"y":1267.0606},{"x":6,"y":1327.3684},{"x":7,"y":1379.3621},{"x":8,"y":1419.2054},{"x":9,"y":1446.2068},{"x":10,"y":1473.0183},{"x":11,"y":1492.259},{"x":12,"y":1518.4788},{"x":13,"y":1535.2658},{"x":14,"y":1544.8996},{"x":15,"y":1552.355},{"x":16,"y":1558.8289},{"x":17,"y":1564.4463},{"x":18,"y":1562.6365},{"x":19,"y":1559.8785},{"x":20,"y":1552.9332},{"x":21,"y":1554.6604},{"x":22,"y":1554.1087},{"x":23,"y":1560.5853},{"x":24,"y":1562.5948},{"x":25,"y":1571.5308},{"x":26,"y":1572.5263},{"x":27,"y":1574.6635},{"x":28,"y":1578.3071},{"x":29,"y":1580.245},{"x":30,"y":1576.3369},{"x":31,"y":1572.3838},{"x":32,"y":1560.6553},{"x":33,"y":1540.2516},{"x":34,"y":1528.7306},{"x":35,"y":1524.9832},{"x":36,"y":1519.8077},{"x":37,"y":1511.4899},{"x":38,"y":1496.5061},{"x":39,"y":1480.3498},{"x":40,"y":1458.8332},{"x":41,"y":1443.0229},{"x":42,"y":1435.5261},{"x":43,"y":1442.0053},{"x":44,"y":1444.9074},{"x":45,"y":1441.6402},{"x":46,"y":1431.2902},{"x":47,"y":1414.4441},{"x":48,"y":1386.7586},{"x":49,"y":1366.3089},{"x":50,"y":1356.5942},{"x":51,"y":1344.4671},{"x":52,"y":1347.008},{"x":53,"y":1353.9855},{"x":54,"y":1361.1103},{"x":55,"y":1370.0409},{"x":56,"y":1372.2204},{"x":57,"y":1368.4059},{"x":58,"y":1351.1588},{"x":59,"y":1322.46},{"x":60,"y":1289.138},{"x":61,"y":1265.448},{"x":62,"y":1254.4053},{"x":63,"y":1248.441},{"x":64,"y":1243.3412},{"x":65,"y":1237.8682},{"x":66,"y":1242.824},{"x":67,"y":1246.9858},{"x":68,"y":1263.4056},{"x":69,"y":1278.3532},{"x":70,"y":1288.1314},{"x":71,"y":1290.8899},{"x":72,"y":1292.9224},{"x":73,"y":1299.5247},{"x":74,"y":1303.8868},{"x":75,"y":1301.8321},{"x":76,"y":1300.349},{"x":77,"y":1296.586},{"x":78,"y":1289.4988},{"x":79,"y":1285.662},{"x":80,"y":1267.5848},{"x":81,"y":1257.3968},{"x":82,"y":1252.3141},{"x":83,"y":1241.438},{"x":84,"y":1222.7781},{"x":85,"y":1212.0271},{"x":86,"y":1190.7008},{"x":87,"y":1171.4413},{"x":88,"y":1155.1947},{"x":89,"y":1135.3368},{"x":90,"y":1119.4464},{"x":91,"y":1105.8203},{"x":92,"y":1095.4363},{"x":93,"y":1091.4803},{"x":94,"y":1087.1864},{"x":95,"y":1078.3759},{"x":96,"y":1066.9846},{"x":97,"y":1043.7603},{"x":98,"y":1004.485},{"x":99,"y":956.7271},{"x":100,"y":913.7368}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area 45","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 45.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":634.7955},{"x":1,"y":715.7687},{"x":2,"y":781.4727},{"x":3,"y":841.6638},{"x":4,"y":893.3103},{"x":5,"y":942.649},{"x":6,"y":985.8463},{"x":7,"y":1025.6416},{"x":8,"y":1062.7935},{"x":9,"y":1096.052},{"x":10,"y":1126.9579},{"x":11,"y":1153.8377},{"x":12,"y":1179.5711},{"x":13,"y":1201.6221},{"x":14,"y":1229.0763},{"x":15,"y":1253.4402},{"x":16,"y":1275.9424},{"x":17,"y":1296.356},{"x":18,"y":1314.8697},{"x":19,"y":1331.5639},{"x":20,"y":1347.287},{"x":21,"y":1360.9799},{"x":22,"y":1372.1697},{"x":23,"y":1380.9359},{"x":24,"y":1388.4395},{"x":25,"y":1392.0004},{"x":26,"y":1396.9711},{"x":27,"y":1401.0227},{"x":28,"y":1403.3993},{"x":29,"y":1404.9848},{"x":30,"y":1404.3766},{"x":31,"y":1402.9943},{"x":32,"y":1401.174},{"x":33,"y":1399.7365},{"x":34,"y":1397.613},{"x":35,"y":1394.3467},{"x":36,"y":1387.9961},{"x":37,"y":1379.3701},{"x":38,"y":1371.4225},{"x":39,"y":1358.4867},{"x":40,"y":1342.9006},{"x":41,"y":1327.155},{"x":42,"y":1315.2908},{"x":43,"y":1305.4578},{"x":44,"y":1295.1727},{"x":45,"y":1287.0624},{"x":46,"y":1278.0306},{"x":47,"y":1266.3693},{"x":48,"y":1257.2815},{"x":49,"y":1245.7491},{"x":50,"y":1235.1726},{"x":51,"y":1224.1686},{"x":52,"y":1208.1746},{"x":53,"y":1192.3328},{"x":54,"y":1177.2653},{"x":55,"y":1163.3418},{"x":56,"y":1147.4035},{"x":57,"y":1129.5419},{"x":58,"y":1114.4937},{"x":59,"y":1099.1838},{"x":60,"y":1086.0729},{"x":61,"y":1076.9446},{"x":62,"y":1070.4595},{"x":63,"y":1064.1696},{"x":64,"y":1058.0249},{"x":65,"y":1053.0802},{"x":66,"y":1044.8731},{"x":67,"y":1035.0001},{"x":68,"y":1023.007},{"x":69,"y":1006.423},{"x":70,"y":991.4522},{"x":71,"y":978.5116},{"x":72,"y":967.3209},{"x":73,"y":956.6532},{"x":74,"y":947.8532},{"x":75,"y":941.6319},{"x":76,"y":935.5573},{"x":77,"y":930.03},{"x":78,"y":926.5992},{"x":79,"y":925.0053},{"x":80,"y":920.6719},{"x":81,"y":918.1176},{"x":82,"y":915.8306},{"x":83,"y":914.1149},{"x":84,"y":913.2848},{"x":85,"y":911.3195},{"x":86,"y":910.1863},{"x":87,"y":905.2434},{"x":88,"y":899.6303},{"x":89,"y":892.9108},{"x":90,"y":884.336},{"x":91,"y":875.9214},{"x":92,"y":868.2849},{"x":93,"y":858.6831},{"x":94,"y":847.3264},{"x":95,"y":832.4932},{"x":96,"y":815.744},{"x":97,"y":799.3396},{"x":98,"y":779.2884},{"x":99,"y":760.3062},{"x":100,"y":740.1593}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 45","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 45.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":469.4491},{"x":1,"y":565.3924},{"x":2,"y":649.6494},{"x":3,"y":706.2583},{"x":4,"y":752.2487},{"x":5,"y":781.4631},{"x":6,"y":799.2048},{"x":7,"y":819.3022},{"x":8,"y":834.5061},{"x":9,"y":846.5419},{"x":10,"y":850.3304},{"x":11,"y":854.2942},{"x":12,"y":862.9013},{"x":13,"y":871.4134},{"x":14,"y":878.3993},{"x":15,"y":887.5916},{"x":16,"y":894.3492},{"x":17,"y":897.555},{"x":18,"y":897.5188},{"x":19,"y":890.8574},{"x":20,"y":873.5223},{"x":21,"y":862.6063},{"x":22,"y":855.4998},{"x":23,"y":851.1521},{"x":24,"y":848.3233},{"x":25,"y":841.817},{"x":26,"y":830.2764},{"x":27,"y":822.4912},{"x":28,"y":823.464},{"x":29,"y":820.342},{"x":30,"y":808.145},{"x":31,"y":801.8473},{"x":32,"y":799.092},{"x":33,"y":782.1962},{"x":34,"y":767.9729},{"x":35,"y":758.9476},{"x":36,"y":745.7124},{"x":37,"y":733.059},{"x":38,"y":712.6502},{"x":39,"y":703.5573},{"x":40,"y":698.6915},{"x":41,"y":692.2061},{"x":42,"y":690.6356},{"x":43,"y":685.4944},{"x":44,"y":679.0913},{"x":45,"y":675.183},{"x":46,"y":664.7518},{"x":47,"y":652.0746},{"x":48,"y":641.0708},{"x":49,"y":634.0346},{"x":50,"y":628.3031},{"x":51,"y":616.9945},{"x":52,"y":601.6129},{"x":53,"y":591.6409},{"x":54,"y":585.105},{"x":55,"y":577.5199},{"x":56,"y":566.2117},{"x":57,"y":567.1189},{"x":58,"y":577.0754},{"x":59,"y":584.2058},{"x":60,"y":582.6771},{"x":61,"y":584.2724},{"x":62,"y":585.7733},{"x":63,"y":587.1189},{"x":64,"y":581.0198},{"x":65,"y":578.8378},{"x":66,"y":579.3392},{"x":67,"y":575.0687},{"x":68,"y":562.4258},{"x":69,"y":547.4474},{"x":70,"y":534.9731},{"x":71,"y":522.2081},{"x":72,"y":516.2615},{"x":73,"y":504.3176},{"x":74,"y":493.2196},{"x":75,"y":485.6598},{"x":76,"y":480.8628},{"x":77,"y":476.1611},{"x":78,"y":469.3088},{"x":79,"y":462.6646},{"x":80,"y":457.6205},{"x":81,"y":452.4885},{"x":82,"y":450.9453},{"x":83,"y":452.5669},{"x":84,"y":445.114},{"x":85,"y":438.5897},{"x":86,"y":426.6008},{"x":87,"y":409.3276},{"x":88,"y":395.8666},{"x":89,"y":372.2243},{"x":90,"y":344.2449},{"x":91,"y":321.0722},{"x":92,"y":301.7635},{"x":93,"y":283.1574},{"x":94,"y":267.6314},{"x":95,"y":259.9897},{"x":96,"y":252.0991},{"x":97,"y":243.6278},{"x":98,"y":235.2602},{"x":99,"y":221.5029},{"x":100,"y":207.5209}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 45.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":13.2101},{"x":1,"y":15.6055},{"x":2,"y":17.279},{"x":3,"y":19.2977},{"x":4,"y":21.3187},{"x":5,"y":23.1311},{"x":6,"y":26.4183},{"x":7,"y":28.5334},{"x":8,"y":28.7524},{"x":9,"y":29.8097},{"x":10,"y":30.7849},{"x":11,"y":30.8247},{"x":12,"y":30.2471},{"x":13,"y":28.7272},{"x":14,"y":27.1162},{"x":15,"y":26.1655},{"x":16,"y":26.1373},{"x":17,"y":26.6089},{"x":18,"y":26.8998},{"x":19,"y":27.1571},{"x":20,"y":27.271},{"x":21,"y":27.3772},{"x":22,"y":27.5579},{"x":23,"y":27.463},{"x":24,"y":27.2674},{"x":25,"y":27.3969},{"x":26,"y":28.0425},{"x":27,"y":29.0192},{"x":28,"y":29.6249},{"x":29,"y":30.4451},{"x":30,"y":30.3474},{"x":31,"y":31.8173},{"x":32,"y":32.6919},{"x":33,"y":32.9726},{"x":34,"y":33.1706},{"x":35,"y":33.6537},{"x":36,"y":33.4897},{"x":37,"y":33.6151},{"x":38,"y":33.682},{"x":39,"y":33.3453},{"x":40,"y":32.3363},{"x":41,"y":31.7709},{"x":42,"y":30.8566},{"x":43,"y":30.3814},{"x":44,"y":30.7077},{"x":45,"y":30.5846},{"x":46,"y":30.4693},{"x":47,"y":29.9682},{"x":48,"y":29.9551},{"x":49,"y":29.3887},{"x":50,"y":29.3968},{"x":51,"y":30.2142},{"x":52,"y":30.3134},{"x":53,"y":30.1211},{"x":54,"y":29.7808},{"x":55,"y":29.2502},{"x":56,"y":28.5542},{"x":57,"y":28.1366},{"x":58,"y":28.7265},{"x":59,"y":29.1477},{"x":60,"y":29.6566},{"x":61,"y":29.5394},{"x":62,"y":29.0037},{"x":63,"y":28.3007},{"x":64,"y":27.6114},{"x":65,"y":28.3795},{"x":66,"y":29.7751},{"x":67,"y":29.5407},{"x":68,"y":28.8095},{"x":69,"y":28.3867},{"x":70,"y":29.0855},{"x":71,"y":28.9202},{"x":72,"y":28.5972},{"x":73,"y":27.7725},{"x":74,"y":27.6129},{"x":75,"y":27.3254},{"x":76,"y":27.9318},{"x":77,"y":28.2839},{"x":78,"y":29.1676},{"x":79,"y":30.1504},{"x":80,"y":30.9573},{"x":81,"y":31.6251},{"x":82,"y":31.6644},{"x":83,"y":31.6194},{"x":84,"y":31.734},{"x":85,"y":32.0767},{"x":86,"y":32.0147},{"x":87,"y":32.4512},{"x":88,"y":32.5375},{"x":89,"y":31.6079},{"x":90,"y":30.9472},{"x":91,"y":30.4269},{"x":92,"y":30.384},{"x":93,"y":30.8271},{"x":94,"y":30.6763},{"x":95,"y":29.2631},{"x":96,"y":27.2017},{"x":97,"y":26.1304},{"x":98,"y":24.631},{"x":99,"y":23.3251},{"x":100,"y":22.6634}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area 45","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 45.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":381.9101},{"x":1,"y":436.8927},{"x":2,"y":478.9781},{"x":3,"y":506.1044},{"x":4,"y":520.4062},{"x":5,"y":533.0569},{"x":6,"y":549.4602},{"x":7,"y":566.1098},{"x":8,"y":578.5351},{"x":9,"y":585.9845},{"x":10,"y":587.9969},{"x":11,"y":588.5602},{"x":12,"y":589.9104},{"x":13,"y":587.9436},{"x":14,"y":586.9858},{"x":15,"y":584.7292},{"x":16,"y":581.5806},{"x":17,"y":580.4543},{"x":18,"y":577.1911},{"x":19,"y":572.4089},{"x":20,"y":567.5581},{"x":21,"y":567.5312},{"x":22,"y":566.414},{"x":23,"y":563.5261},{"x":24,"y":562.8925},{"x":25,"y":559.6155},{"x":26,"y":561.1417},{"x":27,"y":561.2087},{"x":28,"y":561.1357},{"x":29,"y":562.8276},{"x":30,"y":561.7152},{"x":31,"y":559.0178},{"x":32,"y":555.3889},{"x":33,"y":550.7541},{"x":34,"y":539.5945},{"x":35,"y":529.6209},{"x":36,"y":524.797},{"x":37,"y":523.7451},{"x":38,"y":520.7351},{"x":39,"y":514.339},{"x":40,"y":504.8223},{"x":41,"y":496.7218},{"x":42,"y":497.2493},{"x":43,"y":494.5142},{"x":44,"y":492.4384},{"x":45,"y":494.3176},{"x":46,"y":495.8264},{"x":47,"y":499.0646},{"x":48,"y":498.9326},{"x":49,"y":501.257},{"x":50,"y":504.9812},{"x":51,"y":506.9896},{"x":52,"y":509.9079},{"x":53,"y":509.6259},{"x":54,"y":510.1441},{"x":55,"y":512.866},{"x":56,"y":516.1428},{"x":57,"y":520.7067},{"x":58,"y":519.7416},{"x":59,"y":518.1057},{"x":60,"y":512.3378},{"x":61,"y":506.6333},{"x":62,"y":498.6401},{"x":63,"y":490.7246},{"x":64,"y":481.579},{"x":65,"y":479.2424},{"x":66,"y":483.5324},{"x":67,"y":488.5284},{"x":68,"y":493.0161},{"x":69,"y":497.8114},{"x":70,"y":496.7059},{"x":71,"y":494.195},{"x":72,"y":495.16},{"x":73,"y":500.0311},{"x":74,"y":509.392},{"x":75,"y":519.6998},{"x":76,"y":525.8513},{"x":77,"y":532.4273},{"x":78,"y":539.4819},{"x":79,"y":543.8892},{"x":80,"y":549.4755},{"x":81,"y":548.9542},{"x":82,"y":546.5351},{"x":83,"y":540.1034},{"x":84,"y":531.8678},{"x":85,"y":525.7068},{"x":86,"y":520.4424},{"x":87,"y":510.6088},{"x":88,"y":503.5733},{"x":89,"y":494.3613},{"x":90,"y":482.2789},{"x":91,"y":471.8525},{"x":92,"y":459.313},{"x":93,"y":443.7903},{"x":94,"y":430.1989},{"x":95,"y":413.6311},{"x":96,"y":405.3675},{"x":97,"y":387.6068},{"x":98,"y":373.6256},{"x":99,"y":362.4871},{"x":100,"y":350.1698}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area 45","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 45.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":446.4682},{"x":1,"y":478.6471},{"x":2,"y":509.2584},{"x":3,"y":540.6435},{"x":4,"y":566.3428},{"x":5,"y":588.0512},{"x":6,"y":608.3105},{"x":7,"y":625.0107},{"x":8,"y":636.1673},{"x":9,"y":643.9884},{"x":10,"y":648.3029},{"x":11,"y":649.924},{"x":12,"y":647.4576},{"x":13,"y":642.3212},{"x":14,"y":634.378},{"x":15,"y":622.8576},{"x":16,"y":607.448},{"x":17,"y":590.2758},{"x":18,"y":571.8925},{"x":19,"y":553.8814},{"x":20,"y":535.8393},{"x":21,"y":515.5943},{"x":22,"y":497.1233},{"x":23,"y":479.3945},{"x":24,"y":459.785},{"x":25,"y":438.6457},{"x":26,"y":417.0415},{"x":27,"y":396.816},{"x":28,"y":372.5078},{"x":29,"y":349.9618},{"x":30,"y":328.4453},{"x":31,"y":306.9185},{"x":32,"y":284.8545},{"x":33,"y":263.7074},{"x":34,"y":242.3922},{"x":35,"y":222.3236},{"x":36,"y":201.4712},{"x":37,"y":183.0173},{"x":38,"y":168.4927},{"x":39,"y":157.2917},{"x":40,"y":147.5868},{"x":41,"y":138.0575},{"x":42,"y":129.3287},{"x":43,"y":122.5712},{"x":44,"y":115.2238},{"x":45,"y":108.158},{"x":46,"y":103.2221},{"x":47,"y":98.3181},{"x":48,"y":94.6898},{"x":49,"y":93.0116},{"x":50,"y":91.8996},{"x":51,"y":92.8934},{"x":52,"y":94.2564},{"x":53,"y":95.806},{"x":54,"y":97.0351},{"x":55,"y":99.1721},{"x":56,"y":101.208},{"x":57,"y":103.449},{"x":58,"y":105.6208},{"x":59,"y":109.1625},{"x":60,"y":113.0543},{"x":61,"y":116.162},{"x":62,"y":119.7928},{"x":63,"y":123.3744},{"x":64,"y":129.2577},{"x":65,"y":132.9809},{"x":66,"y":136.5838},{"x":67,"y":139.6859},{"x":68,"y":141.8055},{"x":69,"y":142.7797},{"x":70,"y":144.2386},{"x":71,"y":145.6713},{"x":72,"y":146.4523},{"x":73,"y":147.8483},{"x":74,"y":150.8827},{"x":75,"y":154.3874},{"x":76,"y":158.0307},{"x":77,"y":162.4452},{"x":78,"y":166.3661},{"x":79,"y":167.4467},{"x":80,"y":167.673},{"x":81,"y":167.0871},{"x":82,"y":165.8395},{"x":83,"y":164.3776},{"x":84,"y":164.2927},{"x":85,"y":165.2644},{"x":86,"y":166.9129},{"x":87,"y":168.346},{"x":88,"y":169.7038},{"x":89,"y":170.2005},{"x":90,"y":169.9151},{"x":91,"y":166.5571},{"x":92,"y":163.6538},{"x":93,"y":161.3259},{"x":94,"y":157.0934},{"x":95,"y":153.4914},{"x":96,"y":149.4574},{"x":97,"y":145.4651},{"x":98,"y":142.6291},{"x":99,"y":138.3102},{"x":100,"y":135.5216}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 45","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 45.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":128.2432},{"x":1,"y":133.4718},{"x":2,"y":137.4436},{"x":3,"y":141.3498},{"x":4,"y":144.5227},{"x":5,"y":150.0921},{"x":6,"y":151.1739},{"x":7,"y":156.9486},{"x":8,"y":158.6138},{"x":9,"y":160.1789},{"x":10,"y":158.062},{"x":11,"y":157.9045},{"x":12,"y":159.4278},{"x":13,"y":157.4277},{"x":14,"y":156.3406},{"x":15,"y":155.6615},{"x":16,"y":155.8074},{"x":17,"y":154.9571},{"x":18,"y":151.5084},{"x":19,"y":148.7766},{"x":20,"y":147.8011},{"x":21,"y":149.441},{"x":22,"y":149.1402},{"x":23,"y":147.3879},{"x":24,"y":145.9776},{"x":25,"y":147.4142},{"x":26,"y":149.2054},{"x":27,"y":149.8993},{"x":28,"y":150.6654},{"x":29,"y":152.7007},{"x":30,"y":154.1278},{"x":31,"y":152.3247},{"x":32,"y":149.1021},{"x":33,"y":148.4685},{"x":34,"y":147.7671},{"x":35,"y":148.5821},{"x":36,"y":148.9318},{"x":37,"y":150.0955},{"x":38,"y":152.7142},{"x":39,"y":154.7568},{"x":40,"y":158.9343},{"x":41,"y":160.7979},{"x":42,"y":162.3624},{"x":43,"y":166.3793},{"x":44,"y":168.8671},{"x":45,"y":173.4001},{"x":46,"y":177.4207},{"x":47,"y":181.5218},{"x":48,"y":187.0071},{"x":49,"y":188.0529},{"x":50,"y":188.0249},{"x":51,"y":189.9901},{"x":52,"y":190.2867},{"x":53,"y":192.1188},{"x":54,"y":202.2524},{"x":55,"y":210.0858},{"x":56,"y":215.743},{"x":57,"y":217.8028},{"x":58,"y":223.8773},{"x":59,"y":228.4059},{"x":60,"y":229.7807},{"x":61,"y":229.2109},{"x":62,"y":230.6402},{"x":63,"y":232.917},{"x":64,"y":235.4387},{"x":65,"y":236.6682},{"x":66,"y":237.4886},{"x":67,"y":241.6481},{"x":68,"y":244.9507},{"x":69,"y":245.65},{"x":70,"y":248.3345},{"x":71,"y":250.5447},{"x":72,"y":256.2273},{"x":73,"y":259.1402},{"x":74,"y":257.6825},{"x":75,"y":257.2173},{"x":76,"y":259.8811},{"x":77,"y":260.9476},{"x":78,"y":262.6104},{"x":79,"y":264.0823},{"x":80,"y":262.1313},{"x":81,"y":260.4572},{"x":82,"y":259.0434},{"x":83,"y":258.0762},{"x":84,"y":255.4195},{"x":85,"y":252.788},{"x":86,"y":251.6301},{"x":87,"y":253.008},{"x":88,"y":254.917},{"x":89,"y":255.733},{"x":90,"y":256.2008},{"x":91,"y":253.5028},{"x":92,"y":247.748},{"x":93,"y":243.7458},{"x":94,"y":236.6708},{"x":95,"y":231.8607},{"x":96,"y":229.1243},{"x":97,"y":222.6816},{"x":98,"y":216.0715},{"x":99,"y":207.8698},{"x":100,"y":198.6453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area 45","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 45.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":148.2509},{"x":1,"y":160.4788},{"x":2,"y":172.7641},{"x":3,"y":188.286},{"x":4,"y":202.4919},{"x":5,"y":211.0979},{"x":6,"y":217.7748},{"x":7,"y":225.6758},{"x":8,"y":233.2973},{"x":9,"y":238.0511},{"x":10,"y":242.8574},{"x":11,"y":246.1199},{"x":12,"y":248.1379},{"x":13,"y":250.3073},{"x":14,"y":253.4073},{"x":15,"y":255.9217},{"x":16,"y":255.3769},{"x":17,"y":256.2855},{"x":18,"y":256.7336},{"x":19,"y":255.8608},{"x":20,"y":255.5498},{"x":21,"y":257.467},{"x":22,"y":257.1439},{"x":23,"y":256.9265},{"x":24,"y":257.0385},{"x":25,"y":257.6207},{"x":26,"y":260.1275},{"x":27,"y":260.2744},{"x":28,"y":258.071},{"x":29,"y":258.9127},{"x":30,"y":258.0414},{"x":31,"y":256.9024},{"x":32,"y":255.1509},{"x":33,"y":255.3897},{"x":34,"y":254.6337},{"x":35,"y":254.2197},{"x":36,"y":252.7252},{"x":37,"y":251.3689},{"x":38,"y":250.0491},{"x":39,"y":249.2892},{"x":40,"y":250.3386},{"x":41,"y":252.2995},{"x":42,"y":254.0825},{"x":43,"y":254.6392},{"x":44,"y":255.3837},{"x":45,"y":255.833},{"x":46,"y":257.2473},{"x":47,"y":258.6471},{"x":48,"y":259.0378},{"x":49,"y":257.0129},{"x":50,"y":257.6312},{"x":51,"y":257.436},{"x":52,"y":258.2143},{"x":53,"y":258.2644},{"x":54,"y":257.8273},{"x":55,"y":258.1356},{"x":56,"y":257.5567},{"x":57,"y":256.1952},{"x":58,"y":256.4853},{"x":59,"y":258.2186},{"x":60,"y":260.9326},{"x":61,"y":262.1186},{"x":62,"y":262.9369},{"x":63,"y":261.639},{"x":64,"y":260.6033},{"x":65,"y":260.9028},{"x":66,"y":259.535},{"x":67,"y":259.6838},{"x":68,"y":258.9229},{"x":69,"y":258.0758},{"x":70,"y":255.9138},{"x":71,"y":253.6645},{"x":72,"y":252.8365},{"x":73,"y":252.5917},{"x":74,"y":249.7885},{"x":75,"y":248.9866},{"x":76,"y":249.7967},{"x":77,"y":249.386},{"x":78,"y":246.1164},{"x":79,"y":244.1496},{"x":80,"y":244.03},{"x":81,"y":242.4811},{"x":82,"y":241.1196},{"x":83,"y":239.2815},{"x":84,"y":235.9196},{"x":85,"y":232.4495},{"x":86,"y":228.9631},{"x":87,"y":226.325},{"x":88,"y":223.5355},{"x":89,"y":220.0405},{"x":90,"y":216.8779},{"x":91,"y":214.3161},{"x":92,"y":209.9348},{"x":93,"y":203.217},{"x":94,"y":195.4991},{"x":95,"y":187.8444},{"x":96,"y":181.5077},{"x":97,"y":172.7914},{"x":98,"y":162.8512},{"x":99,"y":154.3011},{"x":100,"y":147.3262}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 45.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":363.1229},{"x":1,"y":387.8446},{"x":2,"y":412.6686},{"x":3,"y":435.4615},{"x":4,"y":459.3812},{"x":5,"y":478.3833},{"x":6,"y":491.5823},{"x":7,"y":501.6668},{"x":8,"y":507.1233},{"x":9,"y":507.0855},{"x":10,"y":502.6994},{"x":11,"y":496.5091},{"x":12,"y":487.0889},{"x":13,"y":479.0364},{"x":14,"y":473.6371},{"x":15,"y":465.5097},{"x":16,"y":457.15},{"x":17,"y":450.4011},{"x":18,"y":443.7644},{"x":19,"y":436.2319},{"x":20,"y":428.6994},{"x":21,"y":419.0023},{"x":22,"y":411.1127},{"x":23,"y":405.6558},{"x":24,"y":401.1618},{"x":25,"y":399.5792},{"x":26,"y":402.3016},{"x":27,"y":408.1729},{"x":28,"y":412.7131},{"x":29,"y":411.2129},{"x":30,"y":404.6575},{"x":31,"y":398.4513},{"x":32,"y":389.7323},{"x":33,"y":378.2357},{"x":34,"y":365.5536},{"x":35,"y":350.043},{"x":36,"y":337.0479},{"x":37,"y":325.1481},{"x":38,"y":309.7302},{"x":39,"y":293.6685},{"x":40,"y":278.9523},{"x":41,"y":265.2233},{"x":42,"y":255.5226},{"x":43,"y":249.5831},{"x":44,"y":247.6395},{"x":45,"y":246.6937},{"x":46,"y":242.4396},{"x":47,"y":239.6172},{"x":48,"y":238.1692},{"x":49,"y":237.5023},{"x":50,"y":238.0605},{"x":51,"y":235.9509},{"x":52,"y":234.4507},{"x":53,"y":230.1675},{"x":54,"y":229.9983},{"x":55,"y":233.2483},{"x":56,"y":234.0215},{"x":57,"y":236.4597},{"x":58,"y":237.7025},{"x":59,"y":237.5634},{"x":60,"y":238.2972},{"x":61,"y":240.7975},{"x":62,"y":241.8165},{"x":63,"y":243.0112},{"x":64,"y":241.311},{"x":65,"y":238.9827},{"x":66,"y":239.6403},{"x":67,"y":239.7592},{"x":68,"y":241.4406},{"x":69,"y":244.8075},{"x":70,"y":248.7895},{"x":71,"y":252.1568},{"x":72,"y":254.1116},{"x":73,"y":257.2797},{"x":74,"y":259.2491},{"x":75,"y":262.5645},{"x":76,"y":269.9665},{"x":77,"y":274.6952},{"x":78,"y":280.4762},{"x":79,"y":288.2045},{"x":80,"y":292.5784},{"x":81,"y":297.4214},{"x":82,"y":299.5389},{"x":83,"y":298.7706},{"x":84,"y":298.3684},{"x":85,"y":294.9061},{"x":86,"y":291.7974},{"x":87,"y":288.7943},{"x":88,"y":284.1133},{"x":89,"y":281.039},{"x":90,"y":273.96},{"x":91,"y":269.7795},{"x":92,"y":266.2041},{"x":93,"y":263.1902},{"x":94,"y":259.2016},{"x":95,"y":253.2865},{"x":96,"y":249.3632},{"x":97,"y":241.6962},{"x":98,"y":236.1636},{"x":99,"y":229.2335},{"x":100,"y":220.5767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area 45","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 45.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area 45"],"datasets":[{"data":[{"x":0,"y":78.1084},{"x":1,"y":84.9645},{"x":2,"y":91.0532},{"x":3,"y":95.5791},{"x":4,"y":98.3777},{"x":5,"y":100.4353},{"x":6,"y":102.0098},{"x":7,"y":103.4378},{"x":8,"y":105.096},{"x":9,"y":106.5489},{"x":10,"y":107.8973},{"x":11,"y":108.5222},{"x":12,"y":108.471},{"x":13,"y":108.2248},{"x":14,"y":108.2734},{"x":15,"y":108.043},{"x":16,"y":107.8699},{"x":17,"y":107.6634},{"x":18,"y":107.6015},{"x":19,"y":107.1348},{"x":20,"y":106.8158},{"x":21,"y":106.8694},{"x":22,"y":107.5786},{"x":23,"y":108.7444},{"x":24,"y":109.4443},{"x":25,"y":109.7067},{"x":26,"y":109.8513},{"x":27,"y":109.3219},{"x":28,"y":108.7429},{"x":29,"y":108.1614},{"x":30,"y":107.9891},{"x":31,"y":106.603},{"x":32,"y":105.6344},{"x":33,"y":104.8022},{"x":34,"y":104.1244},{"x":35,"y":103.1104},{"x":36,"y":102.3964},{"x":37,"y":102.7234},{"x":38,"y":103.6768},{"x":39,"y":104.0412},{"x":40,"y":104.2372},{"x":41,"y":104.2372},{"x":42,"y":104.5237},{"x":43,"y":104.2933},{"x":44,"y":104.0511},{"x":45,"y":103.0073},{"x":46,"y":102.6726},{"x":47,"y":102.1502},{"x":48,"y":101.7177},{"x":49,"y":101.6195},{"x":50,"y":102.3458},{"x":51,"y":102.4462},{"x":52,"y":101.9925},{"x":53,"y":101.934},{"x":54,"y":101.8345},{"x":55,"y":101.7546},{"x":56,"y":101.7766},{"x":57,"y":101.8297},{"x":58,"y":101.925},{"x":59,"y":101.5507},{"x":60,"y":101.6761},{"x":61,"y":101.4481},{"x":62,"y":100.8504},{"x":63,"y":100.0694},{"x":64,"y":99.1571},{"x":65,"y":97.7408},{"x":66,"y":96.8638},{"x":67,"y":95.7591},{"x":68,"y":93.8969},{"x":69,"y":91.8417},{"x":70,"y":90.107},{"x":71,"y":89.1044},{"x":72,"y":87.4652},{"x":73,"y":85.9192},{"x":74,"y":84.9756},{"x":75,"y":83.969},{"x":76,"y":83.6151},{"x":77,"y":83.4688},{"x":78,"y":83.5502},{"x":79,"y":83.3848},{"x":80,"y":83.4078},{"x":81,"y":83.0115},{"x":82,"y":82.5122},{"x":83,"y":81.9019},{"x":84,"y":80.5658},{"x":85,"y":79.442},{"x":86,"y":78.2936},{"x":87,"y":77.4462},{"x":88,"y":76.4354},{"x":89,"y":74.5846},{"x":90,"y":72.1056},{"x":91,"y":70.1597},{"x":92,"y":68.7571},{"x":93,"y":66.9971},{"x":94,"y":65.6739},{"x":95,"y":64.3799},{"x":96,"y":63.1736},{"x":97,"y":61.0219},{"x":98,"y":58.9807},{"x":99,"y":57.1969},{"x":100,"y":54.9126}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 45","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 45.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":242.4714},{"x":1,"y":250.7951},{"x":2,"y":259.7815},{"x":3,"y":268.408},{"x":4,"y":275.2378},{"x":5,"y":280.239},{"x":6,"y":283.9212},{"x":7,"y":285.7811},{"x":8,"y":286.0227},{"x":9,"y":286.4763},{"x":10,"y":286.4911},{"x":11,"y":286.4111},{"x":12,"y":286.1154},{"x":13,"y":285.4677},{"x":14,"y":285.0456},{"x":15,"y":284.5767},{"x":16,"y":284.1206},{"x":17,"y":283.1973},{"x":18,"y":282.7552},{"x":19,"y":282.0832},{"x":20,"y":280.6612},{"x":21,"y":278.8055},{"x":22,"y":277.1465},{"x":23,"y":276.0516},{"x":24,"y":274.833},{"x":25,"y":274.214},{"x":26,"y":274.0571},{"x":27,"y":273.5409},{"x":28,"y":272.419},{"x":29,"y":271.9615},{"x":30,"y":271.0815},{"x":31,"y":269.8926},{"x":32,"y":267.7079},{"x":33,"y":265.4575},{"x":34,"y":263.6548},{"x":35,"y":261.6827},{"x":36,"y":259.2279},{"x":37,"y":256.5618},{"x":38,"y":253.571},{"x":39,"y":249.8624},{"x":40,"y":246.2392},{"x":41,"y":242.1144},{"x":42,"y":238.5763},{"x":43,"y":236.484},{"x":44,"y":234.5967},{"x":45,"y":232.173},{"x":46,"y":229.5571},{"x":47,"y":227.0632},{"x":48,"y":224.5747},{"x":49,"y":222.4277},{"x":50,"y":220.5809},{"x":51,"y":219.0437},{"x":52,"y":217.7184},{"x":53,"y":217.0493},{"x":54,"y":216.2636},{"x":55,"y":215.6882},{"x":56,"y":215.3476},{"x":57,"y":216.0696},{"x":58,"y":216.3634},{"x":59,"y":216.7627},{"x":60,"y":216.4955},{"x":61,"y":216.5857},{"x":62,"y":215.5667},{"x":63,"y":213.578},{"x":64,"y":212.1659},{"x":65,"y":209.9465},{"x":66,"y":208.2169},{"x":67,"y":207.2508},{"x":68,"y":206.4585},{"x":69,"y":205.6267},{"x":70,"y":205.8085},{"x":71,"y":205.7924},{"x":72,"y":205.6573},{"x":73,"y":205.6143},{"x":74,"y":205.8285},{"x":75,"y":205.8996},{"x":76,"y":205.2856},{"x":77,"y":204.803},{"x":78,"y":203.5548},{"x":79,"y":202.6549},{"x":80,"y":201.3211},{"x":81,"y":200.1485},{"x":82,"y":199.6121},{"x":83,"y":199.7426},{"x":84,"y":199.7115},{"x":85,"y":199.7334},{"x":86,"y":199.8951},{"x":87,"y":200.3864},{"x":88,"y":200.3858},{"x":89,"y":200.0216},{"x":90,"y":200.2697},{"x":91,"y":199.6195},{"x":92,"y":197.5551},{"x":93,"y":195.1741},{"x":94,"y":191.6469},{"x":95,"y":188.0536},{"x":96,"y":185.0563},{"x":97,"y":181.4895},{"x":98,"y":178.9988},{"x":99,"y":176.4345},{"x":100,"y":173.4422}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 45.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":2329.1235},{"x":1,"y":2525.8177},{"x":2,"y":2663.7145},{"x":3,"y":2780.8164},{"x":4,"y":2872.1168},{"x":5,"y":2933.5586},{"x":6,"y":2969.7929},{"x":7,"y":3014.8606},{"x":8,"y":3041.0337},{"x":9,"y":3062.6667},{"x":10,"y":3082.1499},{"x":11,"y":3103.616},{"x":12,"y":3119.5096},{"x":13,"y":3137.6468},{"x":14,"y":3150.0613},{"x":15,"y":3166.116},{"x":16,"y":3182.8989},{"x":17,"y":3188.6492},{"x":18,"y":3188.1948},{"x":19,"y":3188.0656},{"x":20,"y":3187.0585},{"x":21,"y":3180.8013},{"x":22,"y":3173.0829},{"x":23,"y":3163.6916},{"x":24,"y":3142.0249},{"x":25,"y":3117.5816},{"x":26,"y":3091.4563},{"x":27,"y":3057.6253},{"x":28,"y":3027.5128},{"x":29,"y":3003.6084},{"x":30,"y":2995.6601},{"x":31,"y":2984.5468},{"x":32,"y":2976.7859},{"x":33,"y":2967.3817},{"x":34,"y":2956.0409},{"x":35,"y":2939.6534},{"x":36,"y":2923.1503},{"x":37,"y":2917.5128},{"x":38,"y":2910.8969},{"x":39,"y":2902.394},{"x":40,"y":2889.0886},{"x":41,"y":2881.9775},{"x":42,"y":2875.0169},{"x":43,"y":2853.1159},{"x":44,"y":2820.7971},{"x":45,"y":2791.7109},{"x":46,"y":2758.1112},{"x":47,"y":2728.1731},{"x":48,"y":2685.1843},{"x":49,"y":2642.4576},{"x":50,"y":2608.4185},{"x":51,"y":2578.6758},{"x":52,"y":2547.2736},{"x":53,"y":2508.4241},{"x":54,"y":2463.5647},{"x":55,"y":2425.1331},{"x":56,"y":2383.5863},{"x":57,"y":2338.9373},{"x":58,"y":2302.3089},{"x":59,"y":2265.7624},{"x":60,"y":2225.8775},{"x":61,"y":2177.8831},{"x":62,"y":2139.7348},{"x":63,"y":2091.8873},{"x":64,"y":2043.7491},{"x":65,"y":2001.6689},{"x":66,"y":1957.9636},{"x":67,"y":1918.2625},{"x":68,"y":1868.5604},{"x":69,"y":1828.4216},{"x":70,"y":1790.7205},{"x":71,"y":1759.1246},{"x":72,"y":1736.3443},{"x":73,"y":1708.2351},{"x":74,"y":1685.7374},{"x":75,"y":1661.7608},{"x":76,"y":1637.0638},{"x":77,"y":1618.0377},{"x":78,"y":1610.9442},{"x":79,"y":1600.5609},{"x":80,"y":1588.0873},{"x":81,"y":1577.4166},{"x":82,"y":1555.6453},{"x":83,"y":1538.047},{"x":84,"y":1517.906},{"x":85,"y":1500.8983},{"x":86,"y":1486.9246},{"x":87,"y":1469.6974},{"x":88,"y":1457.2807},{"x":89,"y":1434.636},{"x":90,"y":1400.474},{"x":91,"y":1349.5559},{"x":92,"y":1290.592},{"x":93,"y":1240.8654},{"x":94,"y":1186.2181},{"x":95,"y":1128.2174},{"x":96,"y":1072.6946},{"x":97,"y":1025.0802},{"x":98,"y":969.9934},{"x":99,"y":915.1584},{"x":100,"y":855.2369}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area 45","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 45.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":288.9923},{"x":1,"y":309.7773},{"x":2,"y":328.8126},{"x":3,"y":345.6034},{"x":4,"y":358.1815},{"x":5,"y":366.2937},{"x":6,"y":372.7815},{"x":7,"y":376.1244},{"x":8,"y":378.2773},{"x":9,"y":380.2499},{"x":10,"y":381.7339},{"x":11,"y":382.5514},{"x":12,"y":384.1955},{"x":13,"y":385.053},{"x":14,"y":387.5857},{"x":15,"y":390.0167},{"x":16,"y":393.3792},{"x":17,"y":397.0094},{"x":18,"y":400.449},{"x":19,"y":404.9659},{"x":20,"y":409.1248},{"x":21,"y":413.3365},{"x":22,"y":415.7244},{"x":23,"y":417.682},{"x":24,"y":418.4909},{"x":25,"y":419.2575},{"x":26,"y":420.2398},{"x":27,"y":421.1289},{"x":28,"y":421.824},{"x":29,"y":423.2846},{"x":30,"y":425.636},{"x":31,"y":426.3901},{"x":32,"y":428.4124},{"x":33,"y":429.6646},{"x":34,"y":429.9736},{"x":35,"y":430.6096},{"x":36,"y":430.1823},{"x":37,"y":429.0452},{"x":38,"y":426.6607},{"x":39,"y":423.7124},{"x":40,"y":420.2925},{"x":41,"y":416.5521},{"x":42,"y":413.1852},{"x":43,"y":411.0173},{"x":44,"y":409.1146},{"x":45,"y":407.8484},{"x":46,"y":406.0724},{"x":47,"y":404.7061},{"x":48,"y":403.908},{"x":49,"y":402.6198},{"x":50,"y":400.687},{"x":51,"y":399.5797},{"x":52,"y":399.638},{"x":53,"y":399.1563},{"x":54,"y":397.7003},{"x":55,"y":396.4008},{"x":56,"y":394.9067},{"x":57,"y":391.0736},{"x":58,"y":388.5069},{"x":59,"y":384.5821},{"x":60,"y":380.3568},{"x":61,"y":377.5674},{"x":62,"y":373.4415},{"x":63,"y":369.8718},{"x":64,"y":366.714},{"x":65,"y":363.3653},{"x":66,"y":360.1197},{"x":67,"y":357.0405},{"x":68,"y":354.6639},{"x":69,"y":352.6405},{"x":70,"y":351.2026},{"x":71,"y":349.9003},{"x":72,"y":348.2182},{"x":73,"y":346.2901},{"x":74,"y":344.4846},{"x":75,"y":341.7091},{"x":76,"y":339.161},{"x":77,"y":336.1284},{"x":78,"y":333.2884},{"x":79,"y":329.922},{"x":80,"y":326.4277},{"x":81,"y":323.5492},{"x":82,"y":320.9594},{"x":83,"y":319.265},{"x":84,"y":316.1492},{"x":85,"y":313.1071},{"x":86,"y":311.1015},{"x":87,"y":308.7417},{"x":88,"y":306.4135},{"x":89,"y":304.1751},{"x":90,"y":302.0387},{"x":91,"y":298.6621},{"x":92,"y":294.9564},{"x":93,"y":290.4507},{"x":94,"y":284.9639},{"x":95,"y":278.1515},{"x":96,"y":273.482},{"x":97,"y":269.7171},{"x":98,"y":266.0367},{"x":99,"y":262.0832},{"x":100,"y":258.7819}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area 45","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 45.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":1005.5544},{"x":1,"y":1140.6296},{"x":2,"y":1282.2927},{"x":3,"y":1427.0001},{"x":4,"y":1537.5862},{"x":5,"y":1628.6752},{"x":6,"y":1720.0773},{"x":7,"y":1780.514},{"x":8,"y":1822.415},{"x":9,"y":1871.5799},{"x":10,"y":1922.7094},{"x":11,"y":1956.1988},{"x":12,"y":1995.0287},{"x":13,"y":2029.0892},{"x":14,"y":2051.0292},{"x":15,"y":2073.3927},{"x":16,"y":2086.5145},{"x":17,"y":2100.9911},{"x":18,"y":2114.785},{"x":19,"y":2117.8656},{"x":20,"y":2119.9499},{"x":21,"y":2122.6338},{"x":22,"y":2126.5934},{"x":23,"y":2130.3621},{"x":24,"y":2128.5693},{"x":25,"y":2119.9486},{"x":26,"y":2109.881},{"x":27,"y":2090.9789},{"x":28,"y":2061.8335},{"x":29,"y":2034.1653},{"x":30,"y":2000.8524},{"x":31,"y":1975.8356},{"x":32,"y":1954.9807},{"x":33,"y":1933.406},{"x":34,"y":1904.9711},{"x":35,"y":1877.5919},{"x":36,"y":1848.9845},{"x":37,"y":1813.6243},{"x":38,"y":1779.8701},{"x":39,"y":1750.2535},{"x":40,"y":1721.1585},{"x":41,"y":1696.3829},{"x":42,"y":1670.4723},{"x":43,"y":1648.3853},{"x":44,"y":1625.5198},{"x":45,"y":1608.239},{"x":46,"y":1599.82},{"x":47,"y":1593.3035},{"x":48,"y":1587.853},{"x":49,"y":1586.2885},{"x":50,"y":1587.6321},{"x":51,"y":1592.5324},{"x":52,"y":1599.0063},{"x":53,"y":1603.4052},{"x":54,"y":1614.2161},{"x":55,"y":1613.4045},{"x":56,"y":1608.3359},{"x":57,"y":1600.0201},{"x":58,"y":1586.2777},{"x":59,"y":1570.8167},{"x":60,"y":1556.1897},{"x":61,"y":1534.6709},{"x":62,"y":1517.2144},{"x":63,"y":1503.299},{"x":64,"y":1490.5743},{"x":65,"y":1477.577},{"x":66,"y":1464.6239},{"x":67,"y":1456.9567},{"x":68,"y":1451.543},{"x":69,"y":1456.3787},{"x":70,"y":1457.9518},{"x":71,"y":1475.7819},{"x":72,"y":1492.3323},{"x":73,"y":1520.6312},{"x":74,"y":1553.3891},{"x":75,"y":1584.1544},{"x":76,"y":1614.3661},{"x":77,"y":1635.184},{"x":78,"y":1653.5622},{"x":79,"y":1667.6292},{"x":80,"y":1678.3806},{"x":81,"y":1679.2344},{"x":82,"y":1678.8372},{"x":83,"y":1677.2387},{"x":84,"y":1679.506},{"x":85,"y":1682.4859},{"x":86,"y":1675.7679},{"x":87,"y":1660.1836},{"x":88,"y":1638.2992},{"x":89,"y":1612.9416},{"x":90,"y":1583.2615},{"x":91,"y":1554.9181},{"x":92,"y":1527.0889},{"x":93,"y":1503.3339},{"x":94,"y":1477.0244},{"x":95,"y":1446.2743},{"x":96,"y":1419.2013},{"x":97,"y":1388.1481},{"x":98,"y":1349.6414},{"x":99,"y":1313.3331},{"x":100,"y":1274.671}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area 7A",[{"name":"Receptor density fingerprint of Area 7A","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["136","327","315","1327","549","634","1007","175","70","371","34","165","252","87","224","41"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 7A (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(175,238,238,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area 7A","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area 7A","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area 7A","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 7A","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area 7A","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area 7A","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 7A","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area 7A","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area 7A","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 7A","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area 7A","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area 7A","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2F7A_bm_GABAB.jpg"},{"name":"Sample profile of GABAá´€(BZ) in Area 7A","filename":"GABAá´€(BZ)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(BZ) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(BZ) in Area 7A"],"datasets":[{"data":[{"x":0,"y":663.539},{"x":1,"y":752.8634},{"x":2,"y":871.9389},{"x":3,"y":1098.3071},{"x":4,"y":1300.2764},{"x":5,"y":1359.9664},{"x":6,"y":1537.4431},{"x":7,"y":1723.7547},{"x":8,"y":1876.9231},{"x":9,"y":1959.4494},{"x":10,"y":2050.1882},{"x":11,"y":2166.3914},{"x":12,"y":2276.5378},{"x":13,"y":2335.9971},{"x":14,"y":2402.0258},{"x":15,"y":2519.0376},{"x":16,"y":2607.1689},{"x":17,"y":2669.0358},{"x":18,"y":2765.7592},{"x":19,"y":2864.845},{"x":20,"y":2943.0192},{"x":21,"y":3026.1182},{"x":22,"y":3077.0223},{"x":23,"y":3140.239},{"x":24,"y":3185.3043},{"x":25,"y":3216.7453},{"x":26,"y":3242.3179},{"x":27,"y":3270.7454},{"x":28,"y":3296.7027},{"x":29,"y":3311.2376},{"x":30,"y":3325.7087},{"x":31,"y":3343.813},{"x":32,"y":3358.2682},{"x":33,"y":3363.0345},{"x":34,"y":3359.3941},{"x":35,"y":3342.1894},{"x":36,"y":3319.2095},{"x":37,"y":3295.9588},{"x":38,"y":3261.208},{"x":39,"y":3213.2799},{"x":40,"y":3158.0433},{"x":41,"y":3073.2887},{"x":42,"y":2996.6862},{"x":43,"y":2912.3453},{"x":44,"y":2817.6401},{"x":45,"y":2736.7014},{"x":46,"y":2672.117},{"x":47,"y":2624.4041},{"x":48,"y":2565.9559},{"x":49,"y":2510.5804},{"x":50,"y":2464.0681},{"x":51,"y":2408.6072},{"x":52,"y":2357.4098},{"x":53,"y":2316.1774},{"x":54,"y":2275.7995},{"x":55,"y":2239.1028},{"x":56,"y":2213.0319},{"x":57,"y":2192.9383},{"x":58,"y":2173.8939},{"x":59,"y":2152.2656},{"x":60,"y":2130.8386},{"x":61,"y":2105.0342},{"x":62,"y":2072.1947},{"x":63,"y":2051.3312},{"x":64,"y":2023.5314},{"x":65,"y":1988.2613},{"x":66,"y":1952.1707},{"x":67,"y":1927.6988},{"x":68,"y":1903.5798},{"x":69,"y":1876.4679},{"x":70,"y":1852.6695},{"x":71,"y":1834.4395},{"x":72,"y":1821.0351},{"x":73,"y":1809.7367},{"x":74,"y":1803.0215},{"x":75,"y":1795.4408},{"x":76,"y":1789.3414},{"x":77,"y":1781.8507},{"x":78,"y":1776.5435},{"x":79,"y":1770.8319},{"x":80,"y":1762.5341},{"x":81,"y":1750.7678},{"x":82,"y":1733.7874},{"x":83,"y":1711.1019},{"x":84,"y":1691.6025},{"x":85,"y":1659.384},{"x":86,"y":1608.8117},{"x":87,"y":1575.5129},{"x":88,"y":1537.8691},{"x":89,"y":1461.1373},{"x":90,"y":1370.9544},{"x":91,"y":1300.9845},{"x":92,"y":1238.4245},{"x":93,"y":1134.4825},{"x":94,"y":1024.7995},{"x":95,"y":933.0514},{"x":96,"y":904.9452},{"x":97,"y":821.7994},{"x":98,"y":723.583},{"x":99,"y":665.7601},{"x":100,"y":617.7757}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of αâ‚(NA) in Area 7A","filename":"αâ‚(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of αâ‚(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of αâ‚(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":151.1982},{"x":1,"y":167.9588},{"x":2,"y":180.7446},{"x":3,"y":209.3757},{"x":4,"y":234.6896},{"x":5,"y":247.0121},{"x":6,"y":259.9775},{"x":7,"y":276.313},{"x":8,"y":292.8569},{"x":9,"y":307.6324},{"x":10,"y":314.6665},{"x":11,"y":317.5765},{"x":12,"y":323.5495},{"x":13,"y":329.3788},{"x":14,"y":333.624},{"x":15,"y":337.7094},{"x":16,"y":343.0088},{"x":17,"y":345.7185},{"x":18,"y":345.7708},{"x":19,"y":345.34},{"x":20,"y":342.5929},{"x":21,"y":339.5283},{"x":22,"y":334.1857},{"x":23,"y":329.4968},{"x":24,"y":325.7451},{"x":25,"y":321.0262},{"x":26,"y":315.8866},{"x":27,"y":313.555},{"x":28,"y":309.564},{"x":29,"y":304.9244},{"x":30,"y":301.1883},{"x":31,"y":299.1027},{"x":32,"y":295.3722},{"x":33,"y":292.4578},{"x":34,"y":289.8857},{"x":35,"y":288.1151},{"x":36,"y":287.7071},{"x":37,"y":286.264},{"x":38,"y":283.7241},{"x":39,"y":281.7018},{"x":40,"y":280.0032},{"x":41,"y":276.4685},{"x":42,"y":274.8314},{"x":43,"y":272.648},{"x":44,"y":271.053},{"x":45,"y":267.845},{"x":46,"y":264.7229},{"x":47,"y":261.6784},{"x":48,"y":259.0415},{"x":49,"y":254.4292},{"x":50,"y":249.1945},{"x":51,"y":243.9464},{"x":52,"y":237.1176},{"x":53,"y":234.2906},{"x":54,"y":229.7013},{"x":55,"y":223.725},{"x":56,"y":219.4258},{"x":57,"y":218.27},{"x":58,"y":216.7424},{"x":59,"y":217.2732},{"x":60,"y":221.3406},{"x":61,"y":222.8124},{"x":62,"y":225.8965},{"x":63,"y":230.6049},{"x":64,"y":233.7853},{"x":65,"y":234.0624},{"x":66,"y":236.9654},{"x":67,"y":237.9515},{"x":68,"y":237.1583},{"x":69,"y":235.7405},{"x":70,"y":235.0882},{"x":71,"y":236.4694},{"x":72,"y":238.1819},{"x":73,"y":239.3653},{"x":74,"y":240.0334},{"x":75,"y":243.7328},{"x":76,"y":248.7648},{"x":77,"y":250.6977},{"x":78,"y":256.4478},{"x":79,"y":263.7341},{"x":80,"y":269.4329},{"x":81,"y":272.9431},{"x":82,"y":273.2535},{"x":83,"y":272.8054},{"x":84,"y":269.2076},{"x":85,"y":261.1283},{"x":86,"y":256.163},{"x":87,"y":248.0658},{"x":88,"y":240.6242},{"x":89,"y":229.6725},{"x":90,"y":225.1961},{"x":91,"y":216.5756},{"x":92,"y":205.4539},{"x":93,"y":196.2495},{"x":94,"y":187.3501},{"x":95,"y":179.1233},{"x":96,"y":176.3328},{"x":97,"y":163.8241},{"x":98,"y":149.2057},{"x":99,"y":142.1163},{"x":100,"y":132.4732}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":227.9966},{"x":1,"y":260.1266},{"x":2,"y":312.0763},{"x":3,"y":414.6762},{"x":4,"y":490.9821},{"x":5,"y":513.4323},{"x":6,"y":561.5589},{"x":7,"y":600.4185},{"x":8,"y":610.9572},{"x":9,"y":640.1746},{"x":10,"y":805.0683},{"x":11,"y":831.3194},{"x":12,"y":851.5793},{"x":13,"y":860.5195},{"x":14,"y":863.3874},{"x":15,"y":877.9134},{"x":16,"y":886.6789},{"x":17,"y":891.857},{"x":18,"y":899.2275},{"x":19,"y":898.8455},{"x":20,"y":895.2042},{"x":21,"y":900.0077},{"x":22,"y":912.3623},{"x":23,"y":922.4453},{"x":24,"y":924.3774},{"x":25,"y":923.0026},{"x":26,"y":920.5417},{"x":27,"y":908.0752},{"x":28,"y":902.868},{"x":29,"y":893.4912},{"x":30,"y":895.781},{"x":31,"y":902.2439},{"x":32,"y":909.2903},{"x":33,"y":919.912},{"x":34,"y":925.0444},{"x":35,"y":920.5286},{"x":36,"y":909.8859},{"x":37,"y":904.182},{"x":38,"y":895.9315},{"x":39,"y":872.0172},{"x":40,"y":861.0069},{"x":41,"y":836.2822},{"x":42,"y":809.4185},{"x":43,"y":806.4975},{"x":44,"y":803.9193},{"x":45,"y":809.979},{"x":46,"y":819.136},{"x":47,"y":809.1287},{"x":48,"y":811.6801},{"x":49,"y":809.7502},{"x":50,"y":801.0422},{"x":51,"y":796.4513},{"x":52,"y":801.6047},{"x":53,"y":802.4903},{"x":54,"y":799.5808},{"x":55,"y":791.7419},{"x":56,"y":782.1892},{"x":57,"y":768.3173},{"x":58,"y":761.1379},{"x":59,"y":754.6662},{"x":60,"y":750.5267},{"x":61,"y":746.3632},{"x":62,"y":752.628},{"x":63,"y":754.018},{"x":64,"y":741.9876},{"x":65,"y":718.1295},{"x":66,"y":700.2568},{"x":67,"y":694.647},{"x":68,"y":692.1945},{"x":69,"y":704.0222},{"x":70,"y":720.6166},{"x":71,"y":735.6487},{"x":72,"y":734.1254},{"x":73,"y":733.8152},{"x":74,"y":733.1211},{"x":75,"y":725.1063},{"x":76,"y":725.3215},{"x":77,"y":723.1042},{"x":78,"y":710.1375},{"x":79,"y":706.906},{"x":80,"y":704.8816},{"x":81,"y":692.3977},{"x":82,"y":690.9053},{"x":83,"y":683.7458},{"x":84,"y":682.2311},{"x":85,"y":682.1647},{"x":86,"y":680.3273},{"x":87,"y":677.0761},{"x":88,"y":676.8538},{"x":89,"y":663.8228},{"x":90,"y":641.4838},{"x":91,"y":592.7274},{"x":92,"y":530.0127},{"x":93,"y":497.9832},{"x":94,"y":489.8614},{"x":95,"y":482.0792},{"x":96,"y":450.2751},{"x":97,"y":429.2006},{"x":98,"y":427.9265},{"x":99,"y":392.5824},{"x":100,"y":344.8273}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´€(GABA) in Area 7A","filename":"GABAá´€(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´€(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´€(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":633.2543},{"x":1,"y":683.8895},{"x":2,"y":733.8831},{"x":3,"y":817.8773},{"x":4,"y":913.5019},{"x":5,"y":962.923},{"x":6,"y":1029.0366},{"x":7,"y":1115.5869},{"x":8,"y":1181.192},{"x":9,"y":1215.1331},{"x":10,"y":1256.9819},{"x":11,"y":1323.7506},{"x":12,"y":1391.0358},{"x":13,"y":1438.3863},{"x":14,"y":1473.8055},{"x":15,"y":1529.6385},{"x":16,"y":1593.784},{"x":17,"y":1645.9451},{"x":18,"y":1674.4854},{"x":19,"y":1713.1953},{"x":20,"y":1761.9109},{"x":21,"y":1803.5934},{"x":22,"y":1815.8655},{"x":23,"y":1844.8328},{"x":24,"y":1875.7601},{"x":25,"y":1900.514},{"x":26,"y":1913.0381},{"x":27,"y":1915.5459},{"x":28,"y":1927.6898},{"x":29,"y":1946.5079},{"x":30,"y":1949.7002},{"x":31,"y":1946.5862},{"x":32,"y":1933.0266},{"x":33,"y":1917.4317},{"x":34,"y":1911.9525},{"x":35,"y":1897.0949},{"x":36,"y":1864.5121},{"x":37,"y":1832.8557},{"x":38,"y":1818.4731},{"x":39,"y":1786.3761},{"x":40,"y":1753.9339},{"x":41,"y":1717.9174},{"x":42,"y":1701.4803},{"x":43,"y":1675.9082},{"x":44,"y":1639.8605},{"x":45,"y":1609.1988},{"x":46,"y":1585.0067},{"x":47,"y":1563.7425},{"x":48,"y":1520.0845},{"x":49,"y":1472.4049},{"x":50,"y":1445.4671},{"x":51,"y":1409.7009},{"x":52,"y":1382.6194},{"x":53,"y":1368.7174},{"x":54,"y":1367.3614},{"x":55,"y":1355.4199},{"x":56,"y":1337.8691},{"x":57,"y":1327.0411},{"x":58,"y":1319.947},{"x":59,"y":1305.888},{"x":60,"y":1279.8923},{"x":61,"y":1243.9255},{"x":62,"y":1225.4457},{"x":63,"y":1219.6575},{"x":64,"y":1194.7077},{"x":65,"y":1170.3944},{"x":66,"y":1156.6991},{"x":67,"y":1151.1224},{"x":68,"y":1135.6361},{"x":69,"y":1117.7497},{"x":70,"y":1102.9007},{"x":71,"y":1094.3394},{"x":72,"y":1087.649},{"x":73,"y":1077.8298},{"x":74,"y":1069.0679},{"x":75,"y":1057.8355},{"x":76,"y":1043.0357},{"x":77,"y":1031.6027},{"x":78,"y":1016.6468},{"x":79,"y":1014.9124},{"x":80,"y":1009.3228},{"x":81,"y":992.1571},{"x":82,"y":981.1846},{"x":83,"y":975.0292},{"x":84,"y":965.3488},{"x":85,"y":932.1156},{"x":86,"y":905.011},{"x":87,"y":895.5183},{"x":88,"y":870.3877},{"x":89,"y":830.6858},{"x":90,"y":795.4082},{"x":91,"y":771.3419},{"x":92,"y":742.4899},{"x":93,"y":695.7374},{"x":94,"y":647.5571},{"x":95,"y":604.6211},{"x":96,"y":583.8928},{"x":97,"y":535.3829},{"x":98,"y":491.9205},{"x":99,"y":467.8257},{"x":100,"y":438.1232}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 7A","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":287.485},{"x":1,"y":323.9207},{"x":2,"y":355.1854},{"x":3,"y":406.9999},{"x":4,"y":446.3021},{"x":5,"y":484.376},{"x":6,"y":497.9161},{"x":7,"y":507.6449},{"x":8,"y":511.2654},{"x":9,"y":506.5552},{"x":10,"y":498.8589},{"x":11,"y":495.4824},{"x":12,"y":489.8124},{"x":13,"y":489.5566},{"x":14,"y":489.9393},{"x":15,"y":494.1125},{"x":16,"y":504.6869},{"x":17,"y":518.426},{"x":18,"y":524.4163},{"x":19,"y":534.2099},{"x":20,"y":546.0606},{"x":21,"y":560.1012},{"x":22,"y":574.3908},{"x":23,"y":579.876},{"x":24,"y":587.7441},{"x":25,"y":600.8418},{"x":26,"y":615.6641},{"x":27,"y":621.802},{"x":28,"y":627.6544},{"x":29,"y":629.3529},{"x":30,"y":628.0793},{"x":31,"y":630.3142},{"x":32,"y":626.9981},{"x":33,"y":624.1968},{"x":34,"y":618.3419},{"x":35,"y":612.0252},{"x":36,"y":603.0811},{"x":37,"y":591.6378},{"x":38,"y":573.8886},{"x":39,"y":563.6174},{"x":40,"y":552.9144},{"x":41,"y":537.4074},{"x":42,"y":529.4972},{"x":43,"y":521.2704},{"x":44,"y":515.5684},{"x":45,"y":501.9214},{"x":46,"y":494.5647},{"x":47,"y":491.4766},{"x":48,"y":490.4517},{"x":49,"y":491.2178},{"x":50,"y":493.6335},{"x":51,"y":494.9937},{"x":52,"y":496.1865},{"x":53,"y":497.0359},{"x":54,"y":500.1779},{"x":55,"y":501.9808},{"x":56,"y":496.7596},{"x":57,"y":491.0044},{"x":58,"y":483.6493},{"x":59,"y":473.5738},{"x":60,"y":459.3373},{"x":61,"y":452.936},{"x":62,"y":446.0854},{"x":63,"y":434.4769},{"x":64,"y":427.8319},{"x":65,"y":420.8046},{"x":66,"y":418.7184},{"x":67,"y":420.1777},{"x":68,"y":420.5275},{"x":69,"y":419.7971},{"x":70,"y":419.1136},{"x":71,"y":415.8936},{"x":72,"y":408.3836},{"x":73,"y":398.0484},{"x":74,"y":393.1448},{"x":75,"y":385.1306},{"x":76,"y":373.5769},{"x":77,"y":365.8039},{"x":78,"y":362.7305},{"x":79,"y":357.5371},{"x":80,"y":350.5533},{"x":81,"y":344.3416},{"x":82,"y":343.9415},{"x":83,"y":343.2905},{"x":84,"y":339.7408},{"x":85,"y":331.7992},{"x":86,"y":324.7165},{"x":87,"y":318.9469},{"x":88,"y":304.6224},{"x":89,"y":287.7717},{"x":90,"y":276.7229},{"x":91,"y":266.0581},{"x":92,"y":251.5404},{"x":93,"y":238.0793},{"x":94,"y":229.0837},{"x":95,"y":222.7677},{"x":96,"y":208.9835},{"x":97,"y":192.3791},{"x":98,"y":170.9256},{"x":99,"y":158.565},{"x":100,"y":142.0767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":16.2196},{"x":1,"y":18.623},{"x":2,"y":21.2825},{"x":3,"y":22.1199},{"x":4,"y":24.2586},{"x":5,"y":29.259},{"x":6,"y":31.8485},{"x":7,"y":34.6942},{"x":8,"y":37.9384},{"x":9,"y":38.0038},{"x":10,"y":36.569},{"x":11,"y":35.3809},{"x":12,"y":35.0293},{"x":13,"y":33.7838},{"x":14,"y":33.5527},{"x":15,"y":32.957},{"x":16,"y":34.0727},{"x":17,"y":34.848},{"x":18,"y":32.9535},{"x":19,"y":30.2609},{"x":20,"y":29.1827},{"x":21,"y":26.0969},{"x":22,"y":25.0696},{"x":23,"y":23.5956},{"x":24,"y":23.6397},{"x":25,"y":25.2483},{"x":26,"y":26.0559},{"x":27,"y":26.4713},{"x":28,"y":27.2641},{"x":29,"y":26.4122},{"x":30,"y":25.6611},{"x":31,"y":24.7922},{"x":32,"y":24.7539},{"x":33,"y":24.8243},{"x":34,"y":25.8481},{"x":35,"y":28.3815},{"x":36,"y":31.4486},{"x":37,"y":32.5446},{"x":38,"y":33.3392},{"x":39,"y":34.5921},{"x":40,"y":34.5468},{"x":41,"y":35.1758},{"x":42,"y":34.9421},{"x":43,"y":33.375},{"x":44,"y":32.0848},{"x":45,"y":30.3217},{"x":46,"y":29.9827},{"x":47,"y":26.7384},{"x":48,"y":20.7231},{"x":49,"y":18.3694},{"x":50,"y":18.7271},{"x":51,"y":17.8191},{"x":52,"y":17.5363},{"x":53,"y":19.2476},{"x":54,"y":19.5426},{"x":55,"y":20.2188},{"x":56,"y":23.112},{"x":57,"y":26.35},{"x":58,"y":28.4336},{"x":59,"y":29.6557},{"x":60,"y":31.1873},{"x":61,"y":32.0824},{"x":62,"y":32.0225},{"x":63,"y":31.2771},{"x":64,"y":31.2681},{"x":65,"y":30.8967},{"x":66,"y":30.0159},{"x":67,"y":29.5928},{"x":68,"y":29.8552},{"x":69,"y":29.6338},{"x":70,"y":29.3096},{"x":71,"y":29.8545},{"x":72,"y":30.439},{"x":73,"y":31.4543},{"x":74,"y":32.4313},{"x":75,"y":32.571},{"x":76,"y":31.993},{"x":77,"y":31.273},{"x":78,"y":31.3937},{"x":79,"y":31.3067},{"x":80,"y":32.3891},{"x":81,"y":33.3738},{"x":82,"y":31.73},{"x":83,"y":30.142},{"x":84,"y":28.7389},{"x":85,"y":26.1794},{"x":86,"y":25.5832},{"x":87,"y":24.709},{"x":88,"y":22.6134},{"x":89,"y":21.3432},{"x":90,"y":22.0623},{"x":91,"y":21.777},{"x":92,"y":20.1682},{"x":93,"y":22.4356},{"x":94,"y":21.2946},{"x":95,"y":16.7963},{"x":96,"y":13.4095},{"x":97,"y":10.1954},{"x":98,"y":8.3018},{"x":99,"y":7.8181},{"x":100,"y":8.4898}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚(ACh) in Area 7A","filename":"Mâ‚(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":382.3219},{"x":1,"y":438.3244},{"x":2,"y":525.1396},{"x":3,"y":642.9287},{"x":4,"y":723.291},{"x":5,"y":747.786},{"x":6,"y":796.3545},{"x":7,"y":836.167},{"x":8,"y":858.2237},{"x":9,"y":877.5671},{"x":10,"y":905.5817},{"x":11,"y":943.4378},{"x":12,"y":957.1879},{"x":13,"y":972.0211},{"x":14,"y":991.6481},{"x":15,"y":999.2225},{"x":16,"y":1001.7807},{"x":17,"y":996.5057},{"x":18,"y":991.1604},{"x":19,"y":990.3797},{"x":20,"y":988.3148},{"x":21,"y":984.3874},{"x":22,"y":973.9103},{"x":23,"y":965.1029},{"x":24,"y":955.8308},{"x":25,"y":947.6097},{"x":26,"y":946.8864},{"x":27,"y":949.9137},{"x":28,"y":952.3448},{"x":29,"y":951.2108},{"x":30,"y":942.2136},{"x":31,"y":930.2366},{"x":32,"y":921.215},{"x":33,"y":900.6559},{"x":34,"y":887.3783},{"x":35,"y":876.8349},{"x":36,"y":863.58},{"x":37,"y":841.8048},{"x":38,"y":820.5465},{"x":39,"y":804.5433},{"x":40,"y":777.6351},{"x":41,"y":743.3054},{"x":42,"y":719.2131},{"x":43,"y":690.1274},{"x":44,"y":669.1188},{"x":45,"y":656.207},{"x":46,"y":642.16},{"x":47,"y":633.1034},{"x":48,"y":637.0209},{"x":49,"y":642.5582},{"x":50,"y":650.6476},{"x":51,"y":658.2378},{"x":52,"y":667.8891},{"x":53,"y":673.6998},{"x":54,"y":677.3347},{"x":55,"y":677.9197},{"x":56,"y":680.334},{"x":57,"y":686.7457},{"x":58,"y":695.4823},{"x":59,"y":702.1373},{"x":60,"y":712.301},{"x":61,"y":715.7087},{"x":62,"y":708.5097},{"x":63,"y":701.6702},{"x":64,"y":691.9411},{"x":65,"y":671.646},{"x":66,"y":652.6915},{"x":67,"y":642.6635},{"x":68,"y":637.9381},{"x":69,"y":638.2236},{"x":70,"y":637.9743},{"x":71,"y":636.6224},{"x":72,"y":635.8584},{"x":73,"y":632.9066},{"x":74,"y":628.4894},{"x":75,"y":629.1575},{"x":76,"y":629.3483},{"x":77,"y":633.039},{"x":78,"y":632.1897},{"x":79,"y":628.5441},{"x":80,"y":620.6626},{"x":81,"y":610.0377},{"x":82,"y":605.1272},{"x":83,"y":607.4589},{"x":84,"y":607.969},{"x":85,"y":606.0623},{"x":86,"y":600.9026},{"x":87,"y":595.6902},{"x":88,"y":577.2762},{"x":89,"y":540.8229},{"x":90,"y":516.11},{"x":91,"y":497.9378},{"x":92,"y":450.5715},{"x":93,"y":411.9622},{"x":94,"y":392.5805},{"x":95,"y":376.4116},{"x":96,"y":349.2774},{"x":97,"y":322.4285},{"x":98,"y":305.8261},{"x":99,"y":281.4086},{"x":100,"y":254.1402}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚á´€(5-HT) in Area 7A","filename":"5-HTâ‚á´€(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚á´€(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚á´€(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":139.9628},{"x":1,"y":159.4456},{"x":2,"y":173.6681},{"x":3,"y":205.9561},{"x":4,"y":243.5842},{"x":5,"y":258.3094},{"x":6,"y":274.8404},{"x":7,"y":302.1868},{"x":8,"y":327.0849},{"x":9,"y":339.5041},{"x":10,"y":345.5591},{"x":11,"y":360.8777},{"x":12,"y":382.4319},{"x":13,"y":396.7576},{"x":14,"y":405.4409},{"x":15,"y":410.1708},{"x":16,"y":416.519},{"x":17,"y":417.4106},{"x":18,"y":417.3862},{"x":19,"y":413.7091},{"x":20,"y":402.3244},{"x":21,"y":389.7984},{"x":22,"y":378.7112},{"x":23,"y":370.6574},{"x":24,"y":357.4796},{"x":25,"y":339.2121},{"x":26,"y":316.3164},{"x":27,"y":303.4193},{"x":28,"y":289.1645},{"x":29,"y":264.6483},{"x":30,"y":244.9837},{"x":31,"y":235.0097},{"x":32,"y":220.8909},{"x":33,"y":199.5047},{"x":34,"y":182.9034},{"x":35,"y":172.3891},{"x":36,"y":165.8176},{"x":37,"y":155.114},{"x":38,"y":146.7524},{"x":39,"y":137.171},{"x":40,"y":133.4841},{"x":41,"y":128.4862},{"x":42,"y":122.8328},{"x":43,"y":119.2062},{"x":44,"y":123.0689},{"x":45,"y":124.4356},{"x":46,"y":124.4356},{"x":47,"y":124.7959},{"x":48,"y":122.8447},{"x":49,"y":120.9847},{"x":50,"y":117.7807},{"x":51,"y":116.545},{"x":52,"y":117.8415},{"x":53,"y":120.6954},{"x":54,"y":124.0505},{"x":55,"y":129.6019},{"x":56,"y":131.9711},{"x":57,"y":132.3113},{"x":58,"y":133.1741},{"x":59,"y":134.8043},{"x":60,"y":130.7193},{"x":61,"y":124.7211},{"x":62,"y":119.233},{"x":63,"y":113.6246},{"x":64,"y":107.1462},{"x":65,"y":99.4469},{"x":66,"y":95.3613},{"x":67,"y":94.5086},{"x":68,"y":94.3806},{"x":69,"y":90.7424},{"x":70,"y":87.5501},{"x":71,"y":85.4694},{"x":72,"y":83.4803},{"x":73,"y":80.3618},{"x":74,"y":76.4014},{"x":75,"y":75.6064},{"x":76,"y":75.1677},{"x":77,"y":70.9984},{"x":78,"y":66.679},{"x":79,"y":64.1909},{"x":80,"y":62.5636},{"x":81,"y":62.8862},{"x":82,"y":64.1567},{"x":83,"y":62.5512},{"x":84,"y":58.6145},{"x":85,"y":55.8612},{"x":86,"y":49.0966},{"x":87,"y":44.6165},{"x":88,"y":44.0364},{"x":89,"y":42.8588},{"x":90,"y":41.277},{"x":91,"y":39.5338},{"x":92,"y":37.5767},{"x":93,"y":34.2379},{"x":94,"y":31.4925},{"x":95,"y":36.1056},{"x":96,"y":37.7222},{"x":97,"y":37.3067},{"x":98,"y":35.1788},{"x":99,"y":30.4756},{"x":100,"y":26.7841}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 7A","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":251.0298},{"x":1,"y":276.7229},{"x":2,"y":323.8144},{"x":3,"y":377.3279},{"x":4,"y":409.3778},{"x":5,"y":427.005},{"x":6,"y":470.8358},{"x":7,"y":510.8359},{"x":8,"y":527.2009},{"x":9,"y":538.767},{"x":10,"y":555.7251},{"x":11,"y":571.3581},{"x":12,"y":586.5456},{"x":13,"y":593.2975},{"x":14,"y":599.0479},{"x":15,"y":600.0229},{"x":16,"y":597.5062},{"x":17,"y":589.7764},{"x":18,"y":574.6197},{"x":19,"y":564.1533},{"x":20,"y":561.3965},{"x":21,"y":548.2548},{"x":22,"y":531.669},{"x":23,"y":519.1976},{"x":24,"y":517.561},{"x":25,"y":513.3273},{"x":26,"y":505.345},{"x":27,"y":502.7763},{"x":28,"y":498.0292},{"x":29,"y":489.3411},{"x":30,"y":487.7708},{"x":31,"y":491.6979},{"x":32,"y":493.7672},{"x":33,"y":495.091},{"x":34,"y":500.831},{"x":35,"y":502.5232},{"x":36,"y":499.8632},{"x":37,"y":493.6959},{"x":38,"y":488.9429},{"x":39,"y":487.3495},{"x":40,"y":483.8299},{"x":41,"y":479.8632},{"x":42,"y":483.3104},{"x":43,"y":481.6235},{"x":44,"y":482.1299},{"x":45,"y":485.1353},{"x":46,"y":487.6038},{"x":47,"y":487.2922},{"x":48,"y":488.1},{"x":49,"y":490.7919},{"x":50,"y":491.9073},{"x":51,"y":491.354},{"x":52,"y":493.5581},{"x":53,"y":505.4464},{"x":54,"y":512.3731},{"x":55,"y":526.7837},{"x":56,"y":541.9906},{"x":57,"y":560.2633},{"x":58,"y":566.3225},{"x":59,"y":577.4442},{"x":60,"y":584.235},{"x":61,"y":578.5537},{"x":62,"y":570.2319},{"x":63,"y":558.1292},{"x":64,"y":545.7895},{"x":65,"y":537.263},{"x":66,"y":532.8748},{"x":67,"y":527.3047},{"x":68,"y":529.2707},{"x":69,"y":533.4476},{"x":70,"y":533.1249},{"x":71,"y":535.3997},{"x":72,"y":542.1088},{"x":73,"y":546.3172},{"x":74,"y":550.6567},{"x":75,"y":554.8595},{"x":76,"y":560.8036},{"x":77,"y":564.2271},{"x":78,"y":573.2995},{"x":79,"y":586.0712},{"x":80,"y":594.3494},{"x":81,"y":595.4835},{"x":82,"y":601.0798},{"x":83,"y":608.2318},{"x":84,"y":606.8465},{"x":85,"y":603.6826},{"x":86,"y":594.543},{"x":87,"y":581.347},{"x":88,"y":564.5142},{"x":89,"y":547.7568},{"x":90,"y":520.4909},{"x":91,"y":489.785},{"x":92,"y":468.5371},{"x":93,"y":451.9617},{"x":94,"y":425.3122},{"x":95,"y":399.4838},{"x":96,"y":388.217},{"x":97,"y":369.3565},{"x":98,"y":333.0285},{"x":99,"y":300.525},{"x":100,"y":274.4998}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of Mâ‚‚(ACh) in Area 7A","filename":"Mâ‚‚(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Mâ‚‚(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Mâ‚‚(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":114.8929},{"x":1,"y":130.3703},{"x":2,"y":144.0927},{"x":3,"y":170.4441},{"x":4,"y":195.7123},{"x":5,"y":206.5739},{"x":6,"y":222.8406},{"x":7,"y":239.9028},{"x":8,"y":247.2082},{"x":9,"y":254.2513},{"x":10,"y":264.1531},{"x":11,"y":276.0237},{"x":12,"y":283.3915},{"x":13,"y":287.4534},{"x":14,"y":294.442},{"x":15,"y":300.26},{"x":16,"y":305.8507},{"x":17,"y":310.466},{"x":18,"y":319.1073},{"x":19,"y":324.0618},{"x":20,"y":329.1759},{"x":21,"y":335.5972},{"x":22,"y":340.5558},{"x":23,"y":342.1647},{"x":24,"y":340.6717},{"x":25,"y":338.7729},{"x":26,"y":334.0883},{"x":27,"y":334.2105},{"x":28,"y":336.9638},{"x":29,"y":337.3929},{"x":30,"y":342.817},{"x":31,"y":347.1665},{"x":32,"y":352.3684},{"x":33,"y":358.0049},{"x":34,"y":361.7798},{"x":35,"y":366.2793},{"x":36,"y":369.133},{"x":37,"y":369.9137},{"x":38,"y":371.1053},{"x":39,"y":370.28},{"x":40,"y":369.7033},{"x":41,"y":366.8806},{"x":42,"y":361.1273},{"x":43,"y":352.8706},{"x":44,"y":347.936},{"x":45,"y":342.8508},{"x":46,"y":338.9172},{"x":47,"y":332.2496},{"x":48,"y":323.4147},{"x":49,"y":315.4865},{"x":50,"y":309.0126},{"x":51,"y":301.6881},{"x":52,"y":297.204},{"x":53,"y":297.1408},{"x":54,"y":294.9886},{"x":55,"y":291.938},{"x":56,"y":292.2467},{"x":57,"y":295.3064},{"x":58,"y":298.4452},{"x":59,"y":299.1345},{"x":60,"y":304.7172},{"x":61,"y":305.8713},{"x":62,"y":305.3739},{"x":63,"y":306.9435},{"x":64,"y":307.6885},{"x":65,"y":308.048},{"x":66,"y":307.9314},{"x":67,"y":306.7715},{"x":68,"y":304.9074},{"x":69,"y":304.3974},{"x":70,"y":304.8622},{"x":71,"y":306.6599},{"x":72,"y":308.4472},{"x":73,"y":310.6843},{"x":74,"y":311.2315},{"x":75,"y":311.6819},{"x":76,"y":313.1128},{"x":77,"y":312.8166},{"x":78,"y":307.4156},{"x":79,"y":301.7453},{"x":80,"y":294.3241},{"x":81,"y":281.7214},{"x":82,"y":276.4935},{"x":83,"y":272.8251},{"x":84,"y":270.7132},{"x":85,"y":268.4946},{"x":86,"y":265.4647},{"x":87,"y":262.5601},{"x":88,"y":257.4283},{"x":89,"y":248.0727},{"x":90,"y":241.656},{"x":91,"y":233.9629},{"x":92,"y":215.2836},{"x":93,"y":203.0747},{"x":94,"y":195.0354},{"x":95,"y":186.7481},{"x":96,"y":174.4074},{"x":97,"y":163.5985},{"x":98,"y":157.4363},{"x":99,"y":143.3972},{"x":100,"y":126.4762}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":165.8269},{"x":1,"y":178.6777},{"x":2,"y":192.29},{"x":3,"y":222.4915},{"x":4,"y":250.8446},{"x":5,"y":261.4638},{"x":6,"y":274.4116},{"x":7,"y":294.6773},{"x":8,"y":307.9743},{"x":9,"y":313.3783},{"x":10,"y":319.7029},{"x":11,"y":331.7129},{"x":12,"y":342.8041},{"x":13,"y":348.4396},{"x":14,"y":358.5806},{"x":15,"y":367.1346},{"x":16,"y":372.7828},{"x":17,"y":377.325},{"x":18,"y":379.1914},{"x":19,"y":380.8765},{"x":20,"y":379.5686},{"x":21,"y":378.6225},{"x":22,"y":377.4324},{"x":23,"y":372.9805},{"x":24,"y":369.8772},{"x":25,"y":364.8685},{"x":26,"y":357.2026},{"x":27,"y":353.5835},{"x":28,"y":349.3376},{"x":29,"y":337.8648},{"x":30,"y":322.7376},{"x":31,"y":314.552},{"x":32,"y":307.8342},{"x":33,"y":300.6247},{"x":34,"y":295.2776},{"x":35,"y":289.2362},{"x":36,"y":286.1694},{"x":37,"y":278.6468},{"x":38,"y":270.4222},{"x":39,"y":264.9096},{"x":40,"y":259.2552},{"x":41,"y":249.823},{"x":42,"y":244.1371},{"x":43,"y":244.0012},{"x":44,"y":244.6413},{"x":45,"y":245.4113},{"x":46,"y":245.3238},{"x":47,"y":246.9841},{"x":48,"y":248.6358},{"x":49,"y":249.6081},{"x":50,"y":249.203},{"x":51,"y":252.759},{"x":52,"y":252.2215},{"x":53,"y":247.2017},{"x":54,"y":241.6193},{"x":55,"y":241.4535},{"x":56,"y":235.9386},{"x":57,"y":235.5753},{"x":58,"y":234.997},{"x":59,"y":231.3455},{"x":60,"y":229.0312},{"x":61,"y":223.6788},{"x":62,"y":218.5157},{"x":63,"y":213.5319},{"x":64,"y":210.5304},{"x":65,"y":210.3188},{"x":66,"y":209.2017},{"x":67,"y":210.7303},{"x":68,"y":214.214},{"x":69,"y":216.1423},{"x":70,"y":218.1638},{"x":71,"y":215.398},{"x":72,"y":207.1968},{"x":73,"y":204.068},{"x":74,"y":199.9659},{"x":75,"y":195.2424},{"x":76,"y":193.9523},{"x":77,"y":193.5182},{"x":78,"y":193.4707},{"x":79,"y":192.9171},{"x":80,"y":190.5196},{"x":81,"y":189.1443},{"x":82,"y":192.7447},{"x":83,"y":199.7749},{"x":84,"y":207.3913},{"x":85,"y":213.3254},{"x":86,"y":216.0479},{"x":87,"y":214.0178},{"x":88,"y":213.0261},{"x":89,"y":208.3971},{"x":90,"y":200.8762},{"x":91,"y":195.1287},{"x":92,"y":189.2882},{"x":93,"y":178.9209},{"x":94,"y":167.766},{"x":95,"y":160.129},{"x":96,"y":153.9663},{"x":97,"y":142.3762},{"x":98,"y":124.4451},{"x":99,"y":115.9433},{"x":100,"y":105.697}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of Dâ‚(DA) in Area 7A","filename":"Dâ‚(DA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of Dâ‚(DA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of Dâ‚(DA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":82.3706},{"x":1,"y":90.3893},{"x":2,"y":100.1785},{"x":3,"y":107.9235},{"x":4,"y":115.6573},{"x":5,"y":119.7377},{"x":6,"y":125.2441},{"x":7,"y":135.2463},{"x":8,"y":141.4176},{"x":9,"y":149.1826},{"x":10,"y":156.189},{"x":11,"y":161.4988},{"x":12,"y":162.4539},{"x":13,"y":162.8742},{"x":14,"y":158.7893},{"x":15,"y":152.0452},{"x":16,"y":143.7672},{"x":17,"y":139.6443},{"x":18,"y":135.1313},{"x":19,"y":131.8678},{"x":20,"y":133.0253},{"x":21,"y":132.6677},{"x":22,"y":134.1043},{"x":23,"y":138.7863},{"x":24,"y":139.8736},{"x":25,"y":140.2394},{"x":26,"y":140.3024},{"x":27,"y":139.8431},{"x":28,"y":139.3562},{"x":29,"y":137.8853},{"x":30,"y":135.2239},{"x":31,"y":135.2929},{"x":32,"y":136.2921},{"x":33,"y":136.809},{"x":34,"y":139.1511},{"x":35,"y":140.9525},{"x":36,"y":140.0342},{"x":37,"y":140.5578},{"x":38,"y":138.7285},{"x":39,"y":134.9028},{"x":40,"y":133.0436},{"x":41,"y":131.1695},{"x":42,"y":129.7595},{"x":43,"y":129.1131},{"x":44,"y":129.6366},{"x":45,"y":131.0113},{"x":46,"y":133.2678},{"x":47,"y":134.9277},{"x":48,"y":134.7854},{"x":49,"y":133.9852},{"x":50,"y":134.0755},{"x":51,"y":133.0952},{"x":52,"y":131.5614},{"x":53,"y":127.3637},{"x":54,"y":126.3117},{"x":55,"y":124.1813},{"x":56,"y":121.5154},{"x":57,"y":121.601},{"x":58,"y":122.3969},{"x":59,"y":123.8415},{"x":60,"y":125.5515},{"x":61,"y":125.2313},{"x":62,"y":124.8034},{"x":63,"y":125.6635},{"x":64,"y":125.1942},{"x":65,"y":122.8819},{"x":66,"y":120.3305},{"x":67,"y":116.2642},{"x":68,"y":112.9832},{"x":69,"y":112.2761},{"x":70,"y":112.2809},{"x":71,"y":112.5116},{"x":72,"y":111.4163},{"x":73,"y":112.6439},{"x":74,"y":114.9792},{"x":75,"y":115.0479},{"x":76,"y":116.3963},{"x":77,"y":118.2606},{"x":78,"y":118.6052},{"x":79,"y":118.6889},{"x":80,"y":117.4169},{"x":81,"y":114.8647},{"x":82,"y":111.1505},{"x":83,"y":107.7304},{"x":84,"y":103.813},{"x":85,"y":99.3413},{"x":86,"y":96.5002},{"x":87,"y":95.5544},{"x":88,"y":93.9831},{"x":89,"y":93.2571},{"x":90,"y":92.6696},{"x":91,"y":90.4918},{"x":92,"y":88.3666},{"x":93,"y":86.7248},{"x":94,"y":84.7815},{"x":95,"y":81.1593},{"x":96,"y":77.5223},{"x":97,"y":72.3289},{"x":98,"y":68.6545},{"x":99,"y":65.8115},{"x":100,"y":60.2677}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 7A","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":262.2453},{"x":1,"y":301.3725},{"x":2,"y":329.3785},{"x":3,"y":386.1118},{"x":4,"y":475.2152},{"x":5,"y":536.1097},{"x":6,"y":589.1526},{"x":7,"y":657.6791},{"x":8,"y":712.4421},{"x":9,"y":768.8856},{"x":10,"y":795.4745},{"x":11,"y":809.7042},{"x":12,"y":826.6472},{"x":13,"y":841.0776},{"x":14,"y":853.4719},{"x":15,"y":858.9538},{"x":16,"y":870.4296},{"x":17,"y":883.5447},{"x":18,"y":894.9556},{"x":19,"y":902.2325},{"x":20,"y":905.7851},{"x":21,"y":909.5306},{"x":22,"y":915.3387},{"x":23,"y":920.2709},{"x":24,"y":922.1055},{"x":25,"y":924.6335},{"x":26,"y":927.0689},{"x":27,"y":929.3031},{"x":28,"y":928.8533},{"x":29,"y":926.8713},{"x":30,"y":924.2145},{"x":31,"y":917.6357},{"x":32,"y":909.5613},{"x":33,"y":901.5776},{"x":34,"y":890.1075},{"x":35,"y":875.7447},{"x":36,"y":864.8834},{"x":37,"y":859.2525},{"x":38,"y":847.3905},{"x":39,"y":834.7358},{"x":40,"y":824.5601},{"x":41,"y":816.5769},{"x":42,"y":810.4789},{"x":43,"y":801.391},{"x":44,"y":788.5195},{"x":45,"y":774.7673},{"x":46,"y":766.4622},{"x":47,"y":752.2814},{"x":48,"y":738.4437},{"x":49,"y":726.1303},{"x":50,"y":714.7208},{"x":51,"y":699.2138},{"x":52,"y":686.8},{"x":53,"y":678.7894},{"x":54,"y":674.8372},{"x":55,"y":673.9734},{"x":56,"y":674.6517},{"x":57,"y":677.2477},{"x":58,"y":681.0908},{"x":59,"y":682.8671},{"x":60,"y":683.0743},{"x":61,"y":676.4656},{"x":62,"y":666.0216},{"x":63,"y":657.1697},{"x":64,"y":651.5592},{"x":65,"y":641.6641},{"x":66,"y":631.0699},{"x":67,"y":624.5821},{"x":68,"y":619.1694},{"x":69,"y":613.6037},{"x":70,"y":611.3418},{"x":71,"y":608.9645},{"x":72,"y":610.0555},{"x":73,"y":610.7931},{"x":74,"y":614.8636},{"x":75,"y":619.8534},{"x":76,"y":625.8974},{"x":77,"y":628.9361},{"x":78,"y":635.588},{"x":79,"y":637.0061},{"x":80,"y":636.0802},{"x":81,"y":631.3841},{"x":82,"y":620.7328},{"x":83,"y":604.283},{"x":84,"y":581.6371},{"x":85,"y":560.7332},{"x":86,"y":546.1187},{"x":87,"y":518.6196},{"x":88,"y":489.1823},{"x":89,"y":460.297},{"x":90,"y":443.2595},{"x":91,"y":421.1332},{"x":92,"y":386.9171},{"x":93,"y":360.6118},{"x":94,"y":330.4156},{"x":95,"y":309.4416},{"x":96,"y":284.8695},{"x":97,"y":244.7918},{"x":98,"y":217.7168},{"x":99,"y":204.6012},{"x":100,"y":187.0507}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1276.6393},{"x":1,"y":1416.6576},{"x":2,"y":1600.8501},{"x":3,"y":1799.8068},{"x":4,"y":1975.4301},{"x":5,"y":2019.5139},{"x":6,"y":2138.103},{"x":7,"y":2271.7284},{"x":8,"y":2333.6814},{"x":9,"y":2354.3451},{"x":10,"y":2421.0831},{"x":11,"y":2448.349},{"x":12,"y":2489.6455},{"x":13,"y":2518.603},{"x":14,"y":2564.8087},{"x":15,"y":2661.2743},{"x":16,"y":2785.5394},{"x":17,"y":2846.3764},{"x":18,"y":2922.1705},{"x":19,"y":3017.1913},{"x":20,"y":3065.413},{"x":21,"y":3103.0527},{"x":22,"y":3136.0391},{"x":23,"y":3136.3974},{"x":24,"y":3112.5531},{"x":25,"y":3095.9034},{"x":26,"y":3044.3648},{"x":27,"y":2978.9985},{"x":28,"y":2897.3784},{"x":29,"y":2841.3434},{"x":30,"y":2813.4762},{"x":31,"y":2781.1183},{"x":32,"y":2767.6111},{"x":33,"y":2739.491},{"x":34,"y":2725.6216},{"x":35,"y":2719.2591},{"x":36,"y":2689.2281},{"x":37,"y":2650.694},{"x":38,"y":2607.8615},{"x":39,"y":2519.3011},{"x":40,"y":2430.6736},{"x":41,"y":2398.404},{"x":42,"y":2316.0988},{"x":43,"y":2187.962},{"x":44,"y":2045.462},{"x":45,"y":1945.3265},{"x":46,"y":1852.3396},{"x":47,"y":1762.6735},{"x":48,"y":1655.1016},{"x":49,"y":1578.7541},{"x":50,"y":1543.3275},{"x":51,"y":1529.6925},{"x":52,"y":1528.9028},{"x":53,"y":1544.0347},{"x":54,"y":1535.05},{"x":55,"y":1545.5799},{"x":56,"y":1532.2462},{"x":57,"y":1528.5048},{"x":58,"y":1551.9414},{"x":59,"y":1597.5022},{"x":60,"y":1658.9033},{"x":61,"y":1700.5322},{"x":62,"y":1737.582},{"x":63,"y":1735.3384},{"x":64,"y":1689.6181},{"x":65,"y":1644.5749},{"x":66,"y":1583.8934},{"x":67,"y":1474.3109},{"x":68,"y":1399.0384},{"x":69,"y":1356.3718},{"x":70,"y":1319.0208},{"x":71,"y":1300.4523},{"x":72,"y":1304.0509},{"x":73,"y":1323.4005},{"x":74,"y":1337.4719},{"x":75,"y":1354.6358},{"x":76,"y":1366.3823},{"x":77,"y":1384.0555},{"x":78,"y":1396.1785},{"x":79,"y":1409.2968},{"x":80,"y":1403.7374},{"x":81,"y":1363.6879},{"x":82,"y":1344.6398},{"x":83,"y":1295.8706},{"x":84,"y":1278.1333},{"x":85,"y":1268.0291},{"x":86,"y":1274.1699},{"x":87,"y":1312.8478},{"x":88,"y":1361.3832},{"x":89,"y":1374.4552},{"x":90,"y":1367.7086},{"x":91,"y":1367.1454},{"x":92,"y":1366.7719},{"x":93,"y":1322.9096},{"x":94,"y":1260.4142},{"x":95,"y":1180.6975},{"x":96,"y":1058.7647},{"x":97,"y":935.7444},{"x":98,"y":880.0041},{"x":99,"y":772.0206},{"x":100,"y":630.5493}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HTâ‚‚(5-HT) in Area 7A","filename":"5-HTâ‚‚(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HTâ‚‚(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HTâ‚‚(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":242.2038},{"x":1,"y":255.429},{"x":2,"y":267.7241},{"x":3,"y":279.0103},{"x":4,"y":291.6608},{"x":5,"y":295.9546},{"x":6,"y":299.9036},{"x":7,"y":301.5689},{"x":8,"y":304.2633},{"x":9,"y":309.8645},{"x":10,"y":313.8278},{"x":11,"y":319.2057},{"x":12,"y":327.8362},{"x":13,"y":331.4444},{"x":14,"y":339.0641},{"x":15,"y":350.7271},{"x":16,"y":360.2297},{"x":17,"y":369.9275},{"x":18,"y":377.3569},{"x":19,"y":382.1865},{"x":20,"y":389.8425},{"x":21,"y":399.2808},{"x":22,"y":406.8255},{"x":23,"y":412.5805},{"x":24,"y":417.9728},{"x":25,"y":420.6806},{"x":26,"y":422.6222},{"x":27,"y":424.0387},{"x":28,"y":428.5667},{"x":29,"y":432.5041},{"x":30,"y":432.0832},{"x":31,"y":433.4775},{"x":32,"y":433.7371},{"x":33,"y":432.8811},{"x":34,"y":431.4239},{"x":35,"y":430.6295},{"x":36,"y":431.0695},{"x":37,"y":431.7824},{"x":38,"y":431.5001},{"x":39,"y":430.1665},{"x":40,"y":428.4513},{"x":41,"y":428.1761},{"x":42,"y":427.3997},{"x":43,"y":426.6064},{"x":44,"y":424.3744},{"x":45,"y":420.7311},{"x":46,"y":416.8468},{"x":47,"y":414.0092},{"x":48,"y":410.5026},{"x":49,"y":407.0281},{"x":50,"y":404.5828},{"x":51,"y":400.2905},{"x":52,"y":395.4896},{"x":53,"y":394.9918},{"x":54,"y":392.9237},{"x":55,"y":388.4179},{"x":56,"y":385.1925},{"x":57,"y":383.5663},{"x":58,"y":383.421},{"x":59,"y":382.8771},{"x":60,"y":380.0523},{"x":61,"y":378.0033},{"x":62,"y":376.2923},{"x":63,"y":374.2232},{"x":64,"y":369.5993},{"x":65,"y":366.3369},{"x":66,"y":361.0353},{"x":67,"y":352.2224},{"x":68,"y":346.1572},{"x":69,"y":342.7126},{"x":70,"y":339.8492},{"x":71,"y":337.3583},{"x":72,"y":329.98},{"x":73,"y":324.276},{"x":74,"y":319.5903},{"x":75,"y":313.9487},{"x":76,"y":310.3027},{"x":77,"y":309.5322},{"x":78,"y":306.4743},{"x":79,"y":300.9548},{"x":80,"y":295.3083},{"x":81,"y":291.7602},{"x":82,"y":290.5495},{"x":83,"y":285.6468},{"x":84,"y":278.1925},{"x":85,"y":271.4423},{"x":86,"y":259.904},{"x":87,"y":251.1477},{"x":88,"y":244.9073},{"x":89,"y":233.0483},{"x":90,"y":221.3004},{"x":91,"y":214.2335},{"x":92,"y":206.5496},{"x":93,"y":201.3465},{"x":94,"y":198.1938},{"x":95,"y":191.2219},{"x":96,"y":184.4615},{"x":97,"y":176.7826},{"x":98,"y":169.376},{"x":99,"y":161.2589},{"x":100,"y":154.8098}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAá´ƒ(GABA) in Area 7A","filename":"GABAá´ƒ(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAá´ƒ(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAá´ƒ(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1156.1503},{"x":1,"y":1355.3643},{"x":2,"y":1631.4605},{"x":3,"y":2031.9433},{"x":4,"y":2398.5408},{"x":5,"y":2655.2859},{"x":6,"y":2814.1466},{"x":7,"y":3105.5639},{"x":8,"y":3275.4003},{"x":9,"y":3354.4507},{"x":10,"y":3428.7803},{"x":11,"y":3492.3326},{"x":12,"y":3557.9408},{"x":13,"y":3597.4988},{"x":14,"y":3629.379},{"x":15,"y":3685.4961},{"x":16,"y":3720.6345},{"x":17,"y":3744.9326},{"x":18,"y":3739.527},{"x":19,"y":3719.9883},{"x":20,"y":3660.7312},{"x":21,"y":3620.1131},{"x":22,"y":3613.7725},{"x":23,"y":3597.0596},{"x":24,"y":3570.9657},{"x":25,"y":3534.6392},{"x":26,"y":3501.8373},{"x":27,"y":3440.9219},{"x":28,"y":3356.2778},{"x":29,"y":3291.713},{"x":30,"y":3255.3961},{"x":31,"y":3164.543},{"x":32,"y":3064.1379},{"x":33,"y":3001.1613},{"x":34,"y":2975.026},{"x":35,"y":2933.2342},{"x":36,"y":2919.994},{"x":37,"y":2909.7543},{"x":38,"y":2899.71},{"x":39,"y":2881.0588},{"x":40,"y":2843.6094},{"x":41,"y":2791.959},{"x":42,"y":2750.5244},{"x":43,"y":2697.688},{"x":44,"y":2615.8356},{"x":45,"y":2520.23},{"x":46,"y":2456.3633},{"x":47,"y":2400.6612},{"x":48,"y":2326.8185},{"x":49,"y":2289.6689},{"x":50,"y":2283.5967},{"x":51,"y":2290.7856},{"x":52,"y":2329.2688},{"x":53,"y":2357.0118},{"x":54,"y":2362.333},{"x":55,"y":2362.336},{"x":56,"y":2361.9552},{"x":57,"y":2367.9274},{"x":58,"y":2368.522},{"x":59,"y":2374.1113},{"x":60,"y":2362.7651},{"x":61,"y":2348.8044},{"x":62,"y":2315.9224},{"x":63,"y":2275.5391},{"x":64,"y":2206.0325},{"x":65,"y":2112.2779},{"x":66,"y":2055.4444},{"x":67,"y":2044.3293},{"x":68,"y":2047.5537},{"x":69,"y":2089.2383},{"x":70,"y":2140.2902},{"x":71,"y":2158.2404},{"x":72,"y":2168.1091},{"x":73,"y":2179.0646},{"x":74,"y":2166.174},{"x":75,"y":2149.4004},{"x":76,"y":2105.4029},{"x":77,"y":2046.534},{"x":78,"y":1997.6759},{"x":79,"y":1974.2813},{"x":80,"y":1936.0846},{"x":81,"y":1887.2022},{"x":82,"y":1848.6358},{"x":83,"y":1808.6652},{"x":84,"y":1767.6402},{"x":85,"y":1711.0813},{"x":86,"y":1630.4481},{"x":87,"y":1592.159},{"x":88,"y":1526.7898},{"x":89,"y":1405.8421},{"x":90,"y":1307.0386},{"x":91,"y":1226.3495},{"x":92,"y":1156.3211},{"x":93,"y":1049.1288},{"x":94,"y":919.7275},{"x":95,"y":862.9674},{"x":96,"y":799.3356},{"x":97,"y":719.6935},{"x":98,"y":650.9807},{"x":99,"y":602.711},{"x":100,"y":565.6492}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null}]],["Density measurements of different receptors for Area PFop",[{"name":"Receptor density fingerprint of Area PFop","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["388","427","1065","3008","1524","2173","2744","550","159","968","48","374","661","414","430","92"]},{"label":"mean_sd","data":["204","187","118","1211","404","605","658","200","41","571","30","118","mg/mol","178","121","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFop (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PF",[{"name":"Receptor density fingerprint of Area PF","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["496","647","1157","3398","1595","2225","2706","501","185","957","49","409","837","298","439","113"]},{"label":"mean_sd","data":["131","260","289","1453","527","652","830","197","63","285","17","163","mg/mol","83","146","40"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PF (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(239,134,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PFt",[{"name":"Receptor density fingerprint of Area PFt","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["367","503","1085","3044","1555","2140","2630","499","175","872","47","364","429","319","416","82"]},{"label":"mean_sd","data":["171","217","189","985","454","519","661","154","47","431","25","103","237","140","129","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFt (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area PFcm",[{"name":"Receptor density fingerprint of Area PFcm","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["412","602","1237","3194","1598","2188","2379","536","182","866","63","398","831","300","444","113"]},{"label":"mean_sd","data":["149","303","230","1582","389","768","719","198","62","393","33","155","mg/mol","82","204","54"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFcm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]],["Density measurements of different receptors for Area FG1",[{"name":"Receptor density fingerprint of Area FG1","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["419","499","1176","NA","1933","2140","2731","480","219","833","56","343","467","317","441","107"]},{"label":"mean_sd","data":["65","117","142","NA","255","216","421","67","34","163","12","45","93","60","82","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,100,209,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAá´€(BZ) in Area FG1","filename":"GABAá´€(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_BZ.jpg"},{"name":"Sample autoradiograph of αâ‚(NA) in Area FG1","filename":"αâ‚(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAá´€(GABA) in Area FG1","filename":"GABAá´€(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of Mâ‚(ACh) in Area FG1","filename":"Mâ‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚á´€(5-HT) in Area FG1","filename":"5-HTâ‚á´€(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_kainate.jpg"},{"name":"Sample autoradiograph of Mâ‚‚(ACh) in Area FG1","filename":"Mâ‚‚(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of Dâ‚(DA) in Area FG1","filename":"Dâ‚(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HTâ‚‚(5-HT) in Area FG1","filename":"5-HTâ‚‚(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAá´ƒ(GABA) in Area FG1","filename":"GABAá´ƒ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"datasets/previewFile?file=res%2Fimage%2Freceptor%2FFG1_bm_GABAB.jpg"}]],["Density measurements of different receptors for Area PGa",[{"name":"Receptor density fingerprint of Area PGa","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAá´€(GABA)","GABAá´ƒ(GABA)","GABAá´€(BZ)","Mâ‚(ACh)","Mâ‚‚(ACh)","M₃(ACh)","α₄β₂(ACh)","αâ‚(NA)","α₂(NA)","5-HTâ‚á´€(5-HT)","5-HTâ‚‚(5-HT)","Dâ‚(DA)"],"datasets":[{"label":"mean","data":["463","635","1259","3957","1998","2742","2442","479","172","827","70","361","698","303","441","136"]},{"label":"mean_sd","data":["187","405","278","1655","577","291","876","192","77","348","34","169","mg/mol","123","238","55"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGa (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(5,198,198,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}]]] \ No newline at end of file diff --git a/deploy/datasets/supplements/parcellation.js b/deploy/datasets/supplements/parcellation.js deleted file mode 100644 index 20527e571c065ddcf70d9a6a7ba9162e95af79b2..0000000000000000000000000000000000000000 --- a/deploy/datasets/supplements/parcellation.js +++ /dev/null @@ -1,27 +0,0 @@ -const fs = require('fs') -const path = require('path') -let waxholm = new Map(), - allen = new Map() - -fs.readFile(path.join(__dirname, 'data', 'allen.json'), 'utf-8', (err, data) => { - if (err) - throw err - const json = JSON.parse(data) - allen = new Map(json.map(item => [item['Dataset name'], item["Semantic link(s)"]])) -}) - - -fs.readFile(path.join(__dirname, 'data', 'waxholm.json'), 'utf-8', (err, data) => { - if (err) - throw err - const json = JSON.parse(data) - waxholm = new Map(json.map(item => [item['Dataset name'], item["Semantic link(s)"]])) -}) - -module.exports = ({ parcellationName, dataset }) => { - return parcellationName === 'Allen adult mouse brain reference atlas V3 Brain Atlas' - ? allen.get(dataset.name) - : parcellationName === 'Whole Brain (v2.0)' - ? waxholm.get(dataset.name) - : false -} \ No newline at end of file diff --git a/deploy/datasets/supplements/util/mapDwm.js b/deploy/datasets/supplements/util/mapDwm.js deleted file mode 100644 index b9cda2f1143970a66397c5572c7fbf991ddb96bd..0000000000000000000000000000000000000000 --- a/deploy/datasets/supplements/util/mapDwm.js +++ /dev/null @@ -1,69 +0,0 @@ -exports.manualFilter = (dataset) => dataset - && dataset.project - && dataset.project instanceof Array - && dataset.project.some(p => p === 'Atlas of deep white matter fibre bundles, version 2018') - -const dict = [ [ 'Probabilistic map of the anterior segment of the left arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Arcuate_Anterior - Left' ], -[ 'Probabilistic map of the direct segment of the left arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Arcuate - Left' ], -[ 'Probabilistic map of the posterior segment of the left arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Arcuate_Posterior - Left' ], -[ 'Probabilistic map of the left long cingulate fibres (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Cingulum_Long - Left' ], -[ 'Probabilistic map of the left short cingulate fibres (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Cingulum_Short - Left' ], -[ 'Probabilistic map of the left temporal cingulate fibres (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Cingulum_Temporal - Left' ], -[ 'Probabilistic map of the left corticospinal tract (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/CorticoSpinalTract - Left' ], -[ 'Probabilistic map of the left fornix (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Fornix - Left' ], -[ 'Probabilistic map of the left inferior fronto-occipital fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/InferiorFrontoOccipital - Left' ], -[ 'Probabilistic map of the left inferior longitudinal fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/InferiorLongitudinal - Left' ], -[ 'Probabilistic map of the left uncinate fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Uncinate - Left' ], -[ 'Probabilistic map of the anterior segment of the right arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Arcuate_Anterior - Right' ], -[ 'Probabilistic map of the posterior segment of the right arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Arcuate_Posterior - Right' ], -[ 'Probabilistic map of the posterior segment of the right arcuate fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Arcuate - Right' ], -[ 'Probabilistic map of the right long cingulate fibres (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Cingulum_Long - Right' ], -[ 'Probabilistic map of the right short cingulate fibres (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Cingulum_Short - Right' ], -[ 'Probabilistic map of the right temporal cingulate fibres (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Cingulum_Temporal - Right' ], -[ 'Probabilistic map of the right corticospinal tract (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/CorticoSpinalTract - Right' ], -[ 'Probabilistic map of the right fornix (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Fornix - Right' ], -[ 'Probabilistic map of the right inferior fronto-occipital fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/InferiorFrontoOccipital - Right' ], -[ 'Probabilistic map of the right inferior longitudinal fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/InferiorLongitudinal - Right' ], -[ 'Probabilistic map of the right uncinate fasciculus (atlas of deep white matter fibre bundles, version 2018)', -'Fibre Bundle Atlas - Long Bundle/Uncinate - Right' ] ] - -const dsNameToIdMap = new Map(dict) -const getIdFromDataset = (dataset) => { - const id = dsNameToIdMap.get(dataset.name) - if (id) return id - return null -} - -exports.manualMap = (dataset) => { - return { - preview: !process.env.DISABLE_DWM_PMAP, - ...dataset, - parcellationRegion: dataset.parcellationRegion.map(r => { - return { - ...r, - id: getIdFromDataset(dataset) - } - }) - } -} \ No newline at end of file diff --git a/src/res/ext/MNI152.json b/src/res/ext/MNI152.json index 92dd39191c05148ccfcf53949aca8f4ee8c067ef..50de3d7b1eebc47657b8311afb5da0ceff441c5d 100644 --- a/src/res/ext/MNI152.json +++ b/src/res/ext/MNI152.json @@ -839,6 +839,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area 7A" + ], "rgb": [ 38, 204, @@ -1179,6 +1182,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas": [ + "Area 3b" + ], "rgb": [ 239, 246, @@ -1326,6 +1332,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PFm" + ], "rgb": [ 53, 76, @@ -1372,6 +1381,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PFop" + ], "rgb": [ 146, 153, @@ -1418,6 +1430,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PF" + ], "rgb": [ 226, 211, @@ -1464,6 +1479,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PGp" + ], "rgb": [ 92, 116, @@ -1510,6 +1528,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PGa" + ], "rgb": [ 42, 236, @@ -1556,6 +1577,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PFt" + ], "rgb": [ 120, 135, @@ -1602,6 +1626,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PFcm" + ], "rgb": [ 98, 128, @@ -2392,6 +2419,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area hOc1" + ], "rgb": [ 190, 132, @@ -2888,6 +2918,10 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area 44v", + "Area 44d" + ], "rgb": [ 54, 74, @@ -2934,6 +2968,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas": [ + "Area 45" + ], "rgb": [ 167, 103, @@ -3301,6 +3338,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area 4p" + ], "rgb": [ 116, 92, @@ -4568,6 +4608,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area Te1" + ], "rgb": [ 252, 84, @@ -4623,6 +4666,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area FG1" + ], "rgb": [ 131, 183, @@ -4761,6 +4807,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area FG2" + ], "rgb": [ 67, 94, @@ -5699,62 +5748,98 @@ { "name": "Arcuate - Left", "children": [], - "labelIndex": "1" + "labelIndex": "1", + "relatedAreas": [ + "Direct segment of the left arcuate fasciculus" + ] }, { "name": "Arcuate - Right", "children": [], - "labelIndex": "31" + "labelIndex": "31", + "relatedAreas": [ + "Direct segment of the right arcuate fasciculus" + ] }, { "name": "Arcuate_Anterior - Left", "children": [], - "labelIndex": "2" + "labelIndex": "2", + "relatedAreas": [ + "Anterior segment of the left arcuate fasciculus" + ] }, { "name": "Arcuate_Anterior - Right", "children": [], - "labelIndex": "32" + "labelIndex": "32", + "relatedAreas": [ + "Anterior segment of the right arcuate fasciculus" + ] }, { "name": "Arcuate_Posterior - Left", "children": [], - "labelIndex": "3" + "labelIndex": "3", + "relatedAreas": [ + "Posterior segment of the left arcuate fasciculus" + ] }, { "name": "Arcuate_Posterior - Right", "children": [], - "labelIndex": "33" + "labelIndex": "33", + "relatedAreas": [ + "Posterior segment of the right arcuate fasciculus" + ] }, { "name": "Cingulum_Long - Left", "children": [], - "labelIndex": "4" + "labelIndex": "4", + "relatedAreas": [ + "Left long cingulate fibres" + ] }, { "name": "Cingulum_Long - Right", "children": [], - "labelIndex": "34" + "labelIndex": "34", + "relatedAreas": [ + "Right long cingulate fibres" + ] }, { "name": "Cingulum_Short - Left", "children": [], - "labelIndex": "5" + "labelIndex": "5", + "relatedAreas": [ + "Left short cingulate fibres" + ] }, { "name": "Cingulum_Short - Right", "children": [], - "labelIndex": "35" + "labelIndex": "35", + "relatedAreas": [ + "Right short cingulate fibres" + ] }, { "name": "Cingulum_Temporal - Left", "children": [], - "labelIndex": "6" + "labelIndex": "6", + "relatedAreas": [ + "Left temporal cingulate fibres" + ] }, { "name": "Cingulum_Temporal - Right", "children": [], - "labelIndex": "36" + "labelIndex": "36", + "relatedAreas": [ + "Right temporal cingulate fibres" + ] }, { "name": "CorpusCallosum_Body", @@ -5779,12 +5864,18 @@ { "name": "CorticoSpinalTract - Left", "children": [], - "labelIndex": "11" + "labelIndex": "11", + "relatedAreas": [ + "Left corticospinal tract" + ] }, { "name": "CorticoSpinalTract - Right", "children": [], - "labelIndex": "41" + "labelIndex": "41", + "relatedAreas": [ + "Right corticospinal tract" + ] }, { "name": "ExternalCapsule - Left", @@ -5799,32 +5890,50 @@ { "name": "Fornix - Left", "children": [], - "labelIndex": "13" + "labelIndex": "13", + "relatedAreas": [ + "Left fornix" + ] }, { "name": "Fornix - Right", "children": [], - "labelIndex": "43" + "labelIndex": "43", + "relatedAreas": [ + "Right fornix" + ] }, { "name": "InferiorFrontoOccipital - Left", "children": [], - "labelIndex": "14" + "labelIndex": "14", + "relatedAreas": [ + "Left inferior fronto-occipital fasciculus" + ] }, { "name": "InferiorFrontoOccipital - Right", "children": [], - "labelIndex": "44" + "labelIndex": "44", + "relatedAreas": [ + "Right inferior fronto-occipital fasciculus" + ] }, { "name": "InferiorLongitudinal - Left", "children": [], - "labelIndex": "15" + "labelIndex": "15", + "relatedAreas": [ + "Left inferior longitudinal fasciculus" + ] }, { "name": "InferiorLongitudinal - Right", "children": [], - "labelIndex": "45" + "labelIndex": "45", + "relatedAreas": [ + "Right inferior longitudinal fasciculus" + ] }, { "name": "InferiorLongitudinal_Lateral - Left", @@ -5879,12 +5988,18 @@ { "name": "Uncinate - Left", "children": [], - "labelIndex": "21" + "labelIndex": "21", + "relatedAreas": [ + "Left uncinate fasciculus" + ] }, { "name": "Uncinate - Right", "children": [], - "labelIndex": "51" + "labelIndex": "51", + "relatedAreas": [ + "Right uncinate fasciculus" + ] } ] }, diff --git a/src/res/ext/colin.json b/src/res/ext/colin.json index beb97256a249d7d24646d029876bf5abe8e4f68b..6c1c35b3ccb425a2d98864ccab76a12926886cef 100644 --- a/src/res/ext/colin.json +++ b/src/res/ext/colin.json @@ -839,6 +839,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area 7A" + ], "rgb": [ 38, 204, @@ -1179,6 +1182,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas": [ + "Area 3b" + ], "rgb": [ 239, 246, @@ -1326,6 +1332,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PFm" + ], "rgb": [ 53, 76, @@ -1372,6 +1381,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PFop" + ], "rgb": [ 146, 153, @@ -1418,6 +1430,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PF" + ], "rgb": [ 226, 211, @@ -1464,6 +1479,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PGp" + ], "rgb": [ 92, 116, @@ -1510,6 +1528,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PGa" + ], "rgb": [ 42, 236, @@ -1556,6 +1577,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PFt" + ], "rgb": [ 120, 135, @@ -1602,6 +1626,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area PFcm" + ], "rgb": [ 98, 128, @@ -2392,6 +2419,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area hOc1" + ], "rgb": [ 190, 132, @@ -2888,6 +2918,10 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area 44v", + "Area 44d" + ], "rgb": [ 54, 74, @@ -2902,6 +2936,7 @@ 75 ], "labelIndex": 2, + "ngId": "jubrain colin v17 left", "children": [], "position": [ @@ -2934,6 +2969,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas": [ + "Area 45" + ], "rgb": [ 167, 103, @@ -3301,6 +3339,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area 4p" + ], "rgb": [ 116, 92, @@ -4568,6 +4609,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area Te1" + ], "rgb": [ 252, 84, @@ -4623,6 +4667,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area FG1" + ], "rgb": [ 131, 183, @@ -4761,6 +4808,9 @@ "status": "publicP", "labelIndex": null, "synonyms": [], + "relatedAreas":[ + "Area FG2" + ], "rgb": [ 67, 94, diff --git a/src/res/images/MNI152.png b/src/res/images/MNI152ICBM2009cNonlinearAsymmetric.png similarity index 100% rename from src/res/images/MNI152.png rename to src/res/images/MNI152ICBM2009cNonlinearAsymmetric.png diff --git a/src/ui/databrowserModule/databrowser/databrowser.component.ts b/src/ui/databrowserModule/databrowser/databrowser.component.ts index e9ca1b1e011606c13cf5c31b1dea9c5e9e0af942..b3568e039e3be5c046e2571e2d014ed1cac1877d 100644 --- a/src/ui/databrowserModule/databrowser/databrowser.component.ts +++ b/src/ui/databrowserModule/databrowser/databrowser.component.ts @@ -74,7 +74,6 @@ export class DataBrowser implements OnDestroy,OnInit{ this.dbService.getDataByRegion({ regions, parcellation, template }) .then(de => { this.dataentries = de - this.fetchingFlag = false return de }) .then(this.dbService.getModalityFromDE) @@ -83,9 +82,11 @@ export class DataBrowser implements OnDestroy,OnInit{ }) .catch(e => { console.error(e) - this.fetchingFlag = false this.fetchError = true }) + .finally(() => { + this.fetchingFlag = false + }) this.subscriptions.push( merge( diff --git a/src/ui/databrowserModule/singleDataset/singleDataset.component.ts b/src/ui/databrowserModule/singleDataset/singleDataset.component.ts index 997ed303fdfca77f1d6abce2241bf38837945e48..20f58c6675a3476797a7cd26efafe5ca63ff6561 100644 --- a/src/ui/databrowserModule/singleDataset/singleDataset.component.ts +++ b/src/ui/databrowserModule/singleDataset/singleDataset.component.ts @@ -27,7 +27,7 @@ export class SingleDatasetView implements OnInit { * sic! */ private kgReference: string[] = [] - private files: File[] = [] + public files: File[] = [] private methods: string[] = [] /** * sic! diff --git a/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts b/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts index 3f45fa9d105f4a34e47dd2d1e1f428670467aa13..4efe62a4c80a893f1020279d9ce080467ed9f1dd 100644 --- a/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts +++ b/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts @@ -24,21 +24,13 @@ export class FilterDataEntriesByRegion implements PipeTransform{ */ const newParcellationRegion = de.parcellationRegion.map(({name, id, ...rest}) => { - /** - * TODO: temporary hack, some dataset region name is not exactly the same as region - */ - /* https://stackoverflow.com/a/9310752/6059235 */ - const regex = new RegExp(name.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&'), 'i') - const found = flattenedAllRegions.find(r => { /** * TODO replace pseudo id with real uuid */ - return (r.id && id && r.id === id) || regex.test(r.name) - /** - * more correct, but probably should use UUID in the future - */ - return r.name === name + return (r.id && id && r.id === id) + || r.name === name + || r.relatedAreas && r.relatedAreas.length && r.relatedAreas.some(syn => syn === name) }) return found ? { name, id, ...rest, ...found } diff --git a/src/ui/nehubaContainer/nehubaContainer.component.ts b/src/ui/nehubaContainer/nehubaContainer.component.ts index 74849c89679efbafd7a776c58dabed4306d8f5b6..b002afb1163107168b3d97c33dbdb6303e6323a3 100644 --- a/src/ui/nehubaContainer/nehubaContainer.component.ts +++ b/src/ui/nehubaContainer/nehubaContainer.component.ts @@ -1090,7 +1090,8 @@ export class NehubaContainer implements OnInit, OnDestroy{ */ Object.keys(_navigation).forEach(key => (!_navigation[key]) && delete _navigation[key]) - if( animation ){ + const { animation: globalAnimationFlag } = this.viewerConfig + if( globalAnimationFlag && animation ){ /* animated */ const gen = timedValues() diff --git a/src/ui/signinBanner/signinBanner.components.ts b/src/ui/signinBanner/signinBanner.components.ts index 93c18c3f7bec8f44f1d82403524ad24f052c64fd..ae687ba8d2d8811279faa9585f34a4bef174ad5c 100644 --- a/src/ui/signinBanner/signinBanner.components.ts +++ b/src/ui/signinBanner/signinBanner.components.ts @@ -203,7 +203,8 @@ export class SigninBanner implements OnInit, OnDestroy{ this.store.dispatch({ type: CHANGE_NAVIGATION, navigation: { - position: region.position + position: region.position, + animation: {} } }) } else {