diff --git a/src/js/company_bubble.js b/src/js/company_bubble.js index 02b189a..1d1c713 100644 --- a/src/js/company_bubble.js +++ b/src/js/company_bubble.js @@ -2,7 +2,7 @@ import * as d3 from 'd3'; import { cumsum } from 'd3-array'; export class company_bubble { - constructor(container, data, labels, opts) { + constructor(container, data) { let container_div; if (typeof container === 'string') { @@ -23,11 +23,11 @@ export class company_bubble { // Declare the chart dimensions and margins. const width = 600; const height = 500; - const marginTop = 70; + const marginTop = 40; const marginRight = 60; const marginBottom = 80; - const marginLeft = 70; - let size = Math.min(width - marginLeft - marginRight, height - marginTop - marginBottom); + const marginLeft = 80; + let size = height - marginTop - marginBottom; // Chart parameters let year_span = 5, @@ -47,8 +47,7 @@ export class company_bubble { xtooltip = xtitle, ytooltip = ytitle, ztooltip = 'Weight in portfolio (% of AUM)', - legend_title = 'Portfolio weight', - footnote = '* Scenario: '; + legend_title = 'Portfolio weight'; // Create the svg container const svg = this.container @@ -61,16 +60,19 @@ export class company_bubble { // Filter data let sector = document.querySelector('#sector_selector').value, - asset_class = document.querySelector('#asset_class_selector').value; + asset_class = document.querySelector('#asset_class_selector').value, + scenario_source = document.querySelector('#scenario_source_selector').value, + scenario = document.querySelector('#scenario_selector').value, + allocation = document.querySelector('#allocation_method_selector').value; let subdata = data .filter((d) => d.asset_class == asset_class) - .filter((d) => d.ald_sector_translation == sector); + .filter((d) => d.ald_sector_translation == sector) + .filter((d) => d.scenario_source == scenario_source) + .filter((d) => d.scenario == scenario) + .filter((d) => d.allocation == allocation); var year_future = subdata.map((d) => d.year)[0] + year_span; - var scenario = subdata.map((d) => d.scenario)[0]; var buffer = 0.0; - var xmax = d3.max(subdata, (d) => d[xvar]); - var ymax = d3.max(subdata, (d) => d[yvar]); // Axes let x = d3 @@ -110,11 +112,7 @@ export class company_bubble { .attr('class', 'xtitle') .attr( 'transform', - 'translate(' + - ((width - marginLeft - marginRight) / 2 + marginLeft) + - ' ,' + - (height - marginBottom + 40) + - ')' + 'translate(' + (size / 2 + marginLeft) + ' ,' + (height - marginBottom + 40) + ')' ) .style('text-anchor', 'middle') .text(xtitle); @@ -124,11 +122,7 @@ export class company_bubble { .attr('class', 'xsubtitle') .attr( 'transform', - 'translate(' + - ((width - marginLeft - marginRight) / 2 + marginLeft) + - ' ,' + - (height - marginBottom + 55) + - ')' + 'translate(' + (size / 2 + marginLeft) + ' ,' + (height - marginBottom + 55) + ')' ) .style('text-anchor', 'middle') .text(xsubtitle); @@ -276,17 +270,6 @@ export class company_bubble { .text(legend_title); - // Footnote - svg - .append('text') - .attr('class', 'footnote') - .attr('transform', 'translate(' + (width - marginRight) + ' ,' + (height - 10) + ')') - .attr('x', 0) - .attr('y', 0) - .attr('font-size', '0.7em') - .style('text-anchor', 'end') - .text(footnote + scenario + '.'); - let tooltip = d3 .select(container_div) .append('div') diff --git a/src/js/techexposure_company.js b/src/js/techexposure_company.js index 94bdb9a..fb85abd 100644 --- a/src/js/techexposure_company.js +++ b/src/js/techexposure_company.js @@ -20,7 +20,7 @@ export class techexposure_company { // Declare the chart dimensions and margins. const width = 928; - const height = 650; + const height = 750; const marginTop = 40; const marginRight = 70; const marginBottom = 140; @@ -55,12 +55,22 @@ export class techexposure_company { .style('display', 'none'); let selected_sector = document.querySelector('#sector_selector').value, - selected_class = document.querySelector('#asset_class_selector').value; + selected_class = document.querySelector('#asset_class_selector').value, + scenario_source = document.querySelector('#scenario_source_selector').value, + scenario = document.querySelector('#scenario_selector').value, + allocation = document.querySelector('#allocation_method_selector').value; let selected_sector_org = data_down.filter( (d) => d.ald_sector_translation == selected_sector )[0]['ald_sector']; - let [subdata_up, undefined] = getDataBarsAndWeights(data_up, selected_class, selected_sector); + let [subdata_up, undefined] = getDataBarsAndWeights( + data_up, + selected_class, + selected_sector, + scenario_source, + scenario, + allocation + ); subdata_up = orderData( subdata_up, tech_order.filter((d) => d.sector == selected_sector)[0].tech_order @@ -73,7 +83,10 @@ export class techexposure_company { let [subdata_down, subdata_weights] = getDataBarsAndWeights( data_down, selected_class, - selected_sector + selected_sector, + scenario_source, + scenario, + allocation ); subdata_down = orderData( subdata_down, @@ -316,8 +329,22 @@ export class techexposure_company { return subdata_tech; } - function getDataBarsAndWeights(data, asset_class, sector) { - let subdata = getSectorAssetSubsetData(data, asset_class, sector); + function getDataBarsAndWeights( + data, + asset_class, + sector, + scenario_source, + scenario, + allocation + ) { + let subdata = getSectorAssetSubsetData( + data, + asset_class, + sector, + scenario_source, + scenario, + allocation + ); var subdata_weights = getPortfolioWeightsPerIdData(subdata); let subdata_tech = getTechnologyDataForStacking(subdata, subdata_weights); @@ -355,9 +382,20 @@ export class techexposure_company { } } - function getSectorAssetSubsetData(data, asset_class, sector) { - let subdata = data.filter((d) => d.asset_class_translation == asset_class); - subdata = subdata.filter((d) => d.ald_sector_translation == sector); + function getSectorAssetSubsetData( + data, + asset_class, + sector, + scenario_source, + scenario, + allocation + ) { + let subdata = data + .filter((d) => d.asset_class_translation == asset_class) + .filter((d) => d.ald_sector_translation == sector) + .filter((d) => d.scenario_source == scenario_source) + .filter((d) => d.scenario == scenario) + .filter((d) => d.allocation == allocation); return subdata; } @@ -369,9 +407,14 @@ export class techexposure_company { data_ordered[idx] = {}; data_ordered[idx].id = item.id; tech_order_sector.forEach(function (tech) { - data_ordered[idx][tech] = item[tech]; + if (Object.keys(item).includes(tech)) { + data_ordered[idx][tech] = item[tech]; + } }); - }); + if (Object.keys(item).length != Object.keys(data_ordered[idx]).length) { + throw new Error('Not all technologies for the sector found in json/tech_order_in_sectors.json dataset. Please append the dataset with new technologies if needed.'); + } + }); return data_ordered; } diff --git a/src/js/techmix_sector.js b/src/js/techmix_sector.js index 71cf183..971b9d6 100644 --- a/src/js/techmix_sector.js +++ b/src/js/techmix_sector.js @@ -36,7 +36,7 @@ export class techmix_sector { let dataYear = data.filter((d) => d.year == year); let greenData = []; uniqueValueTypes.forEach((item, idx) => { - let greenDataItem = dataYear.filter((d) => (d.val_type == item & d.green == true)); + let greenDataItem = dataYear.filter((d) => (d.val_type == item) & (d.green == true)); greenData[idx] = {}; greenData[idx]['val_type'] = item; if (greenDataItem.length > 0) { @@ -326,7 +326,9 @@ export class techmix_sector { .attr('y', 20) .text((d) => d); - let sumGreenBarsInPlot = d3.sum(subdataTechPerYear[0], d => d.greenBars.green_sum) + d3.sum(subdataTechPerYear[1], d => d.greenBars.green_sum); + let sumGreenBarsInPlot = + d3.sum(subdataTechPerYear[0], (d) => d.greenBars.green_sum) + + d3.sum(subdataTechPerYear[1], (d) => d.greenBars.green_sum); if (sumGreenBarsInPlot > 0) { // Append legend for green bars let legendGreen = svg @@ -345,7 +347,7 @@ export class techmix_sector { .attr('x', 30) .attr('y', 20) .text((d) => d); - } + } // Add hover overs const tooltip = d3 diff --git a/src/json/data_company_bubble.json b/src/json/data_company_bubble.json index c03d137..8862cb9 100644 --- a/src/json/data_company_bubble.json +++ b/src/json/data_company_bubble.json @@ -1,338 +1,10201 @@ [ { "company_name": "Bayerische Motoren Werke AG", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.2397, + "plan_carsten": 0.0033, + "port_weight": 0.0136, + "y": 1.0362, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.2397, + "plan_carsten": 0.0033, + "port_weight": 0.0136, + "y": 0.8023, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.2397, + "plan_carsten": 0.0033, + "port_weight": 0.0136, + "y": 1.2647, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0.0118, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0.0118, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0.0118, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0.0118, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0.0118, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0.0118, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0.0118, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1428, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1876, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.228, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1195, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.122, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1032, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1478, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0.0156, + "port_weight": 0.0195, + "y": 0.352, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0.0156, + "port_weight": 0.0195, + "y": 0.4624, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0.0156, + "port_weight": 0.0195, + "y": 0.5619, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0.0156, + "port_weight": 0.0195, + "y": 0.2975, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0.0156, + "port_weight": 0.0195, + "y": 0.3006, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0.0156, + "port_weight": 0.0195, + "y": 0.2542, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0.0156, + "port_weight": 0.0195, + "y": 0.3643, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0.0159, + "port_weight": 0.0318, + "y": 0.0331, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0.0159, + "port_weight": 0.0318, + "y": 0.0435, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0.0159, + "port_weight": 0.0318, + "y": 0.0528, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0.0159, + "port_weight": 0.0318, + "y": 0.028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0.0159, + "port_weight": 0.0318, + "y": 0.0283, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0.0159, + "port_weight": 0.0318, + "y": 0.0239, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0.0159, + "port_weight": 0.0318, + "y": 0.0342, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0.0045, + "port_weight": 0.0071, + "y": 0.0978, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0.0045, + "port_weight": 0.0071, + "y": 0.1284, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0.0045, + "port_weight": 0.0071, + "y": 0.1561, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0.0045, + "port_weight": 0.0071, + "y": 0.0828, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0.0045, + "port_weight": 0.0071, + "y": 0.0835, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0.0045, + "port_weight": 0.0071, + "y": 0.0706, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0.0045, + "port_weight": 0.0071, + "y": 0.1012, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0.0098, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0.0098, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0.0098, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0.0098, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0.0098, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0.0098, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0.0098, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0803, + "plan_carsten": 0.0014, + "port_weight": 0.0174, + "y": 0.8091, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0803, + "plan_carsten": 0.0014, + "port_weight": 0.0174, + "y": 0.6265, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0803, + "plan_carsten": 0.0014, + "port_weight": 0.0174, + "y": 0.9875, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0288, + "plan_carsten": 0.0007, + "port_weight": 0.0242, + "y": 0.7217, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0288, + "plan_carsten": 0.0007, + "port_weight": 0.0242, + "y": 0.5589, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0288, + "plan_carsten": 0.0007, + "port_weight": 0.0242, + "y": 0.8809, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0.0001, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0.0001, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0.0001, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0.0001, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0.0001, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0.0001, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0.0001, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0665, + "plan_carsten": 0.0077, + "port_weight": 0.1156, + "y": 0.4708, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0665, + "plan_carsten": 0.0077, + "port_weight": 0.1156, + "y": 0.3656, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0665, + "plan_carsten": 0.0077, + "port_weight": 0.1156, + "y": 0.5746, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0.0017, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0.0017, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0.0017, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0.0017, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0.0017, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0.0017, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0.0017, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0004, + "plan_carsten": 4.3713e-6, + "port_weight": 0.0118, + "y": 0.0003, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0004, + "plan_carsten": 4.3713e-6, + "port_weight": 0.0118, + "y": 0.0002, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0004, + "plan_carsten": 4.3713e-6, + "port_weight": 0.0118, + "y": 0.0003, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0.0008, + "port_weight": 0.0015, + "y": 0.2034, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0.0008, + "port_weight": 0.0015, + "y": 0.2673, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0.0008, + "port_weight": 0.0015, + "y": 0.3247, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0.0008, + "port_weight": 0.0015, + "y": 0.1723, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0.0008, + "port_weight": 0.0015, + "y": 0.1737, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0.0008, + "port_weight": 0.0015, + "y": 0.1469, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0.0008, + "port_weight": 0.0015, + "y": 0.2105, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0793, + "plan_carsten": 0.0006, + "port_weight": 0.0076, + "y": 0.4389, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0793, + "plan_carsten": 0.0006, + "port_weight": 0.0076, + "y": 0.3399, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0793, + "plan_carsten": 0.0006, + "port_weight": 0.0076, + "y": 0.5357, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0673, + "plan_carsten": 0.0024, + "port_weight": 0.0357, + "y": 0.4908, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0673, + "plan_carsten": 0.0024, + "port_weight": 0.0357, + "y": 0.3809, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0673, + "plan_carsten": 0.0024, + "port_weight": 0.0357, + "y": 0.5991, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0.0066, + "port_weight": 0.0132, + "y": 0.618, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0.0066, + "port_weight": 0.0132, + "y": 0.8119, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0.0066, + "port_weight": 0.0132, + "y": 0.9865, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0.0066, + "port_weight": 0.0132, + "y": 0.517, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0.0066, + "port_weight": 0.0132, + "y": 0.5278, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0.0066, + "port_weight": 0.0132, + "y": 0.4464, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0.0066, + "port_weight": 0.0132, + "y": 0.6396, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0.0048, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0.0048, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0.0048, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0.0048, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0.0048, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0.0048, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0.0048, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1177, + "plan_carsten": 0.0029, + "port_weight": 0.025, + "y": 1.3489, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1177, + "plan_carsten": 0.0029, + "port_weight": 0.025, + "y": 1.0445, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1177, + "plan_carsten": 0.0029, + "port_weight": 0.025, + "y": 1.6464, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0.0025, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0.0025, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0.0025, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0.0025, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0.0025, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0.0025, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0.0025, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0292, + "plan_carsten": 0.0006, + "port_weight": 0.0202, + "y": 0.0794, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0292, + "plan_carsten": 0.0006, + "port_weight": 0.0202, + "y": 0.0616, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0292, + "plan_carsten": 0.0006, + "port_weight": 0.0202, + "y": 0.0969, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0.0008, + "port_weight": 0.0079, + "y": 0.0079, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0.0008, + "port_weight": 0.0079, + "y": 0.0104, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0.0008, + "port_weight": 0.0079, + "y": 0.0126, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0.0008, + "port_weight": 0.0079, + "y": 0.0067, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0.0008, + "port_weight": 0.0079, + "y": 0.0068, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0.0008, + "port_weight": 0.0079, + "y": 0.0057, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0.0008, + "port_weight": 0.0079, + "y": 0.0082, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Volkswagen AG", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1279, + "plan_carsten": 0.0049, + "port_weight": 0.0385, + "y": 0.7472, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Volkswagen AG", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1279, + "plan_carsten": 0.0049, + "port_weight": 0.0385, + "y": 0.5786, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Volkswagen AG", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1279, + "plan_carsten": 0.0049, + "port_weight": 0.0385, + "y": 0.912, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0.0002, + "port_weight": 0.0002, + "y": 1.1705, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0.0002, + "port_weight": 0.0002, + "y": 1.5377, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0.0002, + "port_weight": 0.0002, + "y": 1.8684, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0.0002, + "port_weight": 0.0002, + "y": 0.9791, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0.0002, + "port_weight": 0.0002, + "y": 0.9995, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0.0002, + "port_weight": 0.0002, + "y": 0.8454, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0.0002, + "port_weight": 0.0002, + "y": 1.2113, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ambev SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0189, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ambev SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0189, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ambev SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0189, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ambev SA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0189, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ambev SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0189, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ambev SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0189, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ambev SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0189, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anglo American Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anglo American Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anglo American Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anglo American Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anglo American Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anglo American Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anglo American Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anhui Jianghuai Automobile Group Corp. Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.4492, + "plan_carsten": 0, + "port_weight": 0.0025, + "y": 0.1171, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anhui Jianghuai Automobile Group Corp. Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.4492, + "plan_carsten": 0, + "port_weight": 0.0025, + "y": 0.0907, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Anhui Jianghuai Automobile Group Corp. Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.4492, + "plan_carsten": 0, + "port_weight": 0.0025, + "y": 0.1429, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ArcelorMittal SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1109, + "plan_carsten": 0, + "port_weight": 0.0041, + "y": 0.3426, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ArcelorMittal SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1109, + "plan_carsten": 0, + "port_weight": 0.0041, + "y": 0.4501, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ArcelorMittal SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1109, + "plan_carsten": 0, + "port_weight": 0.0041, + "y": 0.5469, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ArcelorMittal SA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1109, + "plan_carsten": 0, + "port_weight": 0.0041, + "y": 0.2866, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ArcelorMittal SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1109, + "plan_carsten": 0, + "port_weight": 0.0041, + "y": 0.2926, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ArcelorMittal SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1109, + "plan_carsten": 0, + "port_weight": 0.0041, + "y": 0.2475, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ArcelorMittal SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1109, + "plan_carsten": 0, + "port_weight": 0.0041, + "y": 0.3546, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BP Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4409, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.2328, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BP Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4409, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.3058, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BP Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4409, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.3716, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BP Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4409, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.1947, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BP Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4409, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.1988, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BP Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4409, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.1681, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BP Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4409, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.2409, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.9845, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0.7936, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.9845, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0.6145, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.9845, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0.9686, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "BYD Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0109, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Barrick Gold Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2545, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Barrick Gold Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2545, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Barrick Gold Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2545, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Barrick Gold Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2545, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Barrick Gold Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2545, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Barrick Gold Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2545, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Barrick Gold Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2545, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1468, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1468, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1468, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1468, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.2397, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 1.0362, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.2397, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 0.8023, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.2397, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 1.2647, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1468, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1468, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Bayerische Motoren Werke AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1468, + "plan_carsten": 0, + "port_weight": 0.0136, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "CRH Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "CRH Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "CRH Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "CRH Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "CRH Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "CRH Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "CRH Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Carlsberg A/S", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9833, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Carlsberg A/S", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9833, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Carlsberg A/S", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9833, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Carlsberg A/S", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9833, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Carlsberg A/S", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9833, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Carlsberg A/S", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9833, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Carlsberg A/S", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9833, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China CITIC Financial Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2472, + "plan_carsten": 0, + "port_weight": 0.0077, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China CITIC Financial Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2472, + "plan_carsten": 0, + "port_weight": 0.0077, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China CITIC Financial Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2472, + "plan_carsten": 0, + "port_weight": 0.0077, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China CITIC Financial Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2472, + "plan_carsten": 0, + "port_weight": 0.0077, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China CITIC Financial Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2472, + "plan_carsten": 0, + "port_weight": 0.0077, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China CITIC Financial Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2472, + "plan_carsten": 0, + "port_weight": 0.0077, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China CITIC Financial Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2472, + "plan_carsten": 0, + "port_weight": 0.0077, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Cinda Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0147, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Cinda Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0147, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Cinda Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0147, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Cinda Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0147, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Cinda Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0147, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Cinda Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0147, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Cinda Asset Management Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0147, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Resources Power Holdings Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3856, + "plan_carsten": 0, + "port_weight": 0.0307, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Shenhua Energy Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0087, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Shenhua Energy Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0087, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Shenhua Energy Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0087, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Shenhua Energy Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0087, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Shenhua Energy Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0087, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Shenhua Energy Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0087, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "China Shenhua Energy Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0087, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Cleveland-Cliffs, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0022, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Cleveland-Cliffs, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0022, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Cleveland-Cliffs, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0022, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Cleveland-Cliffs, Inc.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0022, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Cleveland-Cliffs, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0022, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Cleveland-Cliffs, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0022, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Cleveland-Cliffs, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0022, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Coal India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0344, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Coal India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0344, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Coal India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0344, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Coal India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0344, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Coal India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0344, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Coal India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0344, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Coal India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0344, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Compass Group Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0005, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Compass Group Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0005, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Compass Group Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0005, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Compass Group Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0005, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Compass Group Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0005, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Compass Group Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0005, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Compass Group Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0005, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Diageo Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Diageo Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Diageo Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Diageo Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Diageo Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Diageo Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Diageo Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1428, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1876, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.228, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1195, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.122, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1032, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Dubai Electricity & Water Authority", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.1403, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0.1478, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0, + "port_weight": 0.0195, + "y": 0.352, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0, + "port_weight": 0.0195, + "y": 0.4624, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0, + "port_weight": 0.0195, + "y": 0.5619, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0, + "port_weight": 0.0195, + "y": 0.2975, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0, + "port_weight": 0.0195, + "y": 0.3006, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0, + "port_weight": 0.0195, + "y": 0.2542, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "EDP-Energias de Portugal SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8004, + "plan_carsten": 0, + "port_weight": 0.0195, + "y": 0.3643, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0, + "port_weight": 0.0318, + "y": 0.0331, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0, + "port_weight": 0.0318, + "y": 0.0435, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0, + "port_weight": 0.0318, + "y": 0.0528, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0, + "port_weight": 0.0318, + "y": 0.028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0, + "port_weight": 0.0318, + "y": 0.0283, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0, + "port_weight": 0.0318, + "y": 0.0239, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ENGIE SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4999, + "plan_carsten": 0, + "port_weight": 0.0318, + "y": 0.0342, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0, + "port_weight": 0.0071, + "y": 0.0978, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0, + "port_weight": 0.0071, + "y": 0.1284, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0, + "port_weight": 0.0071, + "y": 0.1561, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0, + "port_weight": 0.0071, + "y": 0.0828, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0, + "port_weight": 0.0071, + "y": 0.0835, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0, + "port_weight": 0.0071, + "y": 0.0706, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Enel SpA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6382, + "plan_carsten": 0, + "port_weight": 0.0071, + "y": 0.1012, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Energisa SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8077, + "plan_carsten": 0, + "port_weight": 0.0122, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Fairfax Financial Holdings Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0065, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Fairfax Financial Holdings Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0065, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Fairfax Financial Holdings Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0065, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Fairfax Financial Holdings Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0065, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Fairfax Financial Holdings Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0065, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Fairfax Financial Holdings Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0065, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Fairfax Financial Holdings Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0065, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0803, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0.8091, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0803, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0.6265, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0803, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0.9875, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ford Motor Co.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0174, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Galp Energia SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0092, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Galp Energia SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0092, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Galp Energia SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0092, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Galp Energia SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0092, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Galp Energia SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0092, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Galp Energia SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0092, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Galp Energia SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0092, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hargreaves Lansdown Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5656, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.4297, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hargreaves Lansdown Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5656, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.5646, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hargreaves Lansdown Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5656, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.686, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hargreaves Lansdown Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5656, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.3641, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hargreaves Lansdown Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5656, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.367, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hargreaves Lansdown Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5656, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.3104, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hargreaves Lansdown Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5656, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.4447, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Heineken Holding NV", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Heineken Holding NV", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Heineken Holding NV", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Heineken Holding NV", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Heineken Holding NV", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Heineken Holding NV", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Heineken Holding NV", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9463, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9463, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9463, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9463, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0288, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0.7217, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0288, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0.5589, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0288, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0.8809, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9463, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9463, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Honda Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.9463, + "plan_carsten": 0, + "port_weight": 0.0242, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Huaneng Power International, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0107, + "plan_carsten": 0, + "port_weight": 0.005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyatt Hotels Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyatt Hotels Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyatt Hotels Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyatt Hotels Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyatt Hotels Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyatt Hotels Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyatt Hotels Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.1156, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.1156, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.1156, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.1156, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0665, + "plan_carsten": 0, + "port_weight": 0.1156, + "y": 0.4708, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0665, + "plan_carsten": 0, + "port_weight": 0.1156, + "y": 0.3656, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0665, + "plan_carsten": 0, + "port_weight": 0.1156, + "y": 0.5746, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.1156, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.1156, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Hyundai Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.1156, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IAC, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IAC, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IAC, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IAC, Inc.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IAC, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IAC, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IAC, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "IDACORP, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4857, + "plan_carsten": 0, + "port_weight": 0.0035, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2075, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0.0618, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2075, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0.0811, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2075, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0.0986, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2075, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0.0517, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2075, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0.0527, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2075, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0.0446, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "ITOCHU Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2075, + "plan_carsten": 0, + "port_weight": 0.0128, + "y": 0.0639, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "JSW Steel Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0117, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "JSW Steel Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0117, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "JSW Steel Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0117, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "JSW Steel Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0117, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "JSW Steel Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0117, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "JSW Steel Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0117, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "JSW Steel Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0117, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Jindal Steel & Power Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2135, + "plan_carsten": 0, + "port_weight": 0.0049, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Jindal Steel & Power Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2135, + "plan_carsten": 0, + "port_weight": 0.0049, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Jindal Steel & Power Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2135, + "plan_carsten": 0, + "port_weight": 0.0049, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Jindal Steel & Power Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2135, + "plan_carsten": 0, + "port_weight": 0.0049, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Jindal Steel & Power Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2135, + "plan_carsten": 0, + "port_weight": 0.0049, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Jindal Steel & Power Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2135, + "plan_carsten": 0, + "port_weight": 0.0049, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Jindal Steel & Power Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2135, + "plan_carsten": 0, + "port_weight": 0.0049, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Kellanova", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Kellanova", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Kellanova", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Kellanova", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Kellanova", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Kellanova", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Kellanova", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Lloyds Banking Group Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.7416, + "plan_carsten": 0, + "port_weight": 0, + "y": 0.2886, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Lloyds Banking Group Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.7416, + "plan_carsten": 0, + "port_weight": 0, + "y": 0.3792, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Lloyds Banking Group Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.7416, + "plan_carsten": 0, + "port_weight": 0, + "y": 0.4607, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Lloyds Banking Group Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.7416, + "plan_carsten": 0, + "port_weight": 0, + "y": 0.2414, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Lloyds Banking Group Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.7416, + "plan_carsten": 0, + "port_weight": 0, + "y": 0.2465, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Lloyds Banking Group Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.7416, + "plan_carsten": 0, + "port_weight": 0, + "y": 0.2085, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Lloyds Banking Group Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.7416, + "plan_carsten": 0, + "port_weight": 0, + "y": 0.2987, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "MGM Resorts International", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "MGM Resorts International", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "MGM Resorts International", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "MGM Resorts International", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "MGM Resorts International", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "MGM Resorts International", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "MGM Resorts International", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Martifer SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0179, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Martifer SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0179, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Martifer SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0179, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Martifer SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0179, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Martifer SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0179, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Martifer SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0179, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Martifer SGPS SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0179, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Marubeni Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4336, + "plan_carsten": 0, + "port_weight": 0.0161, + "y": 0.035, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Marubeni Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4336, + "plan_carsten": 0, + "port_weight": 0.0161, + "y": 0.046, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Marubeni Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4336, + "plan_carsten": 0, + "port_weight": 0.0161, + "y": 0.0559, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Marubeni Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4336, + "plan_carsten": 0, + "port_weight": 0.0161, + "y": 0.0293, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Marubeni Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4336, + "plan_carsten": 0, + "port_weight": 0.0161, + "y": 0.0299, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Marubeni Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4336, + "plan_carsten": 0, + "port_weight": 0.0161, + "y": 0.0253, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Marubeni Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4336, + "plan_carsten": 0, + "port_weight": 0.0161, + "y": 0.0362, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0004, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0.0003, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0004, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0.0002, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0004, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0.0003, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Maruti Suzuki India Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Mondi Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Mondi Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Mondi Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Mondi Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Mondi Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Mondi Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Mondi Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "National Grid Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0983, + "plan_carsten": 0, + "port_weight": 0.0005, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0, + "port_weight": 0.0015, + "y": 0.2034, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0, + "port_weight": 0.0015, + "y": 0.2673, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0, + "port_weight": 0.0015, + "y": 0.3247, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0, + "port_weight": 0.0015, + "y": 0.1723, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0, + "port_weight": 0.0015, + "y": 0.1737, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0, + "port_weight": 0.0015, + "y": 0.1469, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "NextEra Energy, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5011, + "plan_carsten": 0, + "port_weight": 0.0015, + "y": 0.2105, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0793, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0.4389, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0793, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0.3399, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0793, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0.5357, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nissan Motor Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0076, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nordea Bank Abp", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nordea Bank Abp", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nordea Bank Abp", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nordea Bank Abp", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nordea Bank Abp", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nordea Bank Abp", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Nordea Bank Abp", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "POSCO Holdings Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0587, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "POSCO Holdings Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0587, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "POSCO Holdings Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0587, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "POSCO Holdings Inc.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0587, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "POSCO Holdings Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0587, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "POSCO Holdings Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0587, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "POSCO Holdings Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0587, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "PetroChina Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0641, + "plan_carsten": 0, + "port_weight": 0.0127, + "y": 0.7314, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "PetroChina Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0641, + "plan_carsten": 0, + "port_weight": 0.0127, + "y": 0.9609, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "PetroChina Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0641, + "plan_carsten": 0, + "port_weight": 0.0127, + "y": 1.1676, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "PetroChina Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0641, + "plan_carsten": 0, + "port_weight": 0.0127, + "y": 0.6119, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "PetroChina Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0641, + "plan_carsten": 0, + "port_weight": 0.0127, + "y": 0.6246, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "PetroChina Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0641, + "plan_carsten": 0, + "port_weight": 0.0127, + "y": 0.5283, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "PetroChina Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0641, + "plan_carsten": 0, + "port_weight": 0.0127, + "y": 0.757, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Petróleo Brasileiro SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0006, + "plan_carsten": 0, + "port_weight": 0.0046, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Petróleo Brasileiro SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0006, + "plan_carsten": 0, + "port_weight": 0.0046, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Petróleo Brasileiro SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0006, + "plan_carsten": 0, + "port_weight": 0.0046, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Petróleo Brasileiro SA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0006, + "plan_carsten": 0, + "port_weight": 0.0046, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Petróleo Brasileiro SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0006, + "plan_carsten": 0, + "port_weight": 0.0046, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Petróleo Brasileiro SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0006, + "plan_carsten": 0, + "port_weight": 0.0046, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Petróleo Brasileiro SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0006, + "plan_carsten": 0, + "port_weight": 0.0046, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "RTX Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "RTX Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "RTX Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "RTX Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "RTX Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "RTX Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "RTX Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4519, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4519, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4519, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4519, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0673, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0.4908, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0673, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0.3809, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0673, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0.5991, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4519, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4519, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Renault SA", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4519, + "plan_carsten": 0, + "port_weight": 0.0357, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SS&C Technologies Holdings, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SS&C Technologies Holdings, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SS&C Technologies Holdings, Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SS&C Technologies Holdings, Inc.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SS&C Technologies Holdings, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SS&C Technologies Holdings, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SS&C Technologies Holdings, Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0, + "port_weight": 0.0132, + "y": 0.618, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0, + "port_weight": 0.0132, + "y": 0.8119, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0, + "port_weight": 0.0132, + "y": 0.9865, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0, + "port_weight": 0.0132, + "y": 0.517, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0, + "port_weight": 0.0132, + "y": 0.5278, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0, + "port_weight": 0.0132, + "y": 0.4464, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "SSE Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4959, + "plan_carsten": 0, + "port_weight": 0.0132, + "y": 0.6396, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Basic Industries Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0138, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Basic Industries Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0138, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Basic Industries Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0138, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Basic Industries Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0138, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Basic Industries Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0138, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Basic Industries Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0138, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Basic Industries Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0138, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Telecom Co.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Telecom Co.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Telecom Co.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Telecom Co.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Telecom Co.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Telecom Co.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Saudi Telecom Co.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shell Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3633, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0.776, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shell Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3633, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 1.0194, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shell Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3633, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 1.2387, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shell Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3633, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0.6491, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shell Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3633, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0.6626, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shell Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3633, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0.5605, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shell Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.3633, + "plan_carsten": 0, + "port_weight": 0.0001, + "y": 0.8031, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Shikoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2301, + "plan_carsten": 0, + "port_weight": 0.0208, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Sojitz Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6688, + "plan_carsten": 0, + "port_weight": 0.0058, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Sojitz Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6688, + "plan_carsten": 0, + "port_weight": 0.0058, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Sojitz Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6688, + "plan_carsten": 0, + "port_weight": 0.0058, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Sojitz Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6688, + "plan_carsten": 0, + "port_weight": 0.0058, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Sojitz Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6688, + "plan_carsten": 0, + "port_weight": 0.0058, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Sojitz Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6688, + "plan_carsten": 0, + "port_weight": 0.0058, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Sojitz Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.6688, + "plan_carsten": 0, + "port_weight": 0.0058, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1177, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 1.3489, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1177, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 1.0445, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1177, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 1.6464, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Stellantis NV", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.025, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tate & Lyle Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tate & Lyle Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tate & Lyle Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tate & Lyle Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tate & Lyle Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tate & Lyle Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tate & Lyle Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0003, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "The Chugoku Electric Power Co., Inc.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.2159, + "plan_carsten": 0, + "port_weight": 0.0118, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tokyo Gas Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5171, + "plan_carsten": 0, + "port_weight": 0.0112, + "y": 1.2488, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tokyo Gas Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5171, + "plan_carsten": 0, + "port_weight": 0.0112, + "y": 1.6406, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tokyo Gas Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5171, + "plan_carsten": 0, + "port_weight": 0.0112, + "y": 1.9935, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tokyo Gas Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5171, + "plan_carsten": 0, + "port_weight": 0.0112, + "y": 1.0447, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tokyo Gas Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5171, + "plan_carsten": 0, + "port_weight": 0.0112, + "y": 1.0664, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tokyo Gas Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5171, + "plan_carsten": 0, + "port_weight": 0.0112, + "y": 0.902, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Tokyo Gas Co., Ltd.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.5171, + "plan_carsten": 0, + "port_weight": 0.0112, + "y": 1.2924, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "TotalEnergies SE", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4562, + "plan_carsten": 0, + "port_weight": 0.0091, + "y": 3.0444, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "TotalEnergies SE", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4562, + "plan_carsten": 0, + "port_weight": 0.0091, + "y": 3.9995, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "TotalEnergies SE", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4562, + "plan_carsten": 0, + "port_weight": 0.0091, + "y": 4.8598, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "TotalEnergies SE", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4562, + "plan_carsten": 0, + "port_weight": 0.0091, + "y": 2.5467, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "TotalEnergies SE", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4562, + "plan_carsten": 0, + "port_weight": 0.0091, + "y": 2.5997, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "TotalEnergies SE", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4562, + "plan_carsten": 0, + "port_weight": 0.0091, + "y": 2.199, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "TotalEnergies SE", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.4562, + "plan_carsten": 0, + "port_weight": 0.0091, + "y": 3.1507, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8908, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.6443, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8908, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.8464, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8908, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 1.0284, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8908, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.5389, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0292, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.0794, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE_2050", "ald_sector": "Automotive", "year": 2023, - "plan_tech_share": 0.239708887179219, - "plan_carsten": 0.00325153655825958, - "port_weight": 0.0135645223526008, - "y": 0.802334617424553, + "plan_tech_share": 0.0292, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.0616, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.0292, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.0969, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8908, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.5502, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8908, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.4654, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Toyota Motor Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8908, + "plan_carsten": 0, + "port_weight": 0.0202, + "y": 0.6667, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Unilever Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Unilever Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Unilever Plc", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Unilever Plc", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Unilever Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Unilever Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "NZE_2050", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Unilever Plc", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0004, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "United States Steel Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0197, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "United States Steel Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0197, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "United States Steel Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0197, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "United States Steel Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0197, + "y": 0, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "China Resources Power Holdings Co., Ltd.", - "scenario": "NZE_2050", + "company_name": "United States Steel Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.38559929603193, - "plan_carsten": 0.0118290080198771, - "port_weight": 0.030676944023512, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0197, "y": 0, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Dubai Electricity & Water Authority", + "company_name": "United States Steel Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE_2050", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.140324853145783, - "plan_carsten": 4.97161714122587e-5, - "port_weight": 0.000354293414870769, - "y": 0.103162520054947, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0197, + "y": 0, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "EDP-Energias de Portugal SA", - "scenario": "NZE_2050", + "company_name": "United States Steel Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.800368320816751, - "plan_carsten": 0.0156252570105224, - "port_weight": 0.0195225830459872, - "y": 0.254235783218378, + "plan_tech_share": 0, + "plan_carsten": 0, + "port_weight": 0.0197, + "y": 0, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "ENGIE SA", - "scenario": "NZE_2050", + "company_name": "Vestas Wind Systems A/S", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.499924665396608, - "plan_carsten": 0.0159216447583525, - "port_weight": 0.031848088042868, - "y": 0.0238967913431594, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0006, + "y": 2.3378, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Enel SpA", - "scenario": "NZE_2050", + "company_name": "Vestas Wind Systems A/S", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.638196179910797, - "plan_carsten": 0.0045329678465382, - "port_weight": 0.00710278122813551, - "y": 0.0706198615324944, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0006, + "y": 3.0713, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Energisa SA", - "scenario": "NZE_2050", + "company_name": "Vestas Wind Systems A/S", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.807683270676692, - "plan_carsten": 0.00982081365698692, - "port_weight": 0.0121592386688397, - "y": 0, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0006, + "y": 3.7319, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Ford Motor Co.", - "scenario": "NZE_2050", - "ald_sector": "Automotive", + "company_name": "Vestas Wind Systems A/S", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.0802824860896073, - "plan_carsten": 0.00139515364184765, - "port_weight": 0.0173780572800205, - "y": 0.626498025651535, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0006, + "y": 1.9557, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Honda Motor Co., Ltd.", - "scenario": "NZE_2050", - "ald_sector": "Automotive", + "company_name": "Vestas Wind Systems A/S", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.0288236219876979, - "plan_carsten": 0.000696186010965682, - "port_weight": 0.0241533146411238, - "y": 0.558851532470293, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0006, + "y": 1.9964, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Huaneng Power International, Inc.", + "company_name": "Vestas Wind Systems A/S", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE_2050", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.0106501621554855, - "plan_carsten": 5.35367719311442e-5, - "port_weight": 0.00502685040373488, - "y": 0, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0006, + "y": 1.6887, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Hyundai Motor Co., Ltd.", - "scenario": "NZE_2050", - "ald_sector": "Automotive", + "company_name": "Vestas Wind Systems A/S", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.0664871522903767, - "plan_carsten": 0.00768270926595043, - "port_weight": 0.115551787094097, - "y": 0.365624395687849, + "plan_tech_share": 1, + "plan_carsten": 0, + "port_weight": 0.0006, + "y": 2.4195, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "IDACORP, Inc.", + "company_name": "Vistra Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0.0079, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0.0104, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0.0126, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0.0067, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0.0068, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE_2050", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.485721758676439, - "plan_carsten": 0.001682252546386, - "port_weight": 0.00346340783861533, + "plan_tech_share": 0.0956, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0.0057, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Vistra Corp.", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0956, + "plan_carsten": 0, + "port_weight": 0.0079, + "y": 0.0082, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0176, + "plan_carsten": 0, + "port_weight": 0.0385, "y": 0, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Maruti Suzuki India Ltd.", - "scenario": "NZE_2050", - "ald_sector": "Automotive", + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.00036993212259345, - "plan_carsten": 4.37134122937078e-6, - "port_weight": 0.0118166035399278, - "y": 0.000200646876572412, + "plan_tech_share": 0.0176, + "plan_carsten": 0, + "port_weight": 0.0385, + "y": 0, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "National Grid Plc", - "scenario": "NZE_2050", + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.0983405483405483, - "plan_carsten": 4.45413536177823e-5, - "port_weight": 0.000452929685357639, + "plan_tech_share": 0.0176, + "plan_carsten": 0, + "port_weight": 0.0385, "y": 0, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "NextEra Energy, Inc.", - "scenario": "NZE_2050", + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.501141302135333, - "plan_carsten": 0.000750310487647911, - "port_weight": 0.00149720345230154, - "y": 0.146941118754753, + "plan_tech_share": 0.0176, + "plan_carsten": 0, + "port_weight": 0.0385, + "y": 0, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Nissan Motor Co., Ltd.", - "scenario": "NZE_2050", + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "ald_sector": "Automotive", "year": 2023, - "plan_tech_share": 0.079272030458067, - "plan_carsten": 0.000603869673414347, - "port_weight": 0.00761768898721195, - "y": 0.339853392559255, + "plan_tech_share": 0.1279, + "plan_carsten": 0, + "port_weight": 0.0385, + "y": 0.7472, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", "asset_class_translation": "Listed Equity" }, { - "company_name": "Renault SA", + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE_2050", "ald_sector": "Automotive", "year": 2023, - "plan_tech_share": 0.0672748944562385, - "plan_carsten": 0.00240164631423552, - "port_weight": 0.035698997875021, - "y": 0.380940154403036, + "plan_tech_share": 0.1279, + "plan_carsten": 0, + "port_weight": 0.0385, + "y": 0.5786, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", "asset_class_translation": "Listed Equity" }, { - "company_name": "SSE Plc", - "scenario": "NZE_2050", + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Automotive", + "year": 2023, + "plan_tech_share": 0.1279, + "plan_carsten": 0, + "port_weight": 0.0385, + "y": 0.912, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.49589324334197, - "plan_carsten": 0.00655696202841328, - "port_weight": 0.0132225274622094, - "y": 0.446406372328403, + "plan_tech_share": 0.0176, + "plan_carsten": 0, + "port_weight": 0.0385, + "y": 0, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Shikoku Electric Power Co., Inc.", + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE_2050", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.230146058323097, - "plan_carsten": 0.00479598513201653, - "port_weight": 0.0208388758293812, + "plan_tech_share": 0.0176, + "plan_carsten": 0, + "port_weight": 0.0385, "y": 0, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Stellantis NV", - "scenario": "NZE_2050", + "company_name": "Volkswagen AG", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.0176, + "plan_carsten": 0, + "port_weight": 0.0385, + "y": 0, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Volvo AB", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "ald_sector": "Automotive", "year": 2023, - "plan_tech_share": 0.117724657711331, - "plan_carsten": 0.00294625356343789, - "port_weight": 0.025026647948829, - "y": 1.04450250685178, + "plan_tech_share": 0.2784, + "plan_carsten": 0, + "port_weight": 0.0098, + "y": 1.7052, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", "asset_class_translation": "Listed Equity" }, { - "company_name": "The Chugoku Electric Power Co., Inc.", + "company_name": "Volvo AB", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE_2050", - "ald_sector": "Power", + "ald_sector": "Automotive", "year": 2023, - "plan_tech_share": 0.215916389913578, - "plan_carsten": 0.00254062482375407, - "port_weight": 0.0117667066625696, - "y": 0, + "plan_tech_share": 0.2784, + "plan_carsten": 0, + "port_weight": 0.0098, + "y": 1.3204, "asset_class": "Listed Equity", - "ald_sector_translation": "Power", + "ald_sector_translation": "Automotive", "asset_class_translation": "Listed Equity" }, { - "company_name": "Toyota Motor Corp.", - "scenario": "NZE_2050", + "company_name": "Volvo AB", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "ald_sector": "Automotive", "year": 2023, - "plan_tech_share": 0.0291765981550751, - "plan_carsten": 0.000588345561018532, - "port_weight": 0.0201649814653321, - "y": 0.0616158076141354, + "plan_tech_share": 0.2784, + "plan_carsten": 0, + "port_weight": 0.0098, + "y": 2.0812, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", "asset_class_translation": "Listed Equity" }, { - "company_name": "Vistra Corp.", - "scenario": "NZE_2050", + "company_name": "Ørsted A/S", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.0956033433740948, - "plan_carsten": 0.000757454346827089, - "port_weight": 0.00792288554034327, - "y": 0.00571635802132157, + "plan_tech_share": 0.8639, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 1.1705, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { - "company_name": "Volkswagen AG", - "scenario": "NZE_2050", - "ald_sector": "Automotive", + "company_name": "Ørsted A/S", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.127924658107283, - "plan_carsten": 0.00492144405443927, - "port_weight": 0.038471426285243, - "y": 0.57858680036071, + "plan_tech_share": 0.8639, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 1.5377, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 1.8684, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.9791, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.9995, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { "company_name": "Ørsted A/S", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE_2050", "ald_sector": "Power", "year": 2023, - "plan_tech_share": 0.863908341766614, - "plan_carsten": 0.00019320198261852, - "port_weight": 0.000223637130558827, - "y": 0.84544993822177, + "plan_tech_share": 0.8639, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 0.8454, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity" + }, + { + "company_name": "Ørsted A/S", + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 0.8639, + "plan_carsten": 0, + "port_weight": 0.0002, + "y": 1.2113, "asset_class": "Listed Equity", "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity" }, { "company_name": "Enlight Renewable Energy Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0.0812, + "port_weight": 0.0812, + "y": 4.0536, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds" + }, + { + "company_name": "Enlight Renewable Energy Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0.0812, + "port_weight": 0.0812, + "y": 5.3254, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds" + }, + { + "company_name": "Enlight Renewable Energy Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0.0812, + "port_weight": 0.0812, + "y": 6.4708, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds" + }, + { + "company_name": "Enlight Renewable Energy Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0.0812, + "port_weight": 0.0812, + "y": 3.391, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds" + }, + { + "company_name": "Enlight Renewable Energy Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0.0812, + "port_weight": 0.0812, + "y": 3.4616, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds" + }, + { + "company_name": "Enlight Renewable Energy Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE_2050", "ald_sector": "Power", "year": 2023, "plan_tech_share": 1, - "plan_carsten": 0.081226424305262, - "port_weight": 0.081226424305262, - "y": 2.92800873898909, + "plan_carsten": 0.0812, + "port_weight": 0.0812, + "y": 2.928, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds" + }, + { + "company_name": "Enlight Renewable Energy Ltd.", + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "ald_sector": "Power", + "year": 2023, + "plan_tech_share": 1, + "plan_carsten": 0.0812, + "port_weight": 0.0812, + "y": 4.1952, "asset_class": "Corporate Bonds", "ald_sector_translation": "Power", "asset_class_translation": "Corporate Bonds" diff --git a/src/json/data_techexposure_company_companies.json b/src/json/data_techexposure_company_companies.json index bc512d4..931fff5 100644 --- a/src/json/data_techexposure_company_companies.json +++ b/src/json/data_techexposure_company_companies.json @@ -1,11 +1,13 @@ [ { - "id": "Nissan Motor Co., Ltd.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.207746608894222, - "port_weight": 0.00761768898721195, - "scenario": "NZE 2050", + "plan_tech_share": 0.1927, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -13,11 +15,13 @@ "technology_translation": "LDV: Electric" }, { - "id": "Maruti Suzuki India Ltd.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.000471782268687052, - "port_weight": 0.0118166035399278, + "plan_tech_share": 0.1927, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -26,12 +30,14 @@ "technology_translation": "LDV: Electric" }, { - "id": "Bayerische Motoren Werke AG", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.414265059670244, - "port_weight": 0.0135645223526008, - "scenario": "NZE 2050", + "plan_tech_share": 0.1927, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -39,12 +45,14 @@ "technology_translation": "LDV: Electric" }, { - "id": "Ford Motor Co.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.293870016313916, - "port_weight": 0.0173780572800205, - "scenario": "NZE 2050", + "plan_tech_share": 0.1927, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -52,11 +60,13 @@ "technology_translation": "LDV: Electric" }, { - "id": "Toyota Motor Corp.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.0372733949590424, - "port_weight": 0.0201649814653321, + "plan_tech_share": 0.1927, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -65,12 +75,14 @@ "technology_translation": "LDV: Electric" }, { - "id": "Honda Motor Co., Ltd.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.234064288411855, - "port_weight": 0.0241533146411238, - "scenario": "NZE 2050", + "plan_tech_share": 0.1927, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -78,12 +90,14 @@ "technology_translation": "LDV: Electric" }, { - "id": "Stellantis NV", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.29007696116577, - "port_weight": 0.025026647948829, - "scenario": "NZE 2050", + "plan_tech_share": 0.3099, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -91,11 +105,13 @@ "technology_translation": "LDV: Electric" }, { - "id": "Renault SA", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.167342085149105, - "port_weight": 0.035698997875021, + "plan_tech_share": 0.3099, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -107,8 +123,40 @@ "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.309853365373724, - "port_weight": 0.038471426285243, + "plan_tech_share": 0.3099, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric" + }, + { + "id": "Volkswagen AG", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.3099, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric" + }, + { + "id": "Volkswagen AG", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.3099, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -117,11 +165,43 @@ "technology_translation": "LDV: Electric" }, { - "id": "Hyundai Motor Co., Ltd.", + "id": "Volkswagen AG", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.3099, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric" + }, + { + "id": "Renault SA", "ald_sector": "Automotive", "technology": "Electric", - "plan_tech_share": 0.192734958022896, - "port_weight": 0.115551787094097, + "plan_tech_share": 0.1673, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric" + }, + { + "id": "Renault SA", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.1673, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -130,12 +210,29 @@ "technology_translation": "LDV: Electric" }, { - "id": "Nissan Motor Co., Ltd.", + "id": "Renault SA", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.1673, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric" + }, + { + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "FuelCell", - "plan_tech_share": 0, - "port_weight": 0.00761768898721195, - "scenario": "NZE 2050", + "plan_tech_share": 0.001, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -143,11 +240,13 @@ "technology_translation": "LDV: Fuel Cell" }, { - "id": "Maruti Suzuki India Ltd.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "FuelCell", - "plan_tech_share": 0, - "port_weight": 0.0118166035399278, + "plan_tech_share": 0.001, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -156,11 +255,43 @@ "technology_translation": "LDV: Fuel Cell" }, { - "id": "Bayerische Motoren Werke AG", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "FuelCell", - "plan_tech_share": 0, - "port_weight": 0.0135645223526008, + "plan_tech_share": 0.001, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell" + }, + { + "id": "Hyundai Motor Co., Ltd.", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.001, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell" + }, + { + "id": "Hyundai Motor Co., Ltd.", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.001, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -169,12 +300,29 @@ "technology_translation": "LDV: Fuel Cell" }, { - "id": "Ford Motor Co.", + "id": "Hyundai Motor Co., Ltd.", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.001, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell" + }, + { + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "FuelCell", "plan_tech_share": 0, - "port_weight": 0.0173780572800205, - "scenario": "NZE 2050", + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -182,11 +330,13 @@ "technology_translation": "LDV: Fuel Cell" }, { - "id": "Toyota Motor Corp.", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "FuelCell", - "plan_tech_share": 0.00100625203481821, - "port_weight": 0.0201649814653321, + "plan_tech_share": 0, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -195,12 +345,14 @@ "technology_translation": "LDV: Fuel Cell" }, { - "id": "Honda Motor Co., Ltd.", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "FuelCell", "plan_tech_share": 0, - "port_weight": 0.0241533146411238, - "scenario": "NZE 2050", + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -208,12 +360,14 @@ "technology_translation": "LDV: Fuel Cell" }, { - "id": "Stellantis NV", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "FuelCell", "plan_tech_share": 0, - "port_weight": 0.025026647948829, - "scenario": "NZE 2050", + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -221,11 +375,13 @@ "technology_translation": "LDV: Fuel Cell" }, { - "id": "Renault SA", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "FuelCell", - "plan_tech_share": 0.00100861986917011, - "port_weight": 0.035698997875021, + "plan_tech_share": 0, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -238,8 +394,10 @@ "ald_sector": "Automotive", "technology": "FuelCell", "plan_tech_share": 0, - "port_weight": 0.038471426285243, - "scenario": "NZE 2050", + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -247,11 +405,28 @@ "technology_translation": "LDV: Fuel Cell" }, { - "id": "Hyundai Motor Co., Ltd.", + "id": "Renault SA", "ald_sector": "Automotive", "technology": "FuelCell", - "plan_tech_share": 0.00104744788361452, - "port_weight": 0.115551787094097, + "plan_tech_share": 0.001, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell" + }, + { + "id": "Renault SA", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.001, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -260,12 +435,29 @@ "technology_translation": "LDV: Fuel Cell" }, { - "id": "Nissan Motor Co., Ltd.", + "id": "Renault SA", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.001, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell" + }, + { + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0.00571223638517073, - "port_weight": 0.00761768898721195, - "scenario": "NZE 2050", + "plan_tech_share": 0.0107, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -273,11 +465,13 @@ "technology_translation": "LDV: Hybrid" }, { - "id": "Maruti Suzuki India Ltd.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0, - "port_weight": 0.0118166035399278, + "plan_tech_share": 0.0107, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -286,12 +480,14 @@ "technology_translation": "LDV: Hybrid" }, { - "id": "Bayerische Motoren Werke AG", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0.0902578831492123, - "port_weight": 0.0135645223526008, - "scenario": "NZE 2050", + "plan_tech_share": 0.0107, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -299,12 +495,14 @@ "technology_translation": "LDV: Hybrid" }, { - "id": "Ford Motor Co.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0.0218465632357729, - "port_weight": 0.0173780572800205, - "scenario": "NZE 2050", + "plan_tech_share": 0.0107, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -312,11 +510,13 @@ "technology_translation": "LDV: Hybrid" }, { - "id": "Toyota Motor Corp.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0.015666066932931, - "port_weight": 0.0201649814653321, + "plan_tech_share": 0.0107, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -325,12 +525,14 @@ "technology_translation": "LDV: Hybrid" }, { - "id": "Honda Motor Co., Ltd.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0.0106086174702654, - "port_weight": 0.0241533146411238, - "scenario": "NZE 2050", + "plan_tech_share": 0.0107, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -338,12 +540,14 @@ "technology_translation": "LDV: Hybrid" }, { - "id": "Stellantis NV", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0.149981201767451, - "port_weight": 0.025026647948829, - "scenario": "NZE 2050", + "plan_tech_share": 0.0294, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -351,11 +555,13 @@ "technology_translation": "LDV: Hybrid" }, { - "id": "Renault SA", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0.0149847196210141, - "port_weight": 0.035698997875021, + "plan_tech_share": 0.0294, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -367,8 +573,40 @@ "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0.0293876887230829, - "port_weight": 0.038471426285243, + "plan_tech_share": 0.0294, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid" + }, + { + "id": "Volkswagen AG", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.0294, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid" + }, + { + "id": "Volkswagen AG", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.0294, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -377,11 +615,43 @@ "technology_translation": "LDV: Hybrid" }, { - "id": "Hyundai Motor Co., Ltd.", + "id": "Volkswagen AG", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.0294, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid" + }, + { + "id": "Renault SA", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.015, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid" + }, + { + "id": "Renault SA", "ald_sector": "Automotive", "technology": "Hybrid", - "plan_tech_share": 0.0106558943377338, - "port_weight": 0.115551787094097, + "plan_tech_share": 0.015, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -390,12 +660,29 @@ "technology_translation": "LDV: Hybrid" }, { - "id": "Nissan Motor Co., Ltd.", + "id": "Renault SA", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.015, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid" + }, + { + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.786541154720607, - "port_weight": 0.00761768898721195, - "scenario": "NZE 2050", + "plan_tech_share": 0.7956, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -403,11 +690,13 @@ "technology_translation": "LDV: ICE" }, { - "id": "Maruti Suzuki India Ltd.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.999528217731313, - "port_weight": 0.0118166035399278, + "plan_tech_share": 0.7956, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -416,12 +705,14 @@ "technology_translation": "LDV: ICE" }, { - "id": "Bayerische Motoren Werke AG", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.495477057180544, - "port_weight": 0.0135645223526008, - "scenario": "NZE 2050", + "plan_tech_share": 0.7956, + "port_weight": 0.1156, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -429,12 +720,14 @@ "technology_translation": "LDV: ICE" }, { - "id": "Ford Motor Co.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.684283420450311, - "port_weight": 0.0173780572800205, - "scenario": "NZE 2050", + "plan_tech_share": 0.7956, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -442,11 +735,13 @@ "technology_translation": "LDV: ICE" }, { - "id": "Toyota Motor Corp.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.946054286073208, - "port_weight": 0.0201649814653321, + "plan_tech_share": 0.7956, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -455,12 +750,14 @@ "technology_translation": "LDV: ICE" }, { - "id": "Honda Motor Co., Ltd.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.75532709411788, - "port_weight": 0.0241533146411238, - "scenario": "NZE 2050", + "plan_tech_share": 0.7956, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -468,12 +765,14 @@ "technology_translation": "LDV: ICE" }, { - "id": "Stellantis NV", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.559941837066779, - "port_weight": 0.025026647948829, - "scenario": "NZE 2050", + "plan_tech_share": 0.6608, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Automotive", @@ -481,11 +780,13 @@ "technology_translation": "LDV: ICE" }, { - "id": "Renault SA", + "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.816664575360711, - "port_weight": 0.035698997875021, + "plan_tech_share": 0.6608, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -497,8 +798,40 @@ "id": "Volkswagen AG", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.660758945903193, - "port_weight": 0.038471426285243, + "plan_tech_share": 0.6608, + "port_weight": 0.0385, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE" + }, + { + "id": "Volkswagen AG", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.6608, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE" + }, + { + "id": "Volkswagen AG", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.6608, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -507,11 +840,43 @@ "technology_translation": "LDV: ICE" }, { - "id": "Hyundai Motor Co., Ltd.", + "id": "Volkswagen AG", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.6608, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE" + }, + { + "id": "Renault SA", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.8167, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "APS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE" + }, + { + "id": "Renault SA", "ald_sector": "Automotive", "technology": "ICE", - "plan_tech_share": 0.795561699755755, - "port_weight": 0.115551787094097, + "plan_tech_share": 0.8167, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -520,12 +885,29 @@ "technology_translation": "LDV: ICE" }, { - "id": "Ørsted A/S", + "id": "Renault SA", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.8167, + "port_weight": 0.0357, + "allocation": "portfolio_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE" + }, + { + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "CoalCap", "plan_tech_share": 0, - "port_weight": 0.000223637130558827, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -533,12 +915,14 @@ "technology_translation": "Coal Power" }, { - "id": "Dubai Electricity & Water Authority", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "CoalCap", "plan_tech_share": 0, - "port_weight": 0.000354293414870769, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -546,12 +930,14 @@ "technology_translation": "Coal Power" }, { - "id": "National Grid Plc", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "CoalCap", "plan_tech_share": 0, - "port_weight": 0.000452929685357639, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -559,12 +945,14 @@ "technology_translation": "Coal Power" }, { - "id": "NextEra Energy, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.00347536235664735, - "port_weight": 0.00149720345230154, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -572,12 +960,14 @@ "technology_translation": "Coal Power" }, { - "id": "IDACORP, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.147553856531183, - "port_weight": 0.00346340783861533, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -585,11 +975,13 @@ "technology_translation": "Coal Power" }, { - "id": "Huaneng Power International, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.7016198084866, - "port_weight": 0.00502685040373488, + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -598,12 +990,14 @@ "technology_translation": "Coal Power" }, { - "id": "Enel SpA", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.00195612268215182, - "port_weight": 0.00710278122813551, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -611,12 +1005,14 @@ "technology_translation": "Coal Power" }, { - "id": "Vistra Corp.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.118118033157925, - "port_weight": 0.00792288554034327, - "scenario": "NZE 2050", + "plan_tech_share": 0.2704, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -624,12 +1020,14 @@ "technology_translation": "Coal Power" }, { - "id": "The Chugoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.236826869802522, - "port_weight": 0.0117667066625696, - "scenario": "NZE 2050", + "plan_tech_share": 0.2704, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -637,12 +1035,14 @@ "technology_translation": "Coal Power" }, { - "id": "Energisa SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0, - "port_weight": 0.0121592386688397, - "scenario": "NZE 2050", + "plan_tech_share": 0.2704, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -650,12 +1050,14 @@ "technology_translation": "Coal Power" }, { - "id": "SSE Plc", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0, - "port_weight": 0.0132225274622094, - "scenario": "NZE 2050", + "plan_tech_share": 0.2704, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -663,12 +1065,14 @@ "technology_translation": "Coal Power" }, { - "id": "EDP-Energias de Portugal SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.0137157090689922, - "port_weight": 0.0195225830459872, - "scenario": "NZE 2050", + "plan_tech_share": 0.2704, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -676,11 +1080,13 @@ "technology_translation": "Coal Power" }, { - "id": "Shikoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.227801276221302, - "port_weight": 0.0208388758293812, + "plan_tech_share": 0.2704, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -689,12 +1095,14 @@ "technology_translation": "Coal Power" }, { - "id": "China Resources Power Holdings Co., Ltd.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.562272385738989, - "port_weight": 0.030676944023512, - "scenario": "NZE 2050", + "plan_tech_share": 0.2704, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -702,12 +1110,14 @@ "technology_translation": "Coal Power" }, { - "id": "ENGIE SA", + "id": "Renault SA", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.000101443611055249, - "port_weight": 0.031848088042868, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.0357, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -715,12 +1125,14 @@ "technology_translation": "Coal Power" }, { - "id": "Ørsted A/S", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.00518813227572792, - "port_weight": 0.000223637130558827, - "scenario": "NZE 2050", + "plan_tech_share": 0.4779, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -728,12 +1140,14 @@ "technology_translation": "Gas Power" }, { - "id": "Dubai Electricity & Water Authority", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.824932222281787, - "port_weight": 0.000354293414870769, - "scenario": "NZE 2050", + "plan_tech_share": 0.4779, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -741,12 +1155,14 @@ "technology_translation": "Gas Power" }, { - "id": "National Grid Plc", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.604136604136604, - "port_weight": 0.000452929685357639, - "scenario": "NZE 2050", + "plan_tech_share": 0.4779, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -754,12 +1170,14 @@ "technology_translation": "Gas Power" }, { - "id": "NextEra Energy, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.420872232168372, - "port_weight": 0.00149720345230154, - "scenario": "NZE 2050", + "plan_tech_share": 0.4779, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -767,12 +1185,14 @@ "technology_translation": "Gas Power" }, { - "id": "IDACORP, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.244388533333722, - "port_weight": 0.00346340783861533, - "scenario": "NZE 2050", + "plan_tech_share": 0.4779, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -780,11 +1200,13 @@ "technology_translation": "Gas Power" }, { - "id": "Huaneng Power International, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.277498649594156, - "port_weight": 0.00502685040373488, + "plan_tech_share": 0.4779, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -793,12 +1215,14 @@ "technology_translation": "Gas Power" }, { - "id": "Enel SpA", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.258636224623338, - "port_weight": 0.00710278122813551, - "scenario": "NZE 2050", + "plan_tech_share": 0.4779, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -806,12 +1230,14 @@ "technology_translation": "Gas Power" }, { - "id": "Vistra Corp.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.768234029310247, - "port_weight": 0.00792288554034327, - "scenario": "NZE 2050", + "plan_tech_share": 0.6881, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -819,12 +1245,14 @@ "technology_translation": "Gas Power" }, { - "id": "The Chugoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.28515659560029, - "port_weight": 0.0117667066625696, - "scenario": "NZE 2050", + "plan_tech_share": 0.6881, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -832,12 +1260,14 @@ "technology_translation": "Gas Power" }, { - "id": "Energisa SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0, - "port_weight": 0.0121592386688397, - "scenario": "NZE 2050", + "plan_tech_share": 0.6881, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -845,12 +1275,14 @@ "technology_translation": "Gas Power" }, { - "id": "SSE Plc", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.435947096462915, - "port_weight": 0.0132225274622094, - "scenario": "NZE 2050", + "plan_tech_share": 0.6881, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -858,12 +1290,14 @@ "technology_translation": "Gas Power" }, { - "id": "EDP-Energias de Portugal SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.0990058526141608, - "port_weight": 0.0195225830459872, - "scenario": "NZE 2050", + "plan_tech_share": 0.6881, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -871,11 +1305,13 @@ "technology_translation": "Gas Power" }, { - "id": "Shikoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.173485910962379, - "port_weight": 0.0208388758293812, + "plan_tech_share": 0.6881, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -884,12 +1320,14 @@ "technology_translation": "Gas Power" }, { - "id": "China Resources Power Holdings Co., Ltd.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.0848441707381083, - "port_weight": 0.030676944023512, - "scenario": "NZE 2050", + "plan_tech_share": 0.6881, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -897,12 +1335,14 @@ "technology_translation": "Gas Power" }, { - "id": "ENGIE SA", + "id": "Renault SA", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.42701143896537, - "port_weight": 0.031848088042868, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.0357, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -910,12 +1350,14 @@ "technology_translation": "Gas Power" }, { - "id": "Ørsted A/S", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "HydroCap", "plan_tech_share": 0, - "port_weight": 0.000223637130558827, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -923,12 +1365,14 @@ "technology_translation": "Hydropower" }, { - "id": "Dubai Electricity & Water Authority", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.0154938205995303, - "port_weight": 0.000354293414870769, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -936,12 +1380,14 @@ "technology_translation": "Hydropower" }, { - "id": "National Grid Plc", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "HydroCap", "plan_tech_share": 0, - "port_weight": 0.000452929685357639, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -949,12 +1395,14 @@ "technology_translation": "Hydropower" }, { - "id": "NextEra Energy, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.000307360890801135, - "port_weight": 0.00149720345230154, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -962,12 +1410,14 @@ "technology_translation": "Hydropower" }, { - "id": "IDACORP, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.608057610135095, - "port_weight": 0.00346340783861533, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -975,11 +1425,13 @@ "technology_translation": "Hydropower" }, { - "id": "Huaneng Power International, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.000148799586122879, - "port_weight": 0.00502685040373488, + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -988,12 +1440,14 @@ "technology_translation": "Hydropower" }, { - "id": "Enel SpA", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.321512241210564, - "port_weight": 0.00710278122813551, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1001,12 +1455,14 @@ "technology_translation": "Hydropower" }, { - "id": "Vistra Corp.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.0306512759576755, - "port_weight": 0.00792288554034327, - "scenario": "NZE 2050", + "plan_tech_share": 0.0002, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1014,12 +1470,14 @@ "technology_translation": "Hydropower" }, { - "id": "The Chugoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.238060343082744, - "port_weight": 0.0117667066625696, - "scenario": "NZE 2050", + "plan_tech_share": 0.0002, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1027,12 +1485,14 @@ "technology_translation": "Hydropower" }, { - "id": "Energisa SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0, - "port_weight": 0.0121592386688397, - "scenario": "NZE 2050", + "plan_tech_share": 0.0002, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1040,12 +1500,14 @@ "technology_translation": "Hydropower" }, { - "id": "SSE Plc", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.0986087979842366, - "port_weight": 0.0132225274622094, - "scenario": "NZE 2050", + "plan_tech_share": 0.0002, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1053,12 +1515,14 @@ "technology_translation": "Hydropower" }, { - "id": "EDP-Energias de Portugal SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.336290578998521, - "port_weight": 0.0195225830459872, - "scenario": "NZE 2050", + "plan_tech_share": 0.0002, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1066,11 +1530,13 @@ "technology_translation": "Hydropower" }, { - "id": "Shikoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.0966191619835175, - "port_weight": 0.0208388758293812, + "plan_tech_share": 0.0002, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -1079,12 +1545,14 @@ "technology_translation": "Hydropower" }, { - "id": "China Resources Power Holdings Co., Ltd.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.0337938646160262, - "port_weight": 0.030676944023512, - "scenario": "NZE 2050", + "plan_tech_share": 0.0002, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1092,12 +1560,14 @@ "technology_translation": "Hydropower" }, { - "id": "ENGIE SA", + "id": "Renault SA", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.191807831998137, - "port_weight": 0.031848088042868, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.0357, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1105,12 +1575,14 @@ "technology_translation": "Hydropower" }, { - "id": "Ørsted A/S", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.000223637130558827, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1118,12 +1590,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "Dubai Electricity & Water Authority", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.000354293414870769, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1131,12 +1605,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "National Grid Plc", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.000452929685357639, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1144,12 +1620,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "NextEra Energy, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0.0883678943232721, - "port_weight": 0.00149720345230154, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1157,12 +1635,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "IDACORP, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.00346340783861533, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1170,11 +1650,13 @@ "technology_translation": "Nuclear Power" }, { - "id": "Huaneng Power International, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.00502685040373488, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -1183,12 +1665,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "Enel SpA", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0.0435881062754738, - "port_weight": 0.00710278122813551, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1196,12 +1680,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "Vistra Corp.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0.0695976913936513, - "port_weight": 0.00792288554034327, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1209,12 +1695,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "The Chugoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.0117667066625696, - "scenario": "NZE 2050", + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1222,12 +1710,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "Energisa SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.0121592386688397, - "scenario": "NZE 2050", + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1235,12 +1725,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "SSE Plc", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.0132225274622094, - "scenario": "NZE 2050", + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1248,12 +1740,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "EDP-Energias de Portugal SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0.00534188088702675, - "port_weight": 0.0195225830459872, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1261,11 +1755,13 @@ "technology_translation": "Nuclear Power" }, { - "id": "Shikoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0.132910261850497, - "port_weight": 0.0208388758293812, + "plan_tech_share": 0, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -1274,12 +1770,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "China Resources Power Holdings Co., Ltd.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.030676944023512, - "scenario": "NZE 2050", + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1287,12 +1785,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "ENGIE SA", + "id": "Renault SA", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0.0190560832355099, - "port_weight": 0.031848088042868, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.0357, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1300,12 +1800,14 @@ "technology_translation": "Nuclear Power" }, { - "id": "Ørsted A/S", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.0417282036800482, - "port_weight": 0.000223637130558827, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1313,12 +1815,14 @@ "technology_translation": "Oil Power" }, { - "id": "Dubai Electricity & Water Authority", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "OilCap", "plan_tech_share": 0, - "port_weight": 0.000354293414870769, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1326,12 +1830,14 @@ "technology_translation": "Oil Power" }, { - "id": "National Grid Plc", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.297522847522848, - "port_weight": 0.000452929685357639, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1339,12 +1845,14 @@ "technology_translation": "Oil Power" }, { - "id": "NextEra Energy, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.0116370265713958, - "port_weight": 0.00149720345230154, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1352,12 +1860,14 @@ "technology_translation": "Oil Power" }, { - "id": "IDACORP, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "OilCap", "plan_tech_share": 0, - "port_weight": 0.00346340783861533, - "scenario": "NZE 2050", + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1365,11 +1875,13 @@ "technology_translation": "Oil Power" }, { - "id": "Huaneng Power International, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.0119039668898303, - "port_weight": 0.00502685040373488, + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -1378,12 +1890,14 @@ "technology_translation": "Oil Power" }, { - "id": "Enel SpA", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.0454136176221438, - "port_weight": 0.00710278122813551, - "scenario": "NZE 2050", + "plan_tech_share": 0, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1391,12 +1905,14 @@ "technology_translation": "Oil Power" }, { - "id": "Vistra Corp.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.000848752334068919, - "port_weight": 0.00792288554034327, - "scenario": "NZE 2050", + "plan_tech_share": 0.0265, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1404,12 +1920,14 @@ "technology_translation": "Oil Power" }, { - "id": "The Chugoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.229874565859456, - "port_weight": 0.0117667066625696, - "scenario": "NZE 2050", + "plan_tech_share": 0.0265, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1417,12 +1935,14 @@ "technology_translation": "Oil Power" }, { - "id": "Energisa SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.192316729323308, - "port_weight": 0.0121592386688397, - "scenario": "NZE 2050", + "plan_tech_share": 0.0265, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1430,12 +1950,14 @@ "technology_translation": "Oil Power" }, { - "id": "SSE Plc", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.0219782172358155, - "port_weight": 0.0132225274622094, - "scenario": "NZE 2050", + "plan_tech_share": 0.0265, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1443,12 +1965,14 @@ "technology_translation": "Oil Power" }, { - "id": "EDP-Energias de Portugal SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.0056128273719834, - "port_weight": 0.0195225830459872, - "scenario": "NZE 2050", + "plan_tech_share": 0.0265, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1456,11 +1980,13 @@ "technology_translation": "Oil Power" }, { - "id": "Shikoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.368566754493223, - "port_weight": 0.0208388758293812, + "plan_tech_share": 0.0265, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -1469,12 +1995,14 @@ "technology_translation": "Oil Power" }, { - "id": "China Resources Power Holdings Co., Ltd.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0, - "port_weight": 0.030676944023512, - "scenario": "NZE 2050", + "plan_tech_share": 0.0265, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1482,12 +2010,14 @@ "technology_translation": "Oil Power" }, { - "id": "ENGIE SA", + "id": "Renault SA", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.0617615010973298, - "port_weight": 0.031848088042868, - "scenario": "NZE 2050", + "plan_tech_share": 0.5481, + "port_weight": 0.0357, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1495,12 +2025,14 @@ "technology_translation": "Oil Power" }, { - "id": "Ørsted A/S", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.953083664044224, - "port_weight": 0.000223637130558827, - "scenario": "NZE 2050", + "plan_tech_share": 0.5221, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1508,12 +2040,14 @@ "technology_translation": "Renewables" }, { - "id": "Dubai Electricity & Water Authority", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.159573957118682, - "port_weight": 0.000354293414870769, - "scenario": "NZE 2050", + "plan_tech_share": 0.5221, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1521,12 +2055,14 @@ "technology_translation": "Renewables" }, { - "id": "National Grid Plc", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.0983405483405483, - "port_weight": 0.000452929685357639, - "scenario": "NZE 2050", + "plan_tech_share": 0.5221, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1534,12 +2070,14 @@ "technology_translation": "Renewables" }, { - "id": "NextEra Energy, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.475340123689511, - "port_weight": 0.00149720345230154, - "scenario": "NZE 2050", + "plan_tech_share": 0.5221, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1547,12 +2085,14 @@ "technology_translation": "Renewables" }, { - "id": "IDACORP, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0, - "port_weight": 0.00346340783861533, - "scenario": "NZE 2050", + "plan_tech_share": 0.5221, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1560,11 +2100,13 @@ "technology_translation": "Renewables" }, { - "id": "Huaneng Power International, Inc.", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.00882877544329083, - "port_weight": 0.00502685040373488, + "plan_tech_share": 0.5221, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -1573,12 +2115,14 @@ "technology_translation": "Renewables" }, { - "id": "Enel SpA", + "id": "Hyundai Motor Co., Ltd.", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.328893687586329, - "port_weight": 0.00710278122813551, - "scenario": "NZE 2050", + "plan_tech_share": 0.5221, + "port_weight": 0.1156, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1586,12 +2130,14 @@ "technology_translation": "Renewables" }, { - "id": "Vistra Corp.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.0125502178464324, - "port_weight": 0.00792288554034327, - "scenario": "NZE 2050", + "plan_tech_share": 0.0147, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1599,12 +2145,14 @@ "technology_translation": "Renewables" }, { - "id": "The Chugoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.0100816256549883, - "port_weight": 0.0117667066625696, - "scenario": "NZE 2050", + "plan_tech_share": 0.0147, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "NDC-LTS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1612,12 +2160,14 @@ "technology_translation": "Renewables" }, { - "id": "Energisa SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.807683270676692, - "port_weight": 0.0121592386688397, - "scenario": "NZE 2050", + "plan_tech_share": 0.0147, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "Reference", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1625,12 +2175,14 @@ "technology_translation": "Renewables" }, { - "id": "SSE Plc", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.443465888317033, - "port_weight": 0.0132225274622094, - "scenario": "NZE 2050", + "plan_tech_share": 0.0147, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "ISF2023", + "scenario": "1.5°C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1638,12 +2190,14 @@ "technology_translation": "Renewables" }, { - "id": "EDP-Energias de Portugal SA", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.540033151059316, - "port_weight": 0.0195225830459872, - "scenario": "NZE 2050", + "plan_tech_share": 0.0147, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "APS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1651,11 +2205,13 @@ "technology_translation": "Renewables" }, { - "id": "Shikoku Electric Power Co., Inc.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.000616634489081799, - "port_weight": 0.0208388758293812, + "plan_tech_share": 0.0147, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", "scenario": "NZE 2050", "year": 2028, "asset_class": "Listed Equity", @@ -1664,12 +2220,14 @@ "technology_translation": "Renewables" }, { - "id": "China Resources Power Holdings Co., Ltd.", + "id": "Volkswagen AG", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.319089578906876, - "port_weight": 0.030676944023512, - "scenario": "NZE 2050", + "plan_tech_share": 0.0147, + "port_weight": 0.0385, + "allocation": "ownership_weight", + "scenario_source": "WEO2023", + "scenario": "STEPS", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1677,12 +2235,14 @@ "technology_translation": "Renewables" }, { - "id": "ENGIE SA", + "id": "Renault SA", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.300261701092598, - "port_weight": 0.031848088042868, - "scenario": "NZE 2050", + "plan_tech_share": 0.4519, + "port_weight": 0.0357, + "allocation": "ownership_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -1694,8 +2254,10 @@ "ald_sector": "Power", "technology": "RenewablesCap", "plan_tech_share": 1, - "port_weight": 0.081226424305262, - "scenario": "NZE 2050", + "port_weight": 0.5686, + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Corporate Bonds", "ald_sector_translation": "Power", @@ -1707,8 +2269,10 @@ "ald_sector": "Power", "technology": "HydroCap", "plan_tech_share": 0, - "port_weight": 0.081226424305262, - "scenario": "NZE 2050", + "port_weight": 0.5686, + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Corporate Bonds", "ald_sector_translation": "Power", @@ -1720,8 +2284,10 @@ "ald_sector": "Power", "technology": "NuclearCap", "plan_tech_share": 0, - "port_weight": 0.081226424305262, - "scenario": "NZE 2050", + "port_weight": 0.5686, + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Corporate Bonds", "ald_sector_translation": "Power", @@ -1733,8 +2299,10 @@ "ald_sector": "Power", "technology": "GasCap", "plan_tech_share": 0, - "port_weight": 0.081226424305262, - "scenario": "NZE 2050", + "port_weight": 0.5686, + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Corporate Bonds", "ald_sector_translation": "Power", @@ -1746,8 +2314,10 @@ "ald_sector": "Power", "technology": "OilCap", "plan_tech_share": 0, - "port_weight": 0.081226424305262, - "scenario": "NZE 2050", + "port_weight": 0.5686, + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Corporate Bonds", "ald_sector_translation": "Power", @@ -1759,8 +2329,10 @@ "ald_sector": "Power", "technology": "CoalCap", "plan_tech_share": 0, - "port_weight": 0.081226424305262, - "scenario": "NZE 2050", + "port_weight": 0.5686, + "allocation": "portfolio_weight", + "scenario_source": "GECO2023", + "scenario": "1.5C", "year": 2028, "asset_class": "Corporate Bonds", "ald_sector_translation": "Power", diff --git a/src/json/data_techexposure_company_portfolio.json b/src/json/data_techexposure_company_portfolio.json index ba4aa52..c4e16d7 100644 --- a/src/json/data_techexposure_company_portfolio.json +++ b/src/json/data_techexposure_company_portfolio.json @@ -1,123 +1,205 @@ [ { "id": "Portfolio", - "ald_sector": "Automotive", - "technology": "Electric", - "plan_tech_share": 0.213295964219975, + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1144, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity", - "technology_translation": "LDV: Electric", + "technology_translation": "Coal Power", "id_translation": "Portfolio" }, { "id": "Aligned* Portfolio", - "ald_sector": "Automotive", - "technology": "Electric", - "plan_tech_share": 0.354254433083454, + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.0861, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity", - "technology_translation": "LDV: Electric", + "technology_translation": "Coal Power", "id_translation": "Aligned* Portfolio" }, { "id": "Portfolio", - "ald_sector": "Automotive", - "technology": "FuelCell", - "plan_tech_share": 0.000567491056895883, + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.3301, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity", - "technology_translation": "LDV: Fuel Cell", + "technology_translation": "Gas Power", "id_translation": "Portfolio" }, { "id": "Aligned* Portfolio", - "ald_sector": "Automotive", - "technology": "FuelCell", - "plan_tech_share": 0, + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.196, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity", - "technology_translation": "LDV: Fuel Cell", + "technology_translation": "Gas Power", "id_translation": "Aligned* Portfolio" }, { "id": "Portfolio", - "ald_sector": "Automotive", - "technology": "Hybrid", - "plan_tech_share": 0.0330485609175633, + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1843, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity", - "technology_translation": "LDV: Hybrid", + "technology_translation": "Hydropower", "id_translation": "Portfolio" }, { "id": "Aligned* Portfolio", - "ald_sector": "Automotive", - "technology": "Hybrid", - "plan_tech_share": 0.0837380676563468, + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1693, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity", - "technology_translation": "LDV: Hybrid", + "technology_translation": "Hydropower", "id_translation": "Aligned* Portfolio" }, { "id": "Portfolio", - "ald_sector": "Automotive", - "technology": "ICE", - "plan_tech_share": 0.753087983805565, + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0247, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity", - "technology_translation": "LDV: ICE", + "technology_translation": "Nuclear Power", "id_translation": "Portfolio" }, { "id": "Aligned* Portfolio", - "ald_sector": "Automotive", - "technology": "ICE", - "plan_tech_share": 0.562007499260199, + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0428, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", - "ald_sector_translation": "Automotive", + "ald_sector_translation": "Power", "asset_class_translation": "Listed Equity", - "technology_translation": "LDV: ICE", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0499, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0316, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.2967, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.4742, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", "id_translation": "Aligned* Portfolio" }, { "id": "Portfolio", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.114369280188017, + "plan_tech_share": 0.1144, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -129,9 +211,11 @@ "id": "Aligned* Portfolio", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0.077012616284245, + "plan_tech_share": 0.1003, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -143,9 +227,11 @@ "id": "Portfolio", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.330139542655348, + "plan_tech_share": 0.3301, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -157,9 +243,11 @@ "id": "Aligned* Portfolio", "ald_sector": "Power", "technology": "GasCap", - "plan_tech_share": 0.186438659487381, + "plan_tech_share": 0.2469, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -171,9 +259,11 @@ "id": "Portfolio", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.184288566225086, + "plan_tech_share": 0.1843, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -185,9 +275,11 @@ "id": "Aligned* Portfolio", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.129120378633985, + "plan_tech_share": 0.1518, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -199,9 +291,11 @@ "id": "Portfolio", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0.0246715276016068, + "plan_tech_share": 0.0247, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -213,9 +307,11 @@ "id": "Aligned* Portfolio", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0.0382894927647204, + "plan_tech_share": 0.0438, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -227,9 +323,11 @@ "id": "Portfolio", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.0498549105152436, + "plan_tech_share": 0.0499, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -241,9 +339,11 @@ "id": "Aligned* Portfolio", "ald_sector": "Power", "technology": "OilCap", - "plan_tech_share": 0.0228926284545712, + "plan_tech_share": 0.0347, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -255,9 +355,11 @@ "id": "Portfolio", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.296676172814699, + "plan_tech_share": 0.2967, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -269,9 +371,11 @@ "id": "Aligned* Portfolio", "ald_sector": "Power", "technology": "RenewablesCap", - "plan_tech_share": 0.546246224375097, + "plan_tech_share": 0.4224, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Listed Equity", "ald_sector_translation": "Power", @@ -282,42 +386,80 @@ { "id": "Portfolio", "ald_sector": "Power", - "technology": "RenewablesCap", - "plan_tech_share": 1, + "technology": "CoalCap", + "plan_tech_share": 0.1144, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", - "technology_translation": "Renewables", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", "id_translation": "Portfolio" }, { "id": "Aligned* Portfolio", "ald_sector": "Power", - "technology": "RenewablesCap", - "plan_tech_share": 0.986626251094375, + "technology": "CoalCap", + "plan_tech_share": 0.1073, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", - "technology_translation": "Renewables", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.3301, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2702, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", "id_translation": "Aligned* Portfolio" }, { "id": "Portfolio", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0, + "plan_tech_share": 0.1843, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", + "asset_class_translation": "Listed Equity", "technology_translation": "Hydropower", "id_translation": "Portfolio" }, @@ -325,13 +467,15 @@ "id": "Aligned* Portfolio", "ald_sector": "Power", "technology": "HydroCap", - "plan_tech_share": 0.0100177380691367, + "plan_tech_share": 0.1537, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", + "asset_class_translation": "Listed Equity", "technology_translation": "Hydropower", "id_translation": "Aligned* Portfolio" }, @@ -339,13 +483,15 @@ "id": "Portfolio", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0, + "plan_tech_share": 0.0247, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", + "asset_class_translation": "Listed Equity", "technology_translation": "Nuclear Power", "id_translation": "Portfolio" }, @@ -353,83 +499,95 @@ "id": "Aligned* Portfolio", "ald_sector": "Power", "technology": "NuclearCap", - "plan_tech_share": 0.00335601083648852, + "plan_tech_share": 0.045, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", + "asset_class_translation": "Listed Equity", "technology_translation": "Nuclear Power", "id_translation": "Aligned* Portfolio" }, { "id": "Portfolio", "ald_sector": "Power", - "technology": "GasCap", - "plan_tech_share": 0, + "technology": "OilCap", + "plan_tech_share": 0.0499, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", - "technology_translation": "Gas Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", "id_translation": "Portfolio" }, { "id": "Aligned* Portfolio", "ald_sector": "Power", - "technology": "GasCap", - "plan_tech_share": 0, + "technology": "OilCap", + "plan_tech_share": 0.0363, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", - "technology_translation": "Gas Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", "id_translation": "Aligned* Portfolio" }, { "id": "Portfolio", "ald_sector": "Power", - "technology": "OilCap", - "plan_tech_share": 0, + "technology": "RenewablesCap", + "plan_tech_share": 0.2967, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", - "technology_translation": "Oil Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", "id_translation": "Portfolio" }, { "id": "Aligned* Portfolio", "ald_sector": "Power", - "technology": "OilCap", - "plan_tech_share": 0, + "technology": "RenewablesCap", + "plan_tech_share": 0.3875, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", - "technology_translation": "Oil Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", "id_translation": "Aligned* Portfolio" }, { "id": "Portfolio", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0, + "plan_tech_share": 0.1144, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", "year": 2028, - "asset_class": "Corporate Bonds", + "asset_class": "Listed Equity", "ald_sector_translation": "Power", - "asset_class_translation": "Corporate Bonds", + "asset_class_translation": "Listed Equity", "technology_translation": "Coal Power", "id_translation": "Portfolio" }, @@ -437,9 +595,4203 @@ "id": "Aligned* Portfolio", "ald_sector": "Power", "technology": "CoalCap", - "plan_tech_share": 0, + "plan_tech_share": 0.0575, "port_weight": 1, - "scenario": "NZE 2050", + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.3301, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.1772, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1843, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1442, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0247, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0351, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0499, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0331, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.2967, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.5529, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2133, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2347, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0006, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0254, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.033, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.0513, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.7531, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.6885, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1144, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.0962, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.3301, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2033, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1843, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1297, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0247, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0384, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0499, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0273, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.2967, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.5049, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2133, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.3543, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0006, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.033, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.0837, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.7531, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.562, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1144, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.077, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.3301, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.1864, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1843, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1291, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0247, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0383, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0499, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0229, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.2967, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.5462, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2133, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2129, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0006, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0116, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.033, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.0407, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.7531, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.7348, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1144, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1039, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.3301, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2251, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1843, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1351, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0247, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.04, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0499, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0298, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.2967, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.466, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.224, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1502, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2689, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.155, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.13, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1318, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0459, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0448, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.1411, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.088, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.19, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.4302, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.224, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1749, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2689, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.195, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.13, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1127, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0459, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0457, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.1411, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0964, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.19, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.3752, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.224, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1872, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2689, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2135, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.13, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1134, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0459, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.047, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.1411, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.1008, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.19, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.3381, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.224, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1015, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2689, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.1416, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.13, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.1081, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0459, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0382, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.1411, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0931, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.19, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.5176, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2174, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2479, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0007, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0254, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.022, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.0455, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.7599, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.6812, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.224, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1668, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2689, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.1596, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.13, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.0945, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0459, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0399, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.1411, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0755, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.19, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.4637, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2174, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.3684, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0007, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.022, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.0768, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.7599, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.5548, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.224, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1354, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2689, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.1485, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.13, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.0966, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0459, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0403, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.1411, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0642, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.19, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.515, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2174, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Electric", + "plan_tech_share": 0.2261, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Electric", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0007, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "FuelCell", + "plan_tech_share": 0.0116, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Fuel Cell", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.022, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "Hybrid", + "plan_tech_share": 0.0349, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: Hybrid", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.7599, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Automotive", + "technology": "ICE", + "plan_tech_share": 0.7274, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Automotive", + "asset_class_translation": "Listed Equity", + "technology_translation": "LDV: ICE", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.224, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0.1801, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.2689, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0.1767, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.13, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.098, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0459, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0415, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.1411, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0.0823, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.19, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.4214, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "ownership_weight", + "year": 2028, + "asset_class": "Listed Equity", + "ald_sector_translation": "Power", + "asset_class_translation": "Listed Equity", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 1, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.966, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 1, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.9846, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 1, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.9862, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 1, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.9899, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 1, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.991, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 1, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.9866, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 1, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "RenewablesCap", + "plan_tech_share": 0.9922, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Renewables", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.0312, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.0124, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.0106, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.0101, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.0066, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.01, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "HydroCap", + "plan_tech_share": 0.0057, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Hydropower", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0027, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.003, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0031, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0023, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0034, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "NuclearCap", + "plan_tech_share": 0.0021, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Nuclear Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "GasCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Gas Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "OilCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Oil Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5C", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NDC-LTS", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "Reference", + "scenario_source": "GECO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "1.5°C", + "scenario_source": "ISF2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "APS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "NZE 2050", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Aligned* Portfolio" + }, + { + "id": "Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", + "year": 2028, + "asset_class": "Corporate Bonds", + "ald_sector_translation": "Power", + "asset_class_translation": "Corporate Bonds", + "technology_translation": "Coal Power", + "id_translation": "Portfolio" + }, + { + "id": "Aligned* Portfolio", + "ald_sector": "Power", + "technology": "CoalCap", + "plan_tech_share": 0, + "port_weight": 1, + "scenario": "STEPS", + "scenario_source": "WEO2023", + "allocation": "portfolio_weight", "year": 2028, "asset_class": "Corporate Bonds", "ald_sector_translation": "Power", diff --git a/src/routes/company_view.svelte b/src/routes/company_view.svelte index da44ebe..75b0fb2 100644 --- a/src/routes/company_view.svelte +++ b/src/routes/company_view.svelte @@ -9,66 +9,328 @@ import { ExposureStatsTile } from '../js/exposure_stats.js'; import { company_bubble } from '../js/company_bubble.js'; import { techexposure_company } from '../js/techexposure_company.js'; + import { createErrorMessageDiv } from '../js/createErrorMessageDiv.js'; + import * as d3 from 'd3'; + import { union } from 'd3-array'; onMount(() => { function fetchExposureStats() { try { new ExposureStatsTile(document.querySelector('#exposure-stats'), exposure_stats_data); - } catch (err) { + } catch { document.querySelector('#exposure-stats').innerHTML = ''; document.querySelector('#exposure-stats').appendChild(createErrorMessageDiv()); } } function fetchCompanyBubble() { - new company_bubble(document.querySelector('#bubble-plot'), companyBubbleData, undefined, { - bkg_fill: false - }); + try { + new company_bubble(document.querySelector('#bubble-plot'), companyBubbleData); + } catch { + document.querySelector('#bubble-plot').innerHTML = ''; + document.querySelector('#bubble-plot').appendChild(createErrorMessageDiv()); + } } + function fetchCompanyTechmix() { - new techexposure_company( - document.querySelector('#techmix-plot'), - companyTechmixData, - portfolioTechmixData, - techOrder + try { + new techexposure_company( + document.querySelector('#techmix-plot'), + companyTechmixData, + portfolioTechmixData, + techOrder + ); + } catch { + document.querySelector('#techmix-plot').innerHTML = ''; + document.querySelector('#techmix-plot').appendChild(createErrorMessageDiv()); + } + } + + function setValuesSectorSelectors() { + const sectorSelectorLanding = document.querySelector('#sector_selector_landing'); + const sectorSelector = document.querySelector('#sector_selector'); + + let sectorsBubble = new Set(d3.map(companyBubbleData, (d) => d.ald_sector).keys()); + let sectorsTechmix = new Set(d3.map(portfolioTechmixData, (d) => d.ald_sector).keys()); + let sectorsTechmixComp = new Set(d3.map(companyTechmixData, (d) => d.ald_sector).keys()); + let sectors = Array.from(sectorsBubble.union(sectorsTechmix).union(sectorsTechmixComp)); + + sectorSelectorLanding.length = 0; + sectorSelector.length = 0; + sectors.forEach((sector) => sectorSelectorLanding.add(new Option(sector, sector))); + sectors.forEach((sector) => sectorSelector.add(new Option(sector, sector))); + } + + function setValuesAssetClassSelector() { + const assetClassSelectorLanding = document.querySelector('#asset_class_selector_landing'); + const assetClassSelector = document.querySelector('#asset_class_selector'); + + let classesBubble = new Set(d3.map(companyBubbleData, (d) => d.asset_class).keys()); + let classesTechmix = new Set(d3.map(portfolioTechmixData, (d) => d.asset_class).keys()); + let sectorsTechmixComp = new Set(d3.map(companyTechmixData, (d) => d.asset_class).keys()); + let assetClasses = Array.from(classesBubble.union(classesTechmix).union(sectorsTechmixComp)); + + assetClassSelectorLanding.length = 0; + assetClassSelector.length = 0; + assetClasses.forEach((assetClass) => + assetClassSelectorLanding.add(new Option(assetClass, assetClass)) + ); + assetClasses.forEach((assetClass) => + assetClassSelector.add(new Option(assetClass, assetClass)) + ); + } + + function checkDataAvailability() { + let selectedClass = document.querySelector('#asset_class_selector').value; + let selectedSector = document.querySelector('#sector_selector').value; + + let filteredTechmixData = portfolioTechmixData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector); + + let filteredTechmixCompData = companyTechmixData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector); + + let filteredBubbleData = companyBubbleData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector); + + let check = [filteredTechmixData, filteredTechmixCompData, filteredBubbleData].some( + (x) => x.length != 0 + ); + + return check; + } + + function handleNoDataForAssetSectorCombination() { + document.querySelector('#analysis-content').classList.add('hidden'); + document.querySelector('#alert-message').classList.remove('hidden'); + } + + function showAnalysisHideAlert() { + document.querySelector('#analysis-content').classList.remove('hidden'); + document.querySelector('#alert-message').classList.add('hidden'); + } + + function handleNoDataParameterSelection() { + document.querySelector('#analysis-plots').classList.add('hidden'); + document.querySelector('#alert-message-parameters').classList.remove('hidden'); + } + + function showAnalysisHideAlertParameters() { + document.querySelector('#analysis-plots').classList.remove('hidden'); + document.querySelector('#alert-message-parameters').classList.add('hidden'); + } + + function updateScenarioSourceSelector() { + let selectedSource = document.querySelector('#scenario_source_selector').value; + + let selectedClass = document.querySelector('#asset_class_selector').value; + let selectedSector = document.querySelector('#sector_selector').value; + + let filteredTechmixData = portfolioTechmixData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector); + let scenarioSourcesTechMix = new Set( + d3.map(filteredTechmixData, (d) => d.scenario_source).keys() + ); + + let filteredTechmixCompData = companyTechmixData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector); + let scenarioSourcesCompTechMix = new Set( + d3.map(filteredTechmixCompData, (d) => d.scenario_source).keys() + ); + + let filteredBubbleData = companyBubbleData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector); + let scenarioSourcesBubble = new Set( + d3.map(filteredBubbleData, (d) => d.scenario_source).keys() ); + + let scenarioSources = Array.from( + scenarioSourcesTechMix.union(scenarioSourcesCompTechMix).union(scenarioSourcesBubble) + ); + + if (scenarioSources.length != 0) { + showAnalysisHideAlertParameters(); + const scenarioSourceSelector = document.querySelector('#scenario_source_selector'); + scenarioSourceSelector.length = 0; + scenarioSources.forEach((source) => scenarioSourceSelector.add(new Option(source, source))); + scenarioSourceSelector.options[ + Math.max(0, scenarioSources.indexOf(selectedSource)) + ].selected = 'selected'; + } else { + handleNoDataParameterSelection(); + } } + + function updateScenarioSelector() { + let selectedClass = document.querySelector('#asset_class_selector').value; + let selectedSector = document.querySelector('#sector_selector').value; + let selectedSource = document.querySelector('#scenario_source_selector').value; + + let selectedScenario = document.querySelector('#scenario_selector').value; + + let filteredTechmixData = portfolioTechmixData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector) + .filter((d) => d.scenario_source == selectedSource); + let scenariosTechMix = new Set(d3.map(filteredTechmixData, (d) => d.scenario).keys()); + + let filteredTechmixCompData = companyTechmixData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector) + .filter((d) => d.scenario_source == selectedSource); + let scenariosCompTechMix = new Set(d3.map(filteredTechmixCompData, (d) => d.scenario).keys()); + + let filteredBubbleData = companyBubbleData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector) + .filter((d) => d.scenario_source == selectedSource); + let scenariosBubble = new Set(d3.map(filteredBubbleData, (d) => d.scenario).keys()); + + let scenarios = Array.from( + scenariosTechMix.union(scenariosCompTechMix).union(scenariosBubble) + ); + + if (scenarios.length != 0) { + showAnalysisHideAlertParameters(); + const scenarioSelector = document.querySelector('#scenario_selector'); + scenarioSelector.length = 0; + scenarios.forEach((scenario) => scenarioSelector.add(new Option(scenario, scenario))); + scenarioSelector.options[Math.max(0, scenarios.indexOf(selectedScenario))].selected = + 'selected'; + } else { + handleNoDataParameterSelection(); + } + } + + function updateAllocationMethodSelector() { + let selectedAllocation = document.querySelector('#allocation_method_selector').value; + + let selectedClass = document.querySelector('#asset_class_selector').value; + let selectedSector = document.querySelector('#sector_selector').value; + + let filteredTechmixData = portfolioTechmixData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector); + let allocationsTechMix = new Set(d3.map(filteredTechmixData, (d) => d.allocation).keys()); + + let filteredTechmixCompData = companyTechmixData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector); + let allocationsCompTechMix = new Set( + d3.map(filteredTechmixCompData, (d) => d.allocation).keys() + ); + + let filteredBubbleData = companyBubbleData + .filter((d) => d.asset_class == selectedClass) + .filter((d) => d.ald_sector == selectedSector); + let allocationsBubble = new Set(d3.map(filteredBubbleData, (d) => d.allocation).keys()); + + let allocationMethods = Array.from( + allocationsTechMix.union(allocationsCompTechMix).union(allocationsBubble) + ); + + if (allocationMethods.length != 0) { + showAnalysisHideAlertParameters(); + const allocationMethodSelector = document.querySelector('#allocation_method_selector'); + allocationMethodSelector.length = 0; + allocationMethods.forEach((allocation) => + allocationMethodSelector.add( + new Option(capitalizeFirstLetter(allocation.replace('_', ' ')), allocation) + ) + ); + allocationMethodSelector.options[ + Math.max(0, allocationMethods.indexOf(selectedAllocation)) + ].selected = 'selected'; + } else { + handleNoDataParameterSelection(); + } + } + + function capitalizeFirstLetter(val) { + return String(val).charAt(0).toUpperCase() + String(val).slice(1); + } + function addEventListeners() { const go_button_landing = document.querySelector('#go_button_landing'); + const asset_class_selector = document.querySelector('#asset_class_selector'); + const sector_selector = document.querySelector('#sector_selector'); go_button_landing.addEventListener('click', function () { + let chosenAssetClass = document.querySelector('#asset_class_selector_landing').value; + let chosenSector = document.querySelector('#sector_selector_landing').value; + asset_class_selector.value = chosenAssetClass; + sector_selector.value = chosenSector; document.querySelector('#content-landing-page').classList.toggle('hidden'); document.querySelector('#content-company-view').classList.toggle('hidden'); + fetchExposureStats(); + if (checkDataAvailability()) { + showAnalysisHideAlert(); + fetchCompanyBubble(); + fetchCompanyTechmix(); + } else { + handleNoDataForAssetSectorCombination(); + } }); - const go_button = document.querySelector('#go_button'); + sector_selector.addEventListener('change', function () { + fetchExposureStats(); + if (checkDataAvailability()) { + showAnalysisHideAlert(); + updateScenarioSourceSelector(); + updateScenarioSelector(); + fetchCompanyBubble(); + fetchCompanyTechmix(); + } else { + handleNoDataForAssetSectorCombination(); + } + }); - // TODO: wire these up correctly. Doesn't make sense to spend too much time on this - // now since we'll remove the selectors from inside the plot anyway. - go_button.addEventListener('click', function () { - const sector_selector = document.querySelector('#sector_selector'); - const asset_class_selector = document.querySelector('#asset_class_selector'); - const selects_asset = document.querySelectorAll( - 'companybubble_class_selector, .techexposure_class_selector' - ); - const selects_sector = document.querySelectorAll( - '.companybubble_group_selector, .techexposure_group_selector' - ); - selects_asset.forEach((d) => { - d.value = asset_class_selector.value; - d.dispatchEvent(new Event('change')); - }); - selects_sector.forEach((d) => { - d.value = sector_selector.value; - d.dispatchEvent(new Event('change')); - }); + asset_class_selector.addEventListener('change', function () { + fetchExposureStats(); + if (checkDataAvailability()) { + showAnalysisHideAlert(); + updateScenarioSourceSelector(); + updateScenarioSelector(); + updateAllocationMethodSelector(); + fetchCompanyBubble(); + fetchCompanyTechmix(); + } else { + handleNoDataForAssetSectorCombination(); + } + }); + const scenario_source_selector = document.querySelector('#scenario_source_selector'); + scenario_source_selector.addEventListener('change', function () { + updateScenarioSelector(); + fetchCompanyBubble(); + fetchCompanyTechmix(); + }); + const scenario_selector = document.querySelector('#scenario_selector'); + scenario_selector.addEventListener('change', function () { + fetchCompanyBubble(); + fetchCompanyTechmix(); + }); + const allocation_method_selector = document.querySelector('#allocation_method_selector'); + allocation_method_selector.addEventListener('change', function () { + fetchCompanyBubble(); + fetchCompanyTechmix(); }); } + setValuesSectorSelectors(); + setValuesAssetClassSelector(); + updateScenarioSourceSelector(); + updateScenarioSelector(); + updateAllocationMethodSelector(); + addEventListeners(); fetchExposureStats(); fetchCompanyBubble(); fetchCompanyTechmix(); - addEventListeners(); }); @@ -94,12 +356,10 @@
@@ -108,14 +368,11 @@ -