From bfcbc9cca02d33fe7e3d2f4385e930881a831b62 Mon Sep 17 00:00:00 2001 From: s8613 Date: Mon, 21 Apr 2025 12:11:06 +0200 Subject: [PATCH] Added page number and process --- prototypes/spacy-layout/extract_pitchbooks.py | 65 +- .../spacy-layout/output/ner_tables.json | 1488 ++++++++--------- prototypes/spacy-layout/output/ner_text.json | 885 ++++++---- 3 files changed, 1319 insertions(+), 1119 deletions(-) diff --git a/prototypes/spacy-layout/extract_pitchbooks.py b/prototypes/spacy-layout/extract_pitchbooks.py index c84b94c..7cd2139 100644 --- a/prototypes/spacy-layout/extract_pitchbooks.py +++ b/prototypes/spacy-layout/extract_pitchbooks.py @@ -1,5 +1,5 @@ # https://github.com/explosion/spacy-layout - +### Run with: python extract_pitchbooks.py import spacy from spacy_layout import spaCyLayout from pathlib import Path @@ -13,40 +13,63 @@ output_dir.mkdir(exist_ok=True) nlp = spacy.load("de_core_news_lg") layout = spaCyLayout(nlp) - doc = layout(str(input_pdf)) - -# 1. Save full extracted text (output_dir / "text.txt").write_text(doc.text, encoding="utf-8") -# 2. Save tables to CSV files for i, table in enumerate(doc._.tables, 1): df = table._.data df.to_csv(output_dir / f"table_{i}.csv", index=False) -# 3. NER on full text +# 1. NER on full text +ner_text_results = [] doc_ner = nlp(doc.text) -ents = [{"text": ent.text, "label": ent.label_} for ent in doc_ner.ents] -(output_dir / "ner_text.json").write_text(json.dumps(ents, indent=2, ensure_ascii=False)) +for ent in doc_ner.ents: + page_number = None + for i, (page_layout, spans) in enumerate(doc._.pages, 1): + for span in spans: + if span.start_char <= ent.start_char < span.end_char: + page_number = i + break + if page_number: + break -# 4. NER on table cells + if ent.text.strip(): + ner_text_results.append({ + "label": ent.label_, + "entity": ent.text.strip(), + "page": page_number + }) + +print(f"Saving {len(ner_text_results)} NER results from full text to ner_text.json") +(output_dir / "ner_text.json").write_text(json.dumps(ner_text_results, indent=2, ensure_ascii=False)) + +# 2. NER on table cells table_ner_results = [] for i, table in enumerate(doc._.tables, 1): - table_ents = [] df = table._.data - for row in df.astype(str).values: + page_number = None + + for pg_num, (page_layout, spans) in enumerate(doc._.pages, 1): + for span in spans: + if span.start <= table.start < span.end: + page_number = pg_num + break + if page_number: + break + + for row in df.astype(str).values: for cell in row: doc_cell = nlp(cell) - table_ents.extend({ - "table": i, - "cell_text": cell, - "entity": ent.text, - "label": ent.label_ - } for ent in doc_cell.ents) - table_ner_results.extend(table_ents) + for ent in doc_cell.ents: + if ent.text.strip(): + table_ner_results.append({ + "label": ent.label_, + "entity": ent.text.strip(), + "page": page_number, + "table": i + }) +print(f"Saving {len(table_ner_results)} NER results from tables to ner_tables.json") (output_dir / "ner_tables.json").write_text(json.dumps(table_ner_results, indent=2, ensure_ascii=False)) -print("✅ Done! Extracted data saved to /output") - -### Run with: python extract_pitchbooks.py \ No newline at end of file +print("✅ Done! Extracted data saved to /output") \ No newline at end of file diff --git a/prototypes/spacy-layout/output/ner_tables.json b/prototypes/spacy-layout/output/ner_tables.json index 0a78602..99c840b 100644 --- a/prototypes/spacy-layout/output/ner_tables.json +++ b/prototypes/spacy-layout/output/ner_tables.json @@ -1,1490 +1,1490 @@ [ { - "table": 1, - "cell_text": "This footprint is calculated based on: Energy and leaks of refrigerants (scope 1) Electricity, water and energy consumption (scope 2) Materials used for construction or refurbishment (scope 3)", + "label": "MISC", "entity": "This footprint is calculated based on: Energy and leaks of refrigerants", - "label": "MISC" + "page": 8, + "table": 1 }, { - "table": 1, - "cell_text": "This footprint is calculated based on: Energy and leaks of refrigerants (scope 1) Electricity, water and energy consumption (scope 2) Materials used for construction or refurbishment (scope 3)", + "label": "MISC", "entity": "scope 1", - "label": "MISC" + "page": 8, + "table": 1 }, { - "table": 1, - "cell_text": "This footprint is calculated based on: Energy and leaks of refrigerants (scope 1) Electricity, water and energy consumption (scope 2) Materials used for construction or refurbishment (scope 3)", + "label": "ORG", "entity": "water and energy consumption", - "label": "ORG" + "page": 8, + "table": 1 }, { - "table": 1, - "cell_text": "This trajectory will help assess the greenhouse gas emissions' reductions needed to respect the Paris agreement", + "label": "MISC", "entity": "This trajectory", - "label": "MISC" + "page": 8, + "table": 1 }, { - "table": 1, - "cell_text": "This evaluation shows the exposure of the asset to different climate related risks (sea level, floods, temperature, heatwaves, storms...)", + "label": "MISC", "entity": "This evaluation shows the exposure of the asset to different climate related risks", - "label": "MISC" + "page": 8, + "table": 1 }, { - "table": 1, - "cell_text": "This evaluation shows the exposure of the asset to different climate related risks (sea level, floods, temperature, heatwaves, storms...)", + "label": "PER", "entity": "heatwaves", - "label": "PER" + "page": 8, + "table": 1 }, { - "table": 1, - "cell_text": "This evaluation shows the exposure of the asset to different climate related risks (sea level, floods, temperature, heatwaves, storms...)", + "label": "PER", "entity": "storms", - "label": "PER" + "page": 8, + "table": 1 }, { - "table": 2, - "cell_text": "Fund Structure", + "label": "MISC", "entity": "Fund Structure", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Target Size: Target equity of € 500m (€1 Bn of assets) - Regulatory Qualification: Luxembourg AIF - Legal Form: Luxembourg Limited Partnership - Currency: EUR - Minimum Investment: €5m", + "label": "MISC", "entity": "Target Size", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Target Size: Target equity of € 500m (€1 Bn of assets) - Regulatory Qualification: Luxembourg AIF - Legal Form: Luxembourg Limited Partnership - Currency: EUR - Minimum Investment: €5m", + "label": "MISC", "entity": "Target", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Target Size: Target equity of € 500m (€1 Bn of assets) - Regulatory Qualification: Luxembourg AIF - Legal Form: Luxembourg Limited Partnership - Currency: EUR - Minimum Investment: €5m", + "label": "ORG", "entity": "Luxembourg Limited Partnership - Currency", - "label": "ORG" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Target Size: Target equity of € 500m (€1 Bn of assets) - Regulatory Qualification: Luxembourg AIF - Legal Form: Luxembourg Limited Partnership - Currency: EUR - Minimum Investment: €5m", + "label": "MISC", "entity": "EUR", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "Liquidity", + "label": "MISC", "entity": "Liquidity", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Subscriptions: Quarterly. Queue system, with pari passu calls to the oldest vintage. - Redemptions: Every semester (Dec and June). Queue system by vintage after lock up period. - Lock up: 5 years for investors entering in 2019, 4 years for investors entering in 2020 then 3 years - Gates: 10% of NAV per annum - Redemption deadline: 18 months after demand - Redemption fee: lf there are sufficient inflows when redemptions are outstanding, no fee on redemption ; otherwise, redemption fee will be 3% (1 0Y holding period), 2% (15Y) or 1% (>15Y) of NAV", + "label": "MISC", "entity": "Queue system", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Subscriptions: Quarterly. Queue system, with pari passu calls to the oldest vintage. - Redemptions: Every semester (Dec and June). Queue system by vintage after lock up period. - Lock up: 5 years for investors entering in 2019, 4 years for investors entering in 2020 then 3 years - Gates: 10% of NAV per annum - Redemption deadline: 18 months after demand - Redemption fee: lf there are sufficient inflows when redemptions are outstanding, no fee on redemption ; otherwise, redemption fee will be 3% (1 0Y holding period), 2% (15Y) or 1% (>15Y) of NAV", + "label": "MISC", "entity": "Every semester", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Subscriptions: Quarterly. Queue system, with pari passu calls to the oldest vintage. - Redemptions: Every semester (Dec and June). Queue system by vintage after lock up period. - Lock up: 5 years for investors entering in 2019, 4 years for investors entering in 2020 then 3 years - Gates: 10% of NAV per annum - Redemption deadline: 18 months after demand - Redemption fee: lf there are sufficient inflows when redemptions are outstanding, no fee on redemption ; otherwise, redemption fee will be 3% (1 0Y holding period), 2% (15Y) or 1% (>15Y) of NAV", + "label": "MISC", "entity": "Dec and June", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Subscriptions: Quarterly. Queue system, with pari passu calls to the oldest vintage. - Redemptions: Every semester (Dec and June). Queue system by vintage after lock up period. - Lock up: 5 years for investors entering in 2019, 4 years for investors entering in 2020 then 3 years - Gates: 10% of NAV per annum - Redemption deadline: 18 months after demand - Redemption fee: lf there are sufficient inflows when redemptions are outstanding, no fee on redemption ; otherwise, redemption fee will be 3% (1 0Y holding period), 2% (15Y) or 1% (>15Y) of NAV", + "label": "MISC", "entity": "Queue system by vintage after lock up period", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Subscriptions: Quarterly. Queue system, with pari passu calls to the oldest vintage. - Redemptions: Every semester (Dec and June). Queue system by vintage after lock up period. - Lock up: 5 years for investors entering in 2019, 4 years for investors entering in 2020 then 3 years - Gates: 10% of NAV per annum - Redemption deadline: 18 months after demand - Redemption fee: lf there are sufficient inflows when redemptions are outstanding, no fee on redemption ; otherwise, redemption fee will be 3% (1 0Y holding period), 2% (15Y) or 1% (>15Y) of NAV", + "label": "PER", "entity": "Gates", - "label": "PER" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "Fees (before VAT)", + "label": "MISC", "entity": "Fees", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Asset Management/ Fund Management: sliding scale considering committed amount 55-50-40bp x NAV (5-1 0; 10-50; 50+ M€). Fee only payable on investment called. For investors committing before 31/12/2019: Rebate of10bp for 5 years after subscription - Acquisition: 0.5% to 1% x GAV following asset size - Disposal: 200k€, flat - Performance fee: 20% above 7% IRR (payable by investors on realised profit)", + "label": "MISC", "entity": "NAV", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Asset Management/ Fund Management: sliding scale considering committed amount 55-50-40bp x NAV (5-1 0; 10-50; 50+ M€). Fee only payable on investment called. For investors committing before 31/12/2019: Rebate of10bp for 5 years after subscription - Acquisition: 0.5% to 1% x GAV following asset size - Disposal: 200k€, flat - Performance fee: 20% above 7% IRR (payable by investors on realised profit)", + "label": "MISC", "entity": "Fee only payable on investment called", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Asset Management/ Fund Management: sliding scale considering committed amount 55-50-40bp x NAV (5-1 0; 10-50; 50+ M€). Fee only payable on investment called. For investors committing before 31/12/2019: Rebate of10bp for 5 years after subscription - Acquisition: 0.5% to 1% x GAV following asset size - Disposal: 200k€, flat - Performance fee: 20% above 7% IRR (payable by investors on realised profit)", + "label": "MISC", "entity": "For investors committing before 31/12/2019", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 2, - "cell_text": "- Asset Management/ Fund Management: sliding scale considering committed amount 55-50-40bp x NAV (5-1 0; 10-50; 50+ M€). Fee only payable on investment called. For investors committing before 31/12/2019: Rebate of10bp for 5 years after subscription - Acquisition: 0.5% to 1% x GAV following asset size - Disposal: 200k€, flat - Performance fee: 20% above 7% IRR (payable by investors on realised profit)", + "label": "MISC", "entity": "Rebate of10bp for 5 years after subscription", - "label": "MISC" + "page": 11, + "table": 2 }, { - "table": 3, - "cell_text": "Total return", + "label": "MISC", "entity": "Total return", - "label": "MISC" + "page": 13, + "table": 3 }, { - "table": 3, - "cell_text": "LTV", + "label": "ORG", "entity": "LTV", - "label": "ORG" + "page": 13, + "table": 3 }, { - "table": 3, - "cell_text": "Percentile", + "label": "LOC", "entity": "Percentile", - "label": "LOC" + "page": 13, + "table": 3 }, { - "table": 3, - "cell_text": "5th", + "label": "ORG", "entity": "5th", - "label": "ORG" + "page": 13, + "table": 3 }, { - "table": 3, - "cell_text": "5th", + "label": "ORG", "entity": "5th", - "label": "ORG" + "page": 13, + "table": 3 }, { - "table": 3, - "cell_text": "10th", + "label": "LOC", "entity": "10th", - "label": "LOC" + "page": 13, + "table": 3 }, { - "table": 3, - "cell_text": "5th", + "label": "ORG", "entity": "5th", - "label": "ORG" + "page": 13, + "table": 3 }, { - "table": 3, - "cell_text": "PEPFI", + "label": "ORG", "entity": "PEPFI", - "label": "ORG" + "page": 13, + "table": 3 }, { - "table": 3, - "cell_text": "Total return", + "label": "MISC", "entity": "Total return", - "label": "MISC" + "page": 13, + "table": 3 }, { - "table": 3, - "cell_text": "LTV", + "label": "ORG", "entity": "LTV", - "label": "ORG" + "page": 13, + "table": 3 }, { - "table": 4, - "cell_text": "BELGIUM Brussels", + "label": "ORG", "entity": "BELGIUM Brussels", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "New building Delivery 04 2020", + "label": "ORG", "entity": "New building Delivery 04", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Office building 500m away from the European Commission - well served by the subway (250m away from one of the major metro station - 67 parking spaces - Delivery 0 4 2020", + "label": "LOC", "entity": "Office building", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "BELGIUM Brussels", + "label": "ORG", "entity": "BELGIUM Brussels", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Recent building", + "label": "MISC", "entity": "Recent building", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Fully let WALB 5,42", + "label": "MISC", "entity": "WALB", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Multi let office building in the Sought after brussel's Euopean District - 100% let to 8 tenants - WALB 5,42 years - Share deal - NIY around 4,17%", + "label": "LOC", "entity": "Multi let office building in the Sought after", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Multi let office building in the Sought after brussel's Euopean District - 100% let to 8 tenants - WALB 5,42 years - Share deal - NIY around 4,17%", + "label": "LOC", "entity": "Euopean District", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Multi let office building in the Sought after brussel's Euopean District - 100% let to 8 tenants - WALB 5,42 years - Share deal - NIY around 4,17%", + "label": "MISC", "entity": "WALB", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Multi let office building in the Sought after brussel's Euopean District - 100% let to 8 tenants - WALB 5,42 years - Share deal - NIY around 4,17%", + "label": "MISC", "entity": "NIY around", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "SPAIN Madrid", + "label": "ORG", "entity": "SPAIN", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "SPAIN Madrid", + "label": "LOC", "entity": "Madrid", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Office building in the South of Madrid - - 7 years lease recently signed by an energy company - 47 parking spaces - Built in 1891 refurbished in 2019 -", + "label": "LOC", "entity": "Office building in the South of Madrid", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Office building in the South of Madrid - - 7 years lease recently signed by an energy company - 47 parking spaces - Built in 1891 refurbished in 2019 -", + "label": "MISC", "entity": "Built", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "FRANCE Levallois", + "label": "ORG", "entity": "FRANCE Levallois", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "New building", + "label": "LOC", "entity": "New building", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Very weil located - LT lease - very good tenants", + "label": "LOC", "entity": "Very", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Very weil located - LT lease - very good tenants", + "label": "MISC", "entity": "LT lease - very good tenants", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "FRANCE Paris 14", + "label": "ORG", "entity": "FRANCE Paris 14", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "New building", + "label": "LOC", "entity": "New building", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "New building in Paris", + "label": "LOC", "entity": "New building", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "New building in Paris", + "label": "LOC", "entity": "Paris", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "BELGIUM Brussels", + "label": "ORG", "entity": "BELGIUM Brussels", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "99m-102m", + "label": "MISC", "entity": "99m-102", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Refurbished in 2014", + "label": "ORG", "entity": "Refurbished", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Occupancy 92%", + "label": "LOC", "entity": "Occupancy", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "2 independent and interconnected office buildings in Leopold / Location : A / Accessibility : very good, in front of the property / Construction: 1992 / WALT : 7 years /", + "label": "MISC", "entity": "2 independent and interconnected office buildings", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "2 independent and interconnected office buildings in Leopold / Location : A / Accessibility : very good, in front of the property / Construction: 1992 / WALT : 7 years /", + "label": "LOC", "entity": "Leopold", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "2 independent and interconnected office buildings in Leopold / Location : A / Accessibility : very good, in front of the property / Construction: 1992 / WALT : 7 years /", + "label": "LOC", "entity": "A / Accessibility : very good", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "2 independent and interconnected office buildings in Leopold / Location : A / Accessibility : very good, in front of the property / Construction: 1992 / WALT : 7 years /", + "label": "MISC", "entity": "front of the property / Construction", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "2 independent and interconnected office buildings in Leopold / Location : A / Accessibility : very good, in front of the property / Construction: 1992 / WALT : 7 years /", + "label": "ORG", "entity": "WALT", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "NETHERLANDS Rotterdam", + "label": "ORG", "entity": "NETHERLANDS Rotterdam", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Recent building", + "label": "MISC", "entity": "Recent building", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Located in the heart of CBD - next to the metro stop Beurs - Single good tenant - comprehensive refurbishment undergoing - handover scheduled f or June 2020 - 207 parking spaces", + "label": "ORG", "entity": "Located in the heart of", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Located in the heart of CBD - next to the metro stop Beurs - Single good tenant - comprehensive refurbishment undergoing - handover scheduled f or June 2020 - 207 parking spaces", + "label": "MISC", "entity": "undergoing - handover scheduled f or June", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "NETHERLANDS Rotterdam", + "label": "ORG", "entity": "NETHERLANDS Rotterdam", - "label": "ORG" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "New building", + "label": "LOC", "entity": "New building", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Located in the port of Rotterdam - connected with the A15 highway - Sale and lease back with 10 years triple- net lease agreement - 43 loading docks - Expected completion in 01 2020", + "label": "LOC", "entity": "Located in the port of Rotterdam", - "label": "LOC" + "page": 14, + "table": 4 }, { - "table": 4, - "cell_text": "Located in the port of Rotterdam - connected with the A15 highway - Sale and lease back with 10 years triple- net lease agreement - 43 loading docks - Expected completion in 01 2020", + "label": "MISC", "entity": "connected with the A15 highway - Sale and lease back with 10 years triple- net lease agreement", - "label": "MISC" + "page": 14, + "table": 4 }, { - "table": 5, - "cell_text": "BELGIUM Brussels", + "label": "ORG", "entity": "BELGIUM Brussels", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "New building", + "label": "LOC", "entity": "New building", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Fully let to five tenants (WALT of almost 10 Y)", + "label": "MISC", "entity": "Fully let to five tenants", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "The building is a recently constructed office property in the European District ofthe Brussels CBD. Located close to the Rue de la Loi, the main axis of the district, the building benefits from close proximity to the main EU institutions, excellent infrastructure and many amenities. Specifications fu ll y meet today's market requirements, including a BREEAM Excellent rating.", + "label": "MISC", "entity": "The building is a recently constructed office property in the European District ofthe Brussels", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "The building is a recently constructed office property in the European District ofthe Brussels CBD. Located close to the Rue de la Loi, the main axis of the district, the building benefits from close proximity to the main EU institutions, excellent infrastructure and many amenities. Specifications fu ll y meet today's market requirements, including a BREEAM Excellent rating.", + "label": "MISC", "entity": "Located close to the Rue de la Loi", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "The building is a recently constructed office property in the European District ofthe Brussels CBD. Located close to the Rue de la Loi, the main axis of the district, the building benefits from close proximity to the main EU institutions, excellent infrastructure and many amenities. Specifications fu ll y meet today's market requirements, including a BREEAM Excellent rating.", + "label": "MISC", "entity": "the main axis of the district", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "The building is a recently constructed office property in the European District ofthe Brussels CBD. Located close to the Rue de la Loi, the main axis of the district, the building benefits from close proximity to the main EU institutions, excellent infrastructure and many amenities. Specifications fu ll y meet today's market requirements, including a BREEAM Excellent rating.", + "label": "MISC", "entity": "the building benefits from close", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "GERMANY Berlin", + "label": "ORG", "entity": "GERMANY", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Office located in the West Berlin - Good Tenant Delivery 04 2020 - Lease term 20 years -", + "label": "LOC", "entity": "Office located", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Office located in the West Berlin - Good Tenant Delivery 04 2020 - Lease term 20 years -", + "label": "MISC", "entity": "Good Tenant Delivery 04", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "POLAND Warsaw", + "label": "ORG", "entity": "POLAND Warsaw", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Recent building", + "label": "MISC", "entity": "Recent building", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Almost fully let (WAULT 10 years) Multi tenant", + "label": "MISC", "entity": "Almost fully let", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Almost fully let (WAULT 10 years) Multi tenant", + "label": "MISC", "entity": "WAULT 10 years", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "A recent office building constructed in 2017, with 7 700 sqm, 59 parking spaces and amenities (conference centre, fitness club, cafe, restaurant...). The property has a Leed Platinium certification . The building is very weil located in the City Center of Warsaw and benefits from an excellent access to public transport. The expected yield is around 4,50%.", + "label": "LOC", "entity": "A recent office building constructed", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "A recent office building constructed in 2017, with 7 700 sqm, 59 parking spaces and amenities (conference centre, fitness club, cafe, restaurant...). The property has a Leed Platinium certification . The building is very weil located in the City Center of Warsaw and benefits from an excellent access to public transport. The expected yield is around 4,50%.", + "label": "MISC", "entity": "with 7 700", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "A recent office building constructed in 2017, with 7 700 sqm, 59 parking spaces and amenities (conference centre, fitness club, cafe, restaurant...). The property has a Leed Platinium certification . The building is very weil located in the City Center of Warsaw and benefits from an excellent access to public transport. The expected yield is around 4,50%.", + "label": "MISC", "entity": "conference centre", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "A recent office building constructed in 2017, with 7 700 sqm, 59 parking spaces and amenities (conference centre, fitness club, cafe, restaurant...). The property has a Leed Platinium certification . The building is very weil located in the City Center of Warsaw and benefits from an excellent access to public transport. The expected yield is around 4,50%.", + "label": "ORG", "entity": "fitness club", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "A recent office building constructed in 2017, with 7 700 sqm, 59 parking spaces and amenities (conference centre, fitness club, cafe, restaurant...). The property has a Leed Platinium certification . The building is very weil located in the City Center of Warsaw and benefits from an excellent access to public transport. The expected yield is around 4,50%.", + "label": "LOC", "entity": "cafe", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "A recent office building constructed in 2017, with 7 700 sqm, 59 parking spaces and amenities (conference centre, fitness club, cafe, restaurant...). The property has a Leed Platinium certification . The building is very weil located in the City Center of Warsaw and benefits from an excellent access to public transport. The expected yield is around 4,50%.", + "label": "MISC", "entity": "The property has a", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "A recent office building constructed in 2017, with 7 700 sqm, 59 parking spaces and amenities (conference centre, fitness club, cafe, restaurant...). The property has a Leed Platinium certification . The building is very weil located in the City Center of Warsaw and benefits from an excellent access to public transport. The expected yield is around 4,50%.", + "label": "MISC", "entity": "The building is very", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "A recent office building constructed in 2017, with 7 700 sqm, 59 parking spaces and amenities (conference centre, fitness club, cafe, restaurant...). The property has a Leed Platinium certification . The building is very weil located in the City Center of Warsaw and benefits from an excellent access to public transport. The expected yield is around 4,50%.", + "label": "LOC", "entity": "located in the City Center of Warsaw and benefits from", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "A recent office building constructed in 2017, with 7 700 sqm, 59 parking spaces and amenities (conference centre, fitness club, cafe, restaurant...). The property has a Leed Platinium certification . The building is very weil located in the City Center of Warsaw and benefits from an excellent access to public transport. The expected yield is around 4,50%.", + "label": "MISC", "entity": "The expected yield is around 4,50%", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "FINLAND Helsinki", + "label": "ORG", "entity": "FINLAND Helsinki", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "New building", + "label": "LOC", "entity": "New building", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "New 17 700 sqm development completed at the end of 2019, located seaside, in the South West city center of Helsinki. The property is single let to an Agency of the European Union on a 10 year lease agreement. The expected yield is around 4,50%.", + "label": "MISC", "entity": "New 17 700", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "New 17 700 sqm development completed at the end of 2019, located seaside, in the South West city center of Helsinki. The property is single let to an Agency of the European Union on a 10 year lease agreement. The expected yield is around 4,50%.", + "label": "LOC", "entity": "the South West city center of Helsinki", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "New 17 700 sqm development completed at the end of 2019, located seaside, in the South West city center of Helsinki. The property is single let to an Agency of the European Union on a 10 year lease agreement. The expected yield is around 4,50%.", + "label": "MISC", "entity": "The property is single let to", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "New 17 700 sqm development completed at the end of 2019, located seaside, in the South West city center of Helsinki. The property is single let to an Agency of the European Union on a 10 year lease agreement. The expected yield is around 4,50%.", + "label": "ORG", "entity": "Agency of the European Union on a 10 year lease agreement", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "New 17 700 sqm development completed at the end of 2019, located seaside, in the South West city center of Helsinki. The property is single let to an Agency of the European Union on a 10 year lease agreement. The expected yield is around 4,50%.", + "label": "MISC", "entity": "The expected yield is around 4,50%", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "CZECH Republic Prague", + "label": "ORG", "entity": "CZECH Republic Prague", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "New building", + "label": "LOC", "entity": "New building", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Fully rented Multi tenants", + "label": "MISC", "entity": "Fully rented Multi", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "An outstanding quality iconic and sensitively developed multifunctional building consisted of a restored baroque› renaissance palace from 1734, juxtaposed with a 2018 constructed eight storey premium office building", + "label": "ORG", "entity": "outstanding quality iconic and sensitively developed multifunctional building consisted of a restored", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "An outstanding quality iconic and sensitively developed multifunctional building consisted of a restored baroque› renaissance palace from 1734, juxtaposed with a 2018 constructed eight storey premium office building", + "label": "MISC", "entity": "juxtaposed with a", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "FRANCE Saint Denis", + "label": "ORG", "entity": "FRANCE Saint Denis", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Core", + "label": "LOC", "entity": "Core", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "New building", + "label": "LOC", "entity": "New building", - "label": "LOC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Fully rented Multi tenants", + "label": "MISC", "entity": "Fully rented Multi", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Property newly built in an established office submarket close to public transports.", + "label": "MISC", "entity": "Property newly built", - "label": "MISC" + "page": 15, + "table": 5 }, { - "table": 5, - "cell_text": "Property newly built in an established office submarket close to public transports.", + "label": "ORG", "entity": "established office submarket close to public transports", - "label": "ORG" + "page": 15, + "table": 5 }, { - "table": 6, - "cell_text": "620 assets analysed €41.6 Bn", + "label": "MISC", "entity": "€41.6 Bn", - "label": "MISC" + "page": 17, + "table": 6 }, { - "table": 6, - "cell_text": "577 assets analysed €63.8 Bn", + "label": "MISC", "entity": "€63.8 Bn", - "label": "MISC" + "page": 17, + "table": 6 }, { - "table": 6, - "cell_text": "813 assets analysed €66.3 Bn", + "label": "MISC", "entity": "€66.3", - "label": "MISC" + "page": 17, + "table": 6 }, { - "table": 6, - "cell_text": "Projects submitted to the Investment Committee", + "label": "MISC", "entity": "Projects submitted to the Investment Committee", - "label": "MISC" + "page": 17, + "table": 6 }, { - "table": 7, - "cell_text": "Germany", + "label": "ORG", "entity": "Germany", - "label": "ORG" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "Etoile Properties Aerium IC Property Investment & Management", + "label": "LOC", "entity": "Etoile Properties", - "label": "LOC" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "Etoile Properties Aerium IC Property Investment & Management", + "label": "ORG", "entity": "IC Property Investment & Management", - "label": "ORG" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "Benelux", + "label": "ORG", "entity": "Benelux", - "label": "ORG" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "Etoile Properties Hannover Leasing", + "label": "ORG", "entity": "Etoile Properties Hannover Leasing", - "label": "ORG" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "UK", + "label": "LOC", "entity": "UK", - "label": "LOC" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "Knight Frank", + "label": "PER", "entity": "Knight Frank", - "label": "PER" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "Scandinavia", + "label": "ORG", "entity": "Scandinavia", - "label": "ORG" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "Newsec", + "label": "ORG", "entity": "Newsec", - "label": "ORG" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "Austria", + "label": "ORG", "entity": "Austria", - "label": "ORG" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "EHL", + "label": "ORG", "entity": "EHL", - "label": "ORG" + "page": 18, + "table": 7 }, { - "table": 7, - "cell_text": "Etoile Properties", + "label": "LOC", "entity": "Etoile Properties", - "label": "LOC" + "page": 18, + "table": 7 }, { - "table": 8, - "cell_text": "OPCIMMORE portfolio", + "label": "ORG", "entity": "OPCIMMORE", - "label": "ORG" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "Estonie LettonlG", + "label": "ORG", "entity": "LettonlG", - "label": "ORG" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "Total Return (gross)", + "label": "MISC", "entity": "Total Return", - "label": "MISC" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "••••••• +7,2% +6,9%", + "label": "MISC", "entity": "•••••••", - "label": "MISC" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "Estonie LettonlG", + "label": "ORG", "entity": "LettonlG", - "label": "ORG" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "RE AuM (€m)", + "label": "ORG", "entity": "RE AuM", - "label": "ORG" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "Estonie LettonlG", + "label": "ORG", "entity": "LettonlG", - "label": "ORG" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "Number of assets", + "label": "MISC", "entity": "Number of assets", - "label": "MISC" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "Estonie LettonlG", + "label": "ORG", "entity": "LettonlG", - "label": "ORG" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "RE Leverage", + "label": "ORG", "entity": "RE Leverage", - "label": "ORG" + "page": 20, + "table": 8 }, { - "table": 8, - "cell_text": "Estonie LettonlG", + "label": "ORG", "entity": "LettonlG", - "label": "ORG" + "page": 20, + "table": 8 }, { - "table": 9, - "cell_text": "Targeting demand-driven markets featuring rent recovery or rent pressures and >200bps risk premiums over risk free rates, always in prime locations", + "label": "MISC", "entity": "Targeting demand-driven markets featuring rent recovery", - "label": "MISC" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "Hospitality Hotels, others", + "label": "ORG", "entity": "Hospitality Hotels", - "label": "ORG" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "Focus on leases featuring fixed or floored rents with established operators in marketswhere constrain of new offer exist. Risk premium must reflect any operational risk taken", + "label": "MISC", "entity": "Focus on leases featuring fixed or floored rents with established operators", - "label": "MISC" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "Focus on leases featuring fixed or floored rents with established operators in marketswhere constrain of new offer exist. Risk premium must reflect any operational risk taken", + "label": "MISC", "entity": "constrain of new", - "label": "MISC" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "Focus on leases featuring fixed or floored rents with established operators in marketswhere constrain of new offer exist. Risk premium must reflect any operational risk taken", + "label": "MISC", "entity": "Risk premium", - "label": "MISC" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "lndustrial / Warehouse", + "label": "LOC", "entity": "Warehouse", - "label": "LOC" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "Look at the opportunities in close to city centers distribution platforms while large modern logistic platforms might be out of reach (high indiv idual values).", + "label": "MISC", "entity": "Look at the opportunities", - "label": "MISC" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "Retail (High street; retai1 park)", + "label": "LOC", "entity": "Retail", - "label": "LOC" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "Retail (High street; retai1 park)", + "label": "LOC", "entity": "retai1 park", - "label": "LOC" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "Focus on prime high street retail or small central urban shopping centers in main secondary cities demonstrating positive data in terms of demographics and spending potential", + "label": "MISC", "entity": "Focus on prime high street retail", - "label": "MISC" + "page": 26, + "table": 9 }, { - "table": 9, - "cell_text": "Focus on prime high street retail or small central urban shopping centers in main secondary cities demonstrating positive data in terms of demographics and spending potential", + "label": "MISC", "entity": "terms of demographics and spending", - "label": "MISC" + "page": 26, + "table": 9 }, { - "table": 10, - "cell_text": "Performance de reference (2011)", + "label": "MISC", "entity": "Performance de reference", - "label": "MISC" + "page": 30, + "table": 10 }, { - "table": 10, - "cell_text": "Objectif 2030", + "label": "PER", "entity": "Objectif", - "label": "PER" + "page": 30, + "table": 10 }, { - "table": 10, - "cell_text": "Avancement de l' objectif (%)", + "label": "PER", "entity": "Avancement de l' objectif", - "label": "PER" + "page": 30, + "table": 10 }, { - "table": 11, - "cell_text": "INK MGallery Hotel Amsterdam Core Closed in 2018", + "label": "LOC", "entity": "INK MGallery Hotel Amsterdam Core Closed", - "label": "LOC" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "MISC", "entity": "Tenant", - "label": "MISC" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "ORG", "entity": "WAULT", - "label": "ORG" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "MISC", "entity": "Net Initial Yield", - "label": "MISC" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "PER", "entity": "Unlevered CoC", - "label": "PER" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "MISC", "entity": "Unlevered IRR", - "label": "MISC" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "148 rooms Accor Hospitality Nedeland 14 €64,6m 4.02% 4.14% 440%", + "label": "MISC", "entity": "Accor Hospitality Nedeland", - "label": "MISC" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Investment b~ unds", + "label": "ORG", "entity": "Investment b~ unds", - "label": "ORG" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "EI Portico Madrid Core Closed in 2018", + "label": "ORG", "entity": "EI Portico Madrid Core Closed", - "label": "ORG" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Area: Tenants: WAULB (years): Price: Net Initial Yield Unlevered CoC: Unlevered IRR 10Y:", + "label": "ORG", "entity": "Tenants", - "label": "ORG" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Area: Tenants: WAULB (years): Price: Net Initial Yield Unlevered CoC: Unlevered IRR 10Y:", + "label": "ORG", "entity": "WAULB", - "label": "ORG" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Area: Tenants: WAULB (years): Price: Net Initial Yield Unlevered CoC: Unlevered IRR 10Y:", + "label": "MISC", "entity": "Net Initial Yield Unlevered CoC", - "label": "MISC" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Area: Tenants: WAULB (years): Price: Net Initial Yield Unlevered CoC: Unlevered IRR 10Y:", + "label": "MISC", "entity": "Unlevered IRR", - "label": "MISC" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Office 20,814 sqm Parking 401 units Multi tenants 2,25 €117,4m 4.31% 3.31% 4.26%", + "label": "MISC", "entity": "Office", - "label": "MISC" + "page": 34, + "table": 11 }, { - "table": 11, - "cell_text": "Investment b~ unds", + "label": "ORG", "entity": "Investment b~ unds", - "label": "ORG" + "page": 34, + "table": 11 }, { - "table": 12, - "cell_text": "Enjoy Paris Core Closed in 2018", + "label": "MISC", "entity": "Enjoy Paris Core Closed", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "MISC", "entity": "Tenant", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "ORG", "entity": "WAULT", - "label": "ORG" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "MISC", "entity": "Net Initial Yield", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "PER", "entity": "Unlevered CoC", - "label": "PER" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Unlevered CoC: Unlevered IRR 10Y:", + "label": "MISC", "entity": "Unlevered IRR", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Office 16,970 sqm Parking 64 units AXA Services g €258m net 340% 3.30% 3.30%", + "label": "MISC", "entity": "Office", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Office 16,970 sqm Parking 64 units AXA Services g €258m net 340% 3.30% 3.30%", + "label": "MISC", "entity": "Parking 64", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Office 16,970 sqm Parking 64 units AXA Services g €258m net 340% 3.30% 3.30%", + "label": "ORG", "entity": "AXA Services", - "label": "ORG" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Forward sale deal, development to be completed by end-2018. Co-investment between - Fund and a French institutional investor", + "label": "MISC", "entity": "Forward sale deal", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Forward sale deal, development to be completed by end-2018. Co-investment between - Fund and a French institutional investor", + "label": "MISC", "entity": "development to be", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "BBW Franfurt Core Closed in 2018", + "label": "ORG", "entity": "BBW Franfurt Core Closed", - "label": "ORG" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Area: Mains tenants: WAULT (years): Asset Value: Net Initial Yield Unlevered IRR 10Y:", + "label": "LOC", "entity": "Mains", - "label": "LOC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Area: Mains tenants: WAULT (years): Asset Value: Net Initial Yield Unlevered IRR 10Y:", + "label": "ORG", "entity": "WAULT", - "label": "ORG" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Area: Mains tenants: WAULT (years): Asset Value: Net Initial Yield Unlevered IRR 10Y:", + "label": "MISC", "entity": "Net Initial Yield Unlevered IRR", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Office 28,564 sqm Residential 2,494 sqm Commercial 1,028 sqm Parking 347 units KfW, Dwp Bank, Nomura 10 €141 ,2m 4.25% 3.60%", + "label": "MISC", "entity": "Office", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Office 28,564 sqm Residential 2,494 sqm Commercial 1,028 sqm Parking 347 units KfW, Dwp Bank, Nomura 10 €141 ,2m 4.25% 3.60%", + "label": "MISC", "entity": "Commercial", - "label": "MISC" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Office 28,564 sqm Residential 2,494 sqm Commercial 1,028 sqm Parking 347 units KfW, Dwp Bank, Nomura 10 €141 ,2m 4.25% 3.60%", + "label": "ORG", "entity": "KfW", - "label": "ORG" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Office 28,564 sqm Residential 2,494 sqm Commercial 1,028 sqm Parking 347 units KfW, Dwp Bank, Nomura 10 €141 ,2m 4.25% 3.60%", + "label": "ORG", "entity": "Dwp Bank", - "label": "ORG" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Office 28,564 sqm Residential 2,494 sqm Commercial 1,028 sqm Parking 347 units KfW, Dwp Bank, Nomura 10 €141 ,2m 4.25% 3.60%", + "label": "ORG", "entity": "Nomura", - "label": "ORG" + "page": 35, + "table": 12 }, { - "table": 12, - "cell_text": "Investment b~ Funds", + "label": "ORG", "entity": "Investment b~ Funds", - "label": "ORG" + "page": 35, + "table": 12 }, { - "table": 13, - "cell_text": "Grand Central Frankfurt Core Closed in 2017", + "label": "ORG", "entity": "Grand Central Frankfurt Core Closed", - "label": "ORG" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Office 43,674 m 2 Storage 1,636 m 2 Parking 783 units Deutsche Bahn Netz AG (100%) -subsidiary of DB AG* 20 €324m net 3.45% Un-levered Cash-on-cash: 3.48% 3.22% Investor un-levered IRR 1DY:", + "label": "MISC", "entity": "Tenant", - "label": "MISC" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Office 43,674 m 2 Storage 1,636 m 2 Parking 783 units Deutsche Bahn Netz AG (100%) -subsidiary of DB AG* 20 €324m net 3.45% Un-levered Cash-on-cash: 3.48% 3.22% Investor un-levered IRR 1DY:", + "label": "ORG", "entity": "WAULT", - "label": "ORG" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Office 43,674 m 2 Storage 1,636 m 2 Parking 783 units Deutsche Bahn Netz AG (100%) -subsidiary of DB AG* 20 €324m net 3.45% Un-levered Cash-on-cash: 3.48% 3.22% Investor un-levered IRR 1DY:", + "label": "MISC", "entity": "Net Initial Yield", - "label": "MISC" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Office 43,674 m 2 Storage 1,636 m 2 Parking 783 units Deutsche Bahn Netz AG (100%) -subsidiary of DB AG* 20 €324m net 3.45% Un-levered Cash-on-cash: 3.48% 3.22% Investor un-levered IRR 1DY:", + "label": "MISC", "entity": "Office", - "label": "MISC" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Office 43,674 m 2 Storage 1,636 m 2 Parking 783 units Deutsche Bahn Netz AG (100%) -subsidiary of DB AG* 20 €324m net 3.45% Un-levered Cash-on-cash: 3.48% 3.22% Investor un-levered IRR 1DY:", + "label": "ORG", "entity": "Deutsche Bahn Netz AG", - "label": "ORG" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Office 43,674 m 2 Storage 1,636 m 2 Parking 783 units Deutsche Bahn Netz AG (100%) -subsidiary of DB AG* 20 €324m net 3.45% Un-levered Cash-on-cash: 3.48% 3.22% Investor un-levered IRR 1DY:", + "label": "PER", "entity": "Un-levered Cash-on-cash", - "label": "PER" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenant: WAULT (years): Asset Value: Net Initial Yield: Office 43,674 m 2 Storage 1,636 m 2 Parking 783 units Deutsche Bahn Netz AG (100%) -subsidiary of DB AG* 20 €324m net 3.45% Un-levered Cash-on-cash: 3.48% 3.22% Investor un-levered IRR 1DY:", + "label": "ORG", "entity": "IRR", - "label": "ORG" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Forward sale deal, development tobe completed by end-2020. - funds bought 100% of the deal and seek to share 50% of this deal with co› investor(s).", + "label": "MISC", "entity": "Forward sale deal", - "label": "MISC" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Rocket Tower Berlin Core Closed in 2017", + "label": "ORG", "entity": "Rocket Tower", - "label": "ORG" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield: LTV: Cash-on-cash: Investor IRR 1DY: Office 26, 192 m 2 Retail 1,765 m 2 Parking 411 units Multi (occupancy 96%) >13.5 €149m net 4.0% 45% 5.47% 7.58%", + "label": "ORG", "entity": "Tenants", - "label": "ORG" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield: LTV: Cash-on-cash: Investor IRR 1DY: Office 26, 192 m 2 Retail 1,765 m 2 Parking 411 units Multi (occupancy 96%) >13.5 €149m net 4.0% 45% 5.47% 7.58%", + "label": "LOC", "entity": "WALB", - "label": "LOC" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield: LTV: Cash-on-cash: Investor IRR 1DY: Office 26, 192 m 2 Retail 1,765 m 2 Parking 411 units Multi (occupancy 96%) >13.5 €149m net 4.0% 45% 5.47% 7.58%", + "label": "MISC", "entity": "Net Initial Yield", - "label": "MISC" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield: LTV: Cash-on-cash: Investor IRR 1DY: Office 26, 192 m 2 Retail 1,765 m 2 Parking 411 units Multi (occupancy 96%) >13.5 €149m net 4.0% 45% 5.47% 7.58%", + "label": "ORG", "entity": "LTV", - "label": "ORG" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield: LTV: Cash-on-cash: Investor IRR 1DY: Office 26, 192 m 2 Retail 1,765 m 2 Parking 411 units Multi (occupancy 96%) >13.5 €149m net 4.0% 45% 5.47% 7.58%", + "label": "MISC", "entity": "Office", - "label": "MISC" + "page": 36, + "table": 13 }, { - "table": 13, - "cell_text": "Co-investment between - Fund and a Finnish institutional investor", + "label": "ORG", "entity": "Co-investment", - "label": "ORG" + "page": 36, + "table": 13 }, { - "table": 14, - "cell_text": "Coeur Defense Paris, La Defense Core Closed in 2017", + "label": "ORG", "entity": "Coeur Defense Paris", - "label": "ORG" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Coeur Defense Paris, La Defense Core Closed in 2017", + "label": "MISC", "entity": "La Defense Core Closed", - "label": "MISC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Area: Main tenants: WALB (years): Price: Net Initial Yield LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "LOC", "entity": "Area:", - "label": "LOC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Area: Main tenants: WALB (years): Price: Net Initial Yield LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "LOC", "entity": "Main", - "label": "LOC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Area: Main tenants: WALB (years): Price: Net Initial Yield LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "LOC", "entity": "WALB", - "label": "LOC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Area: Main tenants: WALB (years): Price: Net Initial Yield LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "MISC", "entity": "Net Initial Yield LTV", - "label": "MISC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Office 182,765 m 2 HSBC, RTE, Allianz and EDF EN 7 €1 ,720m 4,78% 52% 5.59% 7.46%", + "label": "MISC", "entity": "Office", - "label": "MISC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Office 182,765 m 2 HSBC, RTE, Allianz and EDF EN 7 €1 ,720m 4,78% 52% 5.59% 7.46%", + "label": "ORG", "entity": "HSBC", - "label": "ORG" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Office 182,765 m 2 HSBC, RTE, Allianz and EDF EN 7 €1 ,720m 4,78% 52% 5.59% 7.46%", + "label": "ORG", "entity": "RTE", - "label": "ORG" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Office 182,765 m 2 HSBC, RTE, Allianz and EDF EN 7 €1 ,720m 4,78% 52% 5.59% 7.46%", + "label": "ORG", "entity": "Allianz and EDF", - "label": "ORG" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Co-investment between - andFrench institutional investors", + "label": "ORG", "entity": "Co-investment", - "label": "ORG" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Co-investment between - andFrench institutional investors", + "label": "MISC", "entity": "andFrench", - "label": "MISC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Tour Hekla Paris, La Defense Core Closed in 2017", + "label": "LOC", "entity": "Tour Hekla Paris", - "label": "LOC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Tour Hekla Paris, La Defense Core Closed in 2017", + "label": "LOC", "entity": "La Defense Core Closed", - "label": "LOC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Area: Main tenant WALB (years): Price: Net Initial Yield LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "MISC", "entity": "Net Initial Yield LTV", - "label": "MISC" + "page": 37, + "table": 14 }, { - "table": 14, - "cell_text": "Office 75,876 m 2 Vacant €582m 6.7% 41% 5.8% 6.03%", + "label": "LOC", "entity": "Office", - "label": "LOC" + "page": 37, + "table": 14 }, { - "table": 15, - "cell_text": "The Atrium Amsterdam south-axis Core Closed in 2017", + "label": "MISC", "entity": "The Atrium Amsterdam", - "label": "MISC" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield: LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "ORG", "entity": "Tenants", - "label": "ORG" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield: LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "LOC", "entity": "WALB", - "label": "LOC" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield: LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "MISC", "entity": "Net Initial Yield", - "label": "MISC" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield: LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "ORG", "entity": "LTV", - "label": "ORG" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Office 59,044 m 2 Parking 525 units Multi (occupancy 68%) 8 €520m net 3.83% 60% 6-7% 7.57%", + "label": "LOC", "entity": "Office", - "label": "LOC" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Co-investment with- investors", + "label": "ORG", "entity": "Co-investment", - "label": "ORG" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "The Cloud Amsterdam Core Closed in 2017", + "label": "MISC", "entity": "The Cloud Amsterdam Core Closed", - "label": "MISC" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "ORG", "entity": "Tenants", - "label": "ORG" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "LOC", "entity": "WALB", - "label": "LOC" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Area: Tenants: WALB (years): Price: Net Initial Yield LTV: Cash-on-cash: Investor IRR 10Y:", + "label": "MISC", "entity": "Net Initial Yield LTV", - "label": "MISC" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Office 23,807 m 2 Parking 195 units Multi (occupancy 98.4%) 9.7 €159m net 4.24% 40% 4.78% 5.56%", + "label": "LOC", "entity": "Office", - "label": "LOC" + "page": 38, + "table": 15 }, { - "table": 15, - "cell_text": "Co-investment between - Fundanda- institutional investor", + "label": "ORG", "entity": "Co-investment", - "label": "ORG" + "page": 38, + "table": 15 } ] \ No newline at end of file diff --git a/prototypes/spacy-layout/output/ner_text.json b/prototypes/spacy-layout/output/ner_text.json index f5eef63..089a73c 100644 --- a/prototypes/spacy-layout/output/ner_text.json +++ b/prototypes/spacy-layout/output/ner_text.json @@ -1,710 +1,887 @@ [ { - "text": "Real Estate Prime Europe\n\nAccess the Core of European Prime Cities with a green", - "label": "ORG" + "label": "ORG", + "entity": "Real Estate Prime Europe\n\nAccess the Core of European Prime Cities with a green", + "page": 1 }, { - "text": "Office leasing activity", - "label": "ORG" + "label": "ORG", + "entity": "Office leasing activity", + "page": 4 }, { - "text": "Considering the depth of these market segments", - "label": "ORG" + "label": "ORG", + "entity": "Considering the depth of these market segments", + "page": 4 }, { - "text": "key", - "label": "MISC" + "label": "MISC", + "entity": "key", + "page": 4 }, { - "text": "SRI objectives", - "label": "ORG" + "label": "ORG", + "entity": "SRI objectives", + "page": 4 }, { - "text": "France", - "label": "LOC" + "label": "LOC", + "entity": "France", + "page": 4 }, { - "text": "Luxembourg", - "label": "LOC" + "label": "LOC", + "entity": "Luxembourg", + "page": 4 }, { - "text": "major European countries gives us the required local historical expertise and the important flexibility to build and diligently manage", - "label": "ORG" + "label": "ORG", + "entity": "major European countries gives us the required local historical expertise and the important flexibility to build and diligently manage", + "page": 4 }, { - "text": "ESG", - "label": "ORG" + "label": "ORG", + "entity": "ESG", + "page": 4 }, { - "text": "line with our ambition", - "label": "ORG" + "label": "ORG", + "entity": "line with our ambition", + "page": 4 }, { - "text": "AREPE", - "label": "ORG" + "label": "ORG", + "entity": "AREPE", + "page": 4 }, { - "text": "structuring and managing European focused property funds", - "label": "MISC" + "label": "MISC", + "entity": "structuring and managing European focused property funds", + "page": 6 }, { - "text": "with €4bn of acquisitions out of France over the past 3", - "label": "MISC" + "label": "MISC", + "entity": "with €4bn of acquisitions out of France over the past 3", + "page": 6 }, { - "text": "structures the acquisitions and their financing", - "label": "ORG" + "label": "ORG", + "entity": "structures the acquisitions and their financing", + "page": 6 }, { - "text": "France", - "label": "LOC" + "label": "LOC", + "entity": "France", + "page": 6 }, { - "text": "Germany", - "label": "ORG" + "label": "ORG", + "entity": "Germany", + "page": 6 }, { - "text": "the Netherlands", - "label": "ORG" + "label": "ORG", + "entity": "the Netherlands", + "page": 6 }, { - "text": "UK", - "label": "ORG" + "label": "ORG", + "entity": "UK", + "page": 6 }, { - "text": "Czech Republic", - "label": "ORG" + "label": "ORG", + "entity": "Czech Republic", + "page": 6 }, { - "text": "Luxembourg ...\n\nA", - "label": "ORG" + "label": "ORG", + "entity": "Luxembourg ...\n\nA", + "page": 6 }, { - "text": "COMPLETE", - "label": "ORG" + "label": "ORG", + "entity": "COMPLETE", + "page": 6 }, { - "text": "OFFERING", - "label": "ORG" + "label": "ORG", + "entity": "OFFERING", + "page": 6 }, { - "text": "Dedicated Funds", - "label": "ORG" + "label": "ORG", + "entity": "Dedicated Funds", + "page": 6 }, { - "text": "Club Deals & Joint Ventures", - "label": "ORG" + "label": "ORG", + "entity": "Club Deals & Joint Ventures", + "page": 6 }, { - "text": "France", - "label": "LOC" + "label": "LOC", + "entity": "France", + "page": 6 }, { - "text": "window for international clients looking to access the European ", - "label": "MISC" + "label": "MISC", + "entity": "window for international clients looking to access the European", + "page": 6 }, { - "text": "EUROPEAN", - "label": "ORG" + "label": "ORG", + "entity": "EUROPEAN", + "page": 6 }, { - "text": "CITIES", - "label": "ORG" + "label": "ORG", + "entity": "CITIES", + "page": 6 }, { - "text": "Europe\n\nSee the map with detail for each of the 750 assets", - "label": "LOC" + "label": "LOC", + "entity": "Europe\n\nSee the map with detail for each of the 750 assets", + "page": 6 }, { - "text": "investing with similar-minded investors\n\n", - "label": "MISC" + "label": "MISC", + "entity": "investing with similar-minded investors", + "page": 7 }, { - "text": "build from a tailor made proposal", - "label": "MISC" + "label": "MISC", + "entity": "build from a tailor made proposal", + "page": 7 }, { - "text": "from A to G.\n\nWe use a well-known referential to perform a thorough analysis of each asset:", - "label": "MISC" + "label": "MISC", + "entity": "from A to G.\n\nWe use a well-known referential to perform a thorough analysis of each asset:", + "page": 8 }, { - "text": "Use Part 1 international referential", - "label": "MISC" + "label": "MISC", + "entity": "Use Part 1 international referential", + "page": 8 }, { - "text": "line with the best standards\n\n03\n\nThe Fund Real Estate Prime Europe\n\nFund Objective\n\nNavigate the diversity of the Core", - "label": "MISC" + "label": "MISC", + "entity": "line with the best standards\n\n03\n\nThe Fund Real Estate Prime Europe\n\nFund Objective\n\nNavigate the diversity of the Core", + "page": 8 }, { - "text": "Core+", - "label": "ORG" + "label": "ORG", + "entity": "Core+", + "page": 10 }, { - "text": "European Prime Cities\n\n-is", - "label": "MISC" + "label": "MISC", + "entity": "European Prime Cities\n\n-is", + "page": 10 }, { - "text": "open-ended Lux-based fund providing an attractive core/core+ real estate exposure", - "label": "MISC" + "label": "MISC", + "entity": "open-ended Lux-based fund providing an attractive core/core+ real estate exposure", + "page": 10 }, { - "text": "European RE markets", - "label": "MISC" + "label": "MISC", + "entity": "European RE markets", + "page": 10 }, { - "text": "terms of pan-European geographies and sectors:", - "label": "MISC" + "label": "MISC", + "entity": "terms of pan-European geographies and sectors:", + "page": 10 }, { - "text": "Offices", - "label": "ORG" + "label": "ORG", + "entity": "Offices", + "page": 10 }, { - "text": "Retail and Hotels", - "label": "ORG" + "label": "ORG", + "entity": "Retail and Hotels", + "page": 10 }, { - "text": "Core+\n\nStrategy characteristics\n\nAllocation Guidelines\n\n-Type", - "label": "MISC" + "label": "MISC", + "entity": "Core+\n\nStrategy characteristics\n\nAllocation Guidelines\n\n-Type", + "page": 10 }, { - "text": "essentially new or recently refurbished assets\n\n-Individual", - "label": "MISC" + "label": "MISC", + "entity": "essentially new or recently refurbished assets\n\n-Individual", + "page": 10 }, { - "text": "Target", - "label": "MISC" + "label": "MISC", + "entity": "Target", + "page": 10 }, { - "text": "Max", - "label": "MISC" + "label": "MISC", + "entity": "Max", + "page": 10 }, { - "text": "FR", - "label": "LOC" + "label": "LOC", + "entity": "FR", + "page": 10 }, { - "text": "UK", - "label": "LOC" + "label": "LOC", + "entity": "UK", + "page": 10 }, { - "text": "DE", - "label": "ORG" + "label": "ORG", + "entity": "DE", + "page": 10 }, { - "text": "BE", - "label": "ORG" + "label": "ORG", + "entity": "BE", + "page": 10 }, { - "text": "NL", - "label": "LOC" + "label": "LOC", + "entity": "NL", + "page": 10 }, { - "text": "LU", - "label": "LOC" + "label": "LOC", + "entity": "LU", + "page": 10 }, { - "text": "Nordics", - "label": "LOC" + "label": "LOC", + "entity": "Nordics", + "page": 10 }, { - "text": "SP", - "label": "ORG" + "label": "ORG", + "entity": "SP", + "page": 10 }, { - "text": "CH", - "label": "LOC" + "label": "LOC", + "entity": "CH", + "page": 10 }, { - "text": "Max", - "label": "MISC" + "label": "MISC", + "entity": "Max", + "page": 10 }, { - "text": "rest of Europe", - "label": "MISC" + "label": "MISC", + "entity": "rest of Europe", + "page": 10 }, { - "text": "on Cash", - "label": "MISC" + "label": "MISC", + "entity": "on Cash", + "page": 10 }, { - "text": "EUR\n\n", - "label": "MISC" + "label": "MISC", + "entity": "EUR", + "page": 11 }, { - "text": "deep market improving availability and asset liquidity\n\nDrawbacks of the core / core+ segment\n\n-Strang", - "label": "MISC" + "label": "MISC", + "entity": "deep market improving availability and asset liquidity\n\nDrawbacks of the core / core+ segment\n\n-Strang", + "page": 12 }, { - "text": "assets leave less room for active asset management value creation\n\n-Better resilience", - "label": "MISC" + "label": "MISC", + "entity": "assets leave less room for active asset management value creation\n\n-Better resilience", + "page": 12 }, { - "text": "capital preservation is defin ed here as a characteristic of core", - "label": "ORG" + "label": "ORG", + "entity": "capital preservation is defin ed here as a characteristic of core", + "page": 12 }, { - "text": "There is no guarantee of capital", - "label": "MISC" + "label": "MISC", + "entity": "There is no guarantee of capital", + "page": 12 }, { - "text": "Given the low cost of debt today", - "label": "MISC" + "label": "MISC", + "entity": "Given the low cost of debt today", + "page": 13 }, { - "text": "we believe this", - "label": "MISC" + "label": "MISC", + "entity": "we believe this", + "page": 13 }, { - "text": "As such", - "label": "MISC" + "label": "MISC", + "entity": "As such", + "page": 13 }, { - "text": "eg industrial/logistics", - "label": "ORG" + "label": "ORG", + "entity": "eg industrial/logistics", + "page": 13 }, { - "text": "PEPFI", - "label": "ORG" + "label": "ORG", + "entity": "PEPFI", + "page": 13 }, { - "text": "Pan European Property Fund Index state as at end of December", - "label": "MISC" + "label": "MISC", + "entity": "Pan European Property Fund Index state as at end of December", + "page": 13 }, { - "text": "Europe\n\nbenefits from long history", - "label": "MISC" + "label": "MISC", + "entity": "Europe\n\nbenefits from long history", + "page": 17 }, { - "text": "strong local partnerships", - "label": "MISC" + "label": "MISC", + "entity": "strong local partnerships", + "page": 17 }, { - "text": "global and CRE economic research\n\nDeep deal flow", - "label": "ORG" + "label": "ORG", + "entity": "global and CRE economic research\n\nDeep deal flow", + "page": 17 }, { - "text": "Europe\n\nsources assets across Europe", - "label": "MISC" + "label": "MISC", + "entity": "Europe\n\nsources assets across Europe", + "page": 17 }, { - "text": "All segments of real estate assets are covered", - "label": "MISC" + "label": "MISC", + "entity": "All segments of real estate assets are covered", + "page": 17 }, { - "text": "Thanks to the importance of its inflows,~ arries out the largest transactions in the European market", - "label": "MISC" + "label": "MISC", + "entity": "Thanks to the importance of its inflows,~ arries out the largest transactions in the European market", + "page": 17 }, { - "text": "with €4bn of acquisitions out of France over the past 3", - "label": "MISC" + "label": "MISC", + "entity": "with €4bn of acquisitions out of France over the past 3", + "page": 17 }, { - "text": "France", - "label": "LOC" + "label": "LOC", + "entity": "France", + "page": 18 }, { - "text": "Luxembourg", - "label": "LOC" + "label": "LOC", + "entity": "Luxembourg", + "page": 18 }, { - "text": "ltaly", - "label": "LOC" + "label": "LOC", + "entity": "ltaly", + "page": 18 }, { - "text": "major European countries", - "label": "ORG" + "label": "ORG", + "entity": "major European countries", + "page": 18 }, { - "text": "giving us the required local expertise and the important flexibility to choose where to invest", - "label": "ORG" + "label": "ORG", + "entity": "giving us the required local expertise and the important flexibility to choose where to invest", + "page": 18 }, { - "text": "Europe", - "label": "LOC" + "label": "LOC", + "entity": "Europe", + "page": 18 }, { - "text": "brokers", - "label": "ORG" + "label": "ORG", + "entity": "brokers", + "page": 19 }, { - "text": "open architecture\n\nPreselection\n\n-First screening", - "label": "MISC" + "label": "MISC", + "entity": "open architecture\n\nPreselection\n\n-First screening", + "page": 19 }, { - "text": "external valuation", - "label": "MISC" + "label": "MISC", + "entity": "external valuation", + "page": 19 }, { - "text": "Europe\n\n", - "label": "MISC" + "label": "MISC", + "entity": "Europe", + "page": 20 }, { - "text": "OPCI", - "label": "MISC" + "label": "MISC", + "entity": "OPCI", + "page": 20 }, { - "text": "o~", - "label": "MISC" + "label": "MISC", + "entity": "o~", + "page": 20 }, { - "text": "France and combines RE and listed assets", - "label": "ORG" + "label": "ORG", + "entity": "France and combines RE and listed assets", + "page": 20 }, { - "text": "The RE portfolio of the fund is a good illustration ofexpertise in", - "label": "MISC" + "label": "MISC", + "entity": "The RE portfolio of the fund is a good illustration ofexpertise in", + "page": 20 }, { - "text": "The 2", - "label": "MISC" + "label": "MISC", + "entity": "The 2", + "page": 21 }, { - "text": "The exposure of the assets to climate risks\n\n", - "label": "MISC" + "label": "MISC", + "entity": "The exposure of the assets to climate risks", + "page": 21 }, { - "text": "line with the Paris Agreement COP 21* and the European directive", - "label": "ORG" + "label": "ORG", + "entity": "line with the Paris Agreement COP 21* and the European directive", + "page": 21 }, { - "text": "energy consumption reduction trajectory", - "label": "MISC" + "label": "MISC", + "entity": "energy consumption reduction trajectory", + "page": 21 }, { - "text": "delivering to our clients a", - "label": "MISC" + "label": "MISC", + "entity": "delivering to our clients a", + "page": 21 }, { - "text": "European Directive", - "label": "ORG" + "label": "ORG", + "entity": "European Directive", + "page": 21 }, { - "text": "Case & Views n\n\nReal Estate Prime Europe\n\nEurope is a liquid", - "label": "MISC" + "label": "MISC", + "entity": "Case & Views n\n\nReal Estate Prime Europe\n\nEurope is a liquid", + "page": 23 }, { - "text": "deep and attractive real estate market\n\nInvestment volumes", - "label": "MISC" + "label": "MISC", + "entity": "deep and attractive real estate market\n\nInvestment volumes", + "page": 24 }, { - "text": "Offices are the main asset class", - "label": "ORG" + "label": "ORG", + "entity": "Offices are the main asset class", + "page": 24 }, { - "text": "Europe", - "label": "ORG" + "label": "ORG", + "entity": "Europe", + "page": 24 }, { - "text": "but international investors", - "label": "ORG" + "label": "ORG", + "entity": "but international investors", + "page": 24 }, { - "text": "Americas and the Middle East", - "label": "ORG" + "label": "ORG", + "entity": "Americas and the Middle East", + "page": 24 }, { - "text": "at low financing rates", - "label": "MISC" + "label": "MISC", + "entity": "at low financing rates", + "page": 24 }, { - "text": "Europe\n\n-The office market has been particularly", - "label": "LOC" + "label": "LOC", + "entity": "Europe\n\n-The office market has been particularly", + "page": 25 }, { - "text": "office commercialization have increased over 1 year", - "label": "LOC" + "label": "LOC", + "entity": "office commercialization have increased over 1 year", + "page": 25 }, { - "text": "Western Europe and are higher", - "label": "MISC" + "label": "MISC", + "entity": "Western Europe and are higher", + "page": 25 }, { - "text": "This context of rarity", - "label": "MISC" + "label": "MISC", + "entity": "This context of rarity", + "page": 25 }, { - "text": "if it benefits", - "label": "ORG" + "label": "ORG", + "entity": "if it benefits", + "page": 25 }, { - "text": "In white\" launches", - "label": "MISC" + "label": "MISC", + "entity": "In white\" launches", + "page": 25 }, { - "text": "EU markets should", - "label": "ORG" + "label": "ORG", + "entity": "EU markets should", + "page": 25 }, { - "text": "Pan European diversification", - "label": "MISC" + "label": "MISC", + "entity": "Pan European diversification", + "page": 25 }, { - "text": "value protection", - "label": "ORG" + "label": "ORG", + "entity": "value protection", + "page": 26 }, { - "text": "Strong\n\n•\n\nConviction - Medium\n\nConviction - Low\n\n.........\n\n", - "label": "MISC" + "label": "MISC", + "entity": "Strong\n\n•\n\nConviction - Medium\n\nConviction - Low\n\n.........", + "page": 26 }, { - "text": "FR", - "label": "LOC" + "label": "LOC", + "entity": "FR", + "page": 26 }, { - "text": "UK", - "label": "LOC" + "label": "LOC", + "entity": "UK", + "page": 26 }, { - "text": "DE", - "label": "ORG" + "label": "ORG", + "entity": "DE", + "page": 26 }, { - "text": "BE", - "label": "LOC" + "label": "LOC", + "entity": "BE", + "page": 26 }, { - "text": "NL", - "label": "LOC" + "label": "LOC", + "entity": "NL", + "page": 26 }, { - "text": "LU", - "label": "LOC" + "label": "LOC", + "entity": "LU", + "page": 26 }, { - "text": "Nordics", - "label": "LOC" + "label": "LOC", + "entity": "Nordics", + "page": 26 }, { - "text": "SP", - "label": "ORG" + "label": "ORG", + "entity": "SP", + "page": 26 }, { - "text": "IT", - "label": "ORG" + "label": "ORG", + "entity": "IT", + "page": 26 }, { - "text": "CH", - "label": "LOC" + "label": "LOC", + "entity": "CH", + "page": 26 }, { - "text": "Europe\n\nThose markets ", - "label": "MISC" + "label": "MISC", + "entity": "Europe\n\nThose markets", + "page": 27 }, { - "text": "Risk premium remains attractive on a leveraged", - "label": "MISC" + "label": "MISC", + "entity": "Risk premium remains attractive on a leveraged", + "page": 27 }, { - "text": "Manage to core or build to core can m ake sense as a LT", - "label": "MISC" + "label": "MISC", + "entity": "Manage to core or build to core can m ake sense as a LT", + "page": 27 }, { - "text": "m ain cities", - "label": "LOC" + "label": "LOC", + "entity": "m ain cities", + "page": 27 }, { - "text": "Opportunities are rare but worth looking at", - "label": "MISC" + "label": "MISC", + "entity": "Opportunities are rare but worth looking at", + "page": 27 }, { - "text": "Despite a recent decrease", - "label": "MISC" + "label": "MISC", + "entity": "Despite a recent decrease", + "page": 27 }, { - "text": "yields", - "label": "LOC" + "label": "LOC", + "entity": "yields", + "page": 27 }, { - "text": "Amsterdam and Luxemburg remain attractive for office and residential\n\nlreland\n\nThe market is narrow", - "label": "LOC" + "label": "LOC", + "entity": "Amsterdam and Luxemburg remain attractive for office and residential\n\nlreland\n\nThe market is narrow", + "page": 27 }, { - "text": "A particular focus on the competitive future supply", - "label": "MISC" + "label": "MISC", + "entity": "A particular focus on the competitive future supply", + "page": 27 }, { - "text": "Warsawwill be searched for opportunities as sellers", - "label": "LOC" + "label": "LOC", + "entity": "Warsawwill be searched for opportunities as sellers", + "page": 27 }, { - "text": "lheir selling price", - "label": "LOC" + "label": "LOC", + "entity": "lheir selling price", + "page": 27 }, { - "text": "Investment should focus on Euro denominated assets offering mainly Euro revenues", - "label": "MISC" + "label": "MISC", + "entity": "Investment should focus on Euro denominated assets offering mainly Euro revenues", + "page": 27 }, { - "text": "Rents have some potential to improve", - "label": "MISC" + "label": "MISC", + "entity": "Rents have some potential to improve", + "page": 27 }, { - "text": "Considering current low yield and fierce competition", - "label": "MISC" + "label": "MISC", + "entity": "Considering current low yield and fierce competition", + "page": 27 }, { - "text": "Manage to core strategies could make sense", - "label": "MISC" + "label": "MISC", + "entity": "Manage to core strategies could make sense", + "page": 27 }, { - "text": "We m ", - "label": "MISC" + "label": "MISC", + "entity": "We m", + "page": 27 }, { - "text": "this market where competing future supply can break", - "label": "MISC" + "label": "MISC", + "entity": "this market where competing future supply can break", + "page": 27 }, { - "text": "looked at", - "label": "LOC" + "label": "LOC", + "entity": "looked at", + "page": 27 }, { - "text": "Assel", - "label": "PER" + "label": "PER", + "entity": "Assel", + "page": 27 }, { - "text": "Residential m arket can also be looked at although local investors present", - "label": "LOC" + "label": "LOC", + "entity": "Residential m arket can also be looked at although local investors present", + "page": 27 }, { - "text": "offering potential for high", - "label": "MISC" + "label": "MISC", + "entity": "offering potential for high", + "page": 27 }, { - "text": "Madrid", - "label": "LOC" + "label": "LOC", + "entity": "Madrid", + "page": 27 }, { - "text": "Barcelona", - "label": "LOC" + "label": "LOC", + "entity": "Barcelona", + "page": 27 }, { - "text": "investm ent must be small\n\nUnited Kingdom\n\nLondon office market", - "label": "MISC" + "label": "MISC", + "entity": "investm ent must be small\n\nUnited Kingdom\n\nLondon office market", + "page": 27 }, { - "text": "inlroduced", - "label": "MISC" + "label": "MISC", + "entity": "inlroduced", + "page": 27 }, { - "text": "Although presenting new opportunities", - "label": "MISC" + "label": "MISC", + "entity": "Although presenting new opportunities", + "page": 27 }, { - "text": "Each of Milan and Rome office markets are narrow", - "label": "MISC" + "label": "MISC", + "entity": "Each of Milan and Rome office markets are narrow", + "page": 27 }, { - "text": "for prime assets", - "label": "MISC" + "label": "MISC", + "entity": "for prime assets", + "page": 27 }, { - "text": "Focus could be made on retail", - "label": "MISC" + "label": "MISC", + "entity": "Focus could be made on retail", + "page": 27 }, { - "text": "looked at on", - "label": "MISC" + "label": "MISC", + "entity": "looked at on", + "page": 27 }, { - "text": "Prague but this market is", - "label": "MISC" + "label": "MISC", + "entity": "Prague but this market is", + "page": 27 }, { - "text": "Europe Biographies\n\nFocus on the ESG approach\n\nA", - "label": "ORG" + "label": "ORG", + "entity": "Europe Biographies\n\nFocus on the ESG approach\n\nA", + "page": 28 }, { - "text": "The environmental and social mapping\n\nTo realize this mapping", - "label": "MISC" + "label": "MISC", + "entity": "The environmental and social mapping\n\nTo realize this mapping", + "page": 29 }, { - "text": "of the\n\nNous y derogeons sur l'aspect energie en s'interessant a l'annee de construction du bätiment et a la reglementation a laquelle", - "label": "MISC" + "label": "MISC", + "entity": "of the\n\nNous y derogeons sur l'aspect energie en s'interessant a l'annee de construction du bätiment et a la reglementation a laquelle", + "page": 29 }, { - "text": "etait soumis", - "label": "PER" + "label": "PER", + "entity": "etait soumis", + "page": 29 }, { - "text": "Energy-Carbon", - "label": "MISC" + "label": "MISC", + "entity": "Energy-Carbon", + "page": 30 }, { - "text": "evolutions\n\nEvolution des performances Energie", - "label": "MISC" + "label": "MISC", + "entity": "evolutions\n\nEvolution des performances Energie", + "page": 30 }, { - "text": "usages de l'immeuble", - "label": "MISC" + "label": "MISC", + "entity": "usages de l'immeuble", + "page": 30 }, { - "text": "the reductions imposed by the tertiary decree", - "label": "ORG" + "label": "ORG", + "entity": "the reductions imposed by the tertiary decree", + "page": 30 }, { - "text": "France", - "label": "LOC" + "label": "LOC", + "entity": "France", + "page": 30 }, { - "text": "a trajectory", - "label": "LOC" + "label": "LOC", + "entity": "a trajectory", + "page": 30 }, { - "text": "Exposure to climate risks\n\nThis part allows", - "label": "MISC" + "label": "MISC", + "entity": "Exposure to climate risks\n\nThis part allows", + "page": 31 }, { - "text": "building association", - "label": "ORG" + "label": "ORG", + "entity": "building association", + "page": 32 }, { - "text": "SRI", - "label": "ORG" + "label": "ORG", + "entity": "SRI", + "page": 32 }, { - "text": "applied to real estate", - "label": "ORG" + "label": "ORG", + "entity": "applied to real estate", + "page": 32 }, { - "text": "distributed dividends statements", - "label": "ORG" + "label": "ORG", + "entity": "distributed dividends statements", + "page": 33 }, { - "text": "semi-annual", - "label": "ORG" + "label": "ORG", + "entity": "semi-annual", + "page": 33 }, { - "text": "ratios\n\nGlobal", - "label": "MISC" + "label": "MISC", + "entity": "ratios\n\nGlobal", + "page": 33 }, { - "text": "D+90", - "label": "MISC" + "label": "MISC", + "entity": "D+90", + "page": 33 }, { - "text": "D+120", - "label": "MISC" + "label": "MISC", + "entity": "D+120", + "page": 33 }, { - "text": "Europe\n\n", - "label": "MISC" + "label": "MISC", + "entity": "Europe", + "page": 34 }, { - "text": "Europe\n\n", - "label": "MISC" + "label": "MISC", + "entity": "Europe", + "page": 35 }, { - "text": "Europe\n\n", - "label": "MISC" + "label": "MISC", + "entity": "Europe", + "page": 36 }, { - "text": "Europe\n\n", - "label": "MISC" + "label": "MISC", + "entity": "Europe", + "page": 37 }, { - "text": "Europe\n\n", - "label": "MISC" + "label": "MISC", + "entity": "Europe", + "page": 38 } ] \ No newline at end of file