From c9a749eceac26caec69edf9fcd0648e2b85fc504 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Mart=C3=ADnez=20Pineda?= Date: Wed, 13 May 2026 14:11:21 +0200 Subject: [PATCH 1/3] [PowerBIReports] Clear setup fields on PBI deployment delete via interface MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subscribe to "PBI Deployment Events".OnAfterDeleteAllDeploymentRecords (new BaseApp event that fires after the per-company Power BI deployment rows are wiped on env-copy and Copy Company) and clear the matching "PowerBI Reports Setup" Report Id / Name pairs. Replaces the two prior direct subscriptions to "Environment Cleanup" .OnClearCompanyConfig and Report "Copy Company" .OnAfterCreatedNewCompanyByCopyCompany — both BaseApp paths now route through PowerBIDeployment.DeleteAllRecords, which raises the new event. Switches from a hardcoded six-field clear to iterating Enum::"PBI Report Setup" and clearing each implementation's reported Id/Name field-no via RecordRef. Mirrors the populate-site pattern in PowerBISubscribers.OnReportDeployed exactly, so third-party extensions that register new app types are handled without changes here. Side-effect: Inventory Valuation (already in the enum but absent from the prior hardcoded list) is now also cleared. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../Codeunits/InstallationHandler.Codeunit.al | 53 ++++++++----------- 1 file changed, 22 insertions(+), 31 deletions(-) diff --git a/src/Apps/W1/PowerBIReports/App/Core/Codeunits/InstallationHandler.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/Codeunits/InstallationHandler.Codeunit.al index 7c07cac318..26c322891d 100644 --- a/src/Apps/W1/PowerBIReports/App/Core/Codeunits/InstallationHandler.Codeunit.al +++ b/src/Apps/W1/PowerBIReports/App/Core/Codeunits/InstallationHandler.Codeunit.al @@ -5,8 +5,7 @@ namespace Microsoft.PowerBIReports; using Microsoft.Foundation.Company; -using System.DataAdministration; -using System.Environment.Configuration; +using System.Integration.PowerBI; codeunit 36950 "Installation Handler" { @@ -27,38 +26,30 @@ codeunit 36950 "Installation Handler" Initialization.SetupDefaultsForPowerBIReportsIfNotInitialized(); end; - [EventSubscriber(ObjectType::Codeunit, Codeunit::"Environment Cleanup", 'OnClearCompanyConfig', '', false, false)] - local procedure OnClearCompanyConfig(CompanyName: Text) - begin - ClearCompanySpecificSetup(CompanyName); - end; - - [EventSubscriber(ObjectType::Report, Report::"Copy Company", 'OnAfterCreatedNewCompanyByCopyCompany', '', false, false)] - local procedure OnAfterCreatedNewCompanyByCopyCompany(NewCompanyName: Text[30]) - begin - ClearCompanySpecificSetup(NewCompanyName); - end; - - local procedure ClearCompanySpecificSetup(CompanyName: Text) + [EventSubscriber(ObjectType::Codeunit, Codeunit::"PBI Deployment Events", 'OnAfterDeleteAllDeploymentRecords', '', false, false)] + local procedure OnAfterDeleteAllDeploymentRecords(InCompany: Text[30]) var PowerBIReportsSetup: Record "PowerBI Reports Setup"; + ReportSetup: Interface "PBI Report Setup"; + RecRef: RecordRef; + EmptyGuid: Guid; + EmptyText: Text; + Ordinal: Integer; begin - if CompanyName <> '' then - PowerBIReportsSetup.ChangeCompany(CompanyName); - if PowerBIReportsSetup.FindFirst() then begin - Clear(PowerBIReportsSetup."Finance Report Id"); - Clear(PowerBIReportsSetup."Finance Report Name"); - Clear(PowerBIReportsSetup."Sales Report Id"); - Clear(PowerBIReportsSetup."Sales Report Name"); - Clear(PowerBIReportsSetup."Purchases Report Id"); - Clear(PowerBIReportsSetup."Purchases Report Name"); - Clear(PowerBIReportsSetup."Inventory Report Id"); - Clear(PowerBIReportsSetup."Inventory Report Name"); - Clear(PowerBIReportsSetup."Projects Report Id"); - Clear(PowerBIReportsSetup."Projects Report Name"); - Clear(PowerBIReportsSetup."Manufacturing Report Id"); - Clear(PowerBIReportsSetup."Manufacturing Report Name"); - PowerBIReportsSetup.Modify(); + // BaseApp wipes the Power BI deployment rows for a company on environment copy and + // Copy Company. Mirror that here: clear every setup Report Id / Name pair so the new + // company re-deploys cleanly. Iterates the "PBI Report Setup" enum so third-party + // extensions registering new app types are handled without changes here. + if InCompany <> '' then + PowerBIReportsSetup.ChangeCompany(InCompany); + if not PowerBIReportsSetup.FindFirst() then + exit; + RecRef.GetTable(PowerBIReportsSetup); + foreach Ordinal in Enum::"PBI Report Setup".Ordinals() do begin + ReportSetup := Enum::"PBI Report Setup".FromInteger(Ordinal); + RecRef.Field(ReportSetup.GetSetupReportIdFieldNo()).Value := EmptyGuid; + RecRef.Field(ReportSetup.GetSetupReportNameFieldNo()).Value := EmptyText; end; + RecRef.Modify(); end; } From ffac05e5d0b20bef1e73caeda1abff4fde0f17c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Mart=C3=ADnez=20Pineda?= Date: Wed, 13 May 2026 14:11:33 +0200 Subject: [PATCH 2/3] [PowerBIReports] Remove Sustainability runtime data assets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sustainability is moving out of BCApps and will own its Power BI reports directly. Delete the runtime data assets shipped from PowerBIReports: - Power BI Files/Sustainability app/ (PBIP source: manifest + SemanticModel + Report folders) - Power BI Files/Translations/Sustainability app/ (24 .resx translations) - App/.resources/Sustainability app.pbix (compiled binary) - Translations/LocProject.json — remove the Sustainability LocItem entry that pointed at the now-deleted translations folder Backward-compat infrastructure is intentionally left in place for the deprecation/removal cycle: App/_Obsolete/Sustainability/ (1 tableext + 11 embedded pages), the matching #if not CLEAN27 permission set block, #if not CLEAN27 enum value blocks in the Test Library, and the page- validation YAML drill-through hashes. Those will go in a future CLEAN27 pass. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../App/.resources/Sustainability app.pbix | Bin 738945 -> 0 bytes .../Sustainability app.Report/.platform | 11 - ..._Dynamics_365_Busines8275439523005887.json | 3231 ------- .../SharedResources/BaseThemes/CY19SU12.json | 430 - .../Sustainability app.Report/definition.pbir | 9 - ...Bookmark6746518f3cb530dd9a83.bookmark.json | 38 - .../definition/bookmarks/bookmarks.json | 8 - .../pages/0b23e0ca6a2516847ca8/page.json | 343 - .../visuals/12b02069b436c1320c93/visual.json | 149 - .../visuals/25b3afd7ba351eceea7d/visual.json | 97 - .../visuals/5e30f581647d7ff912d9/visual.json | 195 - .../visuals/76ec5578c61d977f696e/visual.json | 208 - .../visuals/8dc8daad5ddeca3e785c/visual.json | 97 - .../visuals/9c13b672726c31609ee5/visual.json | 142 - .../visuals/a7f6646996a0e6050128/visual.json | 196 - .../visuals/ad11820795f420bcef0c/visual.json | 188 - .../visuals/b2c75a750c2a8c36c351/visual.json | 449 - .../pages/1782621aa0d0e087ed20/page.json | 323 - .../visuals/64975b95d161484e36d0/visual.json | 424 - .../visuals/65ffcbd21962ea043e30/visual.json | 97 - .../visuals/7a779d2d929b1d35db47/visual.json | 187 - .../visuals/93bacbe141e58b021535/visual.json | 269 - .../visuals/a3b8aec3e322dae35928/visual.json | 149 - .../visuals/ac9ad629531723bdb923/visual.json | 180 - .../visuals/d05666e1db09c2043a9b/visual.json | 97 - .../visuals/ed4f7394ec3a2654100c/visual.json | 127 - .../visuals/ee089e908c9c6d34270c/visual.json | 193 - .../pages/282ec7e112a110c2addb/page.json | 193 - .../visuals/b96d4fae5d0307b47a93/visual.json | 97 - .../visuals/bebfafa39809830100c9/visual.json | 383 - .../visuals/c707b83080001d683080/visual.json | 97 - .../visuals/e21772e7b67996540782/visual.json | 56 - .../pages/3d1fa8eae4e214542edd/page.json | 338 - .../visuals/0aeccb3f870e8e483517/visual.json | 97 - .../visuals/372f0797e3100d0d0978/visual.json | 136 - .../visuals/3e640e5016264217e3c7/visual.json | 143 - .../visuals/947d9ed811d3bbd648db/visual.json | 149 - .../visuals/e501e570b01305e74e54/visual.json | 169 - .../visuals/fc97c3463ace847120a0/visual.json | 97 - .../pages/56c99409880d5002ad2e/page.json | 308 - .../visuals/0b21391e9601a5b4104a/visual.json | 314 - .../visuals/0e85aba7aec847702d80/visual.json | 300 - .../visuals/0fae04b007701de44644/visual.json | 31 - .../visuals/1dd0d2dd17952782e276/visual.json | 384 - .../visuals/31204d310751922b073b/visual.json | 237 - .../visuals/42c124100e8d70980a8d/visual.json | 97 - .../visuals/44804b807003966e5d54/visual.json | 384 - .../visuals/4b379e7fad37db2a59ee/visual.json | 384 - .../visuals/543eeeced7b9cd091bc0/visual.json | 301 - .../visuals/60e9cbdd5452ec71b395/visual.json | 188 - .../visuals/6b624b65b087b15590a3/visual.json | 384 - .../visuals/ac3cd1dec0ac701a7941/visual.json | 97 - .../visuals/acaaffd1717925b107d0/visual.json | 31 - .../visuals/b0c0b3f5164b6a9072a0/visual.json | 141 - .../visuals/b99a0f99e4a7b391ce10/visual.json | 31 - .../visuals/bb45ef10b90b4d090015/visual.json | 300 - .../visuals/cb933679b40a2b9a7d20/visual.json | 149 - .../visuals/f1b9c4d42d3760400d4a/visual.json | 31 - .../pages/6305c2799c0d6e6072b5/page.json | 323 - .../visuals/053fee37eebc9860ba57/visual.json | 149 - .../visuals/182bd83daa6a777e6a2e/visual.json | 97 - .../visuals/376fe19892261ce57800/visual.json | 235 - .../visuals/ac83c738d74d8612662c/visual.json | 97 - .../pages/723552ce7d04d22dc0c5/page.json | 323 - .../visuals/a941a7d4bc07065a5591/visual.json | 224 - .../visuals/c1f28a24220a1aec00e9/visual.json | 97 - .../visuals/c2479dc3920d05c9a61c/visual.json | 97 - .../visuals/ed871a07b4c81ba68350/visual.json | 184 - .../visuals/f39ee58f95259118e3cb/visual.json | 149 - .../pages/73714a8f07753d4a87c6/page.json | 77 - .../visuals/6d46382d469a47d23167/visual.json | 185 - .../visuals/99361670d4a51b0b136b/visual.json | 97 - .../visuals/a9625a5f4d5213cdb400/visual.json | 97 - .../visuals/f2e17b5dd0a7a5083a7c/visual.json | 56 - .../page.json | 9 - .../visuals/0980f0186ec3976e906a/visual.json | 177 - .../visuals/41ec9042caeb2e980963/visual.json | 178 - .../visuals/7783e9773b1d38eb9361/visual.json | 129 - .../visuals/afea4d233aea68eacd50/visual.json | 16 - .../visuals/ced57bc25ed03c0dc826/visual.json | 163 - .../visuals/d714a011086098594cc8/visual.json | 16 - .../pages/a8f44c103130e497d67d/page.json | 308 - .../visuals/16e67ff3f295e5b76dc4/visual.json | 209 - .../visuals/2bc70531cada7c508da0/visual.json | 97 - .../visuals/773a16200abb9bebaa50/visual.json | 149 - .../visuals/777ba1a3a302e984802a/visual.json | 196 - .../visuals/8b8aafa2b845ddb65ba0/visual.json | 252 - .../visuals/8f5744027a1dd3639ddb/visual.json | 449 - .../visuals/a5518c0876a55c719ab9/visual.json | 97 - .../visuals/a8ce5c3fdda70d632ccc/visual.json | 196 - .../visuals/b6b30b23f93394219025/visual.json | 223 - .../visuals/eab39c328bd358f6e236/visual.json | 207 - .../pages/b5e269104115da14c7e4/page.json | 308 - .../visuals/04c0e9fb2917e47a570a/visual.json | 314 - .../visuals/0658da7fcc2d447aa8a8/visual.json | 370 - .../visuals/0c14ce4ba396a9753c90/visual.json | 300 - .../visuals/38977ba132b55e90bc11/visual.json | 97 - .../visuals/4293af50bd53e0272e1b/visual.json | 370 - .../visuals/42f5bb40cab14391d144/visual.json | 149 - .../visuals/60fdc1d054b4d90e4074/visual.json | 370 - .../visuals/78d8dc7a89d79dd35775/visual.json | 370 - .../visuals/879a6b80553100520daa/visual.json | 301 - .../visuals/a3189eb30074d94bb794/visual.json | 300 - .../visuals/af294d70931ec1967154/visual.json | 256 - .../visuals/df15c95f485e70612280/visual.json | 31 - .../visuals/e1fe4e7d8467ebc6ba40/visual.json | 31 - .../visuals/e67c239c21ae83e7d804/visual.json | 141 - .../visuals/e99bbe14d9ecaa286774/visual.json | 31 - .../visuals/eb879666d3e4302961da/visual.json | 97 - .../visuals/f49814b300ce5309d9be/visual.json | 31 - .../pages/bac4712acce8c3ba0213/page.json | 308 - .../visuals/774afda36a1b89ed54b9/visual.json | 544 -- .../visuals/b3be9690d4448d34820e/visual.json | 149 - .../visuals/dc7c75d3684436004356/visual.json | 97 - .../visuals/dcc54904722c3bac521a/visual.json | 97 - .../pages/df5c90f3b0b177923932/page.json | 188 - .../visuals/0d86ff3c408b33001679/visual.json | 449 - .../visuals/2118e5605c2858744eeb/visual.json | 149 - .../visuals/322f84d005813bec6e57/visual.json | 97 - .../visuals/ad403f379beb65426523/visual.json | 195 - .../visuals/afd530570012b6761848/visual.json | 254 - .../visuals/bb14519c169c252737c3/visual.json | 97 - .../visuals/c4e079b7046983b05190/visual.json | 195 - .../visuals/cdf44faa4608b9a974ea/visual.json | 114 - .../visuals/d2f442f34b0a06e00e27/visual.json | 167 - .../visuals/e209253e2b00405088ee/visual.json | 254 - .../definition/pages/pages.json | 19 - .../definition/report.json | 81 - .../definition/version.json | 4 - .../.pbi/editorSettings.json | 5 - .../.platform | 11 - .../definition.pbism | 7 - .../definition/cultures/cs-CZ.tmdl | 721 -- .../definition/cultures/da-DK.tmdl | 721 -- .../definition/cultures/de-AT.tmdl | 721 -- .../definition/cultures/de-CH.tmdl | 721 -- .../definition/cultures/de-DE.tmdl | 824 -- .../definition/cultures/en-AU.tmdl | 721 -- .../definition/cultures/en-CA.tmdl | 721 -- .../definition/cultures/en-GB.tmdl | 721 -- .../definition/cultures/en-NZ.tmdl | 721 -- .../definition/cultures/en-US.tmdl | 7594 ----------------- .../definition/cultures/es-ES.tmdl | 824 -- .../definition/cultures/es-MX.tmdl | 721 -- .../definition/cultures/fi-FI.tmdl | 721 -- .../definition/cultures/fr-BE.tmdl | 721 -- .../definition/cultures/fr-CA.tmdl | 721 -- .../definition/cultures/fr-CH.tmdl | 721 -- .../definition/cultures/fr-FR.tmdl | 824 -- .../definition/cultures/is-IS.tmdl | 721 -- .../definition/cultures/it-CH.tmdl | 721 -- .../definition/cultures/it-IT.tmdl | 721 -- .../definition/cultures/nb-NO.tmdl | 721 -- .../definition/cultures/nl-BE.tmdl | 721 -- .../definition/cultures/nl-NL.tmdl | 721 -- .../definition/cultures/sv-SE.tmdl | 721 -- .../definition/database.tmdl | 3 - .../definition/expressions.tmdl | 214 - .../definition/model.tmdl | 98 - .../definition/relationships.tmdl | 48 - .../definition/tables/COMPANY.tmdl | 36 - .../definition/tables/Company Encoding.tmdl | 44 - .../definition/tables/Country%2FRegion.tmdl | 37 - .../definition/tables/Date Ref.tmdl | 2851 ------- .../definition/tables/Date Table Setup.tmdl | 367 - .../definition/tables/Date.tmdl | 1474 ---- .../definition/tables/Dimension Sets.tmdl | 213 - .../definition/tables/ENVIRONMENT.tmdl | 26 - .../definition/tables/Emission Fees.tmdl | 131 - .../definition/tables/Employee Absences.tmdl | 108 - .../tables/Employee Ledger Entries.tmdl | 127 - .../tables/Employee Qualifications.tmdl | 43 - .../definition/tables/Employees.tmdl | 213 - .../definition/tables/Localized Labels.tmdl | 230 - .../tables/Responsibility Centre.tmdl | 65 - .../Sustainability Account Category.tmdl | 48 - .../tables/Sustainability Accounts.tmdl | 70 - .../tables/Sustainability Goals.tmdl | 404 - .../tables/Sustainability Ledger Entries.tmdl | 830 -- ...Sustainability Sub-Account Categories.tmdl | 67 - .../tables/Translated Localized Labels.tmdl | 1608 ---- .../definition/tables/Working Days.tmdl | 40 - .../diagramLayout.json | 510 -- .../Sustainability app.pbip | 14 - .../Translations/LocProject.json | 6 - .../SustainabilityApp.cs-CZ.resx | 1526 ---- .../SustainabilityApp.da-DK.resx | 1526 ---- .../SustainabilityApp.de-AT.resx | 1526 ---- .../SustainabilityApp.de-CH.resx | 1526 ---- .../SustainabilityApp.de-DE.resx | 1526 ---- .../SustainabilityApp.en-AU.resx | 1526 ---- .../SustainabilityApp.en-CA.resx | 1526 ---- .../SustainabilityApp.en-GB.resx | 1526 ---- .../SustainabilityApp.en-NZ.resx | 1526 ---- .../SustainabilityApp.en-US.resx | 1634 ---- .../SustainabilityApp.es-ES.resx | 1526 ---- .../SustainabilityApp.es-MX.resx | 1526 ---- .../SustainabilityApp.fi-FI.resx | 1526 ---- .../SustainabilityApp.fr-BE.resx | 1526 ---- .../SustainabilityApp.fr-CA.resx | 1526 ---- .../SustainabilityApp.fr-CH.resx | 1526 ---- .../SustainabilityApp.fr-FR.resx | 1526 ---- .../SustainabilityApp.is-IS.resx | 1526 ---- .../SustainabilityApp.it-CH.resx | 1526 ---- .../SustainabilityApp.it-IT.resx | 1526 ---- .../SustainabilityApp.nb-NO.resx | 1526 ---- .../SustainabilityApp.nl-BE.resx | 1526 ---- .../SustainabilityApp.nl-NL.resx | 1526 ---- .../SustainabilityApp.sv-SE.resx | 1526 ---- 209 files changed, 97933 deletions(-) delete mode 100644 src/Apps/W1/PowerBIReports/App/.resources/Sustainability app.pbix delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/.platform delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/StaticResources/RegisteredResources/Microsoft_Dynamics_365_Busines8275439523005887.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/StaticResources/SharedResources/BaseThemes/CY19SU12.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition.pbir delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/bookmarks/Bookmark6746518f3cb530dd9a83.bookmark.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/bookmarks/bookmarks.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/visuals/12b02069b436c1320c93/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/visuals/25b3afd7ba351eceea7d/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/visuals/5e30f581647d7ff912d9/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/visuals/76ec5578c61d977f696e/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/visuals/8dc8daad5ddeca3e785c/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/visuals/9c13b672726c31609ee5/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/visuals/a7f6646996a0e6050128/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/visuals/ad11820795f420bcef0c/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/0b23e0ca6a2516847ca8/visuals/b2c75a750c2a8c36c351/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/visuals/64975b95d161484e36d0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/visuals/65ffcbd21962ea043e30/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/visuals/7a779d2d929b1d35db47/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/visuals/93bacbe141e58b021535/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/visuals/a3b8aec3e322dae35928/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/visuals/ac9ad629531723bdb923/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/visuals/d05666e1db09c2043a9b/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/visuals/ed4f7394ec3a2654100c/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/1782621aa0d0e087ed20/visuals/ee089e908c9c6d34270c/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/282ec7e112a110c2addb/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/282ec7e112a110c2addb/visuals/b96d4fae5d0307b47a93/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/282ec7e112a110c2addb/visuals/bebfafa39809830100c9/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/282ec7e112a110c2addb/visuals/c707b83080001d683080/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/282ec7e112a110c2addb/visuals/e21772e7b67996540782/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/3d1fa8eae4e214542edd/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/3d1fa8eae4e214542edd/visuals/0aeccb3f870e8e483517/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/3d1fa8eae4e214542edd/visuals/372f0797e3100d0d0978/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/3d1fa8eae4e214542edd/visuals/3e640e5016264217e3c7/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/3d1fa8eae4e214542edd/visuals/947d9ed811d3bbd648db/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/3d1fa8eae4e214542edd/visuals/e501e570b01305e74e54/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/3d1fa8eae4e214542edd/visuals/fc97c3463ace847120a0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/0b21391e9601a5b4104a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/0e85aba7aec847702d80/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/0fae04b007701de44644/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/1dd0d2dd17952782e276/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/31204d310751922b073b/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/42c124100e8d70980a8d/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/44804b807003966e5d54/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/4b379e7fad37db2a59ee/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/543eeeced7b9cd091bc0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/60e9cbdd5452ec71b395/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/6b624b65b087b15590a3/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/ac3cd1dec0ac701a7941/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/acaaffd1717925b107d0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/b0c0b3f5164b6a9072a0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/b99a0f99e4a7b391ce10/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/bb45ef10b90b4d090015/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/cb933679b40a2b9a7d20/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/56c99409880d5002ad2e/visuals/f1b9c4d42d3760400d4a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/6305c2799c0d6e6072b5/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/6305c2799c0d6e6072b5/visuals/053fee37eebc9860ba57/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/6305c2799c0d6e6072b5/visuals/182bd83daa6a777e6a2e/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/6305c2799c0d6e6072b5/visuals/376fe19892261ce57800/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/6305c2799c0d6e6072b5/visuals/ac83c738d74d8612662c/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/723552ce7d04d22dc0c5/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/723552ce7d04d22dc0c5/visuals/a941a7d4bc07065a5591/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/723552ce7d04d22dc0c5/visuals/c1f28a24220a1aec00e9/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/723552ce7d04d22dc0c5/visuals/c2479dc3920d05c9a61c/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/723552ce7d04d22dc0c5/visuals/ed871a07b4c81ba68350/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/723552ce7d04d22dc0c5/visuals/f39ee58f95259118e3cb/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/73714a8f07753d4a87c6/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/73714a8f07753d4a87c6/visuals/6d46382d469a47d23167/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/73714a8f07753d4a87c6/visuals/99361670d4a51b0b136b/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/73714a8f07753d4a87c6/visuals/a9625a5f4d5213cdb400/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/73714a8f07753d4a87c6/visuals/f2e17b5dd0a7a5083a7c/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/ReportSection617fae23c8d7b50d6d0a/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/ReportSection617fae23c8d7b50d6d0a/visuals/0980f0186ec3976e906a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/ReportSection617fae23c8d7b50d6d0a/visuals/41ec9042caeb2e980963/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/ReportSection617fae23c8d7b50d6d0a/visuals/7783e9773b1d38eb9361/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/ReportSection617fae23c8d7b50d6d0a/visuals/afea4d233aea68eacd50/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/ReportSection617fae23c8d7b50d6d0a/visuals/ced57bc25ed03c0dc826/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/ReportSection617fae23c8d7b50d6d0a/visuals/d714a011086098594cc8/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/16e67ff3f295e5b76dc4/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/2bc70531cada7c508da0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/773a16200abb9bebaa50/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/777ba1a3a302e984802a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/8b8aafa2b845ddb65ba0/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/8f5744027a1dd3639ddb/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/a5518c0876a55c719ab9/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/a8ce5c3fdda70d632ccc/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/b6b30b23f93394219025/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/a8f44c103130e497d67d/visuals/eab39c328bd358f6e236/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/04c0e9fb2917e47a570a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/0658da7fcc2d447aa8a8/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/0c14ce4ba396a9753c90/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/38977ba132b55e90bc11/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/4293af50bd53e0272e1b/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/42f5bb40cab14391d144/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/60fdc1d054b4d90e4074/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/78d8dc7a89d79dd35775/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/879a6b80553100520daa/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/a3189eb30074d94bb794/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/af294d70931ec1967154/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/df15c95f485e70612280/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/e1fe4e7d8467ebc6ba40/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/e67c239c21ae83e7d804/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/e99bbe14d9ecaa286774/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/eb879666d3e4302961da/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/b5e269104115da14c7e4/visuals/f49814b300ce5309d9be/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/bac4712acce8c3ba0213/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/bac4712acce8c3ba0213/visuals/774afda36a1b89ed54b9/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/bac4712acce8c3ba0213/visuals/b3be9690d4448d34820e/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/bac4712acce8c3ba0213/visuals/dc7c75d3684436004356/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/bac4712acce8c3ba0213/visuals/dcc54904722c3bac521a/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/page.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/0d86ff3c408b33001679/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/2118e5605c2858744eeb/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/322f84d005813bec6e57/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/ad403f379beb65426523/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/afd530570012b6761848/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/bb14519c169c252737c3/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/c4e079b7046983b05190/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/cdf44faa4608b9a974ea/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/d2f442f34b0a06e00e27/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/df5c90f3b0b177923932/visuals/e209253e2b00405088ee/visual.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/pages/pages.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/report.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.Report/definition/version.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/.pbi/editorSettings.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/.platform delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition.pbism delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/cs-CZ.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/da-DK.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/de-AT.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/de-CH.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/de-DE.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/en-AU.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/en-CA.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/en-GB.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/en-NZ.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/en-US.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/es-ES.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/es-MX.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/fi-FI.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/fr-BE.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/fr-CA.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/fr-CH.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/fr-FR.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/is-IS.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/it-CH.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/it-IT.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/nb-NO.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/nl-BE.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/nl-NL.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/cultures/sv-SE.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/database.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/expressions.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/model.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/relationships.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/COMPANY.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Company Encoding.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Country%2FRegion.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date Ref.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date Table Setup.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Dimension Sets.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/ENVIRONMENT.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Emission Fees.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Absences.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Ledger Entries.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Qualifications.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employees.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Localized Labels.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Responsibility Centre.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Account Category.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Accounts.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Goals.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Ledger Entries.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Sub-Account Categories.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Translated Localized Labels.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Working Days.tmdl delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/diagramLayout.json delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.pbip delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.cs-CZ.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.da-DK.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-AT.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-CH.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-DE.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-AU.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-CA.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-GB.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-NZ.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-US.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.es-ES.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.es-MX.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fi-FI.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-BE.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-CA.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-CH.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-FR.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.is-IS.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.it-CH.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.it-IT.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nb-NO.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nl-BE.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nl-NL.resx delete mode 100644 src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.sv-SE.resx diff --git a/src/Apps/W1/PowerBIReports/App/.resources/Sustainability app.pbix b/src/Apps/W1/PowerBIReports/App/.resources/Sustainability app.pbix deleted file mode 100644 index a729166325f0469c437971f8eaf34ffa9457ddc0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 738945 zcmb@u1yo$m(l3ex3j_}k+=DZ?ySpSna2*K2-5DS_!QGwU9$bUFyF+kyhc|Q1efjSB zzxVE1@80jX)@JYNu3gn#)m2^7-Gj0m>>F$-C@4fII(Ijni^F%sZ~yfP3JL*=2udAj z?_h3YEhB>tCipiX)exwChJ%9kdFnD}GZ{Aqm;#KTpp^fE*NLR;2s|_t)K?fNC@e59 zZ7~~bN1(N%{%1E^po1=xtCb~$FQgg*2q^@A`KGJNDRlu*Ug%ZI3rE&{(7*8^^@exm zk)5b-I{WTqcc;&SBAZvK1L-2_+7p2qhp~q}7@z7o=Pv4WWPJ4yjJ-65d>1!G%2N-F zeL%0JdIP?Dg^F~hejJDW8xlEY=Yte)vG9k3T3z~t)@z=Bd6RU<{dDyZK< z*1P(Rlv883MPpB!5+Ho0^gw(a#SpGEo2sv>qZ>z5-)Yc}ZsWI_k6tq=R!!m=hGYFR#7G4=Ehof;D2Ypx?fL5Z3}LA?X(RNUOq z%-+yS-q6j)$q}MWNCgBCA_)F!^H_JudPx#}Wf$fdp=&H&*4|C?hOs}NHbpx&OGM?$ zH-?5U*i$5}*3R$A!))}2H4fD$OqnT85$S}&m3J<#&NoNNnmeiY6Hf-Hd)(}=Da)Sh zxI3*pY(KA_anr69NSGr9Uu%`!#kW}<#5q_UM1SQyt<_+9dTKvVUyl~T&k5waW0h?) z*77sE83um7`5~(?O#d*Xabv!JpuUutqJMSkgBlr;RK7OZY$nR<$xH4Txi@vt&S0f8 zT7GAyb?H)F)ourH`RxO(>SboEi*CyGZ#6q-emw4rEKM-Z!Vq>!>YwkERO$U zm~>gRo7On8)GYls!4;Yfwna-fNo~ZA;N3hJO{hE@| zx@?j+o#PZ&{6EJk_Puo2oK37(aQG73nbXL1sw#do==ROhRfn1t?buPZ8l$RC8}B=4 z>IAGadDUX<^V{qPcUY;CHZbX|cxUaKf zN!P)}{0l+s7>4!Tr#TZY4JEO=49tGc)d|ni@vUMj<(R?b{=p1CtP!UgA z5l9S)+%@?|b&w8cN*rt9%zhvsRLu76U2Ytcr(u*fOmZ7Do&ykx6+Uq<2>T|rYB@B1fr zya|?P=jSxGxdI}`ca;C)d-8iS5I!uv|1 zY@<1%XoxUdNi=P#4kC1fRyjOWFJGz*{D!tDR>^~Wg5H@}^HDK-ELdt)@>oVK@<#_T zgK|`suK6$b9lqpIG(;wH}~x+3t^j# ztoz0^dY9Py+-#Vti$5VpLhkgM{+6gIaUy-x2=g)9V^ASQ{MOX^f_`R5mPUUY`v;2G z*}$S@Jn>Z+_LG<;H&l*Tcy^5fn`b>Qe0P|me4dQuV*{6(tF_Wra>!0naB-qR`hJIN zaqo?>gQ$0^l`T@ctHBFtZCDdu!CVfoSeUy4tN^)g2bpaG~W?n%~T8TE~aVCf~D~n-kUVpY4Le4+gU|EbWTgXE>Bc-l^(f0Vw z9@ImAY|C+|mM5#DZ>*2=qQuJMX<(?WzRuPE7Ej|83FA_y>0^h+d%a0=k_a;oDQ5jG zT#Bz)m_;9igMv8MBK{ul^ys#Lpg2T#9aQM3U-L*2 zuKLjce_#E6G?K2KYF8PovA4q3!H($tCh zY^@q+dQtVTj?aBa>F35WLRYjbvB+)+>7LnLCVn!Fq>`0gBj=z!Ik-Wc8=&V%2E1 z^ig57<3-c_iV=?|Y+*WMX^Ym-(>7*jPEcPtFNFI$k+SKwtGHhGmGY;X_GPOp3;Blc zY{r2js$NS5epG$+E0Nyi`&Y2JO4P1EG!d;D)1f`;e5V$%NkkE=Q`I!R26HO2#V(SNroe@LOJ^a%}iS_$}^Ea zPNw{2t)|}ApRYWj{b%kSwDU(N6`cMtfs<-PaGv-H=;&x}ZRP+;5g}y|KrS71$+k4gA}<(nd&_b1=8 z=ZEi;o-0*p!A4d?v;+(BCVt6G`zOm5zZwk%vh&ZMt9BSm|LnB-9wt^z@HwbxD9_ZM z3?e(hXId6FIy?-Q**G{p=P~fEo}TKE%~>|n9Vmh7Ut9T&e@C%66rA8PY)k#-TR`~F z-eu2N@>qjg-T}TKy;A@>8k!h78bW#pDT4q~55eEwm6$3UAsR~qX^d!0`%U`I`e851 z@Z>)@`qWa0(TX7{4}YLZ9gIRW`N^6Gcmq8^2tdneOCp2qr-Pa#O`kxiGH5MyU-oJ7 z4AiN78>NF9rSTS9<99BO5t?)hp0ubVJ_{aH)rarIQJl~h79akRwx7QyGzEgcWf@~a zL+ODVtO~TXv3F$t)TaImrg036)hTuk2_{{3wYA_)SBR0#g6;W%B} zW=T4sZw)u;l+?8V!+^6Ss%Ntd*KPg1Ch7jW#nme#_)B5A+L3U|x7fhGmA%t8Cz=V~ zpVG2%RDJe3L(q1AUMz=cv&OQER&0j zWktG>(PQX_d-ad(4gzfthx6O0y_uwDgQZ{2OYi4cc8xWS$mJ>IcaU(ih;aL00S24d>O)ewLuSs3^Bt$;qKB77(KeM1Ehdh||MT9*bo&$c6 ze-^y*>|4q68melAik#!@zplgLD+D!B9n771;uRR?K6swkIkws~8HG;VS$<+$ptf?e zKFWP~8lP2&tMejW`r6VoCWduAH_LEt6FY0f22k;E??72@Bf=jRzFsKrabhP4H2vbr zzg)*ppig4AMtW$KM0hQQoZK_+nVQB&SXN)4O{@p%;uJmEygqlrDy!e^kr%sUc3t<^ z7-J*vmLrrvx!l*R>_`%tDtLm!1eFsftsM8Xkr=B!%?`^Kr{=SbwjNY1@Gqt4#9rV^KP`~CuAkgI`COR2eca7D=cC?czM=tTFkSBQBnioFj$PA& zmSNC-%!aAF5K7(~`w1Oo`g4#zHG);d3VbOIj(wK7$J$9f>mxtwpc$b76-eAq1>E;N zAzDb@)esJnZ~14suMQ%2@0Dug=F9*S!Z($`ziaL)lu0e zP6+wZ>^qG3acUNnN*fh6Y27KbtHEzj@EGiJ_R~GU_s$&`n{<0j>aeIM3yO+Z*`p)# z<2f$I>*SxY?iV_ExZtB~q_>sL0_$j(-P!E{bl9rW$F`)<*ScSsSOOIHAL5FcU{kOM9MyxAlGO4 zZxy~m$eACzs6o7Si5>d>b0pZL89jayR)&|+YhWtLt-DH>I_au%LLomu&_z5H3(0I-eHsO zpkb31GvmCCI)i%~brEz-brv+IfA$e9SqUtW!~$GYf%F#r@?#x6u@J()SWDlt@#uk+ zeUgN%m0$ROXPWyWQ1gRb0a79o+?^@62%$r!d=Z9ruHW4Q>pCSh<{8qoe>V@T3V=;U znF_dm^H2mj=GqAIE)5ZDa(nOv0$3ITxFu#7kN@NG?8C+-IarZKV0t6(4%pap+ri9j z)feu>`>tIC9AB93C-8N6+UPG7hV}TdR3UioV z5BzYC2@(v+9609Tbv2l7V>;jULy)`&`+~yaC1D~&{75}CG2SHt4*Hx;pT7_mKVS#! zr8lRTAbeMYIFj!OlE)V7zDOWZXrqiySgaRHNITCBe88-I5hUk^o-_@hRoW1U@qV3t zhm?Vbna0mL|We{ED+*i?pAXTq-2{)t6em+vm@TIK3inX2GqVHh5H2tU3HffGO;vLU8~lgqfD`C z`~3!FY{Y_uUad?Q+m`XT8n0!SXxSH?vCT8}kl2-!ElkQ!H5cLtHMT zRB`EeCiKd|t@LvNDEJ}vB&+_#PbUz60wLPw7YsaT5|TPsdOT-p`)waF06Nx6IWx zTgTdkRqr&sjsT=w=H#q%&C|y5qFhGvi||_ntBNTc+)L*PFna`|7Jp zn=$qq)@Su4(_7kx#fFK~KN*NkHjf5wsU}#qdvE1cePJ$j0VTFC`D~#WAUYDbiAhE_k&jt+BoAW<@fvK zWy5}%i9kUs>@T0i&}t--hl_I~R?Q~M!z_2HeOUEp;br4mWvRn@p|Xa9TKc_l`C92_ zIAyi=l)s<#t7WC%mDN2q=_saEQZF!+iN4pq$dmzdm$GAz6Q2rSH z_wNCzn|IN5=ahTb zkWQpfuT^ZB4Hz;l%$l7-4w+q_W5y;GvlY<*zeHAjQSq==zGckQ^{pkSNhE-X*~gfA z+>c6e7tmFYCORkV$#}`LxIr{)l5X#_uBK$XU8)4_98W7Alw^nG8Oj`U$zo zQq<{Qe+{QW?u2EGgM1W}r6@+sQ4NwMqH~((^n%<9r#H~hMLZi$y@OHsY`fBg=Saz0b^7y?J9z>pEZLbjq^2r4|t{xAeU7n)3xfWwnKflY~ z(QmA=3~Jqh_?@v2l~YZ>%`m?g>Mc0Few(NgiCd#b-Q$L4W``e9IRvCyV3tv#1UiSU z)tBk0JNepcmVH-aIwUL7NwC)(1bXQw!ofbPKFfEj2VF1zaA~({%bzf-hZ=BS(IbZE~c)JlfRbs+p-v0cQ zyDCx&W6@0gpmOPugX(5s!rnM+GsXPgLKv0KMroVc{24HQ}xUiK(T_z zB^Bq~r2bvmP=IE1#4N03+n%d#VcWjLFqh0pR)II;i=^XG8TEQ1Ce!6HbNAYqH|MIo z*3y_{@1QrQpf@1Xl(~IPdzTP%vD~`**fYtax) z{8JUvCrezfoB!t=X=sbW+eta(KtW$o@pI(mLiKW4v3{z8a;P4yd;T68CIErIz;(R_ zRq000XNvQ@?_B`VG4iW!hFQjS!$Q%M;*fIu+6O|z&iFNR`Opi#!Bfj`kA}~qR(g7r zi8F;w0%Ilh-4!F(ZKxE*Plpsw^y1Mj3b=9i)!v`0hw4O<(a@CmU4F#iJSh4e9;eSg zxi{-5KAhi|KZ!|gEa>f>wsYYN39d!GxnJ2uP!sWbTCxgbeAjG*pwljdDC(19g6E>~? zHj_vDD4V+5ME4K9hBMu#nV(BDTmph~T80*5W&^cN^jC6%hqt=1vF)wRtXItT3yLQv znyOxgX1{FeGN@}*)C?@zT|Cju!T@?5%`S(Ji6t9cOt>9hvZ044O%tSFC3IZ`v*yyZ z&*#z^3A>#ZWtCeSJ?*9mOU=%$V%f3_=eSa~N?Dk5I;xXCV6H#ocWYR5zXpMpsd+>2&KJ9y#SspPrT;xfX>9Y&m_#%Bu(dJf|klU)aFs zq%3Scr>0h?y*{0+fN?g8x6^aYS746Mezo(F0#ji)_QDk4{kju-g7U6w5+RVsB*6lK z{8&pd-kBj4%~2z-Q9J+L9A>lgSFPdVL5n&ffLEb*3Jc(FyjH;j${hCMU9@vraZ5o6 zJ3&)KImj_+*@?lp121lu1jVA?F$f`0V45&!CKFA3(fJ+fH4o=>yG&U0=WPvhg<6E` ziVEE4ZIp8T8SS4!!p(ukUZsy)s2nTP8qYy5ykg}`%lOk+$Stl!-Q zOS7%D68H*tT@h0*t9@g(bnmjQ__EfSONwQ%4uB!q=~*>0^xyAv)gqs=(IFPU6r;Z zDvs=x0M(bvaD+@QR1P<-Bz53V*5uNo9d`E7KDcVL^>WSo%bFM3ekQ}l(D zt_B^*kq~sn(TWy!#L0*w;O#HYL$w_j_eoVzhA01qKK>K$WJ&d;ieTCCj6`(7AlEOY ztP6!g=k3%u8`ZX=L)q=rh^7J~m;|J2lu%;m)Pu9$vBpAc00G=NT;ZKLDYr20$C%9Nv6{n4N!_RE%m$*@k- zAgIEs-ylhbGbGV8KEw2JU0-J(YxA~o z>-ptN!lJ{8%ugz!H=c;@dYJzCdZ**^f%n1NdiN;*jR+GDcTZrRqg_xEwn9%yLDR&IC7BWPub(E9$MC)1Gu#HkcW-wIrS0Q-Q%PiP*y6dQacSr zqcRI2 zhDP-whRs`J4$TX`55`DaqfID;8am2)AWlrmJsR7>Bow%a>Zlg4zVNi-&lDB?+Oza= z5Xhsy1v0s=PA?hV!Ye2)lsH`_VEh<=EsqwPQX}M#+n1JQOecS+T{uskM2no6Zye5v zJtEkeS~h|DG0w#7D^X$ZGHvWTy+?b>3@q75o zY9EyCBKck%yDm@`L$hHeI{zqLp2IEUxr8=#PDmJR^~YC?M6rV*Mz1LQIR#s3A}>UO zKsJmKX(HW4np_?6Mi%%X0m}C&Fi~Pxna+XOyigJhC8M^Neqbij2@B~O^QwqX%&{4OS`eL0_kR%JD2g!=Z!GIcQCW9! z`0TZqMK}|?Gf?({4ml<9j`&^LFWlEZusz?7T5FR?YO*aQyWpQ@fAR;K{=}biarnc6 z2S;p(<>#-)WF7?fzDB43{53!F!WnyZE?kApKg|f?I4dv1EECb5`_tCUjJyulpKVh~ z8?!X~jRgmVxQUj{SAzZ8=(nCq_rHpVal@Y`1xxy1idhv5RC2O5bxanur%K5QL3wBj z76K6rL=zr8{?uXp@4hkJ&4%HlEj%=QhpX3hKM^^3>xn6Zo35k_HQMr7(=72v%zCX$ z^s|b@mB{kWJR_wEuaoXD(hO53I z4fs!@*Tp0s1C*zExrx|;R%9U6tZB>T5^TrBadWaGoDlO3V{Vx}f4an$L)2x!sMiD) zzSVu;TdhsU)_|V<&a+3KPQHd@mTqH?UBi@JitUK02s{;!B?0yH(ZHg^P{=wo*N_sPD$0TV(A0pu+R{sv6O za2C|x02GN^*;X-Z7Ev8M4+K;URVfZ~I}>ePbeEsm@*ua<_FHc5U8NLthKaG!3R49$ zA2=>gJ29kym`eM)sD_SDje4j$WPL%(Fsuxu^It4)S=CrK-x7qLcu0lG)gsOT0+3L- zu1G*HGp{-oYrLC%8<+p+Pyk`*7jy7Q!5suBaCiRhp#4uBvj5kf+TZ>_2qA#H1i|0_ zjHoHtEDEEyN)3X9)gy~W%wQYOqv@ixXhUh$)W~Y*VJ(|he>u;ZD|drVOT#-keQO8u z5llS5=SPyc*oH3eHOqE9I}G439Lm3q4kqDM@H6{Mq0_-1OY)Duo%!A18`^^K`NCLI z%BFKC1%a3g-3{L;|J^-f!=FI~y?(3v)XA3ttsDiPuZ7i`WP# z`>71--4@L2-P27=^iCa{6X6)wXhbVqME&1>!S>C7ERM@bQ za#Yh*+LfkQyM39L73rEt0NNqM&u$}(LvNM5iEZ<^7a%P+NKk+QwfG~}5! z*l_dqk|sOeh8XF|ZN5Q|h{p`<UUYQ9gduiMlBgbo&Uwu)@pHM|xejoN#eYuSspIjUp;{^R<3)oUH z(_0I?Co2OUkL3Ta1K8Hk44ldQ>+j!D455Yq@+Jg-N3m6mLd3K%O293}2$2?soV4ZK z>$2~MH*(#-fqe4lE9O)amSEpxWz6R~l6_gNIgCFX+v?h%_WH6tGrBC0-ZW>`T&~oW zbz|DTTf+G476a7VwL1g~qP5T7U+h!s2Sp#U4gjp2iE)}ohh{yu9FyzJ+fX!K%n!|$ zzPN2cd+ZrD@I1E4-JW~hl)GzACvZML>Y4wlIBji9KJp?jhz?IPQQ+{Agllt4#iZkb z-RQ>#m}dH4LbCuv{fDy*qGD+~p)CNRaGezJz^j;H5`Z{ukJ!Kmb|`fE1!$hgRb)Rg zgdMrbq${5g9Yo3m>=w)-AAeZhp6Hq?H;Svy*!`6cL~pV`ht~eUAyaAPqYqP(W-!v! z0g^f*OtVP)PN)?osgh|B5=F6U4h4?lAwE1NO5 z36~KEz=YETVE8Y?{fPeG5o~mXQ(&G#5uvO z#!3ew=VCYG#iCDqb}{dk_;#21gbv>uKNaI4=v@kIMbN~z#^ERey5DHJvhyU&#{wpX zDlof_f8Z`0GUY}~uLA?I*~0ZAp^=QEWJp9fMUkk?L_R04$;XO#6ndP-IzxSmKQ1`t zV0SS!TRPEOC{uIaU`$}&8yddGT$q@Y2xkBWB>0G6|y4yUZ zcAODey#vPE;G0s4NJwAx&j8iyH9NiF^s$L_zO6(1Xv%%v@psNqC$Y5{c7_#koosbS z<7PzWW4;yx>@Ejvm8~ROA~UvUdGC>&2Xl>??aHa;L@j5Me(Fw27 zT#GFaJjUTY(hv(*PBE&1_CJR8<5UxrAPmZ8>n(2$KHzH$TltnFmv{Yu1|m;z%NScG zB_as1*BChn`@uf(dB#~CCWy;sT=j2X6-B4AoVpBdv-0+c6b$usFAVO2j(e%rh$AGhok;B zD7b4-W_q5oXt9XYFWIa7w$stJ=F_wqugiz{tp*#XI3xIzjI9Fk#?{MbJm#n&LNzYq z=ol^P>2Q;sObgmNI)~$r=yW*uKLD5ScT}U369JvUG8_5;T_~X_KOdye-W5xy@ZKEt z7ISv3lg&OTWrqf}1eBdOC+NB96U}51eq__sjnmsH;FGj4@J*~+9VG$#Ikr~*$D|GM zpG;!oP`LL-vgL3-eT(k2MaA&%qmu+q7#MVFZa2#scRIkO$zQU5OZWRQtP#DzBbj$v zn%>xxap@4j?J_t?s*&*3$kj%#jI!5Gr(%5k1Ebz{v4Y`esRD*?EN6i)*sdz3<0{l9 z=vWa%x7pjJNE|*Mn|`)@PunZ3*_0x>y)*qZMa%Ws<>BG$Uq>h@e_Vn{h4soAuirHE za+onAZx#@=u)`F0TCP&#mz_7{Tlk|tXV7Q{-{spm)oTW0tc{n67Js4jsKB7ycrU=w z&y3ilT*g>A4PyVKa_F(U4VzoV@Y#QjMbp|i5wigP#?eU$8*#)J;2dG{CQWwqzj{#G=Zv6-7*B$uUPU8YSce>;5$U>Fd;V=OP0%411!qXYe1Xl$;YGZ-e1SlN=<) zPCkQGe;N)15%jJ1Z{u^U72WdURggF+INmXZ$M6L-AYmeMM8YU?zhf_ujh&He_|qMa zQr<8ij1ot=j_EXR?VMVcHEz}9z%NwKWEeW?=z^R3tX@w99cZ<@W^sJWmoHr`?_Kb| z+2xH~Q`KRDzP0sn!BV-i%VjCj#koI2{#23l9DhMb{+0W4s5pAY9^S7h$2?8LdPKv~ zZz9~y3J#GYZ;okvYS-o{|Bb^7qar^SIc9| zRpL@0f)DM_LQstOrrm)aQ6&kV@SA7_LRPJV7A0$a9L)$So3Rjz@jMjOfQFPspyf_E@8ke;Tuh00JSn#G^iRaUz zifPuwN}J-@mqk9m(Mz%mKn+jq?EV7mf6igf3@+%@;0eCxzb&OO;bLJo1hB9GxH-Yo z83zx$u`%~QT@4})0*GV?{<@k%l!$c~DL9RbwnrE`U=8SmH#XC7ny_AEvWGE}mNy}I zLurM-eFDdq&}94qVgn^DxyJ+VV{Q02f<05WbrEN6SP~9$+>PVKzFViC@1QGNz?6ZkJ9BC`09Qd^}oNgVZ1o1#1;@z0YZ|W!%t{ zXFbp1Owd00Cvk$#WT7o09hwRJa`6hnT_78-Kcsjg&pp09iA4~FAUMttSl6;nXJM4@m80>ACBIbT z_8+UjNBF!JUf`HzhWy`^hH!ClvjKUyxY&$XOxU=AMm%hsEdMkiL>dGT$q@WC;kNp} z(-5gmP-V4@7m|Xk_QO^cYE1eZ`wz zFo&3;d*(ipD~S<<7++S@Mf@%+yRlBU8INHW0qyWR;ykx#IANW}_zyTd^Sl*7EfMKf zxeq?H%y<_ z&;29xy{zDIfE#%U;UdR4ANd?I^SuqN5*s{6kzB!flGunlQ6qyG)q0Pu)tSjlWoBFy zjCs}frI2VDH%r--Wc(9@K5~C>3W6>?>?|per_&j+5Qg1o{pM7`XZcI{qIeO#p1R|^ z$OoZ5)jYei)mrx#%_y>0CD8l0ef6Vb)o4VArzP?+-{Q~ebsfW?;-7x1%;kd`A{5cG zB;};bgvJS>*ThL-GffHX>S^R}Oh`Qk7rs{&BIu~?DT}mf`H+tR*7_Ny>ZdxR2=zUw zb5l3YE)ICdE^v&39y+|Tv3hZvo8>KjVf=uLN@ZgOR77ZvP}iI(emElqx-9!}hWIE! zCo5TrQspjF%N}}U30K>eSTuwlhOFnrMCZRT>x3_VDbQ@k*jMtW3%TwbX`}o7o{-DW zW;Sy!!wV@MeM@7-H#Th33f~c*@qiQG`nLbrX{j~g)FrIG$eQCL=I}ni*Q{z)s%0eQ z=_j@dN%wQ>HuFD%8_cBGAMp5WM*Z*d3}c`P2bYmCD+ka7z-A0EG3I9F{HJF?q(K0Y z48ebS#{WprA)e6$@r=b^%C5!$>O9th_w!xsWOI$|@O=?Sa&jX7@(dx_;;IN~>3=2Y zyUk-a=??XcBGOyAhAfn|RZ{pYM&E8ch5V5a#^iz@5$%28Nsd3OG^XxJHp;qOtys zffm&eosP<@%Dft_1{tUL-^K9G8dqB#iC4IvP2AuWti%fJ8L}2!t$FkV6MQ~yQfzqN zErEaEN}spQR4yf{xZQ^Qi<8q&WQ0;&C-{|ASiwS0Am_L6$U+H903-ZqxQ`J)KQ1JH z&{a!?Lo!Y`^4Flr-D-n7H$%Tl%S5gpuQt7h4Xw04!P6Y6l23}fMnZ?qYmXwFaYpTs znWR{}IlK_5merPyOfy1xBj+f4yri;!6bg2(-&zv}kuTsq|K~hC1>wfgTO*3g_=q@a zmf$$$516s}Cz>J!gvP8jELcdNR9iTt=@_ttkE}MO0r1t#MM-34frUtWNc9ETMw&3y zU-`?(H|ORX`t?>RQfygDDpvqzk$wH*!D@El*V1r}C|}7X(leIiu2#!nxPv3Hs5qOinJm(u{UwUq{8OS^ z4R6W(&r5VqGi_fdZMJXq8m3MrvsO?amO8E5>z9C~`rfCSsHp4>)>|l%`HWv(qe*7Q zKIB+grV?EKV`{1zGTlZ7?<9JVLqT!=FBU8SMyzZ=fUzN`Au9(9CpSBnu_5<=F8n|^ zKmg$e!C$93PLZ?O;zaj3g?k`*liL?QQs3YDezjJ>F;!xcIJAfO4sU_Maw01(ub2F_ zHIBgy>*IlSR4=CAgUK*T(6r|t6powS)Aph20knAC-&#tmrm;X>o8tPK&wli`{ok^Y`b4Xjzbzzl>szV2KWdw~*=f!!CNAE^SJW>oyziz*o4XAk z;~bd|zgKE|5%83j+e1lM#~tD|xA$|7u{b>dVj7V1$!utFbi2_Yw@ZhPg`cVGP!05@ zQ!bTgUB9RZ!_X^_Vhp{97kz_c%H?K;mm_zmPo?dsq2v0ck$K8#((Q|G`H+~MYT8R{ zh_YI9AHOp7wM4@YoY8Do`6U$QL+m!w)=OK>Svx+yAc?J`@td8t^_`JUUcqitk7bAW zV;$h-`g%q?U)#w;^7N7dK~rP7A;zSh>_lUUe&C^-f1c$g+kLK|>)}mUX5SZdLt0Ei z+CYc?bQRecVw^jtny-;#Sq!$>(3d)7J9!dmhP_|WkT0BY+FgTr7q@TbsKo@*2afLq zsb6_pIPTxhrl)Gxo~rf}Ls{kCD7zxwbcTM?D#1)TQW`)1<3;lc#^XS5q0j2H_4|z1-CpAp&W+uaRKOemJ*z}u}=;J@gs2<+>5t4lmlXJMp{Wanw zu+#^ifv`;|+c0Yiw_u)AGmkpdhtV7VOP<#9-Ny*haQC}Hj0?Ay4~>;%qDBO|oUXrB z@!9QqWkZBj{*?N+#rR51WVqf>O*S0qSV@i72>X2}XV+j=LV(Ms$2q2_b;VW)qrh@U zh!6LkTPMJd!x*JWr;zzIBT7pB>j3up9Z`7h_XAP^+!15J+jWF;ejS*(q+QiKIbZ0v zvRi_pYvb~Gq2pTAgz;eYWqK zWB5pj&e*AH=+>m^6R`T3yVtZs#V)+S2SYqRR~1?OGp{Kj>|s7Qm)M)T$3=)dqN2KZGW2t_<#DWABKTU zCBpGbJw?p*$UkDwR6vnsrl z>0UgnK4wS3Tjh$ACvvZOc)vW|FL=B02ssem#&#p+^|v}Ni_u?}|ue?ASN0 zFQaUwrJ!0T>^CCU=}^g3gN_Rg3^JvdVXj^2W}n??uvbFx#6JvW9r_uuEHV1Q*|u*w z+anUZ=sV;WyIJ7k2tcb}l*RTU)=fRBL64@6EH(m4auAOk>BCt?2nWe5IIRNAm{L#{ z*(WS$>h|Z3(1LfIiE)vXy*JuiwC1w$D^I2yRMWAIB{eCiG+1Rf1x(J{^gzk^9BYSH z-wE=@SF5C{EWQ<8ZufIG;yBS)4|tgvm?}9blsIgHp0O~IQqhHM<*l{FyHkjvzsX)r_p1Q1~m{B?_8YPvS50BkStNg|(lN5cpxc`f^Z}85%Te|GHW7~GewryKaY}+Kj62svd*d6RcBW{Wq}*?2PH_Wq39Bdwzz*f&MDBUZ8-#GB+rdrVX6DVi9;=J(Gn|%t#4ySibt(KVAb}Iyiv>pj$|cy8 zhZ?WQOt{Pc0!h2SdVLbzl(3Y$r9P9ixV1{TtwBY?ev?(l23P$`fbkS~{HF3l9*rHX z44{2021_E(Zop70!x&tB>~b`AmtN){s-gf(q)#c>&YU64>=ht>fvac86qlgP@y3!` z=ctw#K=}$5q6*mk$T%2Oikq@|5{=>VIvXi%$-X4T*|72TSQ86~OQGBE-xhWnUp%`{ z9fZ`^Xq{Ui%=6=w^aZv73`xwPwNAbD`kbLoufT&+;2t$MzA1UV?#Dmy;))vqi0eWQ znFWgb4&2WDQxG8zvT=UPtp$ig4;oeSUxO@N#X9)7jJceBeqyO46_cu26d)jLtffx+ zPchIO8K!GOICJv16sC=yzW6grtKzG?$!@Y)yW1Sxjx!2d5rZ*8_!9%L!wiD$%Iso62EuPOjAZv&v#dw^9@b26-K8KG?~EKI?Ys)- zf2%KG6L*_V-jyz)+vfVTN6${Wp}f?xa~DN6Sm)|ry$6wPb&9kojgAn-*ziz9;#&LO0kq6|<7k{Mx;GDAm~B$bCcYAf`!%u^X*Ps6-fvVZ>>_qhu4y z5Z&lSk{Ay~lNos^#wHLRVuz<w(mi}dCKjciLdo}W0aJdXN{o1Qz)FaxDqM!nxtQ~Y8M?r;Z~aA#bsCzy}p zdf4~s!t7wBn5;a1;JalTu@{^FM8tVaVFslNu=1y^YOuINMT~A!3#sVntXvaw!XO@B z#QGx#bYp|5t2K;cZtC0&r~!@jJplXyH-Cx&iE1}>LUX~suh1ec7TG{yI=~MF)70YrhenFK%N)l> zjdHn%7MiiZ5ofPv@h#1wp-PcWxsWH#HK#=gdv~yHtfB1yzyBbD5eKdQVu#}L?NyOR z&eL@&<1cufjJ$^Gn(G}1{)dQWu zCik0|_A>kwmQrbLgu}?^Jm&-nQ!T+N)ODJi(_bqBoE={eHR}H$$fN+WiBi!3*s`z; zRn5hNoDgXIXuquL1Lk{MZO)t~2LYIl^Q?w^p~89HeQ=1Je^G1@8x1}#gHo3AW2|r|aik!;(JkJX~K1qac z%Y#eh6>bAzg6}WWyT7ev=x|LSO8dB9V;@ub|KCaL<2}`gg@ujXh?N2G(cCm)134N;fz^D`d0H&Gp6 zB95QP_oxsop(}AsgcCtMnK(_(Htwy>HWi?}P|M5Y2yY#B&n&}L4Jd)T*F(=e=`tb+ z|FG)%afJcbUwdd;^o6noiZzA>&rzh5^CCzspr1<|e#CrKkfBJ8CC40X#E8wPdTQ3J z`&B26F13(^jTZ09(V#E^kL)I6Repbaos}Td&RoT4?zv z>O$Xo)z4fQ?zBi!j5TOI5#56CH5BPK%W&<{soYBz@mi-q)*XH&rdDD?o{ICzN9`wz zONE_3*jtg+<1nuLF`|GIe}p}uEh9lOzOBBBUzOYVC?-tgp|APe!r3)pZXZp+sc}vH zzWm}$DuJX*V>_AtYd`Cf88T-hs0i0Nok1<4=IxfoQG79L|2Jn#LV;Ni##nTTzk9X1yW<$N;%LHGir@NkV6^=>MBp%Wp_}OU@N401(%wJE)U56 zS>29io^tDc2+sZgMBTD~v~>Xn1^^ZSz}U!u$(W6u#pv&W;*;PLpJbo-D^UDh-Nv04 z){K$Kj4%9eaSPoFjJ-l8qxBDQ3;(NBBC%`7ak{Jf@X4@eYx7gwLO_0qTc%0ju*|JC zo3GH~=5Ui^cD)oO@pi!JZ8Mn(s-%ZDL0%ys{}8tvAL3RdRo|b|9z7MEB1@hKfvk5u zX5NvzCBj)5Z~mJrIR!}5Ed`7yp`ZaD3?aV`M$A*6W`dILL1Mitn7A2b4}|v&X3NN? z+p?u=$LZ`3-S0ICCr(+iw#zo2fia0UoEr*L-4aU`=#bm&h?0EOdFVJ1!bGn-WO@8= zJkb7S;$T(f?NpImDk{CZmb#oswJ5wg>CR|Jd_n{ds&sW20NZgKU(3nmxgrwNBLdKn zuF-U1m?4;b$St`Kof{*s!h<4Q!H1;eE@ZB-%IF-hNcd0#$-?aU0@w1W4Xt{o>&k}g zTw`9+OB5WLQKsqmRSGznV;(W#2{H^F=B9G5XH0(E%hm&4*ip0g3mySywL)1~V~NRH zCK1pu@s$$&0YQYeC&{YNN^?W}i`rr;<1384!KejbC!9fuw=f+RE`iPOfY*cs{)}tf z?#aU@*7PdEpo32{@Legk*jU3cj1r^AS3TLfQ&>)$RtwCBDAAarDH?PR>?;nz8b1tm z5OKd24n|C+hkT?aKM9ko2!eI^i5Bfrj^`pfi#0UPlcI zybCRC6@N>Mx0IaVpdXn^_T$Cj|2r*meDpO8S=kub7+H;&7(U)?jg49Ue%e0?KJiKR ziN8+!l-kxuE%y)45l|kF3qL{Jj~3cftri<87W4Ec{YlbR;Ea`GYt?<<99TjiLC)20 zN4iLkeBIX@-n;_?YiuC~-N@|zFli+rY2s;-N^3DYXo|@oEsOyi$X0~3lZ?-z^iSQ4 z=y$*(nfe*xqgHSnyNZvrUr7__Ew+#pa-D`tg@b@wbS$knT=p%^ajpxaWEH?Uox;R) zQKZ+yvGr|H*a`i57{<~l7?M^3(I{rSG&}rR(jVptaN1SwDHT~0!hxo|tW z59NxHXPo;rpS8?+M(mFcK}Q+mNpo#EvXP~S=j{<%-x`}+iR+{r)!3VXP50UbFg)ga zU0+rO^M5Cd^d`mEg*3Z%fA;J`O9hHcQ%$yD(iU7ZUm^h9b#VlpfZ1^FAgjT!y>} zG+B_{cK5k(`Dj5AszVj6bP%Imr4c5LLNPxx9XCoEl|~o7d$Lej<)4-{zlz0|b!>A4 zoUi!5(=B+y*y=9ezPcu&?MGKRVmdwH8F=g(bab9A6kP*5uPBiXm7rwnkV4*Hm8p0n zQF;y`qL#In814obBqnTm1QUtJav4RNscZzR)D|#%vu!${q#Pc%okpc5(r{s&iuJ9; zLlZaz=_!7xET)=3;W*IBeYXU5BCnLi;4O!*>Zq6!;8i@%+-e=KIwAiDchcZPow72sa&WL3&>OSTv(Pgz{)>m=li(BokGfOqv%m7`1N8fW$3y@M zd}D1vZmrmCBh_S){eWwGD-o4$O4G4oI9=#~{qgNXblS31(+AVm4rBuJdafBPfy<@4`T) zp(i~+J;0QVp+x+OtY2)+9%78v9#UU$?{E$}CD10S%ZTrOUv|cgHglRSCdAf!W-EynPu($o z&M{5!Y;jG$Hd`Z+T%dYYsc-6_2TQ6QeN7g~(vmtfd{vy1e76_3^9CMd0)J;~U&d00 z7+EkyNXH=uKxxk3eyd&0-}I9`FFJ*lyKVk?FgD-Zb@tR}y@mET9In7y-SDGL8$$N1 z#eaCLD0OOQ*6f!FsP)JU-0u}IF5loxxOJzz1Azj=wpZu{;>n1z%BZX_@czQ7(v~h% ztl!Fo@Elht6G;uVZ;CurE1e{LIkQUt%vfSewrUD*(%S7xo8jV8>8UiU?(8!PC*nfN zVdO!Q;4&&g0bJRbeMrz1R5zNjUd}1Tu9~PtA-7Jwwt(NqCti0&3RI&}9~ujsC?l>| zPqkPC<^vbY__$X}BxL}yr3g-M>jlyTXb_RJ&3L4u&F$sf6$I}O3Y9ZKi>IM;!rM;1 zqfEkX5g2i`&bRK3hTICYykDrk#n2T|NL~WRa6{7|E%$)ex?LnbkaInzS*Q}hzldYc zB9K0)@}P#k8`cgwcM za$yJaGv$weUG2x(3ym!S_uKZ1%Nf|AJhfPQSFYtjE(Ali`7%=RFNH&k#v8 zgv57J6S@{z6)Dvj{ZOf+0-TsKh4O~gS;Bxba?*#`q&9~`0GatOMc6cILUhI5HjaH| zrM?YR6)*$jK9)S3LTvWD-L^%Ik%v0l@!y#MeZlVw_hSC&u?6lJZVjLZy7eq$!BpP) zD{932vsgI;cH3_8=ux}$SndTBFgDGrVg<0n(`GmjdH7-i^mrm%`{>GWJTq&ry1+U# zEKq?4dr{!o__6)$I3hj>=hD3M%5<}a^l({bC-6pFu@FLZcqhabj2+)8N2_d!HqH01kfA1=Bzn|v$18VZ%Ha`tRaNQ>C1#kSF!c~vGdt}_+c(0?OY{0DN8+` z2O-O>(|7L7Hxd&!h$Emx3vFhBoyy1iS}N4CrPrXT3!)Gl^sdt;eFjWY6o=H>{6E2nN9 zYq$d>mSFnG#8^R-316g+~sJ5tyUj_qmR%`7o z#wm8U#8w%x8to!{tLFgiY$4m-W@F>SRPF^Ago*hLTCG?crQ|sW@TJ_@$qv#q+Uq>=LFL~P!1n>Vm8 z3G%k(cY#-MdsU<_rmYzAZ2F(7_gPn5Vm!S-m}%MMkR~6S^tX823jw5RjAnp^jEEq{ zt6_HeU1vY|169F3Y+{q*vvWm+>pu9Xgl09wAtNWUX5@(nvc8+=R6m>EL)|0vKZgZ( zQfx)_4j_KCm3!l~wl?HVhB zFaD2r0R&bj5Js)!m%JP6=$0n44uJD4FN}9?(f6qsGL-~}Unp-|ViC>66A^qU6?IHK z7<0Jp_q(q#d+}E-rhMwjuLWO2=mqbfC-5XOBhha?z8VqGfa_xK_%ZbnX+STRzKPI3 zRhWM}LOgQBS*QzA$P$`tRemLst{aS68c`<+)263FEbcwFsnT#fDz=qbtD8|gM~UX| zIO`B73Ff3Fw~NPjJMFb(F_AGOQ_Lt|VWXAL$G$yjws>nh_q18FeX_Y;znnH%4WDbq zZjzliZ%p@DyT;D$kl#G2j@g~u3iX2!D)VeS%(uiD&r4v|{#nx&bL>9VeCS3ylGPGd z>N_U1&7`Ht$)Z2i$|N7XJwPHGib;Uy!z^>q+)dU??uvVmkS&Zu3C_Gt&lRMMf zpC3Y;VuMd3t7)Ct8qa{hU~^RZ9xhIt9mO)~?LH$l5J5`2lKH4E2;u@S|9Q_JlE+nir@>wQwaK1sXQcat@*52O!kLEcLq8D`D?X_GFN~#`1m&MYB zA-HN-d-AP;NR-xiU6(~DQTWJ(>+mYLpF0h?>U?gO1us%XP5N40JKlEqVp||hg>PF* z>_E9gCu#-umu&ScuF?7@32T!Vdp8*!+o2QDIC7gqxa2leB)mwieGe%cHa~6PhsQHx z!X6MSXq6Ke^d_5X@%eEt!epbPH)f3-60O2fR!BuM9;k!@3KkdYj^g8z6kJ0aDlO|O zXreDzhMem4-|H?p=C_6g8G?|AJVW5ekk#eQ@ebasmVTl(s#EogL;;^#hL0tUYsI1l zsz*2RETw;m-|U~JTFL$08TzN?NPDOOB0Term`K7S-)_@}Wo?P%*-^-DwD zv<4TmeOGMo&@L`6tAIB_kr3sMsLwBoYMPMvaSsaQVXyuO!j5W~qUmjKKW!elbIjk4 z3#LZmdO7$44#N~M_>A+Wubz~RlDi&xs+O!&sPkS(;%GfWUVarqS~dpbyC+O#Azmo* zZQbIWP=%oR1E5b?ranQC436bDdo@l&bX|0(2q4Mg0hHYPUzBsicQLme2%|8PcvMK# z(1t_SHb&|h061Gm*xpyzeIT5`R26H-H(1Uviy#8XEWwhFvE{LQUqcBg)x!6g2)+nb zqwUZ2o#7l~A`79^AD8r;spULV$dfxfB3&wBxWX5>tFH^}@uupcX-kOHj47>^s!fv~ zRqAahK0p+Qfny*ZPc2#+=n&xXdd05DW2K(=L?MRnl8bJ_8DM6w@V=EPslMV5Jf=+d{KrbAPxX-Uof zv83QsDggzUle@4h6@==|r4hbzQ#V&KrZfx@0!x}IaCJpZJ=Rmh{r7DXV9{IM{?6fC z|I7~_W=}L^Qs}ALr}*!+O#3ox=hTNH@g(^7_ALgs4;v&SgMk4(fZmv%oy{1)NdGtc z*2fn<@%gn+{C6PJ_?WE_Md(KV?Mo1ZXJo#$K1C}(hbDpyq3UTCiFe14s4lK;&{j?j z`gX1pk%%N^V=>S)Rvt{(&&{j2#g@II;r(zGNrUaJvIbUp^V^tJbFj5qPnHbMC$vaU z2%|<4+v_xvz1fH5vFdJ71Y1`Q%39Ez+&E~Fq<1wm^(vyC%IHtUnC6Uu;ILT~nRS1w z1YXxNPyHOVS$3$S1ZbZoap;#Z92^0iFzVx5McXas_^n5oQvD2(oUTB(OD5198E1Nk z(Qj`K8{A!E5A9KW5BGm)+x@^2uSKM@Gjo?5blO|R!KDGFl;g%h^tUPs)8BW6jJQ*e z0gpvZ0MDP(UGJ<&Qe(6tP>|(~MXIBn-frmXiM3An_FTscbZiwz%b7T~Z|V@G$9K;- z9N#^YDeCONhIBT`x+09%S?O4BGpIsN_n;17m+eoctOuqd3+~9&e_wCzB=X{iPG6BG+g|g|1!36!SqxYV(0f7=7|1BdLM^LTmFdTS5Q#| zk*Vy{nQy+@oZ~5i0}}g?EPV)S%Wu3wUoF8Oeczh5*k1Q{_VBOXBVJ~T&jsH^d(aMY zca8_A!X3CgWTQu*vODdM#GMrho*|uD-Ht03Jn=M9JU8#;xe{^pdv1GSi{uIVD9NEx z`L%c6k9QuA^WG&1g6xbDjOGZWvy!E^N|?C4xw5T~N+%>U9MWi3*mUWR#aQ-RAgv+h z>2}14L6*>fH2{ryijv;hLHB%jiQgO&zV}m>p%Mp-YiCjZ^jW_a?n~cqul@F_Ai*HE zkV(Fn@)PxDy^(Yx9A%C@>Z-AmqAC-cXr&>#&CS@_5o`L6q<43@CjhFtNkj0CY>a;E zZhbNss033qQOlShTHd)>g|C5^zoD{8O(LLfr|QR04aXx00bU@nWI%5_$~rQ3b(&3 zfb~b6D~p-`imya)%Q842m?(G*tSHejSqXSxxx6M<_qqHVSAVhmkex@>Yc1^)+#t{- z)ORW1O!@GtdTj;M^V^QWNAU}qs?ygBOZ3fGP2OulUGS7&iZ2zbg8SnZ-BOZ}Y`(z% ztdjOA1lrs_gv$uozgJ2B&*<@g3|Oqp9BeFx94r6^Rt9EvW@Dz0nc%;xq)&oRe3E_Q z{|YYuTP4+gs3h=zsHC3fB~DCv8teMD-*_Rs^1sFm#lB-naM(k=pA(a=)ETch1I!y5 zI=_C1q#QoH*oFUHJpBo!7rC>XfJ=(lJ2pWcfT4)xXD%K@*S_Ls@#3}iiO+n^giD$F z;vVoIldr#uf?%I_)9FW_|J8H~GoB%zcp8NWMtI)Z2}_nKYmMIFBvP15NQu7OGs~do z7`CHz(b5?l*X+LbJ8XEXG~mcU4_4s&*=@&~HB3mLz}hJ+CrAsE(<(ZqYjswUS_xOs3V9{XYA&1^kX(!~-%j(LuEQ^bSVy`Le=f!}1B|~Y9UvUFd`DE1UIP59L%?VvdqX05vn~Au9E&XN_I>T?34;*kuWrugN|q#F zkV$>1el!)CYKf&+Eo{7YGxPe@ixL_l*WO{*R|OG@m|U!-m$P-xQPgkB5bsqe>-KR= z1B7Q^gqp`A$Ub%-aygm~?Oly#mRkHBjOY!iI6elMRXw4p%8Qa4pT_0kd0)1XL>h(16Bs{W_zrkIvVO-yu|~>qad1`iBM;Y z_`o7fL-hR0f@$;zK-5A$Y8gr3eJU7j-il?*Kh#EdnZ$YZvVho$gDx4Uc{2E9r7Kvf ziFF1Z8KlsGW>eZs}8yt70(ji~3I}Y{kk4Jc~ zZo{>^M1GM*$-x^v)wc(ZzDBfDwkF66&mJ}_*k(!HX!LX|K0q6UJ%TD6|6FsO(^lNw zy-&4m1pkx6GF?VA%Otgl+)odbjH%?3ql|AEEV{vd5%>O6_#$;@9#mjut*9i(&(ycz zJ?G5mbe;VV&v*?mYu+s`a>(NPx5C#&(s;?At61888WfCUbt8SoDt0Vl; zMAEO5=tLkOnJTLJSj~U5^zkTJYhDh66F^-XZ|z|IkB%_XSB14w1-xI^S?BA#*w2qw zz=XR6Uk%0U?4zU9$ECHoWWPF!tAnr0O7y1b$2Wo`bH)bD%1WTi26@W@hl-2i!eQ#@*<98P;Uro7OjL*!xt_pENHn@sUa+0_FJ9?tciwffH0GI0=#Bh*yjf(R zY4aiSretODD0V4jX;6e1AtZpU2q(iugOJ*Y{l1TS)i9J;luWY%TyOq#J!RGgHQgC~ zO^&+|FX^i*MHls&O1)K>g4b1hUu7*e9xm9<7(!&w%CrU{ReL9Ae*7iUo+a3YZXo{q zWRH5zRI&cX3hG9dv#-WmJfh_J%J3EcpOe0R@$0kphsY=WADlY>_OP=Vu(5FfKD>5} z9G?@2EC54hw!a_tPl8W;l6~T@!+xqJ<+%Fc)cLU83GDtsd;!j2Z-FVC@@JM9Yy5QG ztwB?;BvX%>i-)}Hjtvj`5y}F~z_s~xc0AqX$;}ga_TIJKf-2z*_o!x zsHIAE#8Shg;R%xCdvH{3fljb2@P0@0!dTC)cwL8S2FJ~V8T41h!$fs zfJ77Mh8&F5yY?Fih(B23km4+e#%dUylu8>$R|r3<^dFxjXR{S%CVZr@ewDbkYN-Mz zBsJ=yrw3Mp-p9GQN=#U@ao`8=fhkrfDm3BJ!6t!mRO4DXB1!=<0seXQ+-jQMu<=!8 zp~>>W22tbXLurMMWVWCfa*_!ISYVEd{^#^V=bA^X15&rig13dRrLH0MIPBKa^Xqt; z6vj@E2MY3XZv$qTyRji;V3-Dd?$e5aKgOBb`qqa4*wV>bv?0e)uqjUqA=~DvJ;&nG zy&Fx{RnvYDoV*-AjccMI=`WVqL&OeSU3ZIaJyd+urrn7HSDc| zHgUSB*>ZZ=e4s@5d#_3ivrqnnR&;G$BFgG5*+WSnnNJEoa%Yh!@|UxyIf?j{*Ekc- zH7HY9;5eEi`Ot%06FX2QpVgLBe9EsZ91S#K;foin-qY`L;cDh$-xdu;>WiQia>mtw z+mwh;gc^@cNIcyg0facAqoQIAF~ym7dvcM6Cr{;%2yb7^~2Y201LV+2Z`OdpH2`N{Cj6x#rIrM}SVDr*- zZ{s|M+voifVxr!6Jn$il ziU`CriMycy1Tpg3hAU0dOL$sl*2r^{Qwp(ztzKv5?cPPS#q`$E72cwd5=hU0^Fn$3 zhJU6{f2#h84=Y+EDe4eDw%8pB#Cy}*(-qH@?Vinsd)rmVg&ie^UUU;L^*j*Ils?_L zVs`*XK7U!;ljO5I=YQP3wuQL;90u7-9#q2)i2soRn^nhkM>fAQ>P-Iq&8ea<&R0k% zSKEBDZ}4}qx=r2nxM8IK+K9AGqTv?#A8x_K6|Gu6Ret;&6Du(^7=}_f$G%MXjqmNv zD1bySfBpx`!}=MOG!?a^BPkgBR(Qp6pFVy>*!&UdK9D9PHP7cbh0$wGKzd!eGfZCL zuYgLkFFgZ_HRJ?JA!)T1J&3wiOB>ALtmx6lRcGVfgYJHY$H)XvSLw*S7WBo;g{+3Q zJbGYiy?Fe1{iw=R++;dCIF&7&hWNmRVLL1@s{S1OwKrcW5Wap)8B>=^-J`$oDZTGY z(>`3JTr?RTkt|u*JFQo}b$UK2Y$SGli6G=NZOi`dmc%?a8}%Y;RYmVyH$K!Cw{?mr;KfN6PZwld z4dqRhNLRoOe&Lrxn)8g*z+*H-2SI7C96-bSa@updFIL_Iekt1+nU!URb#Lmf;bqxo zXtQHw>mh)z3E1>{dr-b)9_Tno4K-L{G6bSHq8m1o|DEJ)LoxAyL2l+pJJAb4-_{`d z6(KL(b!7%i$r!C{Zmr3nu*?EmMCsNknz1PbjJ=1i6SsFihD5vQO$1vq3d`0X-ds0Q z?DDsVsWjX;QwsJWARsx%1UnZR7yd*0;MRPc-AEqbaoB+wgzq&i#$-8^PG|0dYN|As zHCE#(><5;=L@dLp&*(xe$@Q96HhE>;=8b*X)!PFR$O6-_LG$pHBWs`3txjb%%N4c6 z4CNQ3CDSF|^GdbK%NLv0%ytbd(Y2#}Snw*ntSHZAQ{^@zQ^KAFdU@@>p={n*NY&Am z(dbwGEVw5%5FA46Iy?{xz6u^)%$m71_Kxxk7;9(09Ozq4{8<3aH&92;yYtXt`^NhGYwk+h z_U2b<3slp#?4O|B>gAgGMEb^4b7e2OtM_o1pS|*77#5Sj?6lC6n`M&wa4Y&ZCX1M= z<*wq5z?(Oy6%X@!nJAW5vguq$Iu(nJtQ)XffF{xQJ&&(I5{wB#58ps{boNgjO1f<* zVbg!*(!%4cF6Lo<5l0xHQnGL@V;R!JE^sn5zBNz#NiT*gJqtGaT^^f2M@2maZdPo3 zuQe&+y~^UpEs0ItBTcB9kQUvpTXelq45HeZ+<{OE1bBgwvg@((jrx8l%H{b~&Od7< zbW$Ba+=o{8`5z|K{%!m;U@~Mk_*fTZ%*4nDFfe9f;rLgp$S1)kKFL1uSNxn(oB3E7 zh4SHQ<`bSJ`6i>7kmS718b?+rd(yj2f4a?H6CHVMx&l{}`*z-NUC@}f*gPk`hji#U zGn2!|w?;QJB9?vV`-3?Y^KyoVk4^OGnqqt#h+R^CCrTk0YlN(jJ+c@}M856VOj>cs zY!GIW2n;Ey?sZt2en4IrUK%|}FPA!?F4krzTN|O%JT3{Qr`g9!UmmaiX=IiEfsj~i9uXAID zQOWZ!i(fV)s~V;DRfp)8f2(3U%aSYzHCrt~#VT4esn3sA=V_K~)o&r`CSJ3T`A;Cf zH_g|>Hu)LX3?;1RL) zfa>2@@a>qPHgNItgmn8!V$W9L&ADn?^plTG;~A@U>cP7GdEepr?u7u14SS#(Oq<15 zEt;%zi_@yQ<%A~Y<}ETA&3E9f-`&&@+jz@1$umQ_g7iX3@SGe9I=)K|ayaO?nx&M{ zcyRFbc|m`R*$f}Pc;0dwZZ0PRe~&0NC6BYS?kFJyL?K^g8UU^3O<(@KK_C%r6%SVv z;*7f`k66ddH9aoT-UQ8mkfSsaOo=AZPeh*{K|g?89z#A~5d|WCfWTn@;OgNeG?RPZ zHQR^Hp>vo2hTkEZKx1TBf1k{>oJABk5xBrae|AR13nQ{%ojK&Hu>+XALT6KB8WfaJsskIpf3!JI1B)+j2tXX z3~Y={h5$nj#($aM{3Q6qC)p?dx*wml#HZ_@X~6fwjU9~-nf&ad;0+b@cS`bXGO7Mz|?Dl@bG7qJJTf`lG{nyY4+IAO&alsE(yl&?l`%>&i>19j#z%5^r6< z&W^$hZeinB8cUI4yAfOBc*J0{fB0U?18aoC=S)@fo)5*PH=fF!dppH5#5CfGdzHq7G81MnR&7L;k0&d|pd z!YV%MlgOF($cM+)Fv1BkM=U6$*JqAgpqi{XGovJ_A9baQv4fQ}L{o|z+-X%lC96Sn zDfk?u&yzlQ_7e$5MZ>p@2taf~YbO`2D^nX*jEMcrCJLw9k%BcQXF{=LD*EOQCu2^0 zbUl^hadB|(UB6FE5bx-w*)F}Ppx6a2l3I$o3!1=TCp5+pGGa2bw*a!sJ~V{))O$XW z$raeb>(8w0nd?ZeneDnW?{bXmuEb+=rw_Gw7HiYtT|sDWkRezFWm7VU08&O5#yN>4k=nwh4ri#L@&;TPslmO72i&JuO~Brzh03bijRJ5j%YJ-k|cW!h|W zIxp@DI@=n;n21u1eS7MJ)McO5BMT-yR=-&vNOh8&o>Ph$_|tYa`30NE-9D?mZ&udy zl5QpD!>8zdrht?>);08-BNmBR4_7z%PgDV* zj8+@O)bWhy_tn__I3IrGa}$zn=~{6YkmNSHk5hKnL1KmEu@ z)8Q0$oF>YKg8m&{XVyO*E0(LLjW~>*Bba^^3E9%)!0nLTbSeC}wt05jtI=^F8_yg+ z)d7LhEIr@Z9@fZ^GQN9ix-F)uVMQXaCt~3%&r?Gh7bXns=)g)?_T475!!65GQE5Y} zQ)&UuPIg~u2nxPg=`U}fe+L7mY<`1^6ey!}e5qn+ERsseJXVkbjvh@P#2LXk3^yyL zC(#u9U5y8Aal?n8WIkZ7FkUYWSK)o3hi&o5{D5n7-R7ds5&g%;<)DvVRssNJ3a=Dv zg0Bin<6uLCa*JF`!Jeuyij1av zQ>}>Th#cwKn&X?3_#wTVFxSg>#+-uV|8Nis!uDgJC2@Z`mg3})P4v$=6H6H-n1 z<+@>Gwv?;4vKr9N<}DoyM7!V&#Lc|!f`2nnYTRvw{NS_v9_!6I9{TiTar-wlr zE*(Lk2j|*567DLL(Gp84rwRoFZ)YgcM1ckMtEMNjn(JKEt z|@i8@O?som5Om77dJu8`0P>9zT`05j>?P!rRLefm4f zZz>gv!P4lHm|-fBS!TPckK*Lbi4|VcM(kQW(y-g5f_NHKg&$}IhW`1e=bCB}f*06fP8lReKF!XeKN}h4C~8~b z=LSm^aa8l4Ub+zoj1T!;qLMpN5WNBcJ<%cKs4DGf*HI>MmeNL$lIa6@8HASyZuAp$ zg4ZqJ@1t(wsddpiaG=XTTVU0(Mc>L(>R1qre)5q=Z1(>|8>e7HGG}8}%MYq<{(gIV zSCZBFxEp8n2r8Tm{6?#jT(saB9F&+h*y`s7*3aLSd(pDe(CXC3K4Ydbfbd|Mc5Qg| z;j0I)4)p>PrMtr5J-x>p%Q$e<3Z%4e%HgrS+Z3D|=MDBCZ_VMQ`)&&AJdAJ{YsSQ% zPB`8fLeDeGn~ABU5Npz8%r6=@!mQ_Pr-||NRH6h4J|a9A%tH392}DYbYO+dh*?Shcxl%qJDRu!I|m+z;mPjke~viY?d$n;9+b2w zl8HcOu)y3y&k=Zg|FrH2sRP%D`#82eWvyseqq|o8Uf)y$Iz~ExE^VcK5k~)%+hZ|~ z>tKq#v%1`7R&(Zt`%HkdJk2lg%ff5Rqn%JK!W04<dquL zKV%rw|6rg0w>6RRhY5w_V|gyS5r+{gfQgxr?O(6jC&4E^$v*MlS50lhHuJw6w?KK4 z?sfiLj_dI)N12jI>+DmcW#!}W&@dySI8v_YYbm4eo~ApskLv7J_laz&Gg)a{(~~~$ zkK_aNzK90ET!!5&lfvWLolU1-Z3vAy>@3BEra>c%Q0uc^RccQE zWZe)x23xH2KYl8Xe~!nerZa7S(hEYwRO+YBw5ln@8D1Ncs{yU*+q$cQVcXTZ#?))b zdeJWXtuL@shB(P|mxxS9LA-RF)6NX7?b&lAwC$go#loU>C371!Y#miSi^whp{BImXg0=a+vB7Dw`vXK9`I! zt>zcGNfSo5i(25*(7L2$ho89Kb3hPkg8hNCR__yf_7AE!_3aB06dWIljT(ZrKlUge z(B#rjNBYfEGt9v02kO2>-p*S*1S80?W_>4aIf2F6JK^<(965$mV6lPyUBGW<=Aje8 zQl&nFhp0ePV5j0QhbpzRexeX*hhK_~>Mf_EC~B&U>x-~J0Ekn~v|O;*Y*QJsU}zC2 zW$Vhu=B!bHvZpfue+!^|mKH@M{#A3xuIW5rmB%CFPQ|TJ@A9frNc9=?Den-ZA6;y{&_LJR z{~Qmd&PXUXr>Ceg=_}T6jOm|iXCqxllk-a}aU=Ef7OxEpl9;Jw#&U z@PE7H`88!i5|%!o#Rm`Z^N!e!H)KzZ?$5}lQZEFn~uTFslwa0G{vUD!)ERY4engT)au+K=eY)yU7CX(m}&0BF!p7ug!_#- z@;!GXp-ih4sC8(+9Rdn}#%BgiB7RX*aBkp;b z^&ypE6J<=HGkqCI6t*?6?n+naW=pF@6-VhxCD9{It%g(brXq3={@dT8jeMtTb?rw0 zz`_6b1~)?%V@6gE26|=&1{Qz;1G5pEG4nqg+&;hXiO;Wn;;(RWsv+}faO?U%1~->6 z(zZ6Rh&8-)&bT=tg_~M@A#>;mlw@UXmJ8qWxO`M82W0FJ8No6-)`MNz+f6r<FmQaxp&XF$#=PJcCR&WqqOMBnzWns z!yVbg!LrfCOZ1ssU<|BQ6i(?5eOpi`JZOsx~@#x zUW@+F$CCTzyzA}xGIYT{M)+{0c7@o6XCUuu{+Gdxo58s-0_CfZ*goB664-6_2-*;> zt!v&>Rgf}2RjRSQ88KmNh~*ggU+MwAds|hmGN+xE2fkYCn!>J}sUpaxB<&bu%m-~F&;SWOUpHwIs6`5!mfQV;5{tT~CaK}xk z+pP{FaYihx_~rm9up8`9``{y`sQgh2 z$51aXY}O>9F^Ln!31QgPlMjCz>HLx4NSW5?M-*W;N&b?dl!tRq4LoH(fbv~D@*4)V zvYCDu(Tj5Vi#b#$aU)u>UVl|?4oy>nC5*W*F!PQ((xz`H112Eu)n;LC|0pXJi&sn9V4>bcpS3-)PI_l@7y1bD{YMCs2y&O=RZS6HN;%D;yy&Kt5NR z1|Oj13r>hNn&Q1v`@B2zt@D}DRrl#>Tq~mBfi0=8zuj<_Ord|O=bu}&2Mzmi8vl#5 zul}klUA7Iu-GjRX*NwZoy99T42=4A0EV#P|cXtmC!Gb%4U~lg}_x5|;eaE?Dyiue)+%LXaC0n@!vCSteil(2_r+Ge3%g%8xWQl88iQ5(jSxn6rg0F z__KceYjy+sPqn1wLUNxoZcF77d8y_!;OK_8KW)zldu!tuXu}pZ_+Mg4?p-Hb?Dr>k zDfy-PTJeIR3p!$QoQ&VAEJJJklQ9Hi5TKKp&>YE#(;p`!`AhrLaY%B0^bFv$Bnb;q zVSPrOVjd>v!1|Ix)k(%B!3k}}Jv380!Mz;ss@i${wE)4y+MV}`muRJWH%^?X?zyMA zg#^-2O%C;*1`MofVAb)qs_8?jE!$F5tsR}U`A7fVV0ee0xW?wEa=O!aZTAChR~hjX zNS~F9VsOLB-V#CuP05sG^D{lOGFEzlyN>!;n5am!=SeB67^JVP5LsutkRO8L3(K!s zdXqcb;iyX&a*QoZ+2uu*WR((X-6FmUuOVdr3Mg0Dg-qjuYs7^vY_A{J$6m=0-Xb8AE5+T#j?0VEBhf&S2y%CC?3;qK6`Ne9kgVY2i^#l- zDGndAC6e@WGI~ayss@@QR*$2<3#1YqDy0b_Q!eKmf7F3&>1XD|d!Sy@vv8MfuCSi`B^T`@;H9%w+lBs!AuC|lx^A8*klTOHEwbOTYSp`3Bk zUF1G}T%!!d{$5M4z85OWe4EP}nQwpn&?oIo_|kyip8x;Si}<%6I)KHD&BzD<6!J7; z2C#B5n=k_aePnv`oz{cAWtw9B$sCh ztz~A^R8Jx4G~YPlM?|q^`GfL%>X4vM-Ls_90=n4Tv;-0F^joPV6xY=>uK=s~aRZg~ z4%oN&+`cR&ipDP)@sYf3^Z76|t^{&Y`PeaE0(g~)Ls&TN$KcGqP~}4x%k)i)83Gkn z#QK?#o|M=)8r`11>U0uweJ|SGamgZg%tRk+NbbMge^k z11(m?Mm3iv*fRVPyF}^To3*8EgS{&1D1l;uJ|)Re>DoaJ)TN$@JVOc}X1{^4HvIxl zf+FKeVjc!z(JH0jEX1^8Rr^-r7K&b*559TNe%+h4>4_DAFx0TiSX_n--yrV zCU_wiEpweQ<%_7lVDlbWDaJ^Baxi3Jmp?fxij4(hK3pUP`Sj;z6UvsDZhuGwHY5sB zCbG+rXw^679Ei&;npltCwmPGb2Yf(0%|*!*|L+s?oQCXr#{F<`#?pU z#V3R-IMp~*UL6EYfSqqPy=WlYRxfQp{iQ+3z_9lX{v8yNSE0}AKxpps~-?DaIK6kVLorJJWQ|H_)l85=` zWgA8(B}rUcv{CW99*;LE{mMJXeCYA|lmmD}J=}SZX2Q=g5rRVPXSaq*M^a49MB7VJ zkTn&IIXCb+Lj6dlad?j)hl6BGM_h+fm<;>4i2z#izDK)37&MlK=!5ujrrovJaN|yI zI@~e02`eqwD$eS@Cn03N$A!XOAhdn^QY9_j+DyIJRSMbKm^dBOWz1Dg^s5UCVcp;- zLUr?8Q?jT0v{R_>G|^q4(#!+29?1(`QRk20_m|!z$*(gF&j#Db8v*FIVL?iHSFjRB zdFyw)<0oFdGtNb4c^n9EhyleMbnlB#%Zua)-M$7W&ph_Ma4+H^S!Pj~bO_3R2`PGG zF*w=48yw3Pd_Oj>%#SYQts_Y{nSFoT3)X06G{?$EDlG+Jz$oH(XCsA zz*$4wP~sxN`k{~KOVbIJil{-}z0szrE;E#zBb`Pxa2}48G&<~zJ@Y$&-o6^Qzsodo zCA$M>xkn^aWwOi1*h}w$@8I3Rn!v#%H${ez0t9SFaLdLEL0y=zslqBMT~K*r{S|UM z(f&*3n{Hx;{kyB^UgZ4)hJVT9;vXM3uvOZeeLDg|l*6iVn;_d#X1mk%b<=SZ$ ze7pR%>yJYcU`I{)!{(P6r`>u4?-8?I#oe{MEiUFw#dTjM;@h){ zTh?=+Z|{+O3lZql20yD}4x3P$>YyuBdgsK4V^>+a`7-b263-HOZwAQ1gdK1lyd}lj zitsZM)R!q3&!ATHSFAk^Ugw3T$&`Q}IJI%-5WxRFViQ44EizaB;;B7as=!UN_YrGP zX~3$$`po%8uAiLt<16+QlzNYJRz?w#(?+Lx_@$=&Y65c}N#vFJT{6+N%Ifyj___6f zd)3I7YImX!H#80_K^ggy`hioBF47^nql4iWpY#*&k8_?I9^w9aUPr0D*94i{O#+Y6 z|L;O%V#ds73|dR)WHaSpVrOPy;rz!?F(?5j{s$+$QIO+W=!IlQ5GKhT+7G~n*M3jP z2Z(U^AKR2kLuy7k_l1qBKJKS<8;rBhTLMwTQ|GU-C>Om0I2aR|XpADNX401Ltw)O9 z6JYQz&5d9LX?}1qE%d0IN0eI;zWL%59B8GeTu>#`x;;{qYi%c;Dj*dQ4L<{b`z<7S zvf6WZ^=#E<0QqfJYL#FhNobV_*#HBnT?v4ci9sQ^IA45*Uu$8!t7rd%!^wJ|$!al& zwV%nx70Nq3FGT60$M-*KYgeo@|eWKjWeXVij>@1QU@qHT}`ww5h z6FKNrVoio_6XBJy8qdoc@dXTnmSgV>3U2B9wHfcFPU<*xPyFgSDw}`mo}DIaQ}lh&14KDEldGGy;h*42yml@73hZacVq@i z018ktQ2cr1>}zc}&vT;qnIF7D$6b8sk;Ub)l!mp>-Wy{A$H3($w8J)|uR(XLHznt? z9lQ0DsLvj7%TktIr*{7w(L`HyzuQ7v^L!Quoof0q9nN!v9Cros!qUR?;vT~}pEXWktTIM*68JG~(pNL-7 zNmXY!Ty7j2e1RyFOAJTIutuDbiI&5+&^qbaqh!o9tCl+N2*I#YHy1WjQ3LYfy>;SMKdBZNNVO_t_GWY` zEv0goP@W{0zZ+qyATArQ;1IM69j5Pb#Ipc^i6hb-3tl!RHTuxhSF+AgQo)Mz z$Cy!YLE_}Vo!HX21```vWekc$KrH7?5UM||th27r%Rm}|(e*mvw^#+%CFif-Hxm5( z&AsThJcR9v;STYusCqSD6X*KXOgk*wp;tmj+){E;?RueoI?H0%q$BkKDTZD$jB)nvit_dp9W(;-x6CQyxP0~ViYQ*n3kXc$PbC{il4jQ zGZ&ndoph~-<@W)gyF-d`%ezCq5^CUzJt!~oF!+I)(v6o5jWQlS=d*o;`VEP%Q|-$F zbxpfyZ^#Mp-G%$`-^Z*Z3Fg4a}{ScS%%5hbB#Re7utMfYt)mEYtfJ60(FJ1YJAHf z)V|q%FxNq^s5k_W{Us6}r~F6APzs-_Chy$;T6+pu6wfe#L$^*O|3U2muy6szqS=^? zOxS=X4?vwUQ|5oP^Fawf0ZImnKWopKwu19KH%fOmPFK({Q<6*sK}#Ne3%j8QvMp^Kyh>LNs}cT)OweM=g2WVK}*%4M+2zquNpxTd(?Mk9Vg;!;bpl7EsQ6U2f~? z$z>jApP6;R45=?)@g=fgQ%8IU4mRC;f66rIdceYQ#q!b_o;yn7q*>_)Qm1}Vx`2y9 zNI)$>GlW}*|1IIO#p?Bx5$6@3BR`9OJ1fz9L?RvPi;axjiyRA%9Xyzr9FbL`eJ_KK zaU|~Z1U+bw2Nl%oz}B%SvZb#u{Z7HWzT*IQ*r`~uchvID;l{pJn?%W@*Ld4Afs!8a z1KAQ3n#ecZ!d48_A6MoLCWAlCp}ZYi48_tV$qkb#DTgHUS)^p9SKPxJpM@uVHnN<@ zWN!9hq0sDEsSh^6(Qu%jDl`0?lblfU3y;V0VaGina)?(t#T)X`WayiDMuXkJFpTo4 zrgTEX9nPLo*{`pABJaSLUoB&?KS4}U?c$fZ@RKD5g!qNHr_?Y+_Y41(Qb9 zZ0|xV0{B8^L%{5b~2ujTUt0BA|}mcE}lorK_uK_zi-#1LeGmH ziC_-j!>P2jKs>BvmTV~kR9E~YQQl1E6*+-)7R$2UF zzf@B7xj?1})vrTCb)&#!s#=1spq}kZZ#$)dc(jT0Z;W`-z!DcE`X8rKsrR@_G$_|# zgP#?f4vLzR+sFo%bKL9B^)Np!!Y`ypF6eCRBsScii4!L@A!sN|j7C{;Xs(6KI(QLw%s@L6u&Vf))sn8kXvVgJ}DRe53KfX5zKOG{o>XTD8+dXQ|13pS+&&S1t)4;|LnK-G=3 zBz=!DU?V!gTVImd57`$kIqxX+&HO&;R;+BjT|9X1>YDymSkp9xom?H^ARay(1Mx_< zo@w>4g(+rj{<}|Ul`qFbFq>8BhLQM2e6x3?ROgs5HyA}spg7AEa9#{Y*pDha#B=gK zj>NCBFmpmND@sWLI$S>DZlf8MB8z?gN0jam^9QuqQocsSPm&0$&WS5)b(OA-#5x=X$bsj)&gkJO}ycsx?!_<3+${z)$QEFM1RHYsafhe_ql( zoki%vH_UFc@T6WQZURb)k0PA+`iOzs0~!{oZ-49Im^iyEg23s-e}aTfnaxZArW_`m z0Co;jBV%?WL%=`q5hwvD{s$!dUp}~!&p;&XivFV!k@_qZ5)Tdr1#h5FiZZ5RpxLIR zQT4@r=<}^md&I$49^|;}vpY7;ex81otELdt&Cf?N$=*XJD(J2%9PwXK`5UR7csTH{M&|iRd*=v{KmGZGGNZ&^43W z^cs`45VapSfh}VTTdIb*oYRartuWs+;GmXn$EwGdr{PITxd&gmUl&4NlGbOL@$6f+ z8P;={eKRrLuwmxZa-X^lgwMej$?4e9C%1xu+WcIz;dhIiH9}U0+`X1N`)lRpZ(}&Q zq#mnqzyo3t?>{(=m;lC1rd(!5EL_aMCLV_&8wb#1`frZMpah@*B?HBur_sKa5=eH( zm#FrQ*a5EtEVjr)Z{yb1VKrZH&Bbwv4?)Z^QT_vu^n&DAgvwrb9EPb*;yysFin#X_ zI?8=`H{oGJ$^G^D#XVNUH(4keHr^a5B4uokbs5nyBHElv92OBGjaRwA|Ks_`(Rngj zh7A~RA@DRBS=|5}Ea~Ye3u(;#vi3q2X!hN*_Zj&P!v&)w&S&chvm&8`$JFE&srQrt zVILC&__@CRFoElq@b*LMIivma4@uIC)zqOAwYRaxHp1`E4Ok~@|z*vwn zD+%=L>p4}k+T2q6s)9v7Ko&`7Lqq-99>s*AHoM|+x`rh{c`4Ra!eYu9b(>54$uzoL zRmrqj?w}QL4wb_q=cwmokk~lgZb`O8 zR#p0^L)uk@YRe9!4EUW)D~m~i`7+N1`L?WeSqs4JjvnN--q0?#FOmcrC7HEW{v%A8 zfdB{a-`YDhn`zi{NiVWd`P}k ztSzMn!1*8_OH77Hmx_KgkO(Pp{ zNkzA)=!4<*Th|hUPg3QA>qRV?8BZlUNPp%|1Bx5cEpXa}O_0FUpD zM{p%f4s6zR_AOG*H=M^X0+oj1&@7R=WY!^0pLPHP!U zG1|ykpU#oa2DtOr2HNjf%#;>wMGb3>82KRsw8kOJtCDoVn|UyFm7Q+s_fsa*)jOtd zkF($Q;cFR8n)6=!Z?F#5KAasm*OJ+r)wwowmkeocp|D?y3NQkga50$zm^l7H3;%nZ%!$!`G2sgxXGoc5ciNbjx4vo;#`n%t3K|Ik zdc{+IfCf0M-W)LME>WKah{epnZQq@;QCLd4z4dy_S$O_+gFJncGwy)|zt?^J+^SsW zjR}EW9dL~y>L+B>OQE1Da1ga!v3JVYt_uYl2@wIFZ-5FT3B01~3u7w(0LjLEKF6e zNO6(9%E(YbSSLH~tO)&+xA-GA)nnFnFzU{7+`gZe1Xf=0DmADuKEWXfGjcN*rVJVl zt_mB$YK#NYNX6g#HOeeScbO8Wy5lV+mkGl)k9ryfV$dW--v;`Hd>>)FTR%MGs_6je ze?`glNRwiI_z*t<@y-11d8?)D9kon(HC@KF?7$^h;)^u`ZE-k@(bK#vE|wr_UdE5k zgK+7sPWye*n%FGOE%@D>`*8Q+v`tR*_g}90Nizb1{(#DC(J2$K|ANXSV%0la^y&}2 zYhu^kO3T{q!bVW#a@HR{;#-M-%tiac=pKalf|SMRnvrEwzbF5kIl6(pRX60T@vDgp ze;X={Q-}b|fzyBd89DmrVvX_0u;}+n%kOf6Lp@A}4QM&^g!;|*Poh>ps9avg7LJBv zV`C|>boj{2vZ9rW#w#ZC^-L28m18O)Ow^Y7u|&uJ1(n(N32D1$7d35`OR_&#$W$db zI4Odlaosmtp%1e;nrw`tK@&kyPn*kd5IDB_6BRqGf_dUcooHR+BQ;)UFEQ z_WTz{8{G`@y2a&q1b=ckqoTOvwyP}kxMs%4!O zTcSxwD>6T9A-6_LwDSzYOgQbCc=o~(S&0C~iM+}u;@QblbL|yM1U;W5OKgja@;rXi zmxX!dXTY4q3Dn|#$YV-;q7TPgXZv}=ISTB!^8MHBxT%j=B@98FduuYM;Kc;1E`}f+*s-DK=4rD^FFb~D6FYaQqL+Sjm z$!^mh2^9}*7M{UJx)R)(SdLTMps7fNul!hhSwq{)0*4)f!=t9!dW=Wnnq20&`dYE? zT>QUBb8p$=DfMZw(sxamW}%d!M6HRe&4di(cjl(IR~_TeS<<-B*dm@tu`VkGe34CH z*t@D{D=jEq_&snlcF{#by{Q*8JK=|XS|BtmxM@xDln@uS1+j;kr+30n?4$9V0R{z& zU>K~Aq#%JZSb~ZhiaUAyH)(tb69z^qAhq}Te-R7+x2-Evb`E0}R^U`Vv!N-_BNzyn znf_6uKnXwrN(PEQ(bJ&%sNEXS5C`k00E}>eu5wkX&A$3~E)2=cW_CCXF{DO7Gqz-* zw6fNYA0zeW1QTjKG_o|&uQ**RoAEc#S3$)`IUd*|k+<-2aUmnWLM+7{pkXKdaj21S z_FX8WCrzUYSSnxA61+7>{sL-$1|7ckq5FBtxhbF@W!!pe?dxn~(nj?l3 z)8g zS)Z-2;Lc}-T*8}eu){^d(5W)~<~)pKw}?cip6v=InT(iOI%*c7TOEkHS*rD861(W^ zuv|5bj6!H~q*7?|*t+gGYqBxY3j9PEBSN-%FCO3He(CI&<7JSqXebS21xu~1A-}CW zmo5ptIZJ2wf)6-DU5w4sh9C3*%FMBU;WfAbg&x}^Y`1I34f#BFc_i%y!Y72RJvPH^ z7@^jrQWp;?9kR#GO&fjHaF=tG*+0))=x~_pnN1LSuY}Rp{E&uMS@m#&k-?3Zp(N1qu4xI z104X_IzZ9L#>C|hd)^k`U#-I9M8AOEO4$bkyKv-XtF7s+ru4lk&BE{&e6J8~Q2HcZ z=P?}4O?K?}O))cU4BulLkk-P$6!ADUkp&u4@!{;R&oaxdX_ZXk5!=r|#7^n;1aSf$ z+_fkv5m3L5xYEs4TZE%M7j`YY`|6f5QyjNHroqi4#hO;A@wS&U==WD_fiLy#vmWq% zJN_TtZ@IXPKuh)}TtG()Ll#bUj(=hcPy$eZl7ZsS|JGJ{)Gi44-)bBSXqGB7V4zDU zC0Zl3x~Qn!Dc>1fqTquC*(6cMTwgS4)$7l6m~ML5G`DaBbGp-v<{C@|bEYq)WGIdq zLUO4ScM6lEVHU5-)aJ^B?E6@208HyJU@>vwX!3;1^sS{2f4Gvq{3-MYgTp9GSVaao}c3H^3q1G-kV zfMFFQWAd;}l6*xbyqI#3VkR#P-9-CtiTpx2Pw3_uUj?d^9aCY;y>1XLatB7&uDoo1a|yk_4b&1hkGLQl?VB4WXtGD<}|BHoxP z31qtoAF~h~rj)p6Z?~|`UYh6m)&^J2H-HX5ncx+FlJ_|xaXOsC^zoyg9Xgou2h~s7 zfc>)Y9kL0e8s^F`q+{V{3M!Vm@5F#&Xb*{GG(HbqO;H{Ejz&I=(SECBLp4yFoR}aW zNsj`-TsQQ1 zW+vJ19X;k@!)e(s{0Xa~R7F-+i20&$Iyyj5^qD_S)-5#zLSZ(t#4DAK!j+5`OlzrW z8gkaDpgw5tCRgrr&sdEs+lTf$OZ&}ZW$Qu?E}HUlrTT3S*c0>1u07FQa%rd3 z#A3-4D`>a_D@wda3;C+Kw|sqCifji(DaoG111%uVRsZm#8vH^??7~HHe-YN?T1=m; z8jG$F0p#C-qzDK|;^ethT7&DWFIDJXW)5L+&AT3dgQ{!Op;-G?TI}!r24Gc4GR-xn zSCbKDLi#QKAW_&`t|pU+dBFdRJpNdBgK5f_Pmrv-5wA(PBrfY!v64s5HA0l9A;;46 zgvsMkuGlO$yCUOv@}!D_$d!r=Q5BwQ8kU)cur$)fGxB+xM4K@=o%G7%32Da{U4D0* z0g^2tBc8xTUmJS|FUFJ$d@OFC!=lBt0k>w>B5m*%M7NsE@n;F=syoVDSGgh%@%PJU zdvOl-b_MZD%t??1=MtD_KDpLe!#)Q*~3U4$m$9|1w{ELU%a}ZPB z?#2Z2aM{>%a;^dCIjFB-Os z3+`#l$PYhI#XdBrsCIC`uwYpLJJL55vbo7IwRW(R9t`h!hb>y7l~QQRqt{GQWs>YJ zspl~cDWEAMd^TfZyjdGpf6HUjrOL?q@iuuD07=Nd8+F7 zM|^X*?K9C)fQw|fjLT@g8?Z_o90?5|Vh>{TF=k3=tDagiU3{Nl*c>o7Hg6Zdj+DUj zZja&e=X)f0fKAUYZq3HzX3WI+$a)|R$NC2icZkTxMnGf*q~W+hG#u?so@nfeYASNY z9n6DV$hdft=DYE_^x>*51KuL47BV@~4P*0Fd+S&wb4Q6l{gWyBe)ySSldTD_jY_Mm{SqlQP za5g{|PJb!~^YN$&rr0y+U{nvTr*Vse_@Gh1xpVo6N%aeOUqP*^$eq&nBj+NeTVlD+ z!+R{Hp|Ol(-Dj4Av`$FoImYep&JRgA5L7E^olH+;M*Zw*3;kKYa$26L z^n9&{M3mo+DFIM+Gh56K$Thbu!+l}fIj!5Daovzad(x|lF#l*uN3C;JY@f$|>g@_= z7IN0%?v#@u(U$CBQTJGi8W8?T5Sbg?WS&;HC3~NRtG6K_kkRN3wiGf^yx`~Y+UIS% zXvgmb|G7P?is8wt4f~|s=o5i0Cw^}8Pqp50+uD<>bVK4DS(xUg$rmD`H!Lm zN&pH_GEn@9lK-E@a}?0xIZOzexV~W$C9^BdhF)=*Q)1>oim^nqh$Zdo)9Ig!=X?(* zzd(!U^>j}SFe)SQKISWB$*tdRI$%BsY9e)H?!>e98m%B|9q_@6^I(4RV20yF;-e$E z;oOUs!Nf9-q%d31F;F6AF;pd$4e)w7w{1C8tNWBa>^6RkVVWx=a%l><_YnZff8{O{ zJ#nCFtAG~IBk!xhAn6xd1Uej-4=Pxmf>u3MmP(gT7Tw@DrHYE9t$#vFu&9kV0Ln=s z0=)>qG=2&~TDzz%)`+i^>4C-7d|qh{E<*S|SB+k`jU!Cm>>Wap3!rj-E@QSnVW8$( z4wONN8Ci|sl;#{$nUyt^Y>b`x#D}pk0^B~I43$)hHO+(pZlBxZSvlgq5^Nnf%W1YE zx^iSX+sCUINp0IOHvyh%oqAXfDZ`vz-jTy0nblnTse!i7WgaA*)h|&9iTNjH%Sv$- z>>K&S&?+S`P-+kUd;5HBMf$Y?tyoq-L|D5VZ_&eQQt{n@q5N_+6SX(!^XHlGK6vrxzk@w_C3DzXBY@{fd z1Yr2XQ$<5Sm$zMUU6YZkTV-2$Y{MZpn_ie$Bmgd92b?nck-$m$zk& zioaa|l^#fItteK-?RI#Zj9V37gK;RfDp>eQ20bd z-&%YZG4^!xTlP7l!|iIcL3$zAzRgh)^GB(}qXI(WSi75gl+P)Sdi|8UrYhU7#8pH3YeTE2zSb0HMl zc*6Vs)FM4&Ah7ZfOzeZm*d6U7f%uzo}){4 zOAa$*V-^ztuqA59Y4{JfF;D_ffRcgY&u?Qhq&t+(Cu*CTaSqG7_#Lo(f!GlfEIN-z2)-;V-9q>Yr*`O^uheYYE&ad@IBAg+ zGa|m+jdQtg*K1}%nh^YA$i^&=h8foA#rXu4;1;jw>~}G(B{r+e+bj4(gyN+2!C!PJ z&r^M}`?Dk$jM8>KIlvGnZX2C^*tC&`rf$J(ElKt#wvdYKLik-O3F+yvYeo6aq8PS(S}P~vsHQGYaZ6L|q(}HZ9LLOu%J7#B-B1&-<{rr)a`)cAe`r@ABw2E8aPG(C0vZuK9@U{Nx|F z`}~&mg8oe)T9=Firw` zKX9bSW)y&&`C`MqXsU%l!y_b=#tBmB22D!tiaJPl8dLJc&iw;#qLP-lC3Q zRjb4-=}QQuuFiHDme1Pna&wWPKo;pw^P3V8Xom16Xz!R5y)WJEhFO@_S zWO92{TB)}JdV`}Ec6vTEz0e$-cCkrN9_MmbF;^0)AF(qYa~X8{CeF_vFwZc{vMHmu z_;+a_qS;+7SQU;q`LKDTN~%@a;h5Lp4rVP_X9MuwU`6rO#=BBh&wJzx?P^)ijjrEf>rt%xgzJnzOU1 z+WyACr42og6+3qm74b34nbP_d!lWxM$Ixtn@A&I>Fm>c>x?}3>FWyg=_yJ6&&o(04 zT&Hmx&aB6e?`Cnzo*mZ0(fiD_y%W|rhlELSo5Gs&;3I^*)1btSm+NyUzd<5H`H?lPTD;A?2#9`F)P&e*UgpFIuuaU0We`n9Quibi<%E>8Tw z_ozv>%EgIaYF`UPeuM~3XCmox1da#b4eh8xPaOYk?AbyC0}TvVY{veRTc#l^Gf)Tu zbn0;csZW5B5eL^l+7+M#pa3NU#h;Z8IQINsx6C)88SZc3_%iBQ$anO$nMQ)`m5yuw z8unn<`LAIQV9R2(nS9)`TwAE^_aM+dpd)UJ;Pb+vz8^EfO~mCPcEIBV)1fluk91SW zZ-QfJdqLs9vS2@q1x%Bk6c}6y@#|`mcx3(hkbtd)k3LkCftC10vd_p`NEFUx!U&dJ z+>R?~wx{{J6`X$f)VyLCB~K3*DXfISGpyN%1#UgzF#B79kz}7Jr3&IxC2XWi)z`Ct zUCxi^m%m212v;TUudXb+4H((H?wnM7)5+2&i}E?ctXDB%_jHricOuDq+qc1-#0XZK ztIAqhSz13)s5$jznkJ_2fFp12i>TMX$|NvypsOdBK}49=8_5a^rxZ>eo|64u1rxq{ zrN4Wgc#@C)hv5w7pKU3Eof)VIkqB!6dI681TNl#6dmk)VJ&(1dP&Kt9sSy zk(sQIs4qs@!bb`vLUu7kSbx>Z)>OKBIWU#mDz$-2u}^YsTXZN)cdc9yZo>QMUa&`q z-HI%{x?KQ9Aou;3xXD7{5=92s&gXkeM|2GSA+QK@OfCwX3z-`^Qq^$cBBu;!(QAz5 zx(Oonlk|ysEe4tpBQU_A6>*DI5PM4Qcef^-@*g~EZX8fJYS`|gzlvy%I&^ofp4~&# zi+5$uQ!MnaF0&k+3OL|A#YgF4nNqXM)(f!5Hu)QuHu=KBXH4D4?mbnqm;sxwD<^j` z6_-IXHPF(AYpC4ntP2m>_Kuz(5UIoZ6JNa@8?jxT-<-6@V z&CV#4rbabid?eR%|F#>eGPRg$r(3?1j$^#ttH+)-oKB^~rVD*QgfzOVaR-K^U**+k zUn(%zL}09%Sm-0|uxLw>>wn_D40XOE>DR)@dnquB{o|9G?LxG za&EU}dRp^~5wD?l!5;l#o!>pfpvZ5MBaWaw8&hNAO(SjXe&y$BhjZF8?ZPpCcY#bz zb%SH5W1iI7xn|dqOUZdL0ILM&MZ?=_^tjwR4^HJ;<0^#;zqO=4;Z=HXcQ)?~s=9=u zX^ru(v{!@puyP}?rAhI>XhpEG8*_01n7BAOnM~N2m{<%=SWN$_6#;qzC_qmG#h(@D zOl#a}jU8hHC|%w&>w*(S9B%Gb_M+HT7m zD;K+w?Lq{-&6TEs)i-S4EtNRx9;4MKEvHABWV*IAISy#L1e4Ym`BI$)+jS+z!{(dv zI{WL`25Yl0WUe=Tp{Z6He1X4_xyB*II=g00o1S=31t50BV7N-5pl6d-xd7L8N5!g) zMjj%VN*bIpI1{G1yil~-aYA;OEB%1=eb0M8gOXu}oG4?@YfA~@%PY>F<(TX_ou!VW6Q}ZWrkx(&vYTXs#FOTI8Q9plu$3Z@z)b?G|O6;^g*%VNc z&+7?gN@bq3iA^AW`Qc-*liQf%;B_*QcB1BL6&rgaaPn>qy6Y(VT&5cd>OgV*;B2m9 zsVURWIPIiZty+0CWj0Z_`fi2R__@t0Dc#C&Cn(6w3C{7Qb?5is=>29`we&sh&jv!P zq>j)bh!*r8oQE)%*fw)^$Mk+ro!Dx=;%jsIlkY{%hd1`pp!&e>(Wh(!HEo^7<-jDh zMJX1?jt{9uCUmgXBi_SBpnRu8e<$tup_>n#;y|%CWsZXU5HontOp_!!rI|RHSiDLU ziY#~!JLFey#r0Qv|0}Tk@LtM`XBW*SOFP65*wmqQJM3`+$hVgDzK&`Hbu2I|flh{z zftrb|rZMlUALq%vF58A6oW&gjoa|73W-+slHNRq(o`3aFtai@E8>pL184-$-g}o8= z8d(c(4#7!vphjT*vX`NPlD@~ue$I@xIZgYJjb-028_MW~7Z@OKgSCb6F|!ubHiUGz9))ueQJs`{U)LXmdKQ1nCd9Pg{~PboXrJjs=-}mGA(5LL5+>}Z)30p_Hyux{~uC>hGN15IK zqfu==<%y7HMJOik9CJMS$c|4j%a&q{l{>cXen*n1Yc7R6aeIWVMf=_E9L*hM;oDE* zQiIgYoVJR(_9VZNw~yCvY(99`M8D4rkZ`+V*Vh&8WTxeI%K|yvct7uElnP$cmO9)o zX`Ee8iPasRVOwoW3+Bc^$u=#CYUZc^N~~xDYIo3T^nKWOJT`pTdEoEpp6|TP>x5w+ z8vLaZ6EN0hRVNn-yX^P3VPrks_zErH_4$7rM*bg*#DD8WFqs*eG69T$poN2p*~An8 zVE^YD{eKT5gOdHFhS)0eC;->;HWPj!s|PO>4cOsnH_?K_Lqdc@GINd=Ii`G1Jxfk4 zf6I0z^kJO!iF=wdH}~=qk#sOm!j~qTkc{UkIg6gdP*)pUM^~FGQoHV| z)5*B{9v%z_O~IC%;`lucmO4u@u{yZQ9-0{r2Q2F>PC-AsRf& zXowP>U6LenNNGX4vEG$(wfU={Rm`0W?{SMmkOS}O3{gJxkY<=OO4K?D7yenRenQ*2 z%Dj*S7h!h>M)Y)_-Sl||IG~*uNA0M9wXp9v&|Ys9Qn5L;11AMm0@psRmUnu%jPXzBoKEr9QS7fFS^h~=>U$wi!ACxV~Ac305O1_@sL zkbLUP(Ppy?9+b;TvrBteKhq35f%Qk7ujD0iVZIMisY%~slU(g|8^0aoeUMVZcqB6& z1NCa_PrHMO3=!^G$72g+2U&+<9b%JMo$r!Rwc;&srB%=vp zsdtqp;iZJh4I@}Tl7e#^MnEJIyNd^1^|(%~2P_#s+$^GpD>0sV7VPx*lMwQ|g)WX1 zR7=cItb3_HoCEvp)E!ntyG}W9U%px^W;AWa$XB-3>iG+nqnK^HJqh*0;jMD8Wn!nx zop1K$T29LOz)G?VBU4l%-h{Fl(}wzLA*V<+!{QSTW2^N@6ZDwQ*{uhx@-ZcKsMC z>m>>bXiYa6dGVR$8E!ud<*2a87y&H^DIcgp>syd3n%wn;WPj%K7<+Y6Pho54Y~FhM zoX|bf++Grs>7x%B=lakJb4y5h|J3P;D29<72oRL-Q(vp>X{$Hap-2#>vi_bb=b}^x z4t{T2R_CdE7%tZYH*a+d48_ipzp|IyYhEE+`G7LK(4>mcv zn>TMkR|f8$6|()Be6}Rakxw$nN3#BKK>_CS=mYO9-p0Djw;7hF%YowFrwqBsV^}g= zC_GyQxC2Z*wSb(57{t>ZkOIrazaa(xZEa#U zF<}B)@R%?Ieal&Z{+^~R9PEE@(1H?x;(s6ofv%pMC|!&|5jEPLvfw0ai(TPa@IFmCy~P&Gjk{-ZyMi&ccY5^(d}a=u-Lq*RHzeIHOMO{@ z5NlJ}Iv+KwRR*8->LPfZ5n0}lV+^26t^anAYS5}$I2(1dWBEG0RvkameSrN<+ofE} zI%qIFMZ^e(NJENJ%%AhsCe;S#CGEZbhW&Tt12n0Tq{RUQDOGaIBd#Z?fK>g`R=*o( zbw|r)UUEUl^ieb52uXrdX^z@W%{dy9FoxuOv6WMqB1v5`7gZ_U(Fd9tSR)vdSA_6Y5~`Y_ zkxAKY`@}AaT#iY8{i;;+j?rJo>MQ!szP2>UcWR#tefmG-A;X6eSgoHy)!2N0zC3v` zkmwGxf=>}JZ@<-&M)0i1f2LqPdq~*w8UcHC40i{>{=y9_bq*sF@p*aLu4mq%%(il4 zMFAW5G7$AX2S2W+^@Sbv|B!Z;e|0TLmkw?b+}+*XH4rSgySuvvm*DOaEV#S7ySoJl z?vOx$*(cq7XYRf4bkA?P{s8I&XYW&|YOQCD0Gbj9o7cqd@I0Dn(Wmb0*Ul^GL1TcX zq<~CHrKUYeSzKOhkzJ9#&vB+`3EQsa*Z5kXxH^687bS z3={aJlWbF$lbW8l5d|8<_1t%xgdK!D{FAHj>M1MqflR=|!}ir2m-bD!4K z%mwnpE1@tjAf21u%{B(I0~%%+ORVo(hEjA}ckbmM>st%&E3bP_8f1n$7L(dr@nZl5 z^Jj&(&n+ohWAu|puN6o(bqoaj=e@NN#=oxB_p+tBzYl! z;oYr{z3Wr5#e~~!+SW*afq7*}w(b>XNB*7#FUL*DGP_SxzQ>)1u4Bk31Bpl;*D0i- z0JInUF#FH|ByJqQsTS98ztju- zY9`0{FWzh{OaN2d2#}p{urYBlGaE2+u>8%B3~B%>P%}{dF?9j>oqsvNgb?pi4jbu; zYy)PUA=bz&{lR*tfWVym-->xdLnl)gEby z$j5;MMHwj910}S;H&Ba#4ly=cqEQDbo_GOTF6<&D_A5N_=$cnAic*0j8p1t#21{E?_HvLx_B&=swnC9@W zDz{f3Pe*qj7F0F$#oOJjzLxjc2A)1_5L@^r;ZDSoFn>$=<)-4|^zFT>Nrv3GYRGv? zro4K+41_ZTHB^>7zxmc2xhumy)()eCu_@5#3r-~$0Lipwx!446H3~}?Iec~v&vT&Z5J1RD_=nN5>WLeLwz8Sit}iP z59vCCb_1C!_m^p$#q{A~=T6loPUh|z{t*E|BbT13XgrTlGk3Kd|@hOsYu;O40%&;`oyzWQo>kZ=L!BVS_ar}m*Fv;4&pKc z$b*YWEcne3#2xs-EPb;pO#9{+rQPjN_hc__V>&tm1mvOj3wL-+!xj0(m$7$(63AFLSxyn73=_i?SeB6$<=HnjJml&bKd>@n%7TOV*(6_v56%Ke zwU{#MSS(2udcIR!D`|r;I8!|D2i0;OmAg&iDqduq6Uxy`715o{s z>6}1ffe(;a@LM?I5Rf=E=$y$~tVr?wj#(x#J_Auz7I*n=vdXXfWjHYK_tx@A@0K=y zPVDgvR_oF;yzc!qw)@(_NC(G+Ty(fno5K$aQ3Kr30heXOoH`?A{|u!_tTNY;Lky|6 z`ZLrw`hYlQq9+9{JwNm93C2pq=G-8`rdRvW6J3{U1B>$Z(ybFZIk-wkLWqyuUH81O z@wpuEe5mA>k{{gh6lZi$33G$AVEo!Q==LV=SJrFSwB0vMvca-Ug#80LP@uQ%<_O-x zc>8|Sexo^pOF>+^-cc7LIL#;ZsaTXbMOamaE3zij0DDVceL)zKR#X(j1SjxdNQYozh? zonfC>L+&{79;2*lwNO-CidxeHoGQ(Wy8OF_$Cb*t0t>*<$!4+g4=D(Bn5Hxfo>W@E z4>CnO1=FU&`x%38IK_jg^Ld?n#$kftWn(_|HRUl8|4=WNgABAR%FCQ=sP%OBVdE=d ziPXn?VjrxBw;5}?M6)M!fR>S!83}Om?D8>TNmP7_a*$3s$Lq>$b6Gl5Z8CkC&C(pL zA!jVm`}M4^-oW&cpn2tv`j?tq5{Us0Rty#_F3GCkYns5(_xGHP85#s+j>M1d?6E#S zPVXIm1t=C51G^ioOyiA>k&auAz1%&ulpZat=IPVH(|!hlS+&sp-V+c ze2d&FMLWi6>C(f64*^jBHtuKgXWrSCAsF6>|BME zg_k7kWGG<{8#1G29ctU7stvRAH@L#On$GI=Fr|B{Ru3D9zI&qhE@_wc2^X--pH9$j z%^+v5@(o%x@?>^b37oub_uJ%Bm$H>R^32+GZSUbp-uP0N_>uyVIbJ_a@FQyT*a@ar z#h3BB>qEQNURtn66n4AHD3%*v=lbzOdDi0HLvt{Byd#!BYw-9Cb#G=+&L?iornazI z6c}20Y|=oI?zqtCeNhV@j-Mo8?$=dpy3JFfBKBBNBwA@GZ zdlIxeZIv6_xQqKAa0zh^P1F`PGWq1Iuiv-@%g&X0C# zwJHo=3#D8yokL5f|NMNB2fP04F=pldPLvG!xz!0PvoSV7RB~(OL0AoZP%;(!V{87n z$|q&o7yL>?SW`l}1SxoNq917TT^AGFyp6^uvdgOzzu31dX&--Gf|ZtE)bO`E|%>jS}E(oRZtfoQT7>iMxP0^S;WO4P&t$6(Vk_>m0L4 zNIk=y`ieFb6W%c?6W&V7i^H@R0>ayeYG=~qy_XMcQ-t)Z5Cd`xd;LSEl{v3~LT$~c zv~ULdlVFxFAM(yU=aqIdg|_F}$CM69^dcQH-?gPzKD=!chs1&3d%nyyIML&S?bK4J zcU^$-$KhG>)VCTcndXu+k*QY3%ZDbe@%s2J;);V4jooO0=#}UCCBGd(_f}8S1Kk6q zZjP1p4#TdsB_TCm`xVARTVek$+mPP5p1Io5VDMq|*r((;yZ$Ot5ldR|p6})EBO}+a zC|k#&g%olN!t2qRshuPkg3>)syi3W`VN)8S;!@r(Cn@f>9T$eTD1TlQuyA!o{=bMO z|Lu35z9EaD5wNB+#9z{SXa@h0*7NT~leWJ_llN_~ z`+pWqw!{A4M3d=;fN0X>w`h`M-DmN>1eDg(3Z(TgPZh|!;k<8$6($H0=?n?Z^Rbly zQWhMkS6ZP_>*O|F1F~A#lSkT`%gZ^8y)V5x8x*@fP_r2;iBxjN6$?Z6>c9Db%6kFZ zB>YINmRDNh!!{y&3-6|}Z+w7^&a8*fD%IMWHTQxb77eQ$@9AYu9Bx~ZbyY5cwul?pfT)omK+4T3==hm$z z0)%A4$oy)7JnEC)5wOo0>9`}e5HUbvPy5J=a*#h_B;7j6I1stu7Wjh^NbIrTZJ)k_ z{7{u8C)kzdN9(W~i}}u&#+2sgq$DV@2hP0MMrpU0O$-cC#IOAuU5@r()O@$M2p0LM zB3o8TY2f*@8Qsgd2OHjCs!&hY!|l4g)-jt8`pOCFk5uL?q8$yY7%mB1;zeOxOHo2< zZg9@1OsPn&UfY4lrlFX;;er)hmY#^yC4VGbJTq2a)Z6aBLFwg;xu2{TFuSc`hgz>$ z@F72mf=kVEiIY!#DQcpx$@00JMt>G zqeJ7b`}tgpEV$3WZR8g)+Wmj;!1MvHoQVmr0t1#{%xnh0FGi!kQDHz0Km}?Bsz1Kz ztm9-pmNB9R-*a3Fu=e%6X^_LjT*KZSh)yrHH`H?aE@bg(whj-E?RwJ|Az*hg_@-^r zbK|bAjo=p%DR-SSLVKvJ#2k0gDV!m4R<6jK;JXrbvugXgfh<0C+$f4x<483uWtP1h zQ)pJ~gGX#O$|5_x$&m^%*YE%oi&wpzZC`*8C1*_ zMvP3S%?71yJ>U5!v-^y5Y17VT9B>_oHGKPkb^g7y2&%}dnRd49N?t5&zh8P&*fx&T zaoyj;N*l5E-Kp4zMd;!Yb9p7>I5cGq29?#Ox2HaJgx8E(rs0$I_b1#v(*gdiKSm8 z$#y4C;Gt%=21P!8;0=gm?*xmc|JC|&^;wv&6J^~aW5-OuO8WUHfu)*=wCpsu{~Ipx zgrqe+3PXp6X-2gi@#)FFQ`f`vi-KQDUbF;-{c4YscYje9xy~Lgya02_{(n#w{oA)5 zFzK`D8|ZTY(VLvCz@3g6a6Q>a6?xLLct;w>zDAWAsxBYS2))a zV3Bf50UPp@)wT6}Bq2_->m;z#R;OFTigx<2-!pOFgiLe^*k4gGB^OKcoqqm}k>NkV zBZv;3*uMNKz|D&l*}`R8>^@;(r;R%nJFzdR2o30p$ZqG?V%|TYeem-n@HGxC;|qvb#VbVcAnVl^hxf#KNC`(Lu`Vpe|-D-`$TvMY{8V^rv#uxG;;dcz^-Q$u_D=1;r4ztEWzuHnL zq*~y5U_njVM+lFbLue`{*>ti@^r3n!UE4l@0a1rO^8i80{D%8@*tT=gs+!D4(+NF) zY-CmD`@BsH9V56H#*Y%hySFPztWQ-~WrsN9VRJt@)QfbXG=kNGK9YH~<~s7&oxMtL z{j{$WQw%1Jr`16~i`K22+gC&^B}-!OKhrx@G+jnoM7S%W&zGwZf`D9DsBV`aVTZSP zqF+z2T|ot2qa=>rg-i?MT<&Pa6D1k45%4%k00=Gbx9wtj1DW_wIo?BRgC;;(KT~Q#TT`Y*Q zs43zH(iM$jq`bX{PE%2=IcJp|hKYWNqbRXo%6($ab@O_;XZ!m-RtBQ+Un*e384oM&opezamX3+zb#b||jnE#WqSOZWNyGR?f zo{U~^c$aMU*zxMk)@Qun<&aC+=dyGMbq)Zn!r3`2a7Xw*5TPt!C+ zeAapU4_VO~CMr&s=Y2;&34akl}kHSb9Ni*G7G+0Vgc%weK$ z#KK`@z^u>4W&AgJKd1qyK+Qn)$LnZbLkc9}?f_&*e!VUO7~)^>(Z|=UisSJ!I3we3 zriQ^tlaLic^}wbY;--BW1SM)Hg{%8w@E^Vq`StIt-h-yT`-n$}=>-()OM)4#w zqgA$Q0}5_+__kU?Bvb$X8kB0W`%=AO8WH*yAcG~WMYQM3D3P&Ni8IrOP*U2%4Ww8i zZj&%kQm~Cv*I>L#%LNx!f_vUgJ|ToD&3C3=SMBk^2GxK zM2DAF6;`SwslKb4jC71>KT$dUM2B!b8tL4cK&zu{EGtDcoLt+a5g)*o8RA?ro&QDf zjtYhdzJU@+Mty+f$E!~ZQ?QH$zzbMm_AoESN_oi_bY_{9zzV;r4K&FYSW6~A%x z-Bo_h-3UjC{A;Y~*R(hZDalwkqnOiWO*~1NBU;F$!+5{ydyhYSdQ{WN(zbmy`H2U( z=a}_%EduwP;XEAaH~`n2VhbM>L?qG_(pvCrJbYc3g;r5YoZN_!;%bnD zJJKAV{Slxt4r`)b35ZE0ou<|#T-R4|$4HL2q&g@lyNu%3WWgAZLYQ>O&u5$`Rkr`e zGTJ&QCGh1MO`HwVN*Nh4K5_sSVa###VJQ%6h77?B@gUXcP@PT^N^+AV14h|UN8>{= zjIh_^56t7Ub&nzoKW^372N~C)n-cd{`A}oBUbH#+sxPHSsggQl;1gsmBTc|LM?~E* zc^%Fpj}nrbh*&x7DxNwBJuR(np)_H?#M}xDS$}pbd(JmwtAYve5v$dT8E2z8x@@Mj z7|uiDE_NutTXsr!ETIB~-f1{B!^oZ{w8~O7^W87#mssXiBwq_Y*?V*P0zz**D@@Z$ z{2ZeAkw}f=S#qh*WH<8pEpG0SZh(`RpL|aL;>ufnTyTurUH@NXZn``v1yFIzMI@@s?G^DRBVN6c&WanQ4Is4=M*IOnL?cCRi^Bv`!R zWp!g-(n|1}QiYxntq0CIrV*SKWJB58(i%Ul6cvDTPA8Y->H!MH92W|kFF3Ofau+?olVQ2RqA6+9%|R=1ZVmnJr@~b<)>&T(n))x=O^c zE$Yo(8xLqr~#<{2P(}!qcx9! zXiWurD%vGIp2m@hT!odoYUSb*2Q@t_cJQP#diN0kD6|Em_q7^@CK+;a%;);S#8rpi zXNvU+5h7!O9Rm;PV4f@ZYEp&Z2$Y`-3~0p=H0meNsPbI5N=xjE z9~BqOm1ozyWC`Jq2rUU%M|Sen0V+*26~qM1(=t=qOvFz+h-()ds6<#|fJ(!<8_uyr z5}RPA>y>R1HpPC(E<&5$H+nq)P-*(lWj9z)naSOQSLTw7uz`!&#;pcxHDxz{^gu4s zsfSb*;r&Hz>*U*%CDjyUsjAl{E0SO~jRGUiQ@+`8g`2OgBf49!Zs7f)7-f#Iz@7(a z@pMjaQ)kc z*@KsFhk}{(eeP)1*b=j%sUon70cE|1VEX-L)MapX1aY58Kf}wy?Kbcp0(;zTTIAU; zbbAPf&L*cHi?Uk4-S)aa>k+jpKQ=o$eic=2ccHGhj^Ss$!!n}KO!Fecz*6z~YWbkc zIdX-exi@3}a5v}bTJF9pIBCM#F5f!7tQm--|Lz+<#`Hkbw_jrUrxtgsvZo)|R42a; zz@pIFm7YhM+gvJ(>9gq+HBY~b2}q+<_#$$4KtjF5Oqo8px1_e@MV(a8 zJ|Ehs?)C}kxK^yrQ@n4|%d0<6E$Xad4Iu5|f65>D_s=aCmp-Ej7nd=sJ_oQxW->Hp z`rC8+ul#|(3mxPBL|s+fsS^@xG42iq0tnt1Y?A^31jxSw2!2yn+y4n&9lu30+=!HM zpbX;B*NOUi8hDMG1SlN`7>og>Bi2J0_0OJ?qXwBqUX@g#eF`=}>RT>UInB%~} zmQ%j%HCq~H8-BE}e9pjv6smNLxyFTy>cx9Zq}qQgmWQ7ksw)E@{GCLZr^Wi+)Y+Al zQu(`y7|BwE>MUo3u~*CK@~NWiXeRVD3+Oke2eLBCE2O@pUp~FRX$Z%N$yvX5B@^VJ zfH&CWGxTizFg?JBBFR~DA}zl~QFgHgT;NxhKG)7>K;O>OOR5Hnefb zQDSicv*Dh7O2rK(ekFL)lg)0%>fP}2=YMp)6oRD$Ffr~C|2N|)E5Hc@Xb&8Wj6eVZ zyD=MZJoxLcWl#f9ftrEp|1zGw$573;`kDKW@svAq=J$A-jI4n8zsFN%D*x)fIQ$g~ zfMws|%|Ph;cnLFT?~A^TjQp*`eyspNfbY5^tw8_?aD9JJBI_QbQP{m0=8%!g7r#Btwt}W%!;GA0?5*_p{@8j*w$-nYw8*<9L63HL zW5LWz^BmbgLkfT92C2m`lV9I$&__+k6c}9!kPSt7AB;e1qI57_KI`9VBFebmY9exw zng~1>q$cY8>?rGQ-oZN{_{Ez%z1bCT4|emH?)!R61MWcuXXEJ%W8T1bh>MleWncRg zKA%po0BRzr6w2`HBqCz1$Bz2QHvVb@@5y@KG?GHsq6yaD5OAVDLBKuL{s93$-;M?^ zJph0-?%wa)gUrCzFc#W{z(Yq!PH`Gud#iDu$n7rV&=5WTVqKcfj%g7tm|Uj! zJllifYbJQ~R4H+dJ?9w$JF^dUWDRruEU?tJJtU#)E6}h8>liP?)`}I1Xcl<*rLU-K z*HORoa}YDqNN5I5fJ9dJMAE*YXVxfqX1y5IB}$#aauylQu+C^nz}GL9$yD!@_v(%a z)7|9?%c`%+OJ>^C8t?Wa=@Z}oS{5R@i-_a$OsR<&nb6DHXaHj|B9;1XDHsl`GX=@r z#}z}1SNBDU@Ec$FRnF0v6b@BAd7o?c$Lg~UTUiVAuTp5my3Pku6|IdperoLh;2gG; zWE6kvr`^&j`y7Fj%Bz;l_W2}g3P%Vm1`EAdGQqb*(oB6eZsC38j225I8KJxp_oHE2 zG)WuVK%g|5X%ef8dbQEJOmiL;x-R{4&FfGZSE`~^aQ4T8X1vz2DhR`36^HVuC)ZF0 zyO1|RG`F9RX?~OnmW=2Pa*Ch6dXu7LGbfelqOMMx8!bHFH;U8unEG@>m-{9_HM?5_ zn)}C+0z#9w_Oaq=!_6~0!+*+^XaZ0YrNEkoyUj_)bao}yUCtMNF*}v^wNJR4q=@?JNN(W+ zVdRtaUEhe6&RLw2NN`&KVS*X^RuPI}8y0N0-PtcWMnGX^JehK&->eWq6r=BfbR!&@ z{Iu=|ak71IkSOcPTWcu{;VO8h{Ga3{-!-*MKcxG$>X@AnY6wOLi~cCO(N6b>mJ0 zortc{6}1T_aEdgw4w?d(M%L+9&V5|s8a|}aOEsv|Y3X85F75ujPPZTUdAG$eN*tZv z*#$e~_?b3A@|)x8Tf49b3QB0CTc~7SC5UYCJJaFaJg=5IkqgLM>k`HqC~_^zcKUoK z<%GezxDnK)z(IJkh#vem0}z7~i*F-vXC_^uiG*wG4%QrE^ z2uH&387TJGMVMpqYH19V zk~6ehC1GCkwn`7S`huzFY+N|%Qsz%^$f@sBZhzbhV7n~EcF=G|%iDarMSq=kx0Z+z z0N|vHNbB|2s|u~erlUbLY2^%wOv_oBlKD@@Db5#j28{%qi@p2MIn8iJHc%*KJ^~&9Ya%2 z@_w7%V8p~Otl@m>2w!mS5uUK+?m9{+rKWR{RV7C+m-z8|sZOPBW=M8E7Jk8v;+Pm@ znJrxmoxD8313HK%Z2+Q4S0$#Rsi|6#bBD1Cy9cNTrhO6i$31yeFuZOW2RJq&3)tJO zAo;csAm7$CVCTjBE#ID{COhXnqRA@xhkScy_;mKb17s$I0htMpO@EsS!}!a9B{L-B z-aT6=*Qu=b!3|=Xr^R~Sli(9o#SNz^ASzH4{%%79_C~9-mHpyX<;@~U zzdfpT!TMH%r{|!oINx|tA>ypHbgh+o_v~JK;5q80hD%eLFQbKGV)!eZ%KoAk)^hc# zyZ!yI(v~&*sKG&s%+@xY+y#s$JZ%r>%t*%w1eq0=!6WM;3TKXjX18=E-+t4SvWk-A z7Dh7Pasl*add}SA9n38Ek88QnBI1^gw*-G4sz^FRr;>ofk^g^4+x)lFv!MYO3ky3C zjl;^Q&uqY@&tb&;x9J(w092r6p!(zGGp;K2aTh>(kX#acF(acN4@hW8Sf!Vs$*)*~ zKnR(~$2FCFEo-&>wjk%(m0VU~Wy-=;iX>Jl!`*%V+Rfz3!EKB43`0h7DAaSmshCM2 z8%hW~x+@5B&oqKMw}0-3l2La%db4WSv7V$szggF7BR_De1fh1S(NulnclfFFumTv( zM6@tyqR(Lj(1{hgEB2l)_ZdcVHZr^RodUR#yYVrimnji(lx1T1Qw!wb?Fo>ieA^G4 z;j&NDIjZsd65$U%zNc91Yo_0#fK;yzMLpMID&-_%mZX$9gnV(#0-3WbL}c(x8at=pzKZ^+?}Q| zK1UTRXS=*ZgprlM(kHk8%Gzw%+ySySmpG#owyuV}8S2d9H3G#d_h<(5IWe@XoQCK9 zYmGkFI;Ah@eyKaLlon_r47OVLq_QBRmty#`p^}@OL;1}ZKPcUJ1FSZv3FT9x3^I_l zIT)`k>v8M2Zm9|}7_k}HY8k!S{~!c!v(TW;)TH%Xj2`LUsBBfizD7&`y;qek_Sx@| z%p}v#8nr_J{+|46lK9p@ApaVb{I}tQKt0K(Gwc9rMRHo-9~qb@Y0#%vdfe6!jfgJ_ zUJQ|XCNj=T)km?x5c2Mp86WmJy%|d$dxa1&u%$v4bkrxOopKPgRZx&wCdSs{4WOw_ zvcP+mSxE7Xq%BX5Ry^l)q^kgux(*?euwAc_Yl;^}6w*XAG=iyuL2dl;i~Tj}2jry9 zQ?JvA?{8zf`*lpPQ(P7!?svZ&Iq5A$M^|?-aXlKzJ|BxJbR7ADTcI4N(Y;=p-e+D+ zS>b4SniBvIf%&ZZ=clA8Ce}_H_>Bnylm36-a7~yDxC~j1Seb#%I6EUNBcsvZJyxIw zpaL}m)gMm@hHN<4LDh$5~V3L2waPD zUmE6;zY41dLFv-eA}^yN&?teW-9Jseb6Y=d#jVtoVGw<5<23Vmz@D-}&!kbr7-O~Bxn|h3UoV-cAVTdg+q2n$( zc3FmbV(f=+u?inxmR@=-kIg%@q!p|9Jh!lujs!$>6u&uZd3qiLNpLkxbs-2lP)eMyO#r{iZF%G#m zZ879Z@>xxe)GTApYmO z<;}$m-Qg44A|H-#8&pny)!>(Xw``4_D|Trcsl%>#T^p6D@x5W!gu}w-Q))WlzKWZ< zpcIOV4<;4JOh=j1LtZHF_Bu`wdCEv-T5;yGfR#YLI4_8$u#lZy(x?i))LX40q{$Zk zQ`uY$mkE}VVT(Nbm`UU$ds~#Swtvx04O1bklV~I4qY{RTJiRa5^Fa?aD=z*faC zT_03C>mZb8|99FjBKgeJHABRb4gNCr4etQM5%hJe)ngg`f$pD9Gsm}?*B7M#Q!v6u zrYV%^m|dEiyBHIYR)JUs1EW5K|YeI`k$ zK7pELplt_1LW*bDtGl1LSKAwcv*wcc9_7D-?zU1b@LblsQ{{Nuy&q0ogu?@V5t_g8 z;qgryESe=v`QDp0==tH5qR*xQQ{H;&apqaCoc==yjDB(OQ9#w~fn?ryoivZZJ%;>< zb#Y-3LwFw?a%EOcbc*-eAY zbb(XiE!Xn*Q){VuNGE$;&Dmi!^1U*8&*+@(FNGW3qpHXFr!Yq!?ejp<9@g2&!mgTB z3teRE^?sgi1)HY`1o6J6{-z(MR*(W~3*(Y>rI=byOB{~NGFsPNxgKf#F~^LLjFOYI zSd%%KRNNvLL1sF{zMd7!B=e5S6HeB)rYs*u{buNe<}vR1>^2`mADLyF=ezwY4>V05 zgzw)C%8ny4g%s3g8Uj>IGqd*B6V7)c2Y=CY%zdj@eaii;`k;ErN5y+HXoMOO+&%qy zvn}=jilnT(`Qa~9S{n3f+=u^m^~G+$&J0{7*bEpsISiQC*ti(=S^jUUFHo~Ty^`kt zPZqPQX;c0ZqHx-87V{y6^?lWBfR#W%OU<{$Z=`j-FFM2E28Pq0EKM^q$|w#G?>n+Z zeSZB6*=_O-vjc;3(B(c89#Lw$X@j--RE6p$&`kuo%M#S|JpyDcn!}D1IKIlI29>!|ZNTVrD}=DnCpBTW+cg|P;$1z!Nawp*fE!3z+)`sUz>MD`9(w=B>Wleb ztFQ3itFOe!Htv6|zQ`-ZCrCl7uMWaLt-k)1e`mWT;s^NXTw;0o@^nO4Va~p~N9Ddb z)*%8D-HY9SqZz!xfamhn{vNdY@(@^>IgbUcz7E+v&%ObxFPujnm6dbiPL~*nwOz!6 zuPEo}zE$qMv9TQw&Q{Gx`{d~sE{cdmQ?Rq{VITbl7khj#5R8cvkhoZ&V|fG0>Ba~5 zd6S{IEk7&lP?!zZ;7O^(0WLZiz(q%|h+i@Sxab!C;i6kCk-RooUrFU?QNq3~f(crJ zkla6U>0zeU4B%?B0XG?vNSZ48go?yl1P4TXP^kZo_!#m;-4mKmOI}bo%0k@q*%)l` ztmQA($)Q)u_gTzjXtvt4fizGbwIg#*DEnUGQ20k2p3&7-N13{jYv2Yf{3q#Z3FR-p z%BXXVWkfV^<|G|&S(84A#vYzTn}b|*m?+Hh8R`nF#{K^54TYy_fQzo)=9Ywgy)eTA zUhO=4&&8^?=MIR>`-h8;e~^wHG7@mnRsO?8N4Ja13c;$U&@4~kykcTp4Y=r(Q5Y%_ zL7{n#fuJN1XiFdoL{WrpYu~wCs(y9makY)H(;B7iyxRD@0w$kFw5KMa-8A_idA78A zoDluz9davD8L(62+HlA9F>R)iqW$m$@HS7S3l_SxKVt-p^9+kW8Ei=_V}t_^xKMFW zWS-UsOI>T~@P&z+cjD&vUOS=OreF5i2(N2JVMy|9ig|?Lz~Eof9h0WNrc=AU7Kg<= zFGJuB{uLW%(;z5M|DF$zkegzG;_`ih-Ly35>{_HIA=-O4#qLDJWL7C*Vq3}`;*{i& zD5=@&u`=eI0O*?X;oY08-W<6rT6pic@40TqkXlxDo9%~SU7JlY#k|uP^7^)W+o}Hz ziAc8?2m)z+hKX}S)C$ZqV~voV9DE+S&qGo$QxW*f?rVYAI=BK@M82`j51 z6C(=~3lK-d#bLzGVf1H|4d^d`3iQ`N^~W%E3h3ik-y?QleD@^`#5c6R>s~ju3EpW4 zDSTUoE+l_b6`flLB?eEbtP1;Uv({^=+Nd!s7n^iP2T~t@Gj6jnBb7|R>rn=Eyrc9K zo5SOdJFPt3M6)x>FvM41$EG^Xwyk`mWh||kj^i@hSv})++d0Er(H-Xzn!`S5wZ=kN zXCGnnM@?v>M-WqHFYXS%{s#G^jf$n39B4H zcI~caB#)k|3pE(B;AUD8uy?t!J zyhgjt{qnJRB$`+@hlE>SG;LWLe%vY!@mS&U3n^x&fC6z1>jyQ;2uLMrHdjtKxTMyW z>5eG~{ey*uJTX?pDuE9XlX~LQ{R6J|h;-IN*v+=peVj#9fX4BIHh7cy*pVSMtIsL? zuBeG(4_pDdkwK@o_7-o0V6kNS*2P@ftEh#0{Vs5e}t8_>_ zI>NiY&x*Mj(X{?mW^g3bzjFMi*fY|27 zoIDJS*42+d6;=3z8o@T_$J*7QP%&6Rf{ZLxXWRu@2+f)Agbh>sl5sS83@+}26g#aH zp!dpOW5k*ehkTjqBLz=J;mZBn7Kh!&5yl!EF=JxRH)I)LvBfFG$D^5CJZX)5S>(NF z=x*gQQPW~eze-~VUE|gDG412j;f7GMG;Ld%{|w0+n>=6BwoRRHSQOf8htDG9Y$~0uMAJ>c9Wp z{Xf1Q{spmNVh6H|x#t)@gM40RY zASsBRQT;csoaY4Ag>Oe;`bFVoTP^QuXd;cUNV`_!(R0yK8joy9@=8uc|qn5 zcL*2eSift;T6QeQsow|3uU~NXb*;E0a0P1l8>oX`histzxykj`cyxsAMiHdVCxG zykf4J;=^olcNyeaaoM-`TOuN!@$+o-vkki zs>dmZ6a+uxgwI-8gv*V&@{~7DbzV6t^j z6ulz%#!xH_v2!qWON+do4|RMxH7SVonZ7-ap6GsFTP7+Zx+N1(`K!&9@Exq$2Vl+h zpZMti_L*ij031F*V1uDPfD1NcV+5$de_OBo%jyGa_NQkW#79qOMD+%2u6orU+F}G} zr|Z0B*v%CRWn~(Z%}ZWub)hW{v766Ozj(6;k|K)Bd^w5qJZsh+#CUwV0w+2K@zJZD zqsx>=gx6YaAX$dgz}m9ofAi7bsh@SgzV~F)Zen`N38zg=5ey zzOQ|O;I1%F4BnIFhL7CQdrI?E6GF-OklRz&m6gJ{+xp)<8RKaH1@BO&MzCK&Xps)0)eP!DE9i{QA5Q8l4!A)AS@%Z}Oi*vE#uz>9oQ z4m>-m&VT=$mEyskkvOlG6jrqc_2QEIwrFqjs$4)duwYifwVmr7G#6PcRt9Zhk_m>& z+Z2qoZ*mm`pTvf{Pn4f4sZj&XtPkIsk4WP8kn}xraib~k9!53{sDXR*2tk{{*U(0Y z8}KGXW@LU7u+%TPL7^p8SpPbp$l48N6b#NY%p=$sg;pBy80;8F7d7wpr2@I*DbM*= zXZn1dwI@6r#LaQ5HP83oMxVrQfYE1nOo+;eC5E)`ZBK@os2;TkIA_?YV z{0neOQLt1Ku5^NKx!Ri&!!l@INqi->(=KeHN3X&^ZTd`~}VxP7gw7R32^19+6TQVwJVZhcMq!14r|W zYA0|E8b0wLxoJ|^^R#;NZWtG-3M}TmePcKFL#8dnr&XkkAb-ondIc?Hbo<;vuJs*G z|Gq`<@D8*04+GSlb531{1?**&-N$w(+bu{w%IxLv}{ATcH=t`X&rUYE;d}C4B51!(Ag=p5wxdE@daE z555^(Vl@$At(osK5>J_!o0gdz;Xb7l+~dSJRTMENg9ISvjE1AQia7JVQS!V4O0hd04h*3Q2p_AoT{z^ul?Vn99S-&i{Pi=sm9{Wx(~}Obn_+VM*)6PJK;-X z?A9yPFOOEZ*d1{N>a)Nshumbl`P9U-+3sVExsQYYQ9pQ$q&EXT_L5{(b_-r14XoCL z((I*N;qA;7yM&ZtLkEh<=s)L~J9MtB4uoUY0 zDQyxWIj0e1J%z6n)-*@L;*}`!VcIAYHZ?nIOfuJ4Tv^2AV>3&YxJ%=bdHE5L$Z}*- z1J$H5X4)-!MiDx~Witb0=cb9Kb7BaWOu?+?*i_!AL@q33k59aYUGC+Abh$|5>aRET z+H~Hh5`!Z+qdO)zLgAurD=9<}k)r4Ye`9&QcEVouotWV*cffNGYFmA!W2(p_u07a* zIPoXDz3Q(YHS72CtaUM@2%N9E$}A64(X!6*Fnm_o;gEm8cc{?XR(>`ppmByA&7CO6 zJ21Fa;7j~zn7#D?8G7*g+19BVt?DkSxUkc@>IN&2NE0#jQ#IF`i4jA+&0NcZXjTp| z%)P6)Ewoz%4RdHM!+SRZ%>>VpSOqEL?9*S@JeI7W$I)Y!p&5OllHXQ23GE5V=vV)& zWkDHpdQl#b{WK_uEKSbFgNB1K?-JEqhB~6iG~-+>8&n{BIGG=NblukQxovc(8Ju<^0{+AO8w;n{X7?&Xls+f6g#UHtAJnGJs78jj)tPJR7Op-rc;=Le# z(Jz^&=*4R$Li^*mYqMduFIrx&@+(6bil>U*z{Kt0X%&|E zU>JSvl7CQq{*g+pLJi|%@Y*~=!K*au=EC=cP0Ly}lyv;fV(3l3PV4%CLeBHI$sLYA zKfP}Cuf0ow2Wsp;+{FIvcN?bxC*WcQ6at*AY(_?)P4wS~Hc$glftrEpe?Ptd=MORR z+XAUi!LPi7_@oVv*h^IA=U^!KyOa%BR?Veoo&h!q0TBVJnV$C+R7UId`f?{v_GD$Y z09No%u^)!8vF_$6hExKD zD_TZ9qGgIzx67R^3{V(3$D!Q&^$r80JCW|d*W@fUOnbBfq28$UjMoShmGh57z z7Be%m)O(+*K3(P82yJP>x&pD2hX)&3et?k>6qH*yt*oYl^ycL~_*#b8u*)vcwi zA7MF9-N&FshltoKJ0-1L2126=*izI)V@bYWQ0FtTn|sO5XQPZ_>!0b|M#I*!H8GF6 z)5|gJ)0Fqnkl^s9*N^VJc;yevj~bMvfwo|0q{#DR9^0{$ENAEQ@w%YI?8ZVQ1}#NPIU$3`P+P~ z>m-8NK{;POAzP7r*MqiXQvc1ITG+~3J%0giHk<=j)J!H?s*G$a_1Rp>9I5*;`dH9ET`kX>uVRQ)H1dfZvxGpMTK zE@*5y)4sWhUE2nraeD;w+(BLLKW|%%c`AL$I{H9uH$~Fol+Hm(X$)?LmY(`C-rcjE zs)!vWaC@o27S&T)@-v>*!m$l$ADQna2*SAq4AIYDd_EN9t{m`ly!3Pj&wa6cW-dA} zKIVZH0Lr6$qqNmcYNf?u1m2;fT}q*paCK}O*$T*37Yo@9qC)QDwV+j79QC4DnfP+1 z`;*-3=-VGHUIiQa?QekRq$A4zLE+~xVP$7wVPIm{2dF_ZvoQm_ME^x84Hy6jU@##5 z&(@*&UzF0=oWPm1l3s)km*cF2rch;$bG$H~zC@6xcS#KR4)f{aUr@>5W*|>WA*c<1;0c z-G%KZfWc}#QaA2U_1LDCwFiG*D8V)c1^q&JUQ=}|2V?M*Rb_Taou^l?0b3Cxcr4S; z>+cgh$RTdA__dVDwB2%^m+XuE)S&hqR*W>bvQ+)ceXFo*R4AhksIXY9$!DI zl5nbd>#K4ah5)FbbHp{dm~zXUM{UX8q6Xye2GY6uEU zfG1q)P@!sAYc*FeisPn{P^+;N93_)qBlR6yQHAAaMqK<~3%(&~aJ1-PCy2bUb8gEP|*KG+BYResUS<#E9gskpWIJ2!%mr)nsDY*I$U{l`KAn zBw2j4A4w709XI--&zLy^S@12{lKewz)?j3Pzj5&ido63T+EoKLV;t1f+q7(|&19g> z#*-%gQST9D0l~YkSsJcs+i`i^MXcRd*Va-;VeSC64~}7Bn&|u9tG(S*E3Spb8d zbY}nQ6)sKXm+sMR+IP#xIt;LI^2*yY*^}(@Mg}zdPfgQGd@x1bD+ajWiZGY@A7A@Z z@lhnNf0SgrsH(jzJx_n)+bCvYy`<#s^d^wm^F3~6*pt3>jVCPq zS@3$U{!ZjYq=qj3a^AnXn!-+E!z zj&9?c-|B_E@cZq~lg6n6KkV%m6a8t${ywQZbggaOR#CGAGvt)UWGrD zym{0ily&K5QTYKl-5);7lnb1mj+76ym+{;_Y1(_@tG2bTaPPQwLPA`X!tEj~w!WqQ zsTye(Gwz`UxV7*78;Q4nJVxoWvNCcQ0v_?%0AB#rD^7g_&OhJrfdPO31_R>ny|7+I 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%0D$n{>szY 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⩔$y- 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%0A6o~p6Vvh3Ax%w| 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

n<>h-;~>6Q^xOG{RA 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�=d*}vt9aIJH$eS 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 U%T!dp;E(VrDk?Q 0)) - in - #"Filtered Rows" - lineageTag: 946e1eeb-d5fb-44ad-a36f-17324489be24 - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - -expression GetDimCode = ``` - let - Source = (DimNo as number) => let - Source = Dimensions, - Rec = Table.First(Source), - DimCaption = if - DimNo = 1 then Record.Field(Rec,"Dim1Code") else if - DimNo = 2 then Record.Field(Rec,"Dim2Code") else if - DimNo = 3 then Record.Field(Rec,"Dim3Code") else if - DimNo = 4 then Record.Field(Rec,"Dim4Code") else if - DimNo = 5 then Record.Field(Rec,"Dim5Code") else if - DimNo = 6 then Record.Field(Rec,"Dim6Code") else if - DimNo = 7 then Record.Field(Rec,"Dim7Code") else if - DimNo = 8 then Record.Field(Rec,"Dim8Code") else "" - in - DimCaption - in - Source - ``` - lineageTag: 510862c7-c25e-42da-9d78-6001e7156983 - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_ResultType = Function - -expression GetDimCodeCaption = ``` - let - Source = (DimNo as number) => let - Source = Dimensions, - Rec = Table.First(Source), - DimCaption = if - DimNo = 1 then Record.Field(Rec,"Dim1Caption") else if - DimNo = 2 then Record.Field(Rec,"Dim2Caption") else if - DimNo = 3 then Record.Field(Rec,"Dim3Caption") else if - DimNo = 4 then Record.Field(Rec,"Dim4Caption") else if - DimNo = 5 then Record.Field(Rec,"Dim5Caption") else if - DimNo = 6 then Record.Field(Rec,"Dim6Caption") else if - DimNo = 7 then Record.Field(Rec,"Dim7Caption") else if - DimNo = 8 then Record.Field(Rec,"Dim8Caption") else "N/A Code", - DimCaption2 = if DimCaption="" then "N/A Code" else DimCaption, - DimCaption3 = DimCaption2&" (Dim "& Number.ToText(DimNo) & ")" - in - DimCaption3 - in - Source - ``` - lineageTag: bb9e9440-7a6e-4528-b25f-c8df576b848f - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_ResultType = Function - -expression GetDimNameCaption = ``` - let - Source = (DimNo as number) => let - Source = Dimensions, - Rec = Table.First(Source), - DimCaption = if - DimNo = 1 then Record.Field(Rec,"Dim1Name") else if - DimNo = 2 then Record.Field(Rec,"Dim2Name") else if - DimNo = 3 then Record.Field(Rec,"Dim3Name") else if - DimNo = 4 then Record.Field(Rec,"Dim4Name") else if - DimNo = 5 then Record.Field(Rec,"Dim5Name") else if - DimNo = 6 then Record.Field(Rec,"Dim6Name") else if - DimNo = 7 then Record.Field(Rec,"Dim7Name") else if - DimNo = 8 then Record.Field(Rec,"Dim8Name") else "N/A Name", - DimCaption2 = if DimCaption="" then "N/A Name" else DimCaption&" Name", - DimCaption3 = DimCaption2&" (Dim "& Number.ToText(DimNo) & ")" - in - DimCaption3 - in - Source - ``` - lineageTag: 7a06943c-0bd7-4fbb-8eb0-f507f5438d06 - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_ResultType = Function - -expression API_ENDPOINT = "microsoft/analytics/v1.0" meta [IsParameterQuery=true, Type="Text", IsParameterQueryRequired=true] - lineageTag: 0750104b-0db0-49f8-9dd1-0d6053b4b02b - queryGroup: 'Parameters and Functions\Connection Parameters' - - annotation PBI_ResultType = Text - - annotation PBI_NavigationStepName = Navigation - -expression ConvertUTC = - let - Source = (dateTableSetup as table) => - let - #"Added UTC Now" = Table.AddColumn(dateTableSetup, "UTC Now", each DateTimeZone.UtcNow()), - #"Extract UTC Value" = Table.AddColumn( - #"Added UTC Now", "Extract UTC", each Text.BetweenDelimiters([timeZoneDisplayName], "(", ")") - ), - #"Remove UTC prefix" = Table.AddColumn( - #"Extract UTC Value", "Remove UTC prefix", each Text.AfterDelimiter([Extract UTC], "UTC") - ), - #"Extract Hour and Minutes" = Table.SplitColumn(#"Remove UTC prefix", "Remove UTC prefix", Splitter.SplitTextByDelimiter(":", QuoteStyle.None), {"UTC Hours", "UTC Minutes"}), - #"Changed Type" = Table.TransformColumnTypes(#"Extract Hour and Minutes",{{"UTC Hours", Int64.Type}, {"UTC Minutes", Int64.Type}},"en-us"), - #"Switch Zone" = Table.AddColumn( - #"Changed Type", - "UTC Offset", - each if [UTC Hours] = null then [UTC Now] else DateTimeZone.SwitchZone([UTC Now], [UTC Hours], [UTC Minutes]) - ), - #"Set Date" = Table.AddColumn( - #"Switch Zone", "Today", each Date.From(DateTimeZone.RemoveZone([UTC Offset])), type date - ), - #"Set Last Refresh Time" = Table.AddColumn( - #"Set Date", "Last Refresh Time", each Time.From(DateTimeZone.RemoveZone([UTC Offset])), type time - ), - #"Remove unnecessary" = Table.RemoveColumns( - #"Set Last Refresh Time", {"UTC Now", "Extract UTC", "UTC Offset"} - ) - in - #"Remove unnecessary" - in - Source - lineageTag: f0639757-0fce-4331-8306-962f88fd5c4a - queryGroup: 'Parameters and Functions\Functions' - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Function - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/model.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/model.tmdl deleted file mode 100644 index 23c95c1ae0..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/model.tmdl +++ /dev/null @@ -1,98 +0,0 @@ -model Model - culture: en-US - defaultPowerBIDataSourceVersion: powerBI_V3 - discourageImplicitMeasures - sourceQueryCulture: en-AU - dataAccessOptions - fastCombine - legacyRedirects - returnErrorValuesAsNull - -queryGroup 'Parameters and Functions' - - annotation PBI_QueryGroupOrder = 0 - -queryGroup 'Dimension Tables' - - annotation PBI_QueryGroupOrder = 1 - -queryGroup 'Fact Tables' - - annotation PBI_QueryGroupOrder = 2 - -queryGroup 'Parameters and Functions\Functions' - - annotation PBI_QueryGroupOrder = 3 - -queryGroup Measures - - annotation PBI_QueryGroupOrder = 7 - -queryGroup 'Date Table' - - annotation PBI_QueryGroupOrder = 8 - -queryGroup 'Parameters and Functions\Connection Parameters' - - annotation PBI_QueryGroupOrder = 4 - -annotation __PBI_TimeIntelligenceEnabled = 0 - -annotation PBI_QueryOrder = ["ENVIRONMENT","COMPANY","Dimensions","DimensionSet_Blank","DimensionSets_DataSource","GetDimCode","GetDimCodeCaption","GetDimNameCaption","Sustainability Accounts","Sustainability Account Category","Date Table Setup","Working Days","API_ENDPOINT","Sustainability Ledger Entries","Country/Region","Responsibility Centre","Dimension Sets","Sustainability Goals","Employee Ledger Entries","Employees","Employee Qualifications","Emission Fees","Employee Absences","Sustainability Sub-Account Categories","ConvertUTC","Company Encoding"] - -annotation __BNorm = 1 - -annotation __TEdtr = 1 - -annotation PBI_ProTooling = ["DevMode"] - -annotation TranslationsBuilder = Version:2.2-Updated:2025-05-16 - -ref table 'Sustainability Account Category' -ref table 'Dimension Sets' -ref table 'Date Table Setup' -ref table 'Date Ref' -ref table 'Working Days' -ref table Date -ref table 'Localized Labels' -ref table COMPANY -ref table 'Sustainability Ledger Entries' -ref table 'Sustainability Accounts' -ref table Country/Region -ref table 'Responsibility Centre' -ref table 'Sustainability Goals' -ref table 'Employee Ledger Entries' -ref table 'Employee Qualifications' -ref table 'Emission Fees' -ref table 'Employee Absences' -ref table 'Sustainability Sub-Account Categories' -ref table Employees -ref table ENVIRONMENT -ref table 'Translated Localized Labels' -ref table 'Company Encoding' - -ref cultureInfo en-US -ref cultureInfo es-ES -ref cultureInfo de-DE -ref cultureInfo fr-FR -ref cultureInfo cs-CZ -ref cultureInfo da-DK -ref cultureInfo de-AT -ref cultureInfo de-CH -ref cultureInfo en-AU -ref cultureInfo en-CA -ref cultureInfo en-GB -ref cultureInfo en-NZ -ref cultureInfo es-MX -ref cultureInfo fi-FI -ref cultureInfo fr-BE -ref cultureInfo fr-CA -ref cultureInfo fr-CH -ref cultureInfo is-IS -ref cultureInfo it-CH -ref cultureInfo it-IT -ref cultureInfo nb-NO -ref cultureInfo nl-BE -ref cultureInfo nl-NL -ref cultureInfo sv-SE - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/relationships.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/relationships.tmdl deleted file mode 100644 index 7f468c2b22..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/relationships.tmdl +++ /dev/null @@ -1,48 +0,0 @@ -relationship 83ff032f-f54d-cc36-307e-c2abc6d8d815 - fromColumn: 'Sustainability Ledger Entries'.'Sustainability Account No.' - toColumn: 'Sustainability Accounts'.'Sustainability Account No.' - -relationship 732cfe87-eead-7b95-6393-fcc0eb423016 - fromColumn: 'Sustainability Ledger Entries'.Date - toColumn: Date.Date - -relationship ea4ab240-216b-a867-8de0-b48d3772d341 - fromColumn: 'Sustainability Ledger Entries'.'Dimension Set ID' - toColumn: 'Dimension Sets'.dimensionSetID - -relationship a4dedf9c-4f56-67b5-f7c1-66847d73c73d - fromColumn: 'Sustainability Accounts'.'Sustainability Account Category' - toColumn: 'Sustainability Account Category'.'Sustainability Account Category Code' - -relationship 99183fb1-8ffc-91cd-3423-1160bb3f94c5 - fromColumn: 'Sustainability Ledger Entries'.'Responsibility Centre' - toColumn: 'Responsibility Centre'.'Responsibility Centre Code' - -relationship 37cf36f5-5b3f-c84b-3a8a-8f1ac0524728 - fromColumn: 'Sustainability Ledger Entries'.'Country/Region Code' - toColumn: Country/Region.'Country Region Code' - -relationship b3aaa795-f726-8ee4-5dfe-8b16f799b20c - fromColumn: 'Employee Ledger Entries'.Date - toColumn: Date.Date - -relationship 4fb12652-0732-2679-a15b-ab0e8414036e - fromColumn: 'Employee Ledger Entries'.'Dimension Set ID' - toColumn: 'Dimension Sets'.dimensionSetID - -relationship 21f7dc8f-8fae-720c-6387-35662e6ace7f - fromColumn: 'Employee Ledger Entries'.'Employee No.' - toColumn: Employees.'Employee No.' - -relationship 9969c7f2-6266-e85a-43f1-7900877a6720 - fromColumn: 'Employee Qualifications'.'Employee No.' - toColumn: Employees.'Employee No.' - -relationship 600534ae-170e-481c-2fc4-f96626c3beea - fromColumn: 'Employee Absences'.'Employee No' - toColumn: Employees.'Employee No.' - -relationship b8bfae20-1df1-2c17-ee79-e251fbbfc1b3 - fromColumn: 'Sustainability Accounts'.'Sustainability Account Subcategory Key' - toColumn: 'Sustainability Sub-Account Categories'.'Sustainability Account Subcategory Key' - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/COMPANY.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/COMPANY.tmdl deleted file mode 100644 index 2b669ace90..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/COMPANY.tmdl +++ /dev/null @@ -1,36 +0,0 @@ -table COMPANY - isHidden - lineageTag: d4a507c0-3b24-4242-a536-0cca34435194 - - measure 'Company Label' = - - VALUES ( COMPANY[COMPANY] ) - isHidden - lineageTag: bb4cc010-0982-4057-81e0-1e917b2ab27e - - changedProperty = IsHidden - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column COMPANY - dataType: string - isHidden - lineageTag: 68f933ef-dd5d-4a1a-aa91-2de2ae22a652 - summarizeBy: none - sourceColumn: COMPANY - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition COMPANY = m - mode: import - queryGroup: 'Parameters and Functions\Connection Parameters' - source = "Cronus" meta [IsParameterQuery=true, Type="Text", IsParameterQueryRequired=true] - - changedProperty = IsHidden - - annotation PBI_ResultType = Text - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Company Encoding.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Company Encoding.tmdl deleted file mode 100644 index 7604f9cd15..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Company Encoding.tmdl +++ /dev/null @@ -1,44 +0,0 @@ -table 'Company Encoding' - isHidden - lineageTag: 9c90edc8-916f-43e8-9346-ce341fef5308 - - column ParameterValue - dataType: string - isHidden - lineageTag: f716da2e-0bce-4863-b541-a3d4eb862bdd - summarizeBy: none - sourceColumn: ParameterValue - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Encoded Company Name' - dataType: string - isHidden - lineageTag: 42e44aff-1524-47b8-b388-570cea27942b - summarizeBy: none - sourceColumn: Encoded Company Name - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition 'Company Encoding' = m - mode: import - source = - let - Source = #table( - {"ParameterValue"}, - {{COMPANY}} - ), - #"Added Encoded Column" = Table.AddColumn(Source, "Encoded Company Name", each Uri.EscapeDataString(COMPANY), type text) - in - #"Added Encoded Column" - - changedProperty = IsHidden - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Country%2FRegion.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Country%2FRegion.tmdl deleted file mode 100644 index de923cc68e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Country%2FRegion.tmdl +++ /dev/null @@ -1,37 +0,0 @@ -table Country/Region - lineageTag: 60f5456e-1b5c-4448-9a86-e4c1970e18f3 - - column 'Country Region Code' - dataType: string - isKey - lineageTag: 0d932f35-6962-429c-820f-e5833623f366 - dataCategory: Country - summarizeBy: none - sourceColumn: Country Region Code - - annotation SummarizationSetBy = Automatic - - column 'Country Region Name' - dataType: string - lineageTag: f41d290c-5bc0-4d88-93e0-f9c066311f9d - summarizeBy: none - sourceColumn: Country Region Name - - annotation SummarizationSetBy = Automatic - - partition Country/Region = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiCountryRegions",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"code", "Country Region Code"}, {"name", "Country Region Name"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}) - in - #"Removed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date Ref.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date Ref.tmdl deleted file mode 100644 index 61bada65cc..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date Ref.tmdl +++ /dev/null @@ -1,2851 +0,0 @@ -table 'Date Ref' - isHidden - lineageTag: a4c43a16-3071-4a40-ba44-570be33b216b - dataCategory: Time - - measure ShowValueForDates = - - VAR LastDateWithData = - CALCULATE ( MAX ( 'Sustainability Ledger Entries'[Date] ), REMOVEFILTERS () ) - VAR FirstDateVisible = - MIN ( 'Date Ref'[Date] ) - VAR Result = FirstDateVisible <= LastDateWithData - RETURN - Result - formatString: """TRUE"";""TRUE"";""FALSE""" - isHidden - lineageTag: adc06805-5b13-45af-b298-3fc6f11c0e43 - - changedProperty = IsHidden - - measure 'Current Date Range' = - - "Current Date Range: " & FIRSTDATE ( 'Date Ref'[Date] ) & " .. " - & LASTDATE ( 'Date Ref'[Date] ) - isHidden - lineageTag: 75d54c63-1447-4564-a478-5da8b014f91a - - changedProperty = IsHidden - - column Date - isHidden - isKey - formatString: Short Date - lineageTag: 2bbc3c34-8fbb-43d5-b1aa-daaef4e219fd - summarizeBy: none - isNameInferred - sourceColumn: [Date] - - changedProperty = DataType - - changedProperty = FormatString - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column DateKey - isHidden - formatString: 0 - lineageTag: 06ab21ff-ae2b-46f3-8c30-997b040a562f - summarizeBy: count - isNameInferred - sourceColumn: [DateKey] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Day of Month' - isHidden - formatString: 0 - lineageTag: 8dbfdf38-d0e9-4c76-b5b0-a634fa94f943 - summarizeBy: sum - isNameInferred - sourceColumn: [Day of Month] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column WeekDayNumber - isHidden - formatString: 0 - lineageTag: a67086bf-fd58-49ab-9bc0-738d18394d32 - summarizeBy: sum - isNameInferred - sourceColumn: [WeekDayNumber] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Week Day' - isHidden - lineageTag: 1f8f2b4a-bd5b-4c19-90b8-8d0aab109478 - summarizeBy: none - isNameInferred - sourceColumn: [Week Day] - sortByColumn: WeekDayNumber - - changedProperty = SortByColumn - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Holiday Name' - isHidden - lineageTag: 8dd9bf85-6701-4373-bd31-c61dbb46fdf9 - summarizeBy: none - isNameInferred - sourceColumn: [Holiday Name] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column IsWorkingDay - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 0ce9e2d6-98bc-4698-9a01-36776c38ab87 - summarizeBy: none - isNameInferred - sourceColumn: [IsWorkingDay] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Day Type' - isHidden - lineageTag: 4a400d2e-c05c-4447-967d-45bc54f6e913 - summarizeBy: none - isNameInferred - sourceColumn: [Day Type] - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column DatesWithTransactions = ``` - - 'Date Ref'[Date] <= MAX ( 'Sustainability Ledger Entries'[Date]) - ``` - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: ff8ffd34-286f-4996-ab13-48278d54059e - summarizeBy: none - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearNumber' - isHidden - formatString: 0 - lineageTag: ef7b1d9c-b0be-48f5-ae23-08838c6dbb48 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Year' - isHidden - lineageTag: bd0f3d3f-095c-4055-912a-5f0410aff3e6 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Year] - - annotation SummarizationSetBy = Automatic - - column 'Calendar QuarterNumber' - isHidden - lineageTag: 549dc900-ebd5-4487-90c1-f48ca74700c5 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar Quarter' - isHidden - lineageTag: 38bdfc43-2c93-48b7-9df6-7b2c1706024d - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Quarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearQuarterNumber' - isHidden - lineageTag: 7031d9fc-85e9-435c-a019-fd714241ee3c - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar Quarter Year' - isHidden - lineageTag: 61a5df58-d3bb-4729-995c-d192c0320f43 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Quarter Year] - - annotation SummarizationSetBy = Automatic - - column 'Calendar MonthNumber' - isHidden - formatString: 0 - lineageTag: 58e49b69-1ef3-4066-9a49-470be0e4b606 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar MonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Month' - isHidden - lineageTag: 316f6b3f-a5f8-47b2-a76b-164186328643 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Month] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearMonthNumber' - isHidden - formatString: 0 - lineageTag: 0959737a-0014-4d21-a7be-b67803615ae6 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Month Year' - isHidden - lineageTag: 9068816f-8a8b-4eeb-9dc3-89d6ed9b18dc - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Month Year] - - annotation SummarizationSetBy = Automatic - - column 'Calendar WeekNumber' - isHidden - formatString: 0 - lineageTag: 05cc1398-82e3-4d2c-b12d-e3aab8de7b84 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Week' - isHidden - lineageTag: b31f07a8-38e3-408f-894d-8b3bd3993860 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Week] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearWeekNumber' - isHidden - formatString: 0 - lineageTag: b6198754-2be5-4e78-a7ec-372138cc46df - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Week Year' - isHidden - lineageTag: 43d111f2-bb43-4533-8e64-c8460325eeb5 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar Week Year] - - annotation SummarizationSetBy = Automatic - - column 'Calendar WeekYearOrder' - isHidden - formatString: 0 - lineageTag: 19773601-9ef8-4a9f-9d35-ccc022dbd916 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar WeekYearOrder] - - annotation SummarizationSetBy = Automatic - - column 'Calendar RelativeWeekPos' - isHidden - lineageTag: dde24949-baac-48ac-81be-40d8e8f3ef91 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeMonthPos' - isHidden - lineageTag: d0dae596-61c8-4761-a329-d2435bc65739 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeQuarterPos' - isHidden - lineageTag: 75f7de36-78c9-4efe-9d93-fdab710d107b - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeYearPos' - isHidden - lineageTag: 79fba4fa-2306-40c8-87b7-52317485aa7c - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar StartOfMonth' - isHidden - formatString: General Date - lineageTag: 9ab5a7bd-3028-4369-bc6a-f629b923b1cd - summarizeBy: none - isNameInferred - sourceColumn: [Calendar StartOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar EndOfMonth' - isHidden - formatString: General Date - lineageTag: c7da01f6-f1d6-4e73-ae06-32e10e32c011 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar StartOfQuarter' - isHidden - formatString: General Date - lineageTag: ac699e69-5405-4af6-91f2-8effb25c98f9 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar EndOfQuarter' - isHidden - formatString: General Date - lineageTag: 336fa715-5507-4154-97f6-4636b2c4ccb9 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar StartOfYear' - isHidden - formatString: General Date - lineageTag: fa71a538-7f62-4eb8-8358-47c7e14ad18a - summarizeBy: none - isNameInferred - sourceColumn: [Calendar StartOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Calendar EndOfYear' - isHidden - formatString: General Date - lineageTag: ba74cfd4-28e2-430c-a96f-ec9856d79681 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Calendar MonthDays' - isHidden - formatString: 0 - lineageTag: e2c89387-780b-439d-8072-0ed4df890933 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar QuarterDays' - isHidden - formatString: 0 - lineageTag: 09819e16-a4b0-4604-bb63-1abcfaacb735 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearDays' - isHidden - formatString: 0 - lineageTag: 5e5bbd97-3f1e-46f3-92ab-6147b55bfd76 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar YearDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfMonthNumber' - isHidden - formatString: 0 - lineageTag: f32ba97b-2da7-49cf-a828-89fd323c1cd4 - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfQuarterNumber' - isHidden - formatString: 0 - lineageTag: ebb93534-d5f8-47a0-9084-e92bb16b23fc - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfYearNumber' - isHidden - formatString: 0 - lineageTag: 149b3927-3744-4af8-876a-1179f15bad8c - summarizeBy: sum - isNameInferred - sourceColumn: [Calendar DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousWeek' - isHidden - formatString: General Date - lineageTag: bba58cdf-6ea2-416b-8662-32d64a3e7d56 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousMonth' - isHidden - formatString: General Date - lineageTag: 87ee7208-9bde-406e-9d9c-3a552666eb9c - summarizeBy: none - isNameInferred - sourceColumn: [Calendar DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousQuarter' - isHidden - formatString: General Date - lineageTag: cc5a6bb2-44c4-439b-8b1a-7e9668a1f2fd - summarizeBy: none - isNameInferred - sourceColumn: [Calendar DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousYear' - isHidden - formatString: General Date - lineageTag: 6a45bbfd-7302-44e5-9c41-340bda7886e0 - summarizeBy: none - isNameInferred - sourceColumn: [Calendar DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Year' - isHidden - lineageTag: 247c3551-dc03-4258-a2e0-3373d7824994 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Year] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearNumber' - isHidden - formatString: 0 - lineageTag: c0371eba-b8af-4a40-9af4-cac328835a6e - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal QuarterNumber' - isHidden - lineageTag: fd81a129-7b48-4701-a4c4-750b52d1fbfe - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal Quarter' - isHidden - lineageTag: 93ccdf3a-4738-4f26-9835-3d9ae2b78088 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Quarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearQuarterNumber' - isHidden - lineageTag: 7581d083-164d-4d46-b09a-7bb84ffdf7d7 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal Quarter Year' - isHidden - lineageTag: 04f82a95-3e17-4152-8cd0-fc6f74ba669a - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Quarter Year] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthNumber' - isHidden - formatString: 0 - lineageTag: 8f9a4c68-6c13-4153-b367-f99982602af8 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal MonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthInQuarterNumber' - isHidden - formatString: 0 - lineageTag: 1f9ccca5-8bd4-4c8c-86a7-b06d9d7ddda1 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal MonthInQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Month' - isHidden - lineageTag: ac4b4ef2-b735-4a91-8e53-5f3ec42eb96b - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Month] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearMonthNumber' - isHidden - formatString: 0 - lineageTag: 819587fd-7dc9-4578-b38f-37db03ad8a20 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Month Year' - isHidden - lineageTag: 4b88baba-b33c-4418-873f-39607ea030d9 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Month Year] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal WeekNumber' - isHidden - formatString: 0 - lineageTag: 0dff40ba-b78d-4577-989e-0b65b6b09ef8 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Week' - isHidden - lineageTag: 26dde602-47d9-4ca3-bc96-dee118152bbf - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Week] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearWeekNumber' - isHidden - formatString: 0 - lineageTag: ec2c915b-e3d6-4639-b5aa-3c7d0c7f3e15 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Week Year' - isHidden - lineageTag: 472cee3e-3123-480a-94e9-64a053646aa5 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal Week Year] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal WeekYearOrder' - isHidden - formatString: 0 - lineageTag: c01e8935-3f87-4bf6-bbb3-e9831eacea53 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal WeekYearOrder] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal RelativeWeekPos' - isHidden - lineageTag: 0762f819-ea88-49f6-bf2c-a1c4abc5d61b - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeMonthPos' - isHidden - lineageTag: e6b300eb-e6e7-4269-84f2-f31cfea7c594 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeQuarterPos' - isHidden - lineageTag: e4b5ca99-18ba-449b-bf02-6ba595a348bb - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeYearPos' - isHidden - lineageTag: df90b375-fd83-4156-800f-80732ae980c2 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal StartOfMonth' - isHidden - formatString: General Date - lineageTag: 6c421b26-2101-46d7-9983-122860d39f8b - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal StartOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal EndOfMonth' - isHidden - formatString: General Date - lineageTag: 06038d6e-4335-4333-8ae4-a111c2cb1351 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal StartOfQuarter' - isHidden - formatString: General Date - lineageTag: 3f1d2511-1fac-48cd-85f5-79c04fd4042d - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal EndOfQuarter' - isHidden - formatString: General Date - lineageTag: 30f11a71-96a8-49f7-b6c3-b036fbb0a1d3 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal StartOfYear' - isHidden - formatString: General Date - lineageTag: a03e418b-bf2f-4ba7-aab1-49c233129581 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal StartOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal EndOfYear' - isHidden - formatString: General Date - lineageTag: ac1e6d22-569f-4930-8350-eab8d97cd203 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthDays' - isHidden - formatString: 0 - lineageTag: e6c92183-8ab5-45b3-b31b-8a2fc08fc3fa - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal QuarterDays' - isHidden - formatString: 0 - lineageTag: 4900d436-89bd-4c2b-9249-47fa4d616954 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearDays' - isHidden - formatString: 0 - lineageTag: 540cd2c0-aa7e-4bc5-8b23-176f168088e5 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal YearDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfMonthNumber' - isHidden - formatString: 0 - lineageTag: b2e64002-584f-4361-afe1-9a3344529ff0 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfQuarterNumber' - isHidden - formatString: 0 - lineageTag: 31d08eaf-4348-4b78-adec-dcaaf3230768 - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfYearNumber' - isHidden - formatString: 0 - lineageTag: 9ba27de7-0b8d-4dd9-a7af-f07dcac0e71e - summarizeBy: sum - isNameInferred - sourceColumn: [Fiscal DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousWeek' - isHidden - formatString: General Date - lineageTag: 7fd5c588-f9f0-4c9c-adc6-3a81acc90873 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousMonth' - isHidden - formatString: General Date - lineageTag: 355bb33d-cb89-45d2-8cdb-aa46a118166a - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousQuarter' - isHidden - formatString: General Date - lineageTag: 5f8780eb-53e8-492c-b08b-4a75e41ee8a1 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousYear' - isHidden - formatString: General Date - lineageTag: ea0b214f-3c85-4b8d-ba60-957f6e7545e2 - summarizeBy: none - isNameInferred - sourceColumn: [Fiscal DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'FW YearNumber' - isHidden - formatString: 0 - lineageTag: cbf7a1ae-5796-43ba-a05c-3e6064f645e8 - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Year' - isHidden - lineageTag: 630bbb76-857e-46f7-bdea-7c35dc97b163 - summarizeBy: none - isNameInferred - sourceColumn: [FW Year] - - annotation SummarizationSetBy = Automatic - - column 'FW QuarterNumber' - isHidden - lineageTag: b8d0529a-d0e9-47b4-bf2f-60cb08f01a6f - summarizeBy: sum - isNameInferred - sourceColumn: [FW QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Quarter' - isHidden - lineageTag: 952e537b-bc95-4ac2-98e0-2e7d9b6ada3c - summarizeBy: none - isNameInferred - sourceColumn: [FW Quarter] - - annotation SummarizationSetBy = Automatic - - column 'FW YearQuarterNumber' - isHidden - lineageTag: 2f9fa70a-e141-4346-aac6-4a3c3642dc75 - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Quarter Year' - isHidden - lineageTag: a838e2cd-6b14-4b6d-908c-ca6cd14f2a23 - summarizeBy: none - isNameInferred - sourceColumn: [FW Quarter Year] - - annotation SummarizationSetBy = Automatic - - column 'FW MonthNumber' - isHidden - lineageTag: 27bf0749-44f2-4f69-a042-4d3bd9fc1132 - summarizeBy: sum - isNameInferred - sourceColumn: [FW MonthNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Month' - isHidden - lineageTag: 95e3de3c-f808-4e10-9961-f97b42c142fb - summarizeBy: none - isNameInferred - sourceColumn: [FW Month] - - annotation SummarizationSetBy = Automatic - - column 'FW YearMonthNumber' - isHidden - lineageTag: 5778bde1-e3a9-43d7-9c8a-e38b8880893e - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Month Year' - isHidden - lineageTag: 0944fbcb-8660-40e7-9162-912790936fa5 - summarizeBy: none - isNameInferred - sourceColumn: [FW Month Year] - - annotation SummarizationSetBy = Automatic - - column 'FW WeekNumber' - isHidden - formatString: 0 - lineageTag: e7aa325a-1f4a-4a87-9cd1-444779be556b - summarizeBy: sum - isNameInferred - sourceColumn: [FW WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Week' - isHidden - lineageTag: 4a3e6cda-7b44-46ff-81f2-2e1a934b534b - summarizeBy: none - isNameInferred - sourceColumn: [FW Week] - - annotation SummarizationSetBy = Automatic - - column 'FW PeriodNumber' - isHidden - lineageTag: 8b43f926-a86c-481f-a2fc-3e2c7c20b89b - summarizeBy: sum - isNameInferred - sourceColumn: [FW PeriodNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Period' - isHidden - lineageTag: 0aeb813d-6d08-4747-9619-1471f016da98 - summarizeBy: none - isNameInferred - sourceColumn: [FW Period] - - annotation SummarizationSetBy = Automatic - - column 'FW YearWeekNumber' - isHidden - formatString: 0 - lineageTag: 32da3b8b-82ff-4d28-ab04-cb2d1157277d - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Week Year' - isHidden - lineageTag: 1f423f64-7510-4596-ac2c-a59d0f3b0b0d - summarizeBy: none - isNameInferred - sourceColumn: [FW Week Year] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfWeek' - isHidden - formatString: General Date - lineageTag: e10ddd6a-1f1b-4ad1-9be2-4343b7623d5f - summarizeBy: none - isNameInferred - sourceColumn: [FW StartOfWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfWeek' - isHidden - formatString: General Date - lineageTag: c6e35452-6a1c-4f77-bc07-3f691507317e - summarizeBy: none - isNameInferred - sourceColumn: [FW EndOfWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW RelativeWeekPos' - isHidden - lineageTag: 81483dd5-9758-4e0d-be34-4b5a1c67bd8b - summarizeBy: sum - isNameInferred - sourceColumn: [FW RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeMonthPos' - isHidden - lineageTag: 51ce3ca8-b205-4b7a-a411-685cc6920ba1 - summarizeBy: sum - isNameInferred - sourceColumn: [FW RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeQuarterPos' - isHidden - lineageTag: 9984d835-5170-4f5c-8eb8-8535c9c87c81 - summarizeBy: sum - isNameInferred - sourceColumn: [FW RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeYearPos' - isHidden - lineageTag: 14738b53-3e0d-42ee-a619-4013be60f4a3 - summarizeBy: sum - isNameInferred - sourceColumn: [FW RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW StartOfMonth' - isHidden - formatString: General Date - lineageTag: 031d0594-a5e3-42f8-9e62-6fab59a5b18e - summarizeBy: none - isNameInferred - sourceColumn: [FW StartOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfMonth' - isHidden - formatString: General Date - lineageTag: 4a087d5e-5d2f-4bbd-bcc9-11e70377c82d - summarizeBy: none - isNameInferred - sourceColumn: [FW EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfQuarter' - isHidden - formatString: General Date - lineageTag: 549daede-8ed7-47ca-baf7-22142cd55965 - summarizeBy: none - isNameInferred - sourceColumn: [FW StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfQuarter' - isHidden - formatString: General Date - lineageTag: 74f623b4-8c4e-4168-aea7-4880556d5472 - summarizeBy: none - isNameInferred - sourceColumn: [FW EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfYear' - isHidden - formatString: General Date - lineageTag: b3693736-a90c-484e-97af-dde2d6df788c - summarizeBy: none - isNameInferred - sourceColumn: [FW StartOfYear] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfYear' - isHidden - formatString: General Date - lineageTag: ddfc1074-f083-4ff2-bc1d-121c3364d892 - summarizeBy: none - isNameInferred - sourceColumn: [FW EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'FW MonthDays' - isHidden - formatString: 0 - lineageTag: 21849620-f077-4b21-849d-76f86cf7dcdf - summarizeBy: sum - isNameInferred - sourceColumn: [FW MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'FW QuarterDays' - isHidden - formatString: 0 - lineageTag: 4ee3648c-f5cf-43c3-9029-065b597b2206 - summarizeBy: sum - isNameInferred - sourceColumn: [FW QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'FW YearDays' - isHidden - formatString: 0 - lineageTag: 972b026d-6b92-4515-b2fb-3edc06070c8a - summarizeBy: sum - isNameInferred - sourceColumn: [FW YearDays] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfMonthNumber' - isHidden - formatString: 0 - lineageTag: 415c4151-010d-42be-aa7a-9442524d6361 - summarizeBy: sum - isNameInferred - sourceColumn: [FW DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfQuarterNumber' - isHidden - formatString: 0 - lineageTag: 7877920b-94b4-45e8-9a98-b3497dfc1c63 - summarizeBy: sum - isNameInferred - sourceColumn: [FW DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfYearNumber' - isHidden - formatString: 0 - lineageTag: 40f789d2-ebcd-42b9-bf16-2270cd61a60a - summarizeBy: sum - isNameInferred - sourceColumn: [FW DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousWeek' - isHidden - formatString: General Date - lineageTag: 183ddc03-f98a-4945-a55b-0bd660e92f77 - summarizeBy: none - isNameInferred - sourceColumn: [FW DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousMonth' - isHidden - formatString: General Date - lineageTag: 4c1cdcda-0408-4607-9e06-432aed827a44 - summarizeBy: none - isNameInferred - sourceColumn: [FW DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousQuarter' - isHidden - formatString: General Date - lineageTag: af0cfe5e-2dfd-4b02-932d-757f36ad1ab3 - summarizeBy: none - isNameInferred - sourceColumn: [FW DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousYear' - isHidden - formatString: General Date - lineageTag: 3902fc78-91ea-4ad0-84a3-f4d1239de85c - summarizeBy: none - isNameInferred - sourceColumn: [FW DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'Relative Day' - formatString: 0 - lineageTag: 1b6b5166-75b4-4106-a11c-3b9323408f5e - summarizeBy: sum - isNameInferred - sourceColumn: [Relative Day] - - annotation SummarizationSetBy = Automatic - - column Sequential365DayNumber - lineageTag: 21daa895-e32b-49e1-a55b-2f46be623041 - summarizeBy: sum - isNameInferred - sourceColumn: [Sequential365DayNumber] - - annotation SummarizationSetBy = Automatic - - partition 'Date Ref-d63d5669-3a74-4b2b-b49d-f504bd49d56d' = calculated - mode: import - source = ``` - - ------------------------------------------------------------ - -- - -- Configuration - -- - ------------------------------------------------------------ - VAR TodayReference = VALUES('Date Table Setup'[Today]) -- Change this if you need to use another date as a reference "current" day - - // Based on the first and last dates in the main fact table - VAR FirstYear = YEAR(VALUES('Date Table Setup'[dateTblStart])) - VAR LastYear = YEAR(VALUES('Date Table Setup'[dateTblEnd])) - - // For Fiscal 52-53 weeks (start depends on rules) and Gregorian (starts on the first of the month) - VAR FiscalCalendarFirstMonth = VALUES('Date Table Setup'[fiscalCalendarFirstMonth]) - - // Use: 0 - Sunday, 1 - Monday, 2 - Tuesday, ... 5 - Friday, 6 - Saturday - VAR FirstDayOfWeek = VALUES('Date Table Setup'[First Day of Week]) - - VAR TypeStartFiscalYear = 1 -- Fiscal year as Calendar Year of : 0 - First day of fiscal year, 1 - Last day of fiscal year - - VAR IsoCountryHolidays = VALUES('Date Table Setup'[isoCountryHolidays]) -- Use only supported ISO countries or "" for no holidays - - VAR WeeklyType = COALESCE(VALUES('Date Table Setup'[weeklyType]), "Nearest") -- Supports only "Nearest", or "Last" - - VAR QuarterWeekType = COALESCE(VALUES('Date Table Setup'[quarterWeekType]),"445") -- Supports only "445", "454", and "544" - - VAR CalendarRange = VALUES('Date Table Setup'[calendarRange]) -- Supports "Calendar", "FiscalGregorian", "FiscalWeekly" - -- Last: for last weekday of the month at fiscal year end - -- Nearest: for last weekday nearest the end of month - -- Reference for Last/Nearest definition: https://en.wikipedia.org/wiki/4%E2%80%934%E2%80%935_calendar) - -- - -- For ISO calendar use - -- FiscalCalendarFirstMonth = 1 (ISO always starts in January) - -- FirstDayOfWeek = 1 (ISO always starts on Monday) - -- WeeklyType = "Nearest" (ISO use the nearest week type algorithm) - -- For US with last Saturday of the month at fiscal year end - -- FirstDayOfWeek = 0 (US weeks start on Sunday) - -- WeeklyType = "Last" - -- For US with last Saturday nearest the end of month - -- FirstDayOfWeek = 0 (US weeks start on Sunday) - -- WeeklyType = "Nearest" - -- - ------------------------------ - VAR CalendarGregorianPrefix = VALUES('Date Table Setup'[calendarPrefix]) -- Prefix used in columns of standard Gregorian calendar - VAR FiscalGregorianPrefix = VALUES('Date Table Setup'[fiscalGregorianPrefix]) -- Prefix used in columns of fiscal Gregorian calendar - VAR FiscalWeeklyPrefix = VALUES('Date Table Setup'[fiscalWeeklyPrefix]) -- Prefix used in columns of fiscal weekly calendar - VAR WorkingDayType = "Working day" -- Description for working days - VAR NonWorkingDayType = "Non-working day" -- Description for non-working days - ------------------------------ - VAR WeeklyCalendarType = "Weekly" -- Supports "Weekly", "Custom" - -- Set the working days - 0 = Sunday, 1 = Monday, ... 6 = Saturday - VAR WorkingDays = VALUES('Working Days') - - - -- Use CustomFiscalPeriods in case you need arbitrary definition of weekly fiscal years - -- Set "UseCustomFiscalPeriods" to TRUE in order to use CustomFiscalPeriods - VAR UseCustomFiscalPeriods = FALSE - -- Set "IgnoreWeeklyFiscalPeriods" to TRUE in order to ignore the WeeklyFiscalPeriods - -- You should set IgnoreWeeklyFiscalPeriods to TRUE only when UseCustomFiscalPeriods is TRUE, too - VAR IgnoreWeeklyFiscalPeriods = FALSE - -- Include here your own definition of custom fiscal periods - VAR CustomFiscalPeriods = - FILTER ( - DATATABLE ( - "Fiscal YearNumber", INTEGER, - "FirstDayOfYear", DATETIME, - "LastDayOfYear", DATETIME, - { - -- IMPORTANT!!! The first day of each year must be a weekday corresponding to the definition of FirstDayOfWeek - -- If you want to use this table, remember to set the UseCustomFiscalPeriods variable to TRUE - -- If the IgnoreWeeklyFiscalPeriods is TRUE, there are no warnings in case the FirstDayOfWeek - -- does not match the first day of the year - { 2016, "2015-06-28", "2016-07-02" }, - { 2017, "2016-07-03", "2017-07-01" }, - { 2018, "2017-07-02", "2018-06-30" }, - { 2019, "2018-07-01", "2019-06-29" } - } - ), - UseCustomFiscalPeriods - ) - - ------------------------------------------------------------ - -- - -- End of General Configuration - -- - ------------------------------------------------------------ - -- - -- The following variables define specific parameters - -- for calendars - you should modify them only to - -- change configuration of specific countries, translate - -- names of holidays, or to add configuration for other - -- countries - -- - ------------------------------------------------------------ - VAR InLieuOf_prefix = "(in lieu of " -- prefix of substitute holidays - VAR InLieuOf_suffix = ")" -- suffix of substitute holidays - VAR HolidayParameters = - DATATABLE ( - "ISO Country", STRING, - -- ISO country code (to enable filter based on country) - "MonthNumber", INTEGER, - -- Number of month - use 99 for relative dates using Easter as a reference - "DayNumber", INTEGER, - -- Absolute day (ignore WeekDayNumber, otherwise use 0) - "WeekDayNumber", INTEGER, - -- 0 = Sunday, 1 = Monday, ... , 7 = Saturday - "OffsetWeek", INTEGER, - -- 1 = first, 2 = second, ... -1 = last, -2 = second-last, ... - "OffsetDays", INTEGER, - -- days to add after offsetWeek and WeekDayNumber have been applied - "HolidayName", STRING, - -- Holiday name - "SubstituteHoliday", INTEGER, - -- 0 = no substituteHoliday, 1 = substitute holiday with next working day, 2 = substitute holiday with next working day - -- (use 2 before 1 only, e.g. Christmas = 2, Boxing Day = 1) - -- -1 = if it falls on a Saturday then it is observed on Friday, if it falls on a Sunday then it is observed on Monday - "ConflictPriority", INTEGER, - -- Priority in case of two or more holidays in the same date - lower number --> higher priority - -- For example: marking Easter relative days with 150 and other holidays with 100 means that other holidays take - -- precedence over Easter-related days; use 50 for Easter related holidays to invert such a priority - "FirstYear", INTEGER, - -- First year for the holiday, 0 if it is not defined - "LastYear", INTEGER, - -- Last year for the holiday, 0 if it is not defined - { - -- - -- US = United States - { "US", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "US", 1, 0, 1, 3, 0, "Martin Luther King, Jr.", 0, 100, 0, 0 }, - { "US", 2, 0, 1, 3, 0, "Presidents' Day", 0, 100, 0, 0 }, - // aka Washington's Birthday - { "US", 5, 0, 1, -1, 0, "Memorial Day", 0, 100, 0, 0 }, - { "US", 6, 19, 0, 0, 0, "Juneteenth", -1, 100, 2021, 0 }, - { "US", 7, 4, 0, 0, 0, "Independence Day", 0, 100, 0, 0 }, - { "US", 9, 0, 1, 1, 0, "Labor Day", 0, 100, 0, 0 }, - { "US", 10, 0, 1, 2, 0, "Columbus Day", 0, 100, 0, 0 }, - { "US", 11, 11, 0, 0, 0, "Veterans Day", 0, 100, 0, 0 }, - { "US", 11, 0, 4, 4, 0, "Thanksgiving Day", 0, 100, 0, 0 }, - { "US", 11, 0, 4, 4, 1, "Black Friday", 0, 100, 0, 0 }, - { "US", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- The following countries are in alphabetical order (by ISO Code) - -- - - -- - -- AT = Austria - { "AT", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "AT", 1, 6, 0, 0, 0, "Epiphany", 0, 100, 0, 0 }, - { "AT", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "AT", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "AT", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "AT", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "AT", 99, 60, 0, 0, 0, "Corpus Christi", 0, 50, 0, 0 }, - { "AT", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "AT", 10, 26, 0, 0, 0, "National Day", 0, 100, 0, 0 }, - { "AT", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "AT", 12, 8, 0, 0, 0, "Immaculate Conception Day", 0, 100, 0, 0 }, - { "AT", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "AT", 12, 26, 0, 0, 0, "St. Stephen's Day", 0, 100, 0, 0 }, - -- - -- AU = Australia - { "AU", 1, 1, 0, 0, 0, "New Year's Day", 1, 100, 0, 0 }, - { "AU", 1, 26, 0, 0, 0, "Australia Day", 1, 100, 0, 0 }, - { "AU", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "AU", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "AU", 4, 25, 0, 0, 0, "Anzac Day", 1, 100, 0, 0 }, - { "AU", 12, 25, 0, 0, 0, "Christmas Day", 2, 100, 0, 0 }, - { "AU", 12, 26, 0, 0, 0, "Boxing Day", 1, 100, 0, 0 }, - -- - -- BE = Belgium - { "BE", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "BE", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "BE", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "BE", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "BE", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "BE", 7, 21, 0, 0, 0, "Belgian National DayDay", 0, 100, 0, 0 }, - { "BE", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "BE", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "BE", 11, 11, 0, 0, 0, "Armistice Day", 0, 100, 0, 0 }, - { "BE", 12, 25, 0, 0,0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- CA = Canada (include only nationwide and Thanksgiving) - { "CA", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "CA", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "CA", 7, 1, 0, 0, 0, "Canada Day", 0, 100, 0, 0 }, - { "CA", 9, 0, 1, 1, 0, "Labour Day", 0, 100, 0, 0 }, - { "CA", 10, 0, 1, 2, 0, "Thanksgiving", 0, 100, 0, 0 }, - { "CA", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- DE = Germany - { "DE", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "DE", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "DE", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "DE", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "DE", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "DE", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "DE", 10, 3, 0, 0, 0, "German Unity Day", 0, 100, 0, 0 }, - { "DE", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "DE", 12, 26, 0, 0, 0, "St. Stephen's Day", 0, 100, 0, 0 }, - -- - -- ES = Spain - { "ES", 1, 1, 0, 0,0, "New Year's Day", 0, 100, 0, 0 }, - { "ES", 1, 6, 0, 0, 0, "Epiphany", 0, 100, 0, 0 }, - { "ES", 99, -3, 0, 0, 0, "Maundy Thursday", 0, 50, 0, 0 }, - // Except Catalonia - { "ES", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "ES", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - // Belearic Islands, Basque Country, Catalonia, La Rioja, Navarra and Valenciana only - { "ES", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "ES", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "ES", 10, 12, 0, 0, 0, "Fiesta Navional de España", 0, 100, 0, 0 }, - { "ES", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "ES", 12, 6, 0, 0, 0, "Constitution Day", 0, 100, 0, 0 }, - { "ES", 12, 8, 0, 0, 0, "Immaculate Conception", 0, 100, 0, 0 }, - { "ES", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- FR = France - { "FR", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "FR", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "FR", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "FR", 5, 8, 0, 0, 0, "Victor in Europe Day", 0, 100, 0, 0 }, - { "FR", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "FR", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "FR", 7, 14, 0, 0, 0, "Bastille Day", 0, 100, 0, 0 }, - { "FR", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "FR", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "FR", 11, 11, 0, 0, 0, "Armistice Day", 0, 100, 0, 0 }, - { "FR", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - -- - -- GB = England (different configuration in Scotland and Northern Ireland) - { "GB", 1, 1, 0, 0, 0, "New Year's Day", 1, 100, 0, 0 }, - { "GB", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "GB", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "GB", 5, 0, 1, 1, 0, "May Day Bank Holiday", 0, 100, 0, 0 }, - { "GB", 5, 0, 1, -1, 0, "Spring Bank Holiday", 0, 100, 0, 0 }, - { "GB", 8, 0, 1, -1, 0, "Late Summer Bank Holiday", 0, 100, 0, 0 }, - { "GB", 12, 25, 0, 0, 0, "Christmas Day", 2, 100, 0, 0 }, - { "GB", 12, 26, 0, 0, 0, "Boxing Day", 1, 100, 0, 0 }, - -- - -- IT = Italy - { "IT", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "IT", 1, 6, 0, 0, 0, "Epiphany", 0, 100, 0, 0 }, - { "IT", 99, 1, 0, 0, 0, "Easter Monday", 0, 100, 0, 0 }, - { "IT", 4, 25, 0, 0, 0, "Liberation Day", 0, 100, 0, 0 }, - { "IT", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "IT", 6, 2, 0, 0, 0, "Republic Day", 0, 100, 0, 0 }, - { "IT", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "IT", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "IT", 12, 8, 0, 0, 0, "Immaculate Conception", 0, 100, 0, 0 }, - { "IT", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "IT", 12, 26, 0, 0, 0, "St. Stephen's Day", 0, 100, 0, 0 }, - -- - -- NL = The Netherlands - { "NL", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "NL", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "NL", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "NL", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "NL", 4, 27, 0, 0, 0, "King's Day", 0, 100, 0, 0 }, - // King's day shifted to Saturday if on a Sunday - not handled in this calendar - { "NL", 5, 5, 0, 0, 0, "Liberation Day", 0, 100, 0, 0 }, - { "NL", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "NL", 12, 26, 0, 0, 0, "St. Stephen's Day", 0, 100, 0, 0 }, - -- - -- NO = Norway - { "NO", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "NO", 99, -3, 0, 0, 0, "Maundy Thursday", 0, 100, 0, 0 }, - { "NO", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "NO", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "NO", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "NO", 99, 50, 0, 0, 0, "Whit Monday", 0, 50, 0, 0 }, - { "NO", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "NO", 5, 17, 0, 0, 0, "Constitution Day", 0, 100, 0, 0 }, - { "NO", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "NO", 12, 26, 0, 0, 0, "Boxing Day", 0, 100, 0, 0 }, - -- De facto Holidays in Norway - not official public holidays - { "NO", 12, 24, 0, 0, 0, "Christmas Eve", 0, 50, 0, 0 }, - { "NO", 12, 31, 0, 0, 0, "New Year's Eve", 0, 50, 0, 0 }, - -- - -- PT = Portugal - { "PT", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "PT", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "PT", 99, 60, 0, 0, 0, "Corpus Christi", 0, 50, 0, 0 }, - { "PT", 4, 25, 0, 0, 0, "Freedom Day", 0, 100, 0, 0 }, - { "PT", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "PT", 6, 10, 0, 0, 0, "Portugal Day", 0, 100, 0, 0 }, - { "PT", 8, 15, 0, 0, 0, "Assumption Day", 0, 100, 0, 0 }, - { "PT", 10, 5, 0, 0, 0, "Republic Day", 0, 100, 0, 0 }, - { "PT", 11, 1, 0, 0, 0, "All Saints' Day", 0, 100, 0, 0 }, - { "PT", 12, 1, 0, 0, 0, "Restoration of Independence", 0, 100, 0, 0 }, - { "PT", 12, 8, 0, 0, 0, "Immaculate Conception", 0, 100, 0, 0 }, - { "PT", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, -- - -- - -- SE = Sweden - { "SE", 1, 1, 0, 0, 0, "New Year's Day", 0, 100, 0, 0 }, - { "SE", 1, 6, 0, 0, 0, "Epiphany", 0, 100, 0, 0 }, - { "SE", 99, -2, 0, 0, 0, "Good Friday", 0, 50, 0, 0 }, - { "SE", 99, 1, 0, 0, 0, "Easter Monday", 0, 50, 0, 0 }, - { "SE", 99, 39, 0, 0, 0, "Ascension Day", 0, 50, 0, 0 }, - { "SE", 5, 1, 0, 0, 0, "Labour Day", 0, 100, 0, 0 }, - { "SE", 6, 6, 0, 0, 0, "National Day", 0, 100, 0, 0 }, - { "SE", 12, 25, 0, 0, 0, "Christmas Day", 0, 100, 0, 0 }, - { "SE", 12, 26, 0, 0, 0, "Boxing Day", 0, 100, 0, 0 }, - -- De facto Holidays in Sweden - not official public holidays - { "SE", 12, 24, 0, 0, 0, "Christmas Eve", 0, 50, 0, 0 }, - { "SE", 12, 31, 0, 0, 0, "New Year's Eve", 0, 50, 0, 0 }, - -- Midsummer Day is a Saturday - -- { "SE", 98, 0, 0, 0, "Midsummer Day", 0, 50, 0, 0 }, - { "SE", 98, -1, 0, 0, 0, "Midsummer Eve", 0, 50, 0, 0 } - ------------------------------------------------------------ - -- UK --> see GB - } - ) - VAR HolidayDates_ConfigGeneration = - FILTER ( - HolidayParameters, - IF ( - CONTAINS ( HolidayParameters, [ISO Country], IsoCountryHolidays ) - || IsoCountryHolidays = "", - [ISO Country] = IsoCountryHolidays, - ERROR ( "IsoCountryHolidays set to an unsupported country code" ) - ) - ) - VAR HolidayDates_GeneratedRawWithDuplicatesUnfiltered = - GENERATE ( - GENERATE ( - GENERATESERIES ( FirstYear - 1, LastYear + 1, 1 ), - HolidayDates_ConfigGeneration - ), - VAR HolidayYear = [Value] - VAR EasterDate = - -- Code adapted from original VB version from https://www.assa.org.au/edm - VAR EasterYear = HolidayYear - VAR FirstDig = - INT ( EasterYear / 100 ) - VAR Remain19 = - MOD ( EasterYear, 19 ) // - -- Calculate PFM date - VAR temp1 = - MOD ( - INT ( ( FirstDig - 15 ) / 2 ) - + 202 - - 11 * Remain19 - + SWITCH ( - TRUE, - FirstDig IN { 21, 24, 25, 27, 28, 29, 30, 31, 32, 34, 35, 38 }, -1, - FirstDig IN { 33, 36, 37, 39, 40 }, -2, - 0 - ), - 30 - ) - VAR tA = - temp1 + 21 - + IF ( temp1 = 29 || ( temp1 = 28 && Remain19 > 10 ), -1 ) // - -- Find the next Sunday - VAR tB = - MOD ( tA - 19, 7 ) - VAR tCpre = - MOD ( 40 - FirstDig, 4 ) - VAR tC = - tCpre - + IF ( tCpre = 3, 1 ) - + IF ( tCpre > 1, 1 ) - VAR temp2 = - MOD ( EasterYear, 100 ) - VAR tD = - MOD ( temp2 + INT ( temp2 / 4 ), 7 ) - VAR tE = - MOD ( 20 - tB - tC - tD, 7 ) - + 1 - VAR d = tA + tE // - -- Return the date - VAR EasterDay = - IF ( d > 31, d - 31, d ) - VAR EasterMonth = - IF ( d > 31, 4, 3 ) - RETURN - DATE ( EasterYear, EasterMonth, EasterDay ) // - -- End of code adapted from original VB version from https://www.assa.org.au/edm - VAR SwedishMidSummer = - -- Compute the Midsummer day in Swedish - it is the Saturday between 20 and 26 June - -- This calculation is valid only for years after 1953 - -- https://sv.wikipedia.org/wiki/Midsommar_i_Sverige - VAR __June20 = - DATE ( HolidayYear, 6, 20 ) - RETURN - DATE ( HolidayYear, 6, 20 + (7 - WEEKDAY ( __June20, 1 ) ) ) - -- End of SwedishMidSummer calculation - VAR HolidayDate = - SWITCH ( - TRUE, - [DayNumber] <> 0 - && [WeekDayNumber] <> 0, ERROR ( "Wrong configuration in HolidayParameters" ), - [DayNumber] <> 0 - && [MonthNumber] <= 12, DATE ( HolidayYear, [MonthNumber], [DayNumber] ), - [MonthNumber] = 99, -- Easter offset - EasterDate + [DayNumber], - [MonthNumber] = 98, -- Swedish Midsummer Day - SwedishMidSummer + [DayNumber], - [WeekDayNumber] <> 0, - VAR ReferenceDate = - DATE ( HolidayYear, 1 - + MOD ( [MonthNumber] - 1 + IF ( [OffsetWeek] < 0, 1 ), 12 ), 1 ) - - IF ( [OffsetWeek] < 0, 1 ) - VAR ReferenceWeekDayNumber = - WEEKDAY ( ReferenceDate, 1 ) - 1 - VAR Offset = - [WeekDayNumber] - ReferenceWeekDayNumber - + 7 * [OffsetWeek] - + IF ( - [OffsetWeek] > 0, - IF ( [WeekDayNumber] >= ReferenceWeekDayNumber, - 7 ), - IF ( ReferenceWeekDayNumber >= [WeekDayNumber], 7 ) - ) - RETURN - ReferenceDate + Offset + [OffsetDays], - ERROR ( "Wrong configuration in HolidayParameters" ) - ) - VAR HolidayDay = - WEEKDAY ( HolidayDate, 1 ) - 1 - VAR SubstituteHolidayOffset = - SWITCH ( - TRUE, - [SubstituteHoliday] = -1, - SWITCH ( - HolidayDay, - 0, 1, -- If it falls on a Sunday then it is observed on Monday - 6, -1, -- If it falls on a Saturday then it is observed on Friday - 0 - ), - [SubstituteHoliday] > 0 - && NOT CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], HolidayDay ), - VAR NextWorkingDay = - MINX ( - FILTER ( WorkingDays, [FSG_PBI_Day_Number] > HolidayDay ), - [FSG_PBI_Day_Number] - ) - VAR SubstituteDay = - IF ( - ISBLANK ( NextWorkingDay ), - MINX ( WorkingDays, [FSG_PBI_Day_Number] ) + 7, - NextWorkingDay - ) - RETURN - SubstituteDay - HolidayDay - + ( [SubstituteHoliday] - 1 ) - ) - RETURN - ROW ( - -- Use DATE function to get a DATE column as a result - "HolidayDate", DATE ( YEAR ( HolidayDate ), MONTH ( HolidayDate ), DAY ( HolidayDate ) ), - "SubstituteHolidayOffset", SubstituteHolidayOffset - ) - ) // - VAR HolidayDates_GeneratedRawWithDuplicates = - FILTER ( - HolidayDates_GeneratedRawWithDuplicatesUnfiltered, - ( [FirstYear] = 0 || [FirstYear] <= [Value] ) - && ( [LastYear] = 0 || [LastYear] >= [Value] ) - ) - VAR HolidayDates_RawDatesUnique = - DISTINCT ( - SELECTCOLUMNS ( - HolidayDates_GeneratedRawWithDuplicates, - "HolidayDateUnique", [HolidayDate] - ) - ) - VAR HolidayDates_GeneratedRaw = - GENERATE ( - HolidayDates_RawDatesUnique, - VAR FilterDate = [HolidayDateUnique] - RETURN - TOPN ( - 1, - FILTER ( - HolidayDates_GeneratedRawWithDuplicates, - [HolidayDate] = FilterDate - ), - [ConflictPriority], - ASC, - [HolidayName], - ASC - ) - ) - VAR HolidayDates_GeneratedSubstitutesOffset = - SELECTCOLUMNS ( - FILTER ( HolidayDates_GeneratedRawWithDuplicates, [SubstituteHoliday] <> 0 ), - "Value", [Value], - "ISO Country", [ISO Country], - "MonthNumber", [MonthNumber], - "DayNumber", [DayNumber], - "WeekDayNumber", [WeekDayNumber], - "OffsetWeek", [OffsetWeek], - "HolidayName", [HolidayName], - "SubstituteHoliday", [SubstituteHoliday], - "ConflictPriority", [ConflictPriority], - "HolidayDate", [HolidayDate], - "SubstituteHolidayOffset", - VAR CurrentHolidayDate = [HolidayDate] - VAR CurrentHolidayName = [HolidayName] - VAR OriginalSubstituteDate = [HolidayDate] + [SubstituteHolidayOffset] - VAR OtherHolidays = - FILTER ( - HolidayDates_GeneratedRawWithDuplicates, - [HolidayDate] <> CurrentHolidayDate - || [HolidayName] <> CurrentHolidayName - ) - VAR ConflictDay0 = - CONTAINS ( - OtherHolidays, - [HolidayDate], OriginalSubstituteDate - ) - VAR ConflictDay1 = - ConflictDay0 - && CONTAINS ( - OtherHolidays, - [HolidayDate], OriginalSubstituteDate + 1 - ) - VAR ConflictDay2 = - ConflictDay1 - && CONTAINS ( - OtherHolidays, - [HolidayDate], OriginalSubstituteDate + 2 - ) - VAR SubstituteOffsetStep1 = [SubstituteHolidayOffset] + ConflictDay0 + ConflictDay1 + ConflictDay2 - VAR HolidayDateStep1 = CurrentHolidayDate + SubstituteOffsetStep1 - VAR HolidayDayStep1 = - WEEKDAY ( HolidayDateStep1, 1 ) - 1 - VAR SubstituteHolidayOffsetNonWorkingDays = - IF ( - NOT CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], HolidayDayStep1 ), - VAR NextWorkingDayStep2 = - MINX ( - FILTER ( WorkingDays, [FSG_PBI_Day_Number] > HolidayDayStep1 ), - [FSG_PBI_Day_Number] - ) - VAR SubstituteDay = - IF ( - ISBLANK ( NextWorkingDayStep2 ), - MINX ( WorkingDays, [FSG_PBI_Day_Number] ) + 7, - NextWorkingDayStep2 - ) - RETURN SubstituteDay - HolidayDateStep1 - ) - VAR SubstituteOffsetStep2 = SubstituteOffsetStep1 + SubstituteHolidayOffsetNonWorkingDays - VAR SubstituteDateStep2 = OriginalSubstituteDate + SubstituteOffsetStep2 - VAR ConflictDayStep2_0 = - CONTAINS ( - OtherHolidays, - [HolidayDate], SubstituteDateStep2 - ) - VAR ConflictDayStep2_1 = - ConflictDayStep2_0 - && CONTAINS ( - OtherHolidays, - [HolidayDate], SubstituteDateStep2 + 1 - ) - VAR ConflictDayStep2_2 = - ConflictDayStep2_1 - && CONTAINS ( - OtherHolidays, - [HolidayDate], SubstituteDateStep2 + 2 - ) - VAR FinalSubstituteHolidayOffset = - SubstituteOffsetStep2 + ConflictDayStep2_0 + ConflictDayStep2_1 + ConflictDayStep2_2 - RETURN - FinalSubstituteHolidayOffset - ) - VAR HolidayDates_GeneratedSubstitutesExpanded = - ADDCOLUMNS ( - HolidayDates_GeneratedSubstitutesOffset, - "ReplacementHolidayDate", [HolidayDate] + [SubstituteHolidayOffset] - ) - VAR HolidayDates_GeneratedSubstitutesUnique = - DISTINCT ( - SELECTCOLUMNS ( - HolidayDates_GeneratedSubstitutesExpanded, - "UniuqeReplacementHolidayDate", [ReplacementHolidayDate] - ) - ) - VAR HolidayDates_GeneratedSubstitutes = - GENERATE ( - HolidayDates_GeneratedSubstitutesUnique, - TOPN ( - 1, - FILTER ( - HolidayDates_GeneratedSubstitutesExpanded, - [UniuqeReplacementHolidayDate] = [ReplacementHolidayDate] - ), - [ConflictPriority], - ASC, - [HolidayName], - ASC - ) - ) - VAR HolidayDates_Generated = - UNION ( - SELECTCOLUMNS ( - HolidayDates_GeneratedRaw, - "HolidayDate", [HolidayDate], - "HolidayName", [HolidayName] - ), - SELECTCOLUMNS ( - FILTER ( HolidayDates_GeneratedSubstitutes, [SubstituteHolidayOffset] <> 0 ), - "HolidayDate", [HolidayDate] + [SubstituteHolidayOffset], - "HolidayName", InLieuOf_prefix & [HolidayName] - & InLieuOf_suffix - ) - ) - -- Alternative way to express holidays: create a table with the list of the dates - -- The following table should be used instead of HolidayDates_Generated in the following - -- HolidayDates variable if you want to use a fixed list of holidays - VAR HolidayDates_US_ExplicitDates = - DATATABLE ( - "HolidayDate", DATETIME, - "HolidayName", STRING, - { - { "2008-01-01", "New Year's Day" }, - { "2008-12-25", "Christmas Day" }, - ------------------------- - { "2008-11-27", "Thanksgiving Day" }, - { "2009-11-26", "Thanksgiving Day" }, - { "2010-11-25", "Thanksgiving Day" }, - { "2011-11-24", "Thanksgiving Day" }, - { "2012-11-22", "Thanksgiving Day" }, - { "2013-11-28", "Thanksgiving Day" }, - { "2014-11-27", "Thanksgiving Day" }, - { "2015-11-26", "Thanksgiving Day" }, - { "2016-11-24", "Thanksgiving Day" }, - { "2017-11-23", "Thanksgiving Day" }, - { "2018-11-22", "Thanksgiving Day" }, - { "2019-11-28", "Thanksgiving Day" }, - { "2020-11-26", "Thanksgiving Day" } - } - ) - VAR HolidayDates = - SELECTCOLUMNS ( - HolidayDates_Generated, - "Date", [HolidayDate], - "Holiday Name", [HolidayName] - ) // - ------------------------------------------------------------ - -- - -- End of Configuration - -- - ------------------------------------------------------------ - -- - -- The following variables define - -- the content of the calendar tables - -- - ------------------------------------------------------------ - ------------------------------------------------------------ - VAR FirstDayCalendar = - DATE ( FirstYear - 1, 1, 1 ) - VAR LastDayCalendar = - DATE ( LastYear + 1, 12, 31 ) - VAR WeekDayCalculationType = - IF ( FirstDayOfWeek = 0, 7, FirstDayOfWeek ) - + 10 - VAR OffsetFiscalYear = - IF ( FiscalCalendarFirstMonth > 1, 1, 0 ) - VAR WeeklyFiscalPeriods = - GENERATE ( - SELECTCOLUMNS ( - GENERATESERIES ( FirstYear - OffsetFiscalYear, LastYear + OffsetFiscalYear, 1 ), - "CalendarType", "Weekly", - "Fiscal YearNumber", [Value] - ), - VAR StartFiscalYearNumber = [Fiscal YearNumber] - (OffsetFiscalYear * TypeStartFiscalYear) - VAR FirstDayCurrentYear = - DATE ( StartFiscalYearNumber, FiscalCalendarFirstMonth, 1 ) - VAR FirstDayNextYear = - DATE ( StartFiscalYearNumber + 1, FiscalCalendarFirstMonth, 1 ) - VAR DayOfWeekNumberCurrentYear = - WEEKDAY ( FirstDayCurrentYear, WeekDayCalculationType ) - VAR OffsetStartCurrentFiscalYear = - SWITCH ( - WeeklyType, - "Last", 1 - DayOfWeekNumberCurrentYear, - "Nearest", IF ( - DayOfWeekNumberCurrentYear >= 5, - 8 - DayOfWeekNumberCurrentYear, - 1 - DayOfWeekNumberCurrentYear - ), - ERROR ( "Unknown WeeklyType definition.") - ) - VAR DayOfWeekNumberNextYear = - WEEKDAY ( FirstDayNextYear, WeekDayCalculationType ) - VAR OffsetStartNextFiscalYear = - SWITCH ( - WeeklyType, - "Last", - DayOfWeekNumberNextYear, - "Nearest", IF ( - DayOfWeekNumberNextYear >= 5, - 7 - DayOfWeekNumberNextYear, - - DayOfWeekNumberNextYear - ), - ERROR ( "Unknown WeeklyType definition.") - ) - VAR FirstDayOfFiscalYear = FirstDayCurrentYear + OffsetStartCurrentFiscalYear - VAR LastDayOfFiscalYear = FirstDayNextYear + OffsetStartNextFiscalYear - RETURN - ROW ( "FirstDayOfYear", FirstDayOfFiscalYear, - "LastDayOfYear", LastDayOfFiscalYear ) - ) - VAR CheckFirstDayOfWeek = - IF ( - UseCustomFiscalPeriods && (NOT IgnoreWeeklyFiscalPeriods) - && WEEKDAY ( MINX ( CustomFiscalPeriods, [FirstDayOfYear] ), 1 ) - <> ( FirstDayOfWeek + 1 ), - ERROR ( "CustomFiscalPeriods table does not match FirstDayOfWeek setting" ), - TRUE - ) - VAR CustomFiscalPeriodsWithType = - GENERATE ( - ROW ( "CalendarType", "Custom" ), - FILTER ( CustomFiscalPeriods, CheckFirstDayOfWeek ) - ) - VAR FiscalPeriods = - SELECTCOLUMNS ( - FILTER ( - UNION ( - FILTER ( WeeklyFiscalPeriods, NOT IgnoreWeeklyFiscalPeriods ), - CustomFiscalPeriodsWithType - ), - [CalendarType] = WeeklyCalendarType - ), - "FW YearNumber", [Fiscal YearNumber], - "FW StartOfYear", [FirstDayOfYear], - "FW EndOfYear", [LastDayOfYear] - ) - VAR WeeksInP1 = - SWITCH ( - QuarterWeekType, - "445", 4, - "454", 4, - "544", 5, - ERROR ( "QuarterWeekType only supports 445, 454, and 544" ) - ) - VAR WeeksInP2 = - SWITCH ( - QuarterWeekType, - "445", 4, - "454", 5, - "544", 4, - ERROR ( "QuarterWeekType only supports 445, 454, and 544" ) - ) - VAR WeeksInP3 = - SWITCH ( - QuarterWeekType, - "445", 5, - "454", 4, - "544", 4, - ERROR ( "QuarterWeekType only supports 445, 454, and 544" ) - ) - VAR FirstSundayReference = - DATE ( 1900, 12, 30 ) -- Do not change this - VAR FirstWeekReference = FirstSundayReference + FirstDayOfWeek - VAR RawDays = - CALENDAR ( FirstDayCalendar, LastDayCalendar ) - VAR CalendarGregorianPrefixSpace = - IF ( CalendarGregorianPrefix <> "", CalendarGregorianPrefix & " ", "" ) - VAR FiscalGregorianPrefixSpace = - IF ( FiscalGregorianPrefix <> "", FiscalGregorianPrefix & " ", "" ) - VAR FiscalWeeklyPrefixSpace = - IF ( FiscalWeeklyPrefix <> "", FiscalWeeklyPrefix & " ", "" ) - VAR CustomFiscalRawDays = - GENERATE ( FiscalPeriods, CALENDAR ( [FW StartOfYear], [FW EndOfYear] ) ) - VAR CalendarStandardGregorianBase = - GENERATE ( - NATURALLEFTOUTERJOIN ( RawDays, HolidayDates ), - VAR CalDate = [Date] - VAR CalYear = - YEAR ( [Date] ) - VAR CalMonthNumber = - MONTH ( [Date] ) - VAR CalQuarterNumber = - ROUNDUP ( CalMonthNumber / 3, 0 ) - VAR CalDay = - DAY ( [Date] ) - VAR CalWeekNumber = - WEEKNUM ( CalDate, WeekDayCalculationType ) - VAR CalDayOfMonth = - DAY ( CalDate ) - VAR WeekDayNumber = - WEEKDAY ( CalDate, WeekDayCalculationType ) - VAR YearWeekNumber = - INT ( DIVIDE ( CalDate - FirstWeekReference, 7 ) ) - VAR CalendarFirstDayOfYear = - DATE ( CalYear, 1, 1 ) - VAR CalendarDayOfYear = - INT ( CalDate - CalendarFirstDayOfYear + 1 ) - VAR IsWorkingDay = - CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], WEEKDAY ( CalDate, 1 ) - 1 ) - && ISBLANK ( [Holiday Name] ) - VAR _CheckLeapYearBefore = - CalYear - - IF ( (CalMonthNumber = 2 && CalDayOfMonth < 29) - || CalMonthNumber < 2, - 1, - 0 ) - VAR LeapYearsBefore1900 = - INT ( 1899 / 4 ) - - INT ( 1899 / 100 ) - + INT ( 1899 / 400 ) - VAR LeapYearsBetween = - INT ( _CheckLeapYearBefore / 4 ) - - INT ( _CheckLeapYearBefore / 100 ) - + INT ( _CheckLeapYearBefore / 400 ) - - LeapYearsBefore1900 - VAR Sequential365DayNumber = - INT ( CalDate - LeapYearsBetween ) - RETURN - ROW ( - "DateKey", CalYear * 10000 - + CalMonthNumber * 100 - + CalDay, - "Calendar YearNumber", CalYear, - "Calendar Year", CalendarGregorianPrefixSpace & CalYear, - "Calendar QuarterNumber", CalQuarterNumber, - "Calendar Quarter", CalendarGregorianPrefix & "Q" - & CalQuarterNumber - & " ", - "Calendar YearQuarterNumber", CalYear * 4 - - 1 - + CalQuarterNumber, - "Calendar Quarter Year", CalendarGregorianPrefix & "Q" - & CalQuarterNumber - & " " - & CalYear, - "Calendar MonthNumber", CalMonthNumber, - "Calendar Month", FORMAT ( CalDate, "mmm" ), - "Calendar YearMonthNumber", CalYear * 12 - - 1 - + CalMonthNumber, - "Calendar Month Year", FORMAT ( CalDate, "mmm" ) & " " - & CalYear, - "Calendar WeekNumber", CalWeekNumber, - "Calendar Week", CalendarGregorianPrefix & "W" - & FORMAT ( CalWeekNumber, "00" ), - "Calendar YearWeekNumber", YearWeekNumber, - "Calendar Week Year", CalendarGregorianPrefix & "W" - & FORMAT ( CalWeekNumber, "00" ) - & "-" - & CalYear, - "Calendar WeekYearOrder", CalYear * 100 - + CalWeekNumber, - "Calendar DayOfYearNumber", CalendarDayOfYear, - "Day of Month", CalDayOfMonth, - "WeekDayNumber", WeekDayNumber, - "Week Day", FORMAT ( CalDate, "ddd" ), - "IsWorkingDay", IsWorkingDay, - "Day Type", IF ( IsWorkingDay, WorkingDayType, NonWorkingDayType ), - "Sequential365DayNumber", Sequential365DayNumber - ) - ) - VAR CalendarStandardGregorian = - GENERATE ( - CalendarStandardGregorianBase, - VAR CalDate = [Date] - VAR YearNumber = [Calendar YearNumber] - VAR MonthNumber = [Calendar MonthNumber] - VAR YearWeekNumber = [Calendar YearWeekNumber] - VAR YearMonthNumber = [Calendar YearMonthNumber] - VAR YearQuarterNumber = [Calendar YearQuarterNumber] - VAR CurrentWeekPos = - AVERAGEX ( - FILTER ( CalendarStandardGregorianBase, [Date] = TodayReference ), - [Calendar YearWeekNumber] - ) - VAR CurrentMonthPos = - AVERAGEX ( - FILTER ( CalendarStandardGregorianBase, [Date] = TodayReference ), - [Calendar YearMonthNumber] - ) - VAR CurrentQuarterPos = - AVERAGEX ( - FILTER ( CalendarStandardGregorianBase, [Date] = TodayReference ), - [Calendar YearQuarterNumber] - ) - VAR CurrentYearPos = - AVERAGEX ( - FILTER ( CalendarStandardGregorianBase, [Date] = TodayReference ), - [Calendar YearNumber] - ) - VAR RelativeWeekPos = YearWeekNumber - CurrentWeekPos - VAR RelativeMonthPos = YearMonthNumber - CurrentMonthPos - VAR RelativeQuarterPos = YearQuarterNumber - CurrentQuarterPos - VAR RelativeYearPos = YearNumber - CurrentYearPos - VAR CalStartOfMonth = - DATE ( YearNumber, MonthNumber, 1 ) - VAR CalEndOfMonth = - EOMONTH ( CalDate, 0 ) - VAR CalMonthDays = - INT ( CalEndOfMonth - CalStartOfMonth + 1 ) - VAR CalDayOfMonthNumber = - INT ( CalDate - CalStartOfMonth + 1 ) - VAR CalStartOfQuarter = - MINX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearQuarterNumber] = YearQuarterNumber - ), - [Date] - ) - VAR CalEndOfQuarter = - MAXX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearQuarterNumber] = YearQuarterNumber - ), - [Date] - ) - VAR CalQuarterDays = - INT ( CalEndOfQuarter - CalStartOfQuarter + 1 ) - VAR CalDayOfQuarterNumber = - INT ( CalDate - CalStartOfQuarter + 1 ) - VAR CalYearDays = - INT ( DATE ( YearNumber, 12, 31 ) - DATE ( YearNumber, 1, 1 ) + 1 ) - VAR CalDatePreviousWeek = CalDate - 7 - VAR CalDatePreviousMonth = - MAXX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearMonthNumber] = YearMonthNumber - 1 - && - ( [Day of Month] <= CalDayOfMonthNumber - || CalDayOfMonthNumber = CalMonthDays ) - ), - [Date] - ) - VAR CalDatePreviousQuarter = - MAXX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearMonthNumber] = YearMonthNumber - 3 - && - ( [Day of Month] <= CalDayOfMonthNumber - || CalDayOfMonthNumber = CalMonthDays ) - ), - [Date] - ) - VAR CalDatePreviousYear = - MAXX ( - FILTER ( - CalendarStandardGregorianBase, - [Calendar YearMonthNumber] = YearMonthNumber - 12 - && - ( [Day of Month] <= CalDayOfMonthNumber - || CalDayOfMonthNumber = CalMonthDays ) - ), - [Date] - ) - VAR CalStartOfYear = - DATE ( YearNumber, 1, 1 ) - VAR CalEndOfYear = - DATE ( YearNumber, 12, 31 ) - RETURN - ROW ( "Calendar RelativeWeekPos", RelativeWeekPos, - "Calendar RelativeMonthPos", RelativeMonthPos, - "Calendar RelativeQuarterPos", RelativeQuarterPos, - "Calendar RelativeYearPos", RelativeYearPos, - "Calendar StartOfMonth", CalStartOfMonth, - "Calendar EndOfMonth", CalEndOfMonth, - "Calendar DayOfMonthNumber", CalDayOfMonthNumber, - "Calendar StartOfQuarter", CalStartOfQuarter, - "Calendar EndOfQuarter", CalEndOfQuarter, - "Calendar DayOfQuarterNumber", CalDayOfQuarterNumber, - "Calendar StartOfYear", CalStartOfYear, - "Calendar EndOfYear", CalEndOfYear, - "Calendar DatePreviousWeek", CalDatePreviousWeek, - "Calendar DatePreviousMonth", CalDatePreviousMonth, - "Calendar DatePreviousQuarter", CalDatePreviousQuarter, - "Calendar DatePreviousYear", CalDatePreviousYear, - "Calendar MonthDays", CalMonthDays, - "Calendar QuarterDays", CalQuarterDays, - "Calendar YearDays", CalYearDays - ) - ) - VAR FiscalStandardGregorianBase = - GENERATE ( - NATURALLEFTOUTERJOIN ( RawDays, HolidayDates ), - VAR FiscalDate = [Date] - VAR CalYear = - YEAR ( FiscalDate ) - VAR CalMonthNumber = - MONTH ( FiscalDate ) - VAR CalDay = - DAY ( [Date] ) - VAR WeekDayNumber = - WEEKDAY ( FiscalDate, WeekDayCalculationType ) - VAR YearWeekNumber = - INT ( DIVIDE ( FiscalDate - FirstWeekReference, 7 ) ) - VAR FiscalYear = - CalYear - + IF ( FiscalCalendarFirstMonth > 1, - IF ( CalMonthNumber >= FiscalCalendarFirstMonth, - TypeStartFiscalYear, -- TypeStartFiscalYear = 1 - -1 * (TypeStartFiscalYear = 0) -- TypeStartFiscalYear = 0 - ) - ) - VAR FiscalMonthNumber = - MOD ( CalMonthNumber - FiscalCalendarFirstMonth, 12 ) - + 1 - VAR FiscalMonthQuarterNumber = - MOD ( FiscalMonthNumber - 1, 3 ) + 1 - VAR FiscalFirstDayOfYear = - DATE ( FiscalYear - (OffsetFiscalYear * TypeStartFiscalYear), FiscalCalendarFirstMonth, 1 ) - VAR FiscalDayOfYear = - INT ( FiscalDate - FiscalFirstDayOfYear + 1 ) - VAR FiscalFirstYearWeekNumber = - INT ( DIVIDE ( FiscalFirstDayOfYear - FirstWeekReference, 7 ) ) - VAR FiscalWeekNumber = YearWeekNumber - FiscalFirstYearWeekNumber - + 1 - VAR FiscalQuarterNumber = - ROUNDUP ( FiscalMonthNumber / 3, 0 ) - VAR IsWorkingDay = - CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], WEEKDAY ( FiscalDate, 1 ) - 1 ) - && ISBLANK ( [Holiday Name] ) - RETURN - ROW ( - "DateKey", CalYear * 10000 - + CalMonthNumber * 100 - + CalDay, - "Fiscal Year", FiscalGregorianPrefixSpace & FiscalYear, - "Fiscal YearNumber", FiscalYear, - "Fiscal QuarterNumber", FiscalQuarterNumber, - "Fiscal Quarter", FiscalGregorianPrefix & "Q" - & FiscalQuarterNumber - & " ", - "Fiscal YearQuarterNumber", FiscalYear * 4 - - 1 - + FiscalQuarterNumber, - "Fiscal Quarter Year", FiscalGregorianPrefix & "Q" - & FiscalQuarterNumber - & " " - & FiscalYear, - "Fiscal MonthNumber", FiscalMonthNumber, - "Fiscal MonthQuarterNumber", FiscalMonthQuarterNumber, - "Fiscal Month", FORMAT ( FiscalDate, "mmm" ), - "Fiscal YearMonthNumber", FiscalYear * 12 - - 1 - + FiscalMonthNumber, - "Fiscal Month Year", FORMAT ( FiscalDate, "mmm" ) & " " - & CalYear, - "Fiscal WeekNumber", FiscalWeekNumber, - "Fiscal Week", FiscalGregorianPrefix & "W" - & FORMAT ( FiscalWeekNumber, "00" ), - "Fiscal YearWeekNumber", YearWeekNumber, - "Fiscal Week Year", FiscalGregorianPrefix & "W" - & FORMAT ( FiscalWeekNumber, "00" ) - & "-" - & FiscalYear, - "Fiscal WeekYearOrder", FiscalYear * 100 - + FiscalWeekNumber, - "Fiscal DayOfYearNumber", FiscalDayOfYear, - "Day of Month", DAY ( FiscalDate ), - "WeekDayNumber", WeekDayNumber, - "Week Day", FORMAT ( FiscalDate, "ddd" ), - "IsWorkingDay", IsWorkingDay, - "Day Type", IF ( IsWorkingDay, WorkingDayType, NonWorkingDayType ) - ) - ) - VAR FiscalStandardGregorian = - GENERATE ( - FiscalStandardGregorianBase, - VAR FiscalDate = [Date] - VAR FiscalYearNumber = [Fiscal YearNumber] - VAR MonthNumber = [Fiscal MonthNumber] - VAR CalendarYearNumber = - YEAR ( FiscalDate ) - VAR CalendarMonthNumber = - MONTH ( FiscalDate ) - VAR YearWeekNumber = [Fiscal YearWeekNumber] - VAR YearMonthNumber = [Fiscal YearMonthNumber] - VAR YearQuarterNumber = [Fiscal YearQuarterNumber] - VAR CurrentWeekPos = - AVERAGEX ( - FILTER ( FiscalStandardGregorianBase, [Date] = TodayReference ), - [Fiscal YearWeekNumber] - ) - VAR CurrentMonthPos = - AVERAGEX ( - FILTER ( FiscalStandardGregorianBase, [Date] = TodayReference ), - [Fiscal YearMonthNumber] - ) - VAR CurrentQuarterPos = - AVERAGEX ( - FILTER ( FiscalStandardGregorianBase, [Date] = TodayReference ), - [Fiscal YearQuarterNumber] - ) - VAR CurrentYearPos = - AVERAGEX ( - FILTER ( FiscalStandardGregorianBase, [Date] = TodayReference ), - [Fiscal YearNumber] - ) - VAR RelativeWeekPos = YearWeekNumber - CurrentWeekPos - VAR RelativeMonthPos = YearMonthNumber - CurrentMonthPos - VAR RelativeQuarterPos = YearQuarterNumber - CurrentQuarterPos - VAR RelativeYearPos = FiscalYearNumber - CurrentYearPos - VAR FiscalStartOfMonth = - DATE ( CalendarYearNumber, CalendarMonthNumber, 1 ) - VAR FiscalEndOfMonth = - EOMONTH ( FiscalDate, 0 ) - VAR FiscalMonthDays = - INT ( FiscalEndOfMonth - FiscalStartOfMonth + 1 ) - VAR FiscalDayOfMonthNumber = - INT ( FiscalDate - FiscalStartOfMonth + 1 ) - VAR FiscalStartOfQuarter = - MINX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearQuarterNumber] = YearQuarterNumber - ), - [Date] - ) - VAR FiscalEndOfQuarter = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearQuarterNumber] = YearQuarterNumber - ), - [Date] - ) - VAR FiscalQuarterDays = - INT ( FiscalEndOfQuarter - FiscalStartOfQuarter + 1 ) - VAR FiscalFirstDayOfYear = - DATE ( FiscalYearNumber - OffsetFiscalYear, FiscalCalendarFirstMonth, 1 ) - VAR FiscalLastDayOfYear = - DATE ( FiscalYearNumber + (1 * (OffsetFiscalYear = 0)), FiscalCalendarFirstMonth, 1 ) - 1 - VAR FiscalYearDays = - INT ( FiscalLastDayOfYear - FiscalFirstDayOfYear + 1 ) - VAR FiscalDayOfQuarterNumber = - INT ( FiscalDate - FiscalStartOfQuarter + 1 ) - VAR FiscalStartOfYear = - MINX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearNumber] = FiscalYearNumber - ), - [Date] - ) - VAR FiscalEndOfYear = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearNumber] = FiscalYearNumber - ), - [Date] - ) - VAR FiscalDatePreviousWeek = FiscalDate - 7 - VAR FiscalDatePreviousMonth = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearMonthNumber] = YearMonthNumber - 1 - && - ( [Day of Month] <= FiscalDayOfMonthNumber - || FiscalDayOfMonthNumber = FiscalMonthDays ) - ), - [Date] - ) - VAR FiscalDatePreviousQuarter = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearMonthNumber] = YearMonthNumber - 3 - && - ( [Day of Month] <= FiscalDayOfMonthNumber - || FiscalDayOfMonthNumber = FiscalMonthDays ) - ), - [Date] - ) - VAR FiscalDatePreviousYear = - MAXX ( - FILTER ( - FiscalStandardGregorianBase, - [Fiscal YearMonthNumber] = YearMonthNumber - 12 - && - ( [Day of Month] <= FiscalDayOfMonthNumber - || FiscalDayOfMonthNumber = FiscalMonthDays ) - ), - [Date] - ) - RETURN - ROW ( "Fiscal RelativeWeekPos", RelativeWeekPos, - "Fiscal RelativeMonthPos", RelativeMonthPos, - "Fiscal RelativeQuarterPos", RelativeQuarterPos, - "Fiscal RelativeYearPos", RelativeYearPos, - "Fiscal StartOfMonth", FiscalStartOfMonth, - "Fiscal EndOfMonth", FiscalEndOfMonth, - "Fiscal DayOfMonthNumber", FiscalDayOfMonthNumber, - "Fiscal StartOfQuarter", FiscalStartOfQuarter, - "Fiscal EndOfQuarter", FiscalEndOfQuarter, - "Fiscal DayOfQuarterNumber", FiscalDayOfQuarterNumber, - "Fiscal StartOfYear", FiscalStartOfYear, - "Fiscal EndOfYear", FiscalEndOfYear, - "Fiscal DatePreviousWeek", FiscalDatePreviousWeek, - "Fiscal DatePreviousMonth", FiscalDatePreviousMonth, - "Fiscal DatePreviousQuarter", FiscalDatePreviousQuarter, - "Fiscal DatePreviousYear", FiscalDatePreviousYear, - "Fiscal MonthDays", FiscalMonthDays, - "Fiscal QuarterDays", FiscalQuarterDays, - "Fiscal YearDays", FiscalYearDays - ) - ) - VAR FiscalWeeksBase = - GENERATE ( - NATURALLEFTOUTERJOIN ( CustomFiscalRawDays, HolidayDates ), - VAR CalDate = [Date] - VAR FwFirstDayOfYear = [FW StartOfYear] - VAR FwDayOfYear = - INT ( CalDate - FwFirstDayOfYear + 1 ) - VAR CalYear = - YEAR ( [Date] ) - VAR CalMonthNumber = - MONTH ( [Date] ) - VAR CalDay = - DAY ( [Date] ) - VAR FwDayOfYearNumber = CalDate - [FW StartOfYear] - + 1 - VAR FwWeekNumber = - INT ( CEILING ( FwDayOfYearNumber / 7, 1 ) ) - VAR FwPeriodNumber = - IF ( FwWeekNumber > 52, 14, ROUNDUP ( FwWeekNumber / 4, 0 ) ) - VAR FwYearNumber = [FW YearNumber] - VAR FwQuarterNumber = - IF ( FwWeekNumber > 52, 4, ROUNDUP ( FwWeekNumber / 13, 0 ) ) - VAR FwWeekInQuarterNumber = - IF ( FwWeekNumber > 52, 14, FwWeekNumber - 13 * ( FwQuarterNumber - 1 ) ) - VAR FwMonthNumber = - ( FwQuarterNumber - 1 ) - * 3 - + SWITCH ( - TRUE, - FwWeekInQuarterNumber <= WeeksInP1, 1, - FwWeekInQuarterNumber - <= ( WeeksInP1 + WeeksInP2 ), 2, - 3 - ) - VAR WeekDayNumber = - WEEKDAY ( CalDate, WeekDayCalculationType ) - VAR FirstDayOfWeek = [Date] - WeekDayNumber - + 1 - VAR LastDayOfWeek = FirstDayOfWeek + 6 - VAR IsWorkingDay = - CONTAINS ( WorkingDays, [FSG_PBI_Day_Number], WEEKDAY ( CalDate, 1 ) - 1 ) - && ISBLANK ( [Holiday Name] ) - RETURN - ROW ( - "DateKey", CalYear * 10000 - + CalMonthNumber * 100 - + CalDay, - // "FW YearNumber", FwYearNumber, -- It is already in the first set of columns of the GENERATE function - "FW Year", FiscalWeeklyPrefixSpace & FwYearNumber, - "FW QuarterNumber", FwQuarterNumber, - "FW Quarter", FiscalWeeklyPrefix & "Q" - & FwQuarterNumber, - "FW YearQuarterNumber", FwYearNumber * 4 - - 1 - + FwQuarterNumber, - "FW Quarter Year", FiscalWeeklyPrefix & "Q" - & FwQuarterNumber - & " " - & FwYearNumber, - "FW MonthNumber", FwMonthNumber, - "FW Month", FiscalWeeklyPrefix & "P" - & FORMAT ( FwMonthNumber, "00" ), - "FW YearMonthNumber", FwYearNumber * 12 - - 1 - + FwMonthNumber, - "FW Month Year", FiscalWeeklyPrefix & "P" - & FORMAT ( FwMonthNumber, "00" ) - & " " - & FwYearNumber, - "FW WeekNumber", FwWeekNumber, - "FW Week", FiscalWeeklyPrefix & "W" - & FORMAT ( FwWeekNumber, "00" ), - "FW PeriodNumber", FwPeriodNumber, - "FW Period", FiscalWeeklyPrefix & "P" - & FORMAT ( FwPeriodNumber, "00" ), - "FW YearWeekNumber", INT ( DIVIDE ( CalDate - FirstWeekReference, 7 ) ) - + 1, - "FW Week Year", FiscalWeeklyPrefix & "W" - & FORMAT ( FwWeekNumber, "00" ) - & " " - & FwYearNumber, - "FW StartOfWeek", FirstDayOfWeek, - "FW EndOfWeek", LastDayOfWeek, - "WeekDayNumber", WeekDayNumber, - "Week Day", FORMAT ( CalDate, "ddd" ), - "FW DayOfYearNumber", FwDayOfYear, - "IsWorkingDay", IsWorkingDay, - "Day Type", IF ( IsWorkingDay, WorkingDayType, NonWorkingDayType ) - ) - ) - VAR FiscalWeeks_Pre = - GENERATE ( - FiscalWeeksBase, - VAR CalDate = [Date] - VAR FWYearNumber = [FW YearNumber] - VAR FwYearWeekNumber = [FW YearWeekNumber] - VAR FwYearMonthNumber = [FW YearMonthNumber] - VAR FwYearQuarterNumber = [FW YearQuarterNumber] - VAR CurrentWeekPos = - AVERAGEX ( - FILTER ( FiscalWeeksBase, [Date] = TodayReference ), - [FW YearWeekNumber] - ) - VAR CurrentMonthPos = - AVERAGEX ( - FILTER ( FiscalWeeksBase, [Date] = TodayReference ), - [FW YearMonthNumber] - ) - VAR CurrentQuarterPos = - AVERAGEX ( - FILTER ( FiscalWeeksBase, [Date] = TodayReference ), - [FW YearQuarterNumber] - ) - VAR CurrentYearPos = - AVERAGEX ( - FILTER ( FiscalWeeksBase, [Date] = TodayReference ), - [FW YearNumber] - ) - VAR RelativeWeekPos = FwYearWeekNumber - CurrentWeekPos - VAR RelativeMonthPos = FwYearMonthNumber - CurrentMonthPos - VAR RelativeQuarterPos = FwYearQuarterNumber - CurrentQuarterPos - VAR RelativeYearPos = FWYearNumber - CurrentYearPos - VAR FwStartOfMonth = - MINX ( - FILTER ( FiscalWeeksBase, [FW YearMonthNumber] = FwYearMonthNumber ), - [Date] - ) - VAR FwEndOfMonth = - MAXX ( - FILTER ( FiscalWeeksBase, [FW YearMonthNumber] = FwYearMonthNumber ), - [Date] - ) - VAR FwMonthDays = - INT ( FwEndOfMonth - FwStartOfMonth + 1 ) - VAR FwDayOfMonthNumber = - INT ( CalDate - FwStartOfMonth + 1 ) - VAR FwStartOfQuarter = - MINX ( - FILTER ( FiscalWeeksBase, [FW YearQuarterNumber] = FwYearQuarterNumber ), - [Date] - ) - VAR FwEndOfQuarter = - MAXX ( - FILTER ( FiscalWeeksBase, [FW YearQuarterNumber] = FwYearQuarterNumber ), - [Date] - ) - VAR FwQuarterDays = - INT ( FwEndOfQuarter - FwStartOfQuarter + 1 ) - VAR FwDayOfQuarterNumber = - INT ( CalDate - FwStartOfQuarter + 1 ) - VAR FwStartOfYear = - MINX ( - FILTER ( FiscalWeeksBase, [FW YearNumber] = FwYearNumber ), - [Date] - ) - VAR FwEndOfYear = - MAXX ( - FILTER ( FiscalWeeksBase, [FW YearNumber] = FwYearNumber ), - [Date] - ) - VAR FwYearDays = - INT ( FwEndOfYear - FwStartOfYear + 1 ) - RETURN - ROW ( "FW RelativeWeekPos", RelativeWeekPos, - "FW RelativeMonthPos", RelativeMonthPos, - "FW RelativeQuarterPos", RelativeQuarterPos, - "FW RelativeYearPos", RelativeYearPos, - "FW StartOfMonth", FwStartOfMonth, - "FW EndOfMonth", FwEndOfMonth, - "FW DayOfMonthNumber", FwDayOfMonthNumber, - "FW StartOfQuarter", FwStartOfQuarter, - "FW EndOfQuarter", FwEndOfQuarter, - "FW DayOfQuarterNumber", FwDayOfQuarterNumber, - "FW MonthDays", FwMonthDays, - "FW QuarterDays", FwQuarterDays, - "FW YearDays", FwYearDays - ) - ) - VAR FiscalWeeks = - GENERATE ( - FiscalWeeks_Pre, - VAR CalDate = [Date] - VAR FwYearMonthNumber = [FW YearMonthNumber] - VAR FwYearQuarterNumber = [FW YearQuarterNumber] - VAR FWYearNumber = [FW YearNumber] - VAR FwDayOfMonthNumber = [FW DayOfMonthNumber] - VAR FwDayOfQuarterNumber = [FW DayOfQuarterNumber] - VAR FwDayOfYearNumber = [FW DayOfYearNumber] - VAR FwMonthDays = [FW EndOfMonth] - [FW StartOfMonth] + 1 - VAR FwQuarterDays = [FW EndOfQuarter] - [FW StartOfQuarter] + 1 - VAR FwYearDays = [FW EndOfYear] - [FW StartOfYear] + 1 - VAR FwDatePreviousWeek = CalDate - 7 - VAR FwDatePreviousMonth = - MAXX ( - FILTER ( - FiscalWeeks_Pre, - [Fw YearMonthNumber] = FwYearMonthNumber - 1 - && - ( [FW DayOfMonthNumber] <= FwDayOfMonthNumber - || FwDayOfMonthNumber = FwMonthDays ) - ), - [Date] - ) - VAR FwDatePreviousQuarter = - MAXX ( - FILTER ( - FiscalWeeks_Pre, - [Fw YearQuarterNumber] = FwYearQuarterNumber - 1 - && - ( [FW DayOfQuarterNumber] <= FwDayOfQuarterNumber - || FwDayOfQuarterNumber = FwQuarterDays ) - ), - [Date] - ) - VAR FwDatePreviousYear = - MAXX ( - FILTER ( - FiscalWeeks_Pre, - [Fw YearNumber] = FWYearNumber - 1 - && - ( [FW DayOfYearNumber] <= FwDayOfYearNumber - || FwDayOfYearNumber = FwYearDays ) - ), - [Date] - ) - RETURN - ROW ( - "FW DatePreviousWeek", FwDatePreviousWeek, - "FW DatePreviousMonth", FwDatePreviousMonth, - "FW DatePreviousQuarter", FwDatePreviousQuarter, - "FW DatePreviousYear", FwDatePreviousYear - ) - ) - - VAR CompleteCalendarExpanded = - NATURALLEFTOUTERJOIN ( - FiscalStandardGregorian, - NATURALLEFTOUTERJOIN ( CalendarStandardGregorian, FiscalWeeks ) - ) - VAR CompleteCalendar = - FILTER ( - CompleteCalendarExpanded, - ( [Calendar YearNumber] >= FirstYear && [Calendar YearNumber] <= LastYear && CalendarRange = "Calendar" ) - || - ( [Fiscal YearNumber] >= FirstYear && [Fiscal YearNumber] <= LastYear && CalendarRange = "FiscalGregorian" ) - || - ( [FW YearNumber] >= FirstYear && [FW YearNumber] <= LastYear && CalendarRange = "FiscalWeekly" ) - ) - - VAR Result = - SELECTCOLUMNS ( - CompleteCalendar, - - -- Base date columns - "Date", [Date], - "DateKey", [DateKey], - - "Day of Month", [Day of Month], - "WeekDayNumber", [WeekDayNumber], - - "Week Day", [Week Day], - "Sequential365DayNumber", [Sequential365DayNumber], - "Relative Day", DATEDIFF(VALUES('Date Table Setup'[Today]),[Date],DAY), - - -- Calendar = Solar Calendar (January-December) - "Calendar YearNumber", [Calendar YearNumber], - "Calendar Year", [Calendar Year], - "Calendar QuarterNumber", [Calendar QuarterNumber], - "Calendar Quarter", [Calendar Quarter], - "Calendar YearQuarterNumber", [Calendar YearQuarterNumber], - "Calendar Quarter Year", [Calendar Quarter Year], - "Calendar MonthNumber", [Calendar MonthNumber], - "Calendar Month", [Calendar Month], - "Calendar YearMonthNumber", [Calendar YearMonthNumber], - "Calendar Month Year", [Calendar Month Year], - "Calendar WeekNumber", [Calendar WeekNumber], - "Calendar Week", [Calendar Week], - "Calendar YearWeekNumber", [Calendar YearWeekNumber], - "Calendar Week Year", [Calendar Week Year], - "Calendar WeekYearOrder", [Calendar WeekYearOrder], - "Calendar RelativeWeekPos", [Calendar RelativeWeekPos], - "Calendar RelativeMonthPos", [Calendar RelativeMonthPos], - "Calendar RelativeQuarterPos", [Calendar RelativeQuarterPos], - "Calendar RelativeYearPos", [Calendar RelativeYearPos], - "Calendar StartOfMonth", [Calendar StartOfMonth], - "Calendar EndOfMonth", [Calendar EndOfMonth], - "Calendar StartOfQuarter", [Calendar StartOfQuarter], - "Calendar EndOfQuarter", [Calendar EndOfQuarter], - "Calendar StartOfYear", [Calendar StartOfYear], - "Calendar EndOfYear", [Calendar EndOfYear], - "Calendar MonthDays", [Calendar MonthDays], - "Calendar QuarterDays", [Calendar QuarterDays], - "Calendar YearDays", [Calendar YearDays], - "Calendar DayOfMonthNumber", [Calendar DayOfMonthNumber], - "Calendar DayOfQuarterNumber", [Calendar DayOfQuarterNumber], - "Calendar DayOfYearNumber", [Calendar DayOfYearNumber], - "Calendar DatePreviousWeek", [Calendar DatePreviousWeek], - "Calendar DatePreviousMonth", [Calendar DatePreviousMonth], - "Calendar DatePreviousQuarter", [Calendar DatePreviousQuarter], - "Calendar DatePreviousYear", [Calendar DatePreviousYear], - - -- Fiscal = Fiscal Monthly Calendar - "Fiscal Year", [Fiscal Year], - "Fiscal YearNumber", [Fiscal YearNumber], - "Fiscal QuarterNumber", [Fiscal QuarterNumber], - "Fiscal Quarter", [Fiscal Quarter], - "Fiscal YearQuarterNumber", [Fiscal YearQuarterNumber], - "Fiscal Quarter Year", [Fiscal Quarter Year], - "Fiscal MonthNumber", [Fiscal MonthNumber], - "Fiscal MonthInQuarterNumber", [Fiscal MonthQuarterNumber], - "Fiscal Month", [Fiscal Month], - "Fiscal YearMonthNumber", [Fiscal YearMonthNumber], - "Fiscal Month Year", [Fiscal Month Year], - "Fiscal WeekNumber", [Fiscal WeekNumber], - "Fiscal Week", [Fiscal Week], - "Fiscal YearWeekNumber", [Fiscal YearWeekNumber], - "Fiscal Week Year", [Fiscal Week Year], - "Fiscal WeekYearOrder", [Fiscal WeekYearOrder], - "Fiscal RelativeWeekPos", [Fiscal RelativeWeekPos], - "Fiscal RelativeMonthPos", [Fiscal RelativeMonthPos], - "Fiscal RelativeQuarterPos", [Fiscal RelativeQuarterPos], - "Fiscal RelativeYearPos", [Fiscal RelativeYearPos], - "Fiscal StartOfMonth", [Fiscal StartOfMonth], - "Fiscal EndOfMonth", [Fiscal EndOfMonth], - "Fiscal StartOfQuarter", [Fiscal StartOfQuarter], - "Fiscal EndOfQuarter", [Fiscal EndOfQuarter], - "Fiscal StartOfYear", [Fiscal StartOfYear], - "Fiscal EndOfYear", [Fiscal EndOfYear], - "Fiscal MonthDays", [Fiscal MonthDays], - "Fiscal QuarterDays", [Fiscal QuarterDays], - "Fiscal YearDays", [Fiscal YearDays], - "Fiscal DayOfMonthNumber", [Fiscal DayOfMonthNumber], - "Fiscal DayOfQuarterNumber", [Fiscal DayOfQuarterNumber], - "Fiscal DayOfYearNumber", [Fiscal DayOfYearNumber], - "Fiscal DatePreviousWeek", [Fiscal DatePreviousWeek], - "Fiscal DatePreviousMonth", [Fiscal DatePreviousMonth], - "Fiscal DatePreviousQuarter", [Fiscal DatePreviousQuarter], - "Fiscal DatePreviousYear", [Fiscal DatePreviousYear], - - -- FW = Fiscal Weekly calendar - "FW YearNumber", [FW YearNumber], - "FW Year", [FW Year], - "FW QuarterNumber", [FW QuarterNumber], - "FW Quarter", [FW Quarter], - "FW YearQuarterNumber", [FW YearQuarterNumber], - "FW Quarter Year", [FW Quarter Year], - "FW MonthNumber", [FW MonthNumber], - "FW Month", [FW Month], - "FW YearMonthNumber", [FW YearMonthNumber], - "FW Month Year", [FW Month Year], - "FW WeekNumber", [FW WeekNumber], - "FW Week", [FW Week], - "FW PeriodNumber", [FW PeriodNumber], - "FW Period", [FW Period], - "FW YearWeekNumber", [FW YearWeekNumber], - "FW Week Year", [FW Week Year], - "FW StartOfWeek", [FW StartOfWeek], - "FW EndOfWeek", [FW EndOfWeek], - "FW RelativeWeekPos", [FW RelativeWeekPos], - "FW RelativeMonthPos", [FW RelativeMonthPos], - "FW RelativeQuarterPos", [FW RelativeQuarterPos], - "FW RelativeYearPos", [FW RelativeYearPos], - "FW StartOfMonth", [FW StartOfMonth], - "FW EndOfMonth", [FW EndOfMonth], - "FW StartOfQuarter", [FW StartOfQuarter], - "FW EndOfQuarter", [FW EndOfQuarter], - "FW StartOfYear", [FW StartOfYear], - "FW EndOfYear", [FW EndOfYear], - "FW MonthDays", [FW MonthDays], - "FW QuarterDays", [FW QuarterDays], - "FW YearDays", [FW YearDays], - "FW DayOfMonthNumber", [FW DayOfMonthNumber], - "FW DayOfQuarterNumber", [FW DayOfQuarterNumber], - "FW DayOfYearNumber", [FW DayOfYearNumber], - "FW DatePreviousWeek", [FW DatePreviousWeek], - "FW DatePreviousMonth", [FW DatePreviousMonth], - "FW DatePreviousQuarter", [FW DatePreviousQuarter], - "FW DatePreviousYear", [FW DatePreviousYear], - - -- Holidays and working days - "Holiday Name", [Holiday Name], - "IsWorkingDay", [IsWorkingDay], - "Day Type", [Day Type] - ) - RETURN - Result - ``` - - changedProperty = IsHidden - - annotation PBI_Id = 8529640259ef4503a795eb4acb9896dc - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date Table Setup.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date Table Setup.tmdl deleted file mode 100644 index ceb3c7b7f4..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date Table Setup.tmdl +++ /dev/null @@ -1,367 +0,0 @@ -table 'Date Table Setup' - isHidden - lineageTag: d7025a2b-e909-4d09-8e46-3ac17f8ea354 - - measure 'Last Refresh Label' = - - VAR LastRefreshLabel = [Last Refreshed Label] & ": " - VAR LastRefreshDate = - FORMAT ( VALUES ( 'Date Table Setup'[Today] ), BLANK (), USERCULTURE () ) - VAR LastRefreshTime = - FORMAT ( - VALUES ( 'Date Table Setup'[Last Refresh Time] ), - "hh:nn AMPM", - USERCULTURE () - ) - VAR CompanyName = [Company Name Label] & ": " - RETURN - CompanyName & COMPANY[Company Label] & " - " & LastRefreshLabel & LastRefreshDate & " " & LastRefreshTime - isHidden - lineageTag: c652d99c-caec-428b-bfc1-56978a7d1ac9 - - changedProperty = IsHidden - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'First Day of Week' - dataType: int64 - isHidden - formatString: 0 - lineageTag: f67dc51b-1f06-4ee1-a723-9d99b4c0e166 - summarizeBy: sum - sourceColumn: First Day of Week - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column Today - dataType: dateTime - isHidden - formatString: Long Date - lineageTag: cc070ecf-9186-4f88-a22e-d07f52fb5717 - summarizeBy: none - sourceColumn: Today - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column fiscalCalendarFirstMonth - dataType: int64 - isHidden - formatString: 0 - lineageTag: 33a00901-69f8-4c81-bfee-2eb0b7d00de1 - summarizeBy: sum - sourceColumn: fiscalCalendarFirstMonth - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column firstDayOfWeek - dataType: string - isHidden - lineageTag: 4446c3e9-c3eb-4b2d-aa91-13436eb1d80b - summarizeBy: none - sourceColumn: firstDayOfWeek - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column isoCountryHolidays - dataType: string - isHidden - lineageTag: 12d102fb-ff3c-41d8-bf79-2e8a6072f91b - summarizeBy: none - sourceColumn: isoCountryHolidays - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column weeklyType - dataType: string - isHidden - lineageTag: bd977b0c-78cf-4b12-8732-5014f60668d6 - summarizeBy: none - sourceColumn: weeklyType - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column quarterWeekType - dataType: string - isHidden - lineageTag: 82446bf0-c58e-45ef-9039-55dd55444ee3 - summarizeBy: none - sourceColumn: quarterWeekType - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column calendarRange - dataType: string - isHidden - lineageTag: 3a8f008a-31df-46d4-bb66-f669ed747388 - summarizeBy: none - sourceColumn: calendarRange - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column calendarPrefix - dataType: string - isHidden - lineageTag: c8fa610e-ec84-4579-964b-dce877909c68 - summarizeBy: none - sourceColumn: calendarPrefix - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column fiscalGregorianPrefix - dataType: string - isHidden - lineageTag: eb3c4fef-3b31-43b7-80ba-3fc4e30d7c8b - summarizeBy: none - sourceColumn: fiscalGregorianPrefix - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column fiscalWeeklyPrefix - dataType: string - isHidden - lineageTag: b157d4d2-fc5a-4f5f-99d3-f68dd0085da4 - summarizeBy: none - sourceColumn: fiscalWeeklyPrefix - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column useCustomFisclPeriods - dataType: boolean - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 245fa790-9499-4f92-abc4-0586f1e646bb - summarizeBy: none - sourceColumn: useCustomFisclPeriods - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column ignoreWeeklyPeriods - dataType: boolean - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 3a764081-088c-492b-ae2e-607eb4eb1270 - summarizeBy: none - sourceColumn: ignoreWeeklyPeriods - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column dateTblStart - dataType: dateTime - isHidden - formatString: Long Date - lineageTag: 52f280fc-0fcb-4305-b47f-9546da22f7b2 - summarizeBy: none - sourceColumn: dateTblStart - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column dateTblEnd - dataType: dateTime - isHidden - formatString: Long Date - lineageTag: 2b872858-d31a-4588-96fb-ebb5593bb154 - summarizeBy: none - sourceColumn: dateTblEnd - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column timeZone - dataType: string - isHidden - lineageTag: 1a8776d9-01e6-4653-b059-459ac905de4b - summarizeBy: none - sourceColumn: timeZone - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column timeZoneDisplayName - dataType: string - isHidden - lineageTag: a4cd51c2-0616-44ee-9888-57332071535e - summarizeBy: none - sourceColumn: timeZoneDisplayName - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column id - dataType: string - isHidden - lineageTag: 9da54e27-b18f-4012-b4d2-9807ee8d261d - summarizeBy: none - sourceColumn: id - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Last Refresh Time' - dataType: dateTime - isHidden - formatString: Long Time - lineageTag: a12e2d62-cfe3-4cf5-9675-ef5be6a85c8d - summarizeBy: none - sourceColumn: Last Refresh Time - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Time - - column entryNo - dataType: string - isHidden - lineageTag: ba10457d-1371-4678-aca5-857eaf80e03c - summarizeBy: none - sourceColumn: entryNo - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column tenantID - dataType: string - lineageTag: 950f010e-527f-471c-800f-e17dc8ab376d - summarizeBy: none - sourceColumn: tenantID - - annotation SummarizationSetBy = Automatic - - column 'UTC Hours' - dataType: int64 - formatString: 0 - lineageTag: abc7d6cd-1f01-4903-8807-756f3abab9a1 - summarizeBy: sum - sourceColumn: UTC Hours - - annotation SummarizationSetBy = Automatic - - column 'UTC Minutes' - dataType: int64 - formatString: 0 - lineageTag: 0e46295e-0677-4819-a234-c5484e308ff1 - summarizeBy: sum - sourceColumn: UTC Minutes - - annotation SummarizationSetBy = Automatic - - partition 'Date Table Setup-212423f6-d641-4afd-8cf7-9cfd267b40dc' = m - mode: import - queryGroup: 'Date Table' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY, API_ENDPOINT, []), - TableData = Source{[Name = "dateSetups", Signature = "table"]}[Data], - CheckTenantIDColumnExists = if Table.HasColumns(TableData, "tenantID") then TableData else Table.AddColumn(TableData, "tenantID", each null, type text), - #"Convert UTC to Local" = ConvertUTC(CheckTenantIDColumnExists), - #"Removed Columns" = Table.RemoveColumns(#"Convert UTC to Local", {"ETag"}), - #"Added Conditional Column" = Table.AddColumn( - #"Removed Columns", - "First Day of Week", - each - if [firstDayOfWeek] = "Sunday" then - 0 - else if [firstDayOfWeek] = "Monday" then - 1 - else if [firstDayOfWeek] = "Tuesday" then - 2 - else if [firstDayOfWeek] = "Wednesday" then - 3 - else if [firstDayOfWeek] = "Thursday" then - 4 - else if [firstDayOfWeek] = "Friday" then - 5 - else if [firstDayOfWeek] = "Saturday" then - 6 - else - 1 - ), - #"Changed Type" = Table.TransformColumnTypes(#"Added Conditional Column", {{"First Day of Week", Int64.Type}}), - #"Replaced Value" = Table.ReplaceValue( - #"Changed Type", - each [calendarRange], - each - if [calendarRange] = "Weekly" then - "FiscalWeekly" - else if [calendarRange] = "Fiscal Calendar" then - "FiscalGregorian" - else - "Calendar", - Replacer.ReplaceText, - {"calendarRange"} - ), - #"Replaced Value1" = Table.ReplaceValue( - #"Replaced Value", "", "F", Replacer.ReplaceValue, {"fiscalGregorianPrefix"} - ), - #"Replaced Value2" = Table.ReplaceValue( - #"Replaced Value1", "", "FW", Replacer.ReplaceValue, {"fiscalWeeklyPrefix"} - ), - #"Changed Type3" = Table.TransformColumnTypes( - #"Replaced Value2", - { - {"fiscalCalendarFirstMonth", Int64.Type}, - {"firstDayOfWeek", type text}, - {"isoCountryHolidays", type text}, - {"weeklyType", type text}, - {"quarterWeekType", type text}, - {"calendarRange", type text}, - {"calendarPrefix", type text}, - {"fiscalGregorianPrefix", type text}, - {"fiscalWeeklyPrefix", type text}, - {"useCustomFisclPeriods", type logical}, - {"ignoreWeeklyPeriods", type logical}, - {"timeZone", type text}, - {"timeZoneDisplayName", type text}, - {"dateTblStart", type date}, - {"dateTblEnd", type date} - } - ) - in - #"Changed Type3" - - changedProperty = IsHidden - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date.tmdl deleted file mode 100644 index acc863809e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Date.tmdl +++ /dev/null @@ -1,1474 +0,0 @@ -table Date - lineageTag: 43a65c75-84cf-4e19-b893-90aa5fbee72b - dataCategory: Time - - measure 'No. of Days' = - - COUNTROWS ( - DATESBETWEEN ( 'Date'[Date], MIN ( 'Date'[Date] ), MAX ( 'Date'[Date] ) ) - ) - formatString: 0 - lineageTag: 1a4368d8-993e-48df-ba27-a8c23154722a - - changedProperty = IsHidden - - measure 'Working Days' = - - CALCULATE ( COUNTROWS ( 'Date' ), 'Date'[Day Type] = "Working day" ) - formatString: 0 - lineageTag: 1fd0995b-72b6-4f5d-8daf-a09e2f5137f5 - - measure Ranged = - - VAR _FilterTable = - VALUES ( 'Date'[Date] ) - VAR IndexedDates = - ADDCOLUMNS ( - _FilterTable, - "@Index", - RANKX ( - SUMMARIZECOLUMNS ( 'Date'[Date], _FilterTable ), - 'Date'[Date], - , - ASC, - DENSE - ) - ) - VAR PreviousIndexedDate = - ADDCOLUMNS ( - IndexedDates, - "@Previous Date", - VAR PrevIndex = [@Index] - 1 - RETURN - SELECTCOLUMNS ( FILTER ( IndexedDates, [@Index] = PrevIndex ), [Date] ) - ) - VAR CalculateBreakPoint = - ADDCOLUMNS ( - PreviousIndexedDate, - "@Break Point", - IF ( - NOT DATEDIFF ( [@Previous Date], 'Date'[Date], DAY ) = 1, - TRUE (), - FALSE () - ) - ) - VAR BreakPointTable = - FILTER ( CalculateBreakPoint, [@Break Point] = TRUE () ) - VAR MaxDate = - CALCULATE ( MAX ( 'Date'[Date] ), _FilterTable ) - VAR NextIndex = - ADDCOLUMNS ( - BreakPointTable, - "@NextIndex", SELECTCOLUMNS ( OFFSET ( +1, BreakPointTable ), [@Index] ) - 1 - ) - VAR NextDate = - ADDCOLUMNS ( - NextIndex, - "@NextDate", - VAR PrevIndex = [@Index] - 1 - RETURN - SELECTCOLUMNS ( FILTER ( IndexedDates, [@Index] = [@NextIndex] ), [Date] ) - ) - VAR Ranged = - ADDCOLUMNS ( - NextDate, - "@Range", - IF ( - ISBLANK ( [@NextDate] ), - FORMAT ( 'Date'[Date], "yyyy-mm-dd" ) & ".." - & FORMAT ( MaxDate, "yyyy-mm-dd" ), - FORMAT ( 'Date'[Date], "yyyy-mm-dd" ) & ".." - & FORMAT ( [@NextDate], "yyyy-mm-dd" ) - ) - ) - RETURN - CONCATENATEX ( Ranged, [@Range], "|" ) - lineageTag: be76e6e5-8688-4d0d-a625-8b10009582ce - - column Date - isKey - formatString: Short Date - lineageTag: de457cc0-85dc-480a-94be-35b6a6b818d0 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Date] - sortByColumn: DateKey - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column DateKey - isHidden - formatString: 0 - lineageTag: a8e1fec3-f094-43aa-b68a-1204a15e3fed - summarizeBy: count - isNameInferred - sourceColumn: Date Ref[DateKey] - - annotation SummarizationSetBy = Automatic - - column 'Day of Month' - isHidden - formatString: 0 - lineageTag: fb640852-0a87-4db3-924f-91271646d948 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Day of Month] - - annotation SummarizationSetBy = Automatic - - column WeekDayNumber - isHidden - formatString: 0 - lineageTag: 4d53cb31-8efa-4e34-ad8c-f0e387a56a2b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[WeekDayNumber] - - annotation SummarizationSetBy = Automatic - - column 'Week Day' - lineageTag: 87d986f6-8d0a-4af1-bf9d-2748b7ba57dc - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Week Day] - sortByColumn: WeekDayNumber - - annotation SummarizationSetBy = Automatic - - column 'Holiday Name' - isHidden - lineageTag: 44c6940b-52cb-4c9f-a4f9-00590fd0a22e - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Holiday Name] - - annotation SummarizationSetBy = Automatic - - column IsWorkingDay - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 7d4283ba-58dd-4c57-abec-3945999ba321 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[IsWorkingDay] - - annotation SummarizationSetBy = Automatic - - column 'Day Type' - lineageTag: a92edf57-7150-40d0-98b0-670245650ac0 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Day Type] - - annotation SummarizationSetBy = Automatic - - column DatesWithTransactions - isHidden - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 29288877-7601-49ac-89f6-b9bbd9dd065f - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[DatesWithTransactions] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearNumber' - isHidden - formatString: 0 - lineageTag: 3776f4bf-9971-4135-ae3d-5eeff20d9b67 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Year' - displayFolder: _Standard Calendar - lineageTag: eafb2700-d9bf-40ef-b2a6-d97476b09f5e - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Year] - sortByColumn: 'Calendar YearNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar QuarterNumber' - isHidden - lineageTag: c8784f24-f4a6-4663-a2d2-f1cf8cab19aa - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar Quarter' - displayFolder: _Standard Calendar - lineageTag: 906fcdf7-6285-4922-8968-362fc571dd84 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Quarter] - sortByColumn: 'Calendar QuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearQuarterNumber' - isHidden - lineageTag: 0bb5b664-4cce-44d0-854e-fdb6a35905a5 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar Quarter Year' - displayFolder: _Standard Calendar - lineageTag: 2c5ea502-608c-4500-beb1-042ffb003d68 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Quarter Year] - sortByColumn: 'Calendar YearQuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar MonthNumber' - isHidden - formatString: 0 - lineageTag: 28353b66-7741-4868-9f92-840f4b4710ec - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar MonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Month' - displayFolder: _Standard Calendar - lineageTag: 6e1a2bd3-8529-433c-a4ea-a6a3d3611046 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Month] - sortByColumn: 'Calendar MonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearMonthNumber' - isHidden - formatString: 0 - lineageTag: 549dd6c7-9e3f-4dfd-8bab-67548032517f - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Month Year' - displayFolder: _Standard Calendar - lineageTag: 46388357-c60d-4744-a628-f9ccff2c0687 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Month Year] - sortByColumn: 'Calendar YearMonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar WeekNumber' - isHidden - formatString: 0 - lineageTag: 1e84e68f-60ef-4164-b0ee-9c93f764a851 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Week' - displayFolder: _Standard Calendar - lineageTag: fa556103-ff03-4954-af2d-8e70b22bcfb7 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Week] - sortByColumn: 'Calendar WeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearWeekNumber' - isHidden - formatString: 0 - lineageTag: bde602a6-67d7-4d1a-9669-98fc28358fcb - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar Week Year' - displayFolder: _Standard Calendar - lineageTag: 43f804c2-759c-4fe1-97d9-0dc74f83630c - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar Week Year] - sortByColumn: 'Calendar YearWeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'Calendar WeekYearOrder' - isHidden - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 37b44620-7711-492f-8cb9-0077e01d64eb - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar WeekYearOrder] - - annotation SummarizationSetBy = Automatic - - column 'Calendar RelativeWeekPos' - displayFolder: _Standard Calendar - lineageTag: 3c121010-847d-4661-86b0-d3306993d1fc - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeMonthPos' - displayFolder: _Standard Calendar - lineageTag: 72d7ff37-a6f6-45ac-9bd1-cb3050da78f3 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeQuarterPos' - displayFolder: _Standard Calendar - lineageTag: b9bbb6c1-a863-42b0-9be0-4c067880aecf - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar RelativeYearPos' - displayFolder: _Standard Calendar - lineageTag: 0389f321-8c3e-4094-9937-a72690d006ce - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Calendar StartOfMonth' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: 86e6859f-ddf3-4905-b792-58c9b97c6e44 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar StartOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar EndOfMonth' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: cacb2e9f-f673-4700-af72-7afbee746739 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar StartOfQuarter' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: fe44207b-b823-4d13-a311-0c96e70b987c - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar EndOfQuarter' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: 3291fc3a-8587-4dca-b01d-2ab523ce7101 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar StartOfYear' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: c33c2def-e542-47d1-b431-11fa3ec39720 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar StartOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Calendar EndOfYear' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: ef673c14-ae3c-4f69-bb8a-f63db9617875 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Calendar MonthDays' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: c7b6991d-1e93-4a53-b0bf-bb4d9728240b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar QuarterDays' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 7e1c85c4-20ce-49a5-a788-b44eff618ef3 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar YearDays' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 4891dfee-1f75-4c3a-9bea-861d3612b2a5 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar YearDays] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfMonthNumber' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 34806fca-07c1-4024-a936-9161e13a8c7b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfQuarterNumber' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 9bddb3d9-8f84-44de-9e0c-30aacc4fe3db - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DayOfYearNumber' - formatString: 0 - displayFolder: _Standard Calendar - lineageTag: 5e77a5c0-44bc-493f-9fd1-3c3c3845fc32 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Calendar DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousWeek' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: 9412edbb-aa3e-440a-b28b-b815200206c1 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousMonth' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: c0ff8f0c-5607-440d-beb7-be720f02c21c - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousQuarter' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: b1cd39c6-820f-4eec-b95b-eca9e4fb2f3f - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Calendar DatePreviousYear' - formatString: General Date - displayFolder: _Standard Calendar - lineageTag: 3836d147-36d2-4b0c-be3a-02013f871121 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Calendar DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Year' - displayFolder: _Fiscal Calendar - lineageTag: 4309f1b1-5303-4bbe-a033-3ae569481cb4 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Year] - sortByColumn: 'Fiscal YearNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearNumber' - isHidden - formatString: 0 - lineageTag: 9be61963-a572-4d0e-aac5-59229b25c86a - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal QuarterNumber' - isHidden - lineageTag: f01a737d-316e-41b5-879c-74a492e01e89 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal Quarter' - displayFolder: _Fiscal Calendar - lineageTag: a3fdb947-7ec9-4f75-a830-9e008027f5be - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Quarter] - sortByColumn: 'Fiscal QuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearQuarterNumber' - isHidden - lineageTag: 91dbdef6-b76d-494a-8b66-dc10f7e03b45 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal Quarter Year' - displayFolder: _Fiscal Calendar - lineageTag: 55062367-69e1-4f9a-b4a6-ea8e527caec4 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Quarter Year] - sortByColumn: 'Fiscal YearQuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthNumber' - isHidden - formatString: 0 - lineageTag: c080d6c2-37fd-4243-a69b-ae601a5ee927 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal MonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthInQuarterNumber' - isHidden - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: eeb15ac4-273e-411a-b2c6-bd6ef69d3ad9 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal MonthInQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Month' - displayFolder: _Fiscal Calendar - lineageTag: 8a49071b-afae-41c5-b463-81bce1e24c65 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Month] - sortByColumn: 'Fiscal MonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearMonthNumber' - isHidden - formatString: 0 - lineageTag: 8254bc5a-ce6f-4b87-bccf-33998052ec7e - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Month Year' - displayFolder: _Fiscal Calendar - lineageTag: a6c93316-93e2-4fc2-aebb-21781fcbf7d5 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Month Year] - sortByColumn: 'Fiscal YearMonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal WeekNumber' - isHidden - formatString: 0 - lineageTag: 72c2ff47-4995-4360-9f14-9c170925dfae - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Week' - displayFolder: _Fiscal Calendar - lineageTag: 3ee8444b-9959-446c-909b-67ccacc04ec1 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Week] - sortByColumn: 'Fiscal WeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearWeekNumber' - isHidden - formatString: 0 - lineageTag: 3f1d7ad9-7131-4869-ae4d-1e4861378737 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal Week Year' - displayFolder: _Fiscal Calendar - lineageTag: b09e6e42-954d-401d-901e-73a4908a36eb - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal Week Year] - sortByColumn: 'FW YearWeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'Fiscal WeekYearOrder' - isHidden - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 10b9bda4-f167-4bd3-a6f7-a9ebf4f38a36 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal WeekYearOrder] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal RelativeWeekPos' - displayFolder: _Fiscal Calendar - lineageTag: a7092406-c70e-47ce-bb5c-8f8c9eb85e1f - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeMonthPos' - displayFolder: _Fiscal Calendar - lineageTag: e4c65d43-bc58-4c60-a2e6-ca42f109abab - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeQuarterPos' - displayFolder: _Fiscal Calendar - lineageTag: 8db19a91-3741-4dfe-832d-0b08d51a578a - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal RelativeYearPos' - displayFolder: _Fiscal Calendar - lineageTag: 405ce0df-cdba-447e-abb8-2f7fda806b0b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Fiscal StartOfMonth' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: 96ec7ed1-cf0f-444d-86bc-2cf7fd378db1 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal StartOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal EndOfMonth' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: d4ee5d8b-8ac7-4319-a7a6-0ec65331f465 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal StartOfQuarter' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: 268275df-62fb-49db-987d-5e4e1b08a39c - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal EndOfQuarter' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: bc4ac4d0-6d23-43e0-9c0f-bd2039e21980 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal StartOfYear' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: cfa797dd-4fe9-4af8-9aaf-543956efd413 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal StartOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal EndOfYear' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: 3d9bdb34-e70a-44ec-b296-d13266432f70 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal MonthDays' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 5d912c0d-fcf0-4259-b2f2-1b8f21666e05 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal QuarterDays' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: dce72481-e786-4ed9-9776-584f5732d133 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal YearDays' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: b2e1d2c0-aa54-4100-a7f2-a4e018e0bce0 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal YearDays] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfMonthNumber' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 9005eda0-cd3d-40ac-800b-72f704c571f2 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfQuarterNumber' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 90be3b35-e218-47e3-91fd-707bfc7c7a2a - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DayOfYearNumber' - formatString: 0 - displayFolder: _Fiscal Calendar - lineageTag: 51f8869a-eae7-44e0-aaa3-a8219657d14c - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Fiscal DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousWeek' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: f3d6591f-f7e3-4909-a849-6ac956f6e4b5 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousMonth' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: cca225dd-90da-4aa5-8907-aff394845eee - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousQuarter' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: 09daf6ef-268b-4d0d-b5c8-413ce37c6186 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'Fiscal DatePreviousYear' - formatString: General Date - displayFolder: _Fiscal Calendar - lineageTag: 239ad661-3781-4f71-a474-045ee230e220 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Fiscal DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'FW YearNumber' - isHidden - formatString: 0 - lineageTag: 4a945aab-e20f-4631-aea9-c68d8879113e - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Year' - displayFolder: _Weekly Calendar - lineageTag: ac826f1e-e350-4f10-a088-7cdd9d921d22 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Year] - sortByColumn: 'FW YearNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW QuarterNumber' - isHidden - lineageTag: 1e73dd82-3efb-4a8c-8682-b64d5d5ebf12 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW QuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Quarter' - displayFolder: _Weekly Calendar - lineageTag: ea488855-48b0-4a2d-a99c-cfeb1c841c00 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Quarter] - sortByColumn: 'FW QuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW YearQuarterNumber' - isHidden - lineageTag: 9f02774d-9843-422a-b215-e1d6a739825f - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearQuarterNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Quarter Year' - displayFolder: _Weekly Calendar - lineageTag: 61e1ae08-6194-4c3c-b8d6-b7b3a8548e3f - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Quarter Year] - sortByColumn: 'FW YearQuarterNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW MonthNumber' - isHidden - lineageTag: 838c85c2-dc3c-4072-b0fe-21061bb62085 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW MonthNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Month' - displayFolder: _Weekly Calendar - lineageTag: 3b27db1b-5184-48e7-a64f-8713263bbcde - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Month] - sortByColumn: 'FW MonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW YearMonthNumber' - isHidden - lineageTag: f794c90d-e274-43d4-b0fe-e70babcb82e5 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearMonthNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Month Year' - displayFolder: _Weekly Calendar - lineageTag: b4fc566a-9fa1-4d4c-b593-b9e688465df8 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Month Year] - sortByColumn: 'FW YearMonthNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW WeekNumber' - isHidden - formatString: 0 - lineageTag: 14b75dde-362c-45e2-b8fa-8b4846b97d92 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW WeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Week' - displayFolder: _Weekly Calendar - lineageTag: 94ccf79f-75e4-4e53-85e5-d7ba2e318383 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Week] - sortByColumn: 'FW WeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW PeriodNumber' - isHidden - lineageTag: ff1b8388-ed99-4f9e-b20b-9fa56541d3c7 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW PeriodNumber] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW Period' - displayFolder: _Weekly Calendar - lineageTag: 1ea40e86-d134-40b0-a117-957e0fcb5c94 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Period] - sortByColumn: 'FW PeriodNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW YearWeekNumber' - isHidden - formatString: 0 - lineageTag: ff50a726-b889-4a2b-90e5-50dd2be2de83 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearWeekNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW Week Year' - displayFolder: _Weekly Calendar - lineageTag: e215dcb4-1cb2-40be-9dbe-972862b3baa2 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW Week Year] - sortByColumn: 'FW YearWeekNumber' - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfWeek' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: 13c0c728-c94e-4602-a213-81fdf9318fdd - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW StartOfWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfWeek' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: ba4d5cae-592d-4aa1-bb4f-80d480ac0e32 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW EndOfWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW RelativeWeekPos' - displayFolder: _Weekly Calendar - lineageTag: 90865798-3ed2-48db-970d-407a69f604a1 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW RelativeWeekPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeMonthPos' - displayFolder: _Weekly Calendar - lineageTag: 15cab468-7f86-4a20-81b2-ef7a1108ed10 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW RelativeMonthPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeQuarterPos' - displayFolder: _Weekly Calendar - lineageTag: 7c457684-360a-4ede-a38a-41c46bc88d7c - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW RelativeQuarterPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW RelativeYearPos' - displayFolder: _Weekly Calendar - lineageTag: 9ba55f9b-2226-4985-a3a5-def688fc151c - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW RelativeYearPos] - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'FW StartOfMonth' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: a46d4152-42a0-44af-9ea8-16d4e9a15ecb - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW StartOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfMonth' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: 6293aed1-d7fa-41a1-a62d-fa2d8e89f045 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW EndOfMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfQuarter' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: 8483ae63-3171-4889-8dcb-bb706a0cfc45 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW StartOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfQuarter' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: b249ccc8-36bd-4e18-b574-1fc55d8fc9a8 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW EndOfQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW StartOfYear' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: 4e147ce6-585a-4b5a-bf49-1e96a65022f6 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW StartOfYear] - - annotation SummarizationSetBy = Automatic - - column 'FW EndOfYear' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: 60b08900-3f6c-4855-bc00-789ccb4ca8c2 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW EndOfYear] - - annotation SummarizationSetBy = Automatic - - column 'FW MonthDays' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: df984e82-e421-48fc-8a00-59826303e58f - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW MonthDays] - - annotation SummarizationSetBy = Automatic - - column 'FW QuarterDays' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: 4b23d5be-1bef-4bee-be02-a48c680a91ed - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW QuarterDays] - - annotation SummarizationSetBy = Automatic - - column 'FW YearDays' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: f94d98c8-b581-4c1d-be31-23d2e0f57fba - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW YearDays] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfMonthNumber' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: 8d833c34-a69f-487a-a198-52eb7ae8fa48 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW DayOfMonthNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfQuarterNumber' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: 13d04d86-e5fa-48e4-a680-4ca569b43bfd - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW DayOfQuarterNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DayOfYearNumber' - formatString: 0 - displayFolder: _Weekly Calendar - lineageTag: 17054897-fac4-4cab-89a0-88049f3b8b3b - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[FW DayOfYearNumber] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousWeek' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: 12add804-bcd9-449c-9034-623015558a9e - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW DatePreviousWeek] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousMonth' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: 81345b13-f5f8-4a2e-a9fa-2aa7a0cded00 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW DatePreviousMonth] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousQuarter' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: 326717ad-741d-4f97-86fa-864673193d21 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW DatePreviousQuarter] - - annotation SummarizationSetBy = Automatic - - column 'FW DatePreviousYear' - formatString: General Date - displayFolder: _Weekly Calendar - lineageTag: eccf8b73-0631-422c-a03b-44fdf591c2a4 - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[FW DatePreviousYear] - - annotation SummarizationSetBy = Automatic - - column 'Relative Day' - formatString: 0 - lineageTag: 065c76e8-8ede-45f4-b15b-f30f6d127e3e - summarizeBy: none - isNameInferred - sourceColumn: Date Ref[Relative Day] - - annotation SummarizationSetBy = User - - column Sequential365DayNumber - isHidden - lineageTag: bbd3cd48-1922-4293-8cd0-c69a7528ca56 - summarizeBy: sum - isNameInferred - sourceColumn: Date Ref[Sequential365DayNumber] - - annotation SummarizationSetBy = Automatic - - hierarchy 'Fiscal Year-Quarter-Month-Week' - displayFolder: _Fiscal Calendar - lineageTag: 3d809386-699f-419e-b16d-f49c19b12b29 - - level 'Fiscal Year' - lineageTag: 40f0b909-9e82-4ba3-92df-a8b50b00a40b - column: 'Fiscal Year' - - level 'Fiscal Quarter Year' - lineageTag: b110c9b3-ebdb-4ed1-8427-abbb882e1d58 - column: 'Fiscal Quarter Year' - - level 'Fiscal Month Year' - lineageTag: 9bd26d03-671d-4cea-9e25-5aafb1c7d21f - column: 'Fiscal Month Year' - - level 'Fiscal Week Year' - lineageTag: 50478d23-8e70-467a-8801-ce96d8e29c35 - column: 'Fiscal Week Year' - - hierarchy 'Calendar Year-Quarter-Month-Week' - displayFolder: _Standard Calendar - lineageTag: 1e1ffcb8-b7cd-4858-91d0-5a8526a6a135 - - level 'Calendar Year' - lineageTag: d82e0fe4-49e2-4df6-a525-9a4f6108743b - column: 'Calendar Year' - - level 'Calendar Quarter Year' - lineageTag: 875d1c42-f9de-4373-9dec-a1409f1e179d - column: 'Calendar Quarter Year' - - level 'Calendar Month Year' - lineageTag: 86bf3301-883d-4e52-be22-7585cc62296d - column: 'Calendar Month Year' - - level 'Calendar Week Year' - lineageTag: 82ff4fc4-5640-43be-96e1-1ccb6533253e - column: 'Calendar Week Year' - - hierarchy 'FW Year-Quarter-Month-Week' - displayFolder: _Weekly Calendar - lineageTag: d82a685d-84a6-48dc-9d56-aba3a6d35852 - - level 'FW Year' - lineageTag: e5cd94ed-0d1a-4e41-89ad-82cf77688b47 - column: 'FW Year' - - level 'FW Quarter Year' - lineageTag: 9adb622b-d68e-41eb-92d3-f0d3ea6d363f - column: 'FW Quarter Year' - - level 'FW Month Year' - lineageTag: 80aae42c-b9ec-42c5-ae09-13c65d700732 - column: 'FW Month Year' - - level 'FW Week Year' - lineageTag: 01c4eb82-c283-4300-8765-3e61e813fec9 - column: 'FW Week Year' - - hierarchy 'Fiscal Year-Month' - displayFolder: _Fiscal Calendar - lineageTag: b91345f2-a64b-4476-bcdd-bc62e8eddf8c - - level 'Fiscal Year' - lineageTag: 54b6013d-cd41-43ea-adde-7461b8f56250 - column: 'Fiscal Year' - - level 'Fiscal Month Year' - lineageTag: 0e94c815-23fc-4ac6-9863-dd02e6f69315 - column: 'Fiscal Month Year' - - hierarchy 'Fiscal Year-Month-Week' - displayFolder: _Fiscal Calendar - lineageTag: 298a8eb2-1115-42f8-9b24-319c1f464fce - - level 'Fiscal Year' - lineageTag: e8fd0bf8-66c7-4df2-8526-1bb27177f912 - column: 'Fiscal Year' - - level 'Fiscal Month Year' - lineageTag: edd3142f-d60d-494b-85fc-dcadaaa5b8a4 - column: 'Fiscal Month Year' - - level 'Fiscal Week Year' - lineageTag: c88b8774-fc79-4567-9b79-2849dedd4657 - column: 'Fiscal Week Year' - - hierarchy 'Calendar Year-Month' - displayFolder: _Standard Calendar - lineageTag: b1438c41-8116-4575-9e46-a0c98f675559 - - level 'Calendar Year' - lineageTag: 7bfba93e-5d86-41fa-a428-152ab854a070 - column: 'Calendar Year' - - level 'Calendar Month Year' - lineageTag: a923bc3f-1bdd-4926-b538-a0bf17d0b2d5 - column: 'Calendar Month Year' - - hierarchy 'Calendar Year-Month-Week' - displayFolder: _Standard Calendar - lineageTag: 14bbd8ca-3b08-45dd-a221-5fde94bf8dc6 - - level 'Calendar Year' - lineageTag: b4693f04-e15f-42f1-afce-641aa9bd8386 - column: 'Calendar Year' - - level 'Calendar Month Year' - lineageTag: ad1f4929-9815-47ae-ae38-e76760467433 - column: 'Calendar Month Year' - - level 'Calendar Week Year' - lineageTag: 8c1e598f-68d9-4ec8-8e8b-94bc0f325e6d - column: 'Calendar Week Year' - - hierarchy 'FW Year-Month-Week' - displayFolder: _Weekly Calendar - lineageTag: 6aaeeccb-1242-43fb-9099-223d53bf7246 - - level 'FW Year' - lineageTag: 37704c7b-a221-40d3-a104-a5e5c16746f0 - column: 'FW Year' - - level 'FW Month Year' - lineageTag: 1d9a9430-6bed-465f-afbf-c367b9f5edf6 - column: 'FW Month Year' - - level 'FW Week Year' - lineageTag: da024fdc-e22a-4d6e-8355-fbe50de4695c - column: 'FW Week Year' - - hierarchy 'FW Year-Quarter-Week' - displayFolder: _Weekly Calendar - lineageTag: 5dc02715-2940-4e60-8501-f9850f5b89a0 - - level 'FW Year' - lineageTag: c4f66205-6c99-4eed-9ea9-0fd4bf9fa72b - column: 'FW Year' - - level 'FW Quarter Year' - lineageTag: d9c3188f-b8fa-45bc-9e08-880f6c98db91 - column: 'FW Quarter Year' - - level 'FW Week Year' - lineageTag: a100ef88-63c6-46b8-88c7-7d5d4ba25929 - column: 'FW Week Year' - - hierarchy 'FW Year-Week' - displayFolder: _Weekly Calendar - lineageTag: 41126b6f-8505-4d19-a3e8-7452ae3cefaa - - level 'FW Year' - lineageTag: 0e86a949-ac84-4345-a88e-352ea19afe07 - column: 'FW Year' - - level 'FW Week Year' - lineageTag: 7fb1d3c0-186f-4de8-a7be-dec117b3c3fd - column: 'FW Week Year' - - partition Date-fb762a96-1dbb-42f0-9ece-2145aa3ae786 = calculated - mode: import - source = 'Date Ref' - - annotation PBI_Id = f76c5b5ef8b847dd831e9ca060731a1c - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Dimension Sets.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Dimension Sets.tmdl deleted file mode 100644 index cac5294ab8..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Dimension Sets.tmdl +++ /dev/null @@ -1,213 +0,0 @@ -table 'Dimension Sets' - lineageTag: 1617752a-65ec-4d0c-b652-07eb46ba12e3 - - column dimensionSetID - dataType: int64 - isHidden - isKey - formatString: 0 - lineageTag: 3373136f-17c1-4517-9d9e-13db58e28526 - summarizeBy: none - sourceColumn: dimensionSetID - - annotation SummarizationSetBy = Automatic - - column valueCount - dataType: int64 - isHidden - formatString: 0 - lineageTag: 2dda7c21-1bd5-481e-8f90-096a1d85faf6 - summarizeBy: sum - sourceColumn: valueCount - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Global Dimension 1' - dataType: string - lineageTag: 509b5a55-d4c9-4990-86ff-4db4ddf6e70b - summarizeBy: none - sourceColumn: Global Dimension 1 - - annotation SummarizationSetBy = Automatic - - column dimension1ValueName - dataType: string - isHidden - lineageTag: 4bbd813f-1a09-4206-a88d-a4d1167606fa - summarizeBy: none - sourceColumn: dimension1ValueName - - annotation SummarizationSetBy = Automatic - - column 'Global Dimension 2' - dataType: string - lineageTag: 901124b7-d0cf-4a6b-a97d-03b01fcbbb7b - summarizeBy: none - sourceColumn: Global Dimension 2 - - annotation SummarizationSetBy = Automatic - - column dimension2ValueName - dataType: string - isHidden - lineageTag: bfb6c790-0055-4011-9079-a97e867ceb06 - summarizeBy: none - sourceColumn: dimension2ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 3' - dataType: string - lineageTag: 6da18d1b-4416-4962-9791-a99a2b1b16df - summarizeBy: none - sourceColumn: Shortcut Dimension 3 - - annotation SummarizationSetBy = Automatic - - column dimension3ValueName - dataType: string - isHidden - lineageTag: 27ce8b9e-ee99-4748-b491-34541647c412 - summarizeBy: none - sourceColumn: dimension3ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 4' - dataType: string - lineageTag: 0a2ce674-7583-47bb-9152-2ed0202f39bd - summarizeBy: none - sourceColumn: Shortcut Dimension 4 - - annotation SummarizationSetBy = Automatic - - column dimension4ValueName - dataType: string - isHidden - lineageTag: 0e6c3dc5-eb1c-4848-9f37-3952b44e806c - summarizeBy: none - sourceColumn: dimension4ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 5' - dataType: string - lineageTag: 6e6336a7-10eb-4cdf-a811-12394bcee5ca - summarizeBy: none - sourceColumn: Shortcut Dimension 5 - - annotation SummarizationSetBy = Automatic - - column dimension5ValueName - dataType: string - isHidden - lineageTag: 9e59bf7d-11fb-45f3-8947-519cc585b522 - summarizeBy: none - sourceColumn: dimension5ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 6' - dataType: string - lineageTag: 19675f86-76bf-4a08-8d8f-782bfe6bc306 - summarizeBy: none - sourceColumn: Shortcut Dimension 6 - - annotation SummarizationSetBy = Automatic - - column dimension6ValueName - dataType: string - isHidden - lineageTag: 16840200-ef6d-406a-8d0d-c3e1606afca9 - summarizeBy: none - sourceColumn: dimension6ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 7' - dataType: string - lineageTag: 5a352164-bd57-476e-b9e1-1dad571ae15f - summarizeBy: none - sourceColumn: Shortcut Dimension 7 - - annotation SummarizationSetBy = Automatic - - column dimension7ValueName - dataType: string - isHidden - lineageTag: 9f0a1e71-3348-49cd-97c9-4f383ed66c3e - summarizeBy: none - sourceColumn: dimension7ValueName - - annotation SummarizationSetBy = Automatic - - column 'Shortcut Dimension 8' - dataType: string - lineageTag: ae9c39e3-c860-475e-ad05-9ad0ee181ac9 - summarizeBy: none - sourceColumn: Shortcut Dimension 8 - - annotation SummarizationSetBy = Automatic - - column dimension8ValueName - dataType: string - isHidden - lineageTag: 7511231f-227d-4080-b8a6-bb813113ada6 - summarizeBy: none - sourceColumn: dimension8ValueName - - annotation SummarizationSetBy = Automatic - - column id - dataType: string - isHidden - lineageTag: 6c12de5c-d155-4b6f-84ac-e7002abe6dfa - summarizeBy: none - sourceColumn: id - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition 'Dimension Sets-31115007-2e8e-4e19-9f45-164ccd4f8b1b' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = DimensionSets_DataSource, - #"Changed Type" = Table.TransformColumnTypes( - Source, - { - {"dimensionSetID", Int64.Type}, - {"dimension1ValueCode", type text}, - {"dimension2ValueCode", type text}, - {"dimension3ValueCode", type text}, - {"dimension4ValueCode", type text}, - {"dimension5ValueCode", type text}, - {"dimension6ValueCode", type text}, - {"dimension7ValueCode", type text}, - {"dimension8ValueCode", type text} - } - ), - #"Renamed Columns" = Table.RenameColumns( - #"Changed Type", - { - {"dimension1ValueCode", "Global Dimension 1"}, - {"dimension2ValueCode", "Global Dimension 2"}, - {"dimension3ValueCode", "Shortcut Dimension 3"}, - {"dimension4ValueCode", "Shortcut Dimension 4"}, - {"dimension5ValueCode", "Shortcut Dimension 5"}, - {"dimension6ValueCode", "Shortcut Dimension 6"}, - {"dimension7ValueCode", "Shortcut Dimension 7"}, - {"dimension8ValueCode", "Shortcut Dimension 8"} - } - ) - in - #"Renamed Columns" - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/ENVIRONMENT.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/ENVIRONMENT.tmdl deleted file mode 100644 index c161e3b15e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/ENVIRONMENT.tmdl +++ /dev/null @@ -1,26 +0,0 @@ -table ENVIRONMENT - isHidden - lineageTag: 590f8a19-3913-4ba2-b72c-798eaefd2a8d - - column ENVIRONMENT - dataType: string - isHidden - lineageTag: ec0a24db-74b5-4ba9-8fed-418142a6be67 - summarizeBy: none - sourceColumn: ENVIRONMENT - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition ENVIRONMENT = m - mode: import - queryGroup: 'Parameters and Functions\Connection Parameters' - source = "a48072_p48015_US_28-0" meta [IsParameterQuery=true, Type="Text", IsParameterQueryRequired=true] - - changedProperty = IsHidden - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Text - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Emission Fees.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Emission Fees.tmdl deleted file mode 100644 index 8fe293f871..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Emission Fees.tmdl +++ /dev/null @@ -1,131 +0,0 @@ -table 'Emission Fees' - lineageTag: 3a19b8b1-42d9-483b-8642-4b80854e6852 - - measure 'CO2e Target' = - - ( [CO2 Target] * [CO2 Carbon Equivalent] ) + ( [CH4 Target] * [CH4 Carbon Equivalent] ) + ( [N2O Target] * [N2O Carbon Equivalent] ) - formatString: 0.00 - displayFolder: _Emissions Fees Measures - lineageTag: 56c15b36-8a7f-4061-a605-199039d691ce - - measure 'CO2 Carbon Equivalent' = - - CALCULATE ( - SUM ( 'Emission Fees'[Carbon Equivalent Factor] ), - 'Emission Fees'[Emission Type] = "CO2" - ) - displayFolder: _Emissions Fees Measures - lineageTag: 7098868a-fe63-4514-bfd5-d87690bf39b8 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CH4 Carbon Equivalent' = - - CALCULATE ( - SUM ( 'Emission Fees'[Carbon Equivalent Factor] ), - 'Emission Fees'[Emission Type] = "CH4" - ) - displayFolder: _Emissions Fees Measures - lineageTag: 8544e1fc-381c-41ab-bb7c-c6d30fc8406b - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'N2O Carbon Equivalent' = - - CALCULATE ( - SUM ( 'Emission Fees'[Carbon Equivalent Factor] ), - 'Emission Fees'[Emission Type] = "N2O" - ) - formatString: 0.0000000000 - displayFolder: _Emissions Fees Measures - lineageTag: b5b8d805-dbc9-4331-8c7a-b665305a04fb - - column 'Emission Type' - dataType: string - lineageTag: 0a8ab281-ab77-4f60-bf8d-18c5a098dad3 - summarizeBy: none - sourceColumn: Emission Type - - annotation SummarizationSetBy = Automatic - - column 'Scope Type' - dataType: string - lineageTag: 9d5b9e9b-c336-4ab4-ab1e-9ddf260b08ff - summarizeBy: none - sourceColumn: Scope Type - - annotation SummarizationSetBy = Automatic - - column 'Starting Date' - dataType: dateTime - formatString: Long Date - lineageTag: 0eb56f57-e7a0-4574-addc-849e08017ebc - summarizeBy: none - sourceColumn: Starting Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Ending Date' - dataType: dateTime - formatString: Long Date - lineageTag: 00c07462-4b47-452b-aa03-d63933c657a0 - summarizeBy: none - sourceColumn: Ending Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Country Region Code' - dataType: string - lineageTag: f597564c-4f8d-447b-aaa6-55bc4303bbe5 - summarizeBy: none - sourceColumn: Country Region Code - - annotation SummarizationSetBy = Automatic - - column 'Responsibility Centre' - dataType: string - lineageTag: 3505d97f-87bb-474f-92af-97c95b56cda2 - summarizeBy: none - sourceColumn: Responsibility Centre - - annotation SummarizationSetBy = Automatic - - column 'Carbon Fee' - dataType: double - lineageTag: 1ac537aa-360e-437b-8bb1-e4eecf6ea941 - summarizeBy: sum - sourceColumn: Carbon Fee - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Carbon Equivalent Factor' - dataType: double - formatString: 0.0000000000 - lineageTag: 28b5df6a-4754-4ccb-9823-8d0975405b5d - summarizeBy: none - sourceColumn: Carbon Equivalent Factor - - annotation SummarizationSetBy = User - - partition 'Emission Fees' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiEmissionFees",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"emissionType", "Emission Type"}, {"scopeType", "Scope Type"}, {"startingDate", "Starting Date"}, {"endingDate", "Ending Date"}, {"countryRegionCode", "Country Region Code"}, {"responsibilityCentre", "Responsibility Centre"}, {"carbonFee", "Carbon Fee"}, {"carbonEquivalentFactor", "Carbon Equivalent Factor"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}) - in - #"Removed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Absences.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Absences.tmdl deleted file mode 100644 index b03f5dc80b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Absences.tmdl +++ /dev/null @@ -1,108 +0,0 @@ -table 'Employee Absences' - lineageTag: a2fed5db-ebdc-40c8-88e3-9e005cd56347 - - measure 'Employee Absences' = - - SUM ( 'Employee Absences'[Qty (Base)] ) - displayFolder: _Employee Absences Measures - lineageTag: 81db14f9-ad5e-41c8-a8ce-310ed2f83794 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Absence Hours (%)' = - - VAR ActiveEmployeesQty = - CALCULATE ( - 'Employee Absences'[Employee Absences], - Employees[Employee Status] = "Active" - ) - VAR TotalWorkingDays = [Active Employees] * [Working Days] - RETURN - DIVIDE ( ActiveEmployeesQty, TotalWorkingDays ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Employee Absences Measures - lineageTag: 8815b958-50bd-4a9e-91fa-2cf049b876a0 - - column 'Employee No' - dataType: string - isHidden - lineageTag: 23abc348-80f5-49c1-a559-a6a7d8b1fb3b - summarizeBy: none - sourceColumn: Employee No - - annotation SummarizationSetBy = Automatic - - column 'Entry No' - dataType: int64 - formatString: 0 - lineageTag: ebcc2a78-4a30-49cc-9841-b1d44e062b77 - summarizeBy: sum - sourceColumn: Entry No - - annotation SummarizationSetBy = Automatic - - column 'From Date' - dataType: dateTime - formatString: Long Date - lineageTag: a0576715-4fe1-4a23-a1f8-8d164ab164d5 - summarizeBy: none - sourceColumn: From Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'To Date' - dataType: dateTime - formatString: Long Date - lineageTag: fad3bfa4-f42a-47ef-b1a0-77fc3bd1b07d - summarizeBy: none - sourceColumn: To Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Cause of Absence' - dataType: string - lineageTag: 1f814577-9ab7-49a3-9a85-97934275b69a - summarizeBy: none - sourceColumn: Cause of Absence - - annotation SummarizationSetBy = Automatic - - column 'Qty (Base)' - dataType: double - isHidden - lineageTag: 45168c86-cb0a-4cc9-8a8d-db000436f789 - summarizeBy: sum - sourceColumn: Qty (Base) - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column Description - dataType: string - lineageTag: dea41a73-65cb-4fc7-b371-8e02616a048d - summarizeBy: none - sourceColumn: Description - - annotation SummarizationSetBy = Automatic - - partition 'Employee Absences' = m - mode: import - queryGroup: 'Fact Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiEmployeeAbsences",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"employeeNo", "Employee No"}, {"entryNo", "Entry No"}, {"fromDate", "From Date"}, {"toDate", "To Date"}, {"causeofAbsenceCode", "Cause of Absence"}, {"quantitybase", "Qty (Base)"}, {"description", "Description"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}) - in - #"Removed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Ledger Entries.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Ledger Entries.tmdl deleted file mode 100644 index d67279528e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Ledger Entries.tmdl +++ /dev/null @@ -1,127 +0,0 @@ -table 'Employee Ledger Entries' - lineageTag: efc44628-dbc3-4b0a-a873-6e698c2b747f - - measure 'Employee Amount' = - - SUM ( 'Employee Ledger Entries'[Amt] ) - displayFolder: _Employee Ledger Entry Measures - lineageTag: 5bc7caaa-0565-4c52-a7e5-7c116086f802 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Employee Ledger Entries Link' = - - VAR Endpoint = "&page=5237&" - VAR BaseLink = [Base Link] & Endpoint // Filter Context - VAR EmployeeNo = - CONCATENATEX ( - VALUES ( 'Employee Ledger Entries'[Employee No.] ), - 'Employee Ledger Entries'[Employee No.], - "|" - ) - VAR DimensionSetIDs = - CONCATENATEX ( - VALUES ( 'Employee Ledger Entries'[Dimension Set ID] ), - 'Employee Ledger Entries'[Dimension Set ID], - "|" - ) - VAR EmployeeNoFilter = "filter='Employee Ledger Entry'.'Employee No.' IS '" & EmployeeNo & "'" - VAR DateFilter = " AND 'Employee Ledger Entry'.'Posting Date' IS '" & [Ranged] & "'" - VAR DimensionFilter = " AND 'Employee Ledger Entry'.'Dimension Set ID' IS '" & DimensionSetIDs & "'" - RETURN - BaseLink & EmployeeNoFilter & DimensionFilter & DateFilter - displayFolder: _Back Link - lineageTag: 702abf4b-9e8a-40cd-b20d-080b777d0343 - - column 'Employee No.' - dataType: string - isHidden - lineageTag: d1dc1772-aa14-49a5-a13b-01b8fda7f8ac - summarizeBy: none - sourceColumn: Employee No. - - annotation SummarizationSetBy = Automatic - - column 'Entry No.' - dataType: int64 - isKey - formatString: 0 - lineageTag: c6d5f659-403b-4e66-9dae-89412439602e - summarizeBy: sum - sourceColumn: Entry No. - - annotation SummarizationSetBy = Automatic - - column Date - dataType: dateTime - isHidden - formatString: Long Date - lineageTag: 1719e795-ec57-4ddf-bbbe-31ca8c0d074d - summarizeBy: none - sourceColumn: Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Document Type' - dataType: string - lineageTag: e0a99c44-aeb1-473f-bdd5-6432db8db55a - summarizeBy: none - sourceColumn: Document Type - - annotation SummarizationSetBy = Automatic - - column 'Document No.' - dataType: string - lineageTag: 332d015a-ba58-49af-b8ef-3e9b76c8b178 - summarizeBy: none - sourceColumn: Document No. - - annotation SummarizationSetBy = Automatic - - column 'Dimension Set ID' - dataType: int64 - isHidden - formatString: 0 - lineageTag: 0f1bd37f-6671-45f0-b079-8154bc1d19ab - summarizeBy: none - sourceColumn: Dimension Set ID - - annotation SummarizationSetBy = Automatic - - column Description - dataType: string - lineageTag: c93cd236-7354-4c07-9a80-0088dde8e277 - summarizeBy: none - sourceColumn: Description - - annotation SummarizationSetBy = Automatic - - column Amt - dataType: double - isHidden - lineageTag: b0a7cd66-1013-432a-8de3-810832e03d3d - summarizeBy: sum - sourceColumn: Amt - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - partition 'Employee Ledger Entries' = m - mode: import - queryGroup: 'Fact Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiEmployeeLedgerEntries",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"employeeNo", "Employee No."}, {"entryNo", "Entry No."}, {"postingDate", "Date"}, {"documentType", "Document Type"}, {"documentNo", "Document No."}, {"dimensionSetID", "Dimension Set ID"}, {"description", "Description"}, {"amount", "Amt"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}) - in - #"Removed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Qualifications.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Qualifications.tmdl deleted file mode 100644 index 6cc6873eff..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employee Qualifications.tmdl +++ /dev/null @@ -1,43 +0,0 @@ -table 'Employee Qualifications' - lineageTag: 0dff38e4-da38-4481-bce4-10332ddefc77 - - measure 'Employee Qualifications' = - - COUNT ( 'Employee Qualifications'[Employee No.] ) - formatString: 0 - displayFolder: _Employee Qualifications Measures - lineageTag: 7f1ce2fe-ef23-4593-a5e1-0a9b8be64352 - - column 'Employee No.' - dataType: string - isHidden - lineageTag: cb60b3ab-b20b-4352-a0c6-89905eb01faa - summarizeBy: none - sourceColumn: Employee No. - - annotation SummarizationSetBy = Automatic - - column 'Employee Qualification Codes' - dataType: string - lineageTag: dc150d05-cea8-4741-8e2b-7fb23c45e1c8 - summarizeBy: none - sourceColumn: Employee Qualification Codes - - annotation SummarizationSetBy = Automatic - - partition 'Employee Qualifications' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiEmployeeQualifications",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"employeeNo", "Employee No."}, {"qualificationCode", "Employee Qualification Codes"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"ETag", "auxiliaryIndex1"}) - in - #"Removed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employees.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employees.tmdl deleted file mode 100644 index fa9f589f43..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Employees.tmdl +++ /dev/null @@ -1,213 +0,0 @@ -table Employees - lineageTag: c080803e-a4fd-4a9e-b16d-0c0d3de20837 - - measure 'No. of Employees' = - - COUNT ( Employees[Employee No.] ) - formatString: 0 - displayFolder: _Employee Measures - lineageTag: c24a6780-10b6-4f6c-b8d4-155ed521df53 - - measure 'No. of Male Employees' = - - CALCULATE ( [No. of Employees], Employees[Employee Gender] = "Male" ) - formatString: 0 - displayFolder: _Employee Measures - lineageTag: 3a59aa72-61f5-439a-95f3-a1044b352e10 - - measure 'No. of Female Employees' = - - CALCULATE ( [No. of Employees], Employees[Employee Gender] = "Female" ) - formatString: 0 - displayFolder: _Employee Measures - lineageTag: 4b7fb167-179f-4459-a79a-db1b2db3a249 - - measure 'No. of Other Employees' = - - CALCULATE ( - [No. of Employees], - Employees[Employee Gender] <> "Male", - Employees[Employee Gender] <> "Female" - ) - formatString: 0 - displayFolder: _Employee Measures - lineageTag: 00874ba1-5083-4337-b5e4-6bfce0db94c7 - - measure 'Male Employees (%)' = - - DIVIDE ( [No. of Male Employees], [No. of Employees] ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Employee Measures - lineageTag: eefb5ba3-77ce-4b47-861c-a0b8f5822471 - - measure 'Female Employees (%)' = - - DIVIDE ( [No. of Female Employees], [No. of Employees] ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Employee Measures - lineageTag: fbf3d691-b627-40ef-a581-ee0094f7b43e - - measure 'Other Employees (%)' = - - DIVIDE ( [No. of Other Employees], [No. of Employees] ) - displayFolder: _Employee Measures - lineageTag: b8f03a06-2a3a-4e7f-8d41-beaba6d24073 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Active Employees' = - - CALCULATE ( Employees[No. of Employees], Employees[Employee Status] = "Active" ) - formatString: 0 - displayFolder: _Employee Measures - lineageTag: e75cd780-38ae-4bde-aa11-836a80e34d14 - - column 'Employee No.' - dataType: string - isKey - lineageTag: 3c95435d-58df-4aad-af62-dc55ed4b3acf - summarizeBy: none - sourceColumn: Employee No. - - annotation SummarizationSetBy = Automatic - - column 'Employee Full Name' - dataType: string - lineageTag: 3bb36502-e4a2-4ff0-8848-32458b6c1345 - summarizeBy: none - sourceColumn: Employee Full Name - - annotation SummarizationSetBy = Automatic - - column 'Employee First Name' - dataType: string - lineageTag: c2fc45c0-5806-4446-9f5b-e5514f9f6332 - summarizeBy: none - sourceColumn: Employee First Name - - annotation SummarizationSetBy = Automatic - - column 'Employee Last Name' - dataType: string - lineageTag: 2bedba2b-5602-4dfc-afe8-faf930c5b912 - summarizeBy: none - sourceColumn: Employee Last Name - - annotation SummarizationSetBy = Automatic - - column 'Employee Gender' - dataType: string - lineageTag: 47dcb956-edf5-4742-a8db-c814b36b86d9 - summarizeBy: none - sourceColumn: Employee Gender - - annotation SummarizationSetBy = Automatic - - column 'Employee Union Code' - dataType: string - lineageTag: c9a79b09-7d16-4803-8510-875fa81896d8 - summarizeBy: none - sourceColumn: Employee Union Code - - annotation SummarizationSetBy = Automatic - - column 'Employee Status' - dataType: string - lineageTag: b5f7243d-70e5-4253-a1d4-d49c9a4f4145 - summarizeBy: none - sourceColumn: Employee Status - - annotation SummarizationSetBy = Automatic - - column 'Employee Cause of Inactivity' - dataType: string - lineageTag: 4f832747-1e3b-4f63-bbe2-fccc0c17c786 - summarizeBy: none - sourceColumn: Employee Cause of Inactivity - - annotation SummarizationSetBy = Automatic - - column 'Employee Inactive Date' - dataType: dateTime - formatString: Long Date - lineageTag: ff7110d1-3f92-4a4e-a320-ab232b473cb1 - summarizeBy: none - sourceColumn: Employee Inactive Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Employee Grounds for Termination' - dataType: string - lineageTag: e2cbc06b-686b-40ea-94b8-6fb281094682 - summarizeBy: none - sourceColumn: Employee Grounds for Termination - - annotation SummarizationSetBy = Automatic - - column 'Employee Date of Birth' - dataType: dateTime - formatString: Long Date - lineageTag: b8f03122-d79a-462a-b243-835f18ebd8f0 - summarizeBy: none - sourceColumn: Employee Date of Birth - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column Age = - - VAR Birthdate = Employees[Employee Date of Birth] - VAR TodaysDate = TODAY() - VAR YearDiff = YEAR(TodaysDate) - YEAR(Birthdate) - VAR MonthDayAdjustment = - IF( - MONTH(TodaysDate) < MONTH(Birthdate) || - (MONTH(TodaysDate) = MONTH(Birthdate) && DAY(TodaysDate) < DAY(Birthdate)), - 1, - 0 - ) - RETURN - YearDiff - MonthDayAdjustment - formatString: 0 - displayFolder: _Employee Measures - lineageTag: 2774549d-a4a0-417e-aaf0-8cf1c557360a - summarizeBy: sum - - annotation SummarizationSetBy = Automatic - - column 'Age Distribution' = ``` - - SWITCH( - TRUE(), - Employees[Age] < 30, "Under 30", - Employees[Age] < 50, "30 - 50", - Employees[Age] > 50, "Over 50" - ) - ``` - displayFolder: _Employee Measures - lineageTag: 92926218-b984-4167-b15b-5502d9e59fab - summarizeBy: none - - annotation SummarizationSetBy = Automatic - - partition Employees = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiEmployees",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"no", "Employee No."}, {"firstName", "Employee First Name"}, {"lastName", "Employee Last Name"}, {"gender", "Employee Gender"}, {"unionCode", "Employee Union Code"}, {"status", "Employee Status"}, {"casueofInactivty", "Employee Cause of Inactivity"}, {"groudForTermCode", "Employee Grounds for Termination"}, {"dateOfBirth", "Employee Date of Birth"}, {"inactivedate", "Employee Inactive Date"}}), - #"Removed Columns1" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}), - #"Added Custom" = Table.AddColumn(#"Removed Columns1", "Employee Full Name", each [Employee First Name] & " " & [Employee Last Name]), - #"Reordered Columns" = Table.ReorderColumns(#"Added Custom",{"Employee No.", "Employee Full Name", "Employee First Name", "Employee Last Name", "Employee Gender", "Employee Union Code", "Employee Status", "Employee Cause of Inactivity", "Employee Inactive Date", "Employee Grounds for Termination", "Employee Date of Birth"}) - in - #"Reordered Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Localized Labels.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Localized Labels.tmdl deleted file mode 100644 index a30a148aad..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Localized Labels.tmdl +++ /dev/null @@ -1,230 +0,0 @@ -table 'Localized Labels' - isHidden - lineageTag: bb491cc1-cc21-4024-930c-dd934ce72e6d - - measure 'My Report Title' = 0 - isHidden - lineageTag: 9e65416f-15d8-460c-b41b-c5268ae1171e - - measure 'My Button Caption' = 0 - isHidden - lineageTag: bb8cf56a-9b48-47e6-a637-878d9618701d - - measure 'My Visual Title' = 0 - isHidden - lineageTag: b62c0144-e6a1-4cd7-9ecc-e6a858099595 - - measure 'Inactive Employees' = 0 - isHidden - lineageTag: 18896aa9-3a2f-40c6-b556-d0f1672d09b1 - - measure 'Terminated Employees' = 0 - isHidden - lineageTag: 566f5710-7c55-4c83-9621-5381bedaf249 - - measure 'Employees in Unions' = 0 - isHidden - lineageTag: 4a2ad2b9-3658-4588-930c-f3591d70cf27 - - measure 'Social Analysis' = 0 - isHidden - lineageTag: 9204c6c8-e948-4812-a025-f8bb80f90e32 - - measure 'Gender Distribution' = 0 - isHidden - lineageTag: 9ca8694a-da41-44a6-984c-73dcbfc39070 - - measure 'Age Distribution' = 0 - isHidden - lineageTag: 73b30466-7200-4178-ab96-4a5bdb2e5e03 - - measure 'Employees Qualifications' = 0 - isHidden - lineageTag: 5a2af44e-779a-480d-9adb-e26af766e21a - - measure 'Realized Emissions vs Target' = 0 - isHidden - lineageTag: 71f80cda-75ca-42a0-a179-43d59980f214 - - measure 'CO2e Emissions by Scope' = 0 - isHidden - lineageTag: b0629446-28a2-4927-952b-53a97f67a2fe - - measure 'Gas Emissions by Category' = 0 - isHidden - lineageTag: d09a834c-cd31-41d4-86b1-35814e18af0e - - measure 'Realized Emissions vs Baseline' = 0 - isHidden - lineageTag: 631ba763-4ef0-4a71-ba09-7e53eb7a98ea - - measure 'CO2e Emissions vs Baseline' = 0 - isHidden - lineageTag: 46f3e69c-a92c-4270-916e-4d2c403bd0ab - - measure 'CO2e Emissions by Account' = 0 - isHidden - lineageTag: 7f398453-b234-4f7f-b6b0-f19c66c58006 - - measure 'Water and Waste Analysis' = 0 - isHidden - lineageTag: a95d2b66-65ad-44ba-8346-3782184f3570 - - measure 'Water by Facility Location' = 0 - isHidden - lineageTag: 3d7c4b40-5391-4d34-8113-c87b14a7d4a4 - - measure 'Water by Facility Capacity' = 0 - isHidden - lineageTag: 0fd2dc50-304b-4baf-9bf6-ccce48bf0b6b - - measure 'Water and Waste by Type' = 0 - isHidden - lineageTag: 623403d9-6170-47d3-b510-625bf8337b04 - - measure 'Water and Waste Intensity by Type' = 0 - isHidden - lineageTag: a8c017f3-1866-44c3-8142-0658acdaad13 - - measure 'Water and Waste Intensity by Facility' = 0 - isHidden - lineageTag: 93e09b40-4080-4d45-9129-be7d18c5c785 - - measure 'Emissions by Category and Scope' = 0 - isHidden - lineageTag: b1053c69-988d-4bc4-9d5a-b5fa6bd18530 - - measure 'Emissions by Category' = 0 - isHidden - lineageTag: 6da08a4c-8f1a-4b7e-ac0a-51d1bdfcfddf - - measure 'Emissions by Scope' = 0 - isHidden - lineageTag: e4ddab31-7c0d-490f-bab7-af8c70da07e1 - - measure 'CO2e Analysis' = 0 - isHidden - lineageTag: 10ff233f-69ad-4d2a-aff5-1e81e7327c62 - - measure 'CO2e Emissions by Category' = 0 - isHidden - lineageTag: 66ac4f18-a5eb-42eb-8d1f-10cdf8f24142 - - measure 'Carbon Credit by Month' = 0 - isHidden - lineageTag: 5c475b32-8fc3-437a-a2fc-7812e7ebbb26 - - measure 'CO2e Equivalent Emission by Month and Revenue' = 0 - isHidden - lineageTag: 7cf80c7c-c1fc-4d32-a660-946e21b472ae - - measure 'Employee Entries Drillthrough' = 0 - isHidden - lineageTag: 59c31939-f665-4347-ad99-f62ebc1aa736 - - measure 'Employee Ledger Entries' = 0 - isHidden - lineageTag: aeaf3868-4b59-48dc-831a-b759246225f1 - - measure 'Sustainability Ledger Entries' = 0 - isHidden - lineageTag: 400de913-a611-4ff8-b928-283ef2321eeb - - measure 'Sustainability Ledger Entries Drillthrough' = 0 - isHidden - lineageTag: 2cf8f7f5-dfde-475c-9711-660fb6994931 - - measure 'Employee Ledger Entries Drillthrough' = 0 - isHidden - lineageTag: ea61ae70-5a70-48ed-82f3-244293ec688a - - measure 'Sustainability Overview' = 0 - isHidden - lineageTag: ebdf6286-26e7-484a-a52b-7ce6062ddddb - - measure 'Sustainability Analytics' = 0 - isHidden - lineageTag: ff1ab351-e3fa-43f9-ac1b-ea85b7b94d2c - - measure 'CO2e Emissions by Month' = 0 - isHidden - lineageTag: 503f3e52-171a-4a1d-bef8-24de16c49186 - - measure 'Scopes 1 and 2 Analysis by Categories Per Year' = 0 - isHidden - lineageTag: 44b017f0-9f5e-4157-b1d9-77505000a6d9 - - measure 'CO2e Emissions by Department' = 0 - isHidden - lineageTag: 36086391-3b8d-4120-a408-f9e1884c7b03 - - measure 'Journey to Net-Zero Carbon' = 0 - isHidden - lineageTag: 736f9a78-90e0-41ce-b915-9670871a5387 - - measure 'CO2e Emissions by Business Group' = 0 - isHidden - lineageTag: b21ae342-6355-47ff-b0a6-6b98f5a20181 - - measure 'Renewable Energy Usage' = 0 - isHidden - lineageTag: 8a5cb81e-f637-4bda-82a6-dc8aa7ae6af7 - - measure 'CO2e Emissions Over Time' = 0 - isHidden - lineageTag: 57b3ef30-e5c0-4f3a-ae8a-c35be4072e29 - - measure 'CO2e Smart Review' = 0 - isHidden - lineageTag: 70c2f156-2eb3-421a-9051-64838b54af5e - - measure 'CO2e Emissions by Global Dimension One' = 0 - isHidden - lineageTag: 7fca9521-f490-4a7d-a611-6c99f54e3ddf - - measure 'CO2e Emissions by Global Dimension Two' = 0 - isHidden - lineageTag: 0fff5903-bcad-408b-ac28-3e0679eae7d4 - - measure 'CO2e Equivalent Emissions by Month' = 0 - isHidden - lineageTag: 46a0f17f-fa4a-49fc-9c86-28c58c3d0872 - - measure 'Company Name' = 0 - isHidden - lineageTag: 52480de2-e6cb-4b1d-b31b-d52d1d88e185 - - measure 'Last Refreshed' = 0 - isHidden - lineageTag: 46a670c1-4eb6-458b-bcda-35548cb10ea1 - - measure 'Released Employees' = 0 - isHidden - lineageTag: d6394ad5-6fe4-47f9-979f-d0decf6426d6 - - measure 'CO2e Decomposition Tree' = 0 - isHidden - lineageTag: c724871e-084f-4dc5-b8b7-a43dd3597ef0 - - measure 'CO2e Key Influences' = 0 - isHidden - lineageTag: aac80eb3-dad2-43f0-9acd-6d68daee9953 - - measure 'Water and Waste Yearly and Daily Change' = 0 - isHidden - lineageTag: 3a1c37f6-15d4-440f-8ca8-27f98f1e1e09 - - column unused - isHidden - displayFolder: unused - lineageTag: 199faaa3-4c88-43c8-9560-ca033e5f0ec4 - summarizeBy: none - isNameInferred - sourceColumn: [unused] - - annotation SummarizationSetBy = Automatic - - partition Partition = calculated - mode: import - source = DATATABLE("unused", STRING, {{"This is a table automatically generated by Translations Builder"}}) - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Responsibility Centre.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Responsibility Centre.tmdl deleted file mode 100644 index 510edd62b1..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Responsibility Centre.tmdl +++ /dev/null @@ -1,65 +0,0 @@ -table 'Responsibility Centre' - lineageTag: a8623892-be7f-4115-9213-a5a049ea3eef - - measure 'Facility Capacity' = - - SUM ( 'Responsibility Centre'[waterCapactiybyMonth] ) * [Months] - displayFolder: _Responsibility Centre Measures - lineageTag: 0d06ebf4-5755-4106-8205-ec013bac139e - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure Months = - - DATEDIFF ( MIN ( 'Date'[Date] ), MAX ( 'Date'[Date] ), MONTH ) + 1 - formatString: 0 - isHidden - displayFolder: _Responsibility Centre Measures - lineageTag: f34f91fb-28aa-4366-8e7f-4229d9a59a60 - - changedProperty = IsHidden - - column 'Responsibility Centre Code' - dataType: string - isKey - lineageTag: c5d0eaaa-0caf-4636-88e8-b3938b29bd4a - summarizeBy: none - sourceColumn: Responsibility Centre Code - - annotation SummarizationSetBy = Automatic - - column 'Responsibility Centre Name' - dataType: string - lineageTag: a7e4ec29-e333-4a92-912f-fd47bbfc0df6 - summarizeBy: none - sourceColumn: Responsibility Centre Name - - annotation SummarizationSetBy = Automatic - - column waterCapactiybyMonth - dataType: double - isHidden - lineageTag: ef1ab076-06b2-4da6-8ad5-d05ad74d3da2 - summarizeBy: none - sourceColumn: waterCapactiybyMonth - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - partition 'Responsibility Centre' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiResponsibilityCentres",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"code", "Responsibility Centre Code"}, {"name", "Responsibility Centre Name"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}) - in - #"Removed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Account Category.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Account Category.tmdl deleted file mode 100644 index 5423012457..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Account Category.tmdl +++ /dev/null @@ -1,48 +0,0 @@ -table 'Sustainability Account Category' - lineageTag: c3ba4558-e02a-404b-b4a1-a2903520532a - - column 'Sustainability Account Category Description' - dataType: string - lineageTag: 6b744939-6d03-4b1d-ae58-32a1709bba2b - summarizeBy: none - sourceColumn: Sustainability Account Category Description - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Sustainability Account Category Code' - dataType: string - isKey - lineageTag: ef380ee9-f918-4dcf-b5bf-b924227c40c2 - summarizeBy: none - sourceColumn: Sustainability Account Category Code - - annotation SummarizationSetBy = Automatic - - column 'Sustainability Account Category Emission Scope' - dataType: string - lineageTag: de58ab2e-d6d1-4006-8b10-2a1eab736a7f - summarizeBy: none - sourceColumn: Sustainability Account Category Emission Scope - - annotation SummarizationSetBy = Automatic - - partition 'Sustainability Account Category-94274dc9-2281-4ba8-adae-86acd137ae3a' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiSustainabilityAccountCategories",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"code", "Sustainability Account Category Code"}, {"description", "Sustainability Account Category Description"}, {"emissionScope", "Sustainability Account Category Emission Scope"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}) - in - #"Removed Columns" - - changedProperty = IsHidden - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Accounts.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Accounts.tmdl deleted file mode 100644 index 4e9e6f1276..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Accounts.tmdl +++ /dev/null @@ -1,70 +0,0 @@ -table 'Sustainability Accounts' - lineageTag: 816fcc93-a534-482d-bf58-a75c40d24465 - - column 'Sustainability Account No.' - dataType: string - isKey - lineageTag: a4e29f80-9152-4ee5-9b88-4bd0d76f5243 - summarizeBy: none - sourceColumn: Sustainability Account No. - - annotation SummarizationSetBy = Automatic - - column 'Sustainability Account Name' - dataType: string - lineageTag: 9e586a43-6c1b-4947-8d51-309bc60b1522 - summarizeBy: none - sourceColumn: Sustainability Account Name - - annotation SummarizationSetBy = Automatic - - column 'Sustainability Account Category' - dataType: string - isHidden - lineageTag: 3916a1cc-802d-4243-8412-484e1d017e3e - summarizeBy: none - sourceColumn: Sustainability Account Category - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Sustainability Account Sub-Category' - dataType: string - isHidden - lineageTag: 4273ec74-338d-4382-a539-c5a465aecada - summarizeBy: none - sourceColumn: Sustainability Account Sub-Category - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Sustainability Account Subcategory Key' - dataType: string - isHidden - lineageTag: 6b432394-589a-4074-927c-d3cc1c04e973 - summarizeBy: none - sourceColumn: Sustainability Account Subcategory Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition 'Sustainability Accounts' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiSustainabilityAccounts",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"sustainabilityAccountNo", "Sustainability Account No."}, {"sustainabilityAccountName", "Sustainability Account Name"}, {"sustainabilityAccountCategory", "Sustainability Account Category"}, {"sustainabilityAccountSubCategory", "Sustainability Account Sub-Category"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}), - #"Added Sustainability Account Key" = Table.AddColumn(#"Removed Columns", "Sustainability Account Subcategory Key", each [Sustainability Account Category] & " " & [#"Sustainability Account Sub-Category"],type text) - in - #"Added Sustainability Account Key" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Goals.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Goals.tmdl deleted file mode 100644 index 4fa2784efd..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Goals.tmdl +++ /dev/null @@ -1,404 +0,0 @@ -table 'Sustainability Goals' - lineageTag: da071c77-b29a-499b-a452-91aa43e7f707 - - measure 'CO2 Target' = - - SUM ( 'Sustainability Goals'[Target Value For CO2] ) - displayFolder: _Sustainability Goals Measures\_CO2 - lineageTag: b01821d8-2d59-4b3a-990d-0649f5ef5324 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CO2 Realized (%)' = - - DIVIDE ( [CO2 Current Value], [CO2 Target] ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Goals Measures\_CO2 - lineageTag: afd43b65-54b6-4089-9d0c-b3252fffc250 - - measure 'CH4 Target' = - - SUM ( 'Sustainability Goals'[Target Value For CH4] ) - displayFolder: _Sustainability Goals Measures\_CH4 - lineageTag: c4ebd68e-2f5b-4f14-87ea-22d0572de7b5 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'N2O Target' = - - SUM ( 'Sustainability Goals'[Target Value For N2O] ) - displayFolder: _Sustainability Goals Measures\N2O - lineageTag: 06cf511e-dc95-4fe6-8249-5d7c7d2f7db5 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CH4 Realized (%)' = - - DIVIDE ( [CH4 Current Value], [CH4 Target] ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Goals Measures\_CH4 - lineageTag: 8802864b-165b-4836-9781-e4cc533fd043 - - measure 'N2O Realized (%)' = - - DIVIDE ( [N2O Current Value], [N2O Target] ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Goals Measures\N2O - lineageTag: b2d19c75-09fe-4965-883d-923297c12105 - - measure 'Water Target' = - - SUM ( 'Sustainability Goals'[Target Value For Water Intensity] ) - displayFolder: _Sustainability Goals Measures\_Water - lineageTag: 7b5ae209-a294-40ae-bc72-8e4fa7c07e1b - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Waste Target' = - - SUM ( 'Sustainability Goals'[Target Value For Waste Intensity] ) - displayFolder: _Sustainability Goals Measures\_Waste - lineageTag: 6084f614-54a8-46e5-833e-5c1f32943669 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water Realized (%)' = - - DIVIDE ( [Water Intensity], [Water Target] ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Goals Measures\_Water - lineageTag: 4b5c1806-9d18-4ff9-942d-496f87142de9 - - measure 'Waste Realized (%)' = - - DIVIDE ( [Waste Intensity], [Waste Target] ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Goals Measures\_Waste - lineageTag: e3ecf69e-7b4e-42f9-a169-35cd1acee720 - - measure 'CO2e Realized (%)' = - - DIVIDE ( [CO2e Current Value], [CO2e Target] ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Goals Measures\_CO2e - lineageTag: f6b9bc51-30f4-488c-9689-f83de8705dc2 - - measure 'CO2 Current Value' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "CO2 Emissions", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Emission CO2] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Start Date] ), - MAX ( 'Sustainability Goals'[End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [CO2 Emissions] ) - displayFolder: _Sustainability Goals Measures\_CO2 - lineageTag: 925995aa-74e6-4c44-be1f-cd4de53b8b9f - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CH4 Current Value' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "CH4 Emissions", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Emission CH4] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Start Date] ), - MAX ( 'Sustainability Goals'[End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [CH4 Emissions] ) - displayFolder: _Sustainability Goals Measures\_CH4 - lineageTag: 24fa7b6f-957c-46f0-9d1c-5462365aaa56 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'N2O Current Value' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "N2O Emissions", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Emission N2O] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Start Date] ), - MAX ( 'Sustainability Goals'[End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [N2O Emissions] ) - displayFolder: _Sustainability Goals Measures\N2O - lineageTag: 09aa2b0e-d6dd-44dc-b602-1241c31b7296 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CO2e Current Value' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "CO2e Emissions", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Emission CO2e] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Start Date] ), - MAX ( 'Sustainability Goals'[End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [CO2e Emissions] ) - displayFolder: _Sustainability Goals Measures\_CO2e - lineageTag: 6a2ab28f-e47c-421b-83a2-80f52548c8c0 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water Current Value' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "Water Intensity", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Wat. Intensity] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Start Date] ), - MAX ( 'Sustainability Goals'[End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [Water Intensity] ) - displayFolder: _Sustainability Goals Measures\_Water - lineageTag: fbe8597e-4a1a-43b5-a4be-4acf4fca27cb - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Waste Current Value' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "Waste Intensity", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Wast. Intensity] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Start Date] ), - MAX ( 'Sustainability Goals'[End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [Waste Intensity] ) - displayFolder: _Sustainability Goals Measures\_Waste - lineageTag: b4eba006-0dca-43eb-914e-16cb1e95de17 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Score Card No.' - dataType: string - lineageTag: 7c16c01d-e33a-46b7-b5f1-e0df80d60b71 - summarizeBy: none - sourceColumn: Score Card No. - - annotation SummarizationSetBy = Automatic - - column 'No.' - dataType: string - lineageTag: b92d3b27-f546-4342-9bae-8a836e57f2b4 - summarizeBy: none - sourceColumn: No. - - annotation SummarizationSetBy = Automatic - - column Name - dataType: string - lineageTag: 4e5619ba-dc90-4e38-9100-241b6babb275 - summarizeBy: none - sourceColumn: Name - - annotation SummarizationSetBy = Automatic - - column Owner - dataType: string - lineageTag: 27e0a1eb-a476-4fbb-bb0f-2fa204a7445f - summarizeBy: none - sourceColumn: Owner - - annotation SummarizationSetBy = Automatic - - column 'Country/Region Code' - dataType: string - isHidden - lineageTag: 0bd5348d-ee7c-4fcc-88be-dd48e4281301 - summarizeBy: none - sourceColumn: Country/Region Code - - annotation SummarizationSetBy = Automatic - - column 'Responsibility Centre' - dataType: string - isHidden - lineageTag: d595aa23-f7b6-4f6d-ba6f-01026ae4dc9f - summarizeBy: none - sourceColumn: Responsibility Centre - - annotation SummarizationSetBy = Automatic - - column 'Target Value For CO2' - dataType: double - lineageTag: 35d5ba40-73bf-48a2-ba3a-96ec25e22721 - summarizeBy: sum - sourceColumn: Target Value For CO2 - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Target Value For CH4' - dataType: double - lineageTag: a10c9c0f-ecea-4c46-8826-620a84f8471b - summarizeBy: sum - sourceColumn: Target Value For CH4 - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Target Value For N2O' - dataType: double - lineageTag: 83c35783-9e36-4de2-b241-adf36be8ae85 - summarizeBy: sum - sourceColumn: Target Value For N2O - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Target Value For Water Intensity' - dataType: double - lineageTag: 3ce01cc9-15cf-4464-9d90-515d879fb55e - summarizeBy: sum - sourceColumn: Target Value For Water Intensity - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Target Value For Waste Intensity' - dataType: double - lineageTag: 1f4dd665-9b6e-4b16-aab8-e8b86d011584 - summarizeBy: sum - sourceColumn: Target Value For Waste Intensity - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Main Goal' - dataType: boolean - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 01436eb1-5942-4ae5-bf48-8e4cff25c9ef - summarizeBy: none - sourceColumn: Main Goal - - annotation SummarizationSetBy = Automatic - - column lineNo - dataType: int64 - isHidden - formatString: 0 - lineageTag: f73455cf-69bf-4adb-9e98-11dfbd0c310d - summarizeBy: sum - sourceColumn: lineNo - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Start Date' - dataType: dateTime - formatString: Long Date - lineageTag: fbba48b3-d78d-4405-9195-784441d6da6b - summarizeBy: none - sourceColumn: Start Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'End Date' - dataType: dateTime - formatString: Long Date - lineageTag: 0342fa70-be23-458d-8a1f-82dc030203ca - summarizeBy: none - sourceColumn: End Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Baseline Start Date' - dataType: dateTime - formatString: Long Date - lineageTag: 29cec17a-f3a0-4d03-bf17-33a414e9ff6d - summarizeBy: none - sourceColumn: Baseline Start Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Baseline End Date' - dataType: dateTime - formatString: Long Date - lineageTag: 07d4c22d-fdd8-4bf9-826b-c6328996ef4b - summarizeBy: none - sourceColumn: Baseline End Date - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - partition 'Sustainability Goals' = m - mode: import - queryGroup: 'Fact Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiSustainabilityGoals",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"scoreCardNo", "Score Card No."}, {"no", "No."}, {"name", "Name"}, {"owner", "Owner"}, {"countryRegion", "Country/Region Code"}, {"responsibilityCentre", "Responsibility Centre"}, {"targetValueForCo2", "Target Value For CO2"}, {"targetValueForCh4", "Target Value For CH4"}, {"targetValueForN2O", "Target Value For N2O"}, {"targetValueForWaterIntensity", "Target Value For Water Intensity"}, {"targetValueForWasteIntensity", "Target Value For Waste Intensity"}, {"mainGoal", "Main Goal"}, {"startDate", "Start Date"}, {"endDate", "End Date"}, {"baselineStartDate", "Baseline Start Date"}, {"baselineEndDate", "Baseline End Date"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}) - in - #"Removed Columns" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Ledger Entries.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Ledger Entries.tmdl deleted file mode 100644 index d41b54e7a4..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Ledger Entries.tmdl +++ /dev/null @@ -1,830 +0,0 @@ -table 'Sustainability Ledger Entries' - lineageTag: 2a0cf939-2176-4b5a-970c-8d0ef8334663 - - measure 'CO2 Emissions' = - - SUM ( 'Sustainability Ledger Entries'[Emission CO2] ) - displayFolder: _Sustainability Measures\CO2 Measures - lineageTag: 770ba9f8-c49b-44c6-aad5-2dd17aeb06b0 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CH4 Emissions' = - - CALCULATE ( SUM ( 'Sustainability Ledger Entries'[Emission CH4] ) ) - displayFolder: _Sustainability Measures\CH4 Measures - lineageTag: d5316adc-5aa1-4184-8ce8-5747c2834a88 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CO2 Emissions Balance' = - - CALCULATE ( [CO2 Emissions], ALL ( 'Date' ) ) - displayFolder: _Sustainability Measures\CO2 Measures - lineageTag: d62bb2c9-c112-498a-8afe-ded1c2faef7e - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CO2 Emissions Balance at Date' = - - CALCULATE ( - [CO2 Emissions], - FILTER ( ALL ( 'Date'[Date] ), 'Date'[Date] <= MAX ( 'Date'[Date] ) ) - ) - displayFolder: _Sustainability Measures\CO2 Measures - lineageTag: 4bcc8b7a-27cb-4914-a832-c87a2644c275 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'N2O Emissions' = - - SUM ( 'Sustainability Ledger Entries'[Emission N2O] ) - displayFolder: _Sustainability Measures\N2O Measures - lineageTag: b387d55c-6f71-4448-ac41-731e2e1c0f79 - - measure 'CO2e Emissions' = - - SUM ( 'Sustainability Ledger Entries'[Emission CO2e] ) - displayFolder: _Sustainability Measures\CO2e Measures - lineageTag: 88d60675-3900-4161-9565-c30601162b92 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CH4 Emissions Balance at Date' = - - CALCULATE ( - [CH4 Emissions], - FILTER ( ALL ( 'Date'[Date] ), 'Date'[Date] <= MAX ( 'Date'[Date] ) ) - ) - displayFolder: _Sustainability Measures\CH4 Measures - lineageTag: 6ce5a382-915f-498e-844c-3187beb27d8d - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CH4 Emissions Balance' = - - CALCULATE ( [CH4 Emissions], ALL ( 'Date' ) ) - displayFolder: _Sustainability Measures\CH4 Measures - lineageTag: 3b1cb8b3-dfdc-477f-9128-f0c2d111d980 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water Intensity' = - - SUM ( 'Sustainability Ledger Entries'[Wat. Intensity] ) - displayFolder: _Sustainability Measures\Water Intensity Measures - lineageTag: 08405276-cfe4-4c4e-bb1f-ccf744ee4cb8 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Waste Intensity' = - - CALCULATE ( SUM ( 'Sustainability Ledger Entries'[Wast. Intensity] ) ) - displayFolder: _Sustainability Measures\Waste Intensity Measures - lineageTag: 0e31eb23-69c3-442d-a2e5-a7be11945246 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Discharged Into Water' = - - SUM ( 'Sustainability Ledger Entries'[Dish. Into Water] ) - displayFolder: _Sustainability Measures\Discharged Into Water Measures - lineageTag: ac161858-ae68-4289-b316-d4fde3f01a69 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CO2e Emissions Balance' = - - CALCULATE ( [CO2e Emissions], ALL ( 'Date' ) ) - displayFolder: _Sustainability Measures\CO2e Measures - lineageTag: d8cf0bf3-eb02-4da7-9b5d-137550445e7c - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CO2e Emissions Balance at Date' = - - CALCULATE ( - [CO2e Emissions], - FILTER ( ALL ( 'Date'[Date] ), 'Date'[Date] <= MAX ( 'Date'[Date] ) ) - ) - displayFolder: _Sustainability Measures\CO2e Measures - lineageTag: 2b53dd5a-8c62-40c0-9487-6d7f07dec99d - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Discharged Into Water Balance at Date' = - - CALCULATE ( - [Discharged Into Water], - FILTER ( ALL ( 'Date'[Date] ), 'Date'[Date] <= MAX ( 'Date'[Date] ) ) - ) - displayFolder: _Sustainability Measures\Discharged Into Water Measures - lineageTag: 9f6fa36d-f530-4492-9f9d-edcc57d2cf0b - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Discharged Into Water Balance' = - - CALCULATE ( [Discharged Into Water], ALL ( 'Date' ) ) - displayFolder: _Sustainability Measures\Discharged Into Water Measures - lineageTag: 1f11cd59-61b0-4113-879c-d9e23f4e61d7 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'N2O Emissions Balance' = - - CALCULATE ( [N2O Emissions], ALL ( 'Date' ) ) - displayFolder: _Sustainability Measures\N2O Measures - lineageTag: fd7b9d88-cef7-4446-ad56-0fa3cef0bf0b - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'N2O Emissions Balance at Date' = - - CALCULATE ( - [N2O Emissions], - FILTER ( ALL ( 'Date'[Date] ), 'Date'[Date] <= MAX ( 'Date'[Date] ) ) - ) - displayFolder: _Sustainability Measures\N2O Measures - lineageTag: 9426944e-ac09-4626-baaf-70242ecfaa99 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Waste Intensity Balance at Date' = - - CALCULATE ( - [Waste Intensity], - FILTER ( ALL ( 'Date'[Date] ), 'Date'[Date] <= MAX ( 'Date'[Date] ) ) - ) - displayFolder: _Sustainability Measures\Waste Intensity Measures - lineageTag: 77726021-8550-43b1-8a8a-93413f66fdd0 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Waste Intensity Balance' = - - CALCULATE ( [Waste Intensity], ALL ( 'Date' ) ) - displayFolder: _Sustainability Measures\Waste Intensity Measures - lineageTag: 38d01131-cd14-49c0-a583-23d3f35c1d6f - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water Intensity Balance' = - - CALCULATE ( [Water Intensity], ALL ( 'Date' ) ) - displayFolder: _Sustainability Measures\Water Intensity Measures - lineageTag: b5097795-4a11-4281-af9f-249febc43f4f - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water Intensity Balance at Date' = - - CALCULATE ( - [Water Intensity], - FILTER ( ALL ( 'Date'[Date] ), 'Date'[Date] <= MAX ( 'Date'[Date] ) ) - ) - displayFolder: _Sustainability Measures\Water Intensity Measures - lineageTag: d6fbfd5b-566d-4689-8ebb-3ec5fbc42ead - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CO2 Baseline' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "CO2 Emissions", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Emission CO2] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Baseline Start Date] ), - MAX ( 'Sustainability Goals'[Baseline End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [CO2 Emissions] ) - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 382b3caf-4192-4c59-bd8e-61271f8fe259 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CH4 Baseline' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "CH4 Emissions", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Emission CH4] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Baseline Start Date] ), - MAX ( 'Sustainability Goals'[Baseline End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [CH4 Emissions] ) - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: aa34a845-69a9-4911-80ab-a626c447bee8 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CH4 vs Baseline (%)' = - - DIVIDE ( [CH4 Current Value], [CH4 Baseline] ) - formatString: #,0.00%;-#,0.00%;#,0.00% - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 9d154b5a-d5ea-4529-940a-a5f4dec274f7 - - measure 'N2O Baseline' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "N2O Emissions", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Emission N2O] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Baseline Start Date] ), - MAX ( 'Sustainability Goals'[Baseline End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [N2O Emissions] ) - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 176c24f7-23b8-4d71-b7f5-7a34896c049f - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'N2O vs Baseline (%)' = - - DIVIDE ( [N2O Current Value], [N2O Baseline] ) - formatString: #,0.00%;-#,0.00%;#,0.00% - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: f71aa40a-1fcd-4d8c-9e2f-9c011013989a - - measure 'CO2 vs Baseline (%)' = - - DIVIDE ( [CO2 Current Value], [CO2 Baseline] ) - formatString: #,0.00%;-#,0.00%;#,0.00% - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 36ae0168-06ba-4880-98bb-59bb35399af8 - - measure 'Water Baseline' = - - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Wat. Intensity] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Baseline Start Date] ), - MAX ( 'Sustainability Goals'[Baseline End Date] ) - ) - ) - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 577402bf-28bc-4551-8efb-8098222b95bc - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Waste Baseline' = - - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Wast. Intensity] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Baseline Start Date] ), - MAX ( 'Sustainability Goals'[Baseline End Date] ) - ) - ) - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 2b24ae24-9469-40a3-9ccd-8614d3936298 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water vs Baseline (%)' = - - DIVIDE ( [Water Intensity], [Water Baseline] ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 8fe0587c-04fd-4a0c-83dc-a4b7f8ad8b27 - - measure 'Waste vs Baseline (%)' = - - DIVIDE ( [Waste Intensity], [Waste Baseline] ) - formatString: #,0.00%;-#,0.00%;#,0.00% - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 73e2e1da-1650-4ed2-aeb7-5fee5e823416 - - measure 'CO2e Baseline' = - - VAR SustainabilityGoalsTable = - SUMMARIZECOLUMNS ( - 'Sustainability Goals'[Score Card No.], - "CO2e Emissions", - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Emission CO2e] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Baseline Start Date] ), - MAX ( 'Sustainability Goals'[Baseline End Date] ) - ) - ) - ) - RETURN - SUMX ( SustainabilityGoalsTable, [CO2e Emissions] ) - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 007410d5-f576-4caa-8e68-0df15bc234a1 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'CO2e vs Baseline (%)' = - - DIVIDE ( [CO2e Current Value], [CO2e Baseline] ) - formatString: #,0.00%;-#,0.00%;#,0.00% - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 9f4a9531-9f03-4896-b099-2342b9c1b9f7 - - measure 'Purchased Carbon Credits' = - - CALCULATE ( - [CO2e Emissions], - 'Sustainability Ledger Entries'[Document Type] = "GHG Credit" - ) - displayFolder: _Sustainability Measures - lineageTag: 95d2cc4b-fe13-4c2f-a018-f19e639bb92a - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Discharged Into Water Baseline' = - - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Dish. Into Water] ), - ALL ( 'Date' ), - DATESBETWEEN ( - 'Date'[Date], - MIN ( 'Sustainability Goals'[Baseline Start Date] ), - MAX ( 'Sustainability Goals'[Baseline End Date] ) - ) - ) - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 50b14d49-6c4d-4abb-b983-aca23232a8f0 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Discharged Into Water vs Baseline (%)' = - - DIVIDE ( [Discharged Into Water], [Discharged Into Water Baseline] ) - formatString: #,0.00%;-#,0.00%;#,0.00% - displayFolder: _Sustainability Measures\Baseline Measures - lineageTag: 1e6b7c40-0119-4028-b946-2c436ca62dd1 - - measure 'CO2e Emissions (Excl Credits)' = - - CALCULATE ( - SUM ( 'Sustainability Ledger Entries'[Emission CO2e] ), - 'Sustainability Ledger Entries'[Document Type] <> "GHG Credit" - ) - displayFolder: _Sustainability Measures\CO2e Measures - lineageTag: 36836214-b579-41f9-91d1-008ddb5970b1 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water Intensity PY' = - - IF ( - [ShowValueForDates], - CALCULATE ( - [Water Intensity], - CALCULATETABLE ( - DATEADD ( 'Date'[Date], -1, YEAR ), - 'Date'[DatesWithTransactions] = TRUE - ) - ) - ) - displayFolder: _Sustainability Measures\Water Intensity Measures - lineageTag: 223d8ff9-fe11-4f5f-90ba-3629d0f27087 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water Intensity YOY' = - - VAR WaterChange = [Water Intensity PY] - [Water Intensity] - RETURN - - ( DIVIDE ( WaterChange, [Water Intensity PY] ) ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Measures\Water Intensity Measures - lineageTag: f4f0bfab-f650-4b05-aa74-6f903ad2e4a1 - - measure 'Waste Intensity PY' = - - IF ( - [ShowValueForDates], - CALCULATE ( - [Waste Intensity], - CALCULATETABLE ( - DATEADD ( 'Date'[Date], -1, YEAR ), - 'Date'[DatesWithTransactions] = TRUE - ) - ) - ) - displayFolder: _Sustainability Measures\Waste Intensity Measures - lineageTag: 4e103d90-531d-4ebc-bcdf-4424628b28f0 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Waste Intensity YOY' = - - VAR WasteChange = [Waste Intensity PY] - [Waste Intensity] - RETURN - - ( DIVIDE ( WasteChange, [Waste Intensity PY] ) ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Measures\Waste Intensity Measures - lineageTag: ee6c4d62-1729-4fb6-b666-c42d4d1a9ae2 - - measure 'Discharged Into Water PY' = - - IF ( - [ShowValueForDates], - CALCULATE ( - [Discharged Into Water], - CALCULATETABLE ( - DATEADD ( 'Date'[Date], -1, YEAR ), - 'Date'[DatesWithTransactions] = TRUE - ) - ) - ) - displayFolder: _Sustainability Measures\Discharged Into Water Measures - lineageTag: d8bcec7e-3837-4c36-855e-e08b010dc678 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Discharged Into Water YOY' = - - VAR DischargeIntoWaterChange = [Discharged Into Water PY] - [Discharged Into Water] - RETURN - - ( DIVIDE ( DischargeIntoWaterChange, [Discharged Into Water PY] ) ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Measures\Discharged Into Water Measures - lineageTag: f93aae63-4ce3-4146-a037-c2bf583ec759 - - measure 'Discharged Into Water PD' = - - IF ( - [ShowValueForDates], - CALCULATE ( - [Discharged Into Water], - CALCULATETABLE ( - DATEADD ( 'Date'[Date], -1, DAY ), - 'Date'[DatesWithTransactions] = TRUE - ) - ) - ) - displayFolder: _Sustainability Measures\Discharged Into Water Measures - lineageTag: 1f436360-692b-4ad6-8415-ddb471f080b1 - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Waste Intensity PD' = - - IF ( - [ShowValueForDates], - CALCULATE ( - [Waste Intensity], - CALCULATETABLE ( - DATEADD ( 'Date'[Date], -1, DAY ), - 'Date'[DatesWithTransactions] = TRUE - ) - ) - ) - displayFolder: _Sustainability Measures\Waste Intensity Measures - lineageTag: e3918949-dfe7-42e7-8443-c157aa994d3d - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water Intensity PD' = - - IF ( - [ShowValueForDates], - CALCULATE ( - [Water Intensity], - CALCULATETABLE ( - DATEADD ( 'Date'[Date], -1, DAY ), - 'Date'[DatesWithTransactions] = TRUE - ) - ) - ) - displayFolder: _Sustainability Measures\Water Intensity Measures - lineageTag: 81689940-d831-4d39-acb4-181435d15ada - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - measure 'Water Intensity DOD' = - - VAR WaterChange = [Water Intensity PD] - [Water Intensity] - RETURN - - ( DIVIDE ( WaterChange, [Water Intensity PD] ) ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Measures\Water Intensity Measures - lineageTag: 0067f1fd-987f-4327-8e2f-3db6e5762ae4 - - measure 'Waste Intensity DOD' = - - VAR WasteChange = [Waste Intensity PD] - [Waste Intensity] - RETURN - - ( DIVIDE ( WasteChange, [Waste Intensity PD] ) ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Measures\Waste Intensity Measures - lineageTag: 3331f55f-3ace-49fa-a547-1bb0df0e64c6 - - measure 'Discharged Into Water DOD' = - - VAR DischargeIntoWaterChange = [Discharged Into Water PD] - [Discharged Into Water] - RETURN - - ( DIVIDE ( DischargeIntoWaterChange, [Discharged Into Water PD] ) ) - formatString: 0.00%;-0.00%;0.00% - displayFolder: _Sustainability Measures\Discharged Into Water Measures - lineageTag: 9508c68d-3a6b-4d9b-862d-dc739d2cc99c - - measure 'Base Link' = - - VAR BusinessCentral = "https://businesscentral.dynamics.com/" - VAR TenantID = - VALUES ( 'Date Table Setup'[tenantID] ) - VAR Environment = - VALUES ( ENVIRONMENT[ENVIRONMENT] ) - VAR Company = - "?company=" & VALUES ( 'Company Encoding'[Encoded Company Name] ) - RETURN - BusinessCentral & TenantID & "/" & Environment & "/" & Company - displayFolder: _Back Links - lineageTag: df2ffa0c-4e05-4257-8483-d124377814f9 - - measure 'Sustainability Ledger Entries Link' = - - VAR Endpoint = "&page=6220&" - VAR BaseLink = [Base Link] & Endpoint // Filter Context - VAR AccountNo = - CONCATENATEX ( - VALUES ( 'Sustainability Ledger Entries'[Sustainability Account No.] ), - 'Sustainability Ledger Entries'[Sustainability Account No.], - "|" - ) - VAR DimensionSetIDs = - CONCATENATEX ( - VALUES ( 'Sustainability Ledger Entries'[Dimension Set ID] ), - 'Sustainability Ledger Entries'[Dimension Set ID], - "|" - ) - VAR AccountNoFilter = "filter='Sustainability Ledger Entry'.'Account No.' IS '" & AccountNo & "'" - VAR DateFilter = " AND 'Sustainability Ledger Entry'.'Posting Date' IS '" & [Ranged] & "'" - VAR DimensionFilter = " AND 'Sustainability Ledger Entry'.'Dimension Set ID' IS '" & DimensionSetIDs & "'" - RETURN - BaseLink & AccountNoFilter & DimensionFilter & DateFilter - displayFolder: _Back Links - lineageTag: f24f87a5-4019-4ed5-ae4b-67285d98d57a - - measure 'Months in Context' = - - DATESINPERIOD ( 'Date'[Date], MAX ( 'Date'[Date] ), -1, MONTH ) - formatString: General Date - isHidden - displayFolder: _Sustainability Measures\Water Intensity Measures - lineageTag: 36386e28-448e-4563-84fa-e85b618e4854 - - changedProperty = IsHidden - - measure 'Water Available' = [Facility Capacity] - [Water Intensity] - displayFolder: _Sustainability Measures\Water Intensity Measures - lineageTag: a4076b8c-7262-417f-b534-f0712a788efa - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Sustainability Account No.' - dataType: string - isHidden - lineageTag: dd444b4d-5759-48d6-9890-04c1784fa3fe - summarizeBy: none - sourceColumn: Sustainability Account No. - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Entry No.' - dataType: int64 - isKey - formatString: 0 - lineageTag: 56c87b66-607f-4c15-977a-005985b5e581 - summarizeBy: sum - sourceColumn: Entry No. - - annotation SummarizationSetBy = Automatic - - column Date - dataType: dateTime - isHidden - formatString: Short Date - lineageTag: 952887d6-19e8-487b-8996-d522274d9bc3 - summarizeBy: none - sourceColumn: Date - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation UnderlyingDateTimeDataType = Date - - column 'Emission CH4' - dataType: double - isHidden - lineageTag: fa53ff57-2c55-4b4d-b0f2-a89a2c021742 - summarizeBy: sum - sourceColumn: Emission CH4 - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Emission CO2' - dataType: double - isHidden - lineageTag: c24b6826-6647-45d8-a2e5-7c42abac4179 - summarizeBy: sum - sourceColumn: Emission CO2 - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Dimension Set ID' - dataType: int64 - isHidden - formatString: 0 - lineageTag: 6d27933b-51a4-48d0-bf3b-1375fc16eed7 - summarizeBy: none - sourceColumn: Dimension Set ID - - annotation SummarizationSetBy = Automatic - - column Description - dataType: string - lineageTag: 2a630679-72e8-4b7c-802f-e6776d8354b2 - summarizeBy: none - sourceColumn: Description - - annotation SummarizationSetBy = Automatic - - column 'Emission N2O' - dataType: double - isHidden - lineageTag: c062188a-d994-4989-82c0-01d25a60d541 - summarizeBy: sum - sourceColumn: Emission N2O - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Emission CO2e' - dataType: double - isHidden - lineageTag: e6d7c5c4-7221-40a6-8486-4cfc9b390f25 - summarizeBy: sum - sourceColumn: Emission CO2e - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Carbon Fee' - dataType: double - isHidden - lineageTag: e0341c05-ac7e-4d09-b754-23a9960d4c30 - summarizeBy: sum - sourceColumn: Carbon Fee - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Wat. Intensity' - dataType: double - isHidden - lineageTag: 310487fb-c048-412b-9643-19aa492dd72c - summarizeBy: sum - sourceColumn: Wat. Intensity - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Dish. Into Water' - dataType: double - isHidden - lineageTag: 6ca716dc-44ae-4ad8-a3ac-0880ca6ab940 - summarizeBy: sum - sourceColumn: Dish. Into Water - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Wast. Intensity' - dataType: double - isHidden - lineageTag: 9369a292-3806-40bb-a43d-c54ca41aa598 - summarizeBy: sum - sourceColumn: Wast. Intensity - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - annotation PBI_FormatHint = {"isGeneralNumber":true} - - column 'Responsibility Centre' - dataType: string - isHidden - lineageTag: 6478b59a-b67e-490e-949e-848ad2276fca - summarizeBy: none - sourceColumn: Responsibility Centre - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Country/Region Code' - dataType: string - isHidden - lineageTag: a8333572-537a-410e-8fe2-a0a6ea0a495d - summarizeBy: none - sourceColumn: Country/Region Code - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Water Type' - dataType: string - lineageTag: c28fbbcf-d677-41d7-9d48-f3f7d45e1f1b - summarizeBy: none - sourceColumn: Water Type - - annotation SummarizationSetBy = Automatic - - column 'Wate/Waste Intensity Type' - dataType: string - lineageTag: 27772ee5-4bdd-445a-a702-6b6ff73bad27 - summarizeBy: none - sourceColumn: Wate/Waste Intensity Type - - annotation SummarizationSetBy = Automatic - - column 'Document Type' - dataType: string - lineageTag: 1973a70e-ce74-4dc5-9b79-03296b9c1a3c - summarizeBy: none - sourceColumn: Document Type - - annotation SummarizationSetBy = Automatic - - partition 'Sustainability Ledger Entries' = m - mode: import - queryGroup: 'Fact Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiSustainabilityLedgerEntries",Signature="table"]}[Data], - #"Renamed Columns" = Table.RenameColumns(TableData,{{"sustainAccountNo", "Sustainability Account No."}, {"entryNo", "Entry No."}, {"postingDate", "Date"}, {"emissionco2", "Emission CO2"}, {"emissionch4", "Emission CH4"}, {"emissionN2O", "Emission N2O"}, {"emissionCo2e", "Emission CO2e"}, {"carbonFee", "Carbon Fee"}, {"waterIntensity", "Wat. Intensity"}, {"dischargedIntoWater", "Dish. Into Water"}, {"wasteIntensity", "Wast. Intensity"}, {"dimensionSetID", "Dimension Set ID"}, {"responsibilityCenter", "Responsibility Centre"}, {"countryRegionCode", "Country/Region Code"}, {"description", "Description"}, {"documentType", "Document Type"}, {"waterType", "Water Type"}, {"waterWasteIntensityType", "Wate/Waste Intensity Type"}}), - #"Removed Columns1" = Table.RemoveColumns(#"Renamed Columns",{"ETag"}) - in - #"Removed Columns1" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Sub-Account Categories.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Sub-Account Categories.tmdl deleted file mode 100644 index 2f85ee0d73..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Sustainability Sub-Account Categories.tmdl +++ /dev/null @@ -1,67 +0,0 @@ -table 'Sustainability Sub-Account Categories' - lineageTag: 69811130-f179-45c5-b874-e277cc1470f4 - - column 'Category Code' - dataType: string - isHidden - lineageTag: 2a9016b9-5374-4a61-9935-3ac2017a517d - summarizeBy: none - sourceColumn: Category Code - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - column 'Sub-Category Description' - dataType: string - lineageTag: f8eaddfc-77bf-40d5-8bf3-1febb540225b - summarizeBy: none - sourceColumn: Sub-Category Description - - annotation SummarizationSetBy = Automatic - - column 'Renewable Energy' - dataType: boolean - formatString: """TRUE"";""TRUE"";""FALSE""" - lineageTag: 7c2f6290-5e19-4c60-a25e-9ac2c982d87e - summarizeBy: none - sourceColumn: Renewable Energy - - annotation SummarizationSetBy = Automatic - - column 'Sub-Category Code' - dataType: string - lineageTag: 8bb05cc7-68e8-4b12-82de-fbeb7db0f8b6 - summarizeBy: none - sourceColumn: Sub-Category Code - - annotation SummarizationSetBy = Automatic - - column 'Sustainability Account Subcategory Key' - dataType: string - isHidden - lineageTag: f084b9f8-33f8-4369-b6eb-e6a71965fb91 - summarizeBy: none - sourceColumn: Sustainability Account Subcategory Key - - changedProperty = IsHidden - - annotation SummarizationSetBy = Automatic - - partition 'Sustainability Sub-Account Categories' = m - mode: import - queryGroup: 'Dimension Tables' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="pbiSustainabilitySubAccountCategories",Signature="table"]}[Data], - #"Renamed Columns1" = Table.RenameColumns(TableData,{{"categoryCode", "Category Code"}, {"subcategoryCode", "Sub-Category Code"}, {"subCategoryDescription", "Sub-Category Description"}, {"subCategoryRenewableEnergy", "Renewable Energy"}}), - #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns1",{"ETag"}), - #"Added Sustainability Account Key" = Table.AddColumn(#"Removed Columns", "Sustainability Account Subcategory Key", each [Category Code] & " " & [#"Sub-Category Code"], type text) - in - #"Added Sustainability Account Key" - - annotation PBI_NavigationStepName = Navigation - - annotation PBI_ResultType = Table - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Translated Localized Labels.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Translated Localized Labels.tmdl deleted file mode 100644 index 756ac4e1fc..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Translated Localized Labels.tmdl +++ /dev/null @@ -1,1608 +0,0 @@ -table 'Translated Localized Labels' - isHidden - lineageTag: f5d846b6-84c3-4f55-bfee-f1db2ec79b15 - - measure 'My Report Title Label' = - SWITCH(USERCULTURE(), - "es-ES", "Título del informe", - "de-DE", "Titel meines Berichts", - "fr-FR", "Titre de l’état", - "cs-CZ", "Můj nadpis sestavy", - "da-DK", "Min rapporttitel", - "de-AT", "Titel meines Berichts", - "de-CH", "Titel meines Berichts", - "en-AU", "My Report Title", - "en-CA", "My Report Title", - "en-GB", "My Report Title", - "en-NZ", "My Report Title", - "es-MX", "Título del informe", - "fi-FI", "Oman raportin otsikko", - "fr-BE", "Titre de l’état", - "fr-CA", "Titre de mon rapport", - "fr-CH", "Titre de l’état", - "is-IS", "Skýrslutitill notanda", - "it-CH", "Titolo report personale", - "it-IT", "Titolo report personale", - "nb-NO", "Min rapporttittel", - "nl-BE", "Mijn rapporttitel", - "nl-NL", "Mijn rapporttitel", - "sv-SE", "Min rapportrubrik", - "My Report Title" - ) - isHidden - lineageTag: fb5269a0-c56a-4bbf-ad38-6099f3dfc95c - - measure 'My Button Caption Label' = - SWITCH(USERCULTURE(), - "es-ES", "Título de botón", - "de-DE", "Beschriftung Meine Schaltfläche", - "fr-FR", "Légende de mon bouton", - "cs-CZ", "Popisek mého tlačítka", - "da-DK", "Min knaptitel", - "de-AT", "Beschriftung Meine Schaltfläche", - "de-CH", "Beschriftung Meine Schaltfläche", - "en-AU", "My Button Caption", - "en-CA", "My Button Caption", - "en-GB", "My Button Caption", - "en-NZ", "My Button Caption", - "es-MX", "Título de botón", - "fi-FI", "Oma painikkeen otsikko", - "fr-BE", "Légende de mon bouton", - "fr-CA", "Légende de mon bouton", - "fr-CH", "Légende de mon bouton", - "is-IS", "Texti hnapps notanda", - "it-CH", "Didascalia pulsante personale", - "it-IT", "Didascalia pulsante personale", - "nb-NO", "Min knappetittel", - "nl-BE", "Bijschrift van mijn knop", - "nl-NL", "Bijschrift van mijn knop", - "sv-SE", "Min knapprubrik", - "My Button Caption" - ) - isHidden - lineageTag: ab567927-3a6c-4c0c-b43f-b3d7b82b1dab - - measure 'My Visual Title Label' = - SWITCH(USERCULTURE(), - "es-ES", "Título visual", - "de-DE", "Titel meines Visuals", - "fr-FR", "Mon titre visuel", - "cs-CZ", "Název mého vizuálu", - "da-DK", "Min visuelle titel", - "de-AT", "Titel meines Visuals", - "de-CH", "Titel meines Visuals", - "en-AU", "My Visual Title", - "en-CA", "My Visual Title", - "en-GB", "My Visual Title", - "en-NZ", "My Visual Title", - "es-MX", "Título visual", - "fi-FI", "Oma visuaalinen otsikko", - "fr-BE", "Mon titre visuel", - "fr-CA", "Mon titre visuel", - "fr-CH", "Mon titre visuel", - "is-IS", "Sjónrænn titill notanda", - "it-CH", "Titolo visivo personale", - "it-IT", "Titolo visivo personale", - "nb-NO", "Min visuelle tittel", - "nl-BE", "Mijn visuele titel", - "nl-NL", "Mijn visuele titel", - "sv-SE", "Min visuella rubrik", - "My Visual Title" - ) - isHidden - lineageTag: fa152da6-732e-4185-bbe5-c20396a25cbc - - measure 'Inactive Employees Label' = - SWITCH(USERCULTURE(), - "es-ES", "Empleados inactivos", - "de-DE", "Inaktive Mitarbeiter", - "fr-FR", "Salariés inactifs", - "cs-CZ", "Neaktivní zaměstnanci", - "da-DK", "Inaktive medarbejdere", - "de-AT", "Inaktive Mitarbeiter", - "de-CH", "Inaktive Mitarbeiter", - "en-AU", "Inactive Employees", - "en-CA", "Inactive Employees", - "en-GB", "Inactive Employees", - "en-NZ", "Inactive Employees", - "es-MX", "Empleados inactivos", - "fi-FI", "Passiiviset työntekijät", - "fr-BE", "Salariés inactifs", - "fr-CA", "Employés inactifs", - "fr-CH", "Salariés inactifs", - "is-IS", "Óvirkir starfsmenn", - "it-CH", "Dipendenti inattivi", - "it-IT", "Dipendenti inattivi", - "nb-NO", "Inaktive ansatte", - "nl-BE", "Inactieve werknemers", - "nl-NL", "Inactieve werknemers", - "sv-SE", "Inaktiva medarbetare", - "Inactive Employees" - ) - isHidden - lineageTag: 40c03f22-a480-4a08-ad4d-2be686dac3b6 - - measure 'Terminated Employees Label' = - SWITCH(USERCULTURE(), - "es-ES", "Empleados despedidos", - "de-DE", "Gekündigte Mitarbeiter", - "fr-FR", "Salariés licenciés", - "cs-CZ", "Zaměstnanci, kteří ukončili pracovní poměr", - "da-DK", "Opsagte medarbejdere", - "de-AT", "Gekündigte Mitarbeiter", - "de-CH", "Gekündigte Mitarbeiter", - "en-AU", "Terminated Employees", - "en-CA", "Terminated Employees", - "en-GB", "Terminated Employees", - "en-NZ", "Terminated Employees", - "es-MX", "Empleados despedidos", - "fi-FI", "Työntekijät, joiden työsuhde päättynyt", - "fr-BE", "Salariés licenciés", - "fr-CA", "Employés licenciés", - "fr-CH", "Salariés licenciés", - "is-IS", "Starfsmenn sem hafa hætt störfum", - "it-CH", "Dipendenti licenziati", - "it-IT", "Dipendenti licenziati", - "nb-NO", "Oppsagte ansatte", - "nl-BE", "Ontslagen werknemers", - "nl-NL", "Ontslagen werknemers", - "sv-SE", "Uppsagda medarbetare", - "Terminated Employees" - ) - isHidden - lineageTag: 966f8d1a-5a7d-4f3d-a4c2-5f61792529a2 - - measure 'Employees in Unions Label' = - SWITCH(USERCULTURE(), - "es-ES", "Empleados en sindicatos", - "de-DE", "Mitarbeiter in Gewerkschaften", - "fr-FR", "Salariés dans les mutuelles", - "cs-CZ", "Zaměstnanci ve svazech", - "da-DK", "Medarbejdere i fagforeninger", - "de-AT", "Mitarbeiter in Gewerkschaften", - "de-CH", "Mitarbeiter in Personalverbänden", - "en-AU", "Employees in Unions", - "en-CA", "Employees in Unions", - "en-GB", "Employees in Unions", - "en-NZ", "Employees in Unions", - "es-MX", "Empleados en sindicatos", - "fi-FI", "Työntekijät ammattiyhdistyksissä", - "fr-BE", "Salariés dans les mutuelles", - "fr-CA", "Employés syndiqués", - "fr-CH", "Salariés dans les mutuelles", - "is-IS", "Starfsmenn í stéttarfélögum", - "it-CH", "Dipendenti in sindacati", - "it-IT", "Dipendenti in sindacati", - "nb-NO", "Ansatte i fagforening", - "nl-BE", "Werknemers in vakbonden", - "nl-NL", "Werknemers in vakbonden", - "sv-SE", "Medarbetare i fackföreningar", - "Employees in Unions" - ) - isHidden - lineageTag: 75302eb0-3f95-45c3-b914-10e96fdda99a - - measure 'Social Analysis Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis social", - "de-DE", "Sozialanalyse", - "fr-FR", "Analyse sociale", - "cs-CZ", "Sociální analýza", - "da-DK", "Social analyse", - "de-AT", "Sozialanalyse", - "de-CH", "Sozialanalyse", - "en-AU", "Social Analysis", - "en-CA", "Social Analysis", - "en-GB", "Social Analysis", - "en-NZ", "Social Analysis", - "es-MX", "Análisis social", - "fi-FI", "Sosiaalinen analyysi", - "fr-BE", "Analyse sociale", - "fr-CA", "Analyse sociale", - "fr-CH", "Analyse sociale", - "is-IS", "Félagsgreining", - "it-CH", "Analisi sociale", - "it-IT", "Analisi sociale", - "nb-NO", "Samfunnsanalyse", - "nl-BE", "Sociale analyse", - "nl-NL", "Sociale analyse", - "sv-SE", "Samhällsanalys", - "Social Analysis" - ) - isHidden - lineageTag: fae30f4b-3d2b-41aa-b4b7-d2704e1eb978 - - measure 'Gender Distribution Label' = - SWITCH(USERCULTURE(), - "es-ES", "Distribución de sexos", - "de-DE", "Geschlechteverteilung", - "fr-FR", "Répartition par genre", - "cs-CZ", "Distribuce podle pohlaví", - "da-DK", "Distribution af køn", - "de-AT", "Geschlechteverteilung", - "de-CH", "Geschlechteverteilung", - "en-AU", "Gender Distribution", - "en-CA", "Gender Distribution", - "en-GB", "Gender Distribution", - "en-NZ", "Gender Distribution", - "es-MX", "Distribución de sexos", - "fi-FI", "Sukupuolijakauma", - "fr-BE", "Répartition par genre", - "fr-CA", "Répartition par genre", - "fr-CH", "Répartition par genre", - "is-IS", "Kynjadreifing", - "it-CH", "Distribuzione generi", - "it-IT", "Distribuzione generi", - "nb-NO", "Kjønnsdistribusjon", - "nl-BE", "Geslachtsdistributie", - "nl-NL", "Geslachtsdistributie", - "sv-SE", "Könsfördelning", - "Gender Distribution" - ) - isHidden - lineageTag: e3fefcbc-8053-4e5c-b133-c535b6516f5b - - measure 'Age Distribution Label' = - SWITCH(USERCULTURE(), - "es-ES", "Distribución por edades", - "de-DE", "Altersverteilung", - "fr-FR", "Répartition par âge", - "cs-CZ", "Distribuce podle věku", - "da-DK", "Aldersfordeling", - "de-AT", "Altersverteilung", - "de-CH", "Altersverteilung", - "en-AU", "Age Distribution", - "en-CA", "Age Distribution", - "en-GB", "Age Distribution", - "en-NZ", "Age Distribution", - "es-MX", "Distribución por edades", - "fi-FI", "Ikäjakauma", - "fr-BE", "Répartition par âge", - "fr-CA", "Répartition par âge", - "fr-CH", "Répartition par âge", - "is-IS", "Aldursdreifing", - "it-CH", "Distribuzione età", - "it-IT", "Distribuzione età", - "nb-NO", "Aldersfordeling", - "nl-BE", "Leeftijdsdistributie", - "nl-NL", "Leeftijdsdistributie", - "sv-SE", "Åldersfördelning", - "Age Distribution" - ) - isHidden - lineageTag: fa947550-0373-467a-931b-570b3406299b - - measure 'Employees Qualifications Label' = - SWITCH(USERCULTURE(), - "es-ES", "Cualificaciones de empleados", - "de-DE", "Mitarbeiterqualifikationen", - "fr-FR", "Qualifications salariés", - "cs-CZ", "Kvalifikace zaměstnanců", - "da-DK", "Medarbejderkvalifikationer", - "de-AT", "Mitarbeiterqualifikationen", - "de-CH", "Mitarbeiterqualifikationen", - "en-AU", "Employees Qualifications", - "en-CA", "Employees Qualifications", - "en-GB", "Employees Qualifications", - "en-NZ", "Employees Qualifications", - "es-MX", "Habilidades de empleados", - "fi-FI", "Työntekijöiden pätevyydet", - "fr-BE", "Qualifications salariés", - "fr-CA", "Qualifications des employés", - "fr-CH", "Qualifications salariés", - "is-IS", "Menntun og hæfi starfsmanna", - "it-CH", "Qualifiche dipendenti", - "it-IT", "Qualifiche dipendenti", - "nb-NO", "Ansattes kvalifikasjoner", - "nl-BE", "Werknemerskwalificaties", - "nl-NL", "Werknemerskwalificaties", - "sv-SE", "Personalkompetenser", - "Employees Qualifications" - ) - isHidden - lineageTag: 37ca1a9d-ef57-430b-a539-f41505303779 - - measure 'Realized Emissions vs Target Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones realizadas frente a destino", - "de-DE", "Realisierte Emissionen gegenüber Ziel", - "fr-FR", "Émissions réalisées par rapport à la cible", - "cs-CZ", "Realizované emise vs. cílová hodnota", - "da-DK", "Realiserede udledninger vs mål", - "de-AT", "Realisierte Emissionen gegenüber Ziel", - "de-CH", "Realisierte Emissionen gegenüber Ziel", - "en-AU", "Realised Emissions vs Target", - "en-CA", "Realized Emissions vs Target", - "en-GB", "Realised Emissions vs Target", - "en-NZ", "Realised Emissions vs Target", - "es-MX", "Emisiones realizadas frente a destino", - "fi-FI", "Toteutuneet päästöt vrt. tavoite", - "fr-BE", "Émissions réalisées par rapport à la cible", - "fr-CA", "Émissions réalisées par rapport à la cible", - "fr-CH", "Émissions réalisées par rapport à la cible", - "is-IS", "Raunlosun samanborið við markmið", - "it-CH", "Realizzazione emissioni rispetto all'obiettivo", - "it-IT", "Realizzazione emissioni rispetto all'obiettivo", - "nb-NO", "Realiserte utslipp kontra mål", - "nl-BE", "Gerealiseerde uitstoot versus doel", - "nl-NL", "Gerealiseerde uitstoot versus doel", - "sv-SE", "Realiserade utsläpp jämfört med målet", - "Realized Emissions vs Target" - ) - isHidden - lineageTag: d088698d-3e33-4bdb-bd13-21798956a522 - - measure 'CO2e Emissions by Scope Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e por ámbito", - "de-DE", "CO2e-Emissionen nach Umfang", - "fr-FR", "Émissions de CO2e par champ", - "cs-CZ", "Emise CO2e podle rozsahu", - "da-DK", "CO2e-udledninger efter omfang", - "de-AT", "CO2e-Emissionen nach Umfang", - "de-CH", "CO2e-Emissionen nach Umfang", - "en-AU", "CO2e Emissions by Scope", - "en-CA", "CO2e Emissions by Scope", - "en-GB", "CO2e Emissions by Scope", - "en-NZ", "CO2e Emissions by Scope", - "es-MX", "Emisiones de CO2e por ámbito", - "fi-FI", "CO2e-päästöt laajuuksittain", - "fr-BE", "Émissions de CO2e par champ", - "fr-CA", "Émissions de CO2e par champ", - "fr-CH", "Émissions de CO2e par champ", - "is-IS", "Losun CO2e eftir umfangi", - "it-CH", "Emissioni CO2e per ambito", - "it-IT", "Emissioni CO2e per ambito", - "nb-NO", "CO2e-utslipp etter område", - "nl-BE", "CO2e-uitstoot per bereik", - "nl-NL", "CO2e-uitstoot per bereik", - "sv-SE", "CO2e-utsläpp per scope", - "CO2e Emissions by Scope" - ) - isHidden - lineageTag: a730e6f7-17d1-4e9e-b056-54f9deae203d - - measure 'Gas Emissions by Category Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de gases por categoría", - "de-DE", "Gasemissionen nach Kategorien", - "fr-FR", "Émissions de gaz par catégorie", - "cs-CZ", "Emise plynu podle kategorie", - "da-DK", "Gasudledninger efter kategori", - "de-AT", "Gasemissionen nach Kategorien", - "de-CH", "Gasemissionen nach Kategorien", - "en-AU", "Gas Emissions by Category", - "en-CA", "Gas Emissions by Category", - "en-GB", "Gas Emissions by Category", - "en-NZ", "Gas Emissions by Category", - "es-MX", "Emisiones de gases por categoría", - "fi-FI", "Kaasupäästöt luokittain", - "fr-BE", "Émissions de gaz par catégorie", - "fr-CA", "Émissions de gaz par catégorie", - "fr-CH", "Émissions de gaz par catégorie", - "is-IS", "Losun lofttegunda eftir flokki", - "it-CH", "Emissioni gas per categoria", - "it-IT", "Emissioni gas per categoria", - "nb-NO", "Gassutslipp etter kategori", - "nl-BE", "Gasuitstoot per categorie", - "nl-NL", "Gasuitstoot per categorie", - "sv-SE", "Gasutsläpp per kategori", - "Gas Emissions by Category" - ) - isHidden - lineageTag: 01961868-8ec4-47a5-a6d9-4b5042fdf0d0 - - measure 'Realized Emissions vs Baseline Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones realizadas frente a línea de base", - "de-DE", "Realisierte Emissionen gegenüber Ausgangswert", - "fr-FR", "Émissions réalisées par rapport à la ligne de base", - "cs-CZ", "Realizované emise vs. základní hodnota", - "da-DK", "Realiserede udledninger vs grundlinje", - "de-AT", "Realisierte Emissionen gegenüber Ausgangswert", - "de-CH", "Realisierte Emissionen gegenüber Ausgangswert", - "en-AU", "Realised Emissions vs Baseline", - "en-CA", "Realized Emissions vs Baseline", - "en-GB", "Realised Emissions vs Baseline", - "en-NZ", "Realised Emissions vs Baseline", - "es-MX", "Emisiones realizadas frente a línea de base", - "fi-FI", "Toteutuneet päästöt vrt. perustaso", - "fr-BE", "Émissions réalisées par rapport à la ligne de base", - "fr-CA", "Émissions réalisées par rapport à la ligne de base", - "fr-CH", "Émissions réalisées par rapport à la ligne de base", - "is-IS", "Raunlosun samanborið við grunngildi", - "it-CH", "Realizzazione emissioni rispetto al valore di riferimento", - "it-IT", "Realizzazione emissioni rispetto al valore di riferimento", - "nb-NO", "Realiserte utslipp kontra grunnlinje", - "nl-BE", "Gerealiseerde uitstoot versus basislijn", - "nl-NL", "Gerealiseerde uitstoot versus basislijn", - "sv-SE", "Realiserade utsläpp jämfört med baslinjen", - "Realized Emissions vs Baseline" - ) - isHidden - lineageTag: 73d19675-e65b-43ab-ba62-ef09a9b1ec9f - - measure 'CO2e Emissions vs Baseline Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e frente a línea de base", - "de-DE", "CO2e-Emissionen gegenüber Ausgangswert", - "fr-FR", "Émissions de CO2e par rapport à la ligne de base", - "cs-CZ", "Emise CO2e vs. základní hodnota", - "da-DK", "CO2e-udledninger vs grundlinje", - "de-AT", "CO2e-Emissionen gegenüber Ausgangswert", - "de-CH", "CO2e-Emissionen gegenüber Ausgangswert", - "en-AU", "CO2e Emissions vs Baseline", - "en-CA", "CO2e Emissions vs Baseline", - "en-GB", "CO2e Emissions vs Baseline", - "en-NZ", "CO2e Emissions vs Baseline", - "es-MX", "Emisiones de CO2e frente a línea de base", - "fi-FI", "CO2e-päästöt vrt. perustaso", - "fr-BE", "Émissions de CO2e par rapport à la ligne de base", - "fr-CA", "Émissions de CO2e par rapport à la ligne de base", - "fr-CH", "Émissions de CO2e par rapport à la ligne de base", - "is-IS", "Losun CO2e miðað við grunnlínu", - "it-CH", "Emissioni CO2e rispetto al valore di riferimento", - "it-IT", "Emissioni CO2e rispetto al valore di riferimento", - "nb-NO", "CO2e-utslipp kontra grunnlinje", - "nl-BE", "CO2e-uitstoot versus basislijn", - "nl-NL", "CO2e-uitstoot versus basislijn", - "sv-SE", "CO2e-utsläpp jämfört med baslinjen", - "CO2e Emissions vs Baseline" - ) - isHidden - lineageTag: d0931db5-679a-4fcb-a8b4-53ec4cbbcd3b - - measure 'CO2e Emissions by Account Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e por cuenta", - "de-DE", "CO2e-Emissionen nach Firma", - "fr-FR", "Émissions de CO2e par compte", - "cs-CZ", "Emise CO2e podle účtu", - "da-DK", "CO2e-udledninger efter konto", - "de-AT", "CO2e-Emissionen nach Firma", - "de-CH", "CO2e-Emissionen nach Firma", - "en-AU", "CO2e Emissions by Account", - "en-CA", "CO2e Emissions by Account", - "en-GB", "CO2e Emissions by Account", - "en-NZ", "CO2e Emissions by Account", - "es-MX", "Emisiones de CO2e por cuenta", - "fi-FI", "CO2e-päästöt tileittäin", - "fr-BE", "Émissions de CO2e par compte", - "fr-CA", "Émissions de CO2e par compte", - "fr-CH", "Émissions de CO2e par compte", - "is-IS", "Losun CO2e eftir reikningi", - "it-CH", "Emissioni CO2e per conto", - "it-IT", "Emissioni CO2e per conto", - "nb-NO", "CO2e-utslipp etter konto", - "nl-BE", "CO2e-uitstoot per rekening", - "nl-NL", "CO2e-uitstoot per rekening", - "sv-SE", "CO2e-utsläpp per konto", - "CO2e Emissions by Account" - ) - isHidden - lineageTag: 164f119d-7781-4b56-a18a-c097fb293ea7 - - measure 'Water and Waste Analysis Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis del agua y residuos", - "de-DE", "Wasser- und Abfallanalyse", - "fr-FR", "Analyse de l’eau et des déchets", - "cs-CZ", "Voda a odpad podle analýzy", - "da-DK", "Vand- og affaldsanalyse", - "de-AT", "Wasser- und Abfallanalyse", - "de-CH", "Wasser- und Abfallanalyse", - "en-AU", "Water and Waste Analysis", - "en-CA", "Water and Waste Analysis", - "en-GB", "Water and Waste Analysis", - "en-NZ", "Water and Waste Analysis", - "es-MX", "Análisis del agua y residuos", - "fi-FI", "Vesi- ja jäteanalyysi", - "fr-BE", "Analyse de l’eau et des déchets", - "fr-CA", "Analyse de l’eau et des déchets", - "fr-CH", "Analyse de l’eau et des déchets", - "is-IS", "Greining á vatni og úrgangi", - "it-CH", "Analisi acqua e rifiuti", - "it-IT", "Analisi acqua e rifiuti", - "nb-NO", "Vann- og avfallsanalyse", - "nl-BE", "Water- en afvalanalyse", - "nl-NL", "Water- en afvalanalyse", - "sv-SE", "Vatten- och avfallsanalys", - "Water and Waste Analysis" - ) - isHidden - lineageTag: 81aa95d3-a862-46e8-a421-b65a76aefff6 - - measure 'Water by Facility Location Label' = - SWITCH(USERCULTURE(), - "es-ES", "Agua por almacén de instalación", - "de-DE", "Wasser nach Anlagenstandort", - "fr-FR", "Eau par magasin de l’installation", - "cs-CZ", "Voda podle lokace zařízení", - "da-DK", "Vand efter lokaleplacering", - "de-AT", "Wasser nach Anlagenstandort", - "de-CH", "Wasser nach Anlagenstandort", - "en-AU", "Water by Facility Location", - "en-CA", "Water by Facility Location", - "en-GB", "Water by Facility Location", - "en-NZ", "Water by Facility Location", - "es-MX", "Agua por almacén de instalación", - "fi-FI", "Vesi laitoksen sijainnin mukaan", - "fr-BE", "Eau par magasin de l’installation", - "fr-CA", "Consommation d’eau par site", - "fr-CH", "Eau par magasin de l’installation", - "is-IS", "Vatn eftir staðsetningu starfsstöðvar", - "it-CH", "Acqua per ubicazione dell'impianto", - "it-IT", "Acqua per ubicazione dell'impianto", - "nb-NO", "Vann etter anleggslokasjon", - "nl-BE", "Water per faciliteitslocatie", - "nl-NL", "Water per faciliteitslocatie", - "sv-SE", "Vatten per anläggningsplats", - "Water by Facility Location" - ) - isHidden - lineageTag: 137fea26-a935-4bde-8211-d9568e24f1d5 - - measure 'Water by Facility Capacity Label' = - SWITCH(USERCULTURE(), - "es-ES", "Agua por capacidad de instalación", - "de-DE", "Wasser nach Anlagenkapazität", - "fr-FR", "Eau par capacité de l’installation", - "cs-CZ", "Voda podle kapacity zařízení", - "da-DK", "Vand efter lokalekapacitet", - "de-AT", "Wasser nach Anlagenkapazität", - "de-CH", "Wasser nach Anlagenkapazität", - "en-AU", "Water by Facility Capacity", - "en-CA", "Water by Facility Capacity", - "en-GB", "Water by Facility Capacity", - "en-NZ", "Water by Facility Capacity", - "es-MX", "Agua por capacidad de instalación", - "fi-FI", "Vesi laitoksen kapasiteetin mukaan", - "fr-BE", "Eau par capacité de l’installation", - "fr-CA", "Eau par capacité de l’installation", - "fr-CH", "Eau par capacité de l’installation", - "is-IS", "Vatn eftir afkastagetu starfastöðvar", - "it-CH", "Acqua per capacità dell'impianto", - "it-IT", "Acqua per capacità dell'impianto", - "nb-NO", "Vann etter anleggskapasitet", - "nl-BE", "Water per faciliteitscapaciteit", - "nl-NL", "Water per faciliteitscapaciteit", - "sv-SE", "Vatten per anläggningskapacitet", - "Water by Facility Capacity" - ) - isHidden - lineageTag: a3b2726a-050e-47fc-8ac9-b473900f7c51 - - measure 'Water and Waste by Type Label' = - SWITCH(USERCULTURE(), - "es-ES", "Agua y residuos por tipo", - "de-DE", "Wasser und Abfall nach Typ", - "fr-FR", "Eau et déchets par type", - "cs-CZ", "Voda a odpad podle typu", - "da-DK", "Vand og affald efter type", - "de-AT", "Wasser und Abfall nach Typ", - "de-CH", "Wasser und Abfall nach Typ", - "en-AU", "Water and Waste by Type", - "en-CA", "Water and Waste by Type", - "en-GB", "Water and Waste by Type", - "en-NZ", "Water and Waste by Type", - "es-MX", "Agua y residuos por tipo", - "fi-FI", "Vesi- ja jäte tyypeittäin", - "fr-BE", "Eau et déchets par type", - "fr-CA", "Eau et déchets par type", - "fr-CH", "Eau et déchets par type", - "is-IS", "Vatn og úrgangur eftir gerð", - "it-CH", "Acqua e rifiuti per tipo", - "it-IT", "Acqua e rifiuti per tipo", - "nb-NO", "Vann og avfall etter type", - "nl-BE", "Water en afval per type", - "nl-NL", "Water en afval per type", - "sv-SE", "Vatten och avfall per typ", - "Water and Waste by Type" - ) - isHidden - lineageTag: 0097cb7f-445d-434d-9781-e7014cc9cfb0 - - measure 'Water and Waste Intensity by Type Label' = - SWITCH(USERCULTURE(), - "es-ES", "Intensidad del agua y residuos por tipo", - "de-DE", "Wasser- und Abfallintensität nach Typ", - "fr-FR", "Intensité en eau et des déchets par type", - "cs-CZ", "Intenzita vody a odpadu podle typu", - "da-DK", "Vand- og affaldsintensitet efter type", - "de-AT", "Wasser- und Abfallintensität nach Typ", - "de-CH", "Wasser- und Abfallintensität nach Typ", - "en-AU", "Water and Waste Intensity by Type", - "en-CA", "Water and Waste Intensity by Type", - "en-GB", "Water and Waste Intensity by Type", - "en-NZ", "Water and Waste Intensity by Type", - "es-MX", "Intensidad del agua y residuos por tipo", - "fi-FI", "Vesi- ja jäteintensiteetti tyypeittäin", - "fr-BE", "Intensité en eau et des déchets par type", - "fr-CA", "Intensité en eau et des déchets par type", - "fr-CH", "Intensité en eau et des déchets par type", - "is-IS", "Vatns- og úrgangsmagn eftir gerð", - "it-CH", "Intensità acqua e rifiuti per tipo", - "it-IT", "Intensità acqua e rifiuti per tipo", - "nb-NO", "Vann- og avfallsintensitet etter type", - "nl-BE", "Water- en afvalintensiteit per type", - "nl-NL", "Water- en afvalintensiteit per type", - "sv-SE", "Vatten- och avfallsintensitet per typ", - "Water and Waste Intensity by Type" - ) - isHidden - lineageTag: beb66cc4-3728-484c-b477-f2425b878ceb - - measure 'Water and Waste Intensity by Facility Label' = - SWITCH(USERCULTURE(), - "es-ES", "Intensidad del agua y residuos por instalación", - "de-DE", "Wasser- und Abfallintensität nach Anlage", - "fr-FR", "Intensité en eau et des déchets par installation", - "cs-CZ", "Intenzita vody a odpadu podle zařízení", - "da-DK", "Vand- og affaldsintensitet efter anlæg", - "de-AT", "Wasser- und Abfallintensität nach Anlage", - "de-CH", "Wasser- und Abfallintensität nach Anlage", - "en-AU", "Water and Waste Intensity by Facility", - "en-CA", "Water and Waste Intensity by Facility", - "en-GB", "Water and Waste Intensity by Facility", - "en-NZ", "Water and Waste Intensity by Facility", - "es-MX", "Intensidad del agua y residuos por instalación", - "fi-FI", "Vesi- ja jäteintensiteetti laitoksittain", - "fr-BE", "Intensité en eau et des déchets par installation", - "fr-CA", "Intensité en eau et des déchets par installation", - "fr-CH", "Intensité en eau et des déchets par installation", - "is-IS", "Vatns- og úrgangsmagn eftir starfsstöð", - "it-CH", "Intensità acqua e rifiuti per impianto", - "it-IT", "Intensità acqua e rifiuti per impianto", - "nb-NO", "Vann- og avfallsintensitet etter anlegg", - "nl-BE", "Water- en afvalintensiteit per faciliteit", - "nl-NL", "Water- en afvalintensiteit per faciliteit", - "sv-SE", "Vatten- och avfallsintensitet per anläggning", - "Water and Waste Intensity by Facility" - ) - isHidden - lineageTag: ac93d89e-099c-4f3c-9013-44973e700059 - - measure 'Emissions by Category and Scope Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones por categoría y ámbito", - "de-DE", "Emissionen nach Kategorie und Umfang", - "fr-FR", "Émissions par catégorie et champ", - "cs-CZ", "Emise podle kategorie a rozsahu", - "da-DK", "Udledninger efter kategori og omfang", - "de-AT", "Emissionen nach Kategorie und Umfang", - "de-CH", "Emissionen nach Kategorie und Umfang", - "en-AU", "Emissions by Category and Scope", - "en-CA", "Emissions by Category and Scope", - "en-GB", "Emissions by Category and Scope", - "en-NZ", "Emissions by Category and Scope", - "es-MX", "Emisiones por categoría y ámbito", - "fi-FI", "Päästöt luokittain ja laajuuksittain", - "fr-BE", "Émissions par catégorie et champ", - "fr-CA", "Émissions par catégorie et champ", - "fr-CH", "Émissions par catégorie et champ", - "is-IS", "Losun eftir flokkum og umfangi", - "it-CH", "Emissioni per categoria e ambito", - "it-IT", "Emissioni per categoria e ambito", - "nb-NO", "Utslipp etter kategori og område", - "nl-BE", "Uitstoot per categorie en bereik", - "nl-NL", "Uitstoot per categorie en bereik", - "sv-SE", "Utsläpp per kategori och scope", - "Emissions by Category and Scope" - ) - isHidden - lineageTag: d7190573-55f7-4652-a893-8fb3d8a31be4 - - measure 'Emissions by Category Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones por categoría", - "de-DE", "Emissionen nach Kategorie", - "fr-FR", "Émissions par catégorie", - "cs-CZ", "Emise podle kategorie", - "da-DK", "Udledninger efter kategori", - "de-AT", "Emissionen nach Kategorie", - "de-CH", "Emissionen nach Kategorie", - "en-AU", "Emissions by Category", - "en-CA", "Emissions by Category", - "en-GB", "Emissions by Category", - "en-NZ", "Emissions by Category", - "es-MX", "Emisiones por categoría", - "fi-FI", "Päästöt luokittain", - "fr-BE", "Émissions par catégorie", - "fr-CA", "Émissions par catégorie", - "fr-CH", "Émissions par catégorie", - "is-IS", "Losun eftir flokki", - "it-CH", "Emissioni per categoria", - "it-IT", "Emissioni per categoria", - "nb-NO", "Utslipp etter kategori", - "nl-BE", "Uitstoot per categorie", - "nl-NL", "Uitstoot per categorie", - "sv-SE", "Utsläpp per kategori", - "Emissions by Category" - ) - isHidden - lineageTag: 54aebfbb-1933-46de-8b15-4a5a5a4cb2af - - measure 'Emissions by Scope Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones por ámbito", - "de-DE", "Emissionen nach Umfang", - "fr-FR", "Émissions par portée", - "cs-CZ", "Emise podle rozsahu", - "da-DK", "Udledninger efter omfang", - "de-AT", "Emissionen nach Umfang", - "de-CH", "Emissionen nach Umfang", - "en-AU", "Emissions by Scope", - "en-CA", "Emissions by Scope", - "en-GB", "Emissions by Scope", - "en-NZ", "Emissions by Scope", - "es-MX", "Emisiones por ámbito", - "fi-FI", "Päästöt laajuuksittain", - "fr-BE", "Émissions par portée", - "fr-CA", "Émissions par portée", - "fr-CH", "Émissions par portée", - "is-IS", "Losun eftir umfangi", - "it-CH", "Emissioni per ambito", - "it-IT", "Emissioni per ambito", - "nb-NO", "Utslipp etter område", - "nl-BE", "Uitstoot per bereik", - "nl-NL", "Uitstoot per bereik", - "sv-SE", "Utsläpp per scope", - "Emissions by Scope" - ) - isHidden - lineageTag: 8cd8acb4-c9ce-457d-b6c5-1e326a185d90 - - measure 'CO2e Analysis Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis de CO2e", - "de-DE", "CO2e-Analyse", - "fr-FR", "Analyse du CO2e", - "cs-CZ", "Analýza CO2e", - "da-DK", "CO2e-analyse", - "de-AT", "CO2e-Analyse", - "de-CH", "CO2e-Analyse", - "en-AU", "CO2e Analysis", - "en-CA", "CO2e Analysis", - "en-GB", "CO2e Analysis", - "en-NZ", "CO2e Analysis", - "es-MX", "Análisis de CO2e", - "fi-FI", "CO2e-analyysi", - "fr-BE", "Analyse du CO2e", - "fr-CA", "Analyse du CO2e", - "fr-CH", "Analyse du CO2e", - "is-IS", "Greining CO2e", - "it-CH", "Analisi CO2e", - "it-IT", "Analisi CO2e", - "nb-NO", "CO2e-analyse", - "nl-BE", "CO2e-analyse", - "nl-NL", "CO2e-analyse", - "sv-SE", "CO2e-analys", - "CO2e Analysis" - ) - isHidden - lineageTag: 449cc7c3-f092-44eb-a528-e4b31f3fba06 - - measure 'CO2e Emissions by Category Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e por categoría", - "de-DE", "CO2e-Emissionen nach Kategorien", - "fr-FR", "Émissions de CO2e par catégorie", - "cs-CZ", "Emise CO2e podle kategorie", - "da-DK", "CO2e-udledning pr. kategori", - "de-AT", "CO2e-Emissionen nach Kategorien", - "de-CH", "CO2e-Emissionen nach Kategorien", - "en-AU", "CO2e Emissions by Category", - "en-CA", "CO2e Emissions by Category", - "en-GB", "CO2e Emissions by Category", - "en-NZ", "CO2e Emissions by Category", - "es-MX", "Emisiones de CO2e por categoría", - "fi-FI", "CO2e-päästöt luokittain", - "fr-BE", "Émissions de CO2e par catégorie", - "fr-CA", "Émissions de CO2e par catégorie", - "fr-CH", "Émissions de CO2e par catégorie", - "is-IS", "Losun CO2e eftir flokki", - "it-CH", "Emissioni CO2e per categoria", - "it-IT", "Emissioni CO2e per categoria", - "nb-NO", "CO2e-utslipp etter kategori", - "nl-BE", "CO2e-uitstoot per categorie", - "nl-NL", "CO2e-uitstoot per categorie", - "sv-SE", "CO2e-utsläpp per kategori", - "CO2e Emissions by Category" - ) - isHidden - lineageTag: af1f6b06-4265-466e-9973-a4911a823260 - - measure 'Carbon Credit by Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Crédito de carbono por mes", - "de-DE", "Kohlenstoffgutschrift nach Monat", - "fr-FR", "Crédit carbone par mois", - "cs-CZ", "Uhlíkový kredit podle měsíce", - "da-DK", "CO2-kredit efter måned", - "de-AT", "Kohlenstoffgutschrift nach Monat", - "de-CH", "Kohlenstoffgutschrift nach Monat", - "en-AU", "Carbon Credit by Month", - "en-CA", "Carbon Credit by Month", - "en-GB", "Carbon Credit by Month", - "en-NZ", "Carbon Credit by Month", - "es-MX", "Crédito de carbono por mes", - "fi-FI", "Hiilihyvitys kuukausittain", - "fr-BE", "Crédit carbone par mois", - "fr-CA", "Crédit carbone par mois", - "fr-CH", "Crédit carbone par mois", - "is-IS", "Kolefnisheimild eftir mánuði", - "it-CH", "Credito di carbonio per mese", - "it-IT", "Credito di carbonio per mese", - "nb-NO", "Karbonkredit etter måned", - "nl-BE", "Koolstofkrediet per maand", - "nl-NL", "Koolstofkrediet per maand", - "sv-SE", "Koldioxidkredit per månad", - "Carbon Credit by Month" - ) - isHidden - lineageTag: e50a6587-38e1-4700-bff5-cf82b1115a8b - - measure 'CO2e Equivalent Emission by Month and Revenue Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones equivalentes de CO2e por mes e ingresos", - "de-DE", "CO2e-Äquivalent Emission pro Monat und Umsatz", - "fr-FR", "Émissions d’équivalent CO2e par mois et par revenu", - "cs-CZ", "Ekvivalentní emise CO2e podle měsíce a výnosů", - "da-DK", "CO2e-ækvivalente udledninger efter måned og indtægt", - "de-AT", "CO2e-Äquivalent Emission pro Monat und Umsatz", - "de-CH", "CO2e-Äquivalent Emission pro Monat und Umsatz", - "en-AU", "CO2e Equivalent Emission by Month and Revenue", - "en-CA", "CO2e Equivalent Emission by Month and Revenue", - "en-GB", "CO2e Equivalent Emission by Month and Revenue", - "en-NZ", "CO2e Equivalent Emission by Month and Revenue", - "es-MX", "Emisiones equivalentes de CO2e por mes e ingresos", - "fi-FI", "CO2e-ekvivalenttipäästöt kuukausittain ja tuotoittain", - "fr-BE", "Émissions d’équivalent CO2e par mois et par revenu", - "fr-CA", "Émissions d’équivalent CO2e par mois et par revenu", - "fr-CH", "Émissions d’équivalent CO2e par mois et par revenu", - "is-IS", "Jafngild losun CO2e eftir mánuði og tekjum", - "it-CH", "Emissione CO2e equivalente per mese e ricavi", - "it-IT", "Emissione CO2e equivalente per mese e ricavi", - "nb-NO", "CO2e-ekvivalentutslipp etter måned og inntekt", - "nl-BE", "CO2e-equivalente uitstoot per maand en opbrengst", - "nl-NL", "CO2e-equivalente uitstoot per maand en opbrengst", - "sv-SE", "Utsläpp av CO2e-ekvivalenter per månad och intäkt", - "CO2e Equivalent Emission by Month and Revenue" - ) - isHidden - lineageTag: cbf91ef2-8bb7-4400-8f2d-35c3efcc4daa - - measure 'Employee Entries Drillthrough Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis detallado de movs. empleados", - "de-DE", "Mitarbeiterposten-Drillthrough", - "fr-FR", "Extraction écritures salarié", - "cs-CZ", "Podrobné procházení položek zaměstnanců", - "da-DK", "Detaljeudledning af medarbejderposter", - "de-AT", "Mitarbeiterposten-Drillthrough", - "de-CH", "Mitarbeiterposten-Drillthrough", - "en-AU", "Employee Entries Drillthrough", - "en-CA", "Employee Entries Drillthrough", - "en-GB", "Employee Entries Drillthrough", - "en-NZ", "Employee Entries Drillthrough", - "es-MX", "Análisis detallado de movs. empleados", - "fi-FI", "Työntekijätapahtumiin porautuminen", - "fr-BE", "Extraction écritures salarié", - "fr-CA", "Exploration des entrées de l’employé", - "fr-CH", "Extraction écritures salarié", - "is-IS", "Köfun í færslur starfsmanns", - "it-CH", "Drill-through movimenti dipendenti", - "it-IT", "Drill-through movimenti dipendenti", - "nb-NO", "Gjennomgang av ansattposter", - "nl-BE", "Detailanalyse van werknemersposten", - "nl-NL", "Detailanalyse van werknemersposten", - "sv-SE", "Detaljerad analys av personaltransaktioner", - "Employee Entries Drillthrough" - ) - isHidden - lineageTag: 14e39ece-5fe8-4d86-8c8f-ae0bfea24dbc - - measure 'Employee Ledger Entries Label' = - SWITCH(USERCULTURE(), - "es-ES", "Movimientos empleados", - "de-DE", "Mitarbeiterposten", - "fr-FR", "Écritures comptable salarié", - "cs-CZ", "Položky zaměstnanců", - "da-DK", "Medarbejderposter", - "de-AT", "Mitarbeiterposten", - "de-CH", "Mitarbeiterposten", - "en-AU", "Employee Ledger Entries", - "en-CA", "Employee Ledger Entries", - "en-GB", "Employee Ledger Entries", - "en-NZ", "Employee Ledger Entries", - "es-MX", "Movimientos empleados", - "fi-FI", "Työntekijätapahtumat", - "fr-BE", "Écritures comptable salarié", - "fr-CA", "Écritures du grand livre des employés", - "fr-CH", "Écritures comptable salarié", - "is-IS", "Fjárhagsfærslur starfsmanns", - "it-CH", "Movimenti contabili dipendente", - "it-IT", "Movimenti contabili dipendente", - "nb-NO", "Ansattposter", - "nl-BE", "Werknemersposten", - "nl-NL", "Werknemersposten", - "sv-SE", "Personaltransaktioner", - "Employee Ledger Entries" - ) - isHidden - lineageTag: 76bc227a-9ee5-4ef6-bbd0-cc0a22d6fbe5 - - measure 'Sustainability Ledger Entries Label' = - SWITCH(USERCULTURE(), - "es-ES", "Movimientos de sostenibilidad", - "de-DE", "Nachhaltigkeitsposten", - "fr-FR", "Écritures comptables durabilité", - "cs-CZ", "Položky udržitelnosti", - "da-DK", "Finansposter for bæredygtighed", - "de-AT", "Nachhaltigkeitsposten", - "de-CH", "Nachhaltigkeitsposten", - "en-AU", "Sustainability Ledger Entries", - "en-CA", "Sustainability Ledger Entries", - "en-GB", "Sustainability Ledger Entries", - "en-NZ", "Sustainability Ledger Entries", - "es-MX", "Movimientos de sustentabilidad", - "fi-FI", "Vastuullisuustapahtumat", - "fr-BE", "Écritures comptables durabilité", - "fr-CA", "Écritures relatives au développement durable", - "fr-CH", "Écritures comptables durabilité", - "is-IS", "Fjárhagsfærslur fyrir sjálfbærni", - "it-CH", "Movimenti contabili sostenibilità", - "it-IT", "Movimenti contabili sostenibilità", - "nb-NO", "Bærekraftposter", - "nl-BE", "Duurzaamheidsposten", - "nl-NL", "Duurzaamheidsposten", - "sv-SE", "Hållbarhetstransaktioner", - "Sustainability Ledger Entries" - ) - isHidden - lineageTag: e92439f0-1160-4d4d-b6a4-bdcd867c43c2 - - measure 'Sustainability Ledger Entries Drillthrough Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis detallado de movimientos de sostenibilidad", - "de-DE", "Nachhaltigkeitsposten-Drillthrough", - "fr-FR", "Extraction Écritures comptables durabilité", - "cs-CZ", "Podrobné procházení položek udržitelnosti", - "da-DK", "Detaljeudledning af finansposter for bæredygtighed", - "de-AT", "Nachhaltigkeitsposten-Drillthrough", - "de-CH", "Nachhaltigkeitsposten-Drillthrough", - "en-AU", "Sustainability Ledger Entries Drillthrough", - "en-CA", "Sustainability Ledger Entries Drillthrough", - "en-GB", "Sustainability Ledger Entries Drillthrough", - "en-NZ", "Sustainability Ledger Entries Drillthrough", - "es-MX", "Análisis detallado de movimientos de sustentabilidad", - "fi-FI", "Vastuullisuustapahtumiin porautuminen", - "fr-BE", "Extraction Écritures comptables durabilité", - "fr-CA", "Écritures relatives au développement durable", - "fr-CH", "Extraction Écritures comptables durabilité", - "is-IS", "Köfun í fjárhagsfærslur fyrir sjálfbærni", - "it-CH", "Drill-through movimenti contabili sostenibilità", - "it-IT", "Drill-through movimenti contabili sostenibilità", - "nb-NO", "Gjennomgang av bærekraftposter", - "nl-BE", "Detailanalyse duurzaamheidsposten", - "nl-NL", "Detailanalyse duurzaamheidsposten", - "sv-SE", "Detaljerad analys av hållbarhetstransaktioner", - "Sustainability Ledger Entries Drillthrough" - ) - isHidden - lineageTag: 975fbee2-7094-46b6-8e5e-8d01fc6fe203 - - measure 'Employee Ledger Entries Drillthrough Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis detallado de movimientos de empleados", - "de-DE", "Mitarbeiter-Hauptbuchposten-Drillthrough", - "fr-FR", "Extraction écritures comptables salarié", - "cs-CZ", "Podrobné procházení položek zaměstnanců", - "da-DK", "Detaljeudledning af medarbejderfinansposter", - "de-AT", "Mitarbeiter-Hauptbuchposten-Drillthrough", - "de-CH", "Mitarbeiter-Hauptbuchposten-Drillthrough", - "en-AU", "Employee Ledger Entries Drillthrough", - "en-CA", "Employee Ledger Entries Drillthrough", - "en-GB", "Employee Ledger Entries Drillthrough", - "en-NZ", "Employee Ledger Entries Drillthrough", - "es-MX", "Análisis detallado de movimientos de empleados", - "fi-FI", "Työntekijätapahtumiin porautuminen", - "fr-BE", "Extraction écritures comptables salarié", - "fr-CA", "Exploration des écritures du grand livre des employés", - "fr-CH", "Extraction écritures comptables salarié", - "is-IS", "Köfun í fjárhagsfærslur starfsmanns", - "it-CH", "Drill-through movimenti contabili dipendente", - "it-IT", "Drill-through movimenti contabili dipendente", - "nb-NO", "Gjennomgang av ansattposter", - "nl-BE", "Detailanalyse werknemersposten", - "nl-NL", "Detailanalyse werknemersposten", - "sv-SE", "Detaljerad analys av redovisningstransaktioner för personal", - "Employee Ledger Entries Drillthrough" - ) - isHidden - lineageTag: 49c60c46-0db2-4187-96f6-3198848206ce - - measure 'Sustainability Overview Label' = - SWITCH(USERCULTURE(), - "es-ES", "Información general de sostenibilidad", - "de-DE", "Nachhaltigkeitsübersicht", - "fr-FR", "Vue d’ensemble durabilité", - "cs-CZ", "Přehled udržitelnosti", - "da-DK", "Bæredygtighedsoversigt", - "de-AT", "Nachhaltigkeitsübersicht", - "de-CH", "Nachhaltigkeitsübersicht", - "en-AU", "Sustainability Overview", - "en-CA", "Sustainability Overview", - "en-GB", "Sustainability Overview", - "en-NZ", "Sustainability Overview", - "es-MX", "Información general de sustentabilidad", - "fi-FI", "Vastuullisuus – Yleiskuvaus", - "fr-BE", "Vue d’ensemble durabilité", - "fr-CA", "Vue d’ensemble durabilité", - "fr-CH", "Vue d’ensemble durabilité", - "is-IS", "Yfirlit yfir sjálfbærni", - "it-CH", "Panoramica sostenibilità", - "it-IT", "Panoramica sostenibilità", - "nb-NO", "Oversikt over bærekraft", - "nl-BE", "Duurzaamheidsoverzicht", - "nl-NL", "Duurzaamheidsoverzicht", - "sv-SE", "Hållbarhetsöversikt", - "Sustainability Overview" - ) - isHidden - lineageTag: d3bd6d03-774d-4c7f-babd-ef6f210d9c57 - - measure 'Sustainability Analytics Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis de sostenibilidad", - "de-DE", "Nachhaltigkeitsanalysen", - "fr-FR", "Analyse de durabilité", - "cs-CZ", "Analýzy udržitelnosti", - "da-DK", "Bæredygtighedsanalyse", - "de-AT", "Nachhaltigkeitsanalysen", - "de-CH", "Nachhaltigkeitsanalysen", - "en-AU", "Sustainability Analytics", - "en-CA", "Sustainability Analytics", - "en-GB", "Sustainability Analytics", - "en-NZ", "Sustainability Analytics", - "es-MX", "Análisis de sustentabilidad", - "fi-FI", "Vastuullisuusanalytiikka", - "fr-BE", "Analyse de durabilité", - "fr-CA", "Analyse de durabilité", - "fr-CH", "Analyse de durabilité", - "is-IS", "Sjálfbærnigreining", - "it-CH", "Analisi sostenibilità", - "it-IT", "Analisi sostenibilità", - "nb-NO", "Bærekraftsanalyse", - "nl-BE", "Duurzaamheidsanalyses", - "nl-NL", "Duurzaamheidsanalyses", - "sv-SE", "Hållbarhetsanalys", - "Sustainability Analytics" - ) - isHidden - lineageTag: 18d14acd-1c9f-400a-bc73-2ed3ea01b46d - - measure 'CO2e Emissions by Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e por mes", - "de-DE", "CO2e-Emissionen pro Monat", - "fr-FR", "Émissions de CO2e par mois", - "cs-CZ", "Emise CO2e podle měsíce", - "da-DK", "CO2e-udledninger pr. måned", - "de-AT", "CO2e-Emissionen pro Monat", - "de-CH", "CO2e-Emissionen pro Monat", - "en-AU", "CO2e Emissions by Month", - "en-CA", "CO2e Emissions by Month", - "en-GB", "CO2e Emissions by Month", - "en-NZ", "CO2e Emissions by Month", - "es-MX", "Emisiones de CO2e por mes", - "fi-FI", "CO2e-päästöt kuukausittain", - "fr-BE", "Émissions de CO2e par mois", - "fr-CA", "Émissions de CO2e par mois", - "fr-CH", "Émissions de CO2e par mois", - "is-IS", "Losun CO2e eftir mánuði", - "it-CH", "Emissioni CO2e per mese", - "it-IT", "Emissioni CO2e per mese", - "nb-NO", "CO2e-utslipp etter måned", - "nl-BE", "CO2e-uitstoot per maand", - "nl-NL", "CO2e-uitstoot per maand", - "sv-SE", "CO2e-utsläpp per månad", - "CO2e Emissions by Month" - ) - isHidden - lineageTag: aedacb5a-e879-4dcc-97f8-25264ae7a4ab - - measure 'Scopes 1 and 2 Analysis by Categories Per Year Label' = - SWITCH(USERCULTURE(), - "es-ES", "Análisis de los ámbitos 1 y 2 por categorías por año", - "de-DE", "Bereich-1- und Bereich-2-Analyse nach Kategorien pro Jahr", - "fr-FR", "Analyse des champs 1 et 2 par catégories par an", - "cs-CZ", "Analýza rozsahů 1 a 2 podle kategorií za rok", - "da-DK", "Omfang 1 og 2 Analyse efter kategorier pr. år", - "de-AT", "Bereich-1- und Bereich-2-Analyse nach Kategorien pro Jahr", - "de-CH", "Bereich-1- und Bereich-2-Analyse nach Kategorien pro Jahr", - "en-AU", "Scopes 1 and 2 Analysis by Categories Per Year", - "en-CA", "Scopes 1 and 2 Analysis by Categories Per Year", - "en-GB", "Scopes 1 and 2 Analysis by Categories Per Year", - "en-NZ", "Scopes 1 and 2 Analysis by Categories Per Year", - "es-MX", "Análisis de los ámbitos 1 y 2 por categorías por año", - "fi-FI", "Laajuuksien 1 ja 2 analyysi luokittain per vuosi", - "fr-BE", "Analyse des champs 1 et 2 par catégories par an", - "fr-CA", "Analyse des champs 1 et 2 par catégories par an", - "fr-CH", "Analyse des champs 1 et 2 par catégories par an", - "is-IS", "Umfang 1 og 2 Greining eftir flokkum eftir ári", - "it-CH", "Analisi ambiti 1 e 2 per categorie per anno", - "it-IT", "Analisi ambiti 1 e 2 per categorie per anno", - "nb-NO", "Analyse av område 1 og 2 etter kategorier per år", - "nl-BE", "Analyse per categorie per jaar bereik 1 en 2", - "nl-NL", "Analyse per categorie per jaar bereik 1 en 2", - "sv-SE", "Analys av kategorierna scope 1 och 2 per kategori och år", - "Scopes 1 and 2 Analysis by Categories Per Year" - ) - isHidden - lineageTag: 389e4f5e-27f9-421f-926d-c0de60f040c3 - - measure 'CO2e Emissions by Department Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e por departamento", - "de-DE", "CO2e-Emissionen nach Abteilungen", - "fr-FR", "Émissions de CO2e par département", - "cs-CZ", "Emise CO2e podle oddělení", - "da-DK", "CO2e-udledninger efter afdeling", - "de-AT", "CO2e-Emissionen nach Abteilungen", - "de-CH", "CO2e-Emissionen nach Abteilungen", - "en-AU", "CO2e Emissions by Department", - "en-CA", "CO2e Emissions by Department", - "en-GB", "CO2e Emissions by Department", - "en-NZ", "CO2e Emissions by Department", - "es-MX", "Emisiones de CO2e por departamento", - "fi-FI", "CO2e-päästöt osastoittain", - "fr-BE", "Émissions de CO2e par département", - "fr-CA", "Émissions de CO2e par département", - "fr-CH", "Émissions de CO2e par département", - "is-IS", "Losun CO2e eftir deild", - "it-CH", "Emissioni CO2e per reparto", - "it-IT", "Emissioni CO2e per reparto", - "nb-NO", "CO2e-utslipp etter avdeling", - "nl-BE", "CO2e-uitstoot per afdeling", - "nl-NL", "CO2e-uitstoot per afdeling", - "sv-SE", "CO2e-utsläpp per avdelning", - "CO2e Emissions by Department" - ) - isHidden - lineageTag: 031dee52-b2ba-43c9-9689-72e8d0a10fcc - - measure 'Journey to Net-Zero Carbon Label' = - SWITCH(USERCULTURE(), - "es-ES", "Recorrido hacia el carbono cero neto", - "de-DE", "Der Weg zur CO2-Neutralität", - "fr-FR", "Parcours vers le zéro carbone net", - "cs-CZ", "Cesta k nulovým emisím uhlíku", - "da-DK", "Rejsen til netto-nul CO2", - "de-AT", "Der Weg zur CO2-Neutralität", - "de-CH", "Der Weg zur CO2-Neutralität", - "en-AU", "Journey to Net-Zero Carbon", - "en-CA", "Journey to Net-Zero Carbon", - "en-GB", "Journey to Net-Zero Carbon", - "en-NZ", "Journey to Net-Zero Carbon", - "es-MX", "Recorrido hacia el carbono cero neto", - "fi-FI", "Matka kohti hiilineutraaliutta", - "fr-BE", "Parcours vers le zéro carbone net", - "fr-CA", "Parcours vers le zéro carbone net", - "fr-CH", "Parcours vers le zéro carbone net", - "is-IS", "Ferð til nettólosunar kolefnis", - "it-CH", "Percorso verso l'azzeramento delle emissioni nette di carbonio", - "it-IT", "Percorso verso l'azzeramento delle emissioni nette di carbonio", - "nb-NO", "Reisen til nettonull karbon", - "nl-BE", "Reis naar Netto-Nul-Koolstof", - "nl-NL", "Reis naar Netto-Nul-Koolstof", - "sv-SE", "Resan mot netto-noll koldioxidutsläpp", - "Journey to Net-Zero Carbon" - ) - isHidden - lineageTag: 429c7d14-a6f8-4421-bae5-6e58597ce9a7 - - measure 'CO2e Emissions by Business Group Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e por grupo empresarial", - "de-DE", "CO2e-Emissionen nach Unternehmensgruppe", - "fr-FR", "Émissions de CO2e par marché", - "cs-CZ", "Emise CO2e podle obchodní skupiny", - "da-DK", "CO2e-udledninger efter virksomhedsgruppe", - "de-AT", "CO2e-Emissionen nach Unternehmensgruppe", - "de-CH", "CO2e-Emissionen nach Unternehmensgruppe", - "en-AU", "CO2e Emissions by Business Group", - "en-CA", "CO2e Emissions by Business Group", - "en-GB", "CO2e Emissions by Business Group", - "en-NZ", "CO2e Emissions by Business Group", - "es-MX", "Emisiones de CO2e por grupo empresarial", - "fi-FI", "CO2e-päästöt liiketoimintaryhmittäin", - "fr-BE", "Émissions de CO2e par marché", - "fr-CA", "Émissions de CO2e par marché", - "fr-CH", "Émissions de CO2e par marché", - "is-IS", "Losun CO2e eftir fyrirtækjahópi", - "it-CH", "Emissioni CO2e per categoria business", - "it-IT", "Emissioni CO2e per categoria business", - "nb-NO", "CO2e-utslipp etter forretningsgruppe", - "nl-BE", "CO2e-uitstoot per bedrijfsgroep", - "nl-NL", "CO2e-uitstoot per bedrijfsgroep", - "sv-SE", "CO2e-utsläpp per affärsgrupp", - "CO2e Emissions by Business Group" - ) - isHidden - lineageTag: 09453e8f-8a96-40a8-8aab-f4bc99d6079e - - measure 'Renewable Energy Usage Label' = - SWITCH(USERCULTURE(), - "es-ES", "Uso de energías Renovables", - "de-DE", "Nutzung erneuerbarer Energien", - "fr-FR", "Activité des énergies renouvelables", - "cs-CZ", "Využití obnovitelné energie", - "da-DK", "Forbrug af vedvarende energi", - "de-AT", "Nutzung erneuerbarer Energien", - "de-CH", "Nutzung erneuerbarer Energien", - "en-AU", "Renewable Energy Usage", - "en-CA", "Renewable Energy Usage", - "en-GB", "Renewable Energy Usage", - "en-NZ", "Renewable Energy Usage", - "es-MX", "Uso de energías Renovables", - "fi-FI", "Uusiutuvan energian käyttö", - "fr-BE", "Activité des énergies renouvelables", - "fr-CA", "Utilisation d’énergies renouvelables", - "fr-CH", "Activité des énergies renouvelables", - "is-IS", "Notkun endurnýjanlegrar orku", - "it-CH", "Utilizzo energie rinnovabili", - "it-IT", "Utilizzo energie rinnovabili", - "nb-NO", "Bruk av fornybar energi", - "nl-BE", "Gebruik hernieuwbare energie", - "nl-NL", "Gebruik hernieuwbare energie", - "sv-SE", "Användning av förnybar energi", - "Renewable Energy Usage" - ) - isHidden - lineageTag: bd45299c-16e4-4dc4-b8df-46460d7d639a - - measure 'CO2e Emissions Over Time Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e a lo largo del tiempo", - "de-DE", "CO2e-Emissionen im Zeitverlauf", - "fr-FR", "Émissions de CO2e dans le temps", - "cs-CZ", "Emise CO2e v průběhu času", - "da-DK", "CO2e-udledninger over tid", - "de-AT", "CO2e-Emissionen im Zeitverlauf", - "de-CH", "CO2e-Emissionen im Zeitverlauf", - "en-AU", "CO2e Emissions Over Time", - "en-CA", "CO2e Emissions Over Time", - "en-GB", "CO2e Emissions Over Time", - "en-NZ", "CO2e Emissions Over Time", - "es-MX", "Emisiones de CO2e a lo largo del tiempo", - "fi-FI", "CO2e-päästöt ajan myötä", - "fr-BE", "Émissions de CO2e dans le temps", - "fr-CA", "Émissions de CO2e dans le temps", - "fr-CH", "Émissions de CO2e dans le temps", - "is-IS", "Losun CO2e yfir tíma", - "it-CH", "Emissioni CO2e nel tempo", - "it-IT", "Emissioni CO2e nel tempo", - "nb-NO", "CO2e-utslipp over tid", - "nl-BE", "CO2e-uitstoot in loop van tijd", - "nl-NL", "CO2e-uitstoot in loop van tijd", - "sv-SE", "CO2e-utsläpp över tid", - "CO2e Emissions Over Time" - ) - isHidden - lineageTag: 44d0e701-7844-43e5-bfa0-961f7b2a31a0 - - measure 'CO2e Smart Review Label' = - SWITCH(USERCULTURE(), - "es-ES", "Revisión inteligente de CO2e", - "de-DE", "Intelligente CO2e-Prüfung", - "fr-FR", "CO2e Smart Review", - "cs-CZ", "Chytrá kontrola CO2e", - "da-DK", "CO2e Smart anmeldelse", - "de-AT", "Intelligente CO2e-Prüfung", - "de-CH", "Intelligente CO2e-Prüfung", - "en-AU", "CO2e Smart Review", - "en-CA", "CO2e Smart Review", - "en-GB", "CO2e Smart Review", - "en-NZ", "CO2e Smart Review", - "es-MX", "Revisión inteligente de CO2e", - "fi-FI", "Älykäs CO2e-arviointi", - "fr-BE", "CO2e Smart Review", - "fr-CA", "CO2e Smart Review", - "fr-CH", "CO2e Smart Review", - "is-IS", "Snjallúttekt CO2e", - "it-CH", "Recensione intelligente CO2e", - "it-IT", "Recensione intelligente CO2e", - "nb-NO", "Smart gjennomgang av CO2e", - "nl-BE", "Slimme beoordeling CO2e", - "nl-NL", "Slimme beoordeling CO2e", - "sv-SE", "Smart granskning av CO2e", - "CO2e Smart Review" - ) - isHidden - lineageTag: e38ec7fb-ceb3-43c8-8c76-9d747e55b510 - - measure 'CO2e Emissions by Global Dimension One Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e por dimensión global uno", - "de-DE", "CO2e-Emissionen nach globaler Dimension eins", - "fr-FR", "Émissions de CO2e par axe analytique principal un", - "cs-CZ", "Emise CO2e podle globální dimenze jedna", - "da-DK", "CO2e-emissioner efter global dimension et", - "de-AT", "CO2e-Emissionen nach globaler Dimension eins", - "de-CH", "CO2e-Emissionen nach globaler Dimension eins", - "en-AU", "CO2e Emissions by Global Dimension One", - "en-CA", "CO2e Emissions by Global Dimension One", - "en-GB", "CO2e Emissions by Global Dimension One", - "en-NZ", "CO2e Emissions by Global Dimension One", - "es-MX", "Emisiones de CO2e por dimensión global uno", - "fi-FI", "CO2e-päästöt yleisen dimension yksi mukaan", - "fr-BE", "Émissions de CO2e par axe analytique principal un", - "fr-CA", "Émissions de CO2 par dimension principale 1", - "fr-CH", "Émissions de CO2e par axe analytique principal un", - "is-IS", "Losun CO2e frá altækri vídd eitt", - "it-CH", "Emissioni CO2e per dimensione globale uno", - "it-IT", "Emissioni CO2e per dimensione globale uno", - "nb-NO", "CO2e-utslipp etter global dimensjon én", - "nl-BE", "CO2e-uitstoot per globale dimensie één", - "nl-NL", "CO2e-uitstoot per globale dimensie één", - "sv-SE", "CO2e-utsläpp per global dimension ett", - "CO2e Emissions by Global Dimension One" - ) - isHidden - lineageTag: 8e16bdd3-ed1a-4c02-a296-7ed348a3c942 - - measure 'CO2e Emissions by Global Dimension Two Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones de CO2e por dimensión global dos", - "de-DE", "CO2e-Emissionen nach globaler Dimension zwei", - "fr-FR", "Émissions de CO2e par axe analytique principal deux", - "cs-CZ", "Emise CO2e podle globální dimenze dvě", - "da-DK", "CO2e-emissioner efter global dimension to", - "de-AT", "CO2e-Emissionen nach globaler Dimension zwei", - "de-CH", "CO2e-Emissionen nach globaler Dimension zwei", - "en-AU", "CO2e Emissions by Global Dimension Two", - "en-CA", "CO2e Emissions by Global Dimension Two", - "en-GB", "CO2e Emissions by Global Dimension Two", - "en-NZ", "CO2e Emissions by Global Dimension Two", - "es-MX", "Emisiones de CO2e por dimensión global dos", - "fi-FI", "CO2e-päästöt yleisen dimension kaksi mukaan", - "fr-BE", "Émissions de CO2e par axe analytique principal deux", - "fr-CA", "Émissions de CO2 par dimension principale 2", - "fr-CH", "Émissions de CO2e par axe analytique principal deux", - "is-IS", "Losun CO2e frá altækri vídd tvö", - "it-CH", "Emissioni CO2e per dimensione globale due", - "it-IT", "Emissioni CO2e per dimensione globale due", - "nb-NO", "CO2e-utslipp etter global dimensjon to", - "nl-BE", "CO2e-uitstoot per globale dimensie twee", - "nl-NL", "CO2e-uitstoot per globale dimensie twee", - "sv-SE", "CO2e-utsläpp per global dimension två", - "CO2e Emissions by Global Dimension Two" - ) - isHidden - lineageTag: a6e904ef-b83e-4dde-b25d-e1b56188b607 - - measure 'CO2e Equivalent Emissions by Month Label' = - SWITCH(USERCULTURE(), - "es-ES", "Emisiones equivalentes de CO2e por mes", - "de-DE", "CO2e-Äquivalent Emissionen pro Monat", - "fr-FR", "Émissions d’équivalent CO2e par mois", - "cs-CZ", "Ekvivalentní emise CO2e podle měsíce", - "da-DK", "CO2e-ækvivalente udledninger pr. måned", - "de-AT", "CO2e-Äquivalent Emissionen pro Monat", - "de-CH", "CO2e-Äquivalent Emissionen pro Monat", - "en-AU", "CO2e Equivalent Emissions by Month", - "en-CA", "CO2e Equivalent Emissions by Month", - "en-GB", "CO2e Equivalent Emissions by Month", - "en-NZ", "CO2e Equivalent Emissions by Month", - "es-MX", "Emisiones equivalentes de CO2e por mes", - "fi-FI", "CO2e-ekvivalenttipäästöt kuukausittain", - "fr-BE", "Émissions d’équivalent CO2e par mois", - "fr-CA", "Émissions d’équivalent CO2e par mois", - "fr-CH", "Émissions d’équivalent CO2e par mois", - "is-IS", "Jafngild losun CO2e eftir mánuði", - "it-CH", "Emissioni CO2e equivalente per mese", - "it-IT", "Emissioni CO2e equivalente per mese", - "nb-NO", "CO2e-ekvivalentutslipp etter måned", - "nl-BE", "CO2e-equivalente uitstoot per maand", - "nl-NL", "CO2e-equivalente uitstoot per maand", - "sv-SE", "Utsläpp av CO2e-ekvivalenter per månad", - "CO2e Equivalent Emissions by Month" - ) - isHidden - lineageTag: df571b02-f7d2-4a39-a7e4-7e225e52d4f9 - - measure 'Company Name Label' = - SWITCH(USERCULTURE(), - "es-ES", "Nombre empresa", - "de-DE", "Mandantenname", - "fr-FR", "Nom de la société", - "cs-CZ", "Název společnosti", - "da-DK", "Virksomhedsnavn", - "de-AT", "Mandantenname", - "de-CH", "Mandantenname", - "en-AU", "Company Name", - "en-CA", "Company Name", - "en-GB", "Company Name", - "en-NZ", "Company Name", - "es-MX", "Nombre empresa", - "fi-FI", "Yrityksen nimi", - "fr-BE", "Nom de la société", - "fr-CA", "Nom de la compagnie", - "fr-CH", "Nom de la société", - "is-IS", "Heiti fyrirtækis", - "it-CH", "Nome società", - "it-IT", "Nome società", - "nb-NO", "Selskapsnavn", - "nl-BE", "Bedrijfsnaam", - "nl-NL", "Bedrijfsnaam", - "sv-SE", "Företagsnamn", - "Company Name" - ) - isHidden - lineageTag: dad2b120-4410-42f7-9032-bd23b40a4ec4 - - measure 'Last Refreshed Label' = - SWITCH(USERCULTURE(), - "es-ES", "Última actualización", - "de-DE", "Zuletzt aktualisiert", - "fr-FR", "Dernière actualisation", - "cs-CZ", "Naposledy aktualizováno", - "da-DK", "Sidst opdateret", - "de-AT", "Zuletzt aktualisiert", - "de-CH", "Zuletzt aktualisiert", - "en-AU", "Last Refreshed", - "en-CA", "Last Refreshed", - "en-GB", "Last Refreshed", - "en-NZ", "Last Refreshed", - "es-MX", "Última actualización", - "fi-FI", "Päivitetty viimeksi", - "fr-BE", "Dernière actualisation", - "fr-CA", "Dernière actualisation", - "fr-CH", "Dernière actualisation", - "is-IS", "Síðast uppfært", - "it-CH", "Ultimo aggiornamento", - "it-IT", "Ultimo aggiornamento", - "nb-NO", "Sist oppdatert", - "nl-BE", "Laatst vernieuwd", - "nl-NL", "Laatst vernieuwd", - "sv-SE", "Uppdaterades senast", - "Last Refreshed" - ) - isHidden - lineageTag: da033582-c8f8-4c86-8659-15abdfb7daff - - measure 'Released Employees Label' = - SWITCH(USERCULTURE(), - "es-ES", "Empleados liberados", - "de-DE", "Freigestellte Mitarbeiter", - "fr-FR", "Salariés lancés", - "cs-CZ", "Propuštění zaměstnanci", - "da-DK", "Frigivne medarbejdere", - "de-AT", "Freigestellte Mitarbeiter", - "de-CH", "Freigestellte Mitarbeiter", - "en-AU", "Released Employees", - "en-CA", "Released Employees", - "en-GB", "Released Employees", - "en-NZ", "Released Employees", - "es-MX", "Empleados liberados", - "fi-FI", "Vapautetut työntekijät", - "fr-BE", "Salariés lancés", - "fr-CA", "Raison de l’inactivité des employés", - "fr-CH", "Salariés lancés", - "is-IS", "Losaðir starfsmenn", - "it-CH", "Dipendenti in aspettativa", - "it-IT", "Dipendenti in aspettativa", - "nb-NO", "Frigitte ansatte", - "nl-BE", "Vertrokken werknemers", - "nl-NL", "Vertrokken werknemers", - "sv-SE", "Frisläppta medarbetare", - "Released Employees" - ) - isHidden - lineageTag: da1a2617-6f8c-4d3a-8537-99878e4f2e21 - - measure 'CO2e Decomposition Tree Label' = - SWITCH(USERCULTURE(), - "es-ES", "Árbol de descomposición de CO2e", - "de-DE", "CO2e-Zerlegungsstruktur", - "fr-FR", "Arborescence de décomposition CO2e", - "cs-CZ", "Strom dekompozice CO2e", - "da-DK", "CO2e-dekompositionstræ", - "de-AT", "CO2e-Zerlegungsstruktur", - "de-CH", "CO2e-Zerlegungsstruktur", - "en-AU", "CO2e Decomposition Tree", - "en-CA", "CO2e Decomposition Tree", - "en-GB", "CO2e Decomposition Tree", - "en-NZ", "CO2e Decomposition Tree", - "es-MX", "Árbol de descomposición de CO2e", - "fi-FI", "CO2e-hajautuspuu", - "fr-BE", "Arborescence de décomposition CO2e", - "fr-CA", "Arborescence de décomposition CO2e", - "fr-CH", "Arborescence de décomposition CO2e", - "is-IS", "Niðurbrotstré CO2e", - "it-CH", "Albero di scomposizione CO2e", - "it-IT", "Albero di scomposizione CO2e", - "nb-NO", "CO2e-nedbrytingstre", - "nl-BE", "Ontledingsstructuur CO2e", - "nl-NL", "Ontledingsstructuur CO2e", - "sv-SE", "Nedbrytningsträd för CO2e", - "CO2e Decomposition Tree" - ) - isHidden - lineageTag: a718aa57-e775-474f-a197-e6f8a95111f1 - - measure 'CO2e Key Influences Label' = - SWITCH(USERCULTURE(), - "es-ES", "Influencias clave de CO2e", - "de-DE", "CO2e-Haupteinflüsse", - "fr-FR", "Influences clés CO2e", - "cs-CZ", "Klíčové vlivy CO2e", - "da-DK", "CO2e-nøglepåvirkninger", - "de-AT", "CO2e-Haupteinflüsse", - "de-CH", "CO2e-Haupteinflüsse", - "en-AU", "CO2e Key Influences", - "en-CA", "CO2e Key Influences", - "en-GB", "CO2e Key Influences", - "en-NZ", "CO2e Key Influences", - "es-MX", "Influencias clave de CO2e", - "fi-FI", "Tärkeimmät CO2e-vaikutukset", - "fr-BE", "Influences clés CO2e", - "fr-CA", "Influences clés CO2e", - "fr-CH", "Influences clés CO2e", - "is-IS", "Helstu áhrif CO2e", - "it-CH", "Influenze chiave CO2e", - "it-IT", "Influenze chiave CO2e", - "nb-NO", "CO2e-nøkkelpåvirkninger", - "nl-BE", "Belangrijke invloeden CO2e", - "nl-NL", "Belangrijke invloeden CO2e", - "sv-SE", "Viktiga CO2e-influenser", - "CO2e Key Influences" - ) - isHidden - lineageTag: 25386a0e-7f63-402c-9c5e-5a3e3c883691 - - measure 'Water and Waste Yearly and Daily Change Label' = - SWITCH(USERCULTURE(), - "es-ES", "Cambio anual y diario de agua y residuos", - "de-DE", "Wasser und Abfall – Jährliche und tägliche Veränderung", - "fr-FR", "Changement annuel et quotidien de l’eau et des déchets", - "cs-CZ", "Roční a denní změna vody a odpadu", - "da-DK", "Vand og affald årligt og dagligt skift", - "de-AT", "Wasser und Abfall – Jährliche und tägliche Veränderung", - "de-CH", "Wasser und Abfall – Jährliche und tägliche Veränderung", - "en-AU", "Water and Waste Yearly and Daily Change", - "en-CA", "Water and Waste Yearly and Daily Change", - "en-GB", "Water and Waste Yearly and Daily Change", - "en-NZ", "Water and Waste Yearly and Daily Change", - "es-MX", "Cambio anual y diario de agua y residuos", - "fi-FI", "Veden ja jätteiden vuosittainen ja päivittäinen muutos", - "fr-BE", "Changement annuel et quotidien de l’eau et des déchets", - "fr-CA", "Changement annuel et quotidien de l’eau et des déchets", - "fr-CH", "Changement annuel et quotidien de l’eau et des déchets", - "is-IS", "Árlegar og daglegar breytingar á vatni og úrgangi", - "it-CH", "Variazione annuale e giornaliera acqua e rifiuti", - "it-IT", "Variazione annuale e giornaliera acqua e rifiuti", - "nb-NO", "Vann og avfall, årlig og daglig endring", - "nl-BE", "Jaarlijkse en dagelijkse wijziging van water en afval", - "nl-NL", "Jaarlijkse en dagelijkse wijziging van water en afval", - "sv-SE", "Årlig och daglig förändring för vatten och avfall", - "Water and Waste Yearly and Daily Change" - ) - isHidden - lineageTag: 7f5d9a10-ebb1-4e16-8f23-532f45602d81 - - column unused - isHidden - displayFolder: unused - lineageTag: ad570195-97b6-4cb6-bf6b-75691681b389 - summarizeBy: none - isNameInferred - sourceColumn: [unused] - - annotation SummarizationSetBy = Automatic - - partition Partition = calculated - mode: import - source = DATATABLE("unused", STRING, {{"This is a table automatically generated by Translations Builder"}}) - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Working Days.tmdl b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Working Days.tmdl deleted file mode 100644 index 3067ccccd5..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/definition/tables/Working Days.tmdl +++ /dev/null @@ -1,40 +0,0 @@ -table 'Working Days' - isHidden - lineageTag: 6e283994-c665-41c2-94a5-f8c4fe2359ab - - column FSG_PBI_Day_Number - dataType: int64 - formatString: 0 - lineageTag: 05732f60-7f13-4d09-9542-a0ef6cdf62ff - summarizeBy: sum - sourceColumn: FSG_PBI_Day_Number - - annotation SummarizationSetBy = Automatic - - column id - dataType: string - lineageTag: 5373bbb9-9f16-43ab-9051-afc6af534d1c - summarizeBy: none - sourceColumn: id - - annotation SummarizationSetBy = Automatic - - partition 'Working Days-5fa1ce26-448e-4ad6-a78b-37de9da368a1' = m - mode: import - queryGroup: 'Date Table' - source = - let - Source = Dynamics365BusinessCentral.ApiContentsWithOptions(ENVIRONMENT, COMPANY,API_ENDPOINT, []), - TableData = Source{[Name="workingDays",Signature="table"]}[Data], - #"Removed Columns" = Table.RemoveColumns(TableData,{"ETag"}), - #"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"dayNumber", "FSG_PBI_Day_Number"}}), - #"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"FSG_PBI_Day_Number", Int64.Type}}) - in - #"Changed Type" - - changedProperty = IsHidden - - annotation PBI_ResultType = Table - - annotation PBI_NavigationStepName = Navigation - diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/diagramLayout.json b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/diagramLayout.json deleted file mode 100644 index 9d64486d2b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.SemanticModel/diagramLayout.json +++ /dev/null @@ -1,510 +0,0 @@ -{ - "version": "1.1.0", - "diagrams": [ - { - "ordinal": 0, - "scrollPosition": { - "x": 22006.360441153651, - "y": 0 - }, - "nodes": [ - { - "location": { - "x": 425.06620209059281, - "y": 311.94558240261466 - }, - "nodeIndex": "Dimension Sets", - "nodeLineageTag": "1617752a-65ec-4d0c-b652-07eb46ba12e3", - "size": { - "height": 104, - "width": 254 - }, - "zIndex": 54, - "expandedHeight": 187 - }, - { - "location": { - "x": 13078.1, - "y": 16.572345192592252 - }, - "nodeIndex": "Working Days", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 14 - }, - { - "location": { - "x": 1360.6892857142861, - "y": 855.22859519259237 - }, - "nodeIndex": "Date Ref", - "size": { - "height": 200, - "width": 391.14285714285722 - }, - "zIndex": 6 - }, - { - "location": { - "x": 428.32857142857722, - "y": 453.71520233544936 - }, - "nodeIndex": "Date", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 7, - "expandedHeight": 200 - }, - { - "location": { - "x": 11570.9, - "y": 16.572345192592252 - }, - "nodeIndex": "Date Table Setup", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 1 - }, - { - "location": { - "x": 19854.800056087141, - "y": 54.572345192592252 - }, - "nodeIndex": "Localized Labels", - "size": { - "height": 224, - "width": 234 - }, - "zIndex": 2 - }, - { - "location": { - "x": 23000.902862116265, - "y": 483.90047019259225 - }, - "nodeIndex": "COMPANY", - "nodeLineageTag": "d4a507c0-3b24-4242-a536-0cca34435194", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 788.11931944598007, - "y": 596.57234519259225 - }, - "nodeIndex": "Sustainability Account Category", - "size": { - "height": 187, - "width": 254 - }, - "zIndex": 0 - }, - { - "location": { - "x": 23847.041835472348, - "y": 929.00807778488365 - }, - "nodeIndex": "Sustainability Accounts", - "nodeLineageTag": "816fcc93-a534-482d-bf58-a75c40d24465", - "size": { - "height": 200, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 23711.836660025674, - "y": 385.90047019259225 - }, - "nodeIndex": "Sustainability Ledger Entries", - "nodeLineageTag": "2a0cf939-2176-4b5a-970c-8d0ef8334663", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 24423.153507949777, - "y": 459.68557339753079 - }, - "nodeIndex": "Country/Region", - "nodeLineageTag": "60f5456e-1b5c-4448-9a86-e4c1970e18f3", - "size": { - "height": 152, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 24707.153507949777, - "y": 459.68557339753079 - }, - "nodeIndex": "Responsibility Centre", - "nodeLineageTag": "a8623892-be7f-4115-9213-a5a049ea3eef", - "size": { - "height": 152, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 24991.153507949777, - "y": 385.68557339753079 - }, - "nodeIndex": "Sustainability Goals", - "nodeLineageTag": "da071c77-b29a-499b-a452-91aa43e7f707", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 24149.153507949777, - "y": 405.27066902780842 - }, - "nodeIndex": "Employee Qualifications", - "nodeLineageTag": "0dff38e4-da38-4481-bce4-10332ddefc77", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 23580.770457935083, - "y": 375.25577980740786 - }, - "nodeIndex": "Employee Ledger Entries", - "size": { - "height": 296, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 25418.087305859186, - "y": 385.18557339753079 - }, - "nodeIndex": "Emission Fees", - "nodeLineageTag": "3a19b8b1-42d9-483b-8642-4b80854e6852", - "size": { - "height": 296, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 25212.119262879936, - "y": 170.07457222097139 - }, - "nodeIndex": "Employee Absences", - "nodeLineageTag": "a2fed5db-ebdc-40c8-88e3-9e005cd56347", - "size": { - "height": 272, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 24415.165642633827, - "y": 996.90545476048214 - }, - "nodeIndex": "Sustainability Sub-Account Categories", - "nodeLineageTag": "69811130-f179-45c5-b874-e277cc1470f4", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 24831.281593171891, - "y": 150.9778527626531 - }, - "nodeIndex": "Employees", - "nodeLineageTag": "c080803e-a4fd-4a9e-b16d-0c0d3de20837", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 25986.087305859186, - "y": 481.18557339753079 - }, - "nodeIndex": "ENVIRONMENT", - "nodeLineageTag": "590f8a19-3913-4ba2-b72c-798eaefd2a8d", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0 - }, - { - "location": { - "x": 26270.087305859186, - "y": 383.18557339753079 - }, - "nodeIndex": "Translated Localized Labels", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 0 - } - ], - "name": "All tables", - "zoomValue": 78.481855489842161, - "pinKeyFieldsToTop": false, - "showExtraHeaderInfo": false, - "hideKeyFieldsWhenCollapsed": false, - "tablesLocked": false - }, - { - "ordinal": 1, - "scrollPosition": { - "x": 0, - "y": 238.1442166899204 - }, - "nodes": [ - { - "location": { - "x": 737, - "y": 151 - }, - "nodeIndex": "Sustainability Ledger Entries", - "nodeLineageTag": "2a0cf939-2176-4b5a-970c-8d0ef8334663", - "size": { - "height": 200, - "width": 234 - }, - "zIndex": 2, - "expandedHeight": 300 - }, - { - "location": { - "x": 379, - "y": 122 - }, - "nodeIndex": "Dimension Sets", - "nodeLineageTag": "1617752a-65ec-4d0c-b652-07eb46ba12e3", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 3, - "expandedHeight": 300 - }, - { - "location": { - "x": 375, - "y": 249 - }, - "nodeIndex": "Sustainability Accounts", - "nodeLineageTag": "816fcc93-a534-482d-bf58-a75c40d24465", - "size": { - "height": 213, - "width": 234 - }, - "zIndex": 6 - }, - { - "location": { - "x": 35.480606891312647, - "y": 363.16020229710421 - }, - "nodeIndex": "Sustainability Account Category", - "nodeLineageTag": "c3ba4558-e02a-404b-b4a1-a2903520532a", - "size": { - "height": 300, - "width": 234 - }, - "zIndex": 1 - }, - { - "location": { - "x": 379, - "y": 413 - }, - "nodeIndex": "Date", - "nodeLineageTag": "43a65c75-84cf-4e19-b893-90aa5fbee72b", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 4, - "expandedHeight": 300 - }, - { - "location": { - "x": 373.54037047397151, - "y": 562.23970585860786 - }, - "nodeIndex": "Responsibility Centre", - "nodeLineageTag": "a8623892-be7f-4115-9213-a5a049ea3eef", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 7, - "expandedHeight": 152 - }, - { - "location": { - "x": 373.54037047397156, - "y": 709.97014986792738 - }, - "nodeIndex": "Country/Region", - "nodeLineageTag": "60f5456e-1b5c-4448-9a86-e4c1970e18f3", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 5, - "expandedHeight": 152 - }, - { - "location": { - "x": 30.325480776993587, - "y": 42.936817187256324 - }, - "nodeIndex": "Sustainability Sub-Account Categories", - "nodeLineageTag": "69811130-f179-45c5-b874-e277cc1470f4", - "size": { - "height": 228.62362840713604, - "width": 234 - }, - "zIndex": 8 - } - ], - "name": "Sustainability Ledger Entries", - "zoomValue": 112.11693641406029, - "pinKeyFieldsToTop": false, - "showExtraHeaderInfo": false, - "hideKeyFieldsWhenCollapsed": false, - "tablesLocked": false - }, - { - "ordinal": 2, - "scrollPosition": { - "x": 0, - "y": 0 - }, - "nodes": [ - { - "location": { - "x": 73, - "y": 141 - }, - "nodeIndex": "Employee Qualifications", - "nodeLineageTag": "0dff38e4-da38-4481-bce4-10332ddefc77", - "size": { - "height": 176, - "width": 234 - }, - "zIndex": 1 - }, - { - "location": { - "x": 737, - "y": 195 - }, - "nodeIndex": "Employee Ledger Entries", - "nodeLineageTag": "efc44628-dbc3-4b0a-a873-6e698c2b747f", - "size": { - "height": 296, - "width": 234 - }, - "zIndex": 5 - }, - { - "location": { - "x": 400, - "y": 139 - }, - "nodeIndex": "Date", - "nodeLineageTag": "43a65c75-84cf-4e19-b893-90aa5fbee72b", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 2, - "expandedHeight": 300 - }, - { - "location": { - "x": 394, - "y": 388 - }, - "nodeIndex": "Dimension Sets", - "nodeLineageTag": "1617752a-65ec-4d0c-b652-07eb46ba12e3", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 3, - "expandedHeight": 300 - }, - { - "location": { - "x": 393, - "y": 263 - }, - "nodeIndex": "Employees", - "nodeLineageTag": "c080803e-a4fd-4a9e-b16d-0c0d3de20837", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 4, - "expandedHeight": 300 - }, - { - "location": { - "x": 74, - "y": 370 - }, - "nodeIndex": "Employee Absences", - "nodeLineageTag": "a2fed5db-ebdc-40c8-88e3-9e005cd56347", - "size": { - "height": 104, - "width": 234 - }, - "zIndex": 0, - "expandedHeight": 296 - } - ], - "name": "Employees", - "zoomValue": 100, - "pinKeyFieldsToTop": false, - "showExtraHeaderInfo": false, - "hideKeyFieldsWhenCollapsed": false, - "tablesLocked": false - } - ], - "selectedDiagram": "All tables", - "defaultDiagram": "All tables" -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.pbip b/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.pbip deleted file mode 100644 index f656cd61ba..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Sustainability app/Sustainability app.pbip +++ /dev/null @@ -1,14 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/fabric/pbip/pbipProperties/1.0.0/schema.json", - "version": "1.0", - "artifacts": [ - { - "report": { - "path": "Sustainability app.Report" - } - } - ], - "settings": { - "enableAutoRecovery": true - } -} \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/LocProject.json b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/LocProject.json index 926074bcce..3e904d9716 100644 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/LocProject.json +++ b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/LocProject.json @@ -6,12 +6,6 @@ "_LanguageSet.comment": "Find the details at https://dev.azure.com/ceapex/CEINTL/_git/SWSys-Build-XLoc?path=/src/OneBranchPackages/Localization.Languages/Localization.Languages.props", "LocItems": [ { - "SourceFile": "src\\Apps\\W1\\PowerBIReports\\Power BI Files\\Translations\\Sustainability app\\SustainabilityApp.en-US.resx", - "OutputPath": "src\\Apps\\W1\\PowerBIReports\\Power BI Files\\Translations\\Sustainability app\\SustainabilityApp.{Lang}.resx", - "Languages": "cs-CZ;da-DK;de-AT;de-CH;de-DE;en-AU;en-CA;en-GB;en-NZ;es-ES;es-MX;fi-FI;fr-BE;fr-CA;fr-CH;fr-FR;is-IS;it-CH;it-IT;nb-NO;nl-BE;nl-NL;sv-SE", - "CopyOption": "UsePlaceholders" - }, - { "SourceFile": "src\\Apps\\W1\\PowerBIReports\\Power BI Files\\Translations\\Sales app\\SalesApp.en-US.resx", "OutputPath": "src\\Apps\\W1\\PowerBIReports\\Power BI Files\\Translations\\Sales app\\SalesApp.{Lang}.resx", "Languages": "cs-CZ;da-DK;de-AT;de-CH;de-DE;en-AU;en-CA;en-GB;en-NZ;es-ES;es-MX;fi-FI;fr-BE;fr-CA;fr-CH;fr-FR;is-IS;it-CH;it-IT;nb-NO;nl-BE;nl-NL;sv-SE", diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.cs-CZ.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.cs-CZ.resx deleted file mode 100644 index af5628b569..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.cs-CZ.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Kategorie finančního účtu - table [table.Name] - - - Popis kategorie finančního účtů - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Kód kategorie účtu udržitelnosti - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Rozsah emisí kategorie účtu udržitelnosti - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Sady dimenzí - table [table.Name] - - - Globální dimenze 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Globální dimenze 2 - table [Dimension Sets] column [Global Dimension 2] - - - Zkratka dimenze 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Zkratka dimenze 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Zkratka dimenze 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Zkratka dimenze 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Zkratka dimenze 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Zkratka dimenze 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - ODDĚLENÍ - table [Dimension Sets] column [DEPARTMENT] - - - Název oddělení - table [Dimension Sets] column [Department Name] - - - SKUPINAODBĚRATELŮ - table [Dimension Sets] column [CUSTOMERGROUP] - - - Název skupiny odběratelů - table [Dimension Sets] column [Customer Group Name] - - - OBLAST - table [Dimension Sets] column [AREA] - - - Název oblasti - table [Dimension Sets] column [Area Name] - - - OBCHODNÍSKUPINA - table [Dimension Sets] column [BUSINESSGROUP] - - - Název obchodní skupiny - table [Dimension Sets] column [Business Group Name] - - - PRODEJNÍ KAMPAŇ - table [Dimension Sets] column [SALESCAMPAIGN] - - - Název prodejní kampaně - table [Dimension Sets] column [Sales campaign Name] - - - PRODEJCE - table [Dimension Sets] column [SALESPERSON] - - - Jméno prodejce - table [Dimension Sets] column [Salesperson Name] - - - Datum - table [table.Name] - - - Den v týdnu - table [Date] column [Week Day] - - - Typ dne - table [Date] column [Day Type] - - - Kalendářní rok - table [Date] column [Calendar Year] - - - Kalendářní kvartál - table [Date] column [Calendar Quarter] - - - Rok kalendářního kvartálu - table [Date] column [Calendar Quarter Year] - - - Kalendářní měsíc - table [Date] column [Calendar Month] - - - Kalendářní měsíc v roce - table [Date] column [Calendar Month Year] - - - Kalendářní týden - table [Date] column [Calendar Week] - - - Kalendářní týden a rok - table [Date] column [Calendar Week Year] - - - Relativní pozice kalendářního týdne - table [Date] column [Calendar RelativeWeekPos] - - - Relativní pozice kalendářního měsíce - table [Date] column [Calendar RelativeMonthPos] - - - Relativní pozice kalendářního kvartálu - table [Date] column [Calendar RelativeQuarterPos] - - - Relativní pozice kalendářního roku - table [Date] column [Calendar RelativeYearPos] - - - Začátek kalendářního měsíce - table [Date] column [Calendar StartOfMonth] - - - Konec kalendářního měsíce - table [Date] column [Calendar EndOfMonth] - - - Začátek kalendářního kvartálu - table [Date] column [Calendar StartOfQuarter] - - - Konec kalendářního kvartálu - table [Date] column [Calendar EndOfQuarter] - - - Začátek kalendářního roku - table [Date] column [Calendar StartOfYear] - - - Konec kalendářního roku - table [Date] column [Calendar EndOfYear] - - - Kalendářní dny v měsíci - table [Date] column [Calendar MonthDays] - - - Dny kalendářního kvartálu - table [Date] column [Calendar QuarterDays] - - - Dny kalendářního roku - table [Date] column [Calendar YearDays] - - - Číslo dne v kalendářním měsíci - table [Date] column [Calendar DayOfMonthNumber] - - - Číslo dne v kalendářním kvartálu - table [Date] column [Calendar DayOfQuarterNumber] - - - Číslo dne v kalendářním roce - table [Date] column [Calendar DayOfYearNumber] - - - Datum v předchozím kalendářním týdnu - table [Date] column [Calendar DatePreviousWeek] - - - Datum v předchozím kalendářním měsíci - table [Date] column [Calendar DatePreviousMonth] - - - Datum v předchozím kalendářním kvartálu - table [Date] column [Calendar DatePreviousQuarter] - - - Datum v předchozím kalendářním roce - table [Date] column [Calendar DatePreviousYear] - - - Fiskální rok - table [Date] column [Fiscal Year] - - - Fiskální kvartál - table [Date] column [Fiscal Quarter] - - - FIskální rok kvartálu - table [Date] column [Fiscal Quarter Year] - - - Fiskální měsíc - table [Date] column [Fiscal Month] - - - FIskální rok měsíce - table [Date] column [Fiscal Month Year] - - - Fiskální týden - table [Date] column [Fiscal Week] - - - Fiskální týden a rok - table [Date] column [Fiscal Week Year] - - - Relativní pozice fiskálního týdne - table [Date] column [Fiscal RelativeWeekPos] - - - Relativní pozice fiskálního měsíce - table [Date] column [Fiscal RelativeMonthPos] - - - Relativní pozice fiskálního kvartálu - table [Date] column [Fiscal RelativeQuarterPos] - - - Relativní pozice fiskálního roku - table [Date] column [Fiscal RelativeYearPos] - - - Začátek fiskálního měsíce - table [Date] column [Fiscal StartOfMonth] - - - Konec fiskálního měsíce - table [Date] column [Fiscal EndOfMonth] - - - Začátek fiskálního kvartálu - table [Date] column [Fiscal StartOfQuarter] - - - Konec fiskálního kvartálu - table [Date] column [Fiscal EndOfQuarter] - - - Začátek fiskálního roku - table [Date] column [Fiscal StartOfYear] - - - Konec fiskálního roku - table [Date] column [Fiscal EndOfYear] - - - Dny fiskálního měsíce - table [Date] column [Fiscal MonthDays] - - - Dny fiskálního kvartálu - table [Date] column [Fiscal QuarterDays] - - - Dny fiskálního roku - table [Date] column [Fiscal YearDays] - - - Číslo dne ve fiskálním měsíci - table [Date] column [Fiscal DayOfMonthNumber] - - - Číslo dne ve fiskálním kvartálu - table [Date] column [Fiscal DayOfQuarterNumber] - - - Číslo dne ve fiskálním roce - table [Date] column [Fiscal DayOfYearNumber] - - - Datum v předchozím fiskálním týdnu - table [Date] column [Fiscal DatePreviousWeek] - - - Datum v předchozím fiskálním měsíci - table [Date] column [Fiscal DatePreviousMonth] - - - Datum v předchozím fiskálním kvartálu - table [Date] column [Fiscal DatePreviousQuarter] - - - Datum v předchozím fiskálním roce - table [Date] column [Fiscal DatePreviousYear] - - - Rok FT - table [Date] column [FW Year] - - - Kvartál FT - table [Date] column [FW Quarter] - - - Rok kvartálu FT - table [Date] column [FW Quarter Year] - - - Měsíc FT - table [Date] column [FW Month] - - - Rok měsíce FT - table [Date] column [FW Month Year] - - - Týden FT - table [Date] column [FW Week] - - - Období FT - table [Date] column [FW Period] - - - Týden a rok FT - table [Date] column [FW Week Year] - - - Začátek týdne FT - table [Date] column [FW StartOfWeek] - - - Konec týdne FT - table [Date] column [FW EndOfWeek] - - - Relativní pozice týdne FT - table [Date] column [FW RelativeWeekPos] - - - Relativní pozice měsíce FT - table [Date] column [FW RelativeMonthPos] - - - Relativní pozice kvartálu FT - table [Date] column [FW RelativeQuarterPos] - - - Relativní pozice roku FT - table [Date] column [FW RelativeYearPos] - - - Začátek měsíce FT - table [Date] column [FW StartOfMonth] - - - Konec měsíce FT - table [Date] column [FW EndOfMonth] - - - Začátek kvartálu FT - table [Date] column [FW StartOfQuarter] - - - Konec kvartálu FT - table [Date] column [FW EndOfQuarter] - - - Začátek roku FT - table [Date] column [FW StartOfYear] - - - Konec roku FT - table [Date] column [FW EndOfYear] - - - Dny v měsíci FT - table [Date] column [FW MonthDays] - - - Dny kvartálu FT - table [Date] column [FW QuarterDays] - - - Dny roku FT - table [Date] column [FW YearDays] - - - Číslo dne v měsíci FT - table [Date] column [FW DayOfMonthNumber] - - - Číslo dne v kvartálu FT - table [Date] column [FW DayOfQuarterNumber] - - - Číslo dne v roce FT - table [Date] column [FW DayOfYearNumber] - - - Datum v předchozím týdnu FT - table [Date] column [FW DatePreviousWeek] - - - Datum v předchozím měsíci FT - table [Date] column [FW DatePreviousMonth] - - - Datum v předchozím kvartálu FT - table [Date] column [FW DatePreviousQuarter] - - - Datum v předchozím roce FT - table [Date] column [FW DatePreviousYear] - - - Relativní den - table [Date] column [Relative Day] - - - Počet dnů - table [Date] measure [No. of Days] - - - Pracovní dny - table [Date] measure [Working Days] - - - V rozsahu - table [Date] measure [Ranged] - - - Fiskální rok-kvartál-měsíc-týden - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiskální rok - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - FIskální rok kvartálu - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - FIskální rok měsíce - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiskální týden a rok - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalendářní rok-kvartál-měsíc-týden - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalendářní rok - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Rok kalendářního kvartálu - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalendářní měsíc v roce - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalendářní týden a rok - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Rok-kvartál-měsíc-týden FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Rok FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Rok kvartálu FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Rok měsíce FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Týden a rok FT - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiskální rok-měsíc - table [Date] hierarchy [Fiscal Year-Month] - - - Fiskální rok - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - FIskální rok měsíce - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiskální rok-měsíc-týden - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiskální rok - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - FIskální rok měsíce - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiskální týden a rok - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalendářní rok-měsíc - table [Date] hierarchy [Calendar Year-Month] - - - Kalendářní rok - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalendářní měsíc v roce - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalendářní rok-měsíc-týden - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalendářní rok - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalendářní měsíc v roce - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalendářní týden a rok - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Rok-měsíc-týden FT - table [Date] hierarchy [FW Year-Month-Week] - - - Rok FT - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Rok měsíce FT - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Týden a rok FT - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Rok-kvartál-týden FT - table [Date] hierarchy [FW Year-Quarter-Week] - - - Rok FT - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Rok kvartálu FT - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Týden a rok FT - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Rok-týden FT - table [Date] hierarchy [FW Year-Week] - - - Rok FT - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Týden a rok FT - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Můj nadpis sestavy - table [Localized Labels] measure [My Report Title] - - - Popisek mého tlačítka - table [Localized Labels] measure [My Button Caption] - - - Název mého vizuálu - table [Localized Labels] measure [My Visual Title] - - - Neaktivní zaměstnanci - table [Localized Labels] measure [Inactive Employees] - - - Zaměstnanci, kteří ukončili pracovní poměr - table [Localized Labels] measure [Terminated Employees] - - - Zaměstnanci ve svazech - table [Localized Labels] measure [Employees in Unions] - - - Sociální analýza - table [Localized Labels] measure [Social Analysis] - - - Distribuce podle pohlaví - table [Localized Labels] measure [Gender Distribution] - - - Distribuce podle věku - table [Localized Labels] measure [Age Distribution] - - - Kvalifikace zaměstnanců - table [Localized Labels] measure [Employees Qualifications] - - - Realizované emise vs. cílová hodnota - table [Localized Labels] measure [Realized Emissions vs Target] - - - Emise CO2e podle rozsahu - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Emise plynu podle kategorie - table [Localized Labels] measure [Gas Emissions by Category] - - - Realizované emise vs. základní hodnota - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Emise CO2e vs. základní hodnota - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Emise CO2e podle účtu - table [Localized Labels] measure [CO2e Emissions by Account] - - - Voda a odpad podle analýzy - table [Localized Labels] measure [Water and Waste Analysis] - - - Voda podle lokace zařízení - table [Localized Labels] measure [Water by Facility Location] - - - Voda podle kapacity zařízení - table [Localized Labels] measure [Water by Facility Capacity] - - - Voda a odpad podle typu - table [Localized Labels] measure [Water and Waste by Type] - - - Intenzita vody a odpadu podle typu - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Intenzita vody a odpadu podle zařízení - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emise podle kategorie a rozsahu - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emise podle kategorie - table [Localized Labels] measure [Emissions by Category] - - - Emise podle rozsahu - table [Localized Labels] measure [Emissions by Scope] - - - Analýza CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Emise CO2e podle kategorie - table [Localized Labels] measure [CO2e Emissions by Category] - - - Uhlíkový kredit podle měsíce - table [Localized Labels] measure [Carbon Credit by Month] - - - Ekvivalentní emise CO2e podle měsíce a výnosů - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Podrobné procházení položek zaměstnanců - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Položky zaměstnanců - table [Localized Labels] measure [Employee Ledger Entries] - - - Položky udržitelnosti - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Podrobné procházení položek udržitelnosti - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Podrobné procházení položek zaměstnanců - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Přehled udržitelnosti - table [Localized Labels] measure [Sustainability Overview] - - - Analýzy udržitelnosti - table [Localized Labels] measure [Sustainability Analytics] - - - Emise CO2e podle měsíce - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analýza rozsahů 1 a 2 podle kategorií za rok - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Emise CO2e podle oddělení - table [Localized Labels] measure [CO2e Emissions by Department] - - - Cesta k nulovým emisím uhlíku - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Emise CO2e podle obchodní skupiny - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Využití obnovitelné energie - table [Localized Labels] measure [Renewable Energy Usage] - - - Emise CO2e v průběhu času - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Chytrá kontrola CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - Emise CO2e podle globální dimenze jedna - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Emise CO2e podle globální dimenze dvě - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Ekvivalentní emise CO2e podle měsíce - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Název společnosti - table [Localized Labels] measure [Company Name] - - - Naposledy aktualizováno - table [Localized Labels] measure [Last Refreshed] - - - Propuštění zaměstnanci - table [Localized Labels] measure [Released Employees] - - - Strom dekompozice CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Klíčové vlivy CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Roční a denní změna vody a odpadu - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Položky udržitelnosti - table [table.Name] - - - Číslo položky - table [Sustainability Ledger Entries] column [Entry No.] - - - Popis - table [Sustainability Ledger Entries] column [Description] - - - Typ vody - table [Sustainability Ledger Entries] column [Water Type] - - - Typ intenzity vody/odpadu - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Typ dokladu - table [Sustainability Ledger Entries] column [Document Type] - - - Emise CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - Emise CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Zůstatek emisí CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Zůstatek emisí CO2 do data - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - Emise N2O - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Emise CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Zůstatek emisí CH4 do data - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Zůstatek emisí CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Intenzita voda - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Intenzita odpadu - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Vypuštěno do vody - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Zůstatek emisí CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Zůstatek emisí CO2e do data - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Zůstatek vypuštění do vody k datu - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Zůstatek vypuštění do vody - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Zůstatek emisí N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Zůstatek emisí N2O do data - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Intenzity odpadu, saldo do data - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Zůstatek intenzity odpadu - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Zůstatek intenzity vody - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Zůstatek intenzity vody k datu - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Základní hodnota CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Základní hodnota CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 vs. základní hodnota (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - Základní hodnota N2O - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O vs. základní hodnota (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 vs. základní hodnota (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Základní hodnota vody - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Základní hodnota odpadu - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Voda vs. základní hodnota (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Odpad vs. základní hodnota (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Základní hodnota CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e vs. základní hodnota (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Zakoupené uhlíkové kredity - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Základní hodnota vypuštění do vody - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Vypuštění do vody vs. základní hodnota (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Emise CO2e (bez kreditů) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Intenzity voda PR - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Intenzita vody MR - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Intenzita odpadu PR - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Intenzita odpadu MR - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Vypuštěno do vody PR - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Vypuštěno do vody MR - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Vypuštěno do vody VD - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Intenzita odpadu VD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Intenzity voda VD - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Intenzita vody MZD - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Intenzita odpadu MZD - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Vypuštěno do vody MZD - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Základní odkaz - table [Sustainability Ledger Entries] measure [Base Link] - - - Odkaz na položky udržitelnosti - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Dostupná voda - table [Sustainability Ledger Entries] measure [Water Available] - - - Účty udržitelnosti - table [table.Name] - - - Číslo účtu udržitelnosti - table [Sustainability Accounts] column [Sustainability Account No.] - - - Název účtu udržitelnosti - table [Sustainability Accounts] column [Sustainability Account Name] - - - Země/oblast - table [table.Name] - - - Kód země/oblasti - table [Country/Region] column [Country Region Code] - - - Název země/oblasti - table [Country/Region] column [Country Region Name] - - - Centrum odpovědnosti - table [table.Name] - - - Kód centra odpovědnosti - table [Responsibility Centre] column [Responsibility Centre Code] - - - Název centra odpovědnosti - table [Responsibility Centre] column [Responsibility Centre Name] - - - Kapacita zařízení - table [Responsibility Centre] measure [Facility Capacity] - - - Cíle udržitelnosti - table [table.Name] - - - Číslo přehledu výkonnostních metrik - table [Sustainability Goals] column [Score Card No.] - - - Č. - table [Sustainability Goals] column [No.] - - - Název - table [Sustainability Goals] column [Name] - - - Vlastník - table [Sustainability Goals] column [Owner] - - - Cílová hodnota pro CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Cílová hodnota pro CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Cílová hodnota pro N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Cílová hodnota pro intenzitu vody - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Cílová hodnota pro intenzitu odpadu - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Hlavní cíl - table [Sustainability Goals] column [Main Goal] - - - Počáteční datum - table [Sustainability Goals] column [Start Date] - - - Koncové datum - table [Sustainability Goals] column [End Date] - - - Základní počáteční datum - table [Sustainability Goals] column [Baseline Start Date] - - - Základní koncové datum - table [Sustainability Goals] column [Baseline End Date] - - - Cílová hodnota CO2 - table [Sustainability Goals] measure [CO2 Target] - - - Realizovaná hodnota CO2 (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - Cílová hodnota CH4 - table [Sustainability Goals] measure [CH4 Target] - - - Cílová hodnota N2O - table [Sustainability Goals] measure [N2O Target] - - - Realizovaná hodnota CH4 (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - Realizovaná hodnota N2O (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Cílová hodnota vody - table [Sustainability Goals] measure [Water Target] - - - Cílová hodnota odpadu - table [Sustainability Goals] measure [Waste Target] - - - Realizovaná hodnota vody (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Realizovaná hodnota odpadu (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - Realizovaný hodnota CO2e (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Aktuální hodnota CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Aktuální hodnota CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Aktuální hodnota N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Aktuální hodnota CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Aktuální hodnota vody - table [Sustainability Goals] measure [Water Current Value] - - - Aktuální hodnota odpadu - table [Sustainability Goals] measure [Waste Current Value] - - - Položky zaměstnanců - table [table.Name] - - - Číslo položky - table [Employee Ledger Entries] column [Entry No.] - - - Typ dokladu - table [Employee Ledger Entries] column [Document Type] - - - Číslo dokladu - table [Employee Ledger Entries] column [Document No.] - - - Popis - table [Employee Ledger Entries] column [Description] - - - Částka zaměstnance - table [Employee Ledger Entries] measure [Employee Amount] - - - Odkaz na položky zaměstnanců - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Kvalifikace zaměstnance - table [table.Name] - - - Kódy kvalifikace zaměstnanců - table [Employee Qualifications] column [Employee Qualification Codes] - - - Kvalifikace zaměstnance - table [Employee Qualifications] measure [Employee Qualifications] - - - Emisní poplatky - table [table.Name] - - - Typ emise - table [Emission Fees] column [Emission Type] - - - Typ rozsahu - table [Emission Fees] column [Scope Type] - - - Počáteční datum - table [Emission Fees] column [Starting Date] - - - Koncové datum - table [Emission Fees] column [Ending Date] - - - Kód země/oblasti - table [Emission Fees] column [Country Region Code] - - - Centrum odpovědnosti - table [Emission Fees] column [Responsibility Centre] - - - Poplatek za uhlík - table [Emission Fees] column [Carbon Fee] - - - Faktor ekvivalentu uhlíku - table [Emission Fees] column [Carbon Equivalent Factor] - - - Cílové CO2e - table [Emission Fees] measure [CO2e Target] - - - Ekvivalent uhlíku CO2 - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - Ekvivalent uhlíku CH4 - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - Ekvivalent uhlíku N2O - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Absence zaměstnanců - table [table.Name] - - - Číslo položky - table [Employee Absences] column [Entry No] - - - Od data - table [Employee Absences] column [From Date] - - - Do data - table [Employee Absences] column [To Date] - - - Důvod absence - table [Employee Absences] column [Cause of Absence] - - - Popis - table [Employee Absences] column [Description] - - - Absence zaměstnanců - table [Employee Absences] measure [Employee Absences] - - - Doba absence (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Kategorie podúčtu udržitelnosti - table [table.Name] - - - Kód podkategorie - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Popis podkategorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Obnovitelná energie - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Zaměstnanci - table [table.Name] - - - Číslo zaměstnance - table [Employees] column [Employee No.] - - - Celé jméno zaměstnance - table [Employees] column [Employee Full Name] - - - Křestní jméno zaměstnance - table [Employees] column [Employee First Name] - - - Příjmení zaměstnance - table [Employees] column [Employee Last Name] - - - Pohlaví zaměstnance - table [Employees] column [Employee Gender] - - - Kód svazu zaměstnance - table [Employees] column [Employee Union Code] - - - Stav zaměstnance - table [Employees] column [Employee Status] - - - Důvod pasivity zaměstnance - table [Employees] column [Employee Cause of Inactivity] - - - Datum pasivity zaměstnance - table [Employees] column [Employee Inactive Date] - - - Důvody ukončení zaměstnance - table [Employees] column [Employee Grounds for Termination] - - - Datum narození zaměstnance - table [Employees] column [Employee Date of Birth] - - - Věk - table [Employees] column [Age] - - - Distribuce podle věku - table [Employees] column [Age Distribution] - - - Počet zaměstnanců - table [Employees] measure [No. of Employees] - - - Počet zaměstnanců mužského pohlaví - table [Employees] measure [No. of Male Employees] - - - Počet zaměstnanců ženského pohlaví - table [Employees] measure [No. of Female Employees] - - - Počet ostatních zaměstnanců - table [Employees] measure [No. of Other Employees] - - - Zaměstnanci mužského pohlaví (%) - table [Employees] measure [Male Employees (%)] - - - Zaměstnanci ženského pohlaví (%) - table [Employees] measure [Female Employees (%)] - - - Ostatní zaměstnanci (%) - table [Employees] measure [Other Employees (%)] - - - Aktivní zaměstnanci - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.da-DK.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.da-DK.resx deleted file mode 100644 index 36e55b7fc7..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.da-DK.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Finanskontokategori - table [table.Name] - - - Beskrivelse af finanskontokategori - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Kategorikode for bæredygtighedskonto - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Udledningsomfang af kategorien for bæredygtighedskontoen - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimensionsgrupper - table [table.Name] - - - Global dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Global dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Genvejsdimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Genvejsdimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Genvejsdimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Genvejsdimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Genvejsdimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Genvejsdimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - AFDELING - table [Dimension Sets] column [DEPARTMENT] - - - Afdelingsnavn - table [Dimension Sets] column [Department Name] - - - DEBITORGRUPPE - table [Dimension Sets] column [CUSTOMERGROUP] - - - Navn på debitorgruppe - table [Dimension Sets] column [Customer Group Name] - - - OMRÅDE - table [Dimension Sets] column [AREA] - - - Områdenavn - table [Dimension Sets] column [Area Name] - - - FORRETNINGSGRUPPE - table [Dimension Sets] column [BUSINESSGROUP] - - - Navn på virksomhedsgruppe - table [Dimension Sets] column [Business Group Name] - - - SALGSKAMPAGNE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Salgskampagnenavn - table [Dimension Sets] column [Sales campaign Name] - - - SÆLGER - table [Dimension Sets] column [SALESPERSON] - - - Sælgernavn - table [Dimension Sets] column [Salesperson Name] - - - Dato - table [table.Name] - - - Ugedag - table [Date] column [Week Day] - - - Dagtype - table [Date] column [Day Type] - - - Kalender År - table [Date] column [Calendar Year] - - - Kalenderkvartal - table [Date] column [Calendar Quarter] - - - Kalender Kvartal År - table [Date] column [Calendar Quarter Year] - - - Kalendermåned - table [Date] column [Calendar Month] - - - Kalender Måned År - table [Date] column [Calendar Month Year] - - - Kalenderuge - table [Date] column [Calendar Week] - - - Kalender Uge år - table [Date] column [Calendar Week Year] - - - Kalender RelativUgePosition - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativMånedsPosition - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativKvartalsPosition - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativÅrsPosition - table [Date] column [Calendar RelativeYearPos] - - - Kalender StartPåMåned - table [Date] column [Calendar StartOfMonth] - - - Kalender SlutPåMåned - table [Date] column [Calendar EndOfMonth] - - - Kalender StartPåKvartal - table [Date] column [Calendar StartOfQuarter] - - - Kalender SlutPåKvartal - table [Date] column [Calendar EndOfQuarter] - - - Kalender StartPåÅr - table [Date] column [Calendar StartOfYear] - - - Kalender SlutPåÅr - table [Date] column [Calendar EndOfYear] - - - Kalender MånedDage - table [Date] column [Calendar MonthDays] - - - Kalender KvartalsDage - table [Date] column [Calendar QuarterDays] - - - Kalender ÅrDage - table [Date] column [Calendar YearDays] - - - Kalender NummerPåDagIMåned - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender NummerPåDagIKvartal - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender NummerPåDagIÅr - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatoForrigeUge - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatoForrigeMåned - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatoForrigeKvartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatoForrigeÅr - table [Date] column [Calendar DatePreviousYear] - - - Regnskabsår - table [Date] column [Fiscal Year] - - - Regnskabskvartal - table [Date] column [Fiscal Quarter] - - - Regnskab Kvartal År - table [Date] column [Fiscal Quarter Year] - - - Regnskabsmåned - table [Date] column [Fiscal Month] - - - Regnskab Måned År - table [Date] column [Fiscal Month Year] - - - Regnskabsuge - table [Date] column [Fiscal Week] - - - Regnskab Uge År - table [Date] column [Fiscal Week Year] - - - Regnskab RelativUgePosition - table [Date] column [Fiscal RelativeWeekPos] - - - Regnskab RelativMånedsPosition - table [Date] column [Fiscal RelativeMonthPos] - - - Regnskab RelativKvartalsPosition - table [Date] column [Fiscal RelativeQuarterPos] - - - Regnskab RelativÅrsPosition - table [Date] column [Fiscal RelativeYearPos] - - - Regnskab StartPåMåned - table [Date] column [Fiscal StartOfMonth] - - - Regnskab SlutPåMåned - table [Date] column [Fiscal EndOfMonth] - - - Regnskab StartPåKvartal - table [Date] column [Fiscal StartOfQuarter] - - - Regnskab SlutPåKvartal - table [Date] column [Fiscal EndOfQuarter] - - - Regnskab StartPåÅr - table [Date] column [Fiscal StartOfYear] - - - Regnskab SlutPåÅr - table [Date] column [Fiscal EndOfYear] - - - Regnskab MånedsDage - table [Date] column [Fiscal MonthDays] - - - Regnskab KvartalsDage - table [Date] column [Fiscal QuarterDays] - - - Regnskabsår Dage - table [Date] column [Fiscal YearDays] - - - Regnskab NummerPåDagIMåned - table [Date] column [Fiscal DayOfMonthNumber] - - - Regnskab NummerPåDagIKvartal - table [Date] column [Fiscal DayOfQuarterNumber] - - - Regnskab NummerPåDagiÅr - table [Date] column [Fiscal DayOfYearNumber] - - - Regnskab DatoForrigeUge - table [Date] column [Fiscal DatePreviousWeek] - - - Regnskab DatoForrigeMåned - table [Date] column [Fiscal DatePreviousMonth] - - - Regnskab DatoForrigeKvartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Regnskab DatoForrigeÅr - table [Date] column [Fiscal DatePreviousYear] - - - RU År - table [Date] column [FW Year] - - - RU Kvartal - table [Date] column [FW Quarter] - - - RU Kvartal År - table [Date] column [FW Quarter Year] - - - RU Måned - table [Date] column [FW Month] - - - RU Måned år - table [Date] column [FW Month Year] - - - RU Uge - table [Date] column [FW Week] - - - RU Periode - table [Date] column [FW Period] - - - RU Uge År - table [Date] column [FW Week Year] - - - RU StartPåUge - table [Date] column [FW StartOfWeek] - - - RU SlutPåUge - table [Date] column [FW EndOfWeek] - - - RU RelativUgesPosition - table [Date] column [FW RelativeWeekPos] - - - RU RelativMånedsPosition - table [Date] column [FW RelativeMonthPos] - - - RU RelativKvartalsPosition - table [Date] column [FW RelativeQuarterPos] - - - RU RelativÅrsPosition - table [Date] column [FW RelativeYearPos] - - - RU StartPåMåned - table [Date] column [FW StartOfMonth] - - - RU SlutPåMåned - table [Date] column [FW EndOfMonth] - - - RU StartPåKvartal - table [Date] column [FW StartOfQuarter] - - - RU SlutPåKvartal - table [Date] column [FW EndOfQuarter] - - - RU StartPåÅr - table [Date] column [FW StartOfYear] - - - RU SlutPåÅr - table [Date] column [FW EndOfYear] - - - RU MånedDage - table [Date] column [FW MonthDays] - - - RU KvartalDage - table [Date] column [FW QuarterDays] - - - RU ÅrDage - table [Date] column [FW YearDays] - - - RU NummerPåDagIMåned - table [Date] column [FW DayOfMonthNumber] - - - RU NummerPåDagIKvartal - table [Date] column [FW DayOfQuarterNumber] - - - RU NummerPåDagiÅr - table [Date] column [FW DayOfYearNumber] - - - RU DatoForrigeUge - table [Date] column [FW DatePreviousWeek] - - - RU DatoForrigeMåned - table [Date] column [FW DatePreviousMonth] - - - RU DatoForrigeKvartal - table [Date] column [FW DatePreviousQuarter] - - - RU DatoForrigeÅr - table [Date] column [FW DatePreviousYear] - - - Relativ dag - table [Date] column [Relative Day] - - - Antal dage - table [Date] measure [No. of Days] - - - Arbejdsdage - table [Date] measure [Working Days] - - - Rangeret - table [Date] measure [Ranged] - - - Regnskab År-Kvartal-Måned-Uge - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Regnskabsår - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Regnskab Kvartal År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Regnskab Måned År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Regnskab Uge År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender År-Kvartal-Måned-Uge - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kvartal År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Uge år - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - RU År-Kvartal-Måned-Uge - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - RU År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - RU Kvartal År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - RU Måned år - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - RU Uge År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Regnskab År-Måned - table [Date] hierarchy [Fiscal Year-Month] - - - Regnskabsår - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Regnskab Måned År - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Regnskabsår-Måned-Uge - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Regnskabsår - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Regnskab Måned År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Regnskab Uge År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender År-måned - table [Date] hierarchy [Calendar Year-Month] - - - Kalender År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender År-måned-uge - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Uge år - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - RU År-Måned-Uge - table [Date] hierarchy [FW Year-Month-Week] - - - RU År - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - RU Måned år - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - RU Uge År - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - RU År-Kvartal-Uge - table [Date] hierarchy [FW Year-Quarter-Week] - - - RU År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - RU Kvartal År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - RU Uge År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - RU År-Uge - table [Date] hierarchy [FW Year-Week] - - - RU År - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - RU Uge År - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Min rapporttitel - table [Localized Labels] measure [My Report Title] - - - Min knaptitel - table [Localized Labels] measure [My Button Caption] - - - Min visuelle titel - table [Localized Labels] measure [My Visual Title] - - - Inaktive medarbejdere - table [Localized Labels] measure [Inactive Employees] - - - Opsagte medarbejdere - table [Localized Labels] measure [Terminated Employees] - - - Medarbejdere i fagforeninger - table [Localized Labels] measure [Employees in Unions] - - - Social analyse - table [Localized Labels] measure [Social Analysis] - - - Distribution af køn - table [Localized Labels] measure [Gender Distribution] - - - Aldersfordeling - table [Localized Labels] measure [Age Distribution] - - - Medarbejderkvalifikationer - table [Localized Labels] measure [Employees Qualifications] - - - Realiserede udledninger vs mål - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e-udledninger efter omfang - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gasudledninger efter kategori - table [Localized Labels] measure [Gas Emissions by Category] - - - Realiserede udledninger vs grundlinje - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e-udledninger vs grundlinje - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e-udledninger efter konto - table [Localized Labels] measure [CO2e Emissions by Account] - - - Vand- og affaldsanalyse - table [Localized Labels] measure [Water and Waste Analysis] - - - Vand efter lokaleplacering - table [Localized Labels] measure [Water by Facility Location] - - - Vand efter lokalekapacitet - table [Localized Labels] measure [Water by Facility Capacity] - - - Vand og affald efter type - table [Localized Labels] measure [Water and Waste by Type] - - - Vand- og affaldsintensitet efter type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Vand- og affaldsintensitet efter anlæg - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Udledninger efter kategori og omfang - table [Localized Labels] measure [Emissions by Category and Scope] - - - Udledninger efter kategori - table [Localized Labels] measure [Emissions by Category] - - - Udledninger efter omfang - table [Localized Labels] measure [Emissions by Scope] - - - CO2e-analyse - table [Localized Labels] measure [CO2e Analysis] - - - CO2e-udledning pr. kategori - table [Localized Labels] measure [CO2e Emissions by Category] - - - CO2-kredit efter måned - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e-ækvivalente udledninger efter måned og indtægt - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Detaljeudledning af medarbejderposter - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Medarbejderposter - table [Localized Labels] measure [Employee Ledger Entries] - - - Finansposter for bæredygtighed - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Detaljeudledning af finansposter for bæredygtighed - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Detaljeudledning af medarbejderfinansposter - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Bæredygtighedsoversigt - table [Localized Labels] measure [Sustainability Overview] - - - Bæredygtighedsanalyse - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e-udledninger pr. måned - table [Localized Labels] measure [CO2e Emissions by Month] - - - Omfang 1 og 2 Analyse efter kategorier pr. år - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e-udledninger efter afdeling - table [Localized Labels] measure [CO2e Emissions by Department] - - - Rejsen til netto-nul CO2 - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e-udledninger efter virksomhedsgruppe - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Forbrug af vedvarende energi - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e-udledninger over tid - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart anmeldelse - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e-emissioner efter global dimension et - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e-emissioner efter global dimension to - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e-ækvivalente udledninger pr. måned - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Virksomhedsnavn - table [Localized Labels] measure [Company Name] - - - Sidst opdateret - table [Localized Labels] measure [Last Refreshed] - - - Frigivne medarbejdere - table [Localized Labels] measure [Released Employees] - - - CO2e-dekompositionstræ - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e-nøglepåvirkninger - table [Localized Labels] measure [CO2e Key Influences] - - - Vand og affald årligt og dagligt skift - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Finansposter for bæredygtighed - table [table.Name] - - - Løbenr. - table [Sustainability Ledger Entries] column [Entry No.] - - - Beskrivelse - table [Sustainability Ledger Entries] column [Description] - - - Vandtype - table [Sustainability Ledger Entries] column [Water Type] - - - Vand/affaldsintensitetstype - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Dokumenttype - table [Sustainability Ledger Entries] column [Document Type] - - - CO2-udledninger - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4-udledninger - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2-udledningssaldo - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2-udledningssaldo til dato - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O-udledninger - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e-udledninger - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4-udledningssaldo til dato - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4-udledningssaldo - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Vandintensitet - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Affaldsintensitet - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Udledt i vand - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e-udledningssaldo - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e-udledningssaldo til dato - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Udledt i vandsaldo efter dato - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Udledt i vandsaldo - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O-udledningssaldo - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O-udledningssaldo til dato - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Affaldsintensitetssaldo pr. dato - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Affaldsintensitetssaldo - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Saldo af vandintensitet - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Vandintensitetssaldo til dato - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2-grundlag - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4-grundlag - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 i forhold til grundlinje (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O-grundlag - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O i forhold til grundlinje (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 i forhold til grundlinje (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Vandgrundlinje - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Grundlinje for affald - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Vand vs. grundlinje (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Affald vs. grundlinje (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e-grundlinje - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e vs grundlinje (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Købte CO2-kreditter - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Udledt i vand basis - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Udledt i vand versus basis (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e-udledninger (ekskl. kreditter) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Vandintensitet FÅ - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Vandintensitet ÅOÅ - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Affaldsintensitet FÅ - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Affaldsintensitet ÅOÅ - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Udledt i vand FÅ - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Udledt i vand ÅOÅ - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Udledt i vand YD - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Affaldsintensitet YD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Vandintensitet YD - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Vandintensitet DOD - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Affaldsintensitet DOD - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Udledt i vand DOD - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Basislink - table [Sustainability Ledger Entries] measure [Base Link] - - - Link til finansposter for bæredygtighed - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Vand til rådighed - table [Sustainability Ledger Entries] measure [Water Available] - - - Bæredygtighedskonti - table [table.Name] - - - Bæredygtighedskontonr. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Bæredygtighedskontonavn - table [Sustainability Accounts] column [Sustainability Account Name] - - - Land/område - table [table.Name] - - - Kode for land/område og region - table [Country/Region] column [Country Region Code] - - - Lande/områdenavn - table [Country/Region] column [Country Region Name] - - - -ansvarscenter - table [table.Name] - - - Ansvarscenterkode - table [Responsibility Centre] column [Responsibility Centre Code] - - - Navn på ansvarscenter - table [Responsibility Centre] column [Responsibility Centre Name] - - - Lokalekapacitet - table [Responsibility Centre] measure [Facility Capacity] - - - Bæredygtighedsmål - table [table.Name] - - - Scorecardnr. - table [Sustainability Goals] column [Score Card No.] - - - Nr. - table [Sustainability Goals] column [No.] - - - Navn - table [Sustainability Goals] column [Name] - - - Ejer - table [Sustainability Goals] column [Owner] - - - Målværdi for CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Målværdi for CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Målværdi for N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Målværdi for vandintensitet - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Målværdi for affaldsintensitet - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Hovedmål - table [Sustainability Goals] column [Main Goal] - - - Startdato - table [Sustainability Goals] column [Start Date] - - - Slutdato - table [Sustainability Goals] column [End Date] - - - Startdato for grundlinje - table [Sustainability Goals] column [Baseline Start Date] - - - Oprindelig slutdato - table [Sustainability Goals] column [Baseline End Date] - - - CO2-mål - table [Sustainability Goals] measure [CO2 Target] - - - CO2 realiseret (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4-mål - table [Sustainability Goals] measure [CH4 Target] - - - N2O-mål - table [Sustainability Goals] measure [N2O Target] - - - CH4 realiseret (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O realiseret (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Vandmål - table [Sustainability Goals] measure [Water Target] - - - Affaldsmål - table [Sustainability Goals] measure [Waste Target] - - - Realiseret vand (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Realiseret spild (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e realiseret (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Aktuel CO2-værdi - table [Sustainability Goals] measure [CO2 Current Value] - - - Aktuel CH4-værdi - table [Sustainability Goals] measure [CH4 Current Value] - - - Aktuel N2O-værdi - table [Sustainability Goals] measure [N2O Current Value] - - - Aktuel CO2e-værdi - table [Sustainability Goals] measure [CO2e Current Value] - - - Aktuel værdi for vand - table [Sustainability Goals] measure [Water Current Value] - - - Aktuel værdi for affald - table [Sustainability Goals] measure [Waste Current Value] - - - Medarbejderposter - table [table.Name] - - - Løbenr. - table [Employee Ledger Entries] column [Entry No.] - - - Dokumenttype - table [Employee Ledger Entries] column [Document Type] - - - Dokumentnr. - table [Employee Ledger Entries] column [Document No.] - - - Beskrivelse - table [Employee Ledger Entries] column [Description] - - - Medarbejderantal - table [Employee Ledger Entries] measure [Employee Amount] - - - Link til medarbejderfinansposter - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Medarbejderkvalifikationer - table [table.Name] - - - Medarbejderkvalifikationskoder - table [Employee Qualifications] column [Employee Qualification Codes] - - - Medarbejderkvalifikationer - table [Employee Qualifications] measure [Employee Qualifications] - - - Udledningsafgifter - table [table.Name] - - - Udledningstype - table [Emission Fees] column [Emission Type] - - - Omfangstype - table [Emission Fees] column [Scope Type] - - - Startdato - table [Emission Fees] column [Starting Date] - - - Afslutningsdato - table [Emission Fees] column [Ending Date] - - - Kode for land/område og region - table [Emission Fees] column [Country Region Code] - - - -ansvarscenter - table [Emission Fees] column [Responsibility Centre] - - - CO2-gebyr - table [Emission Fees] column [Carbon Fee] - - - CO2-ækvivalentfaktor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e-mål - table [Emission Fees] measure [CO2e Target] - - - CO2 kulstofækvivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4 kulstofækvivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O kulstofækvivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Medarbejderfravær - table [table.Name] - - - Løbenr. - table [Employee Absences] column [Entry No] - - - Fra dato - table [Employee Absences] column [From Date] - - - Til dato - table [Employee Absences] column [To Date] - - - Fraværsårsag - table [Employee Absences] column [Cause of Absence] - - - Beskrivelse - table [Employee Absences] column [Description] - - - Medarbejderfravær - table [Employee Absences] measure [Employee Absences] - - - Fraværstimer (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Kategorier af bæredygtigheds underkonto - table [table.Name] - - - Underkategorikode - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Beskrivelse af underkategori - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Vedvarende energi - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Medarbejdere - table [table.Name] - - - Medarbejdernr. - table [Employees] column [Employee No.] - - - Medarbejderens fulde navn - table [Employees] column [Employee Full Name] - - - Medarbejderens fornavn - table [Employees] column [Employee First Name] - - - Medarbejderens efternavn - table [Employees] column [Employee Last Name] - - - Medarbejderens køn - table [Employees] column [Employee Gender] - - - Medarbejders fagforeningskode - table [Employees] column [Employee Union Code] - - - Medarbejderstatus - table [Employees] column [Employee Status] - - - Årsag til medarbejders inaktivitet - table [Employees] column [Employee Cause of Inactivity] - - - Medarbejders inaktivitetsdato - table [Employees] column [Employee Inactive Date] - - - Medarbejders fratrædelsesårsag - table [Employees] column [Employee Grounds for Termination] - - - Medarbejderens fødselsdato - table [Employees] column [Employee Date of Birth] - - - Alder - table [Employees] column [Age] - - - Aldersfordeling - table [Employees] column [Age Distribution] - - - Antal ansatte - table [Employees] measure [No. of Employees] - - - Antal mandlige ansatte - table [Employees] measure [No. of Male Employees] - - - Antal kvindelige ansatte - table [Employees] measure [No. of Female Employees] - - - Antal andre ansatte - table [Employees] measure [No. of Other Employees] - - - Mandlige medarbejdere (%) - table [Employees] measure [Male Employees (%)] - - - Kvindelige medarbejdere (%) - table [Employees] measure [Female Employees (%)] - - - Andre ansatte (%) - table [Employees] measure [Other Employees (%)] - - - Aktive medarbejdere - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-AT.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-AT.resx deleted file mode 100644 index d90ebdfbfd..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-AT.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Sachkontokategorie - table [table.Name] - - - Beschreibung der Sachk.-Kategorie - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Nachhaltigkeitskontokategorie-Code - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Nachhaltigkeitskontokategorie – Emissionsumfang - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimensionssätze - table [table.Name] - - - Globale Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Globale Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcutdimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcutdimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcutdimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcutdimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcutdimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcutdimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - ABTEILUNG - table [Dimension Sets] column [DEPARTMENT] - - - Abteilungsname - table [Dimension Sets] column [Department Name] - - - DEBITORENGRUPPE - table [Dimension Sets] column [CUSTOMERGROUP] - - - Name der Debitorengruppe - table [Dimension Sets] column [Customer Group Name] - - - BEREICH - table [Dimension Sets] column [AREA] - - - Bereichsname - table [Dimension Sets] column [Area Name] - - - UNTERNEHMENSGRUPPE - table [Dimension Sets] column [BUSINESSGROUP] - - - Name der Unternehmensgruppe - table [Dimension Sets] column [Business Group Name] - - - VERKAUFSKAMPAGNE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Name der Verkaufskampagne - table [Dimension Sets] column [Sales campaign Name] - - - VERKÄUFER - table [Dimension Sets] column [SALESPERSON] - - - Verkäufername - table [Dimension Sets] column [Salesperson Name] - - - Datum - table [table.Name] - - - Woche Tag - table [Date] column [Week Day] - - - Tagestyp - table [Date] column [Day Type] - - - Kalender Jahr - table [Date] column [Calendar Year] - - - Kalenderquartal - table [Date] column [Calendar Quarter] - - - Kalender Quartal Jahr - table [Date] column [Calendar Quarter Year] - - - Kalendermonat - table [Date] column [Calendar Month] - - - Kalender Monat Jahr - table [Date] column [Calendar Month Year] - - - Kalender Woche - table [Date] column [Calendar Week] - - - Kalender Woche Jahr - table [Date] column [Calendar Week Year] - - - Kalender RelativeWochenPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativeMonatsPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativeQuartalsPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativeJahresPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginnDesMonats - table [Date] column [Calendar StartOfMonth] - - - Kalender EndeDesMonats - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginnDesQuartals - table [Date] column [Calendar StartOfQuarter] - - - Kalender EndeDesQuartals - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginnDesJahres - table [Date] column [Calendar StartOfYear] - - - Kalender EndeDesJahres - table [Date] column [Calendar EndOfYear] - - - Kalender MonatTage - table [Date] column [Calendar MonthDays] - - - Kalender QuartalTage - table [Date] column [Calendar QuarterDays] - - - Kalender JahrTage - table [Date] column [Calendar YearDays] - - - Kalender TagDesMonatsZahl - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender TagDesQuartalsZahl - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender TagDesJahresZahl - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWoche - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigerMonat - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigesQuartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigesJahr - table [Date] column [Calendar DatePreviousYear] - - - Geschäftlich Jahr - table [Date] column [Fiscal Year] - - - Geschäftsquartal - table [Date] column [Fiscal Quarter] - - - Geschäftlich Quartal Jahr - table [Date] column [Fiscal Quarter Year] - - - Geschäftlich Monat - table [Date] column [Fiscal Month] - - - Geschäftlich Monat Jahr - table [Date] column [Fiscal Month Year] - - - Geschäftswoche - table [Date] column [Fiscal Week] - - - Geschäftlich Woche Jahr - table [Date] column [Fiscal Week Year] - - - Geschäftlich RelativeWochenPos - table [Date] column [Fiscal RelativeWeekPos] - - - Geschäftlich RelativeMonatsPos - table [Date] column [Fiscal RelativeMonthPos] - - - Geschäftlich RelativeQuartalsPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Geschäftlich RelativeJahresPos - table [Date] column [Fiscal RelativeYearPos] - - - Geschäftlich BeginnDesMonats - table [Date] column [Fiscal StartOfMonth] - - - Geschäftlich EndeDesMonats - table [Date] column [Fiscal EndOfMonth] - - - Geschäftlich BeginnDesQuartals - table [Date] column [Fiscal StartOfQuarter] - - - Geschäftlich EndeDesQuartals - table [Date] column [Fiscal EndOfQuarter] - - - Geschäftlich BeginnDesJahres - table [Date] column [Fiscal StartOfYear] - - - Geschäftlich EndeDesJahres - table [Date] column [Fiscal EndOfYear] - - - Geschäftlich MonatTage - table [Date] column [Fiscal MonthDays] - - - Geschäftlich QuartalTage - table [Date] column [Fiscal QuarterDays] - - - Geschäftlich JahrTage - table [Date] column [Fiscal YearDays] - - - Geschäftlich TagDesMonatsZahl - table [Date] column [Fiscal DayOfMonthNumber] - - - Geschäftlich TagDesQuartalsZahl - table [Date] column [Fiscal DayOfQuarterNumber] - - - Geschäftlich TagDesJahresZahl - table [Date] column [Fiscal DayOfYearNumber] - - - Geschäftlich DatumVorigeWoche - table [Date] column [Fiscal DatePreviousWeek] - - - Geschäftlich DatumVorigerMonat - table [Date] column [Fiscal DatePreviousMonth] - - - Geschäftlich DatumVorigesQuartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Geschäftlich DatumVorigesJahr - table [Date] column [Fiscal DatePreviousYear] - - - GW Jahr - table [Date] column [FW Year] - - - GW Quartal - table [Date] column [FW Quarter] - - - GW Quartal Jahr - table [Date] column [FW Quarter Year] - - - GW Monat - table [Date] column [FW Month] - - - GW Monat Jahr - table [Date] column [FW Month Year] - - - GW Woche - table [Date] column [FW Week] - - - GW Periode - table [Date] column [FW Period] - - - GW Woche Jahr - table [Date] column [FW Week Year] - - - GW BeginnDerWoche - table [Date] column [FW StartOfWeek] - - - GW EndeDerWoche - table [Date] column [FW EndOfWeek] - - - GW RelativeWochenPos - table [Date] column [FW RelativeWeekPos] - - - GW RelativeMonatsPos - table [Date] column [FW RelativeMonthPos] - - - GW RelativeQuartalsPos - table [Date] column [FW RelativeQuarterPos] - - - GW RelativeJahresPos - table [Date] column [FW RelativeYearPos] - - - GW BeginnDesMonats - table [Date] column [FW StartOfMonth] - - - GW EndeDesMonats - table [Date] column [FW EndOfMonth] - - - GW BeginnDesQuartals - table [Date] column [FW StartOfQuarter] - - - GW EndeDesQuartals - table [Date] column [FW EndOfQuarter] - - - GW BeginnDesJahres - table [Date] column [FW StartOfYear] - - - GW EndeDesJahres - table [Date] column [FW EndOfYear] - - - GW MonatTage - table [Date] column [FW MonthDays] - - - GW QuartalTage - table [Date] column [FW QuarterDays] - - - GW JahrTage - table [Date] column [FW YearDays] - - - GW TagDesMonatsZahl - table [Date] column [FW DayOfMonthNumber] - - - GW TagDesQuartalsZahl - table [Date] column [FW DayOfQuarterNumber] - - - GW TagDesJahresZahl - table [Date] column [FW DayOfYearNumber] - - - GW DatumVorigeWoche - table [Date] column [FW DatePreviousWeek] - - - GW DatumVorigerMonat - table [Date] column [FW DatePreviousMonth] - - - GW DatumVorigesQuartal - table [Date] column [FW DatePreviousQuarter] - - - GW DatumVorigesJahr - table [Date] column [FW DatePreviousYear] - - - Relativ Tag - table [Date] column [Relative Day] - - - Anzahl der Tage - table [Date] measure [No. of Days] - - - Arbeitstage - table [Date] measure [Working Days] - - - Bereich - table [Date] measure [Ranged] - - - Geschäftlich Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Geschäftlich Quartal Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Quartal Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - GW Jahr-Quartal-Monat-Woche - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Geschäftlich Jahr-Monat - table [Date] hierarchy [Fiscal Year-Month] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Geschäftlich Jahr-Monat-Woche - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Monat - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jahr-Monat-Woche - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - GW Jahr-Monat-Woche - table [Date] hierarchy [FW Year-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - GW Jahr-Quartal-Woche - table [Date] hierarchy [FW Year-Quarter-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - GW Jahr-Woche - table [Date] hierarchy [FW Year-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Titel meines Berichts - table [Localized Labels] measure [My Report Title] - - - Beschriftung Meine Schaltfläche - table [Localized Labels] measure [My Button Caption] - - - Titel meines Visuals - table [Localized Labels] measure [My Visual Title] - - - Inaktive Mitarbeiter - table [Localized Labels] measure [Inactive Employees] - - - Gekündigte Mitarbeiter - table [Localized Labels] measure [Terminated Employees] - - - Mitarbeiter in Gewerkschaften - table [Localized Labels] measure [Employees in Unions] - - - Sozialanalyse - table [Localized Labels] measure [Social Analysis] - - - Geschlechteverteilung - table [Localized Labels] measure [Gender Distribution] - - - Altersverteilung - table [Localized Labels] measure [Age Distribution] - - - Mitarbeiterqualifikationen - table [Localized Labels] measure [Employees Qualifications] - - - Realisierte Emissionen gegenüber Ziel - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e-Emissionen nach Umfang - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gasemissionen nach Kategorien - table [Localized Labels] measure [Gas Emissions by Category] - - - Realisierte Emissionen gegenüber Ausgangswert - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e-Emissionen gegenüber Ausgangswert - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e-Emissionen nach Firma - table [Localized Labels] measure [CO2e Emissions by Account] - - - Wasser- und Abfallanalyse - table [Localized Labels] measure [Water and Waste Analysis] - - - Wasser nach Anlagenstandort - table [Localized Labels] measure [Water by Facility Location] - - - Wasser nach Anlagenkapazität - table [Localized Labels] measure [Water by Facility Capacity] - - - Wasser und Abfall nach Typ - table [Localized Labels] measure [Water and Waste by Type] - - - Wasser- und Abfallintensität nach Typ - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Wasser- und Abfallintensität nach Anlage - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissionen nach Kategorie und Umfang - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissionen nach Kategorie - table [Localized Labels] measure [Emissions by Category] - - - Emissionen nach Umfang - table [Localized Labels] measure [Emissions by Scope] - - - CO2e-Analyse - table [Localized Labels] measure [CO2e Analysis] - - - CO2e-Emissionen nach Kategorien - table [Localized Labels] measure [CO2e Emissions by Category] - - - Kohlenstoffgutschrift nach Monat - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e-Äquivalent Emission pro Monat und Umsatz - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Mitarbeiterposten-Drillthrough - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Mitarbeiterposten - table [Localized Labels] measure [Employee Ledger Entries] - - - Nachhaltigkeitsposten - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Nachhaltigkeitsposten-Drillthrough - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Mitarbeiter-Hauptbuchposten-Drillthrough - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Nachhaltigkeitsübersicht - table [Localized Labels] measure [Sustainability Overview] - - - Nachhaltigkeitsanalysen - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e-Emissionen pro Monat - table [Localized Labels] measure [CO2e Emissions by Month] - - - Bereich-1- und Bereich-2-Analyse nach Kategorien pro Jahr - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e-Emissionen nach Abteilungen - table [Localized Labels] measure [CO2e Emissions by Department] - - - Der Weg zur CO2-Neutralität - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e-Emissionen nach Unternehmensgruppe - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Nutzung erneuerbarer Energien - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e-Emissionen im Zeitverlauf - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Intelligente CO2e-Prüfung - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e-Emissionen nach globaler Dimension eins - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e-Emissionen nach globaler Dimension zwei - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e-Äquivalent Emissionen pro Monat - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Mandantenname - table [Localized Labels] measure [Company Name] - - - Zuletzt aktualisiert - table [Localized Labels] measure [Last Refreshed] - - - Freigestellte Mitarbeiter - table [Localized Labels] measure [Released Employees] - - - CO2e-Zerlegungsstruktur - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e-Haupteinflüsse - table [Localized Labels] measure [CO2e Key Influences] - - - Wasser und Abfall – Jährliche und tägliche Veränderung - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Nachhaltigkeitsposten - table [table.Name] - - - Postennr. - table [Sustainability Ledger Entries] column [Entry No.] - - - Beschreibung - table [Sustainability Ledger Entries] column [Description] - - - Wassertyp - table [Sustainability Ledger Entries] column [Water Type] - - - Wasser-/Abfallintensitätstyp - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Belegtyp - table [Sustainability Ledger Entries] column [Document Type] - - - CO2-Emissionen - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4-Emissionen - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2-Emissionsbilanz - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O-Emissionen - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e-Emissionen - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4-Emissionsbilanz - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Wasserintensität - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Abfallintensität - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Ins Wasser abgegeben - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e-Emissionsbilanz - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Bilanz am Sichtag für „Ins Wasser abgegeben“ - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Bilanz für „Ins Wasser abgegeben“ - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O-Emissionsbilanz - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Abfallintensitätsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Abfallintensitätsbilanz - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Wasserintensitätsbilanz - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Wasserintensitätsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2-Ausgangswert - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4-Ausgangswert - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O-Ausgangswert - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Wasserausgangswert - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Abfallausgangswert - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Wasser gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Abfall gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e-Ausgangswert - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Gekaufte Emissionsgutschriften - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Ausgangswert für „Ins Wasser abgegeben“ - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - „Ins Wasser abgegeben“ gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e-Emissionen (ohne Gutschriften) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Wasserintensität (VJ) - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Wasserintensität (JGJ) - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Abfallintensität (VJ) - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Abfallintensität (JGJ) - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Ins Wasser abgegeben (VJ) - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Ins Wasser abgegeben (JGJ) - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Ins Wasser abgegeben (LD) - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Abfallintensität (LD) - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Wasserintensität (LD) - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Wasserintensität (TGT) - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Abfallintensität (TGT) - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Ins Wasser abgegeben (TGT) - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Basislink - table [Sustainability Ledger Entries] measure [Base Link] - - - Link für Nachhaltigkeitsposten - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Wasser verfügbar - table [Sustainability Ledger Entries] measure [Water Available] - - - Nachhaltigkeitskonten - table [table.Name] - - - Nachhaltigkeitskonto-Nr. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nachhaltigkeitskontoname - table [Sustainability Accounts] column [Sustainability Account Name] - - - Land/Region - table [table.Name] - - - Länder-/Regionscode - table [Country/Region] column [Country Region Code] - - - Länder-/Regionsname - table [Country/Region] column [Country Region Name] - - - -Zuständigkeitseinheit - table [table.Name] - - - Zuständigkeitseinheitencode - table [Responsibility Centre] column [Responsibility Centre Code] - - - Zuständigkeitseinheitencode – Name - table [Responsibility Centre] column [Responsibility Centre Name] - - - Anlagenkapazität - table [Responsibility Centre] measure [Facility Capacity] - - - Nachhaltigkeitsziele - table [table.Name] - - - Scorecard-Nr. - table [Sustainability Goals] column [Score Card No.] - - - Anz. - table [Sustainability Goals] column [No.] - - - Name - table [Sustainability Goals] column [Name] - - - Besitzer - table [Sustainability Goals] column [Owner] - - - Zielwert für CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Zielwert für CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Zielwert für N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Zielwert für die Wasserintensität - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Zielwert für die Abfallintensität - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Hauptziel - table [Sustainability Goals] column [Main Goal] - - - Startdatum - table [Sustainability Goals] column [Start Date] - - - Enddatum - table [Sustainability Goals] column [End Date] - - - Ausgangswert-Startdatum - table [Sustainability Goals] column [Baseline Start Date] - - - Ausgangswert-Enddatum - table [Sustainability Goals] column [Baseline End Date] - - - CO2-Ziel - table [Sustainability Goals] measure [CO2 Target] - - - CO2 realisiert (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4-Ziel - table [Sustainability Goals] measure [CH4 Target] - - - N2O-Ziel - table [Sustainability Goals] measure [N2O Target] - - - CH4 realisiert (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O realisiert (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Wasserziel - table [Sustainability Goals] measure [Water Target] - - - Abfallziel - table [Sustainability Goals] measure [Waste Target] - - - Realisierter Wasserverbrauch (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Abfall realisiert (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e realisiert (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Aktueller CO2-Wert - table [Sustainability Goals] measure [CO2 Current Value] - - - Aktueller CH4-Wert - table [Sustainability Goals] measure [CH4 Current Value] - - - Aktueller N2O-Wert - table [Sustainability Goals] measure [N2O Current Value] - - - Aktueller CO2e-Wert - table [Sustainability Goals] measure [CO2e Current Value] - - - Aktueller Wasserwert - table [Sustainability Goals] measure [Water Current Value] - - - Aktueller Abfallwert - table [Sustainability Goals] measure [Waste Current Value] - - - Mitarbeiterposten - table [table.Name] - - - Postennr. - table [Employee Ledger Entries] column [Entry No.] - - - Belegtyp - table [Employee Ledger Entries] column [Document Type] - - - Belegnummer - table [Employee Ledger Entries] column [Document No.] - - - Beschreibung - table [Employee Ledger Entries] column [Description] - - - Mitarbeiterbetrag - table [Employee Ledger Entries] measure [Employee Amount] - - - Mitarbeiterposten – Link - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Mitarbeitequalifikationen - table [table.Name] - - - Mitarbeiterqualifikationscodes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Mitarbeiterqualifikationen - table [Employee Qualifications] measure [Employee Qualifications] - - - Emissionsgebühren - table [table.Name] - - - Emissionsart - table [Emission Fees] column [Emission Type] - - - Bereichstyp - table [Emission Fees] column [Scope Type] - - - Startdatum - table [Emission Fees] column [Starting Date] - - - Enddatum - table [Emission Fees] column [Ending Date] - - - Länder-/Regionscode - table [Emission Fees] column [Country Region Code] - - - -Zuständigkeitseinheit - table [Emission Fees] column [Responsibility Centre] - - - CO₂-Gebühr - table [Emission Fees] column [Carbon Fee] - - - Kohlenstoffäquivalentfaktor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e-Ziel - table [Emission Fees] measure [CO2e Target] - - - CO2-Kohlenstoff-Äquivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4-Kohlenstoff-Äquivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O-Kohlenstoff-Äquivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Mitarbeiter Abwesenheiten - table [table.Name] - - - Postennummer - table [Employee Absences] column [Entry No] - - - Von Datum - table [Employee Absences] column [From Date] - - - Bis Datum - table [Employee Absences] column [To Date] - - - Grund Abwesenheit - table [Employee Absences] column [Cause of Absence] - - - Beschreibung - table [Employee Absences] column [Description] - - - Mitarbeiter Abwesenheiten - table [Employee Absences] measure [Employee Absences] - - - Abwesenheitsstunden (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Unterkategorien des Nachhaltigkeitskontos - table [table.Name] - - - Unterkategoriencode - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Beschreibung der Unterkategorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Erneuerbare Energien - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Mitarbeiter - table [table.Name] - - - Mitarbeiternr. - table [Employees] column [Employee No.] - - - Vollständiger Name des Mitarbeiters - table [Employees] column [Employee Full Name] - - - Vorname des Mitarbeiters - table [Employees] column [Employee First Name] - - - Nachname des Mitarbeiters - table [Employees] column [Employee Last Name] - - - Geschlecht des Mitarbeiters - table [Employees] column [Employee Gender] - - - Mitarbeiter – Gewerkschaftscode - table [Employees] column [Employee Union Code] - - - Mitarbeiterstatus - table [Employees] column [Employee Status] - - - Grund für Inaktivität des Mitarbeiters - table [Employees] column [Employee Cause of Inactivity] - - - Datum der Inaktivität des Mitarbeiters - table [Employees] column [Employee Inactive Date] - - - Gründe für Beschäftigungsende des Mitarbeiters - table [Employees] column [Employee Grounds for Termination] - - - Mitarbeitergeburtsdatum - table [Employees] column [Employee Date of Birth] - - - Alter - table [Employees] column [Age] - - - Altersverteilung - table [Employees] column [Age Distribution] - - - Anzahl der Mitarbeiter - table [Employees] measure [No. of Employees] - - - Anzahl männlicher Mitarbeiter - table [Employees] measure [No. of Male Employees] - - - Anzahl weiblicher Mitarbeiter - table [Employees] measure [No. of Female Employees] - - - Anzahl sonstiger Mitarbeiter - table [Employees] measure [No. of Other Employees] - - - Männliche Mitarbeiter (%) - table [Employees] measure [Male Employees (%)] - - - Weibliche Mitarbeiter (%) - table [Employees] measure [Female Employees (%)] - - - Anzahl Mitarbeiter (%) - table [Employees] measure [Other Employees (%)] - - - Aktive Mitarbeiter - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-CH.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-CH.resx deleted file mode 100644 index 74e0ed371b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-CH.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fibukontokategorie - table [table.Name] - - - Beschreibung der Sachk.-Kategorie - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Nachhaltigkeitskontokategorie-Code - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Nachhaltigkeitskontokategorie – Emissionsumfang - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimensionssätze - table [table.Name] - - - Globale Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Globale Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Dimensionscode 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Dimensionscode 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Dimensionscode 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Dimensionscode 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Dimensionscode 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Dimensionscode 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - ABTEILUNG - table [Dimension Sets] column [DEPARTMENT] - - - Abteilungsname - table [Dimension Sets] column [Department Name] - - - DEBITORENGRUPPE - table [Dimension Sets] column [CUSTOMERGROUP] - - - Name der Debitorengruppe - table [Dimension Sets] column [Customer Group Name] - - - BEREICH - table [Dimension Sets] column [AREA] - - - Bereichsname - table [Dimension Sets] column [Area Name] - - - UNTERNEHMENSGRUPPE - table [Dimension Sets] column [BUSINESSGROUP] - - - Name der Unternehmensgruppe - table [Dimension Sets] column [Business Group Name] - - - VERKAUFSKAMPAGNE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Name der Verkaufskampagne - table [Dimension Sets] column [Sales campaign Name] - - - VERKÄUFER - table [Dimension Sets] column [SALESPERSON] - - - Verkäufername - table [Dimension Sets] column [Salesperson Name] - - - Datum - table [table.Name] - - - Woche Tag - table [Date] column [Week Day] - - - Tagestyp - table [Date] column [Day Type] - - - Kalender Jahr - table [Date] column [Calendar Year] - - - Kalenderquartal - table [Date] column [Calendar Quarter] - - - Kalender Quartal Jahr - table [Date] column [Calendar Quarter Year] - - - Kalendermonat - table [Date] column [Calendar Month] - - - Kalender Monat Jahr - table [Date] column [Calendar Month Year] - - - Kalender Woche - table [Date] column [Calendar Week] - - - Kalender Woche Jahr - table [Date] column [Calendar Week Year] - - - Kalender RelativeWochenPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativeMonatsPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativeQuartalsPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativeJahresPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginnDesMonats - table [Date] column [Calendar StartOfMonth] - - - Kalender EndeDesMonats - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginnDesQuartals - table [Date] column [Calendar StartOfQuarter] - - - Kalender EndeDesQuartals - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginnDesJahres - table [Date] column [Calendar StartOfYear] - - - Kalender EndeDesJahres - table [Date] column [Calendar EndOfYear] - - - Kalender MonatTage - table [Date] column [Calendar MonthDays] - - - Kalender QuartalTage - table [Date] column [Calendar QuarterDays] - - - Kalender JahrTage - table [Date] column [Calendar YearDays] - - - Kalender TagDesMonatsZahl - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender TagDesQuartalsZahl - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender TagDesJahresZahl - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWoche - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigerMonat - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigesQuartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigesJahr - table [Date] column [Calendar DatePreviousYear] - - - Geschäftlich Jahr - table [Date] column [Fiscal Year] - - - Geschäftsquartal - table [Date] column [Fiscal Quarter] - - - Geschäftlich Quartal Jahr - table [Date] column [Fiscal Quarter Year] - - - Geschäftlich Monat - table [Date] column [Fiscal Month] - - - Geschäftlich Monat Jahr - table [Date] column [Fiscal Month Year] - - - Geschäftswoche - table [Date] column [Fiscal Week] - - - Geschäftlich Woche Jahr - table [Date] column [Fiscal Week Year] - - - Geschäftlich RelativeWochenPos - table [Date] column [Fiscal RelativeWeekPos] - - - Geschäftlich RelativeMonatsPos - table [Date] column [Fiscal RelativeMonthPos] - - - Geschäftlich RelativeQuartalsPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Geschäftlich RelativeJahresPos - table [Date] column [Fiscal RelativeYearPos] - - - Geschäftlich BeginnDesMonats - table [Date] column [Fiscal StartOfMonth] - - - Geschäftlich EndeDesMonats - table [Date] column [Fiscal EndOfMonth] - - - Geschäftlich BeginnDesQuartals - table [Date] column [Fiscal StartOfQuarter] - - - Geschäftlich EndeDesQuartals - table [Date] column [Fiscal EndOfQuarter] - - - Geschäftlich BeginnDesJahres - table [Date] column [Fiscal StartOfYear] - - - Geschäftlich EndeDesJahres - table [Date] column [Fiscal EndOfYear] - - - Geschäftlich MonatTage - table [Date] column [Fiscal MonthDays] - - - Geschäftlich QuartalTage - table [Date] column [Fiscal QuarterDays] - - - Geschäftlich JahrTage - table [Date] column [Fiscal YearDays] - - - Geschäftlich TagDesMonatsZahl - table [Date] column [Fiscal DayOfMonthNumber] - - - Geschäftlich TagDesQuartalsZahl - table [Date] column [Fiscal DayOfQuarterNumber] - - - Geschäftlich TagDesJahresZahl - table [Date] column [Fiscal DayOfYearNumber] - - - Geschäftlich DatumVorigeWoche - table [Date] column [Fiscal DatePreviousWeek] - - - Geschäftlich DatumVorigerMonat - table [Date] column [Fiscal DatePreviousMonth] - - - Geschäftlich DatumVorigesQuartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Geschäftlich DatumVorigesJahr - table [Date] column [Fiscal DatePreviousYear] - - - GW Jahr - table [Date] column [FW Year] - - - GW Quartal - table [Date] column [FW Quarter] - - - GW Quartal Jahr - table [Date] column [FW Quarter Year] - - - GW Monat - table [Date] column [FW Month] - - - GW Monat Jahr - table [Date] column [FW Month Year] - - - GW Woche - table [Date] column [FW Week] - - - GW Periode - table [Date] column [FW Period] - - - GW Woche Jahr - table [Date] column [FW Week Year] - - - GW BeginnDerWoche - table [Date] column [FW StartOfWeek] - - - GW EndeDerWoche - table [Date] column [FW EndOfWeek] - - - GW RelativeWochenPos - table [Date] column [FW RelativeWeekPos] - - - GW RelativeMonatsPos - table [Date] column [FW RelativeMonthPos] - - - GW RelativeQuartalsPos - table [Date] column [FW RelativeQuarterPos] - - - GW RelativeJahresPos - table [Date] column [FW RelativeYearPos] - - - GW BeginnDesMonats - table [Date] column [FW StartOfMonth] - - - GW EndeDesMonats - table [Date] column [FW EndOfMonth] - - - GW BeginnDesQuartals - table [Date] column [FW StartOfQuarter] - - - GW EndeDesQuartals - table [Date] column [FW EndOfQuarter] - - - GW BeginnDesJahres - table [Date] column [FW StartOfYear] - - - GW EndeDesJahres - table [Date] column [FW EndOfYear] - - - GW MonatTage - table [Date] column [FW MonthDays] - - - GW QuartalTage - table [Date] column [FW QuarterDays] - - - GW JahrTage - table [Date] column [FW YearDays] - - - GW TagDesMonatsZahl - table [Date] column [FW DayOfMonthNumber] - - - GW TagDesQuartalsZahl - table [Date] column [FW DayOfQuarterNumber] - - - GW TagDesJahresZahl - table [Date] column [FW DayOfYearNumber] - - - GW DatumVorigeWoche - table [Date] column [FW DatePreviousWeek] - - - GW DatumVorigerMonat - table [Date] column [FW DatePreviousMonth] - - - GW DatumVorigesQuartal - table [Date] column [FW DatePreviousQuarter] - - - GW DatumVorigesJahr - table [Date] column [FW DatePreviousYear] - - - Relativ Tag - table [Date] column [Relative Day] - - - Anzahl der Tage - table [Date] measure [No. of Days] - - - Arbeitstage - table [Date] measure [Working Days] - - - Bereich - table [Date] measure [Ranged] - - - Geschäftlich Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Geschäftlich Quartal Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Quartal Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - GW Jahr-Quartal-Monat-Woche - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Geschäftlich Jahr-Monat - table [Date] hierarchy [Fiscal Year-Month] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Geschäftlich Jahr-Monat-Woche - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Monat - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jahr-Monat-Woche - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - GW Jahr-Monat-Woche - table [Date] hierarchy [FW Year-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - GW Jahr-Quartal-Woche - table [Date] hierarchy [FW Year-Quarter-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - GW Jahr-Woche - table [Date] hierarchy [FW Year-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Titel meines Berichts - table [Localized Labels] measure [My Report Title] - - - Beschriftung Meine Schaltfläche - table [Localized Labels] measure [My Button Caption] - - - Titel meines Visuals - table [Localized Labels] measure [My Visual Title] - - - Inaktive Mitarbeiter - table [Localized Labels] measure [Inactive Employees] - - - Gekündigte Mitarbeiter - table [Localized Labels] measure [Terminated Employees] - - - Mitarbeiter in Personalverbänden - table [Localized Labels] measure [Employees in Unions] - - - Sozialanalyse - table [Localized Labels] measure [Social Analysis] - - - Geschlechteverteilung - table [Localized Labels] measure [Gender Distribution] - - - Altersverteilung - table [Localized Labels] measure [Age Distribution] - - - Mitarbeiterqualifikationen - table [Localized Labels] measure [Employees Qualifications] - - - Realisierte Emissionen gegenüber Ziel - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e-Emissionen nach Umfang - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gasemissionen nach Kategorien - table [Localized Labels] measure [Gas Emissions by Category] - - - Realisierte Emissionen gegenüber Ausgangswert - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e-Emissionen gegenüber Ausgangswert - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e-Emissionen nach Firma - table [Localized Labels] measure [CO2e Emissions by Account] - - - Wasser- und Abfallanalyse - table [Localized Labels] measure [Water and Waste Analysis] - - - Wasser nach Anlagenstandort - table [Localized Labels] measure [Water by Facility Location] - - - Wasser nach Anlagenkapazität - table [Localized Labels] measure [Water by Facility Capacity] - - - Wasser und Abfall nach Typ - table [Localized Labels] measure [Water and Waste by Type] - - - Wasser- und Abfallintensität nach Typ - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Wasser- und Abfallintensität nach Anlage - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissionen nach Kategorie und Umfang - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissionen nach Kategorie - table [Localized Labels] measure [Emissions by Category] - - - Emissionen nach Umfang - table [Localized Labels] measure [Emissions by Scope] - - - CO2e-Analyse - table [Localized Labels] measure [CO2e Analysis] - - - CO2e-Emissionen nach Kategorien - table [Localized Labels] measure [CO2e Emissions by Category] - - - Kohlenstoffgutschrift nach Monat - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e-Äquivalent Emission pro Monat und Umsatz - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Mitarbeiterposten-Drillthrough - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Mitarbeiterposten - table [Localized Labels] measure [Employee Ledger Entries] - - - Nachhaltigkeitsposten - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Nachhaltigkeitsposten-Drillthrough - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Mitarbeiter-Hauptbuchposten-Drillthrough - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Nachhaltigkeitsübersicht - table [Localized Labels] measure [Sustainability Overview] - - - Nachhaltigkeitsanalysen - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e-Emissionen pro Monat - table [Localized Labels] measure [CO2e Emissions by Month] - - - Bereich-1- und Bereich-2-Analyse nach Kategorien pro Jahr - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e-Emissionen nach Abteilungen - table [Localized Labels] measure [CO2e Emissions by Department] - - - Der Weg zur CO2-Neutralität - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e-Emissionen nach Unternehmensgruppe - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Nutzung erneuerbarer Energien - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e-Emissionen im Zeitverlauf - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Intelligente CO2e-Prüfung - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e-Emissionen nach globaler Dimension eins - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e-Emissionen nach globaler Dimension zwei - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e-Äquivalent Emissionen pro Monat - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Mandantenname - table [Localized Labels] measure [Company Name] - - - Zuletzt aktualisiert - table [Localized Labels] measure [Last Refreshed] - - - Freigestellte Mitarbeiter - table [Localized Labels] measure [Released Employees] - - - CO2e-Zerlegungsstruktur - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e-Haupteinflüsse - table [Localized Labels] measure [CO2e Key Influences] - - - Wasser und Abfall – Jährliche und tägliche Veränderung - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Nachhaltigkeitsposten - table [table.Name] - - - Laufnr. - table [Sustainability Ledger Entries] column [Entry No.] - - - Beschreibung - table [Sustainability Ledger Entries] column [Description] - - - Wassertyp - table [Sustainability Ledger Entries] column [Water Type] - - - Wasser-/Abfallintensitätstyp - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Belegtyp - table [Sustainability Ledger Entries] column [Document Type] - - - CO2-Emissionen - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4-Emissionen - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2-Emissionsbilanz - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O-Emissionen - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e-Emissionen - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4-Emissionsbilanz - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Wasserintensität - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Abfallintensität - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Ins Wasser abgegeben - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e-Emissionsbilanz - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Bilanz am Sichtag für „Ins Wasser abgegeben“ - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Bilanz für „Ins Wasser abgegeben“ - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O-Emissionsbilanz - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Abfallintensitätsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Abfallintensitätsbilanz - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Wasserintensitätsbilanz - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Wasserintensitätsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2-Ausgangswert - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4-Ausgangswert - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O-Ausgangswert - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Wasserausgangswert - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Abfallausgangswert - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Wasser gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Abfall gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e-Ausgangswert - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Gekaufte Emissionsgutschriften - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Ausgangswert für „Ins Wasser abgegeben“ - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - „Ins Wasser abgegeben“ gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e-Emissionen (ohne Gutschriften) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Wasserintensität (VJ) - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Wasserintensität (JGJ) - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Abfallintensität (VJ) - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Abfallintensität (JGJ) - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Ins Wasser abgegeben (VJ) - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Ins Wasser abgegeben (JGJ) - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Ins Wasser abgegeben (LD) - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Abfallintensität (LD) - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Wasserintensität (LD) - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Wasserintensität (TGT) - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Abfallintensität (TGT) - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Ins Wasser abgegeben (TGT) - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Basislink - table [Sustainability Ledger Entries] measure [Base Link] - - - Link für Nachhaltigkeitsposten - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Wasser verfügbar - table [Sustainability Ledger Entries] measure [Water Available] - - - Nachhaltigkeitskonten - table [table.Name] - - - Nachhaltigkeitskonto-Nr. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nachhaltigkeitskontoname - table [Sustainability Accounts] column [Sustainability Account Name] - - - Land/Region - table [table.Name] - - - Länder-/Regionscode - table [Country/Region] column [Country Region Code] - - - Länder-/Regionsname - table [Country/Region] column [Country Region Name] - - - -Zuständigkeitseinheit - table [table.Name] - - - Zuständigkeitseinheitencode - table [Responsibility Centre] column [Responsibility Centre Code] - - - Zuständigkeitseinheitencode – Name - table [Responsibility Centre] column [Responsibility Centre Name] - - - Anlagenkapazität - table [Responsibility Centre] measure [Facility Capacity] - - - Nachhaltigkeitsziele - table [table.Name] - - - Scorecard-Nr. - table [Sustainability Goals] column [Score Card No.] - - - Anz. - table [Sustainability Goals] column [No.] - - - Name - table [Sustainability Goals] column [Name] - - - Besitzer - table [Sustainability Goals] column [Owner] - - - Zielwert für CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Zielwert für CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Zielwert für N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Zielwert für die Wasserintensität - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Zielwert für die Abfallintensität - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Hauptziel - table [Sustainability Goals] column [Main Goal] - - - Startdatum - table [Sustainability Goals] column [Start Date] - - - Enddatum - table [Sustainability Goals] column [End Date] - - - Ausgangswert-Startdatum - table [Sustainability Goals] column [Baseline Start Date] - - - Ausgangswert-Enddatum - table [Sustainability Goals] column [Baseline End Date] - - - CO2-Ziel - table [Sustainability Goals] measure [CO2 Target] - - - CO2 realisiert (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4-Ziel - table [Sustainability Goals] measure [CH4 Target] - - - N2O-Ziel - table [Sustainability Goals] measure [N2O Target] - - - CH4 realisiert (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O realisiert (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Wasserziel - table [Sustainability Goals] measure [Water Target] - - - Abfallziel - table [Sustainability Goals] measure [Waste Target] - - - Realisierter Wasserverbrauch (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Abfall realisiert (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e realisiert (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Aktueller CO2-Wert - table [Sustainability Goals] measure [CO2 Current Value] - - - Aktueller CH4-Wert - table [Sustainability Goals] measure [CH4 Current Value] - - - Aktueller N2O-Wert - table [Sustainability Goals] measure [N2O Current Value] - - - Aktueller CO2e-Wert - table [Sustainability Goals] measure [CO2e Current Value] - - - Aktueller Wasserwert - table [Sustainability Goals] measure [Water Current Value] - - - Aktueller Abfallwert - table [Sustainability Goals] measure [Waste Current Value] - - - Mitarbeiterposten - table [table.Name] - - - Laufnr. - table [Employee Ledger Entries] column [Entry No.] - - - Belegtyp - table [Employee Ledger Entries] column [Document Type] - - - Belegnummer - table [Employee Ledger Entries] column [Document No.] - - - Beschreibung - table [Employee Ledger Entries] column [Description] - - - Mitarbeiterbetrag - table [Employee Ledger Entries] measure [Employee Amount] - - - Mitarbeiterposten – Link - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Mitarbeitequalifikationen - table [table.Name] - - - Mitarbeiterqualifikationscodes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Mitarbeiterqualifikationen - table [Employee Qualifications] measure [Employee Qualifications] - - - Emissionsgebühren - table [table.Name] - - - Emissionsart - table [Emission Fees] column [Emission Type] - - - Bereichstyp - table [Emission Fees] column [Scope Type] - - - Startdatum - table [Emission Fees] column [Starting Date] - - - Enddatum - table [Emission Fees] column [Ending Date] - - - Länder-/Regionscode - table [Emission Fees] column [Country Region Code] - - - -Zuständigkeitseinheit - table [Emission Fees] column [Responsibility Centre] - - - CO₂-Gebühr - table [Emission Fees] column [Carbon Fee] - - - Kohlenstoffäquivalentfaktor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e-Ziel - table [Emission Fees] measure [CO2e Target] - - - CO2-Kohlenstoff-Äquivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4-Kohlenstoff-Äquivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O-Kohlenstoff-Äquivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Mitarbeiter Abwesenheiten - table [table.Name] - - - Postennummer - table [Employee Absences] column [Entry No] - - - Von Datum - table [Employee Absences] column [From Date] - - - Bis Datum - table [Employee Absences] column [To Date] - - - Grund Abwesenheit - table [Employee Absences] column [Cause of Absence] - - - Beschreibung - table [Employee Absences] column [Description] - - - Mitarbeiter Abwesenheiten - table [Employee Absences] measure [Employee Absences] - - - Abwesenheitsstunden (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Unterkategorien des Nachhaltigkeitskontos - table [table.Name] - - - Unterkategoriencode - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Beschreibung der Unterkategorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Erneuerbare Energien - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Mitarbeiter - table [table.Name] - - - Mitarbeiternr. - table [Employees] column [Employee No.] - - - Vollständiger Name des Mitarbeiters - table [Employees] column [Employee Full Name] - - - Vorname des Mitarbeiters - table [Employees] column [Employee First Name] - - - Nachname des Mitarbeiters - table [Employees] column [Employee Last Name] - - - Geschlecht des Mitarbeiters - table [Employees] column [Employee Gender] - - - Mitarbeiter – Personalverbandscode - table [Employees] column [Employee Union Code] - - - Mitarbeiterstatus - table [Employees] column [Employee Status] - - - Grund für Inaktivität des Mitarbeiters - table [Employees] column [Employee Cause of Inactivity] - - - Datum der Inaktivität des Mitarbeiters - table [Employees] column [Employee Inactive Date] - - - Gründe für Beschäftigungsende des Mitarbeiters - table [Employees] column [Employee Grounds for Termination] - - - Mitarbeitergeburtsdatum - table [Employees] column [Employee Date of Birth] - - - Alter - table [Employees] column [Age] - - - Altersverteilung - table [Employees] column [Age Distribution] - - - Anzahl der Mitarbeiter - table [Employees] measure [No. of Employees] - - - Anzahl männlicher Mitarbeiter - table [Employees] measure [No. of Male Employees] - - - Anzahl weiblicher Mitarbeiter - table [Employees] measure [No. of Female Employees] - - - Anzahl sonstiger Mitarbeiter - table [Employees] measure [No. of Other Employees] - - - Männliche Mitarbeiter (%) - table [Employees] measure [Male Employees (%)] - - - Weibliche Mitarbeiter (%) - table [Employees] measure [Female Employees (%)] - - - Anzahl Mitarbeiter (%) - table [Employees] measure [Other Employees (%)] - - - Aktive Mitarbeiter - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-DE.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-DE.resx deleted file mode 100644 index d90ebdfbfd..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.de-DE.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Sachkontokategorie - table [table.Name] - - - Beschreibung der Sachk.-Kategorie - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Nachhaltigkeitskontokategorie-Code - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Nachhaltigkeitskontokategorie – Emissionsumfang - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimensionssätze - table [table.Name] - - - Globale Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Globale Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcutdimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcutdimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcutdimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcutdimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcutdimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcutdimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - ABTEILUNG - table [Dimension Sets] column [DEPARTMENT] - - - Abteilungsname - table [Dimension Sets] column [Department Name] - - - DEBITORENGRUPPE - table [Dimension Sets] column [CUSTOMERGROUP] - - - Name der Debitorengruppe - table [Dimension Sets] column [Customer Group Name] - - - BEREICH - table [Dimension Sets] column [AREA] - - - Bereichsname - table [Dimension Sets] column [Area Name] - - - UNTERNEHMENSGRUPPE - table [Dimension Sets] column [BUSINESSGROUP] - - - Name der Unternehmensgruppe - table [Dimension Sets] column [Business Group Name] - - - VERKAUFSKAMPAGNE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Name der Verkaufskampagne - table [Dimension Sets] column [Sales campaign Name] - - - VERKÄUFER - table [Dimension Sets] column [SALESPERSON] - - - Verkäufername - table [Dimension Sets] column [Salesperson Name] - - - Datum - table [table.Name] - - - Woche Tag - table [Date] column [Week Day] - - - Tagestyp - table [Date] column [Day Type] - - - Kalender Jahr - table [Date] column [Calendar Year] - - - Kalenderquartal - table [Date] column [Calendar Quarter] - - - Kalender Quartal Jahr - table [Date] column [Calendar Quarter Year] - - - Kalendermonat - table [Date] column [Calendar Month] - - - Kalender Monat Jahr - table [Date] column [Calendar Month Year] - - - Kalender Woche - table [Date] column [Calendar Week] - - - Kalender Woche Jahr - table [Date] column [Calendar Week Year] - - - Kalender RelativeWochenPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativeMonatsPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativeQuartalsPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativeJahresPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginnDesMonats - table [Date] column [Calendar StartOfMonth] - - - Kalender EndeDesMonats - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginnDesQuartals - table [Date] column [Calendar StartOfQuarter] - - - Kalender EndeDesQuartals - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginnDesJahres - table [Date] column [Calendar StartOfYear] - - - Kalender EndeDesJahres - table [Date] column [Calendar EndOfYear] - - - Kalender MonatTage - table [Date] column [Calendar MonthDays] - - - Kalender QuartalTage - table [Date] column [Calendar QuarterDays] - - - Kalender JahrTage - table [Date] column [Calendar YearDays] - - - Kalender TagDesMonatsZahl - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender TagDesQuartalsZahl - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender TagDesJahresZahl - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWoche - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigerMonat - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigesQuartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigesJahr - table [Date] column [Calendar DatePreviousYear] - - - Geschäftlich Jahr - table [Date] column [Fiscal Year] - - - Geschäftsquartal - table [Date] column [Fiscal Quarter] - - - Geschäftlich Quartal Jahr - table [Date] column [Fiscal Quarter Year] - - - Geschäftlich Monat - table [Date] column [Fiscal Month] - - - Geschäftlich Monat Jahr - table [Date] column [Fiscal Month Year] - - - Geschäftswoche - table [Date] column [Fiscal Week] - - - Geschäftlich Woche Jahr - table [Date] column [Fiscal Week Year] - - - Geschäftlich RelativeWochenPos - table [Date] column [Fiscal RelativeWeekPos] - - - Geschäftlich RelativeMonatsPos - table [Date] column [Fiscal RelativeMonthPos] - - - Geschäftlich RelativeQuartalsPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Geschäftlich RelativeJahresPos - table [Date] column [Fiscal RelativeYearPos] - - - Geschäftlich BeginnDesMonats - table [Date] column [Fiscal StartOfMonth] - - - Geschäftlich EndeDesMonats - table [Date] column [Fiscal EndOfMonth] - - - Geschäftlich BeginnDesQuartals - table [Date] column [Fiscal StartOfQuarter] - - - Geschäftlich EndeDesQuartals - table [Date] column [Fiscal EndOfQuarter] - - - Geschäftlich BeginnDesJahres - table [Date] column [Fiscal StartOfYear] - - - Geschäftlich EndeDesJahres - table [Date] column [Fiscal EndOfYear] - - - Geschäftlich MonatTage - table [Date] column [Fiscal MonthDays] - - - Geschäftlich QuartalTage - table [Date] column [Fiscal QuarterDays] - - - Geschäftlich JahrTage - table [Date] column [Fiscal YearDays] - - - Geschäftlich TagDesMonatsZahl - table [Date] column [Fiscal DayOfMonthNumber] - - - Geschäftlich TagDesQuartalsZahl - table [Date] column [Fiscal DayOfQuarterNumber] - - - Geschäftlich TagDesJahresZahl - table [Date] column [Fiscal DayOfYearNumber] - - - Geschäftlich DatumVorigeWoche - table [Date] column [Fiscal DatePreviousWeek] - - - Geschäftlich DatumVorigerMonat - table [Date] column [Fiscal DatePreviousMonth] - - - Geschäftlich DatumVorigesQuartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Geschäftlich DatumVorigesJahr - table [Date] column [Fiscal DatePreviousYear] - - - GW Jahr - table [Date] column [FW Year] - - - GW Quartal - table [Date] column [FW Quarter] - - - GW Quartal Jahr - table [Date] column [FW Quarter Year] - - - GW Monat - table [Date] column [FW Month] - - - GW Monat Jahr - table [Date] column [FW Month Year] - - - GW Woche - table [Date] column [FW Week] - - - GW Periode - table [Date] column [FW Period] - - - GW Woche Jahr - table [Date] column [FW Week Year] - - - GW BeginnDerWoche - table [Date] column [FW StartOfWeek] - - - GW EndeDerWoche - table [Date] column [FW EndOfWeek] - - - GW RelativeWochenPos - table [Date] column [FW RelativeWeekPos] - - - GW RelativeMonatsPos - table [Date] column [FW RelativeMonthPos] - - - GW RelativeQuartalsPos - table [Date] column [FW RelativeQuarterPos] - - - GW RelativeJahresPos - table [Date] column [FW RelativeYearPos] - - - GW BeginnDesMonats - table [Date] column [FW StartOfMonth] - - - GW EndeDesMonats - table [Date] column [FW EndOfMonth] - - - GW BeginnDesQuartals - table [Date] column [FW StartOfQuarter] - - - GW EndeDesQuartals - table [Date] column [FW EndOfQuarter] - - - GW BeginnDesJahres - table [Date] column [FW StartOfYear] - - - GW EndeDesJahres - table [Date] column [FW EndOfYear] - - - GW MonatTage - table [Date] column [FW MonthDays] - - - GW QuartalTage - table [Date] column [FW QuarterDays] - - - GW JahrTage - table [Date] column [FW YearDays] - - - GW TagDesMonatsZahl - table [Date] column [FW DayOfMonthNumber] - - - GW TagDesQuartalsZahl - table [Date] column [FW DayOfQuarterNumber] - - - GW TagDesJahresZahl - table [Date] column [FW DayOfYearNumber] - - - GW DatumVorigeWoche - table [Date] column [FW DatePreviousWeek] - - - GW DatumVorigerMonat - table [Date] column [FW DatePreviousMonth] - - - GW DatumVorigesQuartal - table [Date] column [FW DatePreviousQuarter] - - - GW DatumVorigesJahr - table [Date] column [FW DatePreviousYear] - - - Relativ Tag - table [Date] column [Relative Day] - - - Anzahl der Tage - table [Date] measure [No. of Days] - - - Arbeitstage - table [Date] measure [Working Days] - - - Bereich - table [Date] measure [Ranged] - - - Geschäftlich Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Geschäftlich Quartal Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Quartal-Monat-Woche - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Quartal Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - GW Jahr-Quartal-Monat-Woche - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Geschäftlich Jahr-Monat - table [Date] hierarchy [Fiscal Year-Month] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Geschäftlich Jahr-Monat-Woche - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Geschäftlich Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Geschäftlich Monat Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Geschäftlich Woche Jahr - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jahr-Monat - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jahr-Monat-Woche - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Monat Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Woche Jahr - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - GW Jahr-Monat-Woche - table [Date] hierarchy [FW Year-Month-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - GW Monat Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - GW Jahr-Quartal-Woche - table [Date] hierarchy [FW Year-Quarter-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - GW Quartal Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - GW Jahr-Woche - table [Date] hierarchy [FW Year-Week] - - - GW Jahr - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - GW Woche Jahr - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Titel meines Berichts - table [Localized Labels] measure [My Report Title] - - - Beschriftung Meine Schaltfläche - table [Localized Labels] measure [My Button Caption] - - - Titel meines Visuals - table [Localized Labels] measure [My Visual Title] - - - Inaktive Mitarbeiter - table [Localized Labels] measure [Inactive Employees] - - - Gekündigte Mitarbeiter - table [Localized Labels] measure [Terminated Employees] - - - Mitarbeiter in Gewerkschaften - table [Localized Labels] measure [Employees in Unions] - - - Sozialanalyse - table [Localized Labels] measure [Social Analysis] - - - Geschlechteverteilung - table [Localized Labels] measure [Gender Distribution] - - - Altersverteilung - table [Localized Labels] measure [Age Distribution] - - - Mitarbeiterqualifikationen - table [Localized Labels] measure [Employees Qualifications] - - - Realisierte Emissionen gegenüber Ziel - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e-Emissionen nach Umfang - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gasemissionen nach Kategorien - table [Localized Labels] measure [Gas Emissions by Category] - - - Realisierte Emissionen gegenüber Ausgangswert - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e-Emissionen gegenüber Ausgangswert - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e-Emissionen nach Firma - table [Localized Labels] measure [CO2e Emissions by Account] - - - Wasser- und Abfallanalyse - table [Localized Labels] measure [Water and Waste Analysis] - - - Wasser nach Anlagenstandort - table [Localized Labels] measure [Water by Facility Location] - - - Wasser nach Anlagenkapazität - table [Localized Labels] measure [Water by Facility Capacity] - - - Wasser und Abfall nach Typ - table [Localized Labels] measure [Water and Waste by Type] - - - Wasser- und Abfallintensität nach Typ - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Wasser- und Abfallintensität nach Anlage - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissionen nach Kategorie und Umfang - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissionen nach Kategorie - table [Localized Labels] measure [Emissions by Category] - - - Emissionen nach Umfang - table [Localized Labels] measure [Emissions by Scope] - - - CO2e-Analyse - table [Localized Labels] measure [CO2e Analysis] - - - CO2e-Emissionen nach Kategorien - table [Localized Labels] measure [CO2e Emissions by Category] - - - Kohlenstoffgutschrift nach Monat - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e-Äquivalent Emission pro Monat und Umsatz - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Mitarbeiterposten-Drillthrough - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Mitarbeiterposten - table [Localized Labels] measure [Employee Ledger Entries] - - - Nachhaltigkeitsposten - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Nachhaltigkeitsposten-Drillthrough - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Mitarbeiter-Hauptbuchposten-Drillthrough - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Nachhaltigkeitsübersicht - table [Localized Labels] measure [Sustainability Overview] - - - Nachhaltigkeitsanalysen - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e-Emissionen pro Monat - table [Localized Labels] measure [CO2e Emissions by Month] - - - Bereich-1- und Bereich-2-Analyse nach Kategorien pro Jahr - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e-Emissionen nach Abteilungen - table [Localized Labels] measure [CO2e Emissions by Department] - - - Der Weg zur CO2-Neutralität - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e-Emissionen nach Unternehmensgruppe - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Nutzung erneuerbarer Energien - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e-Emissionen im Zeitverlauf - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Intelligente CO2e-Prüfung - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e-Emissionen nach globaler Dimension eins - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e-Emissionen nach globaler Dimension zwei - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e-Äquivalent Emissionen pro Monat - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Mandantenname - table [Localized Labels] measure [Company Name] - - - Zuletzt aktualisiert - table [Localized Labels] measure [Last Refreshed] - - - Freigestellte Mitarbeiter - table [Localized Labels] measure [Released Employees] - - - CO2e-Zerlegungsstruktur - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e-Haupteinflüsse - table [Localized Labels] measure [CO2e Key Influences] - - - Wasser und Abfall – Jährliche und tägliche Veränderung - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Nachhaltigkeitsposten - table [table.Name] - - - Postennr. - table [Sustainability Ledger Entries] column [Entry No.] - - - Beschreibung - table [Sustainability Ledger Entries] column [Description] - - - Wassertyp - table [Sustainability Ledger Entries] column [Water Type] - - - Wasser-/Abfallintensitätstyp - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Belegtyp - table [Sustainability Ledger Entries] column [Document Type] - - - CO2-Emissionen - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4-Emissionen - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2-Emissionsbilanz - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O-Emissionen - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e-Emissionen - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4-Emissionsbilanz - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Wasserintensität - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Abfallintensität - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Ins Wasser abgegeben - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e-Emissionsbilanz - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Bilanz am Sichtag für „Ins Wasser abgegeben“ - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Bilanz für „Ins Wasser abgegeben“ - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O-Emissionsbilanz - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O-Emissionsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Abfallintensitätsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Abfallintensitätsbilanz - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Wasserintensitätsbilanz - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Wasserintensitätsbilanz zum Stichtag - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2-Ausgangswert - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4-Ausgangswert - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O-Ausgangswert - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Wasserausgangswert - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Abfallausgangswert - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Wasser gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Abfall gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e-Ausgangswert - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Gekaufte Emissionsgutschriften - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Ausgangswert für „Ins Wasser abgegeben“ - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - „Ins Wasser abgegeben“ gegenüber Ausgangswert (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e-Emissionen (ohne Gutschriften) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Wasserintensität (VJ) - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Wasserintensität (JGJ) - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Abfallintensität (VJ) - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Abfallintensität (JGJ) - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Ins Wasser abgegeben (VJ) - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Ins Wasser abgegeben (JGJ) - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Ins Wasser abgegeben (LD) - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Abfallintensität (LD) - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Wasserintensität (LD) - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Wasserintensität (TGT) - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Abfallintensität (TGT) - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Ins Wasser abgegeben (TGT) - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Basislink - table [Sustainability Ledger Entries] measure [Base Link] - - - Link für Nachhaltigkeitsposten - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Wasser verfügbar - table [Sustainability Ledger Entries] measure [Water Available] - - - Nachhaltigkeitskonten - table [table.Name] - - - Nachhaltigkeitskonto-Nr. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nachhaltigkeitskontoname - table [Sustainability Accounts] column [Sustainability Account Name] - - - Land/Region - table [table.Name] - - - Länder-/Regionscode - table [Country/Region] column [Country Region Code] - - - Länder-/Regionsname - table [Country/Region] column [Country Region Name] - - - -Zuständigkeitseinheit - table [table.Name] - - - Zuständigkeitseinheitencode - table [Responsibility Centre] column [Responsibility Centre Code] - - - Zuständigkeitseinheitencode – Name - table [Responsibility Centre] column [Responsibility Centre Name] - - - Anlagenkapazität - table [Responsibility Centre] measure [Facility Capacity] - - - Nachhaltigkeitsziele - table [table.Name] - - - Scorecard-Nr. - table [Sustainability Goals] column [Score Card No.] - - - Anz. - table [Sustainability Goals] column [No.] - - - Name - table [Sustainability Goals] column [Name] - - - Besitzer - table [Sustainability Goals] column [Owner] - - - Zielwert für CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Zielwert für CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Zielwert für N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Zielwert für die Wasserintensität - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Zielwert für die Abfallintensität - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Hauptziel - table [Sustainability Goals] column [Main Goal] - - - Startdatum - table [Sustainability Goals] column [Start Date] - - - Enddatum - table [Sustainability Goals] column [End Date] - - - Ausgangswert-Startdatum - table [Sustainability Goals] column [Baseline Start Date] - - - Ausgangswert-Enddatum - table [Sustainability Goals] column [Baseline End Date] - - - CO2-Ziel - table [Sustainability Goals] measure [CO2 Target] - - - CO2 realisiert (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4-Ziel - table [Sustainability Goals] measure [CH4 Target] - - - N2O-Ziel - table [Sustainability Goals] measure [N2O Target] - - - CH4 realisiert (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O realisiert (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Wasserziel - table [Sustainability Goals] measure [Water Target] - - - Abfallziel - table [Sustainability Goals] measure [Waste Target] - - - Realisierter Wasserverbrauch (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Abfall realisiert (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e realisiert (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Aktueller CO2-Wert - table [Sustainability Goals] measure [CO2 Current Value] - - - Aktueller CH4-Wert - table [Sustainability Goals] measure [CH4 Current Value] - - - Aktueller N2O-Wert - table [Sustainability Goals] measure [N2O Current Value] - - - Aktueller CO2e-Wert - table [Sustainability Goals] measure [CO2e Current Value] - - - Aktueller Wasserwert - table [Sustainability Goals] measure [Water Current Value] - - - Aktueller Abfallwert - table [Sustainability Goals] measure [Waste Current Value] - - - Mitarbeiterposten - table [table.Name] - - - Postennr. - table [Employee Ledger Entries] column [Entry No.] - - - Belegtyp - table [Employee Ledger Entries] column [Document Type] - - - Belegnummer - table [Employee Ledger Entries] column [Document No.] - - - Beschreibung - table [Employee Ledger Entries] column [Description] - - - Mitarbeiterbetrag - table [Employee Ledger Entries] measure [Employee Amount] - - - Mitarbeiterposten – Link - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Mitarbeitequalifikationen - table [table.Name] - - - Mitarbeiterqualifikationscodes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Mitarbeiterqualifikationen - table [Employee Qualifications] measure [Employee Qualifications] - - - Emissionsgebühren - table [table.Name] - - - Emissionsart - table [Emission Fees] column [Emission Type] - - - Bereichstyp - table [Emission Fees] column [Scope Type] - - - Startdatum - table [Emission Fees] column [Starting Date] - - - Enddatum - table [Emission Fees] column [Ending Date] - - - Länder-/Regionscode - table [Emission Fees] column [Country Region Code] - - - -Zuständigkeitseinheit - table [Emission Fees] column [Responsibility Centre] - - - CO₂-Gebühr - table [Emission Fees] column [Carbon Fee] - - - Kohlenstoffäquivalentfaktor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e-Ziel - table [Emission Fees] measure [CO2e Target] - - - CO2-Kohlenstoff-Äquivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4-Kohlenstoff-Äquivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O-Kohlenstoff-Äquivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Mitarbeiter Abwesenheiten - table [table.Name] - - - Postennummer - table [Employee Absences] column [Entry No] - - - Von Datum - table [Employee Absences] column [From Date] - - - Bis Datum - table [Employee Absences] column [To Date] - - - Grund Abwesenheit - table [Employee Absences] column [Cause of Absence] - - - Beschreibung - table [Employee Absences] column [Description] - - - Mitarbeiter Abwesenheiten - table [Employee Absences] measure [Employee Absences] - - - Abwesenheitsstunden (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Unterkategorien des Nachhaltigkeitskontos - table [table.Name] - - - Unterkategoriencode - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Beschreibung der Unterkategorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Erneuerbare Energien - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Mitarbeiter - table [table.Name] - - - Mitarbeiternr. - table [Employees] column [Employee No.] - - - Vollständiger Name des Mitarbeiters - table [Employees] column [Employee Full Name] - - - Vorname des Mitarbeiters - table [Employees] column [Employee First Name] - - - Nachname des Mitarbeiters - table [Employees] column [Employee Last Name] - - - Geschlecht des Mitarbeiters - table [Employees] column [Employee Gender] - - - Mitarbeiter – Gewerkschaftscode - table [Employees] column [Employee Union Code] - - - Mitarbeiterstatus - table [Employees] column [Employee Status] - - - Grund für Inaktivität des Mitarbeiters - table [Employees] column [Employee Cause of Inactivity] - - - Datum der Inaktivität des Mitarbeiters - table [Employees] column [Employee Inactive Date] - - - Gründe für Beschäftigungsende des Mitarbeiters - table [Employees] column [Employee Grounds for Termination] - - - Mitarbeitergeburtsdatum - table [Employees] column [Employee Date of Birth] - - - Alter - table [Employees] column [Age] - - - Altersverteilung - table [Employees] column [Age Distribution] - - - Anzahl der Mitarbeiter - table [Employees] measure [No. of Employees] - - - Anzahl männlicher Mitarbeiter - table [Employees] measure [No. of Male Employees] - - - Anzahl weiblicher Mitarbeiter - table [Employees] measure [No. of Female Employees] - - - Anzahl sonstiger Mitarbeiter - table [Employees] measure [No. of Other Employees] - - - Männliche Mitarbeiter (%) - table [Employees] measure [Male Employees (%)] - - - Weibliche Mitarbeiter (%) - table [Employees] measure [Female Employees (%)] - - - Anzahl Mitarbeiter (%) - table [Employees] measure [Other Employees (%)] - - - Aktive Mitarbeiter - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-AU.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-AU.resx deleted file mode 100644 index 5de1270d01..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-AU.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - G/L Account Category - table [table.Name] - - - G/L Acc. Category Description - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Sustainability Account Category Code - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Sustainability Account Category Emission Scope - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - DEPARTMENT - table [Dimension Sets] column [DEPARTMENT] - - - Department Name - table [Dimension Sets] column [Department Name] - - - CUSTOMERGROUP - table [Dimension Sets] column [CUSTOMERGROUP] - - - Customer Group Name - table [Dimension Sets] column [Customer Group Name] - - - AREA - table [Dimension Sets] column [AREA] - - - Area Name - table [Dimension Sets] column [Area Name] - - - BUSINESSGROUP - table [Dimension Sets] column [BUSINESSGROUP] - - - Business Group Name - table [Dimension Sets] column [Business Group Name] - - - SALESCAMPAIGN - table [Dimension Sets] column [SALESCAMPAIGN] - - - Sales campaign Name - table [Dimension Sets] column [Sales campaign Name] - - - SALESPERSON - table [Dimension Sets] column [SALESPERSON] - - - Salesperson Name - table [Dimension Sets] column [Salesperson Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - No. of Days - table [Date] measure [No. of Days] - - - Working Days - table [Date] measure [Working Days] - - - Ranged - table [Date] measure [Ranged] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - My Report Title - table [Localized Labels] measure [My Report Title] - - - My Button Caption - table [Localized Labels] measure [My Button Caption] - - - My Visual Title - table [Localized Labels] measure [My Visual Title] - - - Inactive Employees - table [Localized Labels] measure [Inactive Employees] - - - Terminated Employees - table [Localized Labels] measure [Terminated Employees] - - - Employees in Unions - table [Localized Labels] measure [Employees in Unions] - - - Social Analysis - table [Localized Labels] measure [Social Analysis] - - - Gender Distribution - table [Localized Labels] measure [Gender Distribution] - - - Age Distribution - table [Localized Labels] measure [Age Distribution] - - - Employees Qualifications - table [Localized Labels] measure [Employees Qualifications] - - - Realised Emissions vs Target - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e Emissions by Scope - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gas Emissions by Category - table [Localized Labels] measure [Gas Emissions by Category] - - - Realised Emissions vs Baseline - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e Emissions vs Baseline - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e Emissions by Account - table [Localized Labels] measure [CO2e Emissions by Account] - - - Water and Waste Analysis - table [Localized Labels] measure [Water and Waste Analysis] - - - Water by Facility Location - table [Localized Labels] measure [Water by Facility Location] - - - Water by Facility Capacity - table [Localized Labels] measure [Water by Facility Capacity] - - - Water and Waste by Type - table [Localized Labels] measure [Water and Waste by Type] - - - Water and Waste Intensity by Type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Water and Waste Intensity by Facility - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissions by Category and Scope - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissions by Category - table [Localized Labels] measure [Emissions by Category] - - - Emissions by Scope - table [Localized Labels] measure [Emissions by Scope] - - - CO2e Analysis - table [Localized Labels] measure [CO2e Analysis] - - - CO2e Emissions by Category - table [Localized Labels] measure [CO2e Emissions by Category] - - - Carbon Credit by Month - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e Equivalent Emission by Month and Revenue - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Employee Entries Drillthrough - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Employee Ledger Entries - table [Localized Labels] measure [Employee Ledger Entries] - - - Sustainability Ledger Entries - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Sustainability Ledger Entries Drillthrough - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Employee Ledger Entries Drillthrough - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Sustainability Overview - table [Localized Labels] measure [Sustainability Overview] - - - Sustainability Analytics - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e Emissions by Month - table [Localized Labels] measure [CO2e Emissions by Month] - - - Scopes 1 and 2 Analysis by Categories Per Year - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e Emissions by Department - table [Localized Labels] measure [CO2e Emissions by Department] - - - Journey to Net-Zero Carbon - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e Emissions by Business Group - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Renewable Energy Usage - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e Emissions Over Time - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart Review - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e Emissions by Global Dimension One - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e Emissions by Global Dimension Two - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e Equivalent Emissions by Month - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Released Employees - table [Localized Labels] measure [Released Employees] - - - CO2e Decomposition Tree - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e Key Influences - table [Localized Labels] measure [CO2e Key Influences] - - - Water and Waste Yearly and Daily Change - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Sustainability Ledger Entries - table [table.Name] - - - Entry No. - table [Sustainability Ledger Entries] column [Entry No.] - - - Description - table [Sustainability Ledger Entries] column [Description] - - - Water Type - table [Sustainability Ledger Entries] column [Water Type] - - - Wate/Waste Intensity Type - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Document Type - table [Sustainability Ledger Entries] column [Document Type] - - - CO2 Emissions - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4 Emissions - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2 Emissions Balance - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O Emissions - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e Emissions - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4 Emissions Balance - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Water Intensity - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Waste Intensity - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Discharged Into Water - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e Emissions Balance - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Discharged Into Water Balance at Date - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Discharged Into Water Balance - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O Emissions Balance - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O Emissions Balance at Date - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Waste Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Waste Intensity Balance - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Water Intensity Balance - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Water Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2 Baseline - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4 Baseline - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O Baseline - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O vs Baseline (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Water Baseline - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Waste Baseline - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Waste vs Baseline (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e Baseline - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Purchased Carbon Credits - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Discharged Into Water Baseline - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Discharged Into Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e Emissions (Excl Credits) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Water Intensity PY - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Water Intensity YOY - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Waste Intensity PY - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Waste Intensity YOY - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Discharged Into Water PY - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Discharged Into Water YOY - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Discharged Into Water PD - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Waste Intensity PD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Water Intensity PD - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Water Intensity DOD - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Waste Intensity DOD - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Discharged Into Water DOD - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Base Link - table [Sustainability Ledger Entries] measure [Base Link] - - - Sustainability Ledger Entries Link - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Water Available - table [Sustainability Ledger Entries] measure [Water Available] - - - Sustainability Accounts - table [table.Name] - - - Sustainability Account No. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Sustainability Account Name - table [Sustainability Accounts] column [Sustainability Account Name] - - - Country/Region - table [table.Name] - - - Country Region Code - table [Country/Region] column [Country Region Code] - - - Country Region Name - table [Country/Region] column [Country Region Name] - - - Responsibility Centre - table [table.Name] - - - Responsibility Centre Code - table [Responsibility Centre] column [Responsibility Centre Code] - - - Responsibility Centre Name - table [Responsibility Centre] column [Responsibility Centre Name] - - - Facility Capacity - table [Responsibility Centre] measure [Facility Capacity] - - - Sustainability Goals - table [table.Name] - - - Score Card No. - table [Sustainability Goals] column [Score Card No.] - - - No. - table [Sustainability Goals] column [No.] - - - Name - table [Sustainability Goals] column [Name] - - - Owner - table [Sustainability Goals] column [Owner] - - - Target Value For CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Target Value For CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Target Value For N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Target Value For Water Intensity - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Target Value For Waste Intensity - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Main Goal - table [Sustainability Goals] column [Main Goal] - - - Start Date - table [Sustainability Goals] column [Start Date] - - - End Date - table [Sustainability Goals] column [End Date] - - - Baseline Start Date - table [Sustainability Goals] column [Baseline Start Date] - - - Baseline End Date - table [Sustainability Goals] column [Baseline End Date] - - - CO2 Target - table [Sustainability Goals] measure [CO2 Target] - - - CO2 Realised (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4 Target - table [Sustainability Goals] measure [CH4 Target] - - - N2O Target - table [Sustainability Goals] measure [N2O Target] - - - CH4 Realised (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O Realised (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Water Target - table [Sustainability Goals] measure [Water Target] - - - Waste Target - table [Sustainability Goals] measure [Waste Target] - - - Water Realised (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Waste Realised (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e Realised (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - CO2 Current Value - table [Sustainability Goals] measure [CO2 Current Value] - - - CH4 Current Value - table [Sustainability Goals] measure [CH4 Current Value] - - - N2O Current Value - table [Sustainability Goals] measure [N2O Current Value] - - - CO2e Current Value - table [Sustainability Goals] measure [CO2e Current Value] - - - Water Current Value - table [Sustainability Goals] measure [Water Current Value] - - - Waste Current Value - table [Sustainability Goals] measure [Waste Current Value] - - - Employee Ledger Entries - table [table.Name] - - - Entry No. - table [Employee Ledger Entries] column [Entry No.] - - - Document Type - table [Employee Ledger Entries] column [Document Type] - - - Document No. - table [Employee Ledger Entries] column [Document No.] - - - Description - table [Employee Ledger Entries] column [Description] - - - Employee Amount - table [Employee Ledger Entries] measure [Employee Amount] - - - Employee Ledger Entries Link - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Employee Qualifications - table [table.Name] - - - Employee Qualification Codes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Employee Qualifications - table [Employee Qualifications] measure [Employee Qualifications] - - - Emission Fees - table [table.Name] - - - Emission Type - table [Emission Fees] column [Emission Type] - - - Scope Type - table [Emission Fees] column [Scope Type] - - - Starting Date - table [Emission Fees] column [Starting Date] - - - Ending Date - table [Emission Fees] column [Ending Date] - - - Country Region Code - table [Emission Fees] column [Country Region Code] - - - Responsibility Centre - table [Emission Fees] column [Responsibility Centre] - - - Carbon Fee - table [Emission Fees] column [Carbon Fee] - - - Carbon Equivalent Factor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e Target - table [Emission Fees] measure [CO2e Target] - - - CO2 Carbon Equivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4 Carbon Equivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O Carbon Equivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Employee Absences - table [table.Name] - - - Entry No - table [Employee Absences] column [Entry No] - - - From Date - table [Employee Absences] column [From Date] - - - To Date - table [Employee Absences] column [To Date] - - - Cause of Absence - table [Employee Absences] column [Cause of Absence] - - - Description - table [Employee Absences] column [Description] - - - Employee Absences - table [Employee Absences] measure [Employee Absences] - - - Absence Hours (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Sustainability Sub-Account Categories - table [table.Name] - - - Sub-Category Code - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Sub-Category Description - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Renewable Energy - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Employees - table [table.Name] - - - Employee No. - table [Employees] column [Employee No.] - - - Employee Full Name - table [Employees] column [Employee Full Name] - - - Employee First Name - table [Employees] column [Employee First Name] - - - Employee Last Name - table [Employees] column [Employee Last Name] - - - Employee Gender - table [Employees] column [Employee Gender] - - - Employee Union Code - table [Employees] column [Employee Union Code] - - - Employee Status - table [Employees] column [Employee Status] - - - Employee Cause of Inactivity - table [Employees] column [Employee Cause of Inactivity] - - - Employee Inactive Date - table [Employees] column [Employee Inactive Date] - - - Employee Grounds for Termination - table [Employees] column [Employee Grounds for Termination] - - - Employee Date of Birth - table [Employees] column [Employee Date of Birth] - - - Age - table [Employees] column [Age] - - - Age Distribution - table [Employees] column [Age Distribution] - - - No. of Employees - table [Employees] measure [No. of Employees] - - - No. of Male Employees - table [Employees] measure [No. of Male Employees] - - - No. of Female Employees - table [Employees] measure [No. of Female Employees] - - - No. of Other Employees - table [Employees] measure [No. of Other Employees] - - - Male Employees (%) - table [Employees] measure [Male Employees (%)] - - - Female Employees (%) - table [Employees] measure [Female Employees (%)] - - - Other Employees (%) - table [Employees] measure [Other Employees (%)] - - - Active Employees - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-CA.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-CA.resx deleted file mode 100644 index 515de8968b..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-CA.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - G/L Account Category - table [table.Name] - - - G/L Acc. Category Description - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Sustainability Account Category Code - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Sustainability Account Category Emission Scope - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - DEPARTMENT - table [Dimension Sets] column [DEPARTMENT] - - - Department Name - table [Dimension Sets] column [Department Name] - - - CUSTOMERGROUP - table [Dimension Sets] column [CUSTOMERGROUP] - - - Customer Group Name - table [Dimension Sets] column [Customer Group Name] - - - AREA - table [Dimension Sets] column [AREA] - - - Area Name - table [Dimension Sets] column [Area Name] - - - BUSINESSGROUP - table [Dimension Sets] column [BUSINESSGROUP] - - - Business Group Name - table [Dimension Sets] column [Business Group Name] - - - SALESCAMPAIGN - table [Dimension Sets] column [SALESCAMPAIGN] - - - Sales campaign Name - table [Dimension Sets] column [Sales campaign Name] - - - SALESPERSON - table [Dimension Sets] column [SALESPERSON] - - - Salesperson Name - table [Dimension Sets] column [Salesperson Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - No. of Days - table [Date] measure [No. of Days] - - - Working Days - table [Date] measure [Working Days] - - - Ranged - table [Date] measure [Ranged] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - My Report Title - table [Localized Labels] measure [My Report Title] - - - My Button Caption - table [Localized Labels] measure [My Button Caption] - - - My Visual Title - table [Localized Labels] measure [My Visual Title] - - - Inactive Employees - table [Localized Labels] measure [Inactive Employees] - - - Terminated Employees - table [Localized Labels] measure [Terminated Employees] - - - Employees in Unions - table [Localized Labels] measure [Employees in Unions] - - - Social Analysis - table [Localized Labels] measure [Social Analysis] - - - Gender Distribution - table [Localized Labels] measure [Gender Distribution] - - - Age Distribution - table [Localized Labels] measure [Age Distribution] - - - Employees Qualifications - table [Localized Labels] measure [Employees Qualifications] - - - Realized Emissions vs Target - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e Emissions by Scope - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gas Emissions by Category - table [Localized Labels] measure [Gas Emissions by Category] - - - Realized Emissions vs Baseline - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e Emissions vs Baseline - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e Emissions by Account - table [Localized Labels] measure [CO2e Emissions by Account] - - - Water and Waste Analysis - table [Localized Labels] measure [Water and Waste Analysis] - - - Water by Facility Location - table [Localized Labels] measure [Water by Facility Location] - - - Water by Facility Capacity - table [Localized Labels] measure [Water by Facility Capacity] - - - Water and Waste by Type - table [Localized Labels] measure [Water and Waste by Type] - - - Water and Waste Intensity by Type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Water and Waste Intensity by Facility - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissions by Category and Scope - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissions by Category - table [Localized Labels] measure [Emissions by Category] - - - Emissions by Scope - table [Localized Labels] measure [Emissions by Scope] - - - CO2e Analysis - table [Localized Labels] measure [CO2e Analysis] - - - CO2e Emissions by Category - table [Localized Labels] measure [CO2e Emissions by Category] - - - Carbon Credit by Month - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e Equivalent Emission by Month and Revenue - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Employee Entries Drillthrough - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Employee Ledger Entries - table [Localized Labels] measure [Employee Ledger Entries] - - - Sustainability Ledger Entries - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Sustainability Ledger Entries Drillthrough - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Employee Ledger Entries Drillthrough - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Sustainability Overview - table [Localized Labels] measure [Sustainability Overview] - - - Sustainability Analytics - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e Emissions by Month - table [Localized Labels] measure [CO2e Emissions by Month] - - - Scopes 1 and 2 Analysis by Categories Per Year - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e Emissions by Department - table [Localized Labels] measure [CO2e Emissions by Department] - - - Journey to Net-Zero Carbon - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e Emissions by Business Group - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Renewable Energy Usage - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e Emissions Over Time - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart Review - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e Emissions by Global Dimension One - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e Emissions by Global Dimension Two - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e Equivalent Emissions by Month - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Released Employees - table [Localized Labels] measure [Released Employees] - - - CO2e Decomposition Tree - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e Key Influences - table [Localized Labels] measure [CO2e Key Influences] - - - Water and Waste Yearly and Daily Change - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Sustainability Ledger Entries - table [table.Name] - - - Entry No. - table [Sustainability Ledger Entries] column [Entry No.] - - - Description - table [Sustainability Ledger Entries] column [Description] - - - Water Type - table [Sustainability Ledger Entries] column [Water Type] - - - Wate/Waste Intensity Type - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Document Type - table [Sustainability Ledger Entries] column [Document Type] - - - CO2 Emissions - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4 Emissions - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2 Emissions Balance - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O Emissions - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e Emissions - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4 Emissions Balance - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Water Intensity - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Waste Intensity - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Discharged Into Water - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e Emissions Balance - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Discharged Into Water Balance at Date - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Discharged Into Water Balance - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O Emissions Balance - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O Emissions Balance at Date - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Waste Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Waste Intensity Balance - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Water Intensity Balance - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Water Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2 Baseline - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4 Baseline - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O Baseline - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O vs Baseline (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Water Baseline - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Waste Baseline - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Waste vs Baseline (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e Baseline - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Purchased Carbon Credits - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Discharged Into Water Baseline - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Discharged Into Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e Emissions (Excl Credits) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Water Intensity PY - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Water Intensity YOY - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Waste Intensity PY - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Waste Intensity YOY - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Discharged Into Water PY - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Discharged Into Water YOY - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Discharged Into Water PD - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Waste Intensity PD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Water Intensity PD - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Water Intensity DOD - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Waste Intensity DOD - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Discharged Into Water DOD - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Base Link - table [Sustainability Ledger Entries] measure [Base Link] - - - Sustainability Ledger Entries Link - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Water Available - table [Sustainability Ledger Entries] measure [Water Available] - - - Sustainability Accounts - table [table.Name] - - - Sustainability Account No. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Sustainability Account Name - table [Sustainability Accounts] column [Sustainability Account Name] - - - Country/Region - table [table.Name] - - - Country Region Code - table [Country/Region] column [Country Region Code] - - - Country Region Name - table [Country/Region] column [Country Region Name] - - - Responsibility Centre - table [table.Name] - - - Responsibility Centre Code - table [Responsibility Centre] column [Responsibility Centre Code] - - - Responsibility Centre Name - table [Responsibility Centre] column [Responsibility Centre Name] - - - Facility Capacity - table [Responsibility Centre] measure [Facility Capacity] - - - Sustainability Goals - table [table.Name] - - - Score Card No. - table [Sustainability Goals] column [Score Card No.] - - - No. - table [Sustainability Goals] column [No.] - - - Name - table [Sustainability Goals] column [Name] - - - Owner - table [Sustainability Goals] column [Owner] - - - Target Value For CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Target Value For CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Target Value For N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Target Value For Water Intensity - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Target Value For Waste Intensity - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Main Goal - table [Sustainability Goals] column [Main Goal] - - - Start Date - table [Sustainability Goals] column [Start Date] - - - End Date - table [Sustainability Goals] column [End Date] - - - Baseline Start Date - table [Sustainability Goals] column [Baseline Start Date] - - - Baseline End Date - table [Sustainability Goals] column [Baseline End Date] - - - CO2 Target - table [Sustainability Goals] measure [CO2 Target] - - - CO2 Realized (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4 Target - table [Sustainability Goals] measure [CH4 Target] - - - N2O Target - table [Sustainability Goals] measure [N2O Target] - - - CH4 Realized (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O Realized (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Water Target - table [Sustainability Goals] measure [Water Target] - - - Waste Target - table [Sustainability Goals] measure [Waste Target] - - - Water Realized (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Waste Realized (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e Realized (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - CO2 Current Value - table [Sustainability Goals] measure [CO2 Current Value] - - - CH4 Current Value - table [Sustainability Goals] measure [CH4 Current Value] - - - N2O Current Value - table [Sustainability Goals] measure [N2O Current Value] - - - CO2e Current Value - table [Sustainability Goals] measure [CO2e Current Value] - - - Water Current Value - table [Sustainability Goals] measure [Water Current Value] - - - Waste Current Value - table [Sustainability Goals] measure [Waste Current Value] - - - Employee Ledger Entries - table [table.Name] - - - Entry No. - table [Employee Ledger Entries] column [Entry No.] - - - Document Type - table [Employee Ledger Entries] column [Document Type] - - - Document No. - table [Employee Ledger Entries] column [Document No.] - - - Description - table [Employee Ledger Entries] column [Description] - - - Employee Amount - table [Employee Ledger Entries] measure [Employee Amount] - - - Employee Ledger Entries Link - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Employee Qualifications - table [table.Name] - - - Employee Qualification Codes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Employee Qualifications - table [Employee Qualifications] measure [Employee Qualifications] - - - Emission Fees - table [table.Name] - - - Emission Type - table [Emission Fees] column [Emission Type] - - - Scope Type - table [Emission Fees] column [Scope Type] - - - Starting Date - table [Emission Fees] column [Starting Date] - - - Ending Date - table [Emission Fees] column [Ending Date] - - - Country Region Code - table [Emission Fees] column [Country Region Code] - - - Responsibility Centre - table [Emission Fees] column [Responsibility Centre] - - - Carbon Fee - table [Emission Fees] column [Carbon Fee] - - - Carbon Equivalent Factor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e Target - table [Emission Fees] measure [CO2e Target] - - - CO2 Carbon Equivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4 Carbon Equivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O Carbon Equivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Employee Absences - table [table.Name] - - - Entry No - table [Employee Absences] column [Entry No] - - - From Date - table [Employee Absences] column [From Date] - - - To Date - table [Employee Absences] column [To Date] - - - Cause of Absence - table [Employee Absences] column [Cause of Absence] - - - Description - table [Employee Absences] column [Description] - - - Employee Absences - table [Employee Absences] measure [Employee Absences] - - - Absence Hours (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Sustainability Sub-Account Categories - table [table.Name] - - - Sub-Category Code - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Sub-Category Description - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Renewable Energy - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Employees - table [table.Name] - - - Employee No. - table [Employees] column [Employee No.] - - - Employee Full Name - table [Employees] column [Employee Full Name] - - - Employee First Name - table [Employees] column [Employee First Name] - - - Employee Last Name - table [Employees] column [Employee Last Name] - - - Employee Gender - table [Employees] column [Employee Gender] - - - Employee Union Code - table [Employees] column [Employee Union Code] - - - Employee Status - table [Employees] column [Employee Status] - - - Employee Cause of Inactivity - table [Employees] column [Employee Cause of Inactivity] - - - Employee Inactive Date - table [Employees] column [Employee Inactive Date] - - - Employee Grounds for Termination - table [Employees] column [Employee Grounds for Termination] - - - Employee Date of Birth - table [Employees] column [Employee Date of Birth] - - - Age - table [Employees] column [Age] - - - Age Distribution - table [Employees] column [Age Distribution] - - - No. of Employees - table [Employees] measure [No. of Employees] - - - No. of Male Employees - table [Employees] measure [No. of Male Employees] - - - No. of Female Employees - table [Employees] measure [No. of Female Employees] - - - No. of Other Employees - table [Employees] measure [No. of Other Employees] - - - Male Employees (%) - table [Employees] measure [Male Employees (%)] - - - Female Employees (%) - table [Employees] measure [Female Employees (%)] - - - Other Employees (%) - table [Employees] measure [Other Employees (%)] - - - Active Employees - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-GB.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-GB.resx deleted file mode 100644 index 5de1270d01..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-GB.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - G/L Account Category - table [table.Name] - - - G/L Acc. Category Description - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Sustainability Account Category Code - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Sustainability Account Category Emission Scope - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - DEPARTMENT - table [Dimension Sets] column [DEPARTMENT] - - - Department Name - table [Dimension Sets] column [Department Name] - - - CUSTOMERGROUP - table [Dimension Sets] column [CUSTOMERGROUP] - - - Customer Group Name - table [Dimension Sets] column [Customer Group Name] - - - AREA - table [Dimension Sets] column [AREA] - - - Area Name - table [Dimension Sets] column [Area Name] - - - BUSINESSGROUP - table [Dimension Sets] column [BUSINESSGROUP] - - - Business Group Name - table [Dimension Sets] column [Business Group Name] - - - SALESCAMPAIGN - table [Dimension Sets] column [SALESCAMPAIGN] - - - Sales campaign Name - table [Dimension Sets] column [Sales campaign Name] - - - SALESPERSON - table [Dimension Sets] column [SALESPERSON] - - - Salesperson Name - table [Dimension Sets] column [Salesperson Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - No. of Days - table [Date] measure [No. of Days] - - - Working Days - table [Date] measure [Working Days] - - - Ranged - table [Date] measure [Ranged] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - My Report Title - table [Localized Labels] measure [My Report Title] - - - My Button Caption - table [Localized Labels] measure [My Button Caption] - - - My Visual Title - table [Localized Labels] measure [My Visual Title] - - - Inactive Employees - table [Localized Labels] measure [Inactive Employees] - - - Terminated Employees - table [Localized Labels] measure [Terminated Employees] - - - Employees in Unions - table [Localized Labels] measure [Employees in Unions] - - - Social Analysis - table [Localized Labels] measure [Social Analysis] - - - Gender Distribution - table [Localized Labels] measure [Gender Distribution] - - - Age Distribution - table [Localized Labels] measure [Age Distribution] - - - Employees Qualifications - table [Localized Labels] measure [Employees Qualifications] - - - Realised Emissions vs Target - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e Emissions by Scope - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gas Emissions by Category - table [Localized Labels] measure [Gas Emissions by Category] - - - Realised Emissions vs Baseline - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e Emissions vs Baseline - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e Emissions by Account - table [Localized Labels] measure [CO2e Emissions by Account] - - - Water and Waste Analysis - table [Localized Labels] measure [Water and Waste Analysis] - - - Water by Facility Location - table [Localized Labels] measure [Water by Facility Location] - - - Water by Facility Capacity - table [Localized Labels] measure [Water by Facility Capacity] - - - Water and Waste by Type - table [Localized Labels] measure [Water and Waste by Type] - - - Water and Waste Intensity by Type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Water and Waste Intensity by Facility - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissions by Category and Scope - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissions by Category - table [Localized Labels] measure [Emissions by Category] - - - Emissions by Scope - table [Localized Labels] measure [Emissions by Scope] - - - CO2e Analysis - table [Localized Labels] measure [CO2e Analysis] - - - CO2e Emissions by Category - table [Localized Labels] measure [CO2e Emissions by Category] - - - Carbon Credit by Month - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e Equivalent Emission by Month and Revenue - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Employee Entries Drillthrough - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Employee Ledger Entries - table [Localized Labels] measure [Employee Ledger Entries] - - - Sustainability Ledger Entries - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Sustainability Ledger Entries Drillthrough - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Employee Ledger Entries Drillthrough - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Sustainability Overview - table [Localized Labels] measure [Sustainability Overview] - - - Sustainability Analytics - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e Emissions by Month - table [Localized Labels] measure [CO2e Emissions by Month] - - - Scopes 1 and 2 Analysis by Categories Per Year - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e Emissions by Department - table [Localized Labels] measure [CO2e Emissions by Department] - - - Journey to Net-Zero Carbon - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e Emissions by Business Group - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Renewable Energy Usage - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e Emissions Over Time - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart Review - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e Emissions by Global Dimension One - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e Emissions by Global Dimension Two - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e Equivalent Emissions by Month - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Released Employees - table [Localized Labels] measure [Released Employees] - - - CO2e Decomposition Tree - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e Key Influences - table [Localized Labels] measure [CO2e Key Influences] - - - Water and Waste Yearly and Daily Change - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Sustainability Ledger Entries - table [table.Name] - - - Entry No. - table [Sustainability Ledger Entries] column [Entry No.] - - - Description - table [Sustainability Ledger Entries] column [Description] - - - Water Type - table [Sustainability Ledger Entries] column [Water Type] - - - Wate/Waste Intensity Type - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Document Type - table [Sustainability Ledger Entries] column [Document Type] - - - CO2 Emissions - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4 Emissions - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2 Emissions Balance - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O Emissions - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e Emissions - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4 Emissions Balance - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Water Intensity - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Waste Intensity - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Discharged Into Water - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e Emissions Balance - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Discharged Into Water Balance at Date - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Discharged Into Water Balance - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O Emissions Balance - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O Emissions Balance at Date - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Waste Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Waste Intensity Balance - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Water Intensity Balance - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Water Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2 Baseline - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4 Baseline - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O Baseline - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O vs Baseline (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Water Baseline - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Waste Baseline - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Waste vs Baseline (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e Baseline - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Purchased Carbon Credits - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Discharged Into Water Baseline - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Discharged Into Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e Emissions (Excl Credits) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Water Intensity PY - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Water Intensity YOY - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Waste Intensity PY - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Waste Intensity YOY - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Discharged Into Water PY - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Discharged Into Water YOY - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Discharged Into Water PD - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Waste Intensity PD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Water Intensity PD - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Water Intensity DOD - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Waste Intensity DOD - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Discharged Into Water DOD - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Base Link - table [Sustainability Ledger Entries] measure [Base Link] - - - Sustainability Ledger Entries Link - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Water Available - table [Sustainability Ledger Entries] measure [Water Available] - - - Sustainability Accounts - table [table.Name] - - - Sustainability Account No. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Sustainability Account Name - table [Sustainability Accounts] column [Sustainability Account Name] - - - Country/Region - table [table.Name] - - - Country Region Code - table [Country/Region] column [Country Region Code] - - - Country Region Name - table [Country/Region] column [Country Region Name] - - - Responsibility Centre - table [table.Name] - - - Responsibility Centre Code - table [Responsibility Centre] column [Responsibility Centre Code] - - - Responsibility Centre Name - table [Responsibility Centre] column [Responsibility Centre Name] - - - Facility Capacity - table [Responsibility Centre] measure [Facility Capacity] - - - Sustainability Goals - table [table.Name] - - - Score Card No. - table [Sustainability Goals] column [Score Card No.] - - - No. - table [Sustainability Goals] column [No.] - - - Name - table [Sustainability Goals] column [Name] - - - Owner - table [Sustainability Goals] column [Owner] - - - Target Value For CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Target Value For CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Target Value For N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Target Value For Water Intensity - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Target Value For Waste Intensity - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Main Goal - table [Sustainability Goals] column [Main Goal] - - - Start Date - table [Sustainability Goals] column [Start Date] - - - End Date - table [Sustainability Goals] column [End Date] - - - Baseline Start Date - table [Sustainability Goals] column [Baseline Start Date] - - - Baseline End Date - table [Sustainability Goals] column [Baseline End Date] - - - CO2 Target - table [Sustainability Goals] measure [CO2 Target] - - - CO2 Realised (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4 Target - table [Sustainability Goals] measure [CH4 Target] - - - N2O Target - table [Sustainability Goals] measure [N2O Target] - - - CH4 Realised (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O Realised (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Water Target - table [Sustainability Goals] measure [Water Target] - - - Waste Target - table [Sustainability Goals] measure [Waste Target] - - - Water Realised (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Waste Realised (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e Realised (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - CO2 Current Value - table [Sustainability Goals] measure [CO2 Current Value] - - - CH4 Current Value - table [Sustainability Goals] measure [CH4 Current Value] - - - N2O Current Value - table [Sustainability Goals] measure [N2O Current Value] - - - CO2e Current Value - table [Sustainability Goals] measure [CO2e Current Value] - - - Water Current Value - table [Sustainability Goals] measure [Water Current Value] - - - Waste Current Value - table [Sustainability Goals] measure [Waste Current Value] - - - Employee Ledger Entries - table [table.Name] - - - Entry No. - table [Employee Ledger Entries] column [Entry No.] - - - Document Type - table [Employee Ledger Entries] column [Document Type] - - - Document No. - table [Employee Ledger Entries] column [Document No.] - - - Description - table [Employee Ledger Entries] column [Description] - - - Employee Amount - table [Employee Ledger Entries] measure [Employee Amount] - - - Employee Ledger Entries Link - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Employee Qualifications - table [table.Name] - - - Employee Qualification Codes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Employee Qualifications - table [Employee Qualifications] measure [Employee Qualifications] - - - Emission Fees - table [table.Name] - - - Emission Type - table [Emission Fees] column [Emission Type] - - - Scope Type - table [Emission Fees] column [Scope Type] - - - Starting Date - table [Emission Fees] column [Starting Date] - - - Ending Date - table [Emission Fees] column [Ending Date] - - - Country Region Code - table [Emission Fees] column [Country Region Code] - - - Responsibility Centre - table [Emission Fees] column [Responsibility Centre] - - - Carbon Fee - table [Emission Fees] column [Carbon Fee] - - - Carbon Equivalent Factor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e Target - table [Emission Fees] measure [CO2e Target] - - - CO2 Carbon Equivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4 Carbon Equivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O Carbon Equivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Employee Absences - table [table.Name] - - - Entry No - table [Employee Absences] column [Entry No] - - - From Date - table [Employee Absences] column [From Date] - - - To Date - table [Employee Absences] column [To Date] - - - Cause of Absence - table [Employee Absences] column [Cause of Absence] - - - Description - table [Employee Absences] column [Description] - - - Employee Absences - table [Employee Absences] measure [Employee Absences] - - - Absence Hours (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Sustainability Sub-Account Categories - table [table.Name] - - - Sub-Category Code - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Sub-Category Description - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Renewable Energy - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Employees - table [table.Name] - - - Employee No. - table [Employees] column [Employee No.] - - - Employee Full Name - table [Employees] column [Employee Full Name] - - - Employee First Name - table [Employees] column [Employee First Name] - - - Employee Last Name - table [Employees] column [Employee Last Name] - - - Employee Gender - table [Employees] column [Employee Gender] - - - Employee Union Code - table [Employees] column [Employee Union Code] - - - Employee Status - table [Employees] column [Employee Status] - - - Employee Cause of Inactivity - table [Employees] column [Employee Cause of Inactivity] - - - Employee Inactive Date - table [Employees] column [Employee Inactive Date] - - - Employee Grounds for Termination - table [Employees] column [Employee Grounds for Termination] - - - Employee Date of Birth - table [Employees] column [Employee Date of Birth] - - - Age - table [Employees] column [Age] - - - Age Distribution - table [Employees] column [Age Distribution] - - - No. of Employees - table [Employees] measure [No. of Employees] - - - No. of Male Employees - table [Employees] measure [No. of Male Employees] - - - No. of Female Employees - table [Employees] measure [No. of Female Employees] - - - No. of Other Employees - table [Employees] measure [No. of Other Employees] - - - Male Employees (%) - table [Employees] measure [Male Employees (%)] - - - Female Employees (%) - table [Employees] measure [Female Employees (%)] - - - Other Employees (%) - table [Employees] measure [Other Employees (%)] - - - Active Employees - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-NZ.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-NZ.resx deleted file mode 100644 index 5de1270d01..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-NZ.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - G/L Account Category - table [table.Name] - - - G/L Acc. Category Description - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Sustainability Account Category Code - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Sustainability Account Category Emission Scope - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - DEPARTMENT - table [Dimension Sets] column [DEPARTMENT] - - - Department Name - table [Dimension Sets] column [Department Name] - - - CUSTOMERGROUP - table [Dimension Sets] column [CUSTOMERGROUP] - - - Customer Group Name - table [Dimension Sets] column [Customer Group Name] - - - AREA - table [Dimension Sets] column [AREA] - - - Area Name - table [Dimension Sets] column [Area Name] - - - BUSINESSGROUP - table [Dimension Sets] column [BUSINESSGROUP] - - - Business Group Name - table [Dimension Sets] column [Business Group Name] - - - SALESCAMPAIGN - table [Dimension Sets] column [SALESCAMPAIGN] - - - Sales campaign Name - table [Dimension Sets] column [Sales campaign Name] - - - SALESPERSON - table [Dimension Sets] column [SALESPERSON] - - - Salesperson Name - table [Dimension Sets] column [Salesperson Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - No. of Days - table [Date] measure [No. of Days] - - - Working Days - table [Date] measure [Working Days] - - - Ranged - table [Date] measure [Ranged] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - My Report Title - table [Localized Labels] measure [My Report Title] - - - My Button Caption - table [Localized Labels] measure [My Button Caption] - - - My Visual Title - table [Localized Labels] measure [My Visual Title] - - - Inactive Employees - table [Localized Labels] measure [Inactive Employees] - - - Terminated Employees - table [Localized Labels] measure [Terminated Employees] - - - Employees in Unions - table [Localized Labels] measure [Employees in Unions] - - - Social Analysis - table [Localized Labels] measure [Social Analysis] - - - Gender Distribution - table [Localized Labels] measure [Gender Distribution] - - - Age Distribution - table [Localized Labels] measure [Age Distribution] - - - Employees Qualifications - table [Localized Labels] measure [Employees Qualifications] - - - Realised Emissions vs Target - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e Emissions by Scope - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gas Emissions by Category - table [Localized Labels] measure [Gas Emissions by Category] - - - Realised Emissions vs Baseline - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e Emissions vs Baseline - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e Emissions by Account - table [Localized Labels] measure [CO2e Emissions by Account] - - - Water and Waste Analysis - table [Localized Labels] measure [Water and Waste Analysis] - - - Water by Facility Location - table [Localized Labels] measure [Water by Facility Location] - - - Water by Facility Capacity - table [Localized Labels] measure [Water by Facility Capacity] - - - Water and Waste by Type - table [Localized Labels] measure [Water and Waste by Type] - - - Water and Waste Intensity by Type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Water and Waste Intensity by Facility - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissions by Category and Scope - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissions by Category - table [Localized Labels] measure [Emissions by Category] - - - Emissions by Scope - table [Localized Labels] measure [Emissions by Scope] - - - CO2e Analysis - table [Localized Labels] measure [CO2e Analysis] - - - CO2e Emissions by Category - table [Localized Labels] measure [CO2e Emissions by Category] - - - Carbon Credit by Month - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e Equivalent Emission by Month and Revenue - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Employee Entries Drillthrough - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Employee Ledger Entries - table [Localized Labels] measure [Employee Ledger Entries] - - - Sustainability Ledger Entries - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Sustainability Ledger Entries Drillthrough - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Employee Ledger Entries Drillthrough - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Sustainability Overview - table [Localized Labels] measure [Sustainability Overview] - - - Sustainability Analytics - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e Emissions by Month - table [Localized Labels] measure [CO2e Emissions by Month] - - - Scopes 1 and 2 Analysis by Categories Per Year - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e Emissions by Department - table [Localized Labels] measure [CO2e Emissions by Department] - - - Journey to Net-Zero Carbon - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e Emissions by Business Group - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Renewable Energy Usage - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e Emissions Over Time - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart Review - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e Emissions by Global Dimension One - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e Emissions by Global Dimension Two - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e Equivalent Emissions by Month - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Released Employees - table [Localized Labels] measure [Released Employees] - - - CO2e Decomposition Tree - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e Key Influences - table [Localized Labels] measure [CO2e Key Influences] - - - Water and Waste Yearly and Daily Change - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Sustainability Ledger Entries - table [table.Name] - - - Entry No. - table [Sustainability Ledger Entries] column [Entry No.] - - - Description - table [Sustainability Ledger Entries] column [Description] - - - Water Type - table [Sustainability Ledger Entries] column [Water Type] - - - Wate/Waste Intensity Type - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Document Type - table [Sustainability Ledger Entries] column [Document Type] - - - CO2 Emissions - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4 Emissions - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2 Emissions Balance - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O Emissions - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e Emissions - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4 Emissions Balance - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Water Intensity - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Waste Intensity - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Discharged Into Water - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e Emissions Balance - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Discharged Into Water Balance at Date - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Discharged Into Water Balance - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O Emissions Balance - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O Emissions Balance at Date - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Waste Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Waste Intensity Balance - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Water Intensity Balance - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Water Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2 Baseline - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4 Baseline - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O Baseline - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O vs Baseline (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Water Baseline - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Waste Baseline - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Waste vs Baseline (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e Baseline - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Purchased Carbon Credits - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Discharged Into Water Baseline - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Discharged Into Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e Emissions (Excl Credits) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Water Intensity PY - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Water Intensity YOY - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Waste Intensity PY - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Waste Intensity YOY - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Discharged Into Water PY - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Discharged Into Water YOY - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Discharged Into Water PD - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Waste Intensity PD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Water Intensity PD - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Water Intensity DOD - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Waste Intensity DOD - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Discharged Into Water DOD - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Base Link - table [Sustainability Ledger Entries] measure [Base Link] - - - Sustainability Ledger Entries Link - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Water Available - table [Sustainability Ledger Entries] measure [Water Available] - - - Sustainability Accounts - table [table.Name] - - - Sustainability Account No. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Sustainability Account Name - table [Sustainability Accounts] column [Sustainability Account Name] - - - Country/Region - table [table.Name] - - - Country Region Code - table [Country/Region] column [Country Region Code] - - - Country Region Name - table [Country/Region] column [Country Region Name] - - - Responsibility Centre - table [table.Name] - - - Responsibility Centre Code - table [Responsibility Centre] column [Responsibility Centre Code] - - - Responsibility Centre Name - table [Responsibility Centre] column [Responsibility Centre Name] - - - Facility Capacity - table [Responsibility Centre] measure [Facility Capacity] - - - Sustainability Goals - table [table.Name] - - - Score Card No. - table [Sustainability Goals] column [Score Card No.] - - - No. - table [Sustainability Goals] column [No.] - - - Name - table [Sustainability Goals] column [Name] - - - Owner - table [Sustainability Goals] column [Owner] - - - Target Value For CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Target Value For CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Target Value For N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Target Value For Water Intensity - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Target Value For Waste Intensity - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Main Goal - table [Sustainability Goals] column [Main Goal] - - - Start Date - table [Sustainability Goals] column [Start Date] - - - End Date - table [Sustainability Goals] column [End Date] - - - Baseline Start Date - table [Sustainability Goals] column [Baseline Start Date] - - - Baseline End Date - table [Sustainability Goals] column [Baseline End Date] - - - CO2 Target - table [Sustainability Goals] measure [CO2 Target] - - - CO2 Realised (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4 Target - table [Sustainability Goals] measure [CH4 Target] - - - N2O Target - table [Sustainability Goals] measure [N2O Target] - - - CH4 Realised (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O Realised (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Water Target - table [Sustainability Goals] measure [Water Target] - - - Waste Target - table [Sustainability Goals] measure [Waste Target] - - - Water Realised (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Waste Realised (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e Realised (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - CO2 Current Value - table [Sustainability Goals] measure [CO2 Current Value] - - - CH4 Current Value - table [Sustainability Goals] measure [CH4 Current Value] - - - N2O Current Value - table [Sustainability Goals] measure [N2O Current Value] - - - CO2e Current Value - table [Sustainability Goals] measure [CO2e Current Value] - - - Water Current Value - table [Sustainability Goals] measure [Water Current Value] - - - Waste Current Value - table [Sustainability Goals] measure [Waste Current Value] - - - Employee Ledger Entries - table [table.Name] - - - Entry No. - table [Employee Ledger Entries] column [Entry No.] - - - Document Type - table [Employee Ledger Entries] column [Document Type] - - - Document No. - table [Employee Ledger Entries] column [Document No.] - - - Description - table [Employee Ledger Entries] column [Description] - - - Employee Amount - table [Employee Ledger Entries] measure [Employee Amount] - - - Employee Ledger Entries Link - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Employee Qualifications - table [table.Name] - - - Employee Qualification Codes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Employee Qualifications - table [Employee Qualifications] measure [Employee Qualifications] - - - Emission Fees - table [table.Name] - - - Emission Type - table [Emission Fees] column [Emission Type] - - - Scope Type - table [Emission Fees] column [Scope Type] - - - Starting Date - table [Emission Fees] column [Starting Date] - - - Ending Date - table [Emission Fees] column [Ending Date] - - - Country Region Code - table [Emission Fees] column [Country Region Code] - - - Responsibility Centre - table [Emission Fees] column [Responsibility Centre] - - - Carbon Fee - table [Emission Fees] column [Carbon Fee] - - - Carbon Equivalent Factor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e Target - table [Emission Fees] measure [CO2e Target] - - - CO2 Carbon Equivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4 Carbon Equivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O Carbon Equivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Employee Absences - table [table.Name] - - - Entry No - table [Employee Absences] column [Entry No] - - - From Date - table [Employee Absences] column [From Date] - - - To Date - table [Employee Absences] column [To Date] - - - Cause of Absence - table [Employee Absences] column [Cause of Absence] - - - Description - table [Employee Absences] column [Description] - - - Employee Absences - table [Employee Absences] measure [Employee Absences] - - - Absence Hours (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Sustainability Sub-Account Categories - table [table.Name] - - - Sub-Category Code - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Sub-Category Description - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Renewable Energy - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Employees - table [table.Name] - - - Employee No. - table [Employees] column [Employee No.] - - - Employee Full Name - table [Employees] column [Employee Full Name] - - - Employee First Name - table [Employees] column [Employee First Name] - - - Employee Last Name - table [Employees] column [Employee Last Name] - - - Employee Gender - table [Employees] column [Employee Gender] - - - Employee Union Code - table [Employees] column [Employee Union Code] - - - Employee Status - table [Employees] column [Employee Status] - - - Employee Cause of Inactivity - table [Employees] column [Employee Cause of Inactivity] - - - Employee Inactive Date - table [Employees] column [Employee Inactive Date] - - - Employee Grounds for Termination - table [Employees] column [Employee Grounds for Termination] - - - Employee Date of Birth - table [Employees] column [Employee Date of Birth] - - - Age - table [Employees] column [Age] - - - Age Distribution - table [Employees] column [Age Distribution] - - - No. of Employees - table [Employees] measure [No. of Employees] - - - No. of Male Employees - table [Employees] measure [No. of Male Employees] - - - No. of Female Employees - table [Employees] measure [No. of Female Employees] - - - No. of Other Employees - table [Employees] measure [No. of Other Employees] - - - Male Employees (%) - table [Employees] measure [Male Employees (%)] - - - Female Employees (%) - table [Employees] measure [Female Employees (%)] - - - Other Employees (%) - table [Employees] measure [Other Employees (%)] - - - Active Employees - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-US.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-US.resx deleted file mode 100644 index d7fa4a7c11..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.en-US.resx +++ /dev/null @@ -1,1634 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - G/L Account Category - table [table.Name] - - - G/L Acc. Category Description - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Sustainability Account Category Code - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Sustainability Account Category Emission Scope - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimension Sets - table [table.Name] - - - Global Dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - - table [Dimension Sets] column [Global Dimension 1] - - - Global Dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcut Dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcut Dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcut Dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcut Dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcut Dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcut Dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - DEPARTMENT - table [Dimension Sets] column [DEPARTMENT] - - - Department Name - table [Dimension Sets] column [Department Name] - - - CUSTOMERGROUP - table [Dimension Sets] column [CUSTOMERGROUP] - - - Customer Group Name - table [Dimension Sets] column [Customer Group Name] - - - AREA - table [Dimension Sets] column [AREA] - - - Area Name - table [Dimension Sets] column [Area Name] - - - BUSINESSGROUP - table [Dimension Sets] column [BUSINESSGROUP] - - - Business Group Name - table [Dimension Sets] column [Business Group Name] - - - SALESCAMPAIGN - table [Dimension Sets] column [SALESCAMPAIGN] - - - Sales campaign Name - table [Dimension Sets] column [Sales campaign Name] - - - SALESPERSON - table [Dimension Sets] column [SALESPERSON] - - - Salesperson Name - table [Dimension Sets] column [Salesperson Name] - - - Date - table [table.Name] - - - Week Day - table [Date] column [Week Day] - - - Day Type - table [Date] column [Day Type] - - - Calendar Year - table [Date] column [Calendar Year] - - - - table [Date] column [Calendar Year] - - - Calendar Quarter - table [Date] column [Calendar Quarter] - - - Calendar Quarter Year - table [Date] column [Calendar Quarter Year] - - - Calendar Month - table [Date] column [Calendar Month] - - - Calendar Month Year - table [Date] column [Calendar Month Year] - - - Calendar Week - table [Date] column [Calendar Week] - - - Calendar Week Year - table [Date] column [Calendar Week Year] - - - Calendar RelativeWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Calendar RelativeMonthPos - table [Date] column [Calendar RelativeMonthPos] - - - Calendar RelativeQuarterPos - table [Date] column [Calendar RelativeQuarterPos] - - - Calendar RelativeYearPos - table [Date] column [Calendar RelativeYearPos] - - - Calendar StartOfMonth - table [Date] column [Calendar StartOfMonth] - - - Calendar EndOfMonth - table [Date] column [Calendar EndOfMonth] - - - Calendar StartOfQuarter - table [Date] column [Calendar StartOfQuarter] - - - Calendar EndOfQuarter - table [Date] column [Calendar EndOfQuarter] - - - Calendar StartOfYear - table [Date] column [Calendar StartOfYear] - - - Calendar EndOfYear - table [Date] column [Calendar EndOfYear] - - - Calendar MonthDays - table [Date] column [Calendar MonthDays] - - - Calendar QuarterDays - table [Date] column [Calendar QuarterDays] - - - Calendar YearDays - table [Date] column [Calendar YearDays] - - - Calendar DayOfMonthNumber - table [Date] column [Calendar DayOfMonthNumber] - - - Calendar DayOfQuarterNumber - table [Date] column [Calendar DayOfQuarterNumber] - - - Calendar DayOfYearNumber - table [Date] column [Calendar DayOfYearNumber] - - - Calendar DatePreviousWeek - table [Date] column [Calendar DatePreviousWeek] - - - Calendar DatePreviousMonth - table [Date] column [Calendar DatePreviousMonth] - - - Calendar DatePreviousQuarter - table [Date] column [Calendar DatePreviousQuarter] - - - Calendar DatePreviousYear - table [Date] column [Calendar DatePreviousYear] - - - Fiscal Year - table [Date] column [Fiscal Year] - - - - table [Date] column [Fiscal Year] - - - Fiscal Quarter - table [Date] column [Fiscal Quarter] - - - Fiscal Quarter Year - table [Date] column [Fiscal Quarter Year] - - - Fiscal Month - table [Date] column [Fiscal Month] - - - Fiscal Month Year - table [Date] column [Fiscal Month Year] - - - Fiscal Week - table [Date] column [Fiscal Week] - - - Fiscal Week Year - table [Date] column [Fiscal Week Year] - - - Fiscal RelativeWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscal RelativeMonthPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscal RelativeQuarterPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscal RelativeYearPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscal StartOfMonth - table [Date] column [Fiscal StartOfMonth] - - - Fiscal EndOfMonth - table [Date] column [Fiscal EndOfMonth] - - - Fiscal StartOfQuarter - table [Date] column [Fiscal StartOfQuarter] - - - Fiscal EndOfQuarter - table [Date] column [Fiscal EndOfQuarter] - - - Fiscal StartOfYear - table [Date] column [Fiscal StartOfYear] - - - Fiscal EndOfYear - table [Date] column [Fiscal EndOfYear] - - - Fiscal MonthDays - table [Date] column [Fiscal MonthDays] - - - Fiscal QuarterDays - table [Date] column [Fiscal QuarterDays] - - - Fiscal YearDays - table [Date] column [Fiscal YearDays] - - - Fiscal DayOfMonthNumber - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscal DayOfQuarterNumber - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscal DayOfYearNumber - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscal DatePreviousWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscal DatePreviousMonth - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscal DatePreviousQuarter - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscal DatePreviousYear - table [Date] column [Fiscal DatePreviousYear] - - - FW Year - table [Date] column [FW Year] - - - - table [Date] column [FW Year] - - - FW Quarter - table [Date] column [FW Quarter] - - - FW Quarter Year - table [Date] column [FW Quarter Year] - - - FW Month - table [Date] column [FW Month] - - - FW Month Year - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Period - table [Date] column [FW Period] - - - FW Week Year - table [Date] column [FW Week Year] - - - FW StartOfWeek - table [Date] column [FW StartOfWeek] - - - FW EndOfWeek - table [Date] column [FW EndOfWeek] - - - FW RelativeWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelativeMonthPos - table [Date] column [FW RelativeMonthPos] - - - FW RelativeQuarterPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelativeYearPos - table [Date] column [FW RelativeYearPos] - - - FW StartOfMonth - table [Date] column [FW StartOfMonth] - - - FW EndOfMonth - table [Date] column [FW EndOfMonth] - - - FW StartOfQuarter - table [Date] column [FW StartOfQuarter] - - - FW EndOfQuarter - table [Date] column [FW EndOfQuarter] - - - FW StartOfYear - table [Date] column [FW StartOfYear] - - - FW EndOfYear - table [Date] column [FW EndOfYear] - - - FW MonthDays - table [Date] column [FW MonthDays] - - - FW QuarterDays - table [Date] column [FW QuarterDays] - - - FW YearDays - table [Date] column [FW YearDays] - - - FW DayOfMonthNumber - table [Date] column [FW DayOfMonthNumber] - - - FW DayOfQuarterNumber - table [Date] column [FW DayOfQuarterNumber] - - - FW DayOfYearNumber - table [Date] column [FW DayOfYearNumber] - - - FW DatePreviousWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatePreviousMonth - table [Date] column [FW DatePreviousMonth] - - - FW DatePreviousQuarter - table [Date] column [FW DatePreviousQuarter] - - - FW DatePreviousYear - table [Date] column [FW DatePreviousYear] - - - Relative Day - table [Date] column [Relative Day] - - - No. of Days - table [Date] measure [No. of Days] - - - Working Days - table [Date] measure [Working Days] - - - Ranged - table [Date] measure [Ranged] - - - Fiscal Year-Quarter-Month-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscal Quarter Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Quarter-Month-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Calendar Quarter Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Year-Quarter-Month-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscal Year-Month - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscal Year-Month-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscal Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscal Month Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscal Week Year - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Calendar Year-Month - table [Date] hierarchy [Calendar Year-Month] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Calendar Year-Month-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Calendar Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Calendar Month Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Calendar Week Year - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Year-Month-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Month Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Year-Quarter-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Quarter Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Year-Week - table [Date] hierarchy [FW Year-Week] - - - FW Year - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Year - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - My Report Title - table [Localized Labels] measure [My Report Title] - - - My Button Caption - table [Localized Labels] measure [My Button Caption] - - - My Visual Title - table [Localized Labels] measure [My Visual Title] - - - Inactive Employees - table [Localized Labels] measure [Inactive Employees] - - - Terminated Employees - table [Localized Labels] measure [Terminated Employees] - - - Employees in Unions - table [Localized Labels] measure [Employees in Unions] - - - Social Analysis - table [Localized Labels] measure [Social Analysis] - - - Gender Distribution - table [Localized Labels] measure [Gender Distribution] - - - Age Distribution - table [Localized Labels] measure [Age Distribution] - - - Employees Qualifications - table [Localized Labels] measure [Employees Qualifications] - - - Realized Emissions vs Target - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e Emissions by Scope - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gas Emissions by Category - table [Localized Labels] measure [Gas Emissions by Category] - - - Realized Emissions vs Baseline - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e Emissions vs Baseline - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e Emissions by Account - table [Localized Labels] measure [CO2e Emissions by Account] - - - Water and Waste Analysis - table [Localized Labels] measure [Water and Waste Analysis] - - - Water by Facility Location - table [Localized Labels] measure [Water by Facility Location] - - - Water by Facility Capacity - table [Localized Labels] measure [Water by Facility Capacity] - - - Water and Waste by Type - table [Localized Labels] measure [Water and Waste by Type] - - - Water and Waste Intensity by Type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Water and Waste Intensity by Facility - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissions by Category and Scope - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissions by Category - table [Localized Labels] measure [Emissions by Category] - - - Emissions by Scope - table [Localized Labels] measure [Emissions by Scope] - - - CO2e Analysis - table [Localized Labels] measure [CO2e Analysis] - - - CO2e Emissions by Category - table [Localized Labels] measure [CO2e Emissions by Category] - - - Carbon Credit by Month - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e Equivalent Emission by Month and Revenue - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Employee Entries Drillthrough - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Employee Ledger Entries - table [Localized Labels] measure [Employee Ledger Entries] - - - Sustainability Ledger Entries - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Sustainability Ledger Entries Drillthrough - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Employee Ledger Entries Drillthrough - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Sustainability Overview - table [Localized Labels] measure [Sustainability Overview] - - - Sustainability Analytics - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e Emissions by Month - table [Localized Labels] measure [CO2e Emissions by Month] - - - Scopes 1 and 2 Analysis by Categories Per Year - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e Emissions by Department - table [Localized Labels] measure [CO2e Emissions by Department] - - - Journey to Net-Zero Carbon - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e Emissions by Business Group - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Renewable Energy Usage - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e Emissions Over Time - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart Review - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e Emissions by Global Dimension One - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e Emissions by Global Dimension Two - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e Equivalent Emissions by Month - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Company Name - table [Localized Labels] measure [Company Name] - - - Last Refreshed - table [Localized Labels] measure [Last Refreshed] - - - Released Employees - table [Localized Labels] measure [Released Employees] - - - CO2e Decomposition Tree - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e Key Influences - table [Localized Labels] measure [CO2e Key Influences] - - - Water and Waste Yearly and Daily Change - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Sustainability Ledger Entries - table [table.Name] - - - Entry No. - table [Sustainability Ledger Entries] column [Entry No.] - - - Description - table [Sustainability Ledger Entries] column [Description] - - - Water Type - table [Sustainability Ledger Entries] column [Water Type] - - - Wate/Waste Intensity Type - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Document Type - table [Sustainability Ledger Entries] column [Document Type] - - - CO2 Emissions - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4 Emissions - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2 Emissions Balance - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O Emissions - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e Emissions - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4 Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4 Emissions Balance - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Water Intensity - table [Sustainability Ledger Entries] measure [Water Intensity] - - - - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Waste Intensity - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Discharged Into Water - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e Emissions Balance - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e Emissions Balance at Date - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Discharged Into Water Balance at Date - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Discharged Into Water Balance - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O Emissions Balance - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O Emissions Balance at Date - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Waste Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Waste Intensity Balance - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Water Intensity Balance - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Water Intensity Balance at Date - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2 Baseline - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4 Baseline - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O Baseline - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O vs Baseline (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Water Baseline - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Waste Baseline - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Waste vs Baseline (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e Baseline - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e vs Baseline (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Purchased Carbon Credits - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Discharged Into Water Baseline - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Discharged Into Water vs Baseline (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e Emissions (Excl Credits) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Water Intensity PY - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Water Intensity YOY - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Waste Intensity PY - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Waste Intensity YOY - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Discharged Into Water PY - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Discharged Into Water YOY - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Discharged Into Water PD - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Waste Intensity PD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Water Intensity PD - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Water Intensity DOD - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Waste Intensity DOD - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Discharged Into Water DOD - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Base Link - table [Sustainability Ledger Entries] measure [Base Link] - - - - table [Sustainability Ledger Entries] measure [Base Link] - - - Sustainability Ledger Entries Link - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Water Available - table [Sustainability Ledger Entries] measure [Water Available] - - - Sustainability Accounts - table [table.Name] - - - Sustainability Account No. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Sustainability Account Name - table [Sustainability Accounts] column [Sustainability Account Name] - - - Country/Region - table [table.Name] - - - Country Region Code - table [Country/Region] column [Country Region Code] - - - Country Region Name - table [Country/Region] column [Country Region Name] - - - Responsibility Centre - table [table.Name] - - - Responsibility Centre Code - table [Responsibility Centre] column [Responsibility Centre Code] - - - Responsibility Centre Name - table [Responsibility Centre] column [Responsibility Centre Name] - - - Facility Capacity - table [Responsibility Centre] measure [Facility Capacity] - - - - table [Responsibility Centre] measure [Facility Capacity] - - - Sustainability Goals - table [table.Name] - - - Score Card No. - table [Sustainability Goals] column [Score Card No.] - - - No. - table [Sustainability Goals] column [No.] - - - Name - table [Sustainability Goals] column [Name] - - - Owner - table [Sustainability Goals] column [Owner] - - - Target Value For CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Target Value For CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Target Value For N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Target Value For Water Intensity - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Target Value For Waste Intensity - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Main Goal - table [Sustainability Goals] column [Main Goal] - - - Start Date - table [Sustainability Goals] column [Start Date] - - - End Date - table [Sustainability Goals] column [End Date] - - - Baseline Start Date - table [Sustainability Goals] column [Baseline Start Date] - - - Baseline End Date - table [Sustainability Goals] column [Baseline End Date] - - - CO2 Target - table [Sustainability Goals] measure [CO2 Target] - - - - table [Sustainability Goals] measure [CO2 Target] - - - CO2 Realized (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4 Target - table [Sustainability Goals] measure [CH4 Target] - - - - table [Sustainability Goals] measure [CH4 Target] - - - N2O Target - table [Sustainability Goals] measure [N2O Target] - - - - table [Sustainability Goals] measure [N2O Target] - - - CH4 Realized (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O Realized (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Water Target - table [Sustainability Goals] measure [Water Target] - - - - table [Sustainability Goals] measure [Water Target] - - - Waste Target - table [Sustainability Goals] measure [Waste Target] - - - - table [Sustainability Goals] measure [Waste Target] - - - Water Realized (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Waste Realized (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e Realized (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - - table [Sustainability Goals] measure [CO2e Realized (%)] - - - CO2 Current Value - table [Sustainability Goals] measure [CO2 Current Value] - - - CH4 Current Value - table [Sustainability Goals] measure [CH4 Current Value] - - - N2O Current Value - table [Sustainability Goals] measure [N2O Current Value] - - - CO2e Current Value - table [Sustainability Goals] measure [CO2e Current Value] - - - Water Current Value - table [Sustainability Goals] measure [Water Current Value] - - - Waste Current Value - table [Sustainability Goals] measure [Waste Current Value] - - - Employee Ledger Entries - table [table.Name] - - - Entry No. - table [Employee Ledger Entries] column [Entry No.] - - - Document Type - table [Employee Ledger Entries] column [Document Type] - - - Document No. - table [Employee Ledger Entries] column [Document No.] - - - Description - table [Employee Ledger Entries] column [Description] - - - Employee Amount - table [Employee Ledger Entries] measure [Employee Amount] - - - - table [Employee Ledger Entries] measure [Employee Amount] - - - Employee Ledger Entries Link - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Employee Qualifications - table [table.Name] - - - Employee Qualification Codes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Employee Qualifications - table [Employee Qualifications] measure [Employee Qualifications] - - - - table [Employee Qualifications] measure [Employee Qualifications] - - - Emission Fees - table [table.Name] - - - Emission Type - table [Emission Fees] column [Emission Type] - - - Scope Type - table [Emission Fees] column [Scope Type] - - - Starting Date - table [Emission Fees] column [Starting Date] - - - Ending Date - table [Emission Fees] column [Ending Date] - - - Country Region Code - table [Emission Fees] column [Country Region Code] - - - Responsibility Centre - table [Emission Fees] column [Responsibility Centre] - - - Carbon Fee - table [Emission Fees] column [Carbon Fee] - - - Carbon Equivalent Factor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e Target - table [Emission Fees] measure [CO2e Target] - - - - table [Emission Fees] measure [CO2e Target] - - - CO2 Carbon Equivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4 Carbon Equivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O Carbon Equivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Employee Absences - table [table.Name] - - - Entry No - table [Employee Absences] column [Entry No] - - - From Date - table [Employee Absences] column [From Date] - - - To Date - table [Employee Absences] column [To Date] - - - Cause of Absence - table [Employee Absences] column [Cause of Absence] - - - Description - table [Employee Absences] column [Description] - - - Employee Absences - table [Employee Absences] measure [Employee Absences] - - - - table [Employee Absences] measure [Employee Absences] - - - Absence Hours (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Sustainability Sub-Account Categories - table [table.Name] - - - Sub-Category Code - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Sub-Category Description - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Renewable Energy - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Employees - table [table.Name] - - - Employee No. - table [Employees] column [Employee No.] - - - Employee Full Name - table [Employees] column [Employee Full Name] - - - Employee First Name - table [Employees] column [Employee First Name] - - - Employee Last Name - table [Employees] column [Employee Last Name] - - - Employee Gender - table [Employees] column [Employee Gender] - - - Employee Union Code - table [Employees] column [Employee Union Code] - - - Employee Status - table [Employees] column [Employee Status] - - - Employee Cause of Inactivity - table [Employees] column [Employee Cause of Inactivity] - - - Employee Inactive Date - table [Employees] column [Employee Inactive Date] - - - Employee Grounds for Termination - table [Employees] column [Employee Grounds for Termination] - - - Employee Date of Birth - table [Employees] column [Employee Date of Birth] - - - Age - table [Employees] column [Age] - - - - table [Employees] column [Age] - - - Age Distribution - table [Employees] column [Age Distribution] - - - No. of Employees - table [Employees] measure [No. of Employees] - - - No. of Male Employees - table [Employees] measure [No. of Male Employees] - - - No. of Female Employees - table [Employees] measure [No. of Female Employees] - - - No. of Other Employees - table [Employees] measure [No. of Other Employees] - - - Male Employees (%) - table [Employees] measure [Male Employees (%)] - - - Female Employees (%) - table [Employees] measure [Female Employees (%)] - - - Other Employees (%) - table [Employees] measure [Other Employees (%)] - - - Active Employees - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.es-ES.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.es-ES.resx deleted file mode 100644 index 77c7614ce3..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.es-ES.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Categoría de cuenta - table [table.Name] - - - Descripción de la categoría de cuenta - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Código de categoría de cuenta de sostenibilidad - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Ámbito de emisión de categoría de cuenta de sostenibilidad - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Grupos de dimensiones - table [table.Name] - - - Dimensión global 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Dimensión global 2 - table [Dimension Sets] column [Global Dimension 2] - - - Dim. acceso dir. 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Dim. acceso dir. 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Dim. acceso dir. 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Dim. acceso dir. 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Dim. acceso dir. 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Dim. acceso dir. 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - DPTO - table [Dimension Sets] column [DEPARTMENT] - - - Nombre del departamento - table [Dimension Sets] column [Department Name] - - - GRUPOCLIENTE - table [Dimension Sets] column [CUSTOMERGROUP] - - - Nombre del grupo de clientes - table [Dimension Sets] column [Customer Group Name] - - - ÁREA - table [Dimension Sets] column [AREA] - - - Nombre de área - table [Dimension Sets] column [Area Name] - - - GRUPONEGOCIO - table [Dimension Sets] column [BUSINESSGROUP] - - - Nombre de grupo de negocio - table [Dimension Sets] column [Business Group Name] - - - CAMPAÑAVENTA - table [Dimension Sets] column [SALESCAMPAIGN] - - - Nombre campaña venta - table [Dimension Sets] column [Sales campaign Name] - - - COMERCIAL - table [Dimension Sets] column [SALESPERSON] - - - Nombre vendedor - table [Dimension Sets] column [Salesperson Name] - - - Fecha - table [table.Name] - - - Día de la semana - table [Date] column [Week Day] - - - Tipo de pago - table [Date] column [Day Type] - - - Año natural - table [Date] column [Calendar Year] - - - Trimestre natural - table [Date] column [Calendar Quarter] - - - Trimestre año natural - table [Date] column [Calendar Quarter Year] - - - Mes natural - table [Date] column [Calendar Month] - - - Mes año natural - table [Date] column [Calendar Month Year] - - - Semana natural - table [Date] column [Calendar Week] - - - Semana año natural - table [Date] column [Calendar Week Year] - - - PosSemanaRelativa natural - table [Date] column [Calendar RelativeWeekPos] - - - PosMesRelativa natural - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelativa natural - table [Date] column [Calendar RelativeQuarterPos] - - - PosAñoRelativa natural - table [Date] column [Calendar RelativeYearPos] - - - InicioDeMes natural - table [Date] column [Calendar StartOfMonth] - - - FinDeMes natural - table [Date] column [Calendar EndOfMonth] - - - InicioDeTrimestre natural - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre natural - table [Date] column [Calendar EndOfQuarter] - - - InicioDeAño natural - table [Date] column [Calendar StartOfYear] - - - FinDeAño natural - table [Date] column [Calendar EndOfYear] - - - DíasMes natural - table [Date] column [Calendar MonthDays] - - - TrimestreDías natural - table [Date] column [Calendar QuarterDays] - - - AñoDías natural - table [Date] column [Calendar YearDays] - - - NúmeroDeDíaDeMes natural - table [Date] column [Calendar DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre natural - table [Date] column [Calendar DayOfQuarterNumber] - - - NúmeroDeDíaDeAño natural - table [Date] column [Calendar DayOfYearNumber] - - - FechaSemanaAnterior natural - table [Date] column [Calendar DatePreviousWeek] - - - FechaMesAnterior natural - table [Date] column [Calendar DatePreviousMonth] - - - FechaTrimestreAnterior natural - table [Date] column [Calendar DatePreviousQuarter] - - - FechaAñoAnterior natural - table [Date] column [Calendar DatePreviousYear] - - - Ejercicio - table [Date] column [Fiscal Year] - - - Trimestre fiscal - table [Date] column [Fiscal Quarter] - - - Año trimestre fiscal - table [Date] column [Fiscal Quarter Year] - - - Mes fiscal - table [Date] column [Fiscal Month] - - - Mes año fiscal - table [Date] column [Fiscal Month Year] - - - Semana fiscal - table [Date] column [Fiscal Week] - - - Semana año fiscal - table [Date] column [Fiscal Week Year] - - - PosSemanaRelativa fiscal - table [Date] column [Fiscal RelativeWeekPos] - - - PosMesRelativa fiscal - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelativa fiscal - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAñoRelativa fiscal - table [Date] column [Fiscal RelativeYearPos] - - - InicioDeMes fiscal - table [Date] column [Fiscal StartOfMonth] - - - FinDeMes fiscal - table [Date] column [Fiscal EndOfMonth] - - - InicioDeTrimestre fiscal - table [Date] column [Fiscal StartOfQuarter] - - - FinDeTrimestre fiscal - table [Date] column [Fiscal EndOfQuarter] - - - InicioDeAño fiscal - table [Date] column [Fiscal StartOfYear] - - - FinDeAño fiscal - table [Date] column [Fiscal EndOfYear] - - - MesDías fiscal - table [Date] column [Fiscal MonthDays] - - - DíasTrimestre fiscal - table [Date] column [Fiscal QuarterDays] - - - AñoDías fiscal - table [Date] column [Fiscal YearDays] - - - NúmeroDeDíaDeMes fiscal - table [Date] column [Fiscal DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre fiscal - table [Date] column [Fiscal DayOfQuarterNumber] - - - NúmeroDíaAño fiscal - table [Date] column [Fiscal DayOfYearNumber] - - - FechaSemanaAnterior fiscal - table [Date] column [Fiscal DatePreviousWeek] - - - FechaMesAnterior fiscal - table [Date] column [Fiscal DatePreviousMonth] - - - FechaTrimestreAnterior fiscal - table [Date] column [Fiscal DatePreviousQuarter] - - - FechaAñoAnterior fiscal - table [Date] column [Fiscal DatePreviousYear] - - - Año SF - table [Date] column [FW Year] - - - Trimestre SF - table [Date] column [FW Quarter] - - - Trimestre año SF - table [Date] column [FW Quarter Year] - - - Mes SF - table [Date] column [FW Month] - - - Mes año SF - table [Date] column [FW Month Year] - - - Semana SF - table [Date] column [FW Week] - - - Periodo SF - table [Date] column [FW Period] - - - Semana año SF - table [Date] column [FW Week Year] - - - InicioDeSemana SF - table [Date] column [FW StartOfWeek] - - - FinDeSemana SF - table [Date] column [FW EndOfWeek] - - - PosSemanaRelativa SF - table [Date] column [FW RelativeWeekPos] - - - PosMesRelativa SF - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelativa SF - table [Date] column [FW RelativeQuarterPos] - - - PosAñoRelativa SF - table [Date] column [FW RelativeYearPos] - - - InicioDeMes SF - table [Date] column [FW StartOfMonth] - - - FinDeMes SF - table [Date] column [FW EndOfMonth] - - - InicioDeTrimestre SF - table [Date] column [FW StartOfQuarter] - - - FinDeTrimestre SF - table [Date] column [FW EndOfQuarter] - - - InicioDeAño SF - table [Date] column [FW StartOfYear] - - - FinDeAño SF - table [Date] column [FW EndOfYear] - - - MesDías FS - table [Date] column [FW MonthDays] - - - DíasTrimestre SF - table [Date] column [FW QuarterDays] - - - DíasAño SF - table [Date] column [FW YearDays] - - - NúmeroDeDíaDeMes SF - table [Date] column [FW DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre SF - table [Date] column [FW DayOfQuarterNumber] - - - NúmerDeDíaDeAño SF - table [Date] column [FW DayOfYearNumber] - - - FechaSemanaAnterior SF - table [Date] column [FW DatePreviousWeek] - - - FechaMesAnterior SF - table [Date] column [FW DatePreviousMonth] - - - FechaTrimestreAnterior SF - table [Date] column [FW DatePreviousQuarter] - - - Fecha AñoAnterior SF - table [Date] column [FW DatePreviousYear] - - - Día relativo - table [Date] column [Relative Day] - - - N.º días - table [Date] measure [No. of Days] - - - Días laborables - table [Date] measure [Working Days] - - - En intervalo - table [Date] measure [Ranged] - - - Año-Trimestre-Mes-Semana fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Año trimestre fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semana año fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Año-Trimestre-Mes-Semana natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semana año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Año-Trimestre-Mes-Semana SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mes año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Año-mes fiscal - table [Date] hierarchy [Fiscal Year-Month] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Año-Mes-Semana fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semana año fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Año-mes natural - table [Date] hierarchy [Calendar Year-Month] - - - Año natural - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Año-Mes-Semana natural - table [Date] hierarchy [Calendar Year-Month-Week] - - - Año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semana año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Año-Mes-Semana SF - table [Date] hierarchy [FW Year-Month-Week] - - - Año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mes año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Año-Trimestre-Semana SF - table [Date] hierarchy [FW Year-Quarter-Week] - - - Año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Semana-Año SF - table [Date] hierarchy [FW Year-Week] - - - Año SF - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Título del informe - table [Localized Labels] measure [My Report Title] - - - Título de botón - table [Localized Labels] measure [My Button Caption] - - - Título visual - table [Localized Labels] measure [My Visual Title] - - - Empleados inactivos - table [Localized Labels] measure [Inactive Employees] - - - Empleados despedidos - table [Localized Labels] measure [Terminated Employees] - - - Empleados en sindicatos - table [Localized Labels] measure [Employees in Unions] - - - Análisis social - table [Localized Labels] measure [Social Analysis] - - - Distribución de sexos - table [Localized Labels] measure [Gender Distribution] - - - Distribución por edades - table [Localized Labels] measure [Age Distribution] - - - Cualificaciones de empleados - table [Localized Labels] measure [Employees Qualifications] - - - Emisiones realizadas frente a destino - table [Localized Labels] measure [Realized Emissions vs Target] - - - Emisiones de CO2e por ámbito - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Emisiones de gases por categoría - table [Localized Labels] measure [Gas Emissions by Category] - - - Emisiones realizadas frente a línea de base - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Emisiones de CO2e frente a línea de base - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Emisiones de CO2e por cuenta - table [Localized Labels] measure [CO2e Emissions by Account] - - - Análisis del agua y residuos - table [Localized Labels] measure [Water and Waste Analysis] - - - Agua por almacén de instalación - table [Localized Labels] measure [Water by Facility Location] - - - Agua por capacidad de instalación - table [Localized Labels] measure [Water by Facility Capacity] - - - Agua y residuos por tipo - table [Localized Labels] measure [Water and Waste by Type] - - - Intensidad del agua y residuos por tipo - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Intensidad del agua y residuos por instalación - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emisiones por categoría y ámbito - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emisiones por categoría - table [Localized Labels] measure [Emissions by Category] - - - Emisiones por ámbito - table [Localized Labels] measure [Emissions by Scope] - - - Análisis de CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Emisiones de CO2e por categoría - table [Localized Labels] measure [CO2e Emissions by Category] - - - Crédito de carbono por mes - table [Localized Labels] measure [Carbon Credit by Month] - - - Emisiones equivalentes de CO2e por mes e ingresos - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Análisis detallado de movs. empleados - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Movimientos empleados - table [Localized Labels] measure [Employee Ledger Entries] - - - Movimientos de sostenibilidad - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Análisis detallado de movimientos de sostenibilidad - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Análisis detallado de movimientos de empleados - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Información general de sostenibilidad - table [Localized Labels] measure [Sustainability Overview] - - - Análisis de sostenibilidad - table [Localized Labels] measure [Sustainability Analytics] - - - Emisiones de CO2e por mes - table [Localized Labels] measure [CO2e Emissions by Month] - - - Análisis de los ámbitos 1 y 2 por categorías por año - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Emisiones de CO2e por departamento - table [Localized Labels] measure [CO2e Emissions by Department] - - - Recorrido hacia el carbono cero neto - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Emisiones de CO2e por grupo empresarial - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Uso de energías Renovables - table [Localized Labels] measure [Renewable Energy Usage] - - - Emisiones de CO2e a lo largo del tiempo - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Revisión inteligente de CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - Emisiones de CO2e por dimensión global uno - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Emisiones de CO2e por dimensión global dos - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Emisiones equivalentes de CO2e por mes - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Nombre empresa - table [Localized Labels] measure [Company Name] - - - Última actualización - table [Localized Labels] measure [Last Refreshed] - - - Empleados liberados - table [Localized Labels] measure [Released Employees] - - - Árbol de descomposición de CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Influencias clave de CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Cambio anual y diario de agua y residuos - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Movimientos de sostenibilidad - table [table.Name] - - - N.º de movimiento - table [Sustainability Ledger Entries] column [Entry No.] - - - Descripción - table [Sustainability Ledger Entries] column [Description] - - - Tipo de agua - table [Sustainability Ledger Entries] column [Water Type] - - - Tipo de intensidad de agua/residuos - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Tipo de documento - table [Sustainability Ledger Entries] column [Document Type] - - - Emisiones de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - Emisiones de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Saldo de emisiones de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Saldo a la fecha de emisiones de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - Emisiones de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Emisiones de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Saldo a la fecha de emisiones de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Saldo de emisiones de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Descarga en agua - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Saldo de emisiones de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Saldo a fecha de emisiones de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Saldo a la fecha de descarga en agua - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Saldo de descarga en agua - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Saldo de emisiones de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Saldo a la fecha de emisiones de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Saldo a la fecha de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Saldo de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Saldo de intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Saldo a la fecha de intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Línea de base de CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Línea de base de CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 frente a línea de base (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - Línea de base de N2O - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O frente a línea de base (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 frente a línea de base (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Línea de base hídrica - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Línea de base de residuos - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Agua frente a línea de base (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Residuos frente a línea de base (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Línea de base de CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e frente a línea de base (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Créditos de carbono comprados - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Línea de base de descarga en agua - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Descarga en agua frente a línea de base (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Emisiones de CO2e (sin créditos) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Intensidad del agua AA - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - ATA de intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - AA de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - ATA de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Descarga en agua AA - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Descarga en agua ATA - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Descarga en agua DP - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Intensidad de los residuos DP - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Intensidad del agua DP - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - DTO de intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - DTO de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Descarga en agua DTO - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Vínculo base - table [Sustainability Ledger Entries] measure [Base Link] - - - Vínculo de movimientos de sostenibilidad - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Agua disponible - table [Sustainability Ledger Entries] measure [Water Available] - - - Cuentas de sostenibilidad - table [table.Name] - - - N.º de cuenta de sostenibilidad - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nombre de cuenta de sostenibilidad - table [Sustainability Accounts] column [Sustainability Account Name] - - - País o región - table [table.Name] - - - Código de país o región - table [Country/Region] column [Country Region Code] - - - Nombre de país o región - table [Country/Region] column [Country Region Name] - - - Centro responsabilidad - table [table.Name] - - - Código de centro de responsabilidad - table [Responsibility Centre] column [Responsibility Centre Code] - - - Nombre centro responsabilidad - table [Responsibility Centre] column [Responsibility Centre Name] - - - Capacidad de instalación - table [Responsibility Centre] measure [Facility Capacity] - - - Objetivos de sostenibilidad - table [table.Name] - - - N.º de cuadro de mandos - table [Sustainability Goals] column [Score Card No.] - - - N.º - table [Sustainability Goals] column [No.] - - - Nombre - table [Sustainability Goals] column [Name] - - - Propietario - table [Sustainability Goals] column [Owner] - - - Tipo de objetivo para CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Tipo de objetivo para CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Tipo de objetivo para N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Valor objetivo para intensidad del agua - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Valor objetivo para intensidad de residuos - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Objetivo principal - table [Sustainability Goals] column [Main Goal] - - - Fecha inic. - table [Sustainability Goals] column [Start Date] - - - Fecha de finalización - table [Sustainability Goals] column [End Date] - - - Fecha de inicio de referencia - table [Sustainability Goals] column [Baseline Start Date] - - - Fecha de finalización de referencia - table [Sustainability Goals] column [Baseline End Date] - - - Destino de CO2 - table [Sustainability Goals] measure [CO2 Target] - - - CO2 generado (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - Destino de CH4 - table [Sustainability Goals] measure [CH4 Target] - - - Destino de N2O - table [Sustainability Goals] measure [N2O Target] - - - CH4 generado (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O generado (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Destino de agua - table [Sustainability Goals] measure [Water Target] - - - Destino de residuos - table [Sustainability Goals] measure [Waste Target] - - - Agua obtenida (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Residuos generados (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e generado (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Valor actual de CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Valor actual de CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Valor actual de N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Valor actual de CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Valor actual de agua - table [Sustainability Goals] measure [Water Current Value] - - - Valor actual de residuos - table [Sustainability Goals] measure [Waste Current Value] - - - Movimientos empleados - table [table.Name] - - - N.º de movimiento - table [Employee Ledger Entries] column [Entry No.] - - - Tipo de documento - table [Employee Ledger Entries] column [Document Type] - - - N.º de documento - table [Employee Ledger Entries] column [Document No.] - - - Descripción - table [Employee Ledger Entries] column [Description] - - - Importe del empleado - table [Employee Ledger Entries] measure [Employee Amount] - - - Vínculo de movimientos de empleados - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Cualificaciones del empleado - table [table.Name] - - - Códigos de cualificación de empleado - table [Employee Qualifications] column [Employee Qualification Codes] - - - Cualificaciones del empleado - table [Employee Qualifications] measure [Employee Qualifications] - - - Tasas de emisión - table [table.Name] - - - Tipo de emisiones - table [Emission Fees] column [Emission Type] - - - Tipo de ámbito - table [Emission Fees] column [Scope Type] - - - Fecha inicial - table [Emission Fees] column [Starting Date] - - - Fecha final - table [Emission Fees] column [Ending Date] - - - Código de país o región - table [Emission Fees] column [Country Region Code] - - - Centro responsabilidad - table [Emission Fees] column [Responsibility Centre] - - - Precio por emisiones de carbono - table [Emission Fees] column [Carbon Fee] - - - Factor de carbono equivalente - table [Emission Fees] column [Carbon Equivalent Factor] - - - Objetivo de CO2e - table [Emission Fees] measure [CO2e Target] - - - Equivalente de carbono CO2 - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - Equivalente de carbono CH4 - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - Equivalente de carbono N2O - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Ausencias empleado - table [table.Name] - - - N.º mov. - table [Employee Absences] column [Entry No] - - - Fecha desde - table [Employee Absences] column [From Date] - - - Fecha hasta - table [Employee Absences] column [To Date] - - - Causa ausencia - table [Employee Absences] column [Cause of Absence] - - - Descripción - table [Employee Absences] column [Description] - - - Ausencias empleado - table [Employee Absences] measure [Employee Absences] - - - Horas de ausencia (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Categorías de subcuentas de sostenibilidad - table [table.Name] - - - Cód. subcategoría - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Descripción de subcategoría - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Energías renovables - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Empleados - table [table.Name] - - - N.º empleado - table [Employees] column [Employee No.] - - - Nombre completo del empleado - table [Employees] column [Employee Full Name] - - - Nombre del empleado - table [Employees] column [Employee First Name] - - - Apellido del empleado - table [Employees] column [Employee Last Name] - - - Sexo del empleado - table [Employees] column [Employee Gender] - - - Cód. sindicato empleado - table [Employees] column [Employee Union Code] - - - Estado empleado - table [Employees] column [Employee Status] - - - Cód. inactividad empleado - table [Employees] column [Employee Cause of Inactivity] - - - Fecha inactividad empleado - table [Employees] column [Employee Inactive Date] - - - Motivo terminación empleado - table [Employees] column [Employee Grounds for Termination] - - - Fecha de nacimiento del empleado - table [Employees] column [Employee Date of Birth] - - - Edad - table [Employees] column [Age] - - - Distribución por edades - table [Employees] column [Age Distribution] - - - N.º de empleados - table [Employees] measure [No. of Employees] - - - N.º de empleados masculinos - table [Employees] measure [No. of Male Employees] - - - N.º de empleados femeninos - table [Employees] measure [No. of Female Employees] - - - N.º de otros empleados - table [Employees] measure [No. of Other Employees] - - - Empleados masculinos (%) - table [Employees] measure [Male Employees (%)] - - - Empleados femeninos (%) - table [Employees] measure [Female Employees (%)] - - - Otros empleados (%) - table [Employees] measure [Other Employees (%)] - - - Empleados activos - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.es-MX.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.es-MX.resx deleted file mode 100644 index 112302f900..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.es-MX.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Categoría de cuenta - table [table.Name] - - - Descripción de la categoría de cuenta - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Código de categoría de cuenta de sustentabilidad - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Ámbito de emisión de categoría de cuenta de sustentabilidad - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Grupos de dimensiones - table [table.Name] - - - Dimensión global 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Dimensión global 2 - table [Dimension Sets] column [Global Dimension 2] - - - Dim. acceso dir. 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Dim. acceso dir. 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Dim. acceso dir. 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Dim. acceso dir. 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Dim. acceso dir. 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Dim. acceso dir. 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - DPTO - table [Dimension Sets] column [DEPARTMENT] - - - Nombre del departamento - table [Dimension Sets] column [Department Name] - - - GRUPOCLIENTE - table [Dimension Sets] column [CUSTOMERGROUP] - - - Nombre del grupo de clientes - table [Dimension Sets] column [Customer Group Name] - - - ÁREA - table [Dimension Sets] column [AREA] - - - Nombre de área - table [Dimension Sets] column [Area Name] - - - GRUPONEGOCIO - table [Dimension Sets] column [BUSINESSGROUP] - - - Nombre de grupo de negocio - table [Dimension Sets] column [Business Group Name] - - - CAMPAÑAVENTA - table [Dimension Sets] column [SALESCAMPAIGN] - - - Nombre campaña venta - table [Dimension Sets] column [Sales campaign Name] - - - COMERCIAL - table [Dimension Sets] column [SALESPERSON] - - - Nombre vendedor - table [Dimension Sets] column [Salesperson Name] - - - Fecha - table [table.Name] - - - Día de la semana - table [Date] column [Week Day] - - - Tipo de pago - table [Date] column [Day Type] - - - Año natural - table [Date] column [Calendar Year] - - - Trimestre natural - table [Date] column [Calendar Quarter] - - - Trimestre año natural - table [Date] column [Calendar Quarter Year] - - - Mes natural - table [Date] column [Calendar Month] - - - Mes año natural - table [Date] column [Calendar Month Year] - - - Semana natural - table [Date] column [Calendar Week] - - - Semana año natural - table [Date] column [Calendar Week Year] - - - PosSemanaRelativa natural - table [Date] column [Calendar RelativeWeekPos] - - - PosMesRelativa natural - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelativa natural - table [Date] column [Calendar RelativeQuarterPos] - - - PosAñoRelativa natural - table [Date] column [Calendar RelativeYearPos] - - - InicioDeMes natural - table [Date] column [Calendar StartOfMonth] - - - FinDeMes natural - table [Date] column [Calendar EndOfMonth] - - - InicioDeTrimestre natural - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre natural - table [Date] column [Calendar EndOfQuarter] - - - InicioDeAño natural - table [Date] column [Calendar StartOfYear] - - - FinDeAño natural - table [Date] column [Calendar EndOfYear] - - - DíasMes natural - table [Date] column [Calendar MonthDays] - - - TrimestreDías natural - table [Date] column [Calendar QuarterDays] - - - AñoDías natural - table [Date] column [Calendar YearDays] - - - NúmeroDeDíaDeMes natural - table [Date] column [Calendar DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre natural - table [Date] column [Calendar DayOfQuarterNumber] - - - NúmeroDeDíaDeAño natural - table [Date] column [Calendar DayOfYearNumber] - - - FechaSemanaAnterior natural - table [Date] column [Calendar DatePreviousWeek] - - - FechaMesAnterior natural - table [Date] column [Calendar DatePreviousMonth] - - - FechaTrimestreAnterior natural - table [Date] column [Calendar DatePreviousQuarter] - - - FechaAñoAnterior natural - table [Date] column [Calendar DatePreviousYear] - - - Ejercicio - table [Date] column [Fiscal Year] - - - Trimestre fiscal - table [Date] column [Fiscal Quarter] - - - Año trimestre fiscal - table [Date] column [Fiscal Quarter Year] - - - Mes fiscal - table [Date] column [Fiscal Month] - - - Mes año fiscal - table [Date] column [Fiscal Month Year] - - - Semana fiscal - table [Date] column [Fiscal Week] - - - Semana año fiscal - table [Date] column [Fiscal Week Year] - - - PosSemanaRelativa fiscal - table [Date] column [Fiscal RelativeWeekPos] - - - PosMesRelativa fiscal - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelativa fiscal - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAñoRelativa fiscal - table [Date] column [Fiscal RelativeYearPos] - - - InicioDeMes fiscal - table [Date] column [Fiscal StartOfMonth] - - - FinDeMes fiscal - table [Date] column [Fiscal EndOfMonth] - - - InicioDeTrimestre fiscal - table [Date] column [Fiscal StartOfQuarter] - - - FinDeTrimestre fiscal - table [Date] column [Fiscal EndOfQuarter] - - - InicioDeAño fiscal - table [Date] column [Fiscal StartOfYear] - - - FinDeAño fiscal - table [Date] column [Fiscal EndOfYear] - - - MesDías fiscal - table [Date] column [Fiscal MonthDays] - - - DíasTrimestre fiscal - table [Date] column [Fiscal QuarterDays] - - - AñoDías fiscal - table [Date] column [Fiscal YearDays] - - - NúmeroDeDíaDeMes fiscal - table [Date] column [Fiscal DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre fiscal - table [Date] column [Fiscal DayOfQuarterNumber] - - - NúmeroDíaAño fiscal - table [Date] column [Fiscal DayOfYearNumber] - - - FechaSemanaAnterior fiscal - table [Date] column [Fiscal DatePreviousWeek] - - - FechaMesAnterior fiscal - table [Date] column [Fiscal DatePreviousMonth] - - - FechaTrimestreAnterior fiscal - table [Date] column [Fiscal DatePreviousQuarter] - - - FechaAñoAnterior fiscal - table [Date] column [Fiscal DatePreviousYear] - - - Año SF - table [Date] column [FW Year] - - - Trimestre SF - table [Date] column [FW Quarter] - - - Trimestre año SF - table [Date] column [FW Quarter Year] - - - Mes SF - table [Date] column [FW Month] - - - Mes año SF - table [Date] column [FW Month Year] - - - Semana SF - table [Date] column [FW Week] - - - Periodo SF - table [Date] column [FW Period] - - - Semana año SF - table [Date] column [FW Week Year] - - - InicioDeSemana SF - table [Date] column [FW StartOfWeek] - - - FinDeSemana SF - table [Date] column [FW EndOfWeek] - - - PosSemanaRelativa SF - table [Date] column [FW RelativeWeekPos] - - - PosMesRelativa SF - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelativa SF - table [Date] column [FW RelativeQuarterPos] - - - PosAñoRelativa SF - table [Date] column [FW RelativeYearPos] - - - InicioDeMes SF - table [Date] column [FW StartOfMonth] - - - FinDeMes SF - table [Date] column [FW EndOfMonth] - - - InicioDeTrimestre SF - table [Date] column [FW StartOfQuarter] - - - FinDeTrimestre SF - table [Date] column [FW EndOfQuarter] - - - InicioDeAño SF - table [Date] column [FW StartOfYear] - - - FinDeAño SF - table [Date] column [FW EndOfYear] - - - MesDías FS - table [Date] column [FW MonthDays] - - - DíasTrimestre SF - table [Date] column [FW QuarterDays] - - - DíasAño SF - table [Date] column [FW YearDays] - - - NúmeroDeDíaDeMes SF - table [Date] column [FW DayOfMonthNumber] - - - NúmeroDeDíaDeTrimestre SF - table [Date] column [FW DayOfQuarterNumber] - - - NúmerDeDíaDeAño SF - table [Date] column [FW DayOfYearNumber] - - - FechaSemanaAnterior SF - table [Date] column [FW DatePreviousWeek] - - - FechaMesAnterior SF - table [Date] column [FW DatePreviousMonth] - - - FechaTrimestreAnterior SF - table [Date] column [FW DatePreviousQuarter] - - - Fecha AñoAnterior SF - table [Date] column [FW DatePreviousYear] - - - Día relativo - table [Date] column [Relative Day] - - - N.º días - table [Date] measure [No. of Days] - - - Días laborables - table [Date] measure [Working Days] - - - En intervalo - table [Date] measure [Ranged] - - - Año-Trimestre-Mes-Semana fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Año trimestre fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semana año fiscal - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Año-Trimestre-Mes-Semana natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semana año natural - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Año-Trimestre-Mes-Semana SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mes año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Año-mes fiscal - table [Date] hierarchy [Fiscal Year-Month] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Año-Mes-Semana fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Ejercicio - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mes año fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semana año fiscal - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Año-mes natural - table [Date] hierarchy [Calendar Year-Month] - - - Año natural - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Año-Mes-Semana natural - table [Date] hierarchy [Calendar Year-Month-Week] - - - Año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mes año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semana año natural - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Año-Mes-Semana SF - table [Date] hierarchy [FW Year-Month-Week] - - - Año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mes año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Año-Trimestre-Semana SF - table [Date] hierarchy [FW Year-Quarter-Week] - - - Año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Semana-Año SF - table [Date] hierarchy [FW Year-Week] - - - Año SF - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semana año SF - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Título del informe - table [Localized Labels] measure [My Report Title] - - - Título de botón - table [Localized Labels] measure [My Button Caption] - - - Título visual - table [Localized Labels] measure [My Visual Title] - - - Empleados inactivos - table [Localized Labels] measure [Inactive Employees] - - - Empleados despedidos - table [Localized Labels] measure [Terminated Employees] - - - Empleados en sindicatos - table [Localized Labels] measure [Employees in Unions] - - - Análisis social - table [Localized Labels] measure [Social Analysis] - - - Distribución de sexos - table [Localized Labels] measure [Gender Distribution] - - - Distribución por edades - table [Localized Labels] measure [Age Distribution] - - - Habilidades de empleados - table [Localized Labels] measure [Employees Qualifications] - - - Emisiones realizadas frente a destino - table [Localized Labels] measure [Realized Emissions vs Target] - - - Emisiones de CO2e por ámbito - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Emisiones de gases por categoría - table [Localized Labels] measure [Gas Emissions by Category] - - - Emisiones realizadas frente a línea de base - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Emisiones de CO2e frente a línea de base - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Emisiones de CO2e por cuenta - table [Localized Labels] measure [CO2e Emissions by Account] - - - Análisis del agua y residuos - table [Localized Labels] measure [Water and Waste Analysis] - - - Agua por almacén de instalación - table [Localized Labels] measure [Water by Facility Location] - - - Agua por capacidad de instalación - table [Localized Labels] measure [Water by Facility Capacity] - - - Agua y residuos por tipo - table [Localized Labels] measure [Water and Waste by Type] - - - Intensidad del agua y residuos por tipo - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Intensidad del agua y residuos por instalación - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emisiones por categoría y ámbito - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emisiones por categoría - table [Localized Labels] measure [Emissions by Category] - - - Emisiones por ámbito - table [Localized Labels] measure [Emissions by Scope] - - - Análisis de CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Emisiones de CO2e por categoría - table [Localized Labels] measure [CO2e Emissions by Category] - - - Crédito de carbono por mes - table [Localized Labels] measure [Carbon Credit by Month] - - - Emisiones equivalentes de CO2e por mes e ingresos - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Análisis detallado de movs. empleados - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Movimientos empleados - table [Localized Labels] measure [Employee Ledger Entries] - - - Movimientos de sustentabilidad - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Análisis detallado de movimientos de sustentabilidad - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Análisis detallado de movimientos de empleados - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Información general de sustentabilidad - table [Localized Labels] measure [Sustainability Overview] - - - Análisis de sustentabilidad - table [Localized Labels] measure [Sustainability Analytics] - - - Emisiones de CO2e por mes - table [Localized Labels] measure [CO2e Emissions by Month] - - - Análisis de los ámbitos 1 y 2 por categorías por año - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Emisiones de CO2e por departamento - table [Localized Labels] measure [CO2e Emissions by Department] - - - Recorrido hacia el carbono cero neto - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Emisiones de CO2e por grupo empresarial - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Uso de energías Renovables - table [Localized Labels] measure [Renewable Energy Usage] - - - Emisiones de CO2e a lo largo del tiempo - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Revisión inteligente de CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - Emisiones de CO2e por dimensión global uno - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Emisiones de CO2e por dimensión global dos - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Emisiones equivalentes de CO2e por mes - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Nombre empresa - table [Localized Labels] measure [Company Name] - - - Última actualización - table [Localized Labels] measure [Last Refreshed] - - - Empleados liberados - table [Localized Labels] measure [Released Employees] - - - Árbol de descomposición de CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Influencias clave de CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Cambio anual y diario de agua y residuos - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Movimientos de sustentabilidad - table [table.Name] - - - N.º de movimiento - table [Sustainability Ledger Entries] column [Entry No.] - - - Descripción - table [Sustainability Ledger Entries] column [Description] - - - Tipo de agua - table [Sustainability Ledger Entries] column [Water Type] - - - Tipo de intensidad de agua/residuos - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Tipo de documento - table [Sustainability Ledger Entries] column [Document Type] - - - Emisiones de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - Emisiones de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Saldo de emisiones de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Saldo a la fecha de emisiones de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - Emisiones de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Emisiones de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Saldo a la fecha de emisiones de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Saldo de emisiones de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Descarga en agua - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Saldo de emisiones de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Saldo a fecha de emisiones de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Saldo a la fecha de descarga en agua - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Saldo de descarga en agua - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Saldo de emisiones de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Saldo a la fecha de emisiones de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Saldo a la fecha de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Saldo de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Saldo de intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Saldo a la fecha de intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Línea de base de CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Línea de base de CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 frente a línea de base (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - Línea de base de N2O - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O frente a línea de base (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 frente a línea de base (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Línea de base hídrica - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Línea de base de residuos - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Agua frente a línea de base (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Residuos frente a línea de base (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Línea de base de CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e frente a línea de base (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Créditos de carbono comprados - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Línea de base de descarga en agua - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Descarga en agua frente a línea de base (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Emisiones de CO2e (sin créditos) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Intensidad del agua AA - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - ATA de intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - AA de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - ATA de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Descarga en agua AA - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Descarga en agua ATA - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Descarga en agua DP - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Intensidad de los residuos DP - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Intensidad del agua DP - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - DTO de intensidad del agua - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - DTO de intensidad de los residuos - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Descarga en agua DTO - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Vínculo base - table [Sustainability Ledger Entries] measure [Base Link] - - - Vínculo de movimientos de sustentabilidad - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Agua disponible - table [Sustainability Ledger Entries] measure [Water Available] - - - Cuentas de sustentabilidad - table [table.Name] - - - N.º de cuenta de sustentabilidad - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nombre de cuenta de sustentabilidad - table [Sustainability Accounts] column [Sustainability Account Name] - - - País o región - table [table.Name] - - - Código de país o región - table [Country/Region] column [Country Region Code] - - - Nombre de país o región - table [Country/Region] column [Country Region Name] - - - Centro responsabilidad - table [table.Name] - - - Código de centro de responsabilidad - table [Responsibility Centre] column [Responsibility Centre Code] - - - Nombre centro responsabilidad - table [Responsibility Centre] column [Responsibility Centre Name] - - - Capacidad de instalación - table [Responsibility Centre] measure [Facility Capacity] - - - Objetivos de sustentabilidad - table [table.Name] - - - N.º de cuadro de mandos - table [Sustainability Goals] column [Score Card No.] - - - N.º - table [Sustainability Goals] column [No.] - - - Nombre - table [Sustainability Goals] column [Name] - - - Propietario - table [Sustainability Goals] column [Owner] - - - Tipo de objetivo para CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Tipo de objetivo para CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Tipo de objetivo para N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Valor objetivo para intensidad del agua - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Valor objetivo para intensidad de residuos - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Objetivo principal - table [Sustainability Goals] column [Main Goal] - - - Fecha inic. - table [Sustainability Goals] column [Start Date] - - - Fecha de finalización - table [Sustainability Goals] column [End Date] - - - Fecha de inicio de referencia - table [Sustainability Goals] column [Baseline Start Date] - - - Fecha de finalización de referencia - table [Sustainability Goals] column [Baseline End Date] - - - Destino de CO2 - table [Sustainability Goals] measure [CO2 Target] - - - CO2 generado (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - Destino de CH4 - table [Sustainability Goals] measure [CH4 Target] - - - Destino de N2O - table [Sustainability Goals] measure [N2O Target] - - - CH4 generado (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O generado (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Destino de agua - table [Sustainability Goals] measure [Water Target] - - - Destino de residuos - table [Sustainability Goals] measure [Waste Target] - - - Agua obtenida (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Residuos generados (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e generado (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Valor actual de CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Valor actual de CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Valor actual de N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Valor actual de CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Valor actual de agua - table [Sustainability Goals] measure [Water Current Value] - - - Valor actual de residuos - table [Sustainability Goals] measure [Waste Current Value] - - - Movimientos empleados - table [table.Name] - - - N.º de movimiento - table [Employee Ledger Entries] column [Entry No.] - - - Tipo de documento - table [Employee Ledger Entries] column [Document Type] - - - N.º de documento - table [Employee Ledger Entries] column [Document No.] - - - Descripción - table [Employee Ledger Entries] column [Description] - - - Importe del empleado - table [Employee Ledger Entries] measure [Employee Amount] - - - Vínculo de movimientos de empleados - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Habilidades de empleado - table [table.Name] - - - Códigos de habilidad de empleado - table [Employee Qualifications] column [Employee Qualification Codes] - - - Habilidades de empleado - table [Employee Qualifications] measure [Employee Qualifications] - - - Tasas de emisión - table [table.Name] - - - Tipo de emisiones - table [Emission Fees] column [Emission Type] - - - Tipo de ámbito - table [Emission Fees] column [Scope Type] - - - Fecha inicial - table [Emission Fees] column [Starting Date] - - - Fecha final - table [Emission Fees] column [Ending Date] - - - Código de país o región - table [Emission Fees] column [Country Region Code] - - - Centro responsabilidad - table [Emission Fees] column [Responsibility Centre] - - - Precio por emisiones de carbono - table [Emission Fees] column [Carbon Fee] - - - Factor de carbono equivalente - table [Emission Fees] column [Carbon Equivalent Factor] - - - Objetivo de CO2e - table [Emission Fees] measure [CO2e Target] - - - Equivalente de carbono CO2 - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - Equivalente de carbono CH4 - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - Equivalente de carbono N2O - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Ausencias empleado - table [table.Name] - - - N.º mov. - table [Employee Absences] column [Entry No] - - - Fecha desde - table [Employee Absences] column [From Date] - - - Fecha hasta - table [Employee Absences] column [To Date] - - - Causa ausencia - table [Employee Absences] column [Cause of Absence] - - - Descripción - table [Employee Absences] column [Description] - - - Ausencias empleado - table [Employee Absences] measure [Employee Absences] - - - Horas de ausencia (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Categorías de subcuentas de sustentabilidad - table [table.Name] - - - Cód. subcategoría - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Descripción de subcategoría - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Energías renovables - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Empleados - table [table.Name] - - - N.º empleado - table [Employees] column [Employee No.] - - - Nombre completo del empleado - table [Employees] column [Employee Full Name] - - - Nombre del empleado - table [Employees] column [Employee First Name] - - - Apellido del empleado - table [Employees] column [Employee Last Name] - - - Sexo del empleado - table [Employees] column [Employee Gender] - - - Cód. sindicato empleado - table [Employees] column [Employee Union Code] - - - Estado empleado - table [Employees] column [Employee Status] - - - Cód. inactividad empleado - table [Employees] column [Employee Cause of Inactivity] - - - Fecha inactividad empleado - table [Employees] column [Employee Inactive Date] - - - Motivo terminación empleado - table [Employees] column [Employee Grounds for Termination] - - - Fecha de nacimiento del empleado - table [Employees] column [Employee Date of Birth] - - - Edad - table [Employees] column [Age] - - - Distribución por edades - table [Employees] column [Age Distribution] - - - N.º de empleados - table [Employees] measure [No. of Employees] - - - N.º de empleados masculinos - table [Employees] measure [No. of Male Employees] - - - N.º de empleados femeninos - table [Employees] measure [No. of Female Employees] - - - N.º de otros empleados - table [Employees] measure [No. of Other Employees] - - - Empleados masculinos (%) - table [Employees] measure [Male Employees (%)] - - - Empleados femeninos (%) - table [Employees] measure [Female Employees (%)] - - - Otros empleados (%) - table [Employees] measure [Other Employees (%)] - - - Empleados activos - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fi-FI.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fi-FI.resx deleted file mode 100644 index 047fb27b20..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fi-FI.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - KP-tilin luokka - table [table.Name] - - - KP-tililuokan kuvaus - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Vastuullisuustilin luokan koodi - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Vastuullisuustilin luokka – Päästöjen laajuus - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimensioyhdistelmät - table [table.Name] - - - Yleinen dimensio 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Yleinen dimensio 2 - table [Dimension Sets] column [Global Dimension 2] - - - Pikadimensio 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Pikadimensio 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Pikadimensio 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Pikadimensio 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Pikadimensio 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Pikadimensio 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - OSASTO - table [Dimension Sets] column [DEPARTMENT] - - - Osaston nimi - table [Dimension Sets] column [Department Name] - - - ASIAKASRYHMÄ - table [Dimension Sets] column [CUSTOMERGROUP] - - - Asiakasryhmän nimi - table [Dimension Sets] column [Customer Group Name] - - - ALUE - table [Dimension Sets] column [AREA] - - - Alueen nimi - table [Dimension Sets] column [Area Name] - - - LIIKETOIMINTARYHMÄ - table [Dimension Sets] column [BUSINESSGROUP] - - - Liiketoimintaryhmän nimi - table [Dimension Sets] column [Business Group Name] - - - MYYNTIKAMPANJA - table [Dimension Sets] column [SALESCAMPAIGN] - - - Myyntikampanjan nimi - table [Dimension Sets] column [Sales campaign Name] - - - MYYJÄ - table [Dimension Sets] column [SALESPERSON] - - - Myyjän nimi - table [Dimension Sets] column [Salesperson Name] - - - Pvm - table [table.Name] - - - Viikonpäivä - table [Date] column [Week Day] - - - Päivän tyyppi - table [Date] column [Day Type] - - - Kalenterivuosi - table [Date] column [Calendar Year] - - - Kalenterin vuosineljännes - table [Date] column [Calendar Quarter] - - - Kalenteri – Neljännesvuosi - table [Date] column [Calendar Quarter Year] - - - Kalenterikuukausi - table [Date] column [Calendar Month] - - - Kalenterikuukausi – Vuosi - table [Date] column [Calendar Month Year] - - - Kalenteriviikko - table [Date] column [Calendar Week] - - - Kalenteriviikko – Vuosi - table [Date] column [Calendar Week Year] - - - Kalenteri – SuhteellisenViikonSijainti - table [Date] column [Calendar RelativeWeekPos] - - - Kalenteri – SuhteellisenKuukaudenSijainti - table [Date] column [Calendar RelativeMonthPos] - - - Kalenteri – SuhteellisenVuosineljänneksenSijainti - table [Date] column [Calendar RelativeQuarterPos] - - - Kalenteri – SuhteellisenVuodenSijainti - table [Date] column [Calendar RelativeYearPos] - - - Kalenteri – KuukausiAlkaa - table [Date] column [Calendar StartOfMonth] - - - Kalenteri – KuukausiPäättyy - table [Date] column [Calendar EndOfMonth] - - - Kalenteri – VuosineljännesAlkaa - table [Date] column [Calendar StartOfQuarter] - - - Kalenteri – VuosineljännesPäättyy - table [Date] column [Calendar EndOfQuarter] - - - Kalenteri – VuosiAlkaa - table [Date] column [Calendar StartOfYear] - - - Kalenteri – VuosiPäättyy - table [Date] column [Calendar EndOfYear] - - - Kalenteri – KuukaudenPäivät - table [Date] column [Calendar MonthDays] - - - Kalenteri – VuosineljänneksenPäivät - table [Date] column [Calendar QuarterDays] - - - Kalenteri – VuodenPäivät - table [Date] column [Calendar YearDays] - - - Kalenteri – KuukaudenPäivänNumero - table [Date] column [Calendar DayOfMonthNumber] - - - Kalenteri – VuosineljänneksenPäivänNumero - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalenteri – VuodenPäivänNumero - table [Date] column [Calendar DayOfYearNumber] - - - Kalenteri – PäivämääräEdellinenViikko - table [Date] column [Calendar DatePreviousWeek] - - - Kalenteri – PäivämääräEdellinenKuukausi - table [Date] column [Calendar DatePreviousMonth] - - - Kalenteri – PäivämääräEdellinenVuosineljännes - table [Date] column [Calendar DatePreviousQuarter] - - - Kalenteri – PäivämääräEdellinenVuosi - table [Date] column [Calendar DatePreviousYear] - - - Tilikausi - table [Date] column [Fiscal Year] - - - Kirjanpidon vuosineljännes - table [Date] column [Fiscal Quarter] - - - Kirjanpito – Neljännesvuosi - table [Date] column [Fiscal Quarter Year] - - - Kirjanpitokuukausi - table [Date] column [Fiscal Month] - - - Kirjanpidon kuukausi, vuosi - table [Date] column [Fiscal Month Year] - - - Kirjanpitoviikko - table [Date] column [Fiscal Week] - - - Kirjanpitoviikko, vuosi - table [Date] column [Fiscal Week Year] - - - Kirjanpito – SuhteellisenViikonSijainti - table [Date] column [Fiscal RelativeWeekPos] - - - Kirjanpito – SuhteellisenKuukaudenSijainti - table [Date] column [Fiscal RelativeMonthPos] - - - Kirjanpito – SuhteellisenVuosineljänneksenSijainti - table [Date] column [Fiscal RelativeQuarterPos] - - - Kirjanpito – SuhteellisenVuodenSijainti - table [Date] column [Fiscal RelativeYearPos] - - - Kirjanpito – KuukausiAlkaa - table [Date] column [Fiscal StartOfMonth] - - - Kirjanpito – KuukausiPäättyy - table [Date] column [Fiscal EndOfMonth] - - - Kirjanpito – VuosineljännesAlkaa - table [Date] column [Fiscal StartOfQuarter] - - - Kirjanpito – VuosineljännesPäättyy - table [Date] column [Fiscal EndOfQuarter] - - - Kirjanpito – VuosiAlkaa - table [Date] column [Fiscal StartOfYear] - - - Kirjanpito – VuosiPäättyy - table [Date] column [Fiscal EndOfYear] - - - Kirjanpito – KuukaudenPäivät - table [Date] column [Fiscal MonthDays] - - - Kirjanpito – VuosineljänneksenPäivät - table [Date] column [Fiscal QuarterDays] - - - Kirjanpito – VuodenPäivät - table [Date] column [Fiscal YearDays] - - - Kirjanpito – KuukaudenPäivänNumero - table [Date] column [Fiscal DayOfMonthNumber] - - - Kirjanpito – VuosineljänneksenPäivänNumero - table [Date] column [Fiscal DayOfQuarterNumber] - - - Kirjanpito – VuodenPäivänNumero - table [Date] column [Fiscal DayOfYearNumber] - - - Kirjanpito – PäivämääräEdellinenViikko - table [Date] column [Fiscal DatePreviousWeek] - - - Kirjanpito – PäivämääräEdellinenKuukausi - table [Date] column [Fiscal DatePreviousMonth] - - - Kirjanpito – PäivämääräEdellinenVuosineljännes - table [Date] column [Fiscal DatePreviousQuarter] - - - Kirjanpito – PäivämääräEdellinenVuosi - table [Date] column [Fiscal DatePreviousYear] - - - KV – Vuosi - table [Date] column [FW Year] - - - KV – Vuosineljännes - table [Date] column [FW Quarter] - - - KV – Neljännesvuosi - table [Date] column [FW Quarter Year] - - - KV – Kuukausi - table [Date] column [FW Month] - - - KV – Kuukausi, vuosi - table [Date] column [FW Month Year] - - - KV – Viikko - table [Date] column [FW Week] - - - KV – Kausi - table [Date] column [FW Period] - - - KV – Viikko, vuosi - table [Date] column [FW Week Year] - - - KV – ViikkoAlkaa - table [Date] column [FW StartOfWeek] - - - KV – ViikkoPäättyy - table [Date] column [FW EndOfWeek] - - - KV – SuhteellisenViikonSijainti - table [Date] column [FW RelativeWeekPos] - - - KV – SuhteellisenKuukaudenSijainti - table [Date] column [FW RelativeMonthPos] - - - KV – SuhteellisenVuosineljänneksenSijainti - table [Date] column [FW RelativeQuarterPos] - - - KV – SuhteellisenVuodenSijainti - table [Date] column [FW RelativeYearPos] - - - KV – KuukausiAlkaa - table [Date] column [FW StartOfMonth] - - - KV – KuukausiPäättyy - table [Date] column [FW EndOfMonth] - - - KV – VuosineljännesAlkaa - table [Date] column [FW StartOfQuarter] - - - KV – VuosineljännesPäättyy - table [Date] column [FW EndOfQuarter] - - - KV – VuosiAlkaa - table [Date] column [FW StartOfYear] - - - KV – VuosiPäättyy - table [Date] column [FW EndOfYear] - - - KV – KuukaudenPäivät - table [Date] column [FW MonthDays] - - - KV – VuosineljänneksenPäivät - table [Date] column [FW QuarterDays] - - - KV – VuodenPäivät - table [Date] column [FW YearDays] - - - KV – KuukaudenPäivänNumero - table [Date] column [FW DayOfMonthNumber] - - - KV – VuosineljänneksenPäivänNumero - table [Date] column [FW DayOfQuarterNumber] - - - KV – VuodenPäivänNumero - table [Date] column [FW DayOfYearNumber] - - - KV – PäivämääräEdellinenViikko - table [Date] column [FW DatePreviousWeek] - - - KV – PäivämääräEdellinenKuukausi - table [Date] column [FW DatePreviousMonth] - - - KV – PäivämääräEdellinenVuosineljännes - table [Date] column [FW DatePreviousQuarter] - - - KV – PäivämääräEdellinenVuosi - table [Date] column [FW DatePreviousYear] - - - Suhteellinen päivämäärä - table [Date] column [Relative Day] - - - Päivien määrä - table [Date] measure [No. of Days] - - - Työpäivät - table [Date] measure [Working Days] - - - Järjestetty - table [Date] measure [Ranged] - - - Kirjanpito – Vuosi-Vuosineljännes-Kuukausi-Viikko - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Tilikausi - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Kirjanpito – Neljännesvuosi - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Kirjanpidon kuukausi, vuosi - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Kirjanpitoviikko, vuosi - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalenteri – Vuosi-Vuosineljännes-Kuukausi-Viikko - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalenterivuosi - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalenteri – Neljännesvuosi - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalenterikuukausi – Vuosi - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalenteriviikko – Vuosi - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - KV – Vuosi-Vuosineljännes-Kuukausi-Viikko - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - KV – Vuosi - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - KV – Neljännesvuosi - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - KV – Kuukausi, vuosi - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - KV – Viikko, vuosi - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Kirjanpito – Vuosi-Kuukausi - table [Date] hierarchy [Fiscal Year-Month] - - - Tilikausi - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Kirjanpidon kuukausi, vuosi - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Kirjanpito – Vuosi-Kuukausi-Viikko - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Tilikausi - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Kirjanpidon kuukausi, vuosi - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Kirjanpitoviikko, vuosi - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalenteri – Vuosi-Kuukausi - table [Date] hierarchy [Calendar Year-Month] - - - Kalenterivuosi - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalenterikuukausi – Vuosi - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalenteri – Vuosi-Kuukausi-Viikko - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalenterivuosi - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalenterikuukausi – Vuosi - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalenteriviikko – Vuosi - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - KV – Vuosi-Kuukausi-Viikko - table [Date] hierarchy [FW Year-Month-Week] - - - KV – Vuosi - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - KV – Kuukausi, vuosi - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - KV – Viikko, vuosi - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - KV – Vuosi-Vuosineljännes-Viikko - table [Date] hierarchy [FW Year-Quarter-Week] - - - KV – Vuosi - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - KV – Neljännesvuosi - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - KV – Viikko, vuosi - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - KV – Vuosi-Viikko - table [Date] hierarchy [FW Year-Week] - - - KV – Vuosi - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - KV – Viikko, vuosi - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Oman raportin otsikko - table [Localized Labels] measure [My Report Title] - - - Oma painikkeen otsikko - table [Localized Labels] measure [My Button Caption] - - - Oma visuaalinen otsikko - table [Localized Labels] measure [My Visual Title] - - - Passiiviset työntekijät - table [Localized Labels] measure [Inactive Employees] - - - Työntekijät, joiden työsuhde päättynyt - table [Localized Labels] measure [Terminated Employees] - - - Työntekijät ammattiyhdistyksissä - table [Localized Labels] measure [Employees in Unions] - - - Sosiaalinen analyysi - table [Localized Labels] measure [Social Analysis] - - - Sukupuolijakauma - table [Localized Labels] measure [Gender Distribution] - - - Ikäjakauma - table [Localized Labels] measure [Age Distribution] - - - Työntekijöiden pätevyydet - table [Localized Labels] measure [Employees Qualifications] - - - Toteutuneet päästöt vrt. tavoite - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e-päästöt laajuuksittain - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Kaasupäästöt luokittain - table [Localized Labels] measure [Gas Emissions by Category] - - - Toteutuneet päästöt vrt. perustaso - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e-päästöt vrt. perustaso - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e-päästöt tileittäin - table [Localized Labels] measure [CO2e Emissions by Account] - - - Vesi- ja jäteanalyysi - table [Localized Labels] measure [Water and Waste Analysis] - - - Vesi laitoksen sijainnin mukaan - table [Localized Labels] measure [Water by Facility Location] - - - Vesi laitoksen kapasiteetin mukaan - table [Localized Labels] measure [Water by Facility Capacity] - - - Vesi- ja jäte tyypeittäin - table [Localized Labels] measure [Water and Waste by Type] - - - Vesi- ja jäteintensiteetti tyypeittäin - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Vesi- ja jäteintensiteetti laitoksittain - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Päästöt luokittain ja laajuuksittain - table [Localized Labels] measure [Emissions by Category and Scope] - - - Päästöt luokittain - table [Localized Labels] measure [Emissions by Category] - - - Päästöt laajuuksittain - table [Localized Labels] measure [Emissions by Scope] - - - CO2e-analyysi - table [Localized Labels] measure [CO2e Analysis] - - - CO2e-päästöt luokittain - table [Localized Labels] measure [CO2e Emissions by Category] - - - Hiilihyvitys kuukausittain - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e-ekvivalenttipäästöt kuukausittain ja tuotoittain - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Työntekijätapahtumiin porautuminen - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Työntekijätapahtumat - table [Localized Labels] measure [Employee Ledger Entries] - - - Vastuullisuustapahtumat - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Vastuullisuustapahtumiin porautuminen - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Työntekijätapahtumiin porautuminen - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Vastuullisuus – Yleiskuvaus - table [Localized Labels] measure [Sustainability Overview] - - - Vastuullisuusanalytiikka - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e-päästöt kuukausittain - table [Localized Labels] measure [CO2e Emissions by Month] - - - Laajuuksien 1 ja 2 analyysi luokittain per vuosi - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e-päästöt osastoittain - table [Localized Labels] measure [CO2e Emissions by Department] - - - Matka kohti hiilineutraaliutta - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e-päästöt liiketoimintaryhmittäin - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Uusiutuvan energian käyttö - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e-päästöt ajan myötä - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Älykäs CO2e-arviointi - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e-päästöt yleisen dimension yksi mukaan - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e-päästöt yleisen dimension kaksi mukaan - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e-ekvivalenttipäästöt kuukausittain - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Yrityksen nimi - table [Localized Labels] measure [Company Name] - - - Päivitetty viimeksi - table [Localized Labels] measure [Last Refreshed] - - - Vapautetut työntekijät - table [Localized Labels] measure [Released Employees] - - - CO2e-hajautuspuu - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Tärkeimmät CO2e-vaikutukset - table [Localized Labels] measure [CO2e Key Influences] - - - Veden ja jätteiden vuosittainen ja päivittäinen muutos - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Vastuullisuustapahtumat - table [table.Name] - - - Tapahtumanro - table [Sustainability Ledger Entries] column [Entry No.] - - - Kuvaus - table [Sustainability Ledger Entries] column [Description] - - - Vesityyppi - table [Sustainability Ledger Entries] column [Water Type] - - - Vesi-/jäteintensiteetin tyyppi - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Asiakirjatyyppi - table [Sustainability Ledger Entries] column [Document Type] - - - CO2-päästöt - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4-päästöt - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - CO2-päästöt, saldo - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - CO2-päästöt, saldo pvm:ttäin - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O-päästöt - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e-päästöt - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - CH4-päästöt, saldo pvm:ttäin - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - CH4-päästöt, saldo - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Vesi-intensiteetti - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Jäteintensiteetti - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Vesipäästö - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - CO2e-päästöt, saldo - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - CO2e-päästöt, saldo pvm:ttäin - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Vesipäästö, saldo pvm:ttäin - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Vesipäästö, saldo - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - N2O-päästöt, saldo - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - N2O-päästöt, saldo pvm:ttäin - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Jäteintensiteetti, saldo pvm:ttäin - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Jäteintensiteetti, saldo - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Vesi-intensiteetti, saldo - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Vesi-intensiteetti, saldo pvm:ttäin - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2-perustaso - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4-perustaso - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 vrt. perustaso (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O-perustaso - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O vrt. perustaso (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 vrt. perustaso (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Vesi, perustaso - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Jäte, perustaso - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Vesi vrt. perustaso (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Jäte vrt. perustaso (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e-perustaso - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e vrt. perustaso (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Ostetut hiilihyvitykset - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Vesipäästö, perustaso - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Vesipäästö vrt. perustaso (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e-päästöt (ilman hyvityksiä) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Vesi-intensiteetti, EDV - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Vesi-intensiteetti, VV - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Jäteintensiteetti, EDV - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Jäteintensiteetti, VV - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Vesipäästö, EDV - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Vesipäästö, VV - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Vesipäästö, tuotantotiedot - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Jäteintensiteetti, EDP - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Vesi-intensiteetti, tuotantotiedot - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Vesi-intensiteetti, päivittäinen - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Jäteintensiteetti, päivittäinen - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Vesipäästö, päivittäinen - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Perus, linkki - table [Sustainability Ledger Entries] measure [Base Link] - - - Vastuullisuustapahtumat, linkki - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Saatavilla oleva vesi - table [Sustainability Ledger Entries] measure [Water Available] - - - Vastuullisuustilit - table [table.Name] - - - Vastuullisuustilin nro - table [Sustainability Accounts] column [Sustainability Account No.] - - - Vastuullisuustilin nimi - table [Sustainability Accounts] column [Sustainability Account Name] - - - Maa tai alue - table [table.Name] - - - Maa- tai aluekoodi - table [Country/Region] column [Country Region Code] - - - Maan/alueen nimi - table [Country/Region] column [Country Region Name] - - - Vastuupaikka - table [table.Name] - - - Vastuupaikan koodi - table [Responsibility Centre] column [Responsibility Centre Code] - - - Vastuupaikan nimi - table [Responsibility Centre] column [Responsibility Centre Name] - - - Laitoksen kapasiteetti - table [Responsibility Centre] measure [Facility Capacity] - - - Vastuullisuustavoitteet - table [table.Name] - - - Tuloskortin nro - table [Sustainability Goals] column [Score Card No.] - - - Nro - table [Sustainability Goals] column [No.] - - - Nimi - table [Sustainability Goals] column [Name] - - - Omistaja - table [Sustainability Goals] column [Owner] - - - CO2-tavoitearvo - table [Sustainability Goals] column [Target Value For CO2] - - - CH4-tavoitearvo - table [Sustainability Goals] column [Target Value For CH4] - - - N2O-tavoitearvo - table [Sustainability Goals] column [Target Value For N2O] - - - Vesi-intensiteetin tavoitearvo - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Jäteintensiteetin tavoitearvo - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Päätavoite - table [Sustainability Goals] column [Main Goal] - - - Alkamispäivä - table [Sustainability Goals] column [Start Date] - - - Päättymispäivä - table [Sustainability Goals] column [End Date] - - - Perustason alkamispäivämäärä - table [Sustainability Goals] column [Baseline Start Date] - - - Perustason päättymispäivämäärä - table [Sustainability Goals] column [Baseline End Date] - - - CO2-tavoite - table [Sustainability Goals] measure [CO2 Target] - - - Toteutunut CO2 (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4-tavoite - table [Sustainability Goals] measure [CH4 Target] - - - N2O-tavoite - table [Sustainability Goals] measure [N2O Target] - - - Toteutunut CH4 (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - Toteutunut N2O (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Vesitavoite - table [Sustainability Goals] measure [Water Target] - - - Jätetavoite - table [Sustainability Goals] measure [Waste Target] - - - Toteutunut vesi (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Toteutunut jäte (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - Toteutunut CO2e (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Nykyinen CO2-arvo - table [Sustainability Goals] measure [CO2 Current Value] - - - Nykyinen CH4-arvo - table [Sustainability Goals] measure [CH4 Current Value] - - - Nykyinen N2O-arvo - table [Sustainability Goals] measure [N2O Current Value] - - - Nykyinen CO2e-arvo - table [Sustainability Goals] measure [CO2e Current Value] - - - Vesi, nykyarvo - table [Sustainability Goals] measure [Water Current Value] - - - Jäte, nykyarvo - table [Sustainability Goals] measure [Waste Current Value] - - - Työntekijätapahtumat - table [table.Name] - - - Tapahtumanro - table [Employee Ledger Entries] column [Entry No.] - - - Asiakirjatyyppi - table [Employee Ledger Entries] column [Document Type] - - - Asiakirjanumero - table [Employee Ledger Entries] column [Document No.] - - - Kuvaus - table [Employee Ledger Entries] column [Description] - - - Työntekijän summa - table [Employee Ledger Entries] measure [Employee Amount] - - - Työntekijätapahtumat – Linkki - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Työntekijän pätevyydet - table [table.Name] - - - Työntekijän pätevyyskoodit - table [Employee Qualifications] column [Employee Qualification Codes] - - - Työntekijän pätevyydet - table [Employee Qualifications] measure [Employee Qualifications] - - - Päästömaksut - table [table.Name] - - - Päästötyyppi - table [Emission Fees] column [Emission Type] - - - Laajuuden tyyppi - table [Emission Fees] column [Scope Type] - - - Aloituspäivämäärä - table [Emission Fees] column [Starting Date] - - - Lopetuspäivämäärä - table [Emission Fees] column [Ending Date] - - - Maa- tai aluekoodi - table [Emission Fees] column [Country Region Code] - - - Vastuupaikka - table [Emission Fees] column [Responsibility Centre] - - - Hiilimaksu - table [Emission Fees] column [Carbon Fee] - - - Hiiliekvivalenttikerroin - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e-tavoite - table [Emission Fees] measure [CO2e Target] - - - CO2-hiiliekvivalentti - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4-hiiliekvivalentti - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O-hiiliekvivalentti - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Työntekijän poissaolot - table [table.Name] - - - Tapahtumanro - table [Employee Absences] column [Entry No] - - - Alkaen pvm:stä - table [Employee Absences] column [From Date] - - - Pvm:ään asti - table [Employee Absences] column [To Date] - - - Poissaolon syy - table [Employee Absences] column [Cause of Absence] - - - Kuvaus - table [Employee Absences] column [Description] - - - Työntekijän poissaolot - table [Employee Absences] measure [Employee Absences] - - - Poissaolotunnit (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Vastuullisuustilin alaluokat - table [table.Name] - - - Alaluokan koodi - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Alaluokan kuvaus - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Uusiutuva energia - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Työntekijät - table [table.Name] - - - Työntekijänro - table [Employees] column [Employee No.] - - - Työntekijän koko nimi - table [Employees] column [Employee Full Name] - - - Työntekijän etunimi - table [Employees] column [Employee First Name] - - - Työntekijän sukunimi - table [Employees] column [Employee Last Name] - - - Työntekijän sukupuoli - table [Employees] column [Employee Gender] - - - Työntekijän ammattiyhdistyksen koodi - table [Employees] column [Employee Union Code] - - - Työntekijän tila - table [Employees] column [Employee Status] - - - Työntekijän toimettomuuden syy - table [Employees] column [Employee Cause of Inactivity] - - - Työntekijän passiivisuuden pvm - table [Employees] column [Employee Inactive Date] - - - Työntekijän työsuhteen päättymisen syyt - table [Employees] column [Employee Grounds for Termination] - - - Työntekijän syntymäpäivä - table [Employees] column [Employee Date of Birth] - - - Ikä - table [Employees] column [Age] - - - Ikäjakauma - table [Employees] column [Age Distribution] - - - Työntekijöiden määrä - table [Employees] measure [No. of Employees] - - - Miespuolisten työntekijöiden määrä - table [Employees] measure [No. of Male Employees] - - - Naispuolisten työntekijöiden määrä - table [Employees] measure [No. of Female Employees] - - - Muiden työntekijöiden määrä - table [Employees] measure [No. of Other Employees] - - - Miespuoliset työntekijät (%) - table [Employees] measure [Male Employees (%)] - - - Naispuoliset työntekijät (%) - table [Employees] measure [Female Employees (%)] - - - Muut työntekijät (%) - table [Employees] measure [Other Employees (%)] - - - Aktiiviset työntekijät - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-BE.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-BE.resx deleted file mode 100644 index 4928fe79e6..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-BE.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Catégorie de compte général - table [table.Name] - - - Désignation catégorie cpte général - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Code catégorie du compte de durabilité - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Champ de l’émission catégorie du compte de durabilité - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Ensembles de dimensions - table [table.Name] - - - Axe analytique principal 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Axe analytique principal 2 - table [Dimension Sets] column [Global Dimension 2] - - - Raccourci axe 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Raccourci axe 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Raccourci axe 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Raccourci axe 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Raccourci axe 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Raccourci axe 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - SERVICE - table [Dimension Sets] column [DEPARTMENT] - - - Nom du service - table [Dimension Sets] column [Department Name] - - - GROUPECLIENT - table [Dimension Sets] column [CUSTOMERGROUP] - - - Nom du groupe de clients - table [Dimension Sets] column [Customer Group Name] - - - RÉGION - table [Dimension Sets] column [AREA] - - - Nom de la zone - table [Dimension Sets] column [Area Name] - - - MARCHÉ - table [Dimension Sets] column [BUSINESSGROUP] - - - Nom marché - table [Dimension Sets] column [Business Group Name] - - - CAMPAGNEVENTE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Nom campagne de vente - table [Dimension Sets] column [Sales campaign Name] - - - COMMERCIAL - table [Dimension Sets] column [SALESPERSON] - - - Nom vendeur - table [Dimension Sets] column [Salesperson Name] - - - Date - table [table.Name] - - - Jour semaine - table [Date] column [Week Day] - - - Type de jour - table [Date] column [Day Type] - - - Année civile - table [Date] column [Calendar Year] - - - Trimestre civil - table [Date] column [Calendar Quarter] - - - Trimestre civil - table [Date] column [Calendar Quarter Year] - - - Mois civil - table [Date] column [Calendar Month] - - - Mois année civile - table [Date] column [Calendar Month Year] - - - Semaine civile - table [Date] column [Calendar Week] - - - Semaine année civile - table [Date] column [Calendar Week Year] - - - PosSemaineRelative civile - table [Date] column [Calendar RelativeWeekPos] - - - PosMoisRelatif civil - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelatif civil - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnéeRelative civile - table [Date] column [Calendar RelativeYearPos] - - - DébutDuMois civil - table [Date] column [Calendar StartOfMonth] - - - FinDuMois civil - table [Date] column [Calendar EndOfMonth] - - - DébutDuTrimestre civil - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre civil - table [Date] column [Calendar EndOfQuarter] - - - DébutAnnée civile - table [Date] column [Calendar StartOfYear] - - - FinAnnée civile - table [Date] column [Calendar EndOfYear] - - - JoursMois civils - table [Date] column [Calendar MonthDays] - - - JoursTrimestre civils - table [Date] column [Calendar QuarterDays] - - - JoursAnnée civils - table [Date] column [Calendar YearDays] - - - NuméroJourDuMois civil - table [Date] column [Calendar DayOfMonthNumber] - - - NuméroJourDuTrimestre civil - table [Date] column [Calendar DayOfQuarterNumber] - - - NuméroJourAnnée civile - table [Date] column [Calendar DayOfYearNumber] - - - DateSemainePrécédente civile - table [Date] column [Calendar DatePreviousWeek] - - - DateMoisPrécédent civil - table [Date] column [Calendar DatePreviousMonth] - - - DateTrimestrePrécédent civil - table [Date] column [Calendar DatePreviousQuarter] - - - DateAnnéePrécédente civile - table [Date] column [Calendar DatePreviousYear] - - - Exercice - table [Date] column [Fiscal Year] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter Year] - - - Mois d’exercice - table [Date] column [Fiscal Month] - - - Mois et année d’exercice - table [Date] column [Fiscal Month Year] - - - Semaine d’exercice - table [Date] column [Fiscal Week] - - - Semaine année d’exercice - table [Date] column [Fiscal Week Year] - - - PosSemaineRelative d’exercice - table [Date] column [Fiscal RelativeWeekPos] - - - PosMoisRelatif d’exercice - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelatif d’exercice - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnéeRelative d’exercice - table [Date] column [Fiscal RelativeYearPos] - - - DébutDuMois d’exercice - table [Date] column [Fiscal StartOfMonth] - - - FinDuMois d’exercice - table [Date] column [Fiscal EndOfMonth] - - - DébutDuTrimestre d’exercice - table [Date] column [Fiscal StartOfQuarter] - - - FinDuTrimestre d’exercice - table [Date] column [Fiscal EndOfQuarter] - - - DébutExercice fiscal - table [Date] column [Fiscal StartOfYear] - - - FinExercice fiscal - table [Date] column [Fiscal EndOfYear] - - - JoursMois d’exercice - table [Date] column [Fiscal MonthDays] - - - JoursTrimestre d’exercice - table [Date] column [Fiscal QuarterDays] - - - JoursExercice - table [Date] column [Fiscal YearDays] - - - NuméroJourDuMois d’exercice - table [Date] column [Fiscal DayOfMonthNumber] - - - NuméroJourDuTrimestre d’exercice - table [Date] column [Fiscal DayOfQuarterNumber] - - - NuméroJourAnnée d’exercice - table [Date] column [Fiscal DayOfYearNumber] - - - DateSemainePrécédente d’exercice - table [Date] column [Fiscal DatePreviousWeek] - - - DateMoisPrécédent d’exercice - table [Date] column [Fiscal DatePreviousMonth] - - - DateTrimestrePrécédent d’exercice - table [Date] column [Fiscal DatePreviousQuarter] - - - DateAnnéePrécédente d’exercice - table [Date] column [Fiscal DatePreviousYear] - - - Année SE - table [Date] column [FW Year] - - - Trimestre SE - table [Date] column [FW Quarter] - - - Trimestre année SE - table [Date] column [FW Quarter Year] - - - Mois SE - table [Date] column [FW Month] - - - Mois année SE - table [Date] column [FW Month Year] - - - Semaine SE - table [Date] column [FW Week] - - - Période SE - table [Date] column [FW Period] - - - Semaine année SE - table [Date] column [FW Week Year] - - - DébutDeSemaine SE - table [Date] column [FW StartOfWeek] - - - FinDeSemaine SE - table [Date] column [FW EndOfWeek] - - - PosSemaineRelative SE - table [Date] column [FW RelativeWeekPos] - - - PosMoisRelatif SE - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelatif SE - table [Date] column [FW RelativeQuarterPos] - - - PosAnnéeRelative SE - table [Date] column [FW RelativeYearPos] - - - DébutDuMois SE - table [Date] column [FW StartOfMonth] - - - FinDuMois SE - table [Date] column [FW EndOfMonth] - - - DébutDuTrimestre SE - table [Date] column [FW StartOfQuarter] - - - FinDuTrimestre SE - table [Date] column [FW EndOfQuarter] - - - DébutExercice SE - table [Date] column [FW StartOfYear] - - - FinAnnée SE - table [Date] column [FW EndOfYear] - - - JoursMois SE - table [Date] column [FW MonthDays] - - - JoursTrimestre SE - table [Date] column [FW QuarterDays] - - - JoursAnnée SE - table [Date] column [FW YearDays] - - - NuméroJourDuMois SE - table [Date] column [FW DayOfMonthNumber] - - - NuméroJourDuTrimestre SE - table [Date] column [FW DayOfQuarterNumber] - - - NuméroJourAnnée SE - table [Date] column [FW DayOfYearNumber] - - - DateSemainePrécédente SE - table [Date] column [FW DatePreviousWeek] - - - DateMoisPrécédent SE - table [Date] column [FW DatePreviousMonth] - - - DateTrimestrePrécédent SE - table [Date] column [FW DatePreviousQuarter] - - - DateAnnéePrécédente SE - table [Date] column [FW DatePreviousYear] - - - Jour relatif - table [Date] column [Relative Day] - - - Nombre de jours - table [Date] measure [No. of Days] - - - Jours ouvrés - table [Date] measure [Working Days] - - - Plage - table [Date] measure [Ranged] - - - Exercice-Trimestre-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Semaine-Mois-Trimestre-Année civils - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre civil - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Année-Trimestre-Mois-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Exercice-Mois - table [Date] hierarchy [Fiscal Year-Month] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Exercice-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Année-Mois civil - table [Date] hierarchy [Calendar Year-Month] - - - Année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Mois-Semaine-Année civils - table [Date] hierarchy [Calendar Year-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Année-Mois-Semaine SE - table [Date] hierarchy [FW Year-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Année-Trimestre-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Année-Semaine SE - table [Date] hierarchy [FW Year-Week] - - - Année SE - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Titre de l’état - table [Localized Labels] measure [My Report Title] - - - Légende de mon bouton - table [Localized Labels] measure [My Button Caption] - - - Mon titre visuel - table [Localized Labels] measure [My Visual Title] - - - Salariés inactifs - table [Localized Labels] measure [Inactive Employees] - - - Salariés licenciés - table [Localized Labels] measure [Terminated Employees] - - - Salariés dans les mutuelles - table [Localized Labels] measure [Employees in Unions] - - - Analyse sociale - table [Localized Labels] measure [Social Analysis] - - - Répartition par genre - table [Localized Labels] measure [Gender Distribution] - - - Répartition par âge - table [Localized Labels] measure [Age Distribution] - - - Qualifications salariés - table [Localized Labels] measure [Employees Qualifications] - - - Émissions réalisées par rapport à la cible - table [Localized Labels] measure [Realized Emissions vs Target] - - - Émissions de CO2e par champ - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Émissions de gaz par catégorie - table [Localized Labels] measure [Gas Emissions by Category] - - - Émissions réalisées par rapport à la ligne de base - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Émissions de CO2e par rapport à la ligne de base - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Émissions de CO2e par compte - table [Localized Labels] measure [CO2e Emissions by Account] - - - Analyse de l’eau et des déchets - table [Localized Labels] measure [Water and Waste Analysis] - - - Eau par magasin de l’installation - table [Localized Labels] measure [Water by Facility Location] - - - Eau par capacité de l’installation - table [Localized Labels] measure [Water by Facility Capacity] - - - Eau et déchets par type - table [Localized Labels] measure [Water and Waste by Type] - - - Intensité en eau et des déchets par type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Intensité en eau et des déchets par installation - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Émissions par catégorie et champ - table [Localized Labels] measure [Emissions by Category and Scope] - - - Émissions par catégorie - table [Localized Labels] measure [Emissions by Category] - - - Émissions par portée - table [Localized Labels] measure [Emissions by Scope] - - - Analyse du CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Émissions de CO2e par catégorie - table [Localized Labels] measure [CO2e Emissions by Category] - - - Crédit carbone par mois - table [Localized Labels] measure [Carbon Credit by Month] - - - Émissions d’équivalent CO2e par mois et par revenu - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Extraction écritures salarié - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Écritures comptable salarié - table [Localized Labels] measure [Employee Ledger Entries] - - - Écritures comptables durabilité - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Extraction Écritures comptables durabilité - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Extraction écritures comptables salarié - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Vue d’ensemble durabilité - table [Localized Labels] measure [Sustainability Overview] - - - Analyse de durabilité - table [Localized Labels] measure [Sustainability Analytics] - - - Émissions de CO2e par mois - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analyse des champs 1 et 2 par catégories par an - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Émissions de CO2e par département - table [Localized Labels] measure [CO2e Emissions by Department] - - - Parcours vers le zéro carbone net - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Émissions de CO2e par marché - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Activité des énergies renouvelables - table [Localized Labels] measure [Renewable Energy Usage] - - - Émissions de CO2e dans le temps - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart Review - table [Localized Labels] measure [CO2e Smart Review] - - - Émissions de CO2e par axe analytique principal un - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Émissions de CO2e par axe analytique principal deux - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Émissions d’équivalent CO2e par mois - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Nom de la société - table [Localized Labels] measure [Company Name] - - - Dernière actualisation - table [Localized Labels] measure [Last Refreshed] - - - Salariés lancés - table [Localized Labels] measure [Released Employees] - - - Arborescence de décomposition CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Influences clés CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Changement annuel et quotidien de l’eau et des déchets - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Écritures comptables durabilité - table [table.Name] - - - N° d’écriture - table [Sustainability Ledger Entries] column [Entry No.] - - - Désignation - table [Sustainability Ledger Entries] column [Description] - - - Type d’eau - table [Sustainability Ledger Entries] column [Water Type] - - - Type d’intensité en eau/des déchets - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Type du document - table [Sustainability Ledger Entries] column [Document Type] - - - Émissions CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - Émissions CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Solde émissions de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Solde à ce jour émissions de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - Émissions N2O - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Émissions CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Solde à ce jour émissions de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Solde émissions de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Solde émissions de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Bilan à ce jour émission de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Solde à ce jour rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Solde Rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Solde émissions de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Solde à ce jour émissions de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Solde à ce jour intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Solde intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Solde intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Solde à ce jour intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Ligne de base CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Ligne de base CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - Ligne de base N2O - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Ligne de base eau - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Ligne de base déchets - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Eau par rapport à ligne de base (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Déchets par rapport à ligne de base (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Ligne de base CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Crédits carbone achetés - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Rejeté dans l’eau par rapport à la ligne de base - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Rejeté dans l’eau par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Émissions de CO2e (hors crédits) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Intensité en eau AP - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Intensité en eau AAA - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Intensité des déchets AP - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Intensité des déchets AAA - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Rejeté dans l’eau AP - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Rejeté dans l’eau AAA - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - DP rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Intensité des déchets JP - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Intensité en eau DP - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Intensité en eau quotidienne - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Intensité des déchets quotidienne - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Rejeté dans l’eau quotidien - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Lien de base - table [Sustainability Ledger Entries] measure [Base Link] - - - Lien Écritures comptables durabilité - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Eau disponible - table [Sustainability Ledger Entries] measure [Water Available] - - - Comptes de durabilité - table [table.Name] - - - N° compte de durabilité - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nom du compte de durabilité - table [Sustainability Accounts] column [Sustainability Account Name] - - - Pays/région - table [table.Name] - - - Code de pays/région - table [Country/Region] column [Country Region Code] - - - Nom pays/région - table [Country/Region] column [Country Region Name] - - - Centre de gestion - table [table.Name] - - - Code centre de gestion - table [Responsibility Centre] column [Responsibility Centre Code] - - - Nom centre de gestion - table [Responsibility Centre] column [Responsibility Centre Name] - - - Capacité de l’installation - table [Responsibility Centre] measure [Facility Capacity] - - - Objectifs de durabilité - table [table.Name] - - - N° de tableau de bord - table [Sustainability Goals] column [Score Card No.] - - - - table [Sustainability Goals] column [No.] - - - Nom - table [Sustainability Goals] column [Name] - - - Propriétaire - table [Sustainability Goals] column [Owner] - - - Valeur cible pour CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Valeur cible pour CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Valeur cible pour N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Valeur cible pour l’intensité en eau - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Valeur cible pour l’intensité des déchets - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Objectif principal - table [Sustainability Goals] column [Main Goal] - - - Date de début - table [Sustainability Goals] column [Start Date] - - - Date de fin - table [Sustainability Goals] column [End Date] - - - Date de début ligne de base - table [Sustainability Goals] column [Baseline Start Date] - - - Date de fin ligne de base - table [Sustainability Goals] column [Baseline End Date] - - - Cible CO2 - table [Sustainability Goals] measure [CO2 Target] - - - CO2 réalisé (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - Cible CH4 - table [Sustainability Goals] measure [CH4 Target] - - - Cible N2O - table [Sustainability Goals] measure [N2O Target] - - - CH4 réalisé (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O réalisé (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Cible eau - table [Sustainability Goals] measure [Water Target] - - - Cible déchets - table [Sustainability Goals] measure [Waste Target] - - - Eau réalisée (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Déchets réalisés (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e réalisé (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Valeur actuelle CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Valeur actuelle CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Valeur actuelle N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Valeur actuelle CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Valeur actuelle eau - table [Sustainability Goals] measure [Water Current Value] - - - Valeur actuelle déchets - table [Sustainability Goals] measure [Waste Current Value] - - - Écritures comptable salarié - table [table.Name] - - - N° d’écriture - table [Employee Ledger Entries] column [Entry No.] - - - Type du document - table [Employee Ledger Entries] column [Document Type] - - - N° de document - table [Employee Ledger Entries] column [Document No.] - - - Désignation - table [Employee Ledger Entries] column [Description] - - - Montant de l’employé - table [Employee Ledger Entries] measure [Employee Amount] - - - Lien Écritures comptables salariés - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Qualifications salarié - table [table.Name] - - - Codes qualification salarié - table [Employee Qualifications] column [Employee Qualification Codes] - - - Qualifications salarié - table [Employee Qualifications] measure [Employee Qualifications] - - - Frais d’émission - table [table.Name] - - - Type d’émission - table [Emission Fees] column [Emission Type] - - - Type d’étendue - table [Emission Fees] column [Scope Type] - - - Date de début - table [Emission Fees] column [Starting Date] - - - Date de fin - table [Emission Fees] column [Ending Date] - - - Code de pays/région - table [Emission Fees] column [Country Region Code] - - - Centre de gestion - table [Emission Fees] column [Responsibility Centre] - - - Taxe carbone - table [Emission Fees] column [Carbon Fee] - - - Facteur équivalent carbone - table [Emission Fees] column [Carbon Equivalent Factor] - - - Cible CO2e - table [Emission Fees] measure [CO2e Target] - - - Équivalent carbone CO2 - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - Équivalent carbone CH4 - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - Équivalent carbone N2O - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Indisponibilités salarié - table [table.Name] - - - N° écriture - table [Employee Absences] column [Entry No] - - - Date début - table [Employee Absences] column [From Date] - - - Date fin - table [Employee Absences] column [To Date] - - - Motif indisponibilité - table [Employee Absences] column [Cause of Absence] - - - Désignation - table [Employee Absences] column [Description] - - - Indisponibilités salarié - table [Employee Absences] measure [Employee Absences] - - - Heures d’indisponibilité (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Catégories sous-compte de durabilité - table [table.Name] - - - Code sous-catégorie - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Désignation sous-catégorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Énergies renouvelables - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Salariés - table [table.Name] - - - N° salarié - table [Employees] column [Employee No.] - - - Nom complet du salarié - table [Employees] column [Employee Full Name] - - - Prénom du salarié - table [Employees] column [Employee First Name] - - - Nom du salarié - table [Employees] column [Employee Last Name] - - - Genre du salarié - table [Employees] column [Employee Gender] - - - Code mutuelle salarié - table [Employees] column [Employee Union Code] - - - Statut salarié - table [Employees] column [Employee Status] - - - Motif indisponibilité salarié - table [Employees] column [Employee Cause of Inactivity] - - - Date indisponibilité salarié - table [Employees] column [Employee Inactive Date] - - - Motifs fin de contrat salarié - table [Employees] column [Employee Grounds for Termination] - - - Date de naissance du salarié - table [Employees] column [Employee Date of Birth] - - - Âge - table [Employees] column [Age] - - - Répartition par âge - table [Employees] column [Age Distribution] - - - Nombre de salariés - table [Employees] measure [No. of Employees] - - - Nombre de salariés masculins - table [Employees] measure [No. of Male Employees] - - - Nombre de salariées féminines - table [Employees] measure [No. of Female Employees] - - - Nombre d’autres salariés - table [Employees] measure [No. of Other Employees] - - - Salariés masculins (%) - table [Employees] measure [Male Employees (%)] - - - Salariées féminines (%) - table [Employees] measure [Female Employees (%)] - - - Autres salariés (%) - table [Employees] measure [Other Employees (%)] - - - Employés actifs - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-CA.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-CA.resx deleted file mode 100644 index bbafd92ee1..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-CA.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Catégorie de compte du grand livre - table [table.Name] - - - Compte du grand livre Description de la catégorie - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Code catégorie du compte de durabilité - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Champ de l’émission catégorie du compte de durabilité - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Ensembles de dimensions - table [table.Name] - - - Dimension principale 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Dimension principale 2 - table [Dimension Sets] column [Global Dimension 2] - - - Dimension de raccourci 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Dimension de raccourci 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Dimension de raccourci 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Dimension de raccourci 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Dimension de raccourci 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Dimension de raccourci 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - SERVICE - table [Dimension Sets] column [DEPARTMENT] - - - Nom du service - table [Dimension Sets] column [Department Name] - - - GROUPECLIENT - table [Dimension Sets] column [CUSTOMERGROUP] - - - Nom du groupe de clients - table [Dimension Sets] column [Customer Group Name] - - - RÉGION - table [Dimension Sets] column [AREA] - - - Nom de la zone - table [Dimension Sets] column [Area Name] - - - MARCHÉ - table [Dimension Sets] column [BUSINESSGROUP] - - - Nom marché - table [Dimension Sets] column [Business Group Name] - - - CAMPAGNEVENTE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Nom promotion de vente - table [Dimension Sets] column [Sales campaign Name] - - - REPRÉSENTANT - table [Dimension Sets] column [SALESPERSON] - - - Nom du représentant - table [Dimension Sets] column [Salesperson Name] - - - Date - table [table.Name] - - - Jour semaine - table [Date] column [Week Day] - - - Type de jour - table [Date] column [Day Type] - - - Année civile - table [Date] column [Calendar Year] - - - Trimestre civil - table [Date] column [Calendar Quarter] - - - Trimestre civil - table [Date] column [Calendar Quarter Year] - - - Mois civil - table [Date] column [Calendar Month] - - - Mois année civile - table [Date] column [Calendar Month Year] - - - Semaine civile - table [Date] column [Calendar Week] - - - Semaine année civile - table [Date] column [Calendar Week Year] - - - PosSemaineRelative civile - table [Date] column [Calendar RelativeWeekPos] - - - PosMoisRelatif civil - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelatif civil - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnéeRelative civile - table [Date] column [Calendar RelativeYearPos] - - - DébutDuMois civil - table [Date] column [Calendar StartOfMonth] - - - FinDuMois civil - table [Date] column [Calendar EndOfMonth] - - - DébutDuTrimestre civil - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre civil - table [Date] column [Calendar EndOfQuarter] - - - DébutAnnée civile - table [Date] column [Calendar StartOfYear] - - - FinAnnée civile - table [Date] column [Calendar EndOfYear] - - - JoursMois civils - table [Date] column [Calendar MonthDays] - - - JoursTrimestre civils - table [Date] column [Calendar QuarterDays] - - - JoursAnnée civils - table [Date] column [Calendar YearDays] - - - NuméroJourDuMois civil - table [Date] column [Calendar DayOfMonthNumber] - - - NuméroJourDuTrimestre civil - table [Date] column [Calendar DayOfQuarterNumber] - - - NuméroJourAnnée civile - table [Date] column [Calendar DayOfYearNumber] - - - DateSemainePrécédente civile - table [Date] column [Calendar DatePreviousWeek] - - - DateMoisPrécédent civil - table [Date] column [Calendar DatePreviousMonth] - - - DateTrimestrePrécédent civil - table [Date] column [Calendar DatePreviousQuarter] - - - DateAnnéePrécédente civile - table [Date] column [Calendar DatePreviousYear] - - - Exercice - table [Date] column [Fiscal Year] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter Year] - - - Mois d’exercice - table [Date] column [Fiscal Month] - - - Mois et année d’exercice - table [Date] column [Fiscal Month Year] - - - Semaine d’exercice - table [Date] column [Fiscal Week] - - - Semaine année d’exercice - table [Date] column [Fiscal Week Year] - - - PosSemaineRelative d’exercice - table [Date] column [Fiscal RelativeWeekPos] - - - PosMoisRelatif d’exercice - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelatif d’exercice - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnéeRelative d’exercice - table [Date] column [Fiscal RelativeYearPos] - - - DébutDuMois d’exercice - table [Date] column [Fiscal StartOfMonth] - - - FinDuMois d’exercice - table [Date] column [Fiscal EndOfMonth] - - - DébutDuTrimestre d’exercice - table [Date] column [Fiscal StartOfQuarter] - - - FinDuTrimestre d’exercice - table [Date] column [Fiscal EndOfQuarter] - - - DébutExercice fiscal - table [Date] column [Fiscal StartOfYear] - - - FinExercice fiscal - table [Date] column [Fiscal EndOfYear] - - - JoursMois d’exercice - table [Date] column [Fiscal MonthDays] - - - JoursTrimestre d’exercice - table [Date] column [Fiscal QuarterDays] - - - JoursExercice - table [Date] column [Fiscal YearDays] - - - NuméroJourDuMois d’exercice - table [Date] column [Fiscal DayOfMonthNumber] - - - NuméroJourDuTrimestre d’exercice - table [Date] column [Fiscal DayOfQuarterNumber] - - - NuméroJourAnnée d’exercice - table [Date] column [Fiscal DayOfYearNumber] - - - DateSemainePrécédente d’exercice - table [Date] column [Fiscal DatePreviousWeek] - - - DateMoisPrécédent d’exercice - table [Date] column [Fiscal DatePreviousMonth] - - - DateTrimestrePrécédent d’exercice - table [Date] column [Fiscal DatePreviousQuarter] - - - DateAnnéePrécédente d’exercice - table [Date] column [Fiscal DatePreviousYear] - - - Année SE - table [Date] column [FW Year] - - - Trimestre SE - table [Date] column [FW Quarter] - - - Trimestre année SE - table [Date] column [FW Quarter Year] - - - Mois SE - table [Date] column [FW Month] - - - Mois année SE - table [Date] column [FW Month Year] - - - Semaine SE - table [Date] column [FW Week] - - - Période SE - table [Date] column [FW Period] - - - Semaine année SE - table [Date] column [FW Week Year] - - - DébutDeSemaine SE - table [Date] column [FW StartOfWeek] - - - FinDeSemaine SE - table [Date] column [FW EndOfWeek] - - - PosSemaineRelative SE - table [Date] column [FW RelativeWeekPos] - - - PosMoisRelatif SE - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelatif SE - table [Date] column [FW RelativeQuarterPos] - - - PosAnnéeRelative SE - table [Date] column [FW RelativeYearPos] - - - DébutDuMois SE - table [Date] column [FW StartOfMonth] - - - FinDuMois SE - table [Date] column [FW EndOfMonth] - - - DébutDuTrimestre SE - table [Date] column [FW StartOfQuarter] - - - FinDuTrimestre SE - table [Date] column [FW EndOfQuarter] - - - DébutExercice SE - table [Date] column [FW StartOfYear] - - - FinAnnée SE - table [Date] column [FW EndOfYear] - - - JoursMois SE - table [Date] column [FW MonthDays] - - - JoursTrimestre SE - table [Date] column [FW QuarterDays] - - - JoursAnnée SE - table [Date] column [FW YearDays] - - - NuméroJourDuMois SE - table [Date] column [FW DayOfMonthNumber] - - - NuméroJourDuTrimestre SE - table [Date] column [FW DayOfQuarterNumber] - - - NuméroJourAnnée SE - table [Date] column [FW DayOfYearNumber] - - - DateSemainePrécédente SE - table [Date] column [FW DatePreviousWeek] - - - DateMoisPrécédent SE - table [Date] column [FW DatePreviousMonth] - - - DateTrimestrePrécédent SE - table [Date] column [FW DatePreviousQuarter] - - - DateAnnéePrécédente SE - table [Date] column [FW DatePreviousYear] - - - Jour relatif - table [Date] column [Relative Day] - - - Nombre de jours - table [Date] measure [No. of Days] - - - Jours ouvrés - table [Date] measure [Working Days] - - - Plage - table [Date] measure [Ranged] - - - Exercice-trimestre-mois-semaine - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Semaine-Mois-Trimestre-Année civils - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre civil - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Année-Trimestre-Mois-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Exercice-mois - table [Date] hierarchy [Fiscal Year-Month] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Exercice-mois-semaine - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Année-Mois civil - table [Date] hierarchy [Calendar Year-Month] - - - Année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Mois-Semaine-Année civils - table [Date] hierarchy [Calendar Year-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Année-Mois-Semaine SE - table [Date] hierarchy [FW Year-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Année-Trimestre-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Année-Semaine SE - table [Date] hierarchy [FW Year-Week] - - - Année SE - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Titre de mon rapport - table [Localized Labels] measure [My Report Title] - - - Légende de mon bouton - table [Localized Labels] measure [My Button Caption] - - - Mon titre visuel - table [Localized Labels] measure [My Visual Title] - - - Employés inactifs - table [Localized Labels] measure [Inactive Employees] - - - Employés licenciés - table [Localized Labels] measure [Terminated Employees] - - - Employés syndiqués - table [Localized Labels] measure [Employees in Unions] - - - Analyse sociale - table [Localized Labels] measure [Social Analysis] - - - Répartition par genre - table [Localized Labels] measure [Gender Distribution] - - - Répartition par âge - table [Localized Labels] measure [Age Distribution] - - - Qualifications des employés - table [Localized Labels] measure [Employees Qualifications] - - - Émissions réalisées par rapport à la cible - table [Localized Labels] measure [Realized Emissions vs Target] - - - Émissions de CO2e par champ - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Émissions de gaz par catégorie - table [Localized Labels] measure [Gas Emissions by Category] - - - Émissions réalisées par rapport à la ligne de base - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Émissions de CO2e par rapport à la ligne de base - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Émissions de CO2e par compte - table [Localized Labels] measure [CO2e Emissions by Account] - - - Analyse de l’eau et des déchets - table [Localized Labels] measure [Water and Waste Analysis] - - - Consommation d’eau par site - table [Localized Labels] measure [Water by Facility Location] - - - Eau par capacité de l’installation - table [Localized Labels] measure [Water by Facility Capacity] - - - Eau et déchets par type - table [Localized Labels] measure [Water and Waste by Type] - - - Intensité en eau et des déchets par type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Intensité en eau et des déchets par installation - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Émissions par catégorie et champ - table [Localized Labels] measure [Emissions by Category and Scope] - - - Émissions par catégorie - table [Localized Labels] measure [Emissions by Category] - - - Émissions par portée - table [Localized Labels] measure [Emissions by Scope] - - - Analyse du CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Émissions de CO2e par catégorie - table [Localized Labels] measure [CO2e Emissions by Category] - - - Crédit carbone par mois - table [Localized Labels] measure [Carbon Credit by Month] - - - Émissions d’équivalent CO2e par mois et par revenu - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Exploration des entrées de l’employé - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Écritures du grand livre des employés - table [Localized Labels] measure [Employee Ledger Entries] - - - Écritures relatives au développement durable - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Écritures relatives au développement durable - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Exploration des écritures du grand livre des employés - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Vue d’ensemble durabilité - table [Localized Labels] measure [Sustainability Overview] - - - Analyse de durabilité - table [Localized Labels] measure [Sustainability Analytics] - - - Émissions de CO2e par mois - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analyse des champs 1 et 2 par catégories par an - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Émissions de CO2e par département - table [Localized Labels] measure [CO2e Emissions by Department] - - - Parcours vers le zéro carbone net - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Émissions de CO2e par marché - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Utilisation d’énergies renouvelables - table [Localized Labels] measure [Renewable Energy Usage] - - - Émissions de CO2e dans le temps - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart Review - table [Localized Labels] measure [CO2e Smart Review] - - - Émissions de CO2 par dimension principale 1 - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Émissions de CO2 par dimension principale 2 - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Émissions d’équivalent CO2e par mois - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Nom de la compagnie - table [Localized Labels] measure [Company Name] - - - Dernière actualisation - table [Localized Labels] measure [Last Refreshed] - - - Raison de l’inactivité des employés - table [Localized Labels] measure [Released Employees] - - - Arborescence de décomposition CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Influences clés CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Changement annuel et quotidien de l’eau et des déchets - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Écritures relatives au développement durable - table [table.Name] - - - N° d’écriture - table [Sustainability Ledger Entries] column [Entry No.] - - - Description - table [Sustainability Ledger Entries] column [Description] - - - Type d’eau - table [Sustainability Ledger Entries] column [Water Type] - - - Type d’intensité en eau/des déchets - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Type du document - table [Sustainability Ledger Entries] column [Document Type] - - - Émissions CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - Émissions CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Solde émissions de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Solde à ce jour émissions de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - Émissions N2O - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Émissions CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Solde à ce jour émissions de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Solde émissions de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Solde émissions de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Bilan à ce jour émission de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Solde à ce jour rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Solde Rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Solde émissions de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Solde à ce jour émissions de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Solde à ce jour intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Solde intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Solde intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Solde à ce jour intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Ligne de base CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Ligne de base CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - Ligne de base N2O - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Ligne de base eau - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Ligne de base déchets - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Eau par rapport à ligne de base (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Déchets par rapport à ligne de base (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Ligne de base CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Crédits carbone achetés - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Rejeté dans l’eau par rapport à la ligne de base - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Rejeté dans l’eau par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Émissions de CO2e (hors crédits) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Intensité en eau AP - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Intensité en eau AAA - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Intensité des déchets AP - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Intensité des déchets AAA - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Rejeté dans l’eau AP - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Rejeté dans l’eau AAA - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - DP rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Intensité des déchets JP - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Intensité en eau DP - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Intensité en eau quotidienne - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Intensité des déchets quotidienne - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Rejeté dans l’eau quotidien - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Lien de base - table [Sustainability Ledger Entries] measure [Base Link] - - - Lien vers les écritures relatives au développement durable - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Eau disponible - table [Sustainability Ledger Entries] measure [Water Available] - - - Comptes de durabilité - table [table.Name] - - - N° compte de durabilité - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nom du compte de durabilité - table [Sustainability Accounts] column [Sustainability Account Name] - - - Pays/région - table [table.Name] - - - Code de pays/région - table [Country/Region] column [Country Region Code] - - - Nom pays/région - table [Country/Region] column [Country Region Name] - - - Centre de gestion - table [table.Name] - - - Code centre de gestion - table [Responsibility Centre] column [Responsibility Centre Code] - - - Nom centre de gestion - table [Responsibility Centre] column [Responsibility Centre Name] - - - Capacité de l’installation - table [Responsibility Centre] measure [Facility Capacity] - - - Objectifs de durabilité - table [table.Name] - - - N° de tableau de bord - table [Sustainability Goals] column [Score Card No.] - - - - table [Sustainability Goals] column [No.] - - - Nom - table [Sustainability Goals] column [Name] - - - Propriétaire - table [Sustainability Goals] column [Owner] - - - Valeur cible pour CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Valeur cible pour CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Valeur cible pour N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Valeur cible pour l’intensité en eau - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Valeur cible pour l’intensité des déchets - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Objectif principal - table [Sustainability Goals] column [Main Goal] - - - Date de début - table [Sustainability Goals] column [Start Date] - - - Date de fin - table [Sustainability Goals] column [End Date] - - - Date de début ligne de base - table [Sustainability Goals] column [Baseline Start Date] - - - Date de fin ligne de base - table [Sustainability Goals] column [Baseline End Date] - - - Cible CO2 - table [Sustainability Goals] measure [CO2 Target] - - - CO2 réalisé (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - Cible CH4 - table [Sustainability Goals] measure [CH4 Target] - - - Cible N2O - table [Sustainability Goals] measure [N2O Target] - - - CH4 réalisé (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O réalisé (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Cible eau - table [Sustainability Goals] measure [Water Target] - - - Cible déchets - table [Sustainability Goals] measure [Waste Target] - - - Eau réalisée (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Déchets réalisés (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e réalisé (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Valeur actuelle CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Valeur actuelle CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Valeur actuelle N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Valeur actuelle CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Valeur actuelle eau - table [Sustainability Goals] measure [Water Current Value] - - - Valeur actuelle déchets - table [Sustainability Goals] measure [Waste Current Value] - - - Écritures du grand livre des employés - table [table.Name] - - - N° d’écriture - table [Employee Ledger Entries] column [Entry No.] - - - Type du document - table [Employee Ledger Entries] column [Document Type] - - - N° de document - table [Employee Ledger Entries] column [Document No.] - - - Description - table [Employee Ledger Entries] column [Description] - - - Montant de l’employé - table [Employee Ledger Entries] measure [Employee Amount] - - - Lien vers les écritures du grand livre des employés - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Qualifications de l’employé - table [table.Name] - - - Codes de qualification de l’employé - table [Employee Qualifications] column [Employee Qualification Codes] - - - Qualifications de l’employé - table [Employee Qualifications] measure [Employee Qualifications] - - - Frais d’émission - table [table.Name] - - - Type d’émission - table [Emission Fees] column [Emission Type] - - - Type d’étendue - table [Emission Fees] column [Scope Type] - - - Date de début - table [Emission Fees] column [Starting Date] - - - Date de fin - table [Emission Fees] column [Ending Date] - - - Code de pays/région - table [Emission Fees] column [Country Region Code] - - - Centre de gestion - table [Emission Fees] column [Responsibility Centre] - - - Taxe carbone - table [Emission Fees] column [Carbon Fee] - - - Facteur équivalent carbone - table [Emission Fees] column [Carbon Equivalent Factor] - - - Cible CO2e - table [Emission Fees] measure [CO2e Target] - - - Équivalent carbone CO2 - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - Équivalent carbone CH4 - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - Équivalent carbone N2O - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Absences de l’employé - table [table.Name] - - - N° écriture - table [Employee Absences] column [Entry No] - - - Date début - table [Employee Absences] column [From Date] - - - Date fin - table [Employee Absences] column [To Date] - - - Motif indisponibilité - table [Employee Absences] column [Cause of Absence] - - - Description - table [Employee Absences] column [Description] - - - Absences de l’employé - table [Employee Absences] measure [Employee Absences] - - - Heures d’indisponibilité (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Catégories sous-compte de durabilité - table [table.Name] - - - Code sous-catégorie - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Description de la sous-catégorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Énergies renouvelables - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Employés - table [table.Name] - - - Numéro d’employé - table [Employees] column [Employee No.] - - - Nom complet de l’employé - table [Employees] column [Employee Full Name] - - - Prénom de l’employé - table [Employees] column [Employee First Name] - - - Nom de famille de l’employé - table [Employees] column [Employee Last Name] - - - Sexe de l’employé - table [Employees] column [Employee Gender] - - - Code syndical de l’employé - table [Employees] column [Employee Union Code] - - - Statut des employés - table [Employees] column [Employee Status] - - - Motif inactivité employé - table [Employees] column [Employee Cause of Inactivity] - - - Date d’inactivité de l’employé - table [Employees] column [Employee Inactive Date] - - - Motif de licenciement de l’employé - table [Employees] column [Employee Grounds for Termination] - - - Date de naissance de l’employé - table [Employees] column [Employee Date of Birth] - - - Âge - table [Employees] column [Age] - - - Répartition par âge - table [Employees] column [Age Distribution] - - - Nombre d’employés - table [Employees] measure [No. of Employees] - - - Nombre d’employés - table [Employees] measure [No. of Male Employees] - - - Nombre d’employées - table [Employees] measure [No. of Female Employees] - - - Nombre d’autres employés - table [Employees] measure [No. of Other Employees] - - - Employés masculins (%) - table [Employees] measure [Male Employees (%)] - - - Employées (%) - table [Employees] measure [Female Employees (%)] - - - Autres employés (%) - table [Employees] measure [Other Employees (%)] - - - Employés actifs - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-CH.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-CH.resx deleted file mode 100644 index 4928fe79e6..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-CH.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Catégorie de compte général - table [table.Name] - - - Désignation catégorie cpte général - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Code catégorie du compte de durabilité - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Champ de l’émission catégorie du compte de durabilité - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Ensembles de dimensions - table [table.Name] - - - Axe analytique principal 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Axe analytique principal 2 - table [Dimension Sets] column [Global Dimension 2] - - - Raccourci axe 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Raccourci axe 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Raccourci axe 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Raccourci axe 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Raccourci axe 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Raccourci axe 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - SERVICE - table [Dimension Sets] column [DEPARTMENT] - - - Nom du service - table [Dimension Sets] column [Department Name] - - - GROUPECLIENT - table [Dimension Sets] column [CUSTOMERGROUP] - - - Nom du groupe de clients - table [Dimension Sets] column [Customer Group Name] - - - RÉGION - table [Dimension Sets] column [AREA] - - - Nom de la zone - table [Dimension Sets] column [Area Name] - - - MARCHÉ - table [Dimension Sets] column [BUSINESSGROUP] - - - Nom marché - table [Dimension Sets] column [Business Group Name] - - - CAMPAGNEVENTE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Nom campagne de vente - table [Dimension Sets] column [Sales campaign Name] - - - COMMERCIAL - table [Dimension Sets] column [SALESPERSON] - - - Nom vendeur - table [Dimension Sets] column [Salesperson Name] - - - Date - table [table.Name] - - - Jour semaine - table [Date] column [Week Day] - - - Type de jour - table [Date] column [Day Type] - - - Année civile - table [Date] column [Calendar Year] - - - Trimestre civil - table [Date] column [Calendar Quarter] - - - Trimestre civil - table [Date] column [Calendar Quarter Year] - - - Mois civil - table [Date] column [Calendar Month] - - - Mois année civile - table [Date] column [Calendar Month Year] - - - Semaine civile - table [Date] column [Calendar Week] - - - Semaine année civile - table [Date] column [Calendar Week Year] - - - PosSemaineRelative civile - table [Date] column [Calendar RelativeWeekPos] - - - PosMoisRelatif civil - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelatif civil - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnéeRelative civile - table [Date] column [Calendar RelativeYearPos] - - - DébutDuMois civil - table [Date] column [Calendar StartOfMonth] - - - FinDuMois civil - table [Date] column [Calendar EndOfMonth] - - - DébutDuTrimestre civil - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre civil - table [Date] column [Calendar EndOfQuarter] - - - DébutAnnée civile - table [Date] column [Calendar StartOfYear] - - - FinAnnée civile - table [Date] column [Calendar EndOfYear] - - - JoursMois civils - table [Date] column [Calendar MonthDays] - - - JoursTrimestre civils - table [Date] column [Calendar QuarterDays] - - - JoursAnnée civils - table [Date] column [Calendar YearDays] - - - NuméroJourDuMois civil - table [Date] column [Calendar DayOfMonthNumber] - - - NuméroJourDuTrimestre civil - table [Date] column [Calendar DayOfQuarterNumber] - - - NuméroJourAnnée civile - table [Date] column [Calendar DayOfYearNumber] - - - DateSemainePrécédente civile - table [Date] column [Calendar DatePreviousWeek] - - - DateMoisPrécédent civil - table [Date] column [Calendar DatePreviousMonth] - - - DateTrimestrePrécédent civil - table [Date] column [Calendar DatePreviousQuarter] - - - DateAnnéePrécédente civile - table [Date] column [Calendar DatePreviousYear] - - - Exercice - table [Date] column [Fiscal Year] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter Year] - - - Mois d’exercice - table [Date] column [Fiscal Month] - - - Mois et année d’exercice - table [Date] column [Fiscal Month Year] - - - Semaine d’exercice - table [Date] column [Fiscal Week] - - - Semaine année d’exercice - table [Date] column [Fiscal Week Year] - - - PosSemaineRelative d’exercice - table [Date] column [Fiscal RelativeWeekPos] - - - PosMoisRelatif d’exercice - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelatif d’exercice - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnéeRelative d’exercice - table [Date] column [Fiscal RelativeYearPos] - - - DébutDuMois d’exercice - table [Date] column [Fiscal StartOfMonth] - - - FinDuMois d’exercice - table [Date] column [Fiscal EndOfMonth] - - - DébutDuTrimestre d’exercice - table [Date] column [Fiscal StartOfQuarter] - - - FinDuTrimestre d’exercice - table [Date] column [Fiscal EndOfQuarter] - - - DébutExercice fiscal - table [Date] column [Fiscal StartOfYear] - - - FinExercice fiscal - table [Date] column [Fiscal EndOfYear] - - - JoursMois d’exercice - table [Date] column [Fiscal MonthDays] - - - JoursTrimestre d’exercice - table [Date] column [Fiscal QuarterDays] - - - JoursExercice - table [Date] column [Fiscal YearDays] - - - NuméroJourDuMois d’exercice - table [Date] column [Fiscal DayOfMonthNumber] - - - NuméroJourDuTrimestre d’exercice - table [Date] column [Fiscal DayOfQuarterNumber] - - - NuméroJourAnnée d’exercice - table [Date] column [Fiscal DayOfYearNumber] - - - DateSemainePrécédente d’exercice - table [Date] column [Fiscal DatePreviousWeek] - - - DateMoisPrécédent d’exercice - table [Date] column [Fiscal DatePreviousMonth] - - - DateTrimestrePrécédent d’exercice - table [Date] column [Fiscal DatePreviousQuarter] - - - DateAnnéePrécédente d’exercice - table [Date] column [Fiscal DatePreviousYear] - - - Année SE - table [Date] column [FW Year] - - - Trimestre SE - table [Date] column [FW Quarter] - - - Trimestre année SE - table [Date] column [FW Quarter Year] - - - Mois SE - table [Date] column [FW Month] - - - Mois année SE - table [Date] column [FW Month Year] - - - Semaine SE - table [Date] column [FW Week] - - - Période SE - table [Date] column [FW Period] - - - Semaine année SE - table [Date] column [FW Week Year] - - - DébutDeSemaine SE - table [Date] column [FW StartOfWeek] - - - FinDeSemaine SE - table [Date] column [FW EndOfWeek] - - - PosSemaineRelative SE - table [Date] column [FW RelativeWeekPos] - - - PosMoisRelatif SE - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelatif SE - table [Date] column [FW RelativeQuarterPos] - - - PosAnnéeRelative SE - table [Date] column [FW RelativeYearPos] - - - DébutDuMois SE - table [Date] column [FW StartOfMonth] - - - FinDuMois SE - table [Date] column [FW EndOfMonth] - - - DébutDuTrimestre SE - table [Date] column [FW StartOfQuarter] - - - FinDuTrimestre SE - table [Date] column [FW EndOfQuarter] - - - DébutExercice SE - table [Date] column [FW StartOfYear] - - - FinAnnée SE - table [Date] column [FW EndOfYear] - - - JoursMois SE - table [Date] column [FW MonthDays] - - - JoursTrimestre SE - table [Date] column [FW QuarterDays] - - - JoursAnnée SE - table [Date] column [FW YearDays] - - - NuméroJourDuMois SE - table [Date] column [FW DayOfMonthNumber] - - - NuméroJourDuTrimestre SE - table [Date] column [FW DayOfQuarterNumber] - - - NuméroJourAnnée SE - table [Date] column [FW DayOfYearNumber] - - - DateSemainePrécédente SE - table [Date] column [FW DatePreviousWeek] - - - DateMoisPrécédent SE - table [Date] column [FW DatePreviousMonth] - - - DateTrimestrePrécédent SE - table [Date] column [FW DatePreviousQuarter] - - - DateAnnéePrécédente SE - table [Date] column [FW DatePreviousYear] - - - Jour relatif - table [Date] column [Relative Day] - - - Nombre de jours - table [Date] measure [No. of Days] - - - Jours ouvrés - table [Date] measure [Working Days] - - - Plage - table [Date] measure [Ranged] - - - Exercice-Trimestre-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Semaine-Mois-Trimestre-Année civils - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre civil - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Année-Trimestre-Mois-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Exercice-Mois - table [Date] hierarchy [Fiscal Year-Month] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Exercice-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Année-Mois civil - table [Date] hierarchy [Calendar Year-Month] - - - Année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Mois-Semaine-Année civils - table [Date] hierarchy [Calendar Year-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Année-Mois-Semaine SE - table [Date] hierarchy [FW Year-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Année-Trimestre-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Année-Semaine SE - table [Date] hierarchy [FW Year-Week] - - - Année SE - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Titre de l’état - table [Localized Labels] measure [My Report Title] - - - Légende de mon bouton - table [Localized Labels] measure [My Button Caption] - - - Mon titre visuel - table [Localized Labels] measure [My Visual Title] - - - Salariés inactifs - table [Localized Labels] measure [Inactive Employees] - - - Salariés licenciés - table [Localized Labels] measure [Terminated Employees] - - - Salariés dans les mutuelles - table [Localized Labels] measure [Employees in Unions] - - - Analyse sociale - table [Localized Labels] measure [Social Analysis] - - - Répartition par genre - table [Localized Labels] measure [Gender Distribution] - - - Répartition par âge - table [Localized Labels] measure [Age Distribution] - - - Qualifications salariés - table [Localized Labels] measure [Employees Qualifications] - - - Émissions réalisées par rapport à la cible - table [Localized Labels] measure [Realized Emissions vs Target] - - - Émissions de CO2e par champ - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Émissions de gaz par catégorie - table [Localized Labels] measure [Gas Emissions by Category] - - - Émissions réalisées par rapport à la ligne de base - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Émissions de CO2e par rapport à la ligne de base - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Émissions de CO2e par compte - table [Localized Labels] measure [CO2e Emissions by Account] - - - Analyse de l’eau et des déchets - table [Localized Labels] measure [Water and Waste Analysis] - - - Eau par magasin de l’installation - table [Localized Labels] measure [Water by Facility Location] - - - Eau par capacité de l’installation - table [Localized Labels] measure [Water by Facility Capacity] - - - Eau et déchets par type - table [Localized Labels] measure [Water and Waste by Type] - - - Intensité en eau et des déchets par type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Intensité en eau et des déchets par installation - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Émissions par catégorie et champ - table [Localized Labels] measure [Emissions by Category and Scope] - - - Émissions par catégorie - table [Localized Labels] measure [Emissions by Category] - - - Émissions par portée - table [Localized Labels] measure [Emissions by Scope] - - - Analyse du CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Émissions de CO2e par catégorie - table [Localized Labels] measure [CO2e Emissions by Category] - - - Crédit carbone par mois - table [Localized Labels] measure [Carbon Credit by Month] - - - Émissions d’équivalent CO2e par mois et par revenu - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Extraction écritures salarié - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Écritures comptable salarié - table [Localized Labels] measure [Employee Ledger Entries] - - - Écritures comptables durabilité - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Extraction Écritures comptables durabilité - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Extraction écritures comptables salarié - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Vue d’ensemble durabilité - table [Localized Labels] measure [Sustainability Overview] - - - Analyse de durabilité - table [Localized Labels] measure [Sustainability Analytics] - - - Émissions de CO2e par mois - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analyse des champs 1 et 2 par catégories par an - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Émissions de CO2e par département - table [Localized Labels] measure [CO2e Emissions by Department] - - - Parcours vers le zéro carbone net - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Émissions de CO2e par marché - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Activité des énergies renouvelables - table [Localized Labels] measure [Renewable Energy Usage] - - - Émissions de CO2e dans le temps - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart Review - table [Localized Labels] measure [CO2e Smart Review] - - - Émissions de CO2e par axe analytique principal un - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Émissions de CO2e par axe analytique principal deux - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Émissions d’équivalent CO2e par mois - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Nom de la société - table [Localized Labels] measure [Company Name] - - - Dernière actualisation - table [Localized Labels] measure [Last Refreshed] - - - Salariés lancés - table [Localized Labels] measure [Released Employees] - - - Arborescence de décomposition CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Influences clés CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Changement annuel et quotidien de l’eau et des déchets - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Écritures comptables durabilité - table [table.Name] - - - N° d’écriture - table [Sustainability Ledger Entries] column [Entry No.] - - - Désignation - table [Sustainability Ledger Entries] column [Description] - - - Type d’eau - table [Sustainability Ledger Entries] column [Water Type] - - - Type d’intensité en eau/des déchets - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Type du document - table [Sustainability Ledger Entries] column [Document Type] - - - Émissions CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - Émissions CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Solde émissions de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Solde à ce jour émissions de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - Émissions N2O - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Émissions CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Solde à ce jour émissions de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Solde émissions de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Solde émissions de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Bilan à ce jour émission de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Solde à ce jour rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Solde Rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Solde émissions de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Solde à ce jour émissions de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Solde à ce jour intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Solde intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Solde intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Solde à ce jour intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Ligne de base CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Ligne de base CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - Ligne de base N2O - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Ligne de base eau - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Ligne de base déchets - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Eau par rapport à ligne de base (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Déchets par rapport à ligne de base (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Ligne de base CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Crédits carbone achetés - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Rejeté dans l’eau par rapport à la ligne de base - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Rejeté dans l’eau par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Émissions de CO2e (hors crédits) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Intensité en eau AP - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Intensité en eau AAA - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Intensité des déchets AP - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Intensité des déchets AAA - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Rejeté dans l’eau AP - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Rejeté dans l’eau AAA - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - DP rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Intensité des déchets JP - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Intensité en eau DP - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Intensité en eau quotidienne - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Intensité des déchets quotidienne - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Rejeté dans l’eau quotidien - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Lien de base - table [Sustainability Ledger Entries] measure [Base Link] - - - Lien Écritures comptables durabilité - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Eau disponible - table [Sustainability Ledger Entries] measure [Water Available] - - - Comptes de durabilité - table [table.Name] - - - N° compte de durabilité - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nom du compte de durabilité - table [Sustainability Accounts] column [Sustainability Account Name] - - - Pays/région - table [table.Name] - - - Code de pays/région - table [Country/Region] column [Country Region Code] - - - Nom pays/région - table [Country/Region] column [Country Region Name] - - - Centre de gestion - table [table.Name] - - - Code centre de gestion - table [Responsibility Centre] column [Responsibility Centre Code] - - - Nom centre de gestion - table [Responsibility Centre] column [Responsibility Centre Name] - - - Capacité de l’installation - table [Responsibility Centre] measure [Facility Capacity] - - - Objectifs de durabilité - table [table.Name] - - - N° de tableau de bord - table [Sustainability Goals] column [Score Card No.] - - - - table [Sustainability Goals] column [No.] - - - Nom - table [Sustainability Goals] column [Name] - - - Propriétaire - table [Sustainability Goals] column [Owner] - - - Valeur cible pour CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Valeur cible pour CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Valeur cible pour N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Valeur cible pour l’intensité en eau - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Valeur cible pour l’intensité des déchets - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Objectif principal - table [Sustainability Goals] column [Main Goal] - - - Date de début - table [Sustainability Goals] column [Start Date] - - - Date de fin - table [Sustainability Goals] column [End Date] - - - Date de début ligne de base - table [Sustainability Goals] column [Baseline Start Date] - - - Date de fin ligne de base - table [Sustainability Goals] column [Baseline End Date] - - - Cible CO2 - table [Sustainability Goals] measure [CO2 Target] - - - CO2 réalisé (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - Cible CH4 - table [Sustainability Goals] measure [CH4 Target] - - - Cible N2O - table [Sustainability Goals] measure [N2O Target] - - - CH4 réalisé (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O réalisé (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Cible eau - table [Sustainability Goals] measure [Water Target] - - - Cible déchets - table [Sustainability Goals] measure [Waste Target] - - - Eau réalisée (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Déchets réalisés (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e réalisé (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Valeur actuelle CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Valeur actuelle CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Valeur actuelle N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Valeur actuelle CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Valeur actuelle eau - table [Sustainability Goals] measure [Water Current Value] - - - Valeur actuelle déchets - table [Sustainability Goals] measure [Waste Current Value] - - - Écritures comptable salarié - table [table.Name] - - - N° d’écriture - table [Employee Ledger Entries] column [Entry No.] - - - Type du document - table [Employee Ledger Entries] column [Document Type] - - - N° de document - table [Employee Ledger Entries] column [Document No.] - - - Désignation - table [Employee Ledger Entries] column [Description] - - - Montant de l’employé - table [Employee Ledger Entries] measure [Employee Amount] - - - Lien Écritures comptables salariés - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Qualifications salarié - table [table.Name] - - - Codes qualification salarié - table [Employee Qualifications] column [Employee Qualification Codes] - - - Qualifications salarié - table [Employee Qualifications] measure [Employee Qualifications] - - - Frais d’émission - table [table.Name] - - - Type d’émission - table [Emission Fees] column [Emission Type] - - - Type d’étendue - table [Emission Fees] column [Scope Type] - - - Date de début - table [Emission Fees] column [Starting Date] - - - Date de fin - table [Emission Fees] column [Ending Date] - - - Code de pays/région - table [Emission Fees] column [Country Region Code] - - - Centre de gestion - table [Emission Fees] column [Responsibility Centre] - - - Taxe carbone - table [Emission Fees] column [Carbon Fee] - - - Facteur équivalent carbone - table [Emission Fees] column [Carbon Equivalent Factor] - - - Cible CO2e - table [Emission Fees] measure [CO2e Target] - - - Équivalent carbone CO2 - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - Équivalent carbone CH4 - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - Équivalent carbone N2O - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Indisponibilités salarié - table [table.Name] - - - N° écriture - table [Employee Absences] column [Entry No] - - - Date début - table [Employee Absences] column [From Date] - - - Date fin - table [Employee Absences] column [To Date] - - - Motif indisponibilité - table [Employee Absences] column [Cause of Absence] - - - Désignation - table [Employee Absences] column [Description] - - - Indisponibilités salarié - table [Employee Absences] measure [Employee Absences] - - - Heures d’indisponibilité (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Catégories sous-compte de durabilité - table [table.Name] - - - Code sous-catégorie - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Désignation sous-catégorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Énergies renouvelables - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Salariés - table [table.Name] - - - N° salarié - table [Employees] column [Employee No.] - - - Nom complet du salarié - table [Employees] column [Employee Full Name] - - - Prénom du salarié - table [Employees] column [Employee First Name] - - - Nom du salarié - table [Employees] column [Employee Last Name] - - - Genre du salarié - table [Employees] column [Employee Gender] - - - Code mutuelle salarié - table [Employees] column [Employee Union Code] - - - Statut salarié - table [Employees] column [Employee Status] - - - Motif indisponibilité salarié - table [Employees] column [Employee Cause of Inactivity] - - - Date indisponibilité salarié - table [Employees] column [Employee Inactive Date] - - - Motifs fin de contrat salarié - table [Employees] column [Employee Grounds for Termination] - - - Date de naissance du salarié - table [Employees] column [Employee Date of Birth] - - - Âge - table [Employees] column [Age] - - - Répartition par âge - table [Employees] column [Age Distribution] - - - Nombre de salariés - table [Employees] measure [No. of Employees] - - - Nombre de salariés masculins - table [Employees] measure [No. of Male Employees] - - - Nombre de salariées féminines - table [Employees] measure [No. of Female Employees] - - - Nombre d’autres salariés - table [Employees] measure [No. of Other Employees] - - - Salariés masculins (%) - table [Employees] measure [Male Employees (%)] - - - Salariées féminines (%) - table [Employees] measure [Female Employees (%)] - - - Autres salariés (%) - table [Employees] measure [Other Employees (%)] - - - Employés actifs - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-FR.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-FR.resx deleted file mode 100644 index 4928fe79e6..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.fr-FR.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Catégorie de compte général - table [table.Name] - - - Désignation catégorie cpte général - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Code catégorie du compte de durabilité - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Champ de l’émission catégorie du compte de durabilité - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Ensembles de dimensions - table [table.Name] - - - Axe analytique principal 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Axe analytique principal 2 - table [Dimension Sets] column [Global Dimension 2] - - - Raccourci axe 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Raccourci axe 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Raccourci axe 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Raccourci axe 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Raccourci axe 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Raccourci axe 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - SERVICE - table [Dimension Sets] column [DEPARTMENT] - - - Nom du service - table [Dimension Sets] column [Department Name] - - - GROUPECLIENT - table [Dimension Sets] column [CUSTOMERGROUP] - - - Nom du groupe de clients - table [Dimension Sets] column [Customer Group Name] - - - RÉGION - table [Dimension Sets] column [AREA] - - - Nom de la zone - table [Dimension Sets] column [Area Name] - - - MARCHÉ - table [Dimension Sets] column [BUSINESSGROUP] - - - Nom marché - table [Dimension Sets] column [Business Group Name] - - - CAMPAGNEVENTE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Nom campagne de vente - table [Dimension Sets] column [Sales campaign Name] - - - COMMERCIAL - table [Dimension Sets] column [SALESPERSON] - - - Nom vendeur - table [Dimension Sets] column [Salesperson Name] - - - Date - table [table.Name] - - - Jour semaine - table [Date] column [Week Day] - - - Type de jour - table [Date] column [Day Type] - - - Année civile - table [Date] column [Calendar Year] - - - Trimestre civil - table [Date] column [Calendar Quarter] - - - Trimestre civil - table [Date] column [Calendar Quarter Year] - - - Mois civil - table [Date] column [Calendar Month] - - - Mois année civile - table [Date] column [Calendar Month Year] - - - Semaine civile - table [Date] column [Calendar Week] - - - Semaine année civile - table [Date] column [Calendar Week Year] - - - PosSemaineRelative civile - table [Date] column [Calendar RelativeWeekPos] - - - PosMoisRelatif civil - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelatif civil - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnéeRelative civile - table [Date] column [Calendar RelativeYearPos] - - - DébutDuMois civil - table [Date] column [Calendar StartOfMonth] - - - FinDuMois civil - table [Date] column [Calendar EndOfMonth] - - - DébutDuTrimestre civil - table [Date] column [Calendar StartOfQuarter] - - - FinDeTrimestre civil - table [Date] column [Calendar EndOfQuarter] - - - DébutAnnée civile - table [Date] column [Calendar StartOfYear] - - - FinAnnée civile - table [Date] column [Calendar EndOfYear] - - - JoursMois civils - table [Date] column [Calendar MonthDays] - - - JoursTrimestre civils - table [Date] column [Calendar QuarterDays] - - - JoursAnnée civils - table [Date] column [Calendar YearDays] - - - NuméroJourDuMois civil - table [Date] column [Calendar DayOfMonthNumber] - - - NuméroJourDuTrimestre civil - table [Date] column [Calendar DayOfQuarterNumber] - - - NuméroJourAnnée civile - table [Date] column [Calendar DayOfYearNumber] - - - DateSemainePrécédente civile - table [Date] column [Calendar DatePreviousWeek] - - - DateMoisPrécédent civil - table [Date] column [Calendar DatePreviousMonth] - - - DateTrimestrePrécédent civil - table [Date] column [Calendar DatePreviousQuarter] - - - DateAnnéePrécédente civile - table [Date] column [Calendar DatePreviousYear] - - - Exercice - table [Date] column [Fiscal Year] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter] - - - Trimestre d’exercice - table [Date] column [Fiscal Quarter Year] - - - Mois d’exercice - table [Date] column [Fiscal Month] - - - Mois et année d’exercice - table [Date] column [Fiscal Month Year] - - - Semaine d’exercice - table [Date] column [Fiscal Week] - - - Semaine année d’exercice - table [Date] column [Fiscal Week Year] - - - PosSemaineRelative d’exercice - table [Date] column [Fiscal RelativeWeekPos] - - - PosMoisRelatif d’exercice - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelatif d’exercice - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnéeRelative d’exercice - table [Date] column [Fiscal RelativeYearPos] - - - DébutDuMois d’exercice - table [Date] column [Fiscal StartOfMonth] - - - FinDuMois d’exercice - table [Date] column [Fiscal EndOfMonth] - - - DébutDuTrimestre d’exercice - table [Date] column [Fiscal StartOfQuarter] - - - FinDuTrimestre d’exercice - table [Date] column [Fiscal EndOfQuarter] - - - DébutExercice fiscal - table [Date] column [Fiscal StartOfYear] - - - FinExercice fiscal - table [Date] column [Fiscal EndOfYear] - - - JoursMois d’exercice - table [Date] column [Fiscal MonthDays] - - - JoursTrimestre d’exercice - table [Date] column [Fiscal QuarterDays] - - - JoursExercice - table [Date] column [Fiscal YearDays] - - - NuméroJourDuMois d’exercice - table [Date] column [Fiscal DayOfMonthNumber] - - - NuméroJourDuTrimestre d’exercice - table [Date] column [Fiscal DayOfQuarterNumber] - - - NuméroJourAnnée d’exercice - table [Date] column [Fiscal DayOfYearNumber] - - - DateSemainePrécédente d’exercice - table [Date] column [Fiscal DatePreviousWeek] - - - DateMoisPrécédent d’exercice - table [Date] column [Fiscal DatePreviousMonth] - - - DateTrimestrePrécédent d’exercice - table [Date] column [Fiscal DatePreviousQuarter] - - - DateAnnéePrécédente d’exercice - table [Date] column [Fiscal DatePreviousYear] - - - Année SE - table [Date] column [FW Year] - - - Trimestre SE - table [Date] column [FW Quarter] - - - Trimestre année SE - table [Date] column [FW Quarter Year] - - - Mois SE - table [Date] column [FW Month] - - - Mois année SE - table [Date] column [FW Month Year] - - - Semaine SE - table [Date] column [FW Week] - - - Période SE - table [Date] column [FW Period] - - - Semaine année SE - table [Date] column [FW Week Year] - - - DébutDeSemaine SE - table [Date] column [FW StartOfWeek] - - - FinDeSemaine SE - table [Date] column [FW EndOfWeek] - - - PosSemaineRelative SE - table [Date] column [FW RelativeWeekPos] - - - PosMoisRelatif SE - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelatif SE - table [Date] column [FW RelativeQuarterPos] - - - PosAnnéeRelative SE - table [Date] column [FW RelativeYearPos] - - - DébutDuMois SE - table [Date] column [FW StartOfMonth] - - - FinDuMois SE - table [Date] column [FW EndOfMonth] - - - DébutDuTrimestre SE - table [Date] column [FW StartOfQuarter] - - - FinDuTrimestre SE - table [Date] column [FW EndOfQuarter] - - - DébutExercice SE - table [Date] column [FW StartOfYear] - - - FinAnnée SE - table [Date] column [FW EndOfYear] - - - JoursMois SE - table [Date] column [FW MonthDays] - - - JoursTrimestre SE - table [Date] column [FW QuarterDays] - - - JoursAnnée SE - table [Date] column [FW YearDays] - - - NuméroJourDuMois SE - table [Date] column [FW DayOfMonthNumber] - - - NuméroJourDuTrimestre SE - table [Date] column [FW DayOfQuarterNumber] - - - NuméroJourAnnée SE - table [Date] column [FW DayOfYearNumber] - - - DateSemainePrécédente SE - table [Date] column [FW DatePreviousWeek] - - - DateMoisPrécédent SE - table [Date] column [FW DatePreviousMonth] - - - DateTrimestrePrécédent SE - table [Date] column [FW DatePreviousQuarter] - - - DateAnnéePrécédente SE - table [Date] column [FW DatePreviousYear] - - - Jour relatif - table [Date] column [Relative Day] - - - Nombre de jours - table [Date] measure [No. of Days] - - - Jours ouvrés - table [Date] measure [Working Days] - - - Plage - table [Date] measure [Ranged] - - - Exercice-Trimestre-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Semaine-Mois-Trimestre-Année civils - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre civil - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Année-Trimestre-Mois-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Exercice-Mois - table [Date] hierarchy [Fiscal Year-Month] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Exercice-Mois-Semaine - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mois et année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Semaine année d’exercice - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Année-Mois civil - table [Date] hierarchy [Calendar Year-Month] - - - Année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Mois-Semaine-Année civils - table [Date] hierarchy [Calendar Year-Month-Week] - - - Année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mois année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Semaine année civile - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Année-Mois-Semaine SE - table [Date] hierarchy [FW Year-Month-Week] - - - Année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mois année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Année-Trimestre-Semaine SE - table [Date] hierarchy [FW Year-Quarter-Week] - - - Année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Année-Semaine SE - table [Date] hierarchy [FW Year-Week] - - - Année SE - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Semaine année SE - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Titre de l’état - table [Localized Labels] measure [My Report Title] - - - Légende de mon bouton - table [Localized Labels] measure [My Button Caption] - - - Mon titre visuel - table [Localized Labels] measure [My Visual Title] - - - Salariés inactifs - table [Localized Labels] measure [Inactive Employees] - - - Salariés licenciés - table [Localized Labels] measure [Terminated Employees] - - - Salariés dans les mutuelles - table [Localized Labels] measure [Employees in Unions] - - - Analyse sociale - table [Localized Labels] measure [Social Analysis] - - - Répartition par genre - table [Localized Labels] measure [Gender Distribution] - - - Répartition par âge - table [Localized Labels] measure [Age Distribution] - - - Qualifications salariés - table [Localized Labels] measure [Employees Qualifications] - - - Émissions réalisées par rapport à la cible - table [Localized Labels] measure [Realized Emissions vs Target] - - - Émissions de CO2e par champ - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Émissions de gaz par catégorie - table [Localized Labels] measure [Gas Emissions by Category] - - - Émissions réalisées par rapport à la ligne de base - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Émissions de CO2e par rapport à la ligne de base - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Émissions de CO2e par compte - table [Localized Labels] measure [CO2e Emissions by Account] - - - Analyse de l’eau et des déchets - table [Localized Labels] measure [Water and Waste Analysis] - - - Eau par magasin de l’installation - table [Localized Labels] measure [Water by Facility Location] - - - Eau par capacité de l’installation - table [Localized Labels] measure [Water by Facility Capacity] - - - Eau et déchets par type - table [Localized Labels] measure [Water and Waste by Type] - - - Intensité en eau et des déchets par type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Intensité en eau et des déchets par installation - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Émissions par catégorie et champ - table [Localized Labels] measure [Emissions by Category and Scope] - - - Émissions par catégorie - table [Localized Labels] measure [Emissions by Category] - - - Émissions par portée - table [Localized Labels] measure [Emissions by Scope] - - - Analyse du CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Émissions de CO2e par catégorie - table [Localized Labels] measure [CO2e Emissions by Category] - - - Crédit carbone par mois - table [Localized Labels] measure [Carbon Credit by Month] - - - Émissions d’équivalent CO2e par mois et par revenu - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Extraction écritures salarié - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Écritures comptable salarié - table [Localized Labels] measure [Employee Ledger Entries] - - - Écritures comptables durabilité - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Extraction Écritures comptables durabilité - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Extraction écritures comptables salarié - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Vue d’ensemble durabilité - table [Localized Labels] measure [Sustainability Overview] - - - Analyse de durabilité - table [Localized Labels] measure [Sustainability Analytics] - - - Émissions de CO2e par mois - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analyse des champs 1 et 2 par catégories par an - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Émissions de CO2e par département - table [Localized Labels] measure [CO2e Emissions by Department] - - - Parcours vers le zéro carbone net - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Émissions de CO2e par marché - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Activité des énergies renouvelables - table [Localized Labels] measure [Renewable Energy Usage] - - - Émissions de CO2e dans le temps - table [Localized Labels] measure [CO2e Emissions Over Time] - - - CO2e Smart Review - table [Localized Labels] measure [CO2e Smart Review] - - - Émissions de CO2e par axe analytique principal un - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Émissions de CO2e par axe analytique principal deux - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Émissions d’équivalent CO2e par mois - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Nom de la société - table [Localized Labels] measure [Company Name] - - - Dernière actualisation - table [Localized Labels] measure [Last Refreshed] - - - Salariés lancés - table [Localized Labels] measure [Released Employees] - - - Arborescence de décomposition CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Influences clés CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Changement annuel et quotidien de l’eau et des déchets - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Écritures comptables durabilité - table [table.Name] - - - N° d’écriture - table [Sustainability Ledger Entries] column [Entry No.] - - - Désignation - table [Sustainability Ledger Entries] column [Description] - - - Type d’eau - table [Sustainability Ledger Entries] column [Water Type] - - - Type d’intensité en eau/des déchets - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Type du document - table [Sustainability Ledger Entries] column [Document Type] - - - Émissions CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - Émissions CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Solde émissions de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Solde à ce jour émissions de CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - Émissions N2O - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Émissions CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Solde à ce jour émissions de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Solde émissions de CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Solde émissions de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Bilan à ce jour émission de CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Solde à ce jour rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Solde Rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Solde émissions de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Solde à ce jour émissions de N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Solde à ce jour intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Solde intensité des déchets - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Solde intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Solde à ce jour intensité en eau - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Ligne de base CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Ligne de base CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - Ligne de base N2O - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Ligne de base eau - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Ligne de base déchets - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Eau par rapport à ligne de base (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Déchets par rapport à ligne de base (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Ligne de base CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Crédits carbone achetés - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Rejeté dans l’eau par rapport à la ligne de base - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Rejeté dans l’eau par rapport à la ligne de base (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Émissions de CO2e (hors crédits) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Intensité en eau AP - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Intensité en eau AAA - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Intensité des déchets AP - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Intensité des déchets AAA - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Rejeté dans l’eau AP - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Rejeté dans l’eau AAA - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - DP rejeté dans l’eau - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Intensité des déchets JP - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Intensité en eau DP - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Intensité en eau quotidienne - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Intensité des déchets quotidienne - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Rejeté dans l’eau quotidien - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Lien de base - table [Sustainability Ledger Entries] measure [Base Link] - - - Lien Écritures comptables durabilité - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Eau disponible - table [Sustainability Ledger Entries] measure [Water Available] - - - Comptes de durabilité - table [table.Name] - - - N° compte de durabilité - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nom du compte de durabilité - table [Sustainability Accounts] column [Sustainability Account Name] - - - Pays/région - table [table.Name] - - - Code de pays/région - table [Country/Region] column [Country Region Code] - - - Nom pays/région - table [Country/Region] column [Country Region Name] - - - Centre de gestion - table [table.Name] - - - Code centre de gestion - table [Responsibility Centre] column [Responsibility Centre Code] - - - Nom centre de gestion - table [Responsibility Centre] column [Responsibility Centre Name] - - - Capacité de l’installation - table [Responsibility Centre] measure [Facility Capacity] - - - Objectifs de durabilité - table [table.Name] - - - N° de tableau de bord - table [Sustainability Goals] column [Score Card No.] - - - - table [Sustainability Goals] column [No.] - - - Nom - table [Sustainability Goals] column [Name] - - - Propriétaire - table [Sustainability Goals] column [Owner] - - - Valeur cible pour CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Valeur cible pour CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Valeur cible pour N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Valeur cible pour l’intensité en eau - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Valeur cible pour l’intensité des déchets - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Objectif principal - table [Sustainability Goals] column [Main Goal] - - - Date de début - table [Sustainability Goals] column [Start Date] - - - Date de fin - table [Sustainability Goals] column [End Date] - - - Date de début ligne de base - table [Sustainability Goals] column [Baseline Start Date] - - - Date de fin ligne de base - table [Sustainability Goals] column [Baseline End Date] - - - Cible CO2 - table [Sustainability Goals] measure [CO2 Target] - - - CO2 réalisé (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - Cible CH4 - table [Sustainability Goals] measure [CH4 Target] - - - Cible N2O - table [Sustainability Goals] measure [N2O Target] - - - CH4 réalisé (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O réalisé (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Cible eau - table [Sustainability Goals] measure [Water Target] - - - Cible déchets - table [Sustainability Goals] measure [Waste Target] - - - Eau réalisée (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Déchets réalisés (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e réalisé (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Valeur actuelle CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Valeur actuelle CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Valeur actuelle N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Valeur actuelle CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Valeur actuelle eau - table [Sustainability Goals] measure [Water Current Value] - - - Valeur actuelle déchets - table [Sustainability Goals] measure [Waste Current Value] - - - Écritures comptable salarié - table [table.Name] - - - N° d’écriture - table [Employee Ledger Entries] column [Entry No.] - - - Type du document - table [Employee Ledger Entries] column [Document Type] - - - N° de document - table [Employee Ledger Entries] column [Document No.] - - - Désignation - table [Employee Ledger Entries] column [Description] - - - Montant de l’employé - table [Employee Ledger Entries] measure [Employee Amount] - - - Lien Écritures comptables salariés - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Qualifications salarié - table [table.Name] - - - Codes qualification salarié - table [Employee Qualifications] column [Employee Qualification Codes] - - - Qualifications salarié - table [Employee Qualifications] measure [Employee Qualifications] - - - Frais d’émission - table [table.Name] - - - Type d’émission - table [Emission Fees] column [Emission Type] - - - Type d’étendue - table [Emission Fees] column [Scope Type] - - - Date de début - table [Emission Fees] column [Starting Date] - - - Date de fin - table [Emission Fees] column [Ending Date] - - - Code de pays/région - table [Emission Fees] column [Country Region Code] - - - Centre de gestion - table [Emission Fees] column [Responsibility Centre] - - - Taxe carbone - table [Emission Fees] column [Carbon Fee] - - - Facteur équivalent carbone - table [Emission Fees] column [Carbon Equivalent Factor] - - - Cible CO2e - table [Emission Fees] measure [CO2e Target] - - - Équivalent carbone CO2 - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - Équivalent carbone CH4 - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - Équivalent carbone N2O - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Indisponibilités salarié - table [table.Name] - - - N° écriture - table [Employee Absences] column [Entry No] - - - Date début - table [Employee Absences] column [From Date] - - - Date fin - table [Employee Absences] column [To Date] - - - Motif indisponibilité - table [Employee Absences] column [Cause of Absence] - - - Désignation - table [Employee Absences] column [Description] - - - Indisponibilités salarié - table [Employee Absences] measure [Employee Absences] - - - Heures d’indisponibilité (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Catégories sous-compte de durabilité - table [table.Name] - - - Code sous-catégorie - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Désignation sous-catégorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Énergies renouvelables - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Salariés - table [table.Name] - - - N° salarié - table [Employees] column [Employee No.] - - - Nom complet du salarié - table [Employees] column [Employee Full Name] - - - Prénom du salarié - table [Employees] column [Employee First Name] - - - Nom du salarié - table [Employees] column [Employee Last Name] - - - Genre du salarié - table [Employees] column [Employee Gender] - - - Code mutuelle salarié - table [Employees] column [Employee Union Code] - - - Statut salarié - table [Employees] column [Employee Status] - - - Motif indisponibilité salarié - table [Employees] column [Employee Cause of Inactivity] - - - Date indisponibilité salarié - table [Employees] column [Employee Inactive Date] - - - Motifs fin de contrat salarié - table [Employees] column [Employee Grounds for Termination] - - - Date de naissance du salarié - table [Employees] column [Employee Date of Birth] - - - Âge - table [Employees] column [Age] - - - Répartition par âge - table [Employees] column [Age Distribution] - - - Nombre de salariés - table [Employees] measure [No. of Employees] - - - Nombre de salariés masculins - table [Employees] measure [No. of Male Employees] - - - Nombre de salariées féminines - table [Employees] measure [No. of Female Employees] - - - Nombre d’autres salariés - table [Employees] measure [No. of Other Employees] - - - Salariés masculins (%) - table [Employees] measure [Male Employees (%)] - - - Salariées féminines (%) - table [Employees] measure [Female Employees (%)] - - - Autres salariés (%) - table [Employees] measure [Other Employees (%)] - - - Employés actifs - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.is-IS.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.is-IS.resx deleted file mode 100644 index 4afda6f4c9..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.is-IS.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fjárhagsreikningsflokkur - table [table.Name] - - - Lýsing fjárhagsreikningsflokka - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Flokkakóði sjálfbærnireiknings - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Losunarsvið fyrir flokk sjálfbærnireiknings - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Víddasamstæður - table [table.Name] - - - Altæk vídd 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Altæk vídd 2 - table [Dimension Sets] column [Global Dimension 2] - - - Flýtivídd 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Flýtivídd 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Flýtivídd 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Flýtivídd 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Flýtivídd 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Flýtivídd 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - DEILD - table [Dimension Sets] column [DEPARTMENT] - - - Deildarheiti - table [Dimension Sets] column [Department Name] - - - VIÐSKMHÓPUR - table [Dimension Sets] column [CUSTOMERGROUP] - - - Heiti viðskiptavinaflokks - table [Dimension Sets] column [Customer Group Name] - - - SVÆÐI - table [Dimension Sets] column [AREA] - - - Svæðisheiti - table [Dimension Sets] column [Area Name] - - - FYRIRTÆKJAHÓPUR - table [Dimension Sets] column [BUSINESSGROUP] - - - Heiti fyrirtækjaflokks - table [Dimension Sets] column [Business Group Name] - - - SÖLUHERFERÐ - table [Dimension Sets] column [SALESCAMPAIGN] - - - Heiti söluherferðar - table [Dimension Sets] column [Sales campaign Name] - - - SÖLUMAÐUR - table [Dimension Sets] column [SALESPERSON] - - - Nafn sölumanns - table [Dimension Sets] column [Salesperson Name] - - - Dagsetning - table [table.Name] - - - Vika Dagur - table [Date] column [Week Day] - - - Dagsgerð - table [Date] column [Day Type] - - - Almanaksár - table [Date] column [Calendar Year] - - - Dagatal Ársfjórðungur - table [Date] column [Calendar Quarter] - - - Dagatal Ársfjórðungur Ár - table [Date] column [Calendar Quarter Year] - - - Almanaksmánuður - table [Date] column [Calendar Month] - - - Dagatal Mánuður Ár - table [Date] column [Calendar Month Year] - - - Almanaksvika - table [Date] column [Calendar Week] - - - Dagatal Vika Ár - table [Date] column [Calendar Week Year] - - - Dagatal Staða samsvarandi viku - table [Date] column [Calendar RelativeWeekPos] - - - Dagatal Staða samsvarandi mánaðar - table [Date] column [Calendar RelativeMonthPos] - - - Dagatal Staða samsvarandi ársfjórðungs - table [Date] column [Calendar RelativeQuarterPos] - - - Dagatal Staða samsvarandi árs - table [Date] column [Calendar RelativeYearPos] - - - Dagatal Upphaf mánaðar - table [Date] column [Calendar StartOfMonth] - - - Dagatal Mánaðarlok - table [Date] column [Calendar EndOfMonth] - - - Dagatal Upphaf ársfjórðungs - table [Date] column [Calendar StartOfQuarter] - - - Dagatal Ársfjórðungslok - table [Date] column [Calendar EndOfQuarter] - - - Dagatal Upphaf árs - table [Date] column [Calendar StartOfYear] - - - Dagatal Árslok - table [Date] column [Calendar EndOfYear] - - - Dagatal Dagar mánaðar - table [Date] column [Calendar MonthDays] - - - Dagatal Dagar ársfjórðungs - table [Date] column [Calendar QuarterDays] - - - Dagatal Dagar árs - table [Date] column [Calendar YearDays] - - - Dagatal Númer mánaðardags - table [Date] column [Calendar DayOfMonthNumber] - - - Dagatal Númer dags innan ársfjórðungs - table [Date] column [Calendar DayOfQuarterNumber] - - - Dagatal Númer dags innan árs - table [Date] column [Calendar DayOfYearNumber] - - - Dagatal Dagsetning fyrri viku - table [Date] column [Calendar DatePreviousWeek] - - - Dagatal Dagsetning fyrri mánaðar - table [Date] column [Calendar DatePreviousMonth] - - - Dagatal Dagsetning fyrri ársfjórðungs - table [Date] column [Calendar DatePreviousQuarter] - - - Dagatal Dagsetning fyrra árs - table [Date] column [Calendar DatePreviousYear] - - - Fjárhagur Ár - table [Date] column [Fiscal Year] - - - Fjórðungur Ársfjórðungur - table [Date] column [Fiscal Quarter] - - - Fjárhagur Ársfjórðungur og ár - table [Date] column [Fiscal Quarter Year] - - - Fjárhagur Mánuður - table [Date] column [Fiscal Month] - - - Fjárhagur Mánuður og ár - table [Date] column [Fiscal Month Year] - - - Vika fjárhagsárs - table [Date] column [Fiscal Week] - - - Fjárhagur Vika ár - table [Date] column [Fiscal Week Year] - - - Fjárhagur Staða samsvarandi viku - table [Date] column [Fiscal RelativeWeekPos] - - - Fjárhagur Staða samsvarandi mánaðar - table [Date] column [Fiscal RelativeMonthPos] - - - Fjárhagur Staða samsvarandi ársfjórðungs - table [Date] column [Fiscal RelativeQuarterPos] - - - Fjárhagur Staða samsvarandi árs - table [Date] column [Fiscal RelativeYearPos] - - - Fjárhagur Upphaf mánaðar - table [Date] column [Fiscal StartOfMonth] - - - Fjárhagur Mánaðarlok - table [Date] column [Fiscal EndOfMonth] - - - Fjárhagur Upphaf ársfjórðungs - table [Date] column [Fiscal StartOfQuarter] - - - Fjárhagur Ársfjórðungslok - table [Date] column [Fiscal EndOfQuarter] - - - Fjárhagur Upphaf árs - table [Date] column [Fiscal StartOfYear] - - - Fjárhagur Árslok - table [Date] column [Fiscal EndOfYear] - - - Fjárhagur Dagar mánaðar - table [Date] column [Fiscal MonthDays] - - - Fjárhagur Dagar ársfjórðungs - table [Date] column [Fiscal QuarterDays] - - - Fjárhagur Dagar árs - table [Date] column [Fiscal YearDays] - - - Fjárhagur Númer mánaðardags - table [Date] column [Fiscal DayOfMonthNumber] - - - Fjárhagur Númer dags innan ársfjórðungs - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fjárhagur Númer dags innan árs - table [Date] column [Fiscal DayOfYearNumber] - - - Fjárhagur Dagsetning fyrri viku - table [Date] column [Fiscal DatePreviousWeek] - - - Fjárhagur Dagsetning fyrri mánaðar - table [Date] column [Fiscal DatePreviousMonth] - - - Fjárhagur Dagsetning fyrri ársfjórðungs - table [Date] column [Fiscal DatePreviousQuarter] - - - Fjárhagur Dagsetning fyrra árs - table [Date] column [Fiscal DatePreviousYear] - - - Fjárhagsvika Ár - table [Date] column [FW Year] - - - Fjárhagsvika Ársfjórðungur - table [Date] column [FW Quarter] - - - Fjárhagsvika Ársfjórðungur Ár - table [Date] column [FW Quarter Year] - - - Fjárhagsvika Mánuður - table [Date] column [FW Month] - - - Fjárhagsvika Mánuður Ár - table [Date] column [FW Month Year] - - - Fjárhagsvika Vika - table [Date] column [FW Week] - - - Fjárhagsvika Tímabil - table [Date] column [FW Period] - - - Fjárhagsvika Vika Ár - table [Date] column [FW Week Year] - - - Fjárhagsvika Upphaf viku - table [Date] column [FW StartOfWeek] - - - Fjárhagsvika Vikulok - table [Date] column [FW EndOfWeek] - - - Fjárhagsvika Staða samsvarandi viku - table [Date] column [FW RelativeWeekPos] - - - Fjárhagsvika Staða samsvarandi mánaðar - table [Date] column [FW RelativeMonthPos] - - - Fjárhagsvika Staða samsvarandi ársfjórðungs - table [Date] column [FW RelativeQuarterPos] - - - Fjárhagsvika Staða samsvarandi árs - table [Date] column [FW RelativeYearPos] - - - Fjárhagsvika Upphaf mánaðar - table [Date] column [FW StartOfMonth] - - - Fjárhagsvika Mánaðarlok - table [Date] column [FW EndOfMonth] - - - Fjárhagsvika Upphaf ársfjórðungs - table [Date] column [FW StartOfQuarter] - - - Fjárhagsvika Ársfjórðungslok - table [Date] column [FW EndOfQuarter] - - - Fjárhagsvika Upphaf árs - table [Date] column [FW StartOfYear] - - - Fjárhagsvika Árslok - table [Date] column [FW EndOfYear] - - - Fjárhagsvika Dagar mánaðar - table [Date] column [FW MonthDays] - - - Fjárhagsvika Dagar ársfjórðungs - table [Date] column [FW QuarterDays] - - - Fjárhagsvika Dagar árs - table [Date] column [FW YearDays] - - - Fjárhagsvika Númer mánaðardags - table [Date] column [FW DayOfMonthNumber] - - - Fjárhagsvika Númer dags innan ársfjórðungs - table [Date] column [FW DayOfQuarterNumber] - - - Fjárhagsvika Númer dags innan árs - table [Date] column [FW DayOfYearNumber] - - - Fjárhagsvika Dagsetning fyrri viku - table [Date] column [FW DatePreviousWeek] - - - Fjárhagsvika Dagsetning fyrri mánaðar - table [Date] column [FW DatePreviousMonth] - - - Fjárhagsvika Dagsetning fyrri ársfjórðungs - table [Date] column [FW DatePreviousQuarter] - - - Fjárhagsvika Dagsetning fyrra árs - table [Date] column [FW DatePreviousYear] - - - Samsvarandi dagur - table [Date] column [Relative Day] - - - Fjöldi daga - table [Date] measure [No. of Days] - - - Vinnudagar - table [Date] measure [Working Days] - - - Bil - table [Date] measure [Ranged] - - - Fjárhagur Ár-Ársfjórðungur-Mánuður-Vika - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fjárhagur Ár - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fjárhagur Ársfjórðungur og ár - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fjárhagur Mánuður og ár - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fjárhagur Vika ár - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Dagatal Ár-Ársfjórðungur-Mánuður-Vika - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Almanaksár - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Dagatal Ársfjórðungur Ár - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Dagatal Mánuður Ár - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Dagatal Vika Ár - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Fjárhagsvika Ár-Ársfjórðungur-Mánuður-Vika - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Fjárhagsvika Ár - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Fjárhagsvika Ársfjórðungur Ár - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Fjárhagsvika Mánuður Ár - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Fjárhagsvika Vika Ár - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fjárhagur Ár-Mánuður - table [Date] hierarchy [Fiscal Year-Month] - - - Fjárhagur Ár - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fjárhagur Mánuður og ár - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fjárhagur Ár-Mánuður-Vika - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fjárhagur Ár - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fjárhagur Mánuður og ár - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fjárhagur Vika ár - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Dagatal Ár-Mánuður - table [Date] hierarchy [Calendar Year-Month] - - - Almanaksár - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Dagatal Mánuður Ár - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Dagatal Ár-Mánuður-Vika - table [Date] hierarchy [Calendar Year-Month-Week] - - - Almanaksár - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Dagatal Mánuður Ár - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Dagatal Vika Ár - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Fjárhagsvika Ár-Mánuður-Vika - table [Date] hierarchy [FW Year-Month-Week] - - - Fjárhagsvika Ár - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Fjárhagsvika Mánuður Ár - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Fjárhagsvika Vika Ár - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Fjárhagsvika Ár-Ársfjórðungur-Vika - table [Date] hierarchy [FW Year-Quarter-Week] - - - Fjárhagsvika Ár - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Fjárhagsvika Ársfjórðungur Ár - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Fjárhagsvika Vika Ár - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Fjárhagsvika Ár-Vika - table [Date] hierarchy [FW Year-Week] - - - Fjárhagsvika Ár - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Fjárhagsvika Vika Ár - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Skýrslutitill notanda - table [Localized Labels] measure [My Report Title] - - - Texti hnapps notanda - table [Localized Labels] measure [My Button Caption] - - - Sjónrænn titill notanda - table [Localized Labels] measure [My Visual Title] - - - Óvirkir starfsmenn - table [Localized Labels] measure [Inactive Employees] - - - Starfsmenn sem hafa hætt störfum - table [Localized Labels] measure [Terminated Employees] - - - Starfsmenn í stéttarfélögum - table [Localized Labels] measure [Employees in Unions] - - - Félagsgreining - table [Localized Labels] measure [Social Analysis] - - - Kynjadreifing - table [Localized Labels] measure [Gender Distribution] - - - Aldursdreifing - table [Localized Labels] measure [Age Distribution] - - - Menntun og hæfi starfsmanna - table [Localized Labels] measure [Employees Qualifications] - - - Raunlosun samanborið við markmið - table [Localized Labels] measure [Realized Emissions vs Target] - - - Losun CO2e eftir umfangi - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Losun lofttegunda eftir flokki - table [Localized Labels] measure [Gas Emissions by Category] - - - Raunlosun samanborið við grunngildi - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Losun CO2e miðað við grunnlínu - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Losun CO2e eftir reikningi - table [Localized Labels] measure [CO2e Emissions by Account] - - - Greining á vatni og úrgangi - table [Localized Labels] measure [Water and Waste Analysis] - - - Vatn eftir staðsetningu starfsstöðvar - table [Localized Labels] measure [Water by Facility Location] - - - Vatn eftir afkastagetu starfastöðvar - table [Localized Labels] measure [Water by Facility Capacity] - - - Vatn og úrgangur eftir gerð - table [Localized Labels] measure [Water and Waste by Type] - - - Vatns- og úrgangsmagn eftir gerð - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Vatns- og úrgangsmagn eftir starfsstöð - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Losun eftir flokkum og umfangi - table [Localized Labels] measure [Emissions by Category and Scope] - - - Losun eftir flokki - table [Localized Labels] measure [Emissions by Category] - - - Losun eftir umfangi - table [Localized Labels] measure [Emissions by Scope] - - - Greining CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Losun CO2e eftir flokki - table [Localized Labels] measure [CO2e Emissions by Category] - - - Kolefnisheimild eftir mánuði - table [Localized Labels] measure [Carbon Credit by Month] - - - Jafngild losun CO2e eftir mánuði og tekjum - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Köfun í færslur starfsmanns - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Fjárhagsfærslur starfsmanns - table [Localized Labels] measure [Employee Ledger Entries] - - - Fjárhagsfærslur fyrir sjálfbærni - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Köfun í fjárhagsfærslur fyrir sjálfbærni - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Köfun í fjárhagsfærslur starfsmanns - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Yfirlit yfir sjálfbærni - table [Localized Labels] measure [Sustainability Overview] - - - Sjálfbærnigreining - table [Localized Labels] measure [Sustainability Analytics] - - - Losun CO2e eftir mánuði - table [Localized Labels] measure [CO2e Emissions by Month] - - - Umfang 1 og 2 Greining eftir flokkum eftir ári - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Losun CO2e eftir deild - table [Localized Labels] measure [CO2e Emissions by Department] - - - Ferð til nettólosunar kolefnis - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Losun CO2e eftir fyrirtækjahópi - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Notkun endurnýjanlegrar orku - table [Localized Labels] measure [Renewable Energy Usage] - - - Losun CO2e yfir tíma - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Snjallúttekt CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - Losun CO2e frá altækri vídd eitt - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Losun CO2e frá altækri vídd tvö - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Jafngild losun CO2e eftir mánuði - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Heiti fyrirtækis - table [Localized Labels] measure [Company Name] - - - Síðast uppfært - table [Localized Labels] measure [Last Refreshed] - - - Losaðir starfsmenn - table [Localized Labels] measure [Released Employees] - - - Niðurbrotstré CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Helstu áhrif CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Árlegar og daglegar breytingar á vatni og úrgangi - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Fjárhagsfærslur fyrir sjálfbærni - table [table.Name] - - - Nr. færslu - table [Sustainability Ledger Entries] column [Entry No.] - - - Lýsing - table [Sustainability Ledger Entries] column [Description] - - - Tegund vatns - table [Sustainability Ledger Entries] column [Water Type] - - - Gerð vatnsmagns/úrgangsmagns - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Gerð skjals - table [Sustainability Ledger Entries] column [Document Type] - - - CO2 losun - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4 losun - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Losunarjöfnuður CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Losunarstaða CO2 við dagsetningu - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O losun - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Losun CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Losunarstaða CH4 við dagsetningu - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Losunarjöfnuður CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Vatnsmagn - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Úrgangsmagn - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Losun í vatn - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Losunarstaða CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Staða á dagsetningu losunar CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Losað í vatnsstöðu á degi - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Staða losunar í vatn - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Losunarjöfnuður N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Losunarstaða N2O við dagsetningu - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Staða úrgangsmagns, til dags - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Staða úrgangsmagns - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Staða vatnsmagns - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Staða vatnsmagns til dags - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Grunngildi CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Grunngildi CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 miðað við upphafsgildi (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O grunnlína - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O miðað við grunnlínu (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 miðað við upphafsgildi (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Grunnlína vatns - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Grunnlína úrgangs - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Vatn samanborið við grunnlínu (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Úrgangur samaborið við upphafsgildi (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Grunngildi CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e miðað við upphafsgildi (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Keyptar kolefnisheimildir - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Grunnlína losunar í vatn - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Losað í vatn samanborið við grunnlínu (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Losun CO2e (að undanskildum inneignum) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Vatnsmagn fyrra ár - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Vatnsmagn, samanburður milli ára - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Úrgangsmagn, fyrra ár - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Úrgangsmagn, samanburður milli ára - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Losun í vatn fyrra ár - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Losun í vatn samanburður milli ára - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Losun í vatn FK - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Úrgangsmagn, fyrri dagur - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Vatnsmagn FK - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Vatnsmagn, frá degi til dags - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Úrgangsmagn, frá degi til dags - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Losun í vatn milli daga - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Grunntengill - table [Sustainability Ledger Entries] measure [Base Link] - - - Fjárhagsfærslutengill fyrir sjálfbærni - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Tiltækt vatn - table [Sustainability Ledger Entries] measure [Water Available] - - - Sjálfbærnireikningar - table [table.Name] - - - Nr. sjálfbærnireiknings - table [Sustainability Accounts] column [Sustainability Account No.] - - - Heiti sjálfbærnireiknings - table [Sustainability Accounts] column [Sustainability Account Name] - - - Land/svæði - table [table.Name] - - - Landskóði/svæðakóði - table [Country/Region] column [Country Region Code] - - - Landsvæði - Nafn - table [Country/Region] column [Country Region Name] - - - Ábyrgðarstöð - table [table.Name] - - - Kóði ábyrgðarstöðvar - table [Responsibility Centre] column [Responsibility Centre Code] - - - Heiti ábyrgðarstöðvar - table [Responsibility Centre] column [Responsibility Centre Name] - - - Afkastageta starfsstöðvar - table [Responsibility Centre] measure [Facility Capacity] - - - Sjálfbærnimarkmið - table [table.Name] - - - Einkunnaspjald nr. - table [Sustainability Goals] column [Score Card No.] - - - Nr. - table [Sustainability Goals] column [No.] - - - Heiti - table [Sustainability Goals] column [Name] - - - Eigandi - table [Sustainability Goals] column [Owner] - - - Markgildi fyrir CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Markgildi fyrir CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Markgildi fyrir N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Markgildi vatnsmagns - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Markgildi úrgangsmagns - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Meginmarkmið - table [Sustainability Goals] column [Main Goal] - - - Upphafsdagur - table [Sustainability Goals] column [Start Date] - - - Lokadagur - table [Sustainability Goals] column [End Date] - - - Upphafsdagur grunnlínu - table [Sustainability Goals] column [Baseline Start Date] - - - Lokadagur grunnlínu - table [Sustainability Goals] column [Baseline End Date] - - - CO2 mark - table [Sustainability Goals] measure [CO2 Target] - - - CO2 losun (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4 mark - table [Sustainability Goals] measure [CH4 Target] - - - N2O mark - table [Sustainability Goals] measure [N2O Target] - - - CH4 losun (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O losun (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Vatnsmarkmið - table [Sustainability Goals] measure [Water Target] - - - Markúrgangur - table [Sustainability Goals] measure [Waste Target] - - - Vatnslosun (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Úrgangslosun (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - Losun CO2e (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Núverandi gildi CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Núverandi gildi CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Núverandi gildi N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Núverandi gildi CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Núvirði vatns - table [Sustainability Goals] measure [Water Current Value] - - - Núvirði úrgangs - table [Sustainability Goals] measure [Waste Current Value] - - - Fjárhagsfærslur starfsmanns - table [table.Name] - - - Nr. færslu - table [Employee Ledger Entries] column [Entry No.] - - - Gerð skjals - table [Employee Ledger Entries] column [Document Type] - - - Nr. skjals - table [Employee Ledger Entries] column [Document No.] - - - Lýsing - table [Employee Ledger Entries] column [Description] - - - Upphæð starfsmanns - table [Employee Ledger Entries] measure [Employee Amount] - - - Fjárhagsfærslutengill starfsmanns - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Menntun og hæfi starfsmanns - table [table.Name] - - - Hæfikóðar starfsmanns - table [Employee Qualifications] column [Employee Qualification Codes] - - - Menntun og hæfi starfsmanns - table [Employee Qualifications] measure [Employee Qualifications] - - - Losunargjöld - table [table.Name] - - - Losunargerð - table [Emission Fees] column [Emission Type] - - - Umfangsgerð - table [Emission Fees] column [Scope Type] - - - Upphafsdagur - table [Emission Fees] column [Starting Date] - - - Lokadagur - table [Emission Fees] column [Ending Date] - - - Landskóði/svæðakóði - table [Emission Fees] column [Country Region Code] - - - Ábyrgðarstöð - table [Emission Fees] column [Responsibility Centre] - - - Kolefnisgjald - table [Emission Fees] column [Carbon Fee] - - - Kolefnisjafngildisstuðull - table [Emission Fees] column [Carbon Equivalent Factor] - - - Markmið CO2e - table [Emission Fees] measure [CO2e Target] - - - CO2 koltvísýringsígildi - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4 koltvísýringsjafngildi - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O koltvísýringsjafngildi - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Fjarvistir starfsmanna - table [table.Name] - - - Færslunr. - table [Employee Absences] column [Entry No] - - - Frá dags. - table [Employee Absences] column [From Date] - - - Til dags - table [Employee Absences] column [To Date] - - - Ástæða fjarvistar - table [Employee Absences] column [Cause of Absence] - - - Lýsing - table [Employee Absences] column [Description] - - - Fjarvistir starfsmanns - table [Employee Absences] measure [Employee Absences] - - - Fjarverustundir (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Undirflokkar sjálfbærnireikninga - table [table.Name] - - - Kóði undirflokks - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Lýsing undirflokks - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Endurnýjanleg orka - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Starfsmenn - table [table.Name] - - - Starfsmannanúmer - table [Employees] column [Employee No.] - - - Fullt nafn starfsmanns - table [Employees] column [Employee Full Name] - - - Fornafn starfsmanns - table [Employees] column [Employee First Name] - - - Eftirnafn starfsmanns - table [Employees] column [Employee Last Name] - - - Kyn starfsmanns - table [Employees] column [Employee Gender] - - - Stéttarfélagskóði starfsmanns - table [Employees] column [Employee Union Code] - - - Staða starfsmanns - table [Employees] column [Employee Status] - - - Orsök fyrir óvirkni starfsmanns - table [Employees] column [Employee Cause of Inactivity] - - - Óvirk dagsetning starfsmanns - table [Employees] column [Employee Inactive Date] - - - Ástæður starfsloka starfsmanns - table [Employees] column [Employee Grounds for Termination] - - - Fæðingardagur starfsmanns - table [Employees] column [Employee Date of Birth] - - - Aldur - table [Employees] column [Age] - - - Aldursdreifing - table [Employees] column [Age Distribution] - - - Fjöldi starfsmanna - table [Employees] measure [No. of Employees] - - - Fjöldi karlkyns starfsmanna - table [Employees] measure [No. of Male Employees] - - - Fjöldi kvenkyns starfsmanna - table [Employees] measure [No. of Female Employees] - - - Fjöldi annarra starfsmanna - table [Employees] measure [No. of Other Employees] - - - Karlkyns starfsmenn (%) - table [Employees] measure [Male Employees (%)] - - - Kvenkyns starfsmenn (%) - table [Employees] measure [Female Employees (%)] - - - Aðrir starfsmenn (%) - table [Employees] measure [Other Employees (%)] - - - Virkir starfsmenn - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.it-CH.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.it-CH.resx deleted file mode 100644 index 4139a566f2..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.it-CH.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Categoria conto C/G - table [table.Name] - - - Descrizione categoria conto C/G - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Codice categoria conto di sostenibilità - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Ambito di emissione categoria conto di sostenibilità - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Set di dimensioni - table [table.Name] - - - Dimensione globale 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Dimensione globale 2 - table [Dimension Sets] column [Global Dimension 2] - - - Collegamento dimensione 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Collegamento dimensione 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Collegamento dimensione 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Collegamento dimensione 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Collegamento dimensione 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Collegamento dimensione 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - REPARTO - table [Dimension Sets] column [DEPARTMENT] - - - Nome reparto - table [Dimension Sets] column [Department Name] - - - CATEGORIACLIENTE - table [Dimension Sets] column [CUSTOMERGROUP] - - - Nome gruppo di clienti - table [Dimension Sets] column [Customer Group Name] - - - AREA - table [Dimension Sets] column [AREA] - - - Nome area - table [Dimension Sets] column [Area Name] - - - CATEGORIABUSINESS - table [Dimension Sets] column [BUSINESSGROUP] - - - Nome categoria business - table [Dimension Sets] column [Business Group Name] - - - CAMPAGNEVENDITA - table [Dimension Sets] column [SALESCAMPAIGN] - - - Noma campagna di vendita - table [Dimension Sets] column [Sales campaign Name] - - - VENDITORE - table [Dimension Sets] column [SALESPERSON] - - - Nome venditore - table [Dimension Sets] column [Salesperson Name] - - - Data - table [table.Name] - - - Giorno della settimana - table [Date] column [Week Day] - - - Tipo di giorno - table [Date] column [Day Type] - - - Anno di calendario - table [Date] column [Calendar Year] - - - Trimestre di calendario - table [Date] column [Calendar Quarter] - - - Trimestre anno di calendario - table [Date] column [Calendar Quarter Year] - - - Mese di calendario - table [Date] column [Calendar Month] - - - Mese anno di calendario - table [Date] column [Calendar Month Year] - - - Settimana di calendario - table [Date] column [Calendar Week] - - - Settimana anno di calendario - table [Date] column [Calendar Week Year] - - - PosSettimanaRelativa di calendario - table [Date] column [Calendar RelativeWeekPos] - - - PosMeseRelativo di calendario - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelativo di calendario - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnoRelativo di calendario - table [Date] column [Calendar RelativeYearPos] - - - PrimoGiornoMese di calendario - table [Date] column [Calendar StartOfMonth] - - - UltimoGiornoMese di calendario - table [Date] column [Calendar EndOfMonth] - - - PrimoGiornoTrimestre di calendario - table [Date] column [Calendar StartOfQuarter] - - - UltimoGiornoTrimestre di calendario - table [Date] column [Calendar EndOfQuarter] - - - PrimoGiornoAnno di calendario - table [Date] column [Calendar StartOfYear] - - - UltimoGiornoAnno di calendario - table [Date] column [Calendar EndOfYear] - - - GiorniMese di calendario - table [Date] column [Calendar MonthDays] - - - GiorniTrimestre di calendario - table [Date] column [Calendar QuarterDays] - - - GiorniAnno di calendario - table [Date] column [Calendar YearDays] - - - NumeroGiornoMese di calendario - table [Date] column [Calendar DayOfMonthNumber] - - - NumeroGiornoTrimestre di calendario - table [Date] column [Calendar DayOfQuarterNumber] - - - NumeroGiornoAnno di calendario - table [Date] column [Calendar DayOfYearNumber] - - - DataSettimanaPrecedente di calendario - table [Date] column [Calendar DatePreviousWeek] - - - DataMesePrecedente di calendario - table [Date] column [Calendar DatePreviousMonth] - - - DataTrimestrePrecedente di calendario - table [Date] column [Calendar DatePreviousQuarter] - - - DataAnnoPrecedente di calendario - table [Date] column [Calendar DatePreviousYear] - - - Anno fiscale - table [Date] column [Fiscal Year] - - - Trimestre fiscale - table [Date] column [Fiscal Quarter] - - - Trimestre anno fiscale - table [Date] column [Fiscal Quarter Year] - - - Mese fiscale - table [Date] column [Fiscal Month] - - - Mese anno fiscale - table [Date] column [Fiscal Month Year] - - - Settimana fiscale - table [Date] column [Fiscal Week] - - - Settimana anno fiscale - table [Date] column [Fiscal Week Year] - - - PosSettimanaRelativa fiscale - table [Date] column [Fiscal RelativeWeekPos] - - - PosMeseRelativo fiscale - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelativo fiscale - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnoRelativo fiscale - table [Date] column [Fiscal RelativeYearPos] - - - PrimoGiornoMese fiscale - table [Date] column [Fiscal StartOfMonth] - - - UltimoGiornoMese fiscale - table [Date] column [Fiscal EndOfMonth] - - - PrimoGiornoTrimestre fiscale - table [Date] column [Fiscal StartOfQuarter] - - - UltimoGiornoTrimestre fiscale - table [Date] column [Fiscal EndOfQuarter] - - - PrimoGiornoAnno fiscale - table [Date] column [Fiscal StartOfYear] - - - UltimoGiornoAnno fiscale - table [Date] column [Fiscal EndOfYear] - - - GiorniMese fiscale - table [Date] column [Fiscal MonthDays] - - - GiorniTrimestre fiscale - table [Date] column [Fiscal QuarterDays] - - - GiorniAnno fiscale - table [Date] column [Fiscal YearDays] - - - NumeroGiornoMese fiscale - table [Date] column [Fiscal DayOfMonthNumber] - - - NumeroGiornoTrimestre fiscale - table [Date] column [Fiscal DayOfQuarterNumber] - - - NumeroGiornoAnno fiscale - table [Date] column [Fiscal DayOfYearNumber] - - - DataSettimanaPrecedente fiscale - table [Date] column [Fiscal DatePreviousWeek] - - - DataMesePrecedente fiscale - table [Date] column [Fiscal DatePreviousMonth] - - - DataTrimestrePrecedente fiscale - table [Date] column [Fiscal DatePreviousQuarter] - - - DataAnnoPrecedente fiscale - table [Date] column [Fiscal DatePreviousYear] - - - Anno SF - table [Date] column [FW Year] - - - Trimestre SF - table [Date] column [FW Quarter] - - - Trimestre anno SF - table [Date] column [FW Quarter Year] - - - Mese SF - table [Date] column [FW Month] - - - Mese anno SF - table [Date] column [FW Month Year] - - - Settimana SF - table [Date] column [FW Week] - - - Periodo SF - table [Date] column [FW Period] - - - Settimana anno SF - table [Date] column [FW Week Year] - - - PrimoGiornoSettimana SF - table [Date] column [FW StartOfWeek] - - - UltimoGiornoSettimana SF - table [Date] column [FW EndOfWeek] - - - PosSettimanaRelativa SF - table [Date] column [FW RelativeWeekPos] - - - PosMeseRelativo SF - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelativo SF - table [Date] column [FW RelativeQuarterPos] - - - PosAnnoRelativo SF - table [Date] column [FW RelativeYearPos] - - - PrimoGiornoMese SF - table [Date] column [FW StartOfMonth] - - - UltimoGiornoMese SF - table [Date] column [FW EndOfMonth] - - - PrimoGiornoTrimestre SF - table [Date] column [FW StartOfQuarter] - - - UltimoGiornoTrimestre SF - table [Date] column [FW EndOfQuarter] - - - PrimoGiornoAnno SF - table [Date] column [FW StartOfYear] - - - UltimoGiornoAnno SF - table [Date] column [FW EndOfYear] - - - GiorniMese SF - table [Date] column [FW MonthDays] - - - GiorniTrimestre SF - table [Date] column [FW QuarterDays] - - - GiorniAnno SF - table [Date] column [FW YearDays] - - - NumeroGiornoMese SF - table [Date] column [FW DayOfMonthNumber] - - - NumeroGiornoTrimestre SF - table [Date] column [FW DayOfQuarterNumber] - - - NumeroGiornoAnno SF - table [Date] column [FW DayOfYearNumber] - - - DataSettimanaPrecedente SF - table [Date] column [FW DatePreviousWeek] - - - DataMesePrecedente SF - table [Date] column [FW DatePreviousMonth] - - - DataTrimestrePrecedente SF - table [Date] column [FW DatePreviousQuarter] - - - DataAnnoPrecedente SF - table [Date] column [FW DatePreviousYear] - - - Giorno relativo - table [Date] column [Relative Day] - - - Nr. di giorni - table [Date] measure [No. of Days] - - - Giorni lavorativi - table [Date] measure [Working Days] - - - Con intervalli - table [Date] measure [Ranged] - - - Anno-Trimestre-Mese-Settimana fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Settimana anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Anno-Trimestre-Mese-Settimana di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Settimana anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Anno-Trimestre-Mese-Settimana SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mese anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Anno-Mese fiscale - table [Date] hierarchy [Fiscal Year-Month] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Anno-Mese-Settimana fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Settimana anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Anno-Mese di calendario - table [Date] hierarchy [Calendar Year-Month] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Anno-Mese-Settimana di calendario - table [Date] hierarchy [Calendar Year-Month-Week] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Settimana anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Anno-Mese-Settimana SF - table [Date] hierarchy [FW Year-Month-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mese anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Anno-Trimestre-Settimana SF - table [Date] hierarchy [FW Year-Quarter-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Anno-Settimana SF - table [Date] hierarchy [FW Year-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Titolo report personale - table [Localized Labels] measure [My Report Title] - - - Didascalia pulsante personale - table [Localized Labels] measure [My Button Caption] - - - Titolo visivo personale - table [Localized Labels] measure [My Visual Title] - - - Dipendenti inattivi - table [Localized Labels] measure [Inactive Employees] - - - Dipendenti licenziati - table [Localized Labels] measure [Terminated Employees] - - - Dipendenti in sindacati - table [Localized Labels] measure [Employees in Unions] - - - Analisi sociale - table [Localized Labels] measure [Social Analysis] - - - Distribuzione generi - table [Localized Labels] measure [Gender Distribution] - - - Distribuzione età - table [Localized Labels] measure [Age Distribution] - - - Qualifiche dipendenti - table [Localized Labels] measure [Employees Qualifications] - - - Realizzazione emissioni rispetto all'obiettivo - table [Localized Labels] measure [Realized Emissions vs Target] - - - Emissioni CO2e per ambito - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Emissioni gas per categoria - table [Localized Labels] measure [Gas Emissions by Category] - - - Realizzazione emissioni rispetto al valore di riferimento - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Emissioni CO2e rispetto al valore di riferimento - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Emissioni CO2e per conto - table [Localized Labels] measure [CO2e Emissions by Account] - - - Analisi acqua e rifiuti - table [Localized Labels] measure [Water and Waste Analysis] - - - Acqua per ubicazione dell'impianto - table [Localized Labels] measure [Water by Facility Location] - - - Acqua per capacità dell'impianto - table [Localized Labels] measure [Water by Facility Capacity] - - - Acqua e rifiuti per tipo - table [Localized Labels] measure [Water and Waste by Type] - - - Intensità acqua e rifiuti per tipo - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Intensità acqua e rifiuti per impianto - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissioni per categoria e ambito - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissioni per categoria - table [Localized Labels] measure [Emissions by Category] - - - Emissioni per ambito - table [Localized Labels] measure [Emissions by Scope] - - - Analisi CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Emissioni CO2e per categoria - table [Localized Labels] measure [CO2e Emissions by Category] - - - Credito di carbonio per mese - table [Localized Labels] measure [Carbon Credit by Month] - - - Emissione CO2e equivalente per mese e ricavi - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Drill-through movimenti dipendenti - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Movimenti contabili dipendente - table [Localized Labels] measure [Employee Ledger Entries] - - - Movimenti contabili sostenibilità - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Drill-through movimenti contabili sostenibilità - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Drill-through movimenti contabili dipendente - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Panoramica sostenibilità - table [Localized Labels] measure [Sustainability Overview] - - - Analisi sostenibilità - table [Localized Labels] measure [Sustainability Analytics] - - - Emissioni CO2e per mese - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analisi ambiti 1 e 2 per categorie per anno - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Emissioni CO2e per reparto - table [Localized Labels] measure [CO2e Emissions by Department] - - - Percorso verso l'azzeramento delle emissioni nette di carbonio - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Emissioni CO2e per categoria business - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Utilizzo energie rinnovabili - table [Localized Labels] measure [Renewable Energy Usage] - - - Emissioni CO2e nel tempo - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Recensione intelligente CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - Emissioni CO2e per dimensione globale uno - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Emissioni CO2e per dimensione globale due - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Emissioni CO2e equivalente per mese - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Nome società - table [Localized Labels] measure [Company Name] - - - Ultimo aggiornamento - table [Localized Labels] measure [Last Refreshed] - - - Dipendenti in aspettativa - table [Localized Labels] measure [Released Employees] - - - Albero di scomposizione CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Influenze chiave CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Variazione annuale e giornaliera acqua e rifiuti - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Movimenti contabili sostenibilità - table [table.Name] - - - Nr. movimento - table [Sustainability Ledger Entries] column [Entry No.] - - - Descrizione - table [Sustainability Ledger Entries] column [Description] - - - Tipo di acqua - table [Sustainability Ledger Entries] column [Water Type] - - - Tipo di intensità di acqua/rifiuti - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Tipo di documento - table [Sustainability Ledger Entries] column [Document Type] - - - Emissioni CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - Emissioni CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Saldo emissioni CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Saldo emissioni CO2 alla data - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - Emissioni N2O - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Emissioni CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Saldo emissioni CH4 alla data - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Saldo emissioni CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Intensità dell'acqua - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Intensità dei rifiuti - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Scarico in acqua - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Saldo emissioni CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Saldo emissioni CO2e alla data - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Saldo di scarico in acqua alla data - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Saldo di scarico in acqua - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Saldo emissioni N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Saldo emissioni N2O alla data - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Saldo intensità dei rifiuti alla data - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Saldo intensità dei rifiuti - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Saldo intensità acqua - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Saldo intensità acqua alla data - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Valore di riferimento CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Valore di riferimento CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - Valore di riferimento N2O - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Valore di riferimento acqua - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Valore di riferimento rifiuti - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Acqua rispetto a valore di riferimento (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Rifiuti rispetto a valore di riferimento (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Valore di riferimento CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Crediti di carbonio acquistati - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Valore di riferimento scarico in acqua - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Scarico in acqua rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Emissioni CO2e (crediti esclusi) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Intensità dell'acqua PY - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Intensità dell'acqua anno su anno - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Intensità dei rifiuti anno precedente - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Intensità dei rifiuti anno su anno - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Scarico in acqua PY - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Scarico in acqua YOY - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - DP scarico in acqua - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Intensità dei rifiuti giorno precedente - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - PD intensità acqua - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Intensità dell'acqua giornaliera - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Intensità dei rifiuti giornaliera - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Scarico in acqua giornaliero - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Collegamento base - table [Sustainability Ledger Entries] measure [Base Link] - - - Collegamento movimenti contabili sostenibilità - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Acqua disponibile - table [Sustainability Ledger Entries] measure [Water Available] - - - Conti di sostenibilità - table [table.Name] - - - Nr. conto di sostenibilità - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nome conto di sostenibilità - table [Sustainability Accounts] column [Sustainability Account Name] - - - Paese/area geografica - table [table.Name] - - - Codice paese/area geografica - table [Country/Region] column [Country Region Code] - - - Nome paese/area geografica - table [Country/Region] column [Country Region Name] - - - Centro di responsabilità - table [table.Name] - - - Codice centro di responsabilità - table [Responsibility Centre] column [Responsibility Centre Code] - - - Nome centro di responsabilità - table [Responsibility Centre] column [Responsibility Centre Name] - - - Capacità impianto - table [Responsibility Centre] measure [Facility Capacity] - - - Obiettivi di sostenibilità - table [table.Name] - - - Nr. scorecard - table [Sustainability Goals] column [Score Card No.] - - - Nr. - table [Sustainability Goals] column [No.] - - - Nome - table [Sustainability Goals] column [Name] - - - Proprietario - table [Sustainability Goals] column [Owner] - - - Valore di destinazione per CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Valore di destinazione per CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Valore di destinazione per N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Valore di destinazione per intensità dell'acqua - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Valore di destinazione per intensità dei rifiuti - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Obiettivo principale - table [Sustainability Goals] column [Main Goal] - - - Data di inizio - table [Sustainability Goals] column [Start Date] - - - Data di fine - table [Sustainability Goals] column [End Date] - - - Data di inizio del valore di riferimento - table [Sustainability Goals] column [Baseline Start Date] - - - Data di fine del valore di riferimento - table [Sustainability Goals] column [Baseline End Date] - - - Obiettivo CO2 - table [Sustainability Goals] measure [CO2 Target] - - - Realizzazione CO2 (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - Obiettivo CH4 - table [Sustainability Goals] measure [CH4 Target] - - - Obiettivo N2O - table [Sustainability Goals] measure [N2O Target] - - - Realizzazione CH4 (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - Realizzazione N2O (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Obiettivo acqua - table [Sustainability Goals] measure [Water Target] - - - Obiettivo rifiuti - table [Sustainability Goals] measure [Waste Target] - - - Realizzazione acqua (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Realizzazione rifiuti (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - Realizzazione CO2e (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Valore corrente CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Valore corrente CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Valore corrente N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Valore corrente CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Valore corrente acqua - table [Sustainability Goals] measure [Water Current Value] - - - Valore corrente rifiuti - table [Sustainability Goals] measure [Waste Current Value] - - - Movimenti contabili dipendente - table [table.Name] - - - Nr. movimento - table [Employee Ledger Entries] column [Entry No.] - - - Tipo di documento - table [Employee Ledger Entries] column [Document Type] - - - Nr. documento - table [Employee Ledger Entries] column [Document No.] - - - Descrizione - table [Employee Ledger Entries] column [Description] - - - Importo dipendente - table [Employee Ledger Entries] measure [Employee Amount] - - - Collegamento movimenti contabili dipendente - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Qualifiche dipendenti - table [table.Name] - - - Codici qualifiche dipendenti - table [Employee Qualifications] column [Employee Qualification Codes] - - - Qualifiche dipendenti - table [Employee Qualifications] measure [Employee Qualifications] - - - Imposte sulle emissioni - table [table.Name] - - - Tipo di emissioni - table [Emission Fees] column [Emission Type] - - - Tipo di ambito - table [Emission Fees] column [Scope Type] - - - Data di inizio - table [Emission Fees] column [Starting Date] - - - Data di fine - table [Emission Fees] column [Ending Date] - - - Codice paese/area geografica - table [Emission Fees] column [Country Region Code] - - - Centro di responsabilità - table [Emission Fees] column [Responsibility Centre] - - - Onere per emissioni di carbonio - table [Emission Fees] column [Carbon Fee] - - - Fattore di carbonio equivalente - table [Emission Fees] column [Carbon Equivalent Factor] - - - Obiettivo CO2e - table [Emission Fees] measure [CO2e Target] - - - Carbonio CO2 equivalente - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - Carbonio CH4 equivalente - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - Carbonio N2O equivalente - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Assenze impiegato - table [table.Name] - - - Nr. movimento - table [Employee Absences] column [Entry No] - - - Da data - table [Employee Absences] column [From Date] - - - A data - table [Employee Absences] column [To Date] - - - Cause delle assenze - table [Employee Absences] column [Cause of Absence] - - - Descrizione - table [Employee Absences] column [Description] - - - Assenze impiegato - table [Employee Absences] measure [Employee Absences] - - - Ore di assenza (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Categorie conti secondari di sostenibilità - table [table.Name] - - - Codice sottocategoria - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Descrizione sottocategoria - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Energie rinnovabili - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Dipendenti - table [table.Name] - - - Nr. dipendente - table [Employees] column [Employee No.] - - - Nome completo dipendente - table [Employees] column [Employee Full Name] - - - Nome dipendente - table [Employees] column [Employee First Name] - - - Cognome dipendente - table [Employees] column [Employee Last Name] - - - Genere dipendente - table [Employees] column [Employee Gender] - - - Codice sindacato dipendente - table [Employees] column [Employee Union Code] - - - Stato di impiego - table [Employees] column [Employee Status] - - - Causa inattività dipendente - table [Employees] column [Employee Cause of Inactivity] - - - Data di inattività dipendente - table [Employees] column [Employee Inactive Date] - - - Motivazioni di fine rapporto dipendente - table [Employees] column [Employee Grounds for Termination] - - - Data di nascita dipendente - table [Employees] column [Employee Date of Birth] - - - Età - table [Employees] column [Age] - - - Distribuzione età - table [Employees] column [Age Distribution] - - - Nr. di dipendenti - table [Employees] measure [No. of Employees] - - - Nr. di dipendenti di genere maschile - table [Employees] measure [No. of Male Employees] - - - Nr. di dipendenti di genere femminile - table [Employees] measure [No. of Female Employees] - - - Nr. di altri dipendenti - table [Employees] measure [No. of Other Employees] - - - Dipendenti di genere maschile (%) - table [Employees] measure [Male Employees (%)] - - - Dipendenti di genere femminile (%) - table [Employees] measure [Female Employees (%)] - - - Altri dipendenti (%) - table [Employees] measure [Other Employees (%)] - - - Dipendenti attivi - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.it-IT.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.it-IT.resx deleted file mode 100644 index 4139a566f2..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.it-IT.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Categoria conto C/G - table [table.Name] - - - Descrizione categoria conto C/G - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Codice categoria conto di sostenibilità - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Ambito di emissione categoria conto di sostenibilità - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Set di dimensioni - table [table.Name] - - - Dimensione globale 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Dimensione globale 2 - table [Dimension Sets] column [Global Dimension 2] - - - Collegamento dimensione 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Collegamento dimensione 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Collegamento dimensione 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Collegamento dimensione 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Collegamento dimensione 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Collegamento dimensione 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - REPARTO - table [Dimension Sets] column [DEPARTMENT] - - - Nome reparto - table [Dimension Sets] column [Department Name] - - - CATEGORIACLIENTE - table [Dimension Sets] column [CUSTOMERGROUP] - - - Nome gruppo di clienti - table [Dimension Sets] column [Customer Group Name] - - - AREA - table [Dimension Sets] column [AREA] - - - Nome area - table [Dimension Sets] column [Area Name] - - - CATEGORIABUSINESS - table [Dimension Sets] column [BUSINESSGROUP] - - - Nome categoria business - table [Dimension Sets] column [Business Group Name] - - - CAMPAGNEVENDITA - table [Dimension Sets] column [SALESCAMPAIGN] - - - Noma campagna di vendita - table [Dimension Sets] column [Sales campaign Name] - - - VENDITORE - table [Dimension Sets] column [SALESPERSON] - - - Nome venditore - table [Dimension Sets] column [Salesperson Name] - - - Data - table [table.Name] - - - Giorno della settimana - table [Date] column [Week Day] - - - Tipo di giorno - table [Date] column [Day Type] - - - Anno di calendario - table [Date] column [Calendar Year] - - - Trimestre di calendario - table [Date] column [Calendar Quarter] - - - Trimestre anno di calendario - table [Date] column [Calendar Quarter Year] - - - Mese di calendario - table [Date] column [Calendar Month] - - - Mese anno di calendario - table [Date] column [Calendar Month Year] - - - Settimana di calendario - table [Date] column [Calendar Week] - - - Settimana anno di calendario - table [Date] column [Calendar Week Year] - - - PosSettimanaRelativa di calendario - table [Date] column [Calendar RelativeWeekPos] - - - PosMeseRelativo di calendario - table [Date] column [Calendar RelativeMonthPos] - - - PosTrimestreRelativo di calendario - table [Date] column [Calendar RelativeQuarterPos] - - - PosAnnoRelativo di calendario - table [Date] column [Calendar RelativeYearPos] - - - PrimoGiornoMese di calendario - table [Date] column [Calendar StartOfMonth] - - - UltimoGiornoMese di calendario - table [Date] column [Calendar EndOfMonth] - - - PrimoGiornoTrimestre di calendario - table [Date] column [Calendar StartOfQuarter] - - - UltimoGiornoTrimestre di calendario - table [Date] column [Calendar EndOfQuarter] - - - PrimoGiornoAnno di calendario - table [Date] column [Calendar StartOfYear] - - - UltimoGiornoAnno di calendario - table [Date] column [Calendar EndOfYear] - - - GiorniMese di calendario - table [Date] column [Calendar MonthDays] - - - GiorniTrimestre di calendario - table [Date] column [Calendar QuarterDays] - - - GiorniAnno di calendario - table [Date] column [Calendar YearDays] - - - NumeroGiornoMese di calendario - table [Date] column [Calendar DayOfMonthNumber] - - - NumeroGiornoTrimestre di calendario - table [Date] column [Calendar DayOfQuarterNumber] - - - NumeroGiornoAnno di calendario - table [Date] column [Calendar DayOfYearNumber] - - - DataSettimanaPrecedente di calendario - table [Date] column [Calendar DatePreviousWeek] - - - DataMesePrecedente di calendario - table [Date] column [Calendar DatePreviousMonth] - - - DataTrimestrePrecedente di calendario - table [Date] column [Calendar DatePreviousQuarter] - - - DataAnnoPrecedente di calendario - table [Date] column [Calendar DatePreviousYear] - - - Anno fiscale - table [Date] column [Fiscal Year] - - - Trimestre fiscale - table [Date] column [Fiscal Quarter] - - - Trimestre anno fiscale - table [Date] column [Fiscal Quarter Year] - - - Mese fiscale - table [Date] column [Fiscal Month] - - - Mese anno fiscale - table [Date] column [Fiscal Month Year] - - - Settimana fiscale - table [Date] column [Fiscal Week] - - - Settimana anno fiscale - table [Date] column [Fiscal Week Year] - - - PosSettimanaRelativa fiscale - table [Date] column [Fiscal RelativeWeekPos] - - - PosMeseRelativo fiscale - table [Date] column [Fiscal RelativeMonthPos] - - - PosTrimestreRelativo fiscale - table [Date] column [Fiscal RelativeQuarterPos] - - - PosAnnoRelativo fiscale - table [Date] column [Fiscal RelativeYearPos] - - - PrimoGiornoMese fiscale - table [Date] column [Fiscal StartOfMonth] - - - UltimoGiornoMese fiscale - table [Date] column [Fiscal EndOfMonth] - - - PrimoGiornoTrimestre fiscale - table [Date] column [Fiscal StartOfQuarter] - - - UltimoGiornoTrimestre fiscale - table [Date] column [Fiscal EndOfQuarter] - - - PrimoGiornoAnno fiscale - table [Date] column [Fiscal StartOfYear] - - - UltimoGiornoAnno fiscale - table [Date] column [Fiscal EndOfYear] - - - GiorniMese fiscale - table [Date] column [Fiscal MonthDays] - - - GiorniTrimestre fiscale - table [Date] column [Fiscal QuarterDays] - - - GiorniAnno fiscale - table [Date] column [Fiscal YearDays] - - - NumeroGiornoMese fiscale - table [Date] column [Fiscal DayOfMonthNumber] - - - NumeroGiornoTrimestre fiscale - table [Date] column [Fiscal DayOfQuarterNumber] - - - NumeroGiornoAnno fiscale - table [Date] column [Fiscal DayOfYearNumber] - - - DataSettimanaPrecedente fiscale - table [Date] column [Fiscal DatePreviousWeek] - - - DataMesePrecedente fiscale - table [Date] column [Fiscal DatePreviousMonth] - - - DataTrimestrePrecedente fiscale - table [Date] column [Fiscal DatePreviousQuarter] - - - DataAnnoPrecedente fiscale - table [Date] column [Fiscal DatePreviousYear] - - - Anno SF - table [Date] column [FW Year] - - - Trimestre SF - table [Date] column [FW Quarter] - - - Trimestre anno SF - table [Date] column [FW Quarter Year] - - - Mese SF - table [Date] column [FW Month] - - - Mese anno SF - table [Date] column [FW Month Year] - - - Settimana SF - table [Date] column [FW Week] - - - Periodo SF - table [Date] column [FW Period] - - - Settimana anno SF - table [Date] column [FW Week Year] - - - PrimoGiornoSettimana SF - table [Date] column [FW StartOfWeek] - - - UltimoGiornoSettimana SF - table [Date] column [FW EndOfWeek] - - - PosSettimanaRelativa SF - table [Date] column [FW RelativeWeekPos] - - - PosMeseRelativo SF - table [Date] column [FW RelativeMonthPos] - - - PosTrimestreRelativo SF - table [Date] column [FW RelativeQuarterPos] - - - PosAnnoRelativo SF - table [Date] column [FW RelativeYearPos] - - - PrimoGiornoMese SF - table [Date] column [FW StartOfMonth] - - - UltimoGiornoMese SF - table [Date] column [FW EndOfMonth] - - - PrimoGiornoTrimestre SF - table [Date] column [FW StartOfQuarter] - - - UltimoGiornoTrimestre SF - table [Date] column [FW EndOfQuarter] - - - PrimoGiornoAnno SF - table [Date] column [FW StartOfYear] - - - UltimoGiornoAnno SF - table [Date] column [FW EndOfYear] - - - GiorniMese SF - table [Date] column [FW MonthDays] - - - GiorniTrimestre SF - table [Date] column [FW QuarterDays] - - - GiorniAnno SF - table [Date] column [FW YearDays] - - - NumeroGiornoMese SF - table [Date] column [FW DayOfMonthNumber] - - - NumeroGiornoTrimestre SF - table [Date] column [FW DayOfQuarterNumber] - - - NumeroGiornoAnno SF - table [Date] column [FW DayOfYearNumber] - - - DataSettimanaPrecedente SF - table [Date] column [FW DatePreviousWeek] - - - DataMesePrecedente SF - table [Date] column [FW DatePreviousMonth] - - - DataTrimestrePrecedente SF - table [Date] column [FW DatePreviousQuarter] - - - DataAnnoPrecedente SF - table [Date] column [FW DatePreviousYear] - - - Giorno relativo - table [Date] column [Relative Day] - - - Nr. di giorni - table [Date] measure [No. of Days] - - - Giorni lavorativi - table [Date] measure [Working Days] - - - Con intervalli - table [Date] measure [Ranged] - - - Anno-Trimestre-Mese-Settimana fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Trimestre anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Settimana anno fiscale - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Anno-Trimestre-Mese-Settimana di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Trimestre anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Settimana anno di calendario - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Anno-Trimestre-Mese-Settimana SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Trimestre anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Mese anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Anno-Mese fiscale - table [Date] hierarchy [Fiscal Year-Month] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Anno-Mese-Settimana fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Mese anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Settimana anno fiscale - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Anno-Mese di calendario - table [Date] hierarchy [Calendar Year-Month] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Anno-Mese-Settimana di calendario - table [Date] hierarchy [Calendar Year-Month-Week] - - - Anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Mese anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Settimana anno di calendario - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Anno-Mese-Settimana SF - table [Date] hierarchy [FW Year-Month-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Mese anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Anno-Trimestre-Settimana SF - table [Date] hierarchy [FW Year-Quarter-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Trimestre anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Anno-Settimana SF - table [Date] hierarchy [FW Year-Week] - - - Anno SF - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Settimana anno SF - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Titolo report personale - table [Localized Labels] measure [My Report Title] - - - Didascalia pulsante personale - table [Localized Labels] measure [My Button Caption] - - - Titolo visivo personale - table [Localized Labels] measure [My Visual Title] - - - Dipendenti inattivi - table [Localized Labels] measure [Inactive Employees] - - - Dipendenti licenziati - table [Localized Labels] measure [Terminated Employees] - - - Dipendenti in sindacati - table [Localized Labels] measure [Employees in Unions] - - - Analisi sociale - table [Localized Labels] measure [Social Analysis] - - - Distribuzione generi - table [Localized Labels] measure [Gender Distribution] - - - Distribuzione età - table [Localized Labels] measure [Age Distribution] - - - Qualifiche dipendenti - table [Localized Labels] measure [Employees Qualifications] - - - Realizzazione emissioni rispetto all'obiettivo - table [Localized Labels] measure [Realized Emissions vs Target] - - - Emissioni CO2e per ambito - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Emissioni gas per categoria - table [Localized Labels] measure [Gas Emissions by Category] - - - Realizzazione emissioni rispetto al valore di riferimento - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - Emissioni CO2e rispetto al valore di riferimento - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - Emissioni CO2e per conto - table [Localized Labels] measure [CO2e Emissions by Account] - - - Analisi acqua e rifiuti - table [Localized Labels] measure [Water and Waste Analysis] - - - Acqua per ubicazione dell'impianto - table [Localized Labels] measure [Water by Facility Location] - - - Acqua per capacità dell'impianto - table [Localized Labels] measure [Water by Facility Capacity] - - - Acqua e rifiuti per tipo - table [Localized Labels] measure [Water and Waste by Type] - - - Intensità acqua e rifiuti per tipo - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Intensità acqua e rifiuti per impianto - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Emissioni per categoria e ambito - table [Localized Labels] measure [Emissions by Category and Scope] - - - Emissioni per categoria - table [Localized Labels] measure [Emissions by Category] - - - Emissioni per ambito - table [Localized Labels] measure [Emissions by Scope] - - - Analisi CO2e - table [Localized Labels] measure [CO2e Analysis] - - - Emissioni CO2e per categoria - table [Localized Labels] measure [CO2e Emissions by Category] - - - Credito di carbonio per mese - table [Localized Labels] measure [Carbon Credit by Month] - - - Emissione CO2e equivalente per mese e ricavi - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Drill-through movimenti dipendenti - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Movimenti contabili dipendente - table [Localized Labels] measure [Employee Ledger Entries] - - - Movimenti contabili sostenibilità - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Drill-through movimenti contabili sostenibilità - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Drill-through movimenti contabili dipendente - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Panoramica sostenibilità - table [Localized Labels] measure [Sustainability Overview] - - - Analisi sostenibilità - table [Localized Labels] measure [Sustainability Analytics] - - - Emissioni CO2e per mese - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analisi ambiti 1 e 2 per categorie per anno - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - Emissioni CO2e per reparto - table [Localized Labels] measure [CO2e Emissions by Department] - - - Percorso verso l'azzeramento delle emissioni nette di carbonio - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - Emissioni CO2e per categoria business - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Utilizzo energie rinnovabili - table [Localized Labels] measure [Renewable Energy Usage] - - - Emissioni CO2e nel tempo - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Recensione intelligente CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - Emissioni CO2e per dimensione globale uno - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - Emissioni CO2e per dimensione globale due - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Emissioni CO2e equivalente per mese - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Nome società - table [Localized Labels] measure [Company Name] - - - Ultimo aggiornamento - table [Localized Labels] measure [Last Refreshed] - - - Dipendenti in aspettativa - table [Localized Labels] measure [Released Employees] - - - Albero di scomposizione CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Influenze chiave CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Variazione annuale e giornaliera acqua e rifiuti - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Movimenti contabili sostenibilità - table [table.Name] - - - Nr. movimento - table [Sustainability Ledger Entries] column [Entry No.] - - - Descrizione - table [Sustainability Ledger Entries] column [Description] - - - Tipo di acqua - table [Sustainability Ledger Entries] column [Water Type] - - - Tipo di intensità di acqua/rifiuti - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Tipo di documento - table [Sustainability Ledger Entries] column [Document Type] - - - Emissioni CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - Emissioni CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Saldo emissioni CO2 - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Saldo emissioni CO2 alla data - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - Emissioni N2O - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - Emissioni CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Saldo emissioni CH4 alla data - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Saldo emissioni CH4 - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Intensità dell'acqua - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Intensità dei rifiuti - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Scarico in acqua - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Saldo emissioni CO2e - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Saldo emissioni CO2e alla data - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Saldo di scarico in acqua alla data - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Saldo di scarico in acqua - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Saldo emissioni N2O - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Saldo emissioni N2O alla data - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Saldo intensità dei rifiuti alla data - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Saldo intensità dei rifiuti - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Saldo intensità acqua - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Saldo intensità acqua alla data - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - Valore di riferimento CO2 - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - Valore di riferimento CH4 - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - Valore di riferimento N2O - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Valore di riferimento acqua - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Valore di riferimento rifiuti - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Acqua rispetto a valore di riferimento (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Rifiuti rispetto a valore di riferimento (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - Valore di riferimento CO2e - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Crediti di carbonio acquistati - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Valore di riferimento scarico in acqua - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Scarico in acqua rispetto al valore di riferimento (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - Emissioni CO2e (crediti esclusi) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Intensità dell'acqua PY - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Intensità dell'acqua anno su anno - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Intensità dei rifiuti anno precedente - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Intensità dei rifiuti anno su anno - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Scarico in acqua PY - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Scarico in acqua YOY - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - DP scarico in acqua - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Intensità dei rifiuti giorno precedente - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - PD intensità acqua - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Intensità dell'acqua giornaliera - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Intensità dei rifiuti giornaliera - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Scarico in acqua giornaliero - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Collegamento base - table [Sustainability Ledger Entries] measure [Base Link] - - - Collegamento movimenti contabili sostenibilità - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Acqua disponibile - table [Sustainability Ledger Entries] measure [Water Available] - - - Conti di sostenibilità - table [table.Name] - - - Nr. conto di sostenibilità - table [Sustainability Accounts] column [Sustainability Account No.] - - - Nome conto di sostenibilità - table [Sustainability Accounts] column [Sustainability Account Name] - - - Paese/area geografica - table [table.Name] - - - Codice paese/area geografica - table [Country/Region] column [Country Region Code] - - - Nome paese/area geografica - table [Country/Region] column [Country Region Name] - - - Centro di responsabilità - table [table.Name] - - - Codice centro di responsabilità - table [Responsibility Centre] column [Responsibility Centre Code] - - - Nome centro di responsabilità - table [Responsibility Centre] column [Responsibility Centre Name] - - - Capacità impianto - table [Responsibility Centre] measure [Facility Capacity] - - - Obiettivi di sostenibilità - table [table.Name] - - - Nr. scorecard - table [Sustainability Goals] column [Score Card No.] - - - Nr. - table [Sustainability Goals] column [No.] - - - Nome - table [Sustainability Goals] column [Name] - - - Proprietario - table [Sustainability Goals] column [Owner] - - - Valore di destinazione per CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Valore di destinazione per CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Valore di destinazione per N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Valore di destinazione per intensità dell'acqua - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Valore di destinazione per intensità dei rifiuti - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Obiettivo principale - table [Sustainability Goals] column [Main Goal] - - - Data di inizio - table [Sustainability Goals] column [Start Date] - - - Data di fine - table [Sustainability Goals] column [End Date] - - - Data di inizio del valore di riferimento - table [Sustainability Goals] column [Baseline Start Date] - - - Data di fine del valore di riferimento - table [Sustainability Goals] column [Baseline End Date] - - - Obiettivo CO2 - table [Sustainability Goals] measure [CO2 Target] - - - Realizzazione CO2 (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - Obiettivo CH4 - table [Sustainability Goals] measure [CH4 Target] - - - Obiettivo N2O - table [Sustainability Goals] measure [N2O Target] - - - Realizzazione CH4 (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - Realizzazione N2O (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Obiettivo acqua - table [Sustainability Goals] measure [Water Target] - - - Obiettivo rifiuti - table [Sustainability Goals] measure [Waste Target] - - - Realizzazione acqua (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Realizzazione rifiuti (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - Realizzazione CO2e (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Valore corrente CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Valore corrente CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Valore corrente N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Valore corrente CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Valore corrente acqua - table [Sustainability Goals] measure [Water Current Value] - - - Valore corrente rifiuti - table [Sustainability Goals] measure [Waste Current Value] - - - Movimenti contabili dipendente - table [table.Name] - - - Nr. movimento - table [Employee Ledger Entries] column [Entry No.] - - - Tipo di documento - table [Employee Ledger Entries] column [Document Type] - - - Nr. documento - table [Employee Ledger Entries] column [Document No.] - - - Descrizione - table [Employee Ledger Entries] column [Description] - - - Importo dipendente - table [Employee Ledger Entries] measure [Employee Amount] - - - Collegamento movimenti contabili dipendente - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Qualifiche dipendenti - table [table.Name] - - - Codici qualifiche dipendenti - table [Employee Qualifications] column [Employee Qualification Codes] - - - Qualifiche dipendenti - table [Employee Qualifications] measure [Employee Qualifications] - - - Imposte sulle emissioni - table [table.Name] - - - Tipo di emissioni - table [Emission Fees] column [Emission Type] - - - Tipo di ambito - table [Emission Fees] column [Scope Type] - - - Data di inizio - table [Emission Fees] column [Starting Date] - - - Data di fine - table [Emission Fees] column [Ending Date] - - - Codice paese/area geografica - table [Emission Fees] column [Country Region Code] - - - Centro di responsabilità - table [Emission Fees] column [Responsibility Centre] - - - Onere per emissioni di carbonio - table [Emission Fees] column [Carbon Fee] - - - Fattore di carbonio equivalente - table [Emission Fees] column [Carbon Equivalent Factor] - - - Obiettivo CO2e - table [Emission Fees] measure [CO2e Target] - - - Carbonio CO2 equivalente - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - Carbonio CH4 equivalente - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - Carbonio N2O equivalente - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Assenze impiegato - table [table.Name] - - - Nr. movimento - table [Employee Absences] column [Entry No] - - - Da data - table [Employee Absences] column [From Date] - - - A data - table [Employee Absences] column [To Date] - - - Cause delle assenze - table [Employee Absences] column [Cause of Absence] - - - Descrizione - table [Employee Absences] column [Description] - - - Assenze impiegato - table [Employee Absences] measure [Employee Absences] - - - Ore di assenza (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Categorie conti secondari di sostenibilità - table [table.Name] - - - Codice sottocategoria - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Descrizione sottocategoria - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Energie rinnovabili - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Dipendenti - table [table.Name] - - - Nr. dipendente - table [Employees] column [Employee No.] - - - Nome completo dipendente - table [Employees] column [Employee Full Name] - - - Nome dipendente - table [Employees] column [Employee First Name] - - - Cognome dipendente - table [Employees] column [Employee Last Name] - - - Genere dipendente - table [Employees] column [Employee Gender] - - - Codice sindacato dipendente - table [Employees] column [Employee Union Code] - - - Stato di impiego - table [Employees] column [Employee Status] - - - Causa inattività dipendente - table [Employees] column [Employee Cause of Inactivity] - - - Data di inattività dipendente - table [Employees] column [Employee Inactive Date] - - - Motivazioni di fine rapporto dipendente - table [Employees] column [Employee Grounds for Termination] - - - Data di nascita dipendente - table [Employees] column [Employee Date of Birth] - - - Età - table [Employees] column [Age] - - - Distribuzione età - table [Employees] column [Age Distribution] - - - Nr. di dipendenti - table [Employees] measure [No. of Employees] - - - Nr. di dipendenti di genere maschile - table [Employees] measure [No. of Male Employees] - - - Nr. di dipendenti di genere femminile - table [Employees] measure [No. of Female Employees] - - - Nr. di altri dipendenti - table [Employees] measure [No. of Other Employees] - - - Dipendenti di genere maschile (%) - table [Employees] measure [Male Employees (%)] - - - Dipendenti di genere femminile (%) - table [Employees] measure [Female Employees (%)] - - - Altri dipendenti (%) - table [Employees] measure [Other Employees (%)] - - - Dipendenti attivi - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nb-NO.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nb-NO.resx deleted file mode 100644 index 256b9ba8c7..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nb-NO.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Finanskontokategori - table [table.Name] - - - Beskrivelse av finanskontokategori - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Kategorikode for bærekraftskonto - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Utslippsområde for bærekraftskontokategori - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimensjonssett - table [table.Name] - - - Global dimensjon 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Global dimensjon 2 - table [Dimension Sets] column [Global Dimension 2] - - - Snarveisdimensjon 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Snarveisdimensjon 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Snarveisdimensjon 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Snarveisdimensjon 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Snarveisdimensjon 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Snarveisdimensjon 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - AVDELING - table [Dimension Sets] column [DEPARTMENT] - - - Navn på avdeling - table [Dimension Sets] column [Department Name] - - - KUNDEGRUPPE - table [Dimension Sets] column [CUSTOMERGROUP] - - - Navn på kundegruppe - table [Dimension Sets] column [Customer Group Name] - - - OMRÅDE - table [Dimension Sets] column [AREA] - - - Områdenavn - table [Dimension Sets] column [Area Name] - - - FIRMATYPE - table [Dimension Sets] column [BUSINESSGROUP] - - - Navn på forretningsgruppe - table [Dimension Sets] column [Business Group Name] - - - SALGSKAMPANJE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Navn på salgskampanje - table [Dimension Sets] column [Sales campaign Name] - - - SELGER - table [Dimension Sets] column [SALESPERSON] - - - Selgernavn - table [Dimension Sets] column [Salesperson Name] - - - Dato - table [table.Name] - - - Ukedag - table [Date] column [Week Day] - - - Type dag - table [Date] column [Day Type] - - - Kalenderår - table [Date] column [Calendar Year] - - - Kalenderkvartal - table [Date] column [Calendar Quarter] - - - Kalender Kvartal År - table [Date] column [Calendar Quarter Year] - - - Kalendermåned - table [Date] column [Calendar Month] - - - Kalender Måned År - table [Date] column [Calendar Month Year] - - - Kalenderuke - table [Date] column [Calendar Week] - - - Kalender Uke År - table [Date] column [Calendar Week Year] - - - Kalender RelativUkePos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativMånedPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativtKvartalPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativtÅrPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender StartPåMåned - table [Date] column [Calendar StartOfMonth] - - - Kalender SluttPåMåned - table [Date] column [Calendar EndOfMonth] - - - Kalender StartPåKvartal - table [Date] column [Calendar StartOfQuarter] - - - KalenderSluttPåKvartal - table [Date] column [Calendar EndOfQuarter] - - - Kalender StartPåÅr - table [Date] column [Calendar StartOfYear] - - - Kalender SluttPåÅr - table [Date] column [Calendar EndOfYear] - - - Kalender MånedDager - table [Date] column [Calendar MonthDays] - - - Kalender KvartalDager - table [Date] column [Calendar QuarterDays] - - - Kalender ÅrDager - table [Date] column [Calendar YearDays] - - - Kalender DagIMånedNummer - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender DagIKvartalNummer - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender DagIÅretNummer - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatoForrigeUke - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatoForrigeMåned - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatoForrigeKvartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatoForrigeÅr - table [Date] column [Calendar DatePreviousYear] - - - Regnskapsår - table [Date] column [Fiscal Year] - - - Regnskapskvartal - table [Date] column [Fiscal Quarter] - - - Regnskap Kvartal År - table [Date] column [Fiscal Quarter Year] - - - Regnskapsmåned - table [Date] column [Fiscal Month] - - - Regnskap Måned År - table [Date] column [Fiscal Month Year] - - - Regnskapsuke - table [Date] column [Fiscal Week] - - - Regnskap Uke År - table [Date] column [Fiscal Week Year] - - - Regnskap RelativUkePos - table [Date] column [Fiscal RelativeWeekPos] - - - Regnskap RelativMånedPos - table [Date] column [Fiscal RelativeMonthPos] - - - Regnskap RelativtKvartalPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Regnskap RelativtÅrPos - table [Date] column [Fiscal RelativeYearPos] - - - Regnskap StartPåMåned - table [Date] column [Fiscal StartOfMonth] - - - Regnskap SluttPåMåned - table [Date] column [Fiscal EndOfMonth] - - - Regnskap StartPåKvartal - table [Date] column [Fiscal StartOfQuarter] - - - Regnskap SluttPåKvartal - table [Date] column [Fiscal EndOfQuarter] - - - Regnskap StartPåÅr - table [Date] column [Fiscal StartOfYear] - - - Regnskap SluttPåÅr - table [Date] column [Fiscal EndOfYear] - - - Regnskap MånedDager - table [Date] column [Fiscal MonthDays] - - - Regnskap KvartalDager - table [Date] column [Fiscal QuarterDays] - - - Regnskap ÅrDager - table [Date] column [Fiscal YearDays] - - - Regnskap DagIMånedNummer - table [Date] column [Fiscal DayOfMonthNumber] - - - Regnskap DagIKvartalNummer - table [Date] column [Fiscal DayOfQuarterNumber] - - - Regnskap DagIÅretNummer - table [Date] column [Fiscal DayOfYearNumber] - - - Regnskap DatoForrigeUke - table [Date] column [Fiscal DatePreviousWeek] - - - Regnskap DatoForrigeMåned - table [Date] column [Fiscal DatePreviousMonth] - - - Regnskap DatoForrigeKvartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Regnskap DatoForrigeÅr - table [Date] column [Fiscal DatePreviousYear] - - - Regnskapsuke år - table [Date] column [FW Year] - - - Regnskapsuke kvartal - table [Date] column [FW Quarter] - - - Regnskapsuke Kvartal År - table [Date] column [FW Quarter Year] - - - Regnskapsuke måned - table [Date] column [FW Month] - - - Regnskapsuke Måned År - table [Date] column [FW Month Year] - - - Regnskapsuke Uke - table [Date] column [FW Week] - - - Regnskapsukeperiode - table [Date] column [FW Period] - - - Regnskapsuke Uke År - table [Date] column [FW Week Year] - - - Regnskapsuke StartPåUke - table [Date] column [FW StartOfWeek] - - - Regnskapsuke SluttPåUke - table [Date] column [FW EndOfWeek] - - - Regnskapsuke RelativUkePos - table [Date] column [FW RelativeWeekPos] - - - Regnskapsuke RelativMånedPos - table [Date] column [FW RelativeMonthPos] - - - Regnskapsuke RelativtKvartalPos - table [Date] column [FW RelativeQuarterPos] - - - Regnskapsuke RelativtÅrPos - table [Date] column [FW RelativeYearPos] - - - Regnskapsuke StartPåMåned - table [Date] column [FW StartOfMonth] - - - Regnskapsuke SluttPåMåned - table [Date] column [FW EndOfMonth] - - - Regnskapsuke StartPåKvartal - table [Date] column [FW StartOfQuarter] - - - Regnskapsuke SluttPåKvartal - table [Date] column [FW EndOfQuarter] - - - Regnskapsuke StartPåÅr - table [Date] column [FW StartOfYear] - - - Regnskapsuke SluttPåÅr - table [Date] column [FW EndOfYear] - - - Regnskapsuke MånedDager - table [Date] column [FW MonthDays] - - - Regnskapsuke KvartalDager - table [Date] column [FW QuarterDays] - - - Regnskapsuke ÅrDager - table [Date] column [FW YearDays] - - - Regnskapsuke DagIMånedNummer - table [Date] column [FW DayOfMonthNumber] - - - Regnskapsuke DagIKvartalNummer - table [Date] column [FW DayOfQuarterNumber] - - - Regnskapsuke DagIÅretNummer - table [Date] column [FW DayOfYearNumber] - - - Regnskapsuke DatoForrigeUke - table [Date] column [FW DatePreviousWeek] - - - Regnskapsuke DatoForrigeMåned - table [Date] column [FW DatePreviousMonth] - - - Regnskapsuke DatoForrigeKvartal - table [Date] column [FW DatePreviousQuarter] - - - Regnskapsuke DatoForrigeÅr - table [Date] column [FW DatePreviousYear] - - - Relativ dag - table [Date] column [Relative Day] - - - Antall dager - table [Date] measure [No. of Days] - - - Virkedager - table [Date] measure [Working Days] - - - Fra/til - table [Date] measure [Ranged] - - - Regnskap år-kvartal-måned-uke - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Regnskapsår - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Regnskap Kvartal År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Regnskap Måned År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Regnskap Uke År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender år-kvartal-måned-uke - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalenderår - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kvartal År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Uke År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - Regnskapsuke år-kvartal-måned-uke - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - Regnskapsuke år - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - Regnskapsuke Kvartal År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - Regnskapsuke Måned År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - Regnskapsuke Uke År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Regnskap år-måned - table [Date] hierarchy [Fiscal Year-Month] - - - Regnskapsår - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Regnskap Måned År - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Regnskap år-måned-uke - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Regnskapsår - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Regnskap Måned År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Regnskap Uke År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender år-måned - table [Date] hierarchy [Calendar Year-Month] - - - Kalenderår - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender år-måned-uke - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalenderår - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Måned År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Uke År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - Regnskapsuke år-måned-uke - table [Date] hierarchy [FW Year-Month-Week] - - - Regnskapsuke år - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - Regnskapsuke Måned År - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - Regnskapsuke Uke År - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - Regnskapsuke år-kvartal-uke - table [Date] hierarchy [FW Year-Quarter-Week] - - - Regnskapsuke år - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - Regnskapsuke Kvartal År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - Regnskapsuke Uke År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - Regnskapsuke år-uke - table [Date] hierarchy [FW Year-Week] - - - Regnskapsuke år - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - Regnskapsuke Uke År - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Min rapporttittel - table [Localized Labels] measure [My Report Title] - - - Min knappetittel - table [Localized Labels] measure [My Button Caption] - - - Min visuelle tittel - table [Localized Labels] measure [My Visual Title] - - - Inaktive ansatte - table [Localized Labels] measure [Inactive Employees] - - - Oppsagte ansatte - table [Localized Labels] measure [Terminated Employees] - - - Ansatte i fagforening - table [Localized Labels] measure [Employees in Unions] - - - Samfunnsanalyse - table [Localized Labels] measure [Social Analysis] - - - Kjønnsdistribusjon - table [Localized Labels] measure [Gender Distribution] - - - Aldersfordeling - table [Localized Labels] measure [Age Distribution] - - - Ansattes kvalifikasjoner - table [Localized Labels] measure [Employees Qualifications] - - - Realiserte utslipp kontra mål - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e-utslipp etter område - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gassutslipp etter kategori - table [Localized Labels] measure [Gas Emissions by Category] - - - Realiserte utslipp kontra grunnlinje - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e-utslipp kontra grunnlinje - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e-utslipp etter konto - table [Localized Labels] measure [CO2e Emissions by Account] - - - Vann- og avfallsanalyse - table [Localized Labels] measure [Water and Waste Analysis] - - - Vann etter anleggslokasjon - table [Localized Labels] measure [Water by Facility Location] - - - Vann etter anleggskapasitet - table [Localized Labels] measure [Water by Facility Capacity] - - - Vann og avfall etter type - table [Localized Labels] measure [Water and Waste by Type] - - - Vann- og avfallsintensitet etter type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Vann- og avfallsintensitet etter anlegg - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Utslipp etter kategori og område - table [Localized Labels] measure [Emissions by Category and Scope] - - - Utslipp etter kategori - table [Localized Labels] measure [Emissions by Category] - - - Utslipp etter område - table [Localized Labels] measure [Emissions by Scope] - - - CO2e-analyse - table [Localized Labels] measure [CO2e Analysis] - - - CO2e-utslipp etter kategori - table [Localized Labels] measure [CO2e Emissions by Category] - - - Karbonkredit etter måned - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e-ekvivalentutslipp etter måned og inntekt - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Gjennomgang av ansattposter - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Ansattposter - table [Localized Labels] measure [Employee Ledger Entries] - - - Bærekraftposter - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Gjennomgang av bærekraftposter - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Gjennomgang av ansattposter - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Oversikt over bærekraft - table [Localized Labels] measure [Sustainability Overview] - - - Bærekraftsanalyse - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e-utslipp etter måned - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analyse av område 1 og 2 etter kategorier per år - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e-utslipp etter avdeling - table [Localized Labels] measure [CO2e Emissions by Department] - - - Reisen til nettonull karbon - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e-utslipp etter forretningsgruppe - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Bruk av fornybar energi - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e-utslipp over tid - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Smart gjennomgang av CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e-utslipp etter global dimensjon én - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e-utslipp etter global dimensjon to - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e-ekvivalentutslipp etter måned - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Selskapsnavn - table [Localized Labels] measure [Company Name] - - - Sist oppdatert - table [Localized Labels] measure [Last Refreshed] - - - Frigitte ansatte - table [Localized Labels] measure [Released Employees] - - - CO2e-nedbrytingstre - table [Localized Labels] measure [CO2e Decomposition Tree] - - - CO2e-nøkkelpåvirkninger - table [Localized Labels] measure [CO2e Key Influences] - - - Vann og avfall, årlig og daglig endring - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Bærekraftposter - table [table.Name] - - - Oppføringsnr. - table [Sustainability Ledger Entries] column [Entry No.] - - - Beskrivelse - table [Sustainability Ledger Entries] column [Description] - - - Vanntype - table [Sustainability Ledger Entries] column [Water Type] - - - Type vann-/avfallsintensitet - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Dokumenttype - table [Sustainability Ledger Entries] column [Document Type] - - - CO2-utslipp - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4-utslipp - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Saldo for CO2-utslipp - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Saldo for CO2-utslipp per dato - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O-utslipp - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e-utslipp - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Saldo for CH4-utslipp per dato - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Saldo for CH4-utslipp - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Vannintensitet - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Avfallsintensitet - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Utsluppet i vann - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Saldo for CO2e-utslipp - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Saldo for CO2e-utslipp per dato - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Saldo per dato for utsluppet i vann - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Saldo for utsluppet i vann - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Saldo for N2O-utslipp - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Saldo for N2O-utslipp per dato - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Avfallsintensitetssaldo per dato - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Avfallsintensitetssaldo - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Vannintensitetssaldo - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Saldo per dato for vannintensitet - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2-grunnlinje - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4-grunnlinje - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 kontra grunnlinje (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O-grunnlinje - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O kontra grunnlinje (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 kontra grunnlinje (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Vanngrunnlinje - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Avfallsgrunnlinje - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Vann kontra grunnlinje (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Avfall kontra grunnlinje (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e-grunnlinje - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e kontra grunnlinje (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Kjøpte karbonkreditter - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Grunnlinje for utsluppet i vann - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Utsluppet i vann kontra grunnlinje (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e-utslipp (ekskl. krediter) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Vannintensitet PÅ - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Vannintensitet år for år - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Avfallsintensitet i fjor - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Avfallsintensitet år for år - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Utsluppet i vann PÅ - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Utsluppet i vann ÅFÅ - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Utsluppet i vann PD - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Avfallsintensitet i går - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Vannintensitet PD - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Vannintensitet dag for dag - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Avfallsintensitet dag for dag - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Utsluppet i vann DFD - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Grunnkobling - table [Sustainability Ledger Entries] measure [Base Link] - - - Kobling for bærekraftposter - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Vann tilgjengelig - table [Sustainability Ledger Entries] measure [Water Available] - - - Bærekraftskontoer - table [table.Name] - - - Bærekraftskontonr. - table [Sustainability Accounts] column [Sustainability Account No.] - - - Navn på bærekraftskonto - table [Sustainability Accounts] column [Sustainability Account Name] - - - Land/område - table [table.Name] - - - Kode for land/område - table [Country/Region] column [Country Region Code] - - - Navn på land/område - table [Country/Region] column [Country Region Name] - - - Ansvarssenter - table [table.Name] - - - Ansvarssenterkode - table [Responsibility Centre] column [Responsibility Centre Code] - - - Navn på ansvarssenter - table [Responsibility Centre] column [Responsibility Centre Name] - - - Anleggskapasitet - table [Responsibility Centre] measure [Facility Capacity] - - - Bærekraftsmål - table [table.Name] - - - Målstyringsnr. - table [Sustainability Goals] column [Score Card No.] - - - Nr. - table [Sustainability Goals] column [No.] - - - Navn - table [Sustainability Goals] column [Name] - - - Eier - table [Sustainability Goals] column [Owner] - - - Målverdi for CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Målverdi for CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Målverdi for N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Målverdi for vannintensitet - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Målverdi for avfallsintensitet - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Hovedmål - table [Sustainability Goals] column [Main Goal] - - - Startdato - table [Sustainability Goals] column [Start Date] - - - Sluttdato - table [Sustainability Goals] column [End Date] - - - Startdato for grunnlinje - table [Sustainability Goals] column [Baseline Start Date] - - - Sluttdato for grunnlinje - table [Sustainability Goals] column [Baseline End Date] - - - CO2-mål - table [Sustainability Goals] measure [CO2 Target] - - - Realisert CO2 (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4-mål - table [Sustainability Goals] measure [CH4 Target] - - - N2O-mål - table [Sustainability Goals] measure [N2O Target] - - - Realisert CH4 (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - Realisert N2O (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Vannmål - table [Sustainability Goals] measure [Water Target] - - - Avfallsmål - table [Sustainability Goals] measure [Waste Target] - - - Realisert vann (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Realisert avfall (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - Realisert CO2e (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Nåværende verdi for CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Nåværende verdi for CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Nåværende verdi for N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Nåværende verdi for CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Nåværende verdi for vann - table [Sustainability Goals] measure [Water Current Value] - - - Nåværende verdi for avfall - table [Sustainability Goals] measure [Waste Current Value] - - - Ansattposter - table [table.Name] - - - Oppføringsnr. - table [Employee Ledger Entries] column [Entry No.] - - - Dokumenttype - table [Employee Ledger Entries] column [Document Type] - - - Dokumentnr. - table [Employee Ledger Entries] column [Document No.] - - - Beskrivelse - table [Employee Ledger Entries] column [Description] - - - Ansattbeløp - table [Employee Ledger Entries] measure [Employee Amount] - - - Kobling for ansattposter - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Ansattes kvalifikasjoner - table [table.Name] - - - Koder for ansattes kvalifikasjoner - table [Employee Qualifications] column [Employee Qualification Codes] - - - Ansattes kvalifikasjoner - table [Employee Qualifications] measure [Employee Qualifications] - - - Utslippsavgifter - table [table.Name] - - - Utslippstype - table [Emission Fees] column [Emission Type] - - - Områdetype - table [Emission Fees] column [Scope Type] - - - Startdato - table [Emission Fees] column [Starting Date] - - - Sluttdato - table [Emission Fees] column [Ending Date] - - - Kode for land/område - table [Emission Fees] column [Country Region Code] - - - Ansvarssenter - table [Emission Fees] column [Responsibility Centre] - - - Karbonavgift - table [Emission Fees] column [Carbon Fee] - - - Karbonekvivalentfaktor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e-mål - table [Emission Fees] measure [CO2e Target] - - - CO2-karbonekvivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4-karbonekvivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O-karbonekvivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Ansattes fravær - table [table.Name] - - - Oppføringsnr. - table [Employee Absences] column [Entry No] - - - Fra dato - table [Employee Absences] column [From Date] - - - Til dato - table [Employee Absences] column [To Date] - - - Fraværsårsak - table [Employee Absences] column [Cause of Absence] - - - Beskrivelse - table [Employee Absences] column [Description] - - - Ansattes fravær - table [Employee Absences] measure [Employee Absences] - - - Fraværstimer (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Underkontokategorier for bærekraft - table [table.Name] - - - Underkategorikode - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Beskrivelse av underkategori - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Fornybar energi - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Ansatte - table [table.Name] - - - Ansattnr. - table [Employees] column [Employee No.] - - - Ansattes fulle navn - table [Employees] column [Employee Full Name] - - - Ansattes fornavn - table [Employees] column [Employee First Name] - - - Ansattes etternavn - table [Employees] column [Employee Last Name] - - - Ansattes kjønn - table [Employees] column [Employee Gender] - - - Ansattes fagforeningskode - table [Employees] column [Employee Union Code] - - - Ansattes status - table [Employees] column [Employee Status] - - - Ansattes inaktivitetsårsak - table [Employees] column [Employee Cause of Inactivity] - - - Ansattes inaktivitetsdato - table [Employees] column [Employee Inactive Date] - - - Ansattes sluttårsaker - table [Employees] column [Employee Grounds for Termination] - - - Ansattes fødselsdato - table [Employees] column [Employee Date of Birth] - - - Alder - table [Employees] column [Age] - - - Aldersfordeling - table [Employees] column [Age Distribution] - - - Antall ansatte - table [Employees] measure [No. of Employees] - - - Antall mannlige ansatte - table [Employees] measure [No. of Male Employees] - - - Antall kvinnelige ansatte - table [Employees] measure [No. of Female Employees] - - - Antall andre ansatte - table [Employees] measure [No. of Other Employees] - - - Mannlige ansatte (%) - table [Employees] measure [Male Employees (%)] - - - Kvinnelige ansatte (%) - table [Employees] measure [Female Employees (%)] - - - Andre ansatte (%) - table [Employees] measure [Other Employees (%)] - - - Aktive ansatte - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nl-BE.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nl-BE.resx deleted file mode 100644 index 32e5a9cce5..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nl-BE.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GB-rekeningcategorie - table [table.Name] - - - Omschrijving van grootboekrekeningcategorie - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Code categorie duurzaamheidsrekening - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Uitstootbereik categorie duurzaamheidsrekening - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimensiecombinaties - table [table.Name] - - - Globale dimensie 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Globale dimensie 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcutdimensie 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcutdimensie 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcutdimensie 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcutdimensie 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcutdimensie 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcutdimensie 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - AFDELING - table [Dimension Sets] column [DEPARTMENT] - - - Afdelingsnaam - table [Dimension Sets] column [Department Name] - - - KLANTGROEP - table [Dimension Sets] column [CUSTOMERGROUP] - - - Naam van klantengroep - table [Dimension Sets] column [Customer Group Name] - - - DISTRICT - table [Dimension Sets] column [AREA] - - - Gebiedsnaam - table [Dimension Sets] column [Area Name] - - - BEDRIJFSGROEP - table [Dimension Sets] column [BUSINESSGROUP] - - - Naam van bedrijfsgroep - table [Dimension Sets] column [Business Group Name] - - - VERKOOPCAMPAGNE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Naam verkoopcampagne - table [Dimension Sets] column [Sales campaign Name] - - - VERKOPER - table [Dimension Sets] column [SALESPERSON] - - - Verkopersnaam - table [Dimension Sets] column [Salesperson Name] - - - Datum - table [table.Name] - - - Week Dag - table [Date] column [Week Day] - - - Dagsoort - table [Date] column [Day Type] - - - Kalender Jaar - table [Date] column [Calendar Year] - - - Kalender Kwartaal - table [Date] column [Calendar Quarter] - - - Kalender Kwartaal Jaar - table [Date] column [Calendar Quarter Year] - - - Kalender Maand - table [Date] column [Calendar Month] - - - Kalender Maand Jaar - table [Date] column [Calendar Month Year] - - - Kalender Week - table [Date] column [Calendar Week] - - - Kalender Week Jaar - table [Date] column [Calendar Week Year] - - - Kalender RelatieveWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelatieveMaandPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelatieveKwartaalPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelatieveJaarPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginVanMaand - table [Date] column [Calendar StartOfMonth] - - - Kalender EindVanMaand - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginVanKwartaal - table [Date] column [Calendar StartOfQuarter] - - - Kalender EindVanKwartaal - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginVanJaar - table [Date] column [Calendar StartOfYear] - - - Kalender EindVanJaar - table [Date] column [Calendar EndOfYear] - - - Kalender MaandDagen - table [Date] column [Calendar MonthDays] - - - Kalender KwartaalDagen - table [Date] column [Calendar QuarterDays] - - - Kalender JaarDagen - table [Date] column [Calendar YearDays] - - - Kalender DagVanMaandNummer - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender DagVanKwartaalNummer - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender DagVanJaarNummer - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWeek - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigeMaand - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigKwartaal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigJaar - table [Date] column [Calendar DatePreviousYear] - - - Fiscaal Jaar - table [Date] column [Fiscal Year] - - - Fiscaal Kwartaal - table [Date] column [Fiscal Quarter] - - - Fiscaal Kwartaal Jaar - table [Date] column [Fiscal Quarter Year] - - - Fiscaal Maand - table [Date] column [Fiscal Month] - - - Fiscaal Maand Jaar - table [Date] column [Fiscal Month Year] - - - Fiscaal Week - table [Date] column [Fiscal Week] - - - Fiscaal Week Jaar - table [Date] column [Fiscal Week Year] - - - Fiscaal RelatieveWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscaal RelatieveMaandPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscaal RelatieveKwartaalPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscaal RelatieveJaarPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscaal BeginVanMaand - table [Date] column [Fiscal StartOfMonth] - - - Fiscaal EindVanMaand - table [Date] column [Fiscal EndOfMonth] - - - Fiscaal BeginVanKwartaal - table [Date] column [Fiscal StartOfQuarter] - - - Fiscaal EindVanKwartaal - table [Date] column [Fiscal EndOfQuarter] - - - Fiscaal BeginVanJaar - table [Date] column [Fiscal StartOfYear] - - - Fiscaal EindVanJaar - table [Date] column [Fiscal EndOfYear] - - - Fiscaal MaandDagen - table [Date] column [Fiscal MonthDays] - - - Fiscaal KwartaalDagen - table [Date] column [Fiscal QuarterDays] - - - Fiscaal JaarDagen - table [Date] column [Fiscal YearDays] - - - Fiscaal DagVanMaandNummer - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscaal DagVanKwartaalNummer - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscaal DagVanJaarNummer - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscaal DatumVorigeWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscaal DatumVorigeMaand - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscaal DatumVorigKwartaal - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscaal DatumVorigJaar - table [Date] column [Fiscal DatePreviousYear] - - - FW Jaar - table [Date] column [FW Year] - - - FW Kwartaal - table [Date] column [FW Quarter] - - - FW Kwartaal Jaar - table [Date] column [FW Quarter Year] - - - FW Maand - table [Date] column [FW Month] - - - FW Maand Jaar - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Periode - table [Date] column [FW Period] - - - FW Week Jaar - table [Date] column [FW Week Year] - - - FW BeginVanWeek - table [Date] column [FW StartOfWeek] - - - FW EindVanWeek - table [Date] column [FW EndOfWeek] - - - FW RelatieveWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelatieveMaandPos - table [Date] column [FW RelativeMonthPos] - - - FW RelatieveKwartaalPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelatieveJaarPos - table [Date] column [FW RelativeYearPos] - - - FW BeginVanMaand - table [Date] column [FW StartOfMonth] - - - FW EindVanMaand - table [Date] column [FW EndOfMonth] - - - FW BeginVanKwartaal - table [Date] column [FW StartOfQuarter] - - - FW EindVanKwartaal - table [Date] column [FW EndOfQuarter] - - - FW BeginVanJaar - table [Date] column [FW StartOfYear] - - - FW EindVanJaar - table [Date] column [FW EndOfYear] - - - FW MaandDagen - table [Date] column [FW MonthDays] - - - FW KwartaalDagen - table [Date] column [FW QuarterDays] - - - FW JaarDagen - table [Date] column [FW YearDays] - - - FW DagVanMaandNummer - table [Date] column [FW DayOfMonthNumber] - - - FW DagVanKwartaalNummer - table [Date] column [FW DayOfQuarterNumber] - - - FW DagVanJaarNummer - table [Date] column [FW DayOfYearNumber] - - - FW DatumVorigeWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatumVorigeMaand - table [Date] column [FW DatePreviousMonth] - - - FW DatumVorigKwartaal - table [Date] column [FW DatePreviousQuarter] - - - FW DatumVorigJaar - table [Date] column [FW DatePreviousYear] - - - Relatieve Dag - table [Date] column [Relative Day] - - - Aantal dagen - table [Date] measure [No. of Days] - - - Werkdagen - table [Date] measure [Working Days] - - - Bereik - table [Date] measure [Ranged] - - - Fiscaal Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscaal Kwartaal Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscaal Week Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kwartaal Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Week Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Kwartaal Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Maand Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscaal Jaar-Maand - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscaal Jaar-Maand-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscaal Week Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jaar-Maand - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jaar-Maand-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Week Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Jaar-Maand-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Maand Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Jaar-Kwartaal-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Kwartaal Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Jaar-Week - table [Date] hierarchy [FW Year-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Mijn rapporttitel - table [Localized Labels] measure [My Report Title] - - - Bijschrift van mijn knop - table [Localized Labels] measure [My Button Caption] - - - Mijn visuele titel - table [Localized Labels] measure [My Visual Title] - - - Inactieve werknemers - table [Localized Labels] measure [Inactive Employees] - - - Ontslagen werknemers - table [Localized Labels] measure [Terminated Employees] - - - Werknemers in vakbonden - table [Localized Labels] measure [Employees in Unions] - - - Sociale analyse - table [Localized Labels] measure [Social Analysis] - - - Geslachtsdistributie - table [Localized Labels] measure [Gender Distribution] - - - Leeftijdsdistributie - table [Localized Labels] measure [Age Distribution] - - - Werknemerskwalificaties - table [Localized Labels] measure [Employees Qualifications] - - - Gerealiseerde uitstoot versus doel - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e-uitstoot per bereik - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gasuitstoot per categorie - table [Localized Labels] measure [Gas Emissions by Category] - - - Gerealiseerde uitstoot versus basislijn - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e-uitstoot versus basislijn - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e-uitstoot per rekening - table [Localized Labels] measure [CO2e Emissions by Account] - - - Water- en afvalanalyse - table [Localized Labels] measure [Water and Waste Analysis] - - - Water per faciliteitslocatie - table [Localized Labels] measure [Water by Facility Location] - - - Water per faciliteitscapaciteit - table [Localized Labels] measure [Water by Facility Capacity] - - - Water en afval per type - table [Localized Labels] measure [Water and Waste by Type] - - - Water- en afvalintensiteit per type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Water- en afvalintensiteit per faciliteit - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Uitstoot per categorie en bereik - table [Localized Labels] measure [Emissions by Category and Scope] - - - Uitstoot per categorie - table [Localized Labels] measure [Emissions by Category] - - - Uitstoot per bereik - table [Localized Labels] measure [Emissions by Scope] - - - CO2e-analyse - table [Localized Labels] measure [CO2e Analysis] - - - CO2e-uitstoot per categorie - table [Localized Labels] measure [CO2e Emissions by Category] - - - Koolstofkrediet per maand - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e-equivalente uitstoot per maand en opbrengst - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Detailanalyse van werknemersposten - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Werknemersposten - table [Localized Labels] measure [Employee Ledger Entries] - - - Duurzaamheidsposten - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Detailanalyse duurzaamheidsposten - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Detailanalyse werknemersposten - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Duurzaamheidsoverzicht - table [Localized Labels] measure [Sustainability Overview] - - - Duurzaamheidsanalyses - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e-uitstoot per maand - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analyse per categorie per jaar bereik 1 en 2 - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e-uitstoot per afdeling - table [Localized Labels] measure [CO2e Emissions by Department] - - - Reis naar Netto-Nul-Koolstof - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e-uitstoot per bedrijfsgroep - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Gebruik hernieuwbare energie - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e-uitstoot in loop van tijd - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Slimme beoordeling CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e-uitstoot per globale dimensie één - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e-uitstoot per globale dimensie twee - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e-equivalente uitstoot per maand - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Bedrijfsnaam - table [Localized Labels] measure [Company Name] - - - Laatst vernieuwd - table [Localized Labels] measure [Last Refreshed] - - - Vertrokken werknemers - table [Localized Labels] measure [Released Employees] - - - Ontledingsstructuur CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Belangrijke invloeden CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Jaarlijkse en dagelijkse wijziging van water en afval - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Duurzaamheidsposten - table [table.Name] - - - Postnr. - table [Sustainability Ledger Entries] column [Entry No.] - - - Omschrijving - table [Sustainability Ledger Entries] column [Description] - - - Type water - table [Sustainability Ledger Entries] column [Water Type] - - - Type intensiteit water/afval - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Documenttype - table [Sustainability Ledger Entries] column [Document Type] - - - CO2-uitstoot - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4-uitstoot - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Saldo CO2-uitstoot - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Saldo op datum CO2-uitstoot - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O-uitstoot - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e-uitstoot - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Saldo op datum CH4-uitstoot - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Saldo CH4-uitstoot - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Waterintensiteit - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Afvalintensiteit - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Saldo CO2e-uitstoot - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Saldo op datum CO2e-uitstoot - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Saldo op datum geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Saldo geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Saldo N2O-uitstoot - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Saldo op datum N2O-uitstoot - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Saldo afvalintensiteit op datum - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Saldo afvalintensiteit - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Saldo waterintensiteit - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Saldo op datum waterintensiteit - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2-basislijn - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4-basislijn - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 versus basislijn (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O-basislijn - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O versus basislijn (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 versus basislijn (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Basislijn water - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Basislijn afval - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Water versus basislijn (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Afval versus basislijn (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e-basislijn - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e versus basislijn (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Ingekochte koolstofkredieten - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Basislijn geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Geloosd in water versus basislijn (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e-uitstoot (excl. kredieten) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Waterintensiteit VJ - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Waterintensiteit JTJ - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Afvalintensiteit VJ - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Afvalintensiteit JTJ - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Geloosd in water VJ - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Geloosd in water JTJ - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - PG geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Afvalintensiteit VD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - PG waterintensiteit - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Waterintensiteit dag-voor-dag - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Afvalintensiteit dag-voor-dag - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Geloosd in water dag-voor-dag - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Basiskoppeling - table [Sustainability Ledger Entries] measure [Base Link] - - - Koppeling Duurzaamheidsposten - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Water beschikbaar - table [Sustainability Ledger Entries] measure [Water Available] - - - Duurzaamheidsrekeningen - table [table.Name] - - - Nr. van duurzaamheidsrekening - table [Sustainability Accounts] column [Sustainability Account No.] - - - Naam van duurzaamheidsrekening - table [Sustainability Accounts] column [Sustainability Account Name] - - - Land/regio - table [table.Name] - - - Land/regio-code - table [Country/Region] column [Country Region Code] - - - Land/regio-naam - table [Country/Region] column [Country Region Name] - - - Divisie - table [table.Name] - - - Divisiecode - table [Responsibility Centre] column [Responsibility Centre Code] - - - Divisienaam - table [Responsibility Centre] column [Responsibility Centre Name] - - - Faciliteitscapaciteit - table [Responsibility Centre] measure [Facility Capacity] - - - Duurzaamheidsdoelen - table [table.Name] - - - Scorekaartnr. - table [Sustainability Goals] column [Score Card No.] - - - Nr. - table [Sustainability Goals] column [No.] - - - Naam - table [Sustainability Goals] column [Name] - - - Eigenaar - table [Sustainability Goals] column [Owner] - - - Doelwaarde voor CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Doelwaarde voor CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Doelwaarde voor N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Doelwaarde voor waterintensiteit - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Doelwaarde voor afvalintensiteit - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Hoofddoel - table [Sustainability Goals] column [Main Goal] - - - Begindatum - table [Sustainability Goals] column [Start Date] - - - Einddatum - table [Sustainability Goals] column [End Date] - - - Begindatum basislijn - table [Sustainability Goals] column [Baseline Start Date] - - - Einddatum basislijn - table [Sustainability Goals] column [Baseline End Date] - - - CO2-doel - table [Sustainability Goals] measure [CO2 Target] - - - Gerealiseerde CO2 (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4-doel - table [Sustainability Goals] measure [CH4 Target] - - - N2O-doel - table [Sustainability Goals] measure [N2O Target] - - - Gerealiseerde CH4 (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - Gerealiseerde N2O (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Waterdoel - table [Sustainability Goals] measure [Water Target] - - - Afvaldoel - table [Sustainability Goals] measure [Waste Target] - - - Gerealiseerd water (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Gerealiseerd afval (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - Gerealiseerde CO2e (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Huidige CO2-waarde - table [Sustainability Goals] measure [CO2 Current Value] - - - Huidige CH4-waarde - table [Sustainability Goals] measure [CH4 Current Value] - - - Huidige N2O-waarde - table [Sustainability Goals] measure [N2O Current Value] - - - Huidige CO2e-waarde - table [Sustainability Goals] measure [CO2e Current Value] - - - Huidige waterwaarde - table [Sustainability Goals] measure [Water Current Value] - - - Huidige afvalwaarde - table [Sustainability Goals] measure [Waste Current Value] - - - Werknemersposten - table [table.Name] - - - Postnr. - table [Employee Ledger Entries] column [Entry No.] - - - Documenttype - table [Employee Ledger Entries] column [Document Type] - - - Documentnr. - table [Employee Ledger Entries] column [Document No.] - - - Omschrijving - table [Employee Ledger Entries] column [Description] - - - Werknemersbedrag - table [Employee Ledger Entries] measure [Employee Amount] - - - Koppeling Werknemersposten - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Werknemerskwalificaties - table [table.Name] - - - Werknemerskwalificatiecodes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Werknemerskwalificaties - table [Employee Qualifications] measure [Employee Qualifications] - - - Uitstootkosten - table [table.Name] - - - Type uitstoot - table [Emission Fees] column [Emission Type] - - - Type bereik - table [Emission Fees] column [Scope Type] - - - Begindatum - table [Emission Fees] column [Starting Date] - - - Einddatum - table [Emission Fees] column [Ending Date] - - - Land/regio-code - table [Emission Fees] column [Country Region Code] - - - Divisie - table [Emission Fees] column [Responsibility Centre] - - - CO2-tarief - table [Emission Fees] column [Carbon Fee] - - - Koolstofequivalente factor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e-doel - table [Emission Fees] measure [CO2e Target] - - - CO2-koolstofequivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4-koolstofequivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O-koolstofequivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Werknemersafwezigheid - table [table.Name] - - - Postnr. - table [Employee Absences] column [Entry No] - - - Begindatum - table [Employee Absences] column [From Date] - - - Einddatum - table [Employee Absences] column [To Date] - - - Afwezigheidsreden - table [Employee Absences] column [Cause of Absence] - - - Omschrijving - table [Employee Absences] column [Description] - - - Werknemersafwezigheid - table [Employee Absences] measure [Employee Absences] - - - Afwezigheidsuren (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Categorieën duurzaamheidssubrekeningen - table [table.Name] - - - Subcategoriecode - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Omschrijving van subcategorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Hernieuwbare energie - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Werknemers - table [table.Name] - - - Werknemersnr. - table [Employees] column [Employee No.] - - - Volledige naam werknemer - table [Employees] column [Employee Full Name] - - - Voornaam werknemer - table [Employees] column [Employee First Name] - - - Achternaam werknemer - table [Employees] column [Employee Last Name] - - - Geslacht werknemer - table [Employees] column [Employee Gender] - - - Vakbondscode werknemer - table [Employees] column [Employee Union Code] - - - Werknemersstatus - table [Employees] column [Employee Status] - - - Reden van inactiviteit werknemer - table [Employees] column [Employee Cause of Inactivity] - - - Werknemer inactief sinds - table [Employees] column [Employee Inactive Date] - - - Ontslagredenen werknemer - table [Employees] column [Employee Grounds for Termination] - - - Geboortedatum werknemer - table [Employees] column [Employee Date of Birth] - - - Leeftijd - table [Employees] column [Age] - - - Leeftijdsdistributie - table [Employees] column [Age Distribution] - - - Aantal werknemers - table [Employees] measure [No. of Employees] - - - Aantal mannelijke werknemers - table [Employees] measure [No. of Male Employees] - - - Aantal vrouwelijke werknemers - table [Employees] measure [No. of Female Employees] - - - Aantal overige werknemers - table [Employees] measure [No. of Other Employees] - - - Mannelijke werknemers (%) - table [Employees] measure [Male Employees (%)] - - - Vrouwelijke werknemers (%) - table [Employees] measure [Female Employees (%)] - - - Overige werknemers (%) - table [Employees] measure [Other Employees (%)] - - - Actieve werknemers - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nl-NL.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nl-NL.resx deleted file mode 100644 index 5dfb8d094a..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.nl-NL.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GB-rekeningcategorie - table [table.Name] - - - Omschrijving van grootboekrekeningcategorie - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Code categorie duurzaamheidsrekening - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Uitstootbereik categorie duurzaamheidsrekening - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimensiesets - table [table.Name] - - - Globale dimensie 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Globale dimensie 2 - table [Dimension Sets] column [Global Dimension 2] - - - Shortcutdimensie 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Shortcutdimensie 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Shortcutdimensie 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Shortcutdimensie 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Shortcutdimensie 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Shortcutdimensie 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - AFDELING - table [Dimension Sets] column [DEPARTMENT] - - - Afdelingsnaam - table [Dimension Sets] column [Department Name] - - - KLANTGROEP - table [Dimension Sets] column [CUSTOMERGROUP] - - - Naam van klantengroep - table [Dimension Sets] column [Customer Group Name] - - - DISTRICT - table [Dimension Sets] column [AREA] - - - Gebiedsnaam - table [Dimension Sets] column [Area Name] - - - BEDRIJFSGROEP - table [Dimension Sets] column [BUSINESSGROUP] - - - Naam van bedrijfsgroep - table [Dimension Sets] column [Business Group Name] - - - VERKOOPCAMPAGNE - table [Dimension Sets] column [SALESCAMPAIGN] - - - Naam verkoopcampagne - table [Dimension Sets] column [Sales campaign Name] - - - VERKOPER - table [Dimension Sets] column [SALESPERSON] - - - Verkopersnaam - table [Dimension Sets] column [Salesperson Name] - - - Datum - table [table.Name] - - - Week Dag - table [Date] column [Week Day] - - - Dagsoort - table [Date] column [Day Type] - - - Kalender Jaar - table [Date] column [Calendar Year] - - - Kalender Kwartaal - table [Date] column [Calendar Quarter] - - - Kalender Kwartaal Jaar - table [Date] column [Calendar Quarter Year] - - - Kalender Maand - table [Date] column [Calendar Month] - - - Kalender Maand Jaar - table [Date] column [Calendar Month Year] - - - Kalender Week - table [Date] column [Calendar Week] - - - Kalender Week Jaar - table [Date] column [Calendar Week Year] - - - Kalender RelatieveWeekPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelatieveMaandPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelatieveKwartaalPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelatieveJaarPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender BeginVanMaand - table [Date] column [Calendar StartOfMonth] - - - Kalender EindVanMaand - table [Date] column [Calendar EndOfMonth] - - - Kalender BeginVanKwartaal - table [Date] column [Calendar StartOfQuarter] - - - Kalender EindVanKwartaal - table [Date] column [Calendar EndOfQuarter] - - - Kalender BeginVanJaar - table [Date] column [Calendar StartOfYear] - - - Kalender EindVanJaar - table [Date] column [Calendar EndOfYear] - - - Kalender MaandDagen - table [Date] column [Calendar MonthDays] - - - Kalender KwartaalDagen - table [Date] column [Calendar QuarterDays] - - - Kalender JaarDagen - table [Date] column [Calendar YearDays] - - - Kalender DagVanMaandNummer - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender DagVanKwartaalNummer - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender DagVanJaarNummer - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumVorigeWeek - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumVorigeMaand - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumVorigKwartaal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumVorigJaar - table [Date] column [Calendar DatePreviousYear] - - - Fiscaal Jaar - table [Date] column [Fiscal Year] - - - Fiscaal Kwartaal - table [Date] column [Fiscal Quarter] - - - Fiscaal Kwartaal Jaar - table [Date] column [Fiscal Quarter Year] - - - Fiscaal Maand - table [Date] column [Fiscal Month] - - - Fiscaal Maand Jaar - table [Date] column [Fiscal Month Year] - - - Fiscaal Week - table [Date] column [Fiscal Week] - - - Fiscaal Week Jaar - table [Date] column [Fiscal Week Year] - - - Fiscaal RelatieveWeekPos - table [Date] column [Fiscal RelativeWeekPos] - - - Fiscaal RelatieveMaandPos - table [Date] column [Fiscal RelativeMonthPos] - - - Fiscaal RelatieveKwartaalPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Fiscaal RelatieveJaarPos - table [Date] column [Fiscal RelativeYearPos] - - - Fiscaal BeginVanMaand - table [Date] column [Fiscal StartOfMonth] - - - Fiscaal EindVanMaand - table [Date] column [Fiscal EndOfMonth] - - - Fiscaal BeginVanKwartaal - table [Date] column [Fiscal StartOfQuarter] - - - Fiscaal EindVanKwartaal - table [Date] column [Fiscal EndOfQuarter] - - - Fiscaal BeginVanJaar - table [Date] column [Fiscal StartOfYear] - - - Fiscaal EindVanJaar - table [Date] column [Fiscal EndOfYear] - - - Fiscaal MaandDagen - table [Date] column [Fiscal MonthDays] - - - Fiscaal KwartaalDagen - table [Date] column [Fiscal QuarterDays] - - - Fiscaal JaarDagen - table [Date] column [Fiscal YearDays] - - - Fiscaal DagVanMaandNummer - table [Date] column [Fiscal DayOfMonthNumber] - - - Fiscaal DagVanKwartaalNummer - table [Date] column [Fiscal DayOfQuarterNumber] - - - Fiscaal DagVanJaarNummer - table [Date] column [Fiscal DayOfYearNumber] - - - Fiscaal DatumVorigeWeek - table [Date] column [Fiscal DatePreviousWeek] - - - Fiscaal DatumVorigeMaand - table [Date] column [Fiscal DatePreviousMonth] - - - Fiscaal DatumVorigKwartaal - table [Date] column [Fiscal DatePreviousQuarter] - - - Fiscaal DatumVorigJaar - table [Date] column [Fiscal DatePreviousYear] - - - FW Jaar - table [Date] column [FW Year] - - - FW Kwartaal - table [Date] column [FW Quarter] - - - FW Kwartaal Jaar - table [Date] column [FW Quarter Year] - - - FW Maand - table [Date] column [FW Month] - - - FW Maand Jaar - table [Date] column [FW Month Year] - - - FW Week - table [Date] column [FW Week] - - - FW Periode - table [Date] column [FW Period] - - - FW Week Jaar - table [Date] column [FW Week Year] - - - FW BeginVanWeek - table [Date] column [FW StartOfWeek] - - - FW EindVanWeek - table [Date] column [FW EndOfWeek] - - - FW RelatieveWeekPos - table [Date] column [FW RelativeWeekPos] - - - FW RelatieveMaandPos - table [Date] column [FW RelativeMonthPos] - - - FW RelatieveKwartaalPos - table [Date] column [FW RelativeQuarterPos] - - - FW RelatieveJaarPos - table [Date] column [FW RelativeYearPos] - - - FW BeginVanMaand - table [Date] column [FW StartOfMonth] - - - FW EindVanMaand - table [Date] column [FW EndOfMonth] - - - FW BeginVanKwartaal - table [Date] column [FW StartOfQuarter] - - - FW EindVanKwartaal - table [Date] column [FW EndOfQuarter] - - - FW BeginVanJaar - table [Date] column [FW StartOfYear] - - - FW EindVanJaar - table [Date] column [FW EndOfYear] - - - FW MaandDagen - table [Date] column [FW MonthDays] - - - FW KwartaalDagen - table [Date] column [FW QuarterDays] - - - FW JaarDagen - table [Date] column [FW YearDays] - - - FW DagVanMaandNummer - table [Date] column [FW DayOfMonthNumber] - - - FW DagVanKwartaalNummer - table [Date] column [FW DayOfQuarterNumber] - - - FW DagVanJaarNummer - table [Date] column [FW DayOfYearNumber] - - - FW DatumVorigeWeek - table [Date] column [FW DatePreviousWeek] - - - FW DatumVorigeMaand - table [Date] column [FW DatePreviousMonth] - - - FW DatumVorigKwartaal - table [Date] column [FW DatePreviousQuarter] - - - FW DatumVorigJaar - table [Date] column [FW DatePreviousYear] - - - Relatieve Dag - table [Date] column [Relative Day] - - - Aantal dagen - table [Date] measure [No. of Days] - - - Werkdagen - table [Date] measure [Working Days] - - - Bereik - table [Date] measure [Ranged] - - - Fiscaal Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Fiscaal Kwartaal Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Fiscaal Week Jaar - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kwartaal Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Week Jaar - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - FW Jaar-Kwartaal-Maand-Week - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - FW Kwartaal Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - FW Maand Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Fiscaal Jaar-Maand - table [Date] hierarchy [Fiscal Year-Month] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Fiscaal Jaar-Maand-Week - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Fiscaal Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Fiscaal Maand Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Fiscaal Week Jaar - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender Jaar-Maand - table [Date] hierarchy [Calendar Year-Month] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender Jaar-Maand-Week - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Maand Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Week Jaar - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - FW Jaar-Maand-Week - table [Date] hierarchy [FW Year-Month-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - FW Maand Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - FW Jaar-Kwartaal-Week - table [Date] hierarchy [FW Year-Quarter-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - FW Kwartaal Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - FW Jaar-Week - table [Date] hierarchy [FW Year-Week] - - - FW Jaar - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - FW Week Jaar - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Mijn rapporttitel - table [Localized Labels] measure [My Report Title] - - - Bijschrift van mijn knop - table [Localized Labels] measure [My Button Caption] - - - Mijn visuele titel - table [Localized Labels] measure [My Visual Title] - - - Inactieve werknemers - table [Localized Labels] measure [Inactive Employees] - - - Ontslagen werknemers - table [Localized Labels] measure [Terminated Employees] - - - Werknemers in vakbonden - table [Localized Labels] measure [Employees in Unions] - - - Sociale analyse - table [Localized Labels] measure [Social Analysis] - - - Geslachtsdistributie - table [Localized Labels] measure [Gender Distribution] - - - Leeftijdsdistributie - table [Localized Labels] measure [Age Distribution] - - - Werknemerskwalificaties - table [Localized Labels] measure [Employees Qualifications] - - - Gerealiseerde uitstoot versus doel - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e-uitstoot per bereik - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gasuitstoot per categorie - table [Localized Labels] measure [Gas Emissions by Category] - - - Gerealiseerde uitstoot versus basislijn - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e-uitstoot versus basislijn - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e-uitstoot per rekening - table [Localized Labels] measure [CO2e Emissions by Account] - - - Water- en afvalanalyse - table [Localized Labels] measure [Water and Waste Analysis] - - - Water per faciliteitslocatie - table [Localized Labels] measure [Water by Facility Location] - - - Water per faciliteitscapaciteit - table [Localized Labels] measure [Water by Facility Capacity] - - - Water en afval per type - table [Localized Labels] measure [Water and Waste by Type] - - - Water- en afvalintensiteit per type - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Water- en afvalintensiteit per faciliteit - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Uitstoot per categorie en bereik - table [Localized Labels] measure [Emissions by Category and Scope] - - - Uitstoot per categorie - table [Localized Labels] measure [Emissions by Category] - - - Uitstoot per bereik - table [Localized Labels] measure [Emissions by Scope] - - - CO2e-analyse - table [Localized Labels] measure [CO2e Analysis] - - - CO2e-uitstoot per categorie - table [Localized Labels] measure [CO2e Emissions by Category] - - - Koolstofkrediet per maand - table [Localized Labels] measure [Carbon Credit by Month] - - - CO2e-equivalente uitstoot per maand en opbrengst - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Detailanalyse van werknemersposten - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Werknemersposten - table [Localized Labels] measure [Employee Ledger Entries] - - - Duurzaamheidsposten - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Detailanalyse duurzaamheidsposten - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Detailanalyse werknemersposten - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Duurzaamheidsoverzicht - table [Localized Labels] measure [Sustainability Overview] - - - Duurzaamheidsanalyses - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e-uitstoot per maand - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analyse per categorie per jaar bereik 1 en 2 - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e-uitstoot per afdeling - table [Localized Labels] measure [CO2e Emissions by Department] - - - Reis naar Netto-Nul-Koolstof - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e-uitstoot per bedrijfsgroep - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Gebruik hernieuwbare energie - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e-uitstoot in loop van tijd - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Slimme beoordeling CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e-uitstoot per globale dimensie één - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e-uitstoot per globale dimensie twee - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - CO2e-equivalente uitstoot per maand - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Bedrijfsnaam - table [Localized Labels] measure [Company Name] - - - Laatst vernieuwd - table [Localized Labels] measure [Last Refreshed] - - - Vertrokken werknemers - table [Localized Labels] measure [Released Employees] - - - Ontledingsstructuur CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Belangrijke invloeden CO2e - table [Localized Labels] measure [CO2e Key Influences] - - - Jaarlijkse en dagelijkse wijziging van water en afval - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Duurzaamheidsposten - table [table.Name] - - - Postnr. - table [Sustainability Ledger Entries] column [Entry No.] - - - Omschrijving - table [Sustainability Ledger Entries] column [Description] - - - Type water - table [Sustainability Ledger Entries] column [Water Type] - - - Type intensiteit water/afval - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Documenttype - table [Sustainability Ledger Entries] column [Document Type] - - - CO2-uitstoot - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4-uitstoot - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Saldo CO2-uitstoot - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Saldo op datum CO2-uitstoot - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O-uitstoot - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e-uitstoot - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Saldo op datum CH4-uitstoot - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Saldo CH4-uitstoot - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Waterintensiteit - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Afvalintensiteit - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Saldo CO2e-uitstoot - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Saldo op datum CO2e-uitstoot - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Saldo op datum geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Saldo geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Saldo N2O-uitstoot - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Saldo op datum N2O-uitstoot - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Saldo afvalintensiteit op datum - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Saldo afvalintensiteit - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Saldo waterintensiteit - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Saldo op datum waterintensiteit - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2-basislijn - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4-basislijn - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 versus basislijn (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O-basislijn - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O versus basislijn (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 versus basislijn (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Basislijn water - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Basislijn afval - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Water versus basislijn (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Afval versus basislijn (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e-basislijn - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e versus basislijn (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Ingekochte koolstofkredieten - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Basislijn geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Geloosd in water versus basislijn (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e-uitstoot (excl. kredieten) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Waterintensiteit VJ - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Waterintensiteit JTJ - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Afvalintensiteit VJ - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Afvalintensiteit JTJ - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Geloosd in water VJ - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Geloosd in water JTJ - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - PG geloosd in water - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Afvalintensiteit VD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - PG waterintensiteit - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Waterintensiteit dag-voor-dag - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Afvalintensiteit dag-voor-dag - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Geloosd in water dag-voor-dag - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Basiskoppeling - table [Sustainability Ledger Entries] measure [Base Link] - - - Koppeling Duurzaamheidsposten - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Water beschikbaar - table [Sustainability Ledger Entries] measure [Water Available] - - - Duurzaamheidsrekeningen - table [table.Name] - - - Nr. van duurzaamheidsrekening - table [Sustainability Accounts] column [Sustainability Account No.] - - - Naam van duurzaamheidsrekening - table [Sustainability Accounts] column [Sustainability Account Name] - - - Land/regio - table [table.Name] - - - Land/regio-code - table [Country/Region] column [Country Region Code] - - - Land/regio-naam - table [Country/Region] column [Country Region Name] - - - Divisie - table [table.Name] - - - Divisiecode - table [Responsibility Centre] column [Responsibility Centre Code] - - - Divisienaam - table [Responsibility Centre] column [Responsibility Centre Name] - - - Faciliteitscapaciteit - table [Responsibility Centre] measure [Facility Capacity] - - - Duurzaamheidsdoelen - table [table.Name] - - - Scorekaartnr. - table [Sustainability Goals] column [Score Card No.] - - - Nr. - table [Sustainability Goals] column [No.] - - - Naam - table [Sustainability Goals] column [Name] - - - Eigenaar - table [Sustainability Goals] column [Owner] - - - Doelwaarde voor CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Doelwaarde voor CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Doelwaarde voor N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Doelwaarde voor waterintensiteit - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Doelwaarde voor afvalintensiteit - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Hoofddoel - table [Sustainability Goals] column [Main Goal] - - - Begindatum - table [Sustainability Goals] column [Start Date] - - - Einddatum - table [Sustainability Goals] column [End Date] - - - Begindatum basislijn - table [Sustainability Goals] column [Baseline Start Date] - - - Einddatum basislijn - table [Sustainability Goals] column [Baseline End Date] - - - CO2-doel - table [Sustainability Goals] measure [CO2 Target] - - - Gerealiseerde CO2 (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4-doel - table [Sustainability Goals] measure [CH4 Target] - - - N2O-doel - table [Sustainability Goals] measure [N2O Target] - - - Gerealiseerde CH4 (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - Gerealiseerde N2O (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Waterdoel - table [Sustainability Goals] measure [Water Target] - - - Afvaldoel - table [Sustainability Goals] measure [Waste Target] - - - Gerealiseerd water (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Gerealiseerd afval (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - Gerealiseerde CO2e (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Huidige CO2-waarde - table [Sustainability Goals] measure [CO2 Current Value] - - - Huidige CH4-waarde - table [Sustainability Goals] measure [CH4 Current Value] - - - Huidige N2O-waarde - table [Sustainability Goals] measure [N2O Current Value] - - - Huidige CO2e-waarde - table [Sustainability Goals] measure [CO2e Current Value] - - - Huidige waterwaarde - table [Sustainability Goals] measure [Water Current Value] - - - Huidige afvalwaarde - table [Sustainability Goals] measure [Waste Current Value] - - - Werknemersposten - table [table.Name] - - - Postnr. - table [Employee Ledger Entries] column [Entry No.] - - - Documenttype - table [Employee Ledger Entries] column [Document Type] - - - Documentnr. - table [Employee Ledger Entries] column [Document No.] - - - Omschrijving - table [Employee Ledger Entries] column [Description] - - - Werknemersbedrag - table [Employee Ledger Entries] measure [Employee Amount] - - - Koppeling Werknemersposten - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Werknemerskwalificaties - table [table.Name] - - - Werknemerskwalificatiecodes - table [Employee Qualifications] column [Employee Qualification Codes] - - - Werknemerskwalificaties - table [Employee Qualifications] measure [Employee Qualifications] - - - Uitstootkosten - table [table.Name] - - - Type uitstoot - table [Emission Fees] column [Emission Type] - - - Type bereik - table [Emission Fees] column [Scope Type] - - - Begindatum - table [Emission Fees] column [Starting Date] - - - Einddatum - table [Emission Fees] column [Ending Date] - - - Land/regio-code - table [Emission Fees] column [Country Region Code] - - - Divisie - table [Emission Fees] column [Responsibility Centre] - - - CO2-tarief - table [Emission Fees] column [Carbon Fee] - - - Koolstofequivalente factor - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e-doel - table [Emission Fees] measure [CO2e Target] - - - CO2-koolstofequivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4-koolstofequivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O-koolstofequivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Werknemersafwezigheid - table [table.Name] - - - Postnr. - table [Employee Absences] column [Entry No] - - - Begindatum - table [Employee Absences] column [From Date] - - - Einddatum - table [Employee Absences] column [To Date] - - - Afwezigheidsreden - table [Employee Absences] column [Cause of Absence] - - - Omschrijving - table [Employee Absences] column [Description] - - - Werknemersafwezigheid - table [Employee Absences] measure [Employee Absences] - - - Afwezigheidsuren (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Categorieën duurzaamheidssubrekeningen - table [table.Name] - - - Subcategoriecode - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Omschrijving van subcategorie - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Hernieuwbare energie - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Werknemers - table [table.Name] - - - Werknemersnr. - table [Employees] column [Employee No.] - - - Volledige naam werknemer - table [Employees] column [Employee Full Name] - - - Voornaam werknemer - table [Employees] column [Employee First Name] - - - Achternaam werknemer - table [Employees] column [Employee Last Name] - - - Geslacht werknemer - table [Employees] column [Employee Gender] - - - Vakbondscode werknemer - table [Employees] column [Employee Union Code] - - - Werknemersstatus - table [Employees] column [Employee Status] - - - Reden van inactiviteit werknemer - table [Employees] column [Employee Cause of Inactivity] - - - Werknemer inactief sinds - table [Employees] column [Employee Inactive Date] - - - Ontslagredenen werknemer - table [Employees] column [Employee Grounds for Termination] - - - Geboortedatum werknemer - table [Employees] column [Employee Date of Birth] - - - Leeftijd - table [Employees] column [Age] - - - Leeftijdsdistributie - table [Employees] column [Age Distribution] - - - Aantal werknemers - table [Employees] measure [No. of Employees] - - - Aantal mannelijke werknemers - table [Employees] measure [No. of Male Employees] - - - Aantal vrouwelijke werknemers - table [Employees] measure [No. of Female Employees] - - - Aantal overige werknemers - table [Employees] measure [No. of Other Employees] - - - Mannelijke werknemers (%) - table [Employees] measure [Male Employees (%)] - - - Vrouwelijke werknemers (%) - table [Employees] measure [Female Employees (%)] - - - Overige werknemers (%) - table [Employees] measure [Other Employees (%)] - - - Actieve werknemers - table [Employees] measure [Active Employees] - - \ No newline at end of file diff --git a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.sv-SE.resx b/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.sv-SE.resx deleted file mode 100644 index 72cf7db63e..0000000000 --- a/src/Apps/W1/PowerBIReports/Power BI Files/Translations/Sustainability app/SustainabilityApp.sv-SE.resx +++ /dev/null @@ -1,1526 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=6.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Redovisningskontokategori - table [table.Name] - - - Beskrivning av redovisningskontokategori - table [Sustainability Account Category] column [Sustainability Account Category Description] - - - Kategorikod för hållbarhetskonto - table [Sustainability Account Category] column [Sustainability Account Category Code] - - - Utsläpps-scope för hållbarhetskontokategori - table [Sustainability Account Category] column [Sustainability Account Category Emission Scope] - - - Dimensionsuppsättningar - table [table.Name] - - - Global dimension 1 - table [Dimension Sets] column [Global Dimension 1] - - - - Global dimension 2 - table [Dimension Sets] column [Global Dimension 2] - - - Genväg dimension 3 - table [Dimension Sets] column [Shortcut Dimension 3] - - - Genväg dimension 4 - table [Dimension Sets] column [Shortcut Dimension 4] - - - Genväg dimension 5 - table [Dimension Sets] column [Shortcut Dimension 5] - - - Genväg dimension 6 - table [Dimension Sets] column [Shortcut Dimension 6] - - - Genväg dimension 7 - table [Dimension Sets] column [Shortcut Dimension 7] - - - Genväg dimension 8 - table [Dimension Sets] column [Shortcut Dimension 8] - - - AVDELNING - table [Dimension Sets] column [DEPARTMENT] - - - Avdelningens namn - table [Dimension Sets] column [Department Name] - - - KUNDGRUPP - table [Dimension Sets] column [CUSTOMERGROUP] - - - Namn på kundgrupp - table [Dimension Sets] column [Customer Group Name] - - - OMRÅDE - table [Dimension Sets] column [AREA] - - - Områdesnamn - table [Dimension Sets] column [Area Name] - - - AFFÄRSGRUPP - table [Dimension Sets] column [BUSINESSGROUP] - - - Namn för affärsgrupp - table [Dimension Sets] column [Business Group Name] - - - FÖRSKAMPANJ - table [Dimension Sets] column [SALESCAMPAIGN] - - - Namn på försäljningskampanj - table [Dimension Sets] column [Sales campaign Name] - - - SÄLJARE - table [Dimension Sets] column [SALESPERSON] - - - Säljarnamn - table [Dimension Sets] column [Salesperson Name] - - - Datum - table [table.Name] - - - Vecka Dag - table [Date] column [Week Day] - - - Typ av dag - table [Date] column [Day Type] - - - Kalender År - table [Date] column [Calendar Year] - - - Kalender Kvartal - table [Date] column [Calendar Quarter] - - - Kalender Kvartal År - table [Date] column [Calendar Quarter Year] - - - Kalender Månad - table [Date] column [Calendar Month] - - - Kalender Månad År - table [Date] column [Calendar Month Year] - - - Kalender Vecka - table [Date] column [Calendar Week] - - - Kalender Vecka År - table [Date] column [Calendar Week Year] - - - Kalender RelativtVeckaPos - table [Date] column [Calendar RelativeWeekPos] - - - Kalender RelativtMånadPos - table [Date] column [Calendar RelativeMonthPos] - - - Kalender RelativtKvartalPos - table [Date] column [Calendar RelativeQuarterPos] - - - Kalender RelativtÅrPos - table [Date] column [Calendar RelativeYearPos] - - - Kalender StartPåMånad - table [Date] column [Calendar StartOfMonth] - - - Kalender SlutPåMånad - table [Date] column [Calendar EndOfMonth] - - - Kalender StartPåKvartal - table [Date] column [Calendar StartOfQuarter] - - - Kalender SlutPåKvartal - table [Date] column [Calendar EndOfQuarter] - - - Kalender StartPåÅr - table [Date] column [Calendar StartOfYear] - - - Kalender Årsslut - table [Date] column [Calendar EndOfYear] - - - Kalender MånadDagar - table [Date] column [Calendar MonthDays] - - - Kalender KvartalDagar - table [Date] column [Calendar QuarterDays] - - - Kalender ÅrDagar - table [Date] column [Calendar YearDays] - - - Kalender DagIMånadNummer - table [Date] column [Calendar DayOfMonthNumber] - - - Kalender DagIKvartalNummer - table [Date] column [Calendar DayOfQuarterNumber] - - - Kalender DagIÅrNummer - table [Date] column [Calendar DayOfYearNumber] - - - Kalender DatumFöregåendeVecka - table [Date] column [Calendar DatePreviousWeek] - - - Kalender DatumFöregåendeMånad - table [Date] column [Calendar DatePreviousMonth] - - - Kalender DatumFöregåendeKvartal - table [Date] column [Calendar DatePreviousQuarter] - - - Kalender DatumFöregåendeÅr - table [Date] column [Calendar DatePreviousYear] - - - Räkenskapsår - table [Date] column [Fiscal Year] - - - Räkenskapskalender Kvartal - table [Date] column [Fiscal Quarter] - - - Räkenskapskalender Kvartal År - table [Date] column [Fiscal Quarter Year] - - - Räkenskapskalender Månad - table [Date] column [Fiscal Month] - - - Räkenskapskalender Månad År - table [Date] column [Fiscal Month Year] - - - Räkenskapskalender Vecka - table [Date] column [Fiscal Week] - - - Räkenskapskalender År Vecka - table [Date] column [Fiscal Week Year] - - - Räkenskapskalender RelativtVeckaPos - table [Date] column [Fiscal RelativeWeekPos] - - - Räkenskapskalender: RelativtMånadPos - table [Date] column [Fiscal RelativeMonthPos] - - - Räkenskapskalender RelativtKvartalPos - table [Date] column [Fiscal RelativeQuarterPos] - - - Räkenskapskalender RelativtÅrPos - table [Date] column [Fiscal RelativeYearPos] - - - Räkenskapskalender StartPåMånad - table [Date] column [Fiscal StartOfMonth] - - - Räkenskapskalender SlutPåMånad - table [Date] column [Fiscal EndOfMonth] - - - Räkenskapskalender StartPåKvartal - table [Date] column [Fiscal StartOfQuarter] - - - Räkenskapskalender SlutPåKvartal - table [Date] column [Fiscal EndOfQuarter] - - - Räkenskapskalender StartPåÅr - table [Date] column [Fiscal StartOfYear] - - - Räkenskapskalender Årsslut - table [Date] column [Fiscal EndOfYear] - - - Räkenskapskalender MånadDagar - table [Date] column [Fiscal MonthDays] - - - Räkenskapskalender KvartalDagar - table [Date] column [Fiscal QuarterDays] - - - Räkenskapskalender ÅrDagar - table [Date] column [Fiscal YearDays] - - - Räkenskapskalender DagIMÅnadNummer - table [Date] column [Fiscal DayOfMonthNumber] - - - Räkenskapskalender DagIKvartalNummer - table [Date] column [Fiscal DayOfQuarterNumber] - - - Räkenskapskalender DagIÅrNummer - table [Date] column [Fiscal DayOfYearNumber] - - - Räkenskapskalender DatumFöregåendeVecka - table [Date] column [Fiscal DatePreviousWeek] - - - Räkenskapskalender DatumFöregåendeMånad - table [Date] column [Fiscal DatePreviousMonth] - - - Räkenskapskalender DatumFöregåendeKvartal - table [Date] column [Fiscal DatePreviousQuarter] - - - Räkenskapskalender DatumFöregåendeÅr - table [Date] column [Fiscal DatePreviousYear] - - - RV År - table [Date] column [FW Year] - - - RV Kvartal - table [Date] column [FW Quarter] - - - RV Kvartal År - table [Date] column [FW Quarter Year] - - - RV Månad - table [Date] column [FW Month] - - - RV Månad År - table [Date] column [FW Month Year] - - - RV Vecka - table [Date] column [FW Week] - - - RV Period - table [Date] column [FW Period] - - - RV Vecka År - table [Date] column [FW Week Year] - - - RV StartPåVecka - table [Date] column [FW StartOfWeek] - - - RV SlutPåVecka - table [Date] column [FW EndOfWeek] - - - RV RelativtVeckaPos - table [Date] column [FW RelativeWeekPos] - - - RV RelativtMånPos - table [Date] column [FW RelativeMonthPos] - - - RV RelativtKvartalPos - table [Date] column [FW RelativeQuarterPos] - - - RV RelativtÅrPos - table [Date] column [FW RelativeYearPos] - - - RV StartPåMånad - table [Date] column [FW StartOfMonth] - - - RV SlutPåMånad - table [Date] column [FW EndOfMonth] - - - RV StartPåKvartal - table [Date] column [FW StartOfQuarter] - - - RV SlutPåKvartal - table [Date] column [FW EndOfQuarter] - - - RV StartPåÅr - table [Date] column [FW StartOfYear] - - - RV Årsslut - table [Date] column [FW EndOfYear] - - - RV MånadDagar - table [Date] column [FW MonthDays] - - - RV KvartalDagar - table [Date] column [FW QuarterDays] - - - RV ÅrDagar - table [Date] column [FW YearDays] - - - RV DagPåMånadNummer - table [Date] column [FW DayOfMonthNumber] - - - RV DagIKvartalNummer - table [Date] column [FW DayOfQuarterNumber] - - - RV DagIÅrNummer - table [Date] column [FW DayOfYearNumber] - - - RV DatumFöregåendeVecka - table [Date] column [FW DatePreviousWeek] - - - RV DatumFöregåendeMånad - table [Date] column [FW DatePreviousMonth] - - - RV DatumFöregåendeKvartal - table [Date] column [FW DatePreviousQuarter] - - - RV DatumFöregåendeÅr - table [Date] column [FW DatePreviousYear] - - - Relativt Dag - table [Date] column [Relative Day] - - - Antal dagar - table [Date] measure [No. of Days] - - - Arbetsdagar - table [Date] measure [Working Days] - - - Intervall - table [Date] measure [Ranged] - - - Räkenskapskalender År-Kvartal-Månad-Vecka - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] - - - Räkenskapsår - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Year] - - - Räkenskapskalender Kvartal År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Quarter Year] - - - Räkenskapskalender Månad År - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Month Year] - - - Räkenskapskalender År Vecka - table [Date] hierarchy [Fiscal Year-Quarter-Month-Week] level [Fiscal Week Year] - - - Kalender År-Kvartal-Månad-Vecka - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] - - - Kalender År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Year] - - - Kalender Kvartal År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Quarter Year] - - - Kalender Månad År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Month Year] - - - Kalender Vecka År - table [Date] hierarchy [Calendar Year-Quarter-Month-Week] level [Calendar Week Year] - - - RV År-Kvartal-Månad-Vecka - table [Date] hierarchy [FW Year-Quarter-Month-Week] - - - RV År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Year] - - - RV Kvartal År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Quarter Year] - - - RV Månad År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Month Year] - - - RV Vecka År - table [Date] hierarchy [FW Year-Quarter-Month-Week] level [FW Week Year] - - - Räkenskapskalender År-Månad - table [Date] hierarchy [Fiscal Year-Month] - - - Räkenskapsår - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Year] - - - Räkenskapskalender Månad År - table [Date] hierarchy [Fiscal Year-Month] level [Fiscal Month Year] - - - Räkenskapskalender År-Månad-Vecka - table [Date] hierarchy [Fiscal Year-Month-Week] - - - Räkenskapsår - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Year] - - - Räkenskapskalender Månad År - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Month Year] - - - Räkenskapskalender År Vecka - table [Date] hierarchy [Fiscal Year-Month-Week] level [Fiscal Week Year] - - - Kalender År-Månad - table [Date] hierarchy [Calendar Year-Month] - - - Kalender År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Year] - - - Kalender Månad År - table [Date] hierarchy [Calendar Year-Month] level [Calendar Month Year] - - - Kalender År-Månad-Vecka - table [Date] hierarchy [Calendar Year-Month-Week] - - - Kalender År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Year] - - - Kalender Månad År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Month Year] - - - Kalender Vecka År - table [Date] hierarchy [Calendar Year-Month-Week] level [Calendar Week Year] - - - RV År-Månad-Vecka - table [Date] hierarchy [FW Year-Month-Week] - - - RV År - table [Date] hierarchy [FW Year-Month-Week] level [FW Year] - - - RV Månad År - table [Date] hierarchy [FW Year-Month-Week] level [FW Month Year] - - - RV Vecka År - table [Date] hierarchy [FW Year-Month-Week] level [FW Week Year] - - - RV År-Kvartal-Vecka - table [Date] hierarchy [FW Year-Quarter-Week] - - - RV År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Year] - - - RV Kvartal År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Quarter Year] - - - RV Vecka År - table [Date] hierarchy [FW Year-Quarter-Week] level [FW Week Year] - - - RV År-Vecka - table [Date] hierarchy [FW Year-Week] - - - RV År - table [Date] hierarchy [FW Year-Week] level [FW Year] - - - RV Vecka År - table [Date] hierarchy [FW Year-Week] level [FW Week Year] - - - Min rapportrubrik - table [Localized Labels] measure [My Report Title] - - - Min knapprubrik - table [Localized Labels] measure [My Button Caption] - - - Min visuella rubrik - table [Localized Labels] measure [My Visual Title] - - - Inaktiva medarbetare - table [Localized Labels] measure [Inactive Employees] - - - Uppsagda medarbetare - table [Localized Labels] measure [Terminated Employees] - - - Medarbetare i fackföreningar - table [Localized Labels] measure [Employees in Unions] - - - Samhällsanalys - table [Localized Labels] measure [Social Analysis] - - - Könsfördelning - table [Localized Labels] measure [Gender Distribution] - - - Åldersfördelning - table [Localized Labels] measure [Age Distribution] - - - Personalkompetenser - table [Localized Labels] measure [Employees Qualifications] - - - Realiserade utsläpp jämfört med målet - table [Localized Labels] measure [Realized Emissions vs Target] - - - CO2e-utsläpp per scope - table [Localized Labels] measure [CO2e Emissions by Scope] - - - Gasutsläpp per kategori - table [Localized Labels] measure [Gas Emissions by Category] - - - Realiserade utsläpp jämfört med baslinjen - table [Localized Labels] measure [Realized Emissions vs Baseline] - - - CO2e-utsläpp jämfört med baslinjen - table [Localized Labels] measure [CO2e Emissions vs Baseline] - - - CO2e-utsläpp per konto - table [Localized Labels] measure [CO2e Emissions by Account] - - - Vatten- och avfallsanalys - table [Localized Labels] measure [Water and Waste Analysis] - - - Vatten per anläggningsplats - table [Localized Labels] measure [Water by Facility Location] - - - Vatten per anläggningskapacitet - table [Localized Labels] measure [Water by Facility Capacity] - - - Vatten och avfall per typ - table [Localized Labels] measure [Water and Waste by Type] - - - Vatten- och avfallsintensitet per typ - table [Localized Labels] measure [Water and Waste Intensity by Type] - - - Vatten- och avfallsintensitet per anläggning - table [Localized Labels] measure [Water and Waste Intensity by Facility] - - - Utsläpp per kategori och scope - table [Localized Labels] measure [Emissions by Category and Scope] - - - Utsläpp per kategori - table [Localized Labels] measure [Emissions by Category] - - - Utsläpp per scope - table [Localized Labels] measure [Emissions by Scope] - - - CO2e-analys - table [Localized Labels] measure [CO2e Analysis] - - - CO2e-utsläpp per kategori - table [Localized Labels] measure [CO2e Emissions by Category] - - - Koldioxidkredit per månad - table [Localized Labels] measure [Carbon Credit by Month] - - - Utsläpp av CO2e-ekvivalenter per månad och intäkt - table [Localized Labels] measure [CO2e Equivalent Emission by Month and Revenue] - - - Detaljerad analys av personaltransaktioner - table [Localized Labels] measure [Employee Entries Drillthrough] - - - Personaltransaktioner - table [Localized Labels] measure [Employee Ledger Entries] - - - Hållbarhetstransaktioner - table [Localized Labels] measure [Sustainability Ledger Entries] - - - Detaljerad analys av hållbarhetstransaktioner - table [Localized Labels] measure [Sustainability Ledger Entries Drillthrough] - - - Detaljerad analys av redovisningstransaktioner för personal - table [Localized Labels] measure [Employee Ledger Entries Drillthrough] - - - Hållbarhetsöversikt - table [Localized Labels] measure [Sustainability Overview] - - - Hållbarhetsanalys - table [Localized Labels] measure [Sustainability Analytics] - - - CO2e-utsläpp per månad - table [Localized Labels] measure [CO2e Emissions by Month] - - - Analys av kategorierna scope 1 och 2 per kategori och år - table [Localized Labels] measure [Scopes 1 and 2 Analysis by Categories Per Year] - - - CO2e-utsläpp per avdelning - table [Localized Labels] measure [CO2e Emissions by Department] - - - Resan mot netto-noll koldioxidutsläpp - table [Localized Labels] measure [Journey to Net-Zero Carbon] - - - CO2e-utsläpp per affärsgrupp - table [Localized Labels] measure [CO2e Emissions by Business Group] - - - Användning av förnybar energi - table [Localized Labels] measure [Renewable Energy Usage] - - - CO2e-utsläpp över tid - table [Localized Labels] measure [CO2e Emissions Over Time] - - - Smart granskning av CO2e - table [Localized Labels] measure [CO2e Smart Review] - - - CO2e-utsläpp per global dimension ett - table [Localized Labels] measure [CO2e Emissions by Global Dimension One] - - - CO2e-utsläpp per global dimension två - table [Localized Labels] measure [CO2e Emissions by Global Dimension Two] - - - Utsläpp av CO2e-ekvivalenter per månad - table [Localized Labels] measure [CO2e Equivalent Emissions by Month] - - - Företagsnamn - table [Localized Labels] measure [Company Name] - - - Uppdaterades senast - table [Localized Labels] measure [Last Refreshed] - - - Frisläppta medarbetare - table [Localized Labels] measure [Released Employees] - - - Nedbrytningsträd för CO2e - table [Localized Labels] measure [CO2e Decomposition Tree] - - - Viktiga CO2e-influenser - table [Localized Labels] measure [CO2e Key Influences] - - - Årlig och daglig förändring för vatten och avfall - table [Localized Labels] measure [Water and Waste Yearly and Daily Change] - - - Hållbarhetstransaktioner - table [table.Name] - - - Transaktionsnummer - table [Sustainability Ledger Entries] column [Entry No.] - - - Beskrivning - table [Sustainability Ledger Entries] column [Description] - - - Vattentyp - table [Sustainability Ledger Entries] column [Water Type] - - - Typ av vatten-/avfallsintensitet - table [Sustainability Ledger Entries] column [Wate/Waste Intensity Type] - - - Dokumenttyp - table [Sustainability Ledger Entries] column [Document Type] - - - CO2-utsläpp - table [Sustainability Ledger Entries] measure [CO2 Emissions] - - - CH4-utsläpp - table [Sustainability Ledger Entries] measure [CH4 Emissions] - - - Saldo för CO2-utsläpp - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance] - - - Saldo t.o.m. datum för CO2-utsläpp - table [Sustainability Ledger Entries] measure [CO2 Emissions Balance at Date] - - - N2O-utsläpp - table [Sustainability Ledger Entries] measure [N2O Emissions] - - - CO2e-utsläpp - table [Sustainability Ledger Entries] measure [CO2e Emissions] - - - Saldo t.o.m. datum för CH4-utsläpp - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance at Date] - - - Saldo för CH4-utsläpp - table [Sustainability Ledger Entries] measure [CH4 Emissions Balance] - - - Vattenintensitet - table [Sustainability Ledger Entries] measure [Water Intensity] - - - Avfallsintensitet - table [Sustainability Ledger Entries] measure [Waste Intensity] - - - Utsläpp i vatten - table [Sustainability Ledger Entries] measure [Discharged Into Water] - - - Saldo CO2e-utsläpp - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance] - - - Saldo CO2e-utsläpp t.o.m. datum - table [Sustainability Ledger Entries] measure [CO2e Emissions Balance at Date] - - - Saldo för utsläpp i vatten t.o.m. datum - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance at Date] - - - Saldo för utsläpp i vatten - table [Sustainability Ledger Entries] measure [Discharged Into Water Balance] - - - Saldo för N2O-utsläpp - table [Sustainability Ledger Entries] measure [N2O Emissions Balance] - - - Saldo t.o.m. datum för N2O-utsläpp - table [Sustainability Ledger Entries] measure [N2O Emissions Balance at Date] - - - Saldo för avfallsintensitet t.o.m. datum - table [Sustainability Ledger Entries] measure [Waste Intensity Balance at Date] - - - Saldo för avfallsintensitet - table [Sustainability Ledger Entries] measure [Waste Intensity Balance] - - - Saldo för vattenintensitet - table [Sustainability Ledger Entries] measure [Water Intensity Balance] - - - Saldo för vattenintensitet t.o.m. datum - table [Sustainability Ledger Entries] measure [Water Intensity Balance at Date] - - - CO2-baslinje - table [Sustainability Ledger Entries] measure [CO2 Baseline] - - - CH4-baslinje - table [Sustainability Ledger Entries] measure [CH4 Baseline] - - - CH4 jämfört med baslinjen (%) - table [Sustainability Ledger Entries] measure [CH4 vs Baseline (%)] - - - N2O-baslinje - table [Sustainability Ledger Entries] measure [N2O Baseline] - - - N2O jämfört med baslinjen (%) - table [Sustainability Ledger Entries] measure [N2O vs Baseline (%)] - - - CO2 jämfört med baslinjen (%) - table [Sustainability Ledger Entries] measure [CO2 vs Baseline (%)] - - - Vattnets baslinje - table [Sustainability Ledger Entries] measure [Water Baseline] - - - Baslinje för avfall - table [Sustainability Ledger Entries] measure [Waste Baseline] - - - Vatten jämfört med baslinje (%) - table [Sustainability Ledger Entries] measure [Water vs Baseline (%)] - - - Avfall jämfört med baslinje (%) - table [Sustainability Ledger Entries] measure [Waste vs Baseline (%)] - - - CO2e-baslinje - table [Sustainability Ledger Entries] measure [CO2e Baseline] - - - CO2e jämfört med baslinjen (%) - table [Sustainability Ledger Entries] measure [CO2e vs Baseline (%)] - - - Köpta koldioxidkrediter - table [Sustainability Ledger Entries] measure [Purchased Carbon Credits] - - - Baslinje för utsläpp i vatten - table [Sustainability Ledger Entries] measure [Discharged Into Water Baseline] - - - Utsläpp i vatten kontra baslinje (%) - table [Sustainability Ledger Entries] measure [Discharged Into Water vs Baseline (%)] - - - CO2e-utsläpp (exkl. krediter) - table [Sustainability Ledger Entries] measure [CO2e Emissions (Excl Credits)] - - - Vattenintensitet FÅ - table [Sustainability Ledger Entries] measure [Water Intensity PY] - - - Vattenintensitet ÅFÅ - table [Sustainability Ledger Entries] measure [Water Intensity YOY] - - - Avfallsintensitet FÅ - table [Sustainability Ledger Entries] measure [Waste Intensity PY] - - - Avfallsintensitet ÅFÅ - table [Sustainability Ledger Entries] measure [Waste Intensity YOY] - - - Utsläpp i vatten FÅ - table [Sustainability Ledger Entries] measure [Discharged Into Water PY] - - - Utsläpp i vatten ÅFÅ - table [Sustainability Ledger Entries] measure [Discharged Into Water YOY] - - - Utsläpp i vatten PD - table [Sustainability Ledger Entries] measure [Discharged Into Water PD] - - - Avfallsintensitet FD - table [Sustainability Ledger Entries] measure [Waste Intensity PD] - - - Vattenintensitet PD - table [Sustainability Ledger Entries] measure [Water Intensity PD] - - - Vattenintensitet DFD - table [Sustainability Ledger Entries] measure [Water Intensity DOD] - - - Avfallsintensitet DFD - table [Sustainability Ledger Entries] measure [Waste Intensity DOD] - - - Utsläpp i vatten DFD - table [Sustainability Ledger Entries] measure [Discharged Into Water DOD] - - - Baslänk - table [Sustainability Ledger Entries] measure [Base Link] - - - Länk för hållbarhetstransaktioner - table [Sustainability Ledger Entries] measure [Sustainability Ledger Entries Link] - - - Tillgängligt vatten - table [Sustainability Ledger Entries] measure [Water Available] - - - Hållbarhetskonton - table [table.Name] - - - Hållbarhetskontonr - table [Sustainability Accounts] column [Sustainability Account No.] - - - Namn på hållbarhetskonto - table [Sustainability Accounts] column [Sustainability Account Name] - - - Land/region - table [table.Name] - - - Lands-/regionskod - table [Country/Region] column [Country Region Code] - - - Namn på land/region - table [Country/Region] column [Country Region Name] - - - Ansvarsenhet - table [table.Name] - - - Kod för ansvarsenhet - table [Responsibility Centre] column [Responsibility Centre Code] - - - Ansvarsenhetsnamn - table [Responsibility Centre] column [Responsibility Centre Name] - - - Anläggningens kapacitet - table [Responsibility Centre] measure [Facility Capacity] - - - Hållbarhetsmål - table [table.Name] - - - Styrkortsnummer - table [Sustainability Goals] column [Score Card No.] - - - Nummer - table [Sustainability Goals] column [No.] - - - Namn - table [Sustainability Goals] column [Name] - - - Ägare - table [Sustainability Goals] column [Owner] - - - Målvärde för CO2 - table [Sustainability Goals] column [Target Value For CO2] - - - Målvärde för CH4 - table [Sustainability Goals] column [Target Value For CH4] - - - Målvärde för N2O - table [Sustainability Goals] column [Target Value For N2O] - - - Målvärde för vattenintensitet - table [Sustainability Goals] column [Target Value For Water Intensity] - - - Målvärde för avfallsintensitet - table [Sustainability Goals] column [Target Value For Waste Intensity] - - - Huvudmål - table [Sustainability Goals] column [Main Goal] - - - Startdatum - table [Sustainability Goals] column [Start Date] - - - Slutdatum - table [Sustainability Goals] column [End Date] - - - Startdatum för baslinje - table [Sustainability Goals] column [Baseline Start Date] - - - Slutdatum för baslinje - table [Sustainability Goals] column [Baseline End Date] - - - CO2-mål - table [Sustainability Goals] measure [CO2 Target] - - - CO2 realiserat (%) - table [Sustainability Goals] measure [CO2 Realized (%)] - - - CH4-mål - table [Sustainability Goals] measure [CH4 Target] - - - N2O-mål - table [Sustainability Goals] measure [N2O Target] - - - CH4 realiserat (%) - table [Sustainability Goals] measure [CH4 Realized (%)] - - - N2O realiserat (%) - table [Sustainability Goals] measure [N2O Realized (%)] - - - Vattenmål - table [Sustainability Goals] measure [Water Target] - - - Avfallsmål - table [Sustainability Goals] measure [Waste Target] - - - Vatten realiserat (%) - table [Sustainability Goals] measure [Water Realized (%)] - - - Realiserat avfall (%) - table [Sustainability Goals] measure [Waste Realized (%)] - - - CO2e realiserat (%) - table [Sustainability Goals] measure [CO2e Realized (%)] - - - Aktuellt värde för CO2 - table [Sustainability Goals] measure [CO2 Current Value] - - - Aktuellt värde för CH4 - table [Sustainability Goals] measure [CH4 Current Value] - - - Aktuellt värde för N2O - table [Sustainability Goals] measure [N2O Current Value] - - - Aktuellt värde för CO2e - table [Sustainability Goals] measure [CO2e Current Value] - - - Aktuellt värde för vatten - table [Sustainability Goals] measure [Water Current Value] - - - Aktuellt värde för avfall - table [Sustainability Goals] measure [Waste Current Value] - - - Personaltransaktioner - table [table.Name] - - - Transaktionsnummer - table [Employee Ledger Entries] column [Entry No.] - - - Dokumenttyp - table [Employee Ledger Entries] column [Document Type] - - - Dokumentnummer - table [Employee Ledger Entries] column [Document No.] - - - Beskrivning - table [Employee Ledger Entries] column [Description] - - - Medarbetarbelopp - table [Employee Ledger Entries] measure [Employee Amount] - - - Länk för personaltransaktioner - table [Employee Ledger Entries] measure [Employee Ledger Entries Link] - - - Personalkompetenser - table [table.Name] - - - Koder för personalkompetens - table [Employee Qualifications] column [Employee Qualification Codes] - - - Personalkompetenser - table [Employee Qualifications] measure [Employee Qualifications] - - - Utsläppsavgifter - table [table.Name] - - - Utsläppstyp - table [Emission Fees] column [Emission Type] - - - Typ av scope - table [Emission Fees] column [Scope Type] - - - Startdatum - table [Emission Fees] column [Starting Date] - - - Slutdatum - table [Emission Fees] column [Ending Date] - - - Lands-/regionskod - table [Emission Fees] column [Country Region Code] - - - Ansvarsenhet - table [Emission Fees] column [Responsibility Centre] - - - Koldioxidavgift - table [Emission Fees] column [Carbon Fee] - - - Faktor för koldioxidekvivalent - table [Emission Fees] column [Carbon Equivalent Factor] - - - CO2e-mål - table [Emission Fees] measure [CO2e Target] - - - CO2-koldioxidekvivalent - table [Emission Fees] measure [CO2 Carbon Equivalent] - - - CH4-koldioxidekvivalent - table [Emission Fees] measure [CH4 Carbon Equivalent] - - - N2O-koldioxidekvivalent - table [Emission Fees] measure [N2O Carbon Equivalent] - - - Personalfrånvaro - table [table.Name] - - - Transaktionsnummer - table [Employee Absences] column [Entry No] - - - Från datum - table [Employee Absences] column [From Date] - - - Till datum - table [Employee Absences] column [To Date] - - - Orsak till frånvaro - table [Employee Absences] column [Cause of Absence] - - - Beskrivning - table [Employee Absences] column [Description] - - - Personalfrånvaro - table [Employee Absences] measure [Employee Absences] - - - Frånvarotimmar (%) - table [Employee Absences] measure [Absence Hours (%)] - - - Kategorier för hållbarhetsunderkonton - table [table.Name] - - - Koder för underkategori - table [Sustainability Sub-Account Categories] column [Sub-Category Code] - - - Beskrivning av underkategori - table [Sustainability Sub-Account Categories] column [Sub-Category Description] - - - Förnybar energi - table [Sustainability Sub-Account Categories] column [Renewable Energy] - - - Medarbetare - table [table.Name] - - - Anställningsnr - table [Employees] column [Employee No.] - - - Medarbetarens fullständiga namn - table [Employees] column [Employee Full Name] - - - Medarbetarens förnamn - table [Employees] column [Employee First Name] - - - Medarbetarens efternamn - table [Employees] column [Employee Last Name] - - - Medarbetarens kön - table [Employees] column [Employee Gender] - - - Medarbetarens fackföreningskod - table [Employees] column [Employee Union Code] - - - Personalstatus - table [Employees] column [Employee Status] - - - Orsak till medarbetarens inaktivitet - table [Employees] column [Employee Cause of Inactivity] - - - Medarbetarens inaktivitetsdatum - table [Employees] column [Employee Inactive Date] - - - Orsaker till medarbetarens uppsägning - table [Employees] column [Employee Grounds for Termination] - - - Medarbetarens födelsedatum - table [Employees] column [Employee Date of Birth] - - - Ålder - table [Employees] column [Age] - - - Åldersfördelning - table [Employees] column [Age Distribution] - - - Antal medarbetare - table [Employees] measure [No. of Employees] - - - Antal medarbetare – män - table [Employees] measure [No. of Male Employees] - - - Antal medarbetare – kvinnor - table [Employees] measure [No. of Female Employees] - - - Antal övriga medarbetare - table [Employees] measure [No. of Other Employees] - - - Medarbetare – män (%) - table [Employees] measure [Male Employees (%)] - - - Medarbetare – kvinnor (%) - table [Employees] measure [Female Employees (%)] - - - Övriga medarbetare (%) - table [Employees] measure [Other Employees (%)] - - - Aktiva medarbetare - table [Employees] measure [Active Employees] - - \ No newline at end of file From df3dbfe61b71703e8944bec45a5150d7f6c50d2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Mart=C3=ADnez=20Pineda?= Date: Fri, 15 May 2026 13:37:15 +0200 Subject: [PATCH 3/3] update --- .../Core/Codeunits/InstallationHandler.Codeunit.al | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/Apps/W1/PowerBIReports/App/Core/Codeunits/InstallationHandler.Codeunit.al b/src/Apps/W1/PowerBIReports/App/Core/Codeunits/InstallationHandler.Codeunit.al index 26c322891d..f8edcbb8c2 100644 --- a/src/Apps/W1/PowerBIReports/App/Core/Codeunits/InstallationHandler.Codeunit.al +++ b/src/Apps/W1/PowerBIReports/App/Core/Codeunits/InstallationHandler.Codeunit.al @@ -33,22 +33,19 @@ codeunit 36950 "Installation Handler" ReportSetup: Interface "PBI Report Setup"; RecRef: RecordRef; EmptyGuid: Guid; - EmptyText: Text; Ordinal: Integer; begin - // BaseApp wipes the Power BI deployment rows for a company on environment copy and - // Copy Company. Mirror that here: clear every setup Report Id / Name pair so the new - // company re-deploys cleanly. Iterates the "PBI Report Setup" enum so third-party - // extensions registering new app types are handled without changes here. - if InCompany <> '' then - PowerBIReportsSetup.ChangeCompany(InCompany); + if InCompany = '' then + exit; + if not PowerBIReportsSetup.ChangeCompany(InCompany) then + exit; if not PowerBIReportsSetup.FindFirst() then exit; RecRef.GetTable(PowerBIReportsSetup); foreach Ordinal in Enum::"PBI Report Setup".Ordinals() do begin ReportSetup := Enum::"PBI Report Setup".FromInteger(Ordinal); RecRef.Field(ReportSetup.GetSetupReportIdFieldNo()).Value := EmptyGuid; - RecRef.Field(ReportSetup.GetSetupReportNameFieldNo()).Value := EmptyText; + RecRef.Field(ReportSetup.GetSetupReportNameFieldNo()).Value := ''; end; RecRef.Modify(); end;

0K}F zvrgqlY-Z+9I{I#QB0>C1IHd6CP)3KC8hu=OMah&EU9>T$f&5WLZI>iNMSw`KjzY`X z;EDCJ`5WR3m{9EbvDz#mnBYE+`+L>v{h!~`2-Dl+K*h02kT2_ta?X8Z5Koa}$Y z`G3x!N$~$s(EoYz|3t0g0@tE?_J5V_|3c3HYa=wu{qLIS|0TKBf9?NY^Zq~Wc2yW! zWb+M$sP{kkddh~lnqF~=yA`*^-J!U=rl4sX^6~Y&JM)#(+Q_jX15raBNH)X)Vq(Z&yT|(RhUyS=>V-?+n!W#g z#%TzhfnyBaa-D~T2aQXPlVV~ul`FRq-^%4jZ33MfZ4{;SIGAd7U}x@o;gwu4b|Bv~ z&F$80)^X$Qx|eTf%;(gZLUO5%{7q0RjkDmaQyL$-vTU)rOWpA-g=e zLSEi_+($Kx;&p8nZ8S|e4GN{TRPI~|zKzR7Z5o{tZ5*YnB9r>=ko=JUAXezl2%_+p zfu?>GH_=rz(4dVuzn5S$3)Et*Yj06Wv_ugX>LBTo%%%fZ3{-9PpOMdr3iC@&l=2`sSh&4Mv1b-!GPu6+{Afi%nv(p2I zlQ+Ny@RnyU#>)(NVLR70u%Srl0Qq(M4EpMLvIW?nKf}8wTo6@lbu9lrnxpJ1u*R;p zjsG2Z=>Rds3oMm@Uz1Vx-FKDdrkBLV!@}cjo>zi$X?-cDr1Y2^%dZvduIJ}YeZggk z&L@7lxN)CZ44oV4hNN3+z($W*3s%|31>_v3hoDe~2n9-e$gh{Dd~B*;tJYl)H=hRN z{epoPTeEivSSNDO<^_u=>pXYk%39@AD@*@W;zMv zK=))d}juQGNnvY$49eI=de; z-JDNq0UN?lmW!xS7Rh$1S!jr9V9gt`HqHt%3_xVEgw!eY(e)-Y_l&o$Jj-6wmtLr} zwk&Z(V5PV6t+j>)!3M-Mw~V(EK0p1DT+jn-fR<(>XIY#rAaxzR9AXmL){qOY=gY_3 z1q5>WZNw`;BF`GA=qh3skjS+LDlQhdm3Q`j{4D*^5|Y@rMTC`%w6pQ`Ow^sSs$iV|(ocU= z`qT=ds@sEiNpr`&_CwM&T0}`yrB(BUpxx-y7LusKF>s(o1ay}1BQ;_5=3o0^WQItj zM6TM}xTHUbsO1lIWXa7$;{>m@ov&Nd*wWXFSAi;O;T;yLT=j9H=3|M15~Z}o3HpQD`z^9 zr#SSW+4gibXO6EVYS;Pp*ZP98vz$!Dm;Fem{QSS*0P7qpj9fzvUD?>IA>Ma7XR2Ih z(`5jFF)|b#W+-kjA+WYCzWf}NdG|xBethM!YURv)fNaQ30hEX^_go3 zGi+cl%XX^!ANNG6wu1gAu~JoA2~RSHGg1;b*Vc{t7<(i34S;oQcWArP^iYXpD%l4k zCgV{$zVbirNgYycWv?ngE713-9A7zn?tO$A9{?B=tvn3BC}8rg`3VR52B?j{0gOFw zP5-#02CBB&9*gWYDN;B<_!PxU3i+)Q6?_EN9HJVX|M;YuDwbv>4tJInMtM8Nj_WN} z1XU)uvaO{kU#dAMx=2rmQ@z);On;d;8F2r-x}aaip>iebs{Xy`XK~lO^9lX2*ZM#+ z`ImdVC~ADIX2`v9tiPZ@Lu2KqF~{(Tp(f-yz}hAVMx z*^%;{;yUmcmCbwKiYuk03A{_ip-6 zX}=XTjKGq7<=Mb#Wk0Pd=E5=Qu0?2c4w;TLW%YgJG9Nq^mk^@?WlS^zg|$a=*OqQw z)G|frOAgt7t?zIR(xszEvJQuy@t}j@ju-%W?YPc;qrXQ5lewa;J;Y4R&G#8zQDt-3 zdQ@L};5jUddLz+VTE$1j_(=0?oRC*&mBKDr^KRm_%;L^LvK)ZSay$8ZD6E`Es68$S z=T5?)#{m21{!ZL8;&o)$Dgc>i@j=@+df5|^O9hj?_A2%Pr8tXhYRl zTVjV0fXu&q6)Dc^#sh>WJ#Et#MbNt-el!QdpB=Xix1j_Sj)%fNztpUR>gFJb_3ul# zzCJ(7g+A~I%}MsfImjBc`0YFckmGKZtE2j>ZQy?L3C$^qxa?n6#oRyXs2$`Ojh_Ea)+3~0%lH7j z<{umpmr%d-Rg^yxyR}D%QG?D}KXX?euwWea;Lhe6 zHS{Kv%)FeVm^)PWF!WUw)BG%pnYnfk;ht-)FR=Qr!9fZ*4u5sg`kn4IbRy8=fI8GO z^PIA5+q8qcc9R91GyZ1rocG5R-cDexuRMt7;ML*)6q=`ck2Nojz0C^-j=xbn?@s8N zA3TRPWuBYq_96B9P+3CyRQhT?7;8Z_t$0=;`w75=q?nga4GicEWmxZ(EaHC(+JvP^TxHu^LF*RFm+;A{5D z?{p)BwNK!x@gS~e`%nDf*zusmTZ}YsbDQ7&AAqk?chnOw28N;E$I_DmL7Q0 z>~p&YeHK~p0yVgIJP5T1T_0(MZ>=G2OUn>R&j@jad#$0k_tR%4aMXCv$gQmsMJ+3Z z!L)VXf8tfaoU?+k%ssBSqZp-DLGOH~O7>bkaRd*)%fmrarz(-)&O)}`l0l74DRSvF z&fGv#xe>mC(56$zHBzMZkG9ij6(S|@v`}LJ)oz48*XYmZDw;^X+GOU|y`?Y#<+?&} z2thi5v75tyV_7x})Tf0TH!aw*Gomeoid4J9!hf(7_EM3$KiZFKa80Gg)-E0Q5Bmug z{LgI!kZa`DwA8cTHSjl@nWDc6@u&JPwO#_&ZB2J^HMUieJITKo=1B6H&+_F$hA#xce zXclFXNUwIH3b76(jBO^-$PI0waBA|{9cPhiq;a(*_BD6}HP>iPrK)M%c<^t1+<{q#{Z|$C(^aw%6;ot0 z_4zpMcpX7+?*KMgG$6SdlEnraLX&i>@gy|hu%>I*2};f+Xm?71IfBc*x#=R@Mmh8R z@szx$ppX_C{MCukwIL(r@9EvD3mwlI*W<38_3@Cm?(0YW2Rr9AD(HB5B{d21`WYC! zYh2DFSY_!pH`(WpL6iC5Feeuv`L^pg9w-HabM5+-P}Bm&Q2aks5nj~9Gjx_9v|LV^ zl}YQ-hn%YjNr;fDPe5OXTBbgK^mx+M&xZ(D2vnEqHB*=LA8Y;Y#1AB2>@47{aMFX0 z(J+bf%bNVZ4r&ZjfSi&4#(*k<+|V7Qv6TnaHpB_XPy|SR+v==l&*10?88X-aF*Ji( zpsBTLo%c}Ktm{;Kh#g6Tr92IxFXhKNzbLgD$oju#V|c|j)2jbf@)t$6Km`9+8;~YP zX!T!hCj)P?Y|c67O6wttx3wlfB%!6wM+zfr#X7pN6{-V_4F+4Wo@EF$p+RoKFRBrR zGRgJ^9$^GTL{?{b6r4R2{`-T&E#(!GDbHA4>-YIfRW(ixm9aht<|2~GWBbXe&wD-q zuxS+)DNuR}dJ64^$`L5N>Q_!q(E1y}Fq>>sOgFIh8GAJeUuS%O$Nn|{)YRfmOwvXL z)1`1*uZO92i@LIOe4ypdc*hu-KtO2KELi+*9qjj;iU%0pb9=T+ibSxRs$h*9DYHj8 zxP4}}_-QV1yNw@a^_Hk%Bw*|a9@Q`Yg@;n=gI|ol8xy=@jciiSxL zPG>zMV3-rve}fRQB1=df)`pY6UDTr@5?GS&OSVggB7-qmi?pW^k?RM9 zlhwVV;q|S^$7pQB;q@)ZIcevUaNBXuLRN-v)A|Vvk%w^_)A|n#ka?+#8AB(*n3d{F zB?#=}!i9vIK-_l0GZ^u~3|zr9?+}JvNfeVz?-25$as*6Uaw-Pvw0=Yb4#{uYGmIG1h>yv$`-#{K`r1rnmBzKkS#*k6HU_8q>lU%F}e8fj6lQx6yP@grlqp zx6ydtAi=7D;xx40ht5Sw@8-Ai78#SD)=yab`b|ba$sE@)I7WgoblTvhh1RwZ;YZWG zqZ)4s!VmC$JiR4j=zQ(#N4!MFP@|Qg=iI-#T^aixG0GJ0LPWVJ z9r)e;mLErt=TAcjT&#-Za}23;xE(h_%FFOY$q-hAZ(DG>lt__j7Su6^+xKc33W|hb zOAM`%QgKb#beUhN@GXBxVT$Ee%;C-#gt*fVIj%^rF)XhZ8U-X9R$v z;C@<>+t+EcAt7Qi1n%tM;Va^gP|)EnVd)QR<9DSfXb`2LFb(3102SsE`U?06L{b$r zif8m2MPm_UPjm4%prC1D)Cw7IjJ?v#`RoIW7uw z;v|;#r(~Hh74H{Den1LUwhQvetL9%#Mv_!lB~2$8nv{pv*I${%t1ufVHd23E2+oq$ zRNAsF$)R5SB9}}{HYdJckT^bYnKv4f-Vo9m5|bWv%Gj&-4Wr&*=jk((-mvY$biDzE z@`|?>t1^x1u@|}~YvS_H=|Tfsv=u&W)})RzOZ<3CX46tj9P}aHxJZS{$oeQtPCaNM zZ37sq>Mb{=<3IisPiaIZb@iM$C4nh+?!T3wb7CtHw@gf;{k#&K?4C@M-5Sd>*TY!aNes&$^mSir>d8I?dLX2GMaFF7(Fv9ab2YJZq3Ca_Jc4 zagg;TvBW2dRz^>GN=xZAsVQ>N7;l^KERjxZ$8kdQ%VULFKu$qNNw$F^Kc%OV>IpQ!4q<4y(1vlKLCrboGf0%Ixoh>d?ekHuaimSMX6Z zM#j~U=r9Q&gJo!Um}F91Q;X**512Px3GJXwKc>pb>Y&ZaROF}ijP@Buhmd57Gy}>r zS}ZQ-!W2NNvzyS|DJm*MB1@+ZM?HY1aUDT z*;C|85lVV_9pSmjf;}Tdy7de4T$nAQFSr(JZ z?R$th^1(BU#WR{l#==nd5EC%$#m#VtX%a^3X@1#HN6am9h^Z4sqs`?@g-4ea))6R@ zH_gRO;`y>NjKhuM`9e5M&5h&vaySgjO?r6mK0IW-GIdcB+heVpx#1Z5%NjIw!8fc1 zQJT6S#oica=4@+_cA{@GcQFfJRng1t2>ftOWvF;~4?7HReK>Ui{r+rZvo`#(&n8r| zHoBnXE4OmFf|BnySDQW_%edgw#li4jZbDCguEyqsADf>QSlLTB+la8^$EXhP31SDh zaXnuk!~Yh3XKrNB9HvkVZT1q+oB82;zCek0f-`lY8bh%#l)2#G%v_yWV0St)2tKGvkOYT6Wgf^2khmt9PTzW>aa2_OBW)EM`ZyE zmm}$~%9Q<^GvRI-Ti-kK&@^>BsXayH2PHejJVp45QtKx-)zrpH&p6xg@MunqrY<5P zTD&k0ec%SQIzM`L#mOL^Fi%}TDY%f{uEC_#5mel-XQ=GGBp9sm-kR<&OJJ4->!<%nT@(Pf%LWR7f$mlZ+^d zK6+Lxp+^*YWW(}2|9s{A*~z$-$t}b zdh8x8IfH6eQjO+k7+lfc{gN@P(&q9yc|L zJndEOE$lHX36>^K1BH}^tdps^5xA7o2bgdL?QQ+b2KAg+a1^aQj8Cq?`makV}Xm%uIp z=BokXD!Z_5%Aj$g4n6~L934>d?}Z}shtuc^<<|+-C%o{1{TmXST^w5Tlrg8#lXqG+ zjPJy-u`=|&PU)y8ahyv1wCwZvv9bMa48CfHLks^XOu{mIx+Jqr>W!s>Ebphd=Nb(539lP?h;sH;9~FqZLJery3oS zy|S|T2!I#m$t<)F6s&9sq;53QIuC@Xga-xfMZXoaz}O^vEPaFF@E8G1|;MSK(iJ&5I1U@ad=?u}VD+v0w5-rRuwL$n+>Rl-@Mi_fsKMdj7`AbFF6DjI$Nk=%LJcH|4EBh>(}g3Z;kK1 z)=dCeTu}y2r9x4z2j9`>rd!@JerJ3$<6X>kb%q^q7&AvU_oS#5o}=eqq0zx3FUZwd z8#G<))B_${$8T#qe{IwfsoH+WO`kpnJ5+>3JkAkbgP+uxVX%sZs*&T;M|`xP3;MRm z4R*k|w)srZS!2!?DMox31}~t)=8qDmz=UfyNTa173lbR*<|t(us{BV4M^yXqR%#?) z-8d!Bx=JNi#!@GUs`gZKKM7RF83{)0yD0>nq!2CFwB!?QJa=64>`3NvDLV`S`&H_Z6%DaqkU0VdlV~ zx2iZoH~{;u%onh2wwTb{?j>$uLs^wFMz5Dmdf#e+4>Q&>% z6~F529~slV7nE$itUz(zBUmN!4|)`S-x{|iEH7U!a}G;T<7TQhMd}{aK%Mbk0Kopl zki~&se#<9EN!u$Cw`}pH0I{aO!e9@0^;w!LX}9dzm<9|M{WQ^gtfF*+j=x4=kFksF zPTy0$fA5|_;}7YA(}oX_e8<6wE$%E60C1>myKRs6nDUVYWB{)>v)7=g^j09j^wvvK zK@!;L?ro5Dto5r*SjVLTQW8f%tN$58&mlkSB^Xfm_!58Hb`{_e22 z)^|1gWrkac#p3`meo$$pfppVT%>KHDtsc?#ov&)KTgNacVoj}iNxXE6I6|A}6Q=t4L4uVT`P z17HO$Cx(SlQ^Ze}2*`x7BUj@=Dx>C>bhy&bq~*wzx0LxY#Hs9bQRVv7AhiaS+T_on z2J}6wyv1Wl7k#9WTAKl*B;SvCWQY;shYv+sU%u;QYFUnwXi=L|%Mn1O^1?Y-fmN4a zqwyl6L?=o<;X}BrgH0p(#y@!zSPCv0e8MU^6D4k@FfRm^>(b1jm;SRsw86Yxh1Kvr z#9)Fqi6H-=z}^UGQiu;%q1}jI>%O&ob@T|T|R+Vl-Fo0VVAv-&C55+ zF$zW1VRIEPO?+qd?Cc zIqYXQaK)+}WpPsP5556#NN529b*axygoYLfuzLG$;$W^!EbzA@EKW=)d@cc?36?7p zTb(LybY&6L^IAWl7&>OtgFNN3q#rXH%i%(Grf#%qh`k=~RVt*mPcAYP91rR63)w)yz)Cx$g36U*x^LmS`x%V2X`xz^^? z0X0~L{H#jCD=VZN*BTZh93N)(6h+yLF-3x~Jj1>w6%vSzEcnJ{CG$#QAAjaV}DqRT%jhV7HIH6i}Z1CIA}oBkg`RHtn}1>EbDVcYH~q7B7DJ1#z8VnWpus#>YN0XL z`Z$y-iw=?Vg%yW|3$J&LYvlt`rmr%iiXTj)EJJmd;7p#+D^t}OHtB^IrYzq>F=$aMPUxuj`Bofgz&oR)A zg3!+3IU}^D`cIxL2`K36A2HoJ*mI{GixcJRuo@7I8&NLG^WA{aO5o>K$4?XHhDTUC z!Xz!Rsyq%j8>h@y{{rPTpyC)3gt$7g(I$ItQ)%7Hw#N}Y0$zQ3Dc<2;xMS{TSGv_D zX>9V0vN6Rx*BaNyyQ;^Cj=wlhvoMT?@4_GO^_c?KPKTN@QfrwI(hQ_S_hS)jgO$C0 zU96QWrveK@Ae{a$dT+Zf^vRF-?Wf@*5N?qg=%TfEsvS?1&smpxP6Hm%m9KDg1i$(p z{T}{{D$-XwfgLm+^YZ|+)m`lPG*ih2wL|Aii)Z?GF&iZ=R#C4UA=eUcIwL!2h!`+z z(9dr2ySoiB$c1(%e0N7R_h$!^HGSBNNM`t2CD)DRgCq)o(~uQUKktxQl^_VeZ{jUvXzrl(3N z0J`!Q+0`!>C~%dGO-+VTWe8Yuxq5Sk7bY?fckzaCGx*MVhp(Vv`2@y?UjF89(^3`& zZmEkZs97rY8ZpBOkgG-MoFjgKF=_``JItpvv#Ihwsvw+Hs4Us+qVdw%p~8B^G--W2aMp~e=QA1 z^1hVRgNs=aeN5(>2-zQMBWsS!e9Pg$h5bpQ1?oK$4t8;u@!uy+cKzH4M%7?0(CrLB zKf+l=T4C+&7>6ME6ea^)6d`vnne#tFOn0RXM>)@tz1;1zqHJPu_5}soo2^t;K6_N$ zlYmC#m!iX!1)ooCr@*XwNIp98WqY_HEy_0K2H8VNpr41u-H&QK)&|)F;1ZH~{vik> zy2ygtWZrs0r@0A26glQ=80VAYaEo`8jRmpKDx0n%R5M{n8jwd`YxlGTq3wqFpm1)^5xqdg7QsYOE~HQe@L5TSp8 z&w3#dkP6eOuNC^6-K|Xr!;Rc(wtiFAjh>QMXzjL(L&uhdFwiwPwEMI}w@TC+VK^5w zS3ajlxE3i>Ga?96HCg*_0it!n5#_vEK!Q{7~M)y z?X*FB)1fsz7|!s(fESv3iLYTK1iL)<%b?v&>u92`j*}LOD0et15_wU#@)@-_m!6Ih5(zgO=#h+RhShpF+v97pTlcx|IeoaAjJ zbXpdPeT4>l#Ttyi`o}ldP-(43>{D=~Wav|mM1>h;diEBI35$(3R4?|E=6+^?1jL2E zs*89$BS`{MWdb`Mpikxnf5kJIm*++HVarCFKPQ7JL_zi`gIisrl+Zz3J-`m}y@$s( zg!Ne?=%49@X~ti*(JqoPak8U?!693w$^brEW1n!V~d_n=8B- zqFy$AwrY^O%M;~hB?TTvo7&dVYwkgUk(J~+@_q%^*wB6&-Y%;PvTH+!=ABqA`*J!{ zPXfZ&2P=~|noJ1h>M-`KvX_a!)tOM-7sr?V#qCPVWP|6-E-|#zBL+Q= zhBb*)y4=klLdbYqghJ}cR)4`3+QQg2z;qeIrot2|Bd+!cN?gO(hFka^F4L_FVM^Fx zp8Fv5da{NXvh=(7hed+B``vi*G%6KGKmfcDg4jMmMptqnz4!QSCv>npkI-Er%vWE==ZBIfy)I& zDlp+T;L$jJkpLp35JZ+i3Te66;r2M2Ml{hpiw+6d)slxAVBI-;vnG)YlDqkL!?}#n z03zm)Cn2zWu>mX2xfF?R`P6Z!$*OdCukbFktDzqeaesixDy^WbmMszEkjH1#^WA@c z>#wAcII$4#!8nu5mr`(?0*LpFh=rmd9gJXP24^`K_&*MB6m&3jxK$`Y6P_?f;=CoO zT>%9PCWGDg1iN}7KUnUUXS97X;z|JKCq`deXnQ_Z7+h%WK5C&)@?ASbf75-Zep)O0 z6v8*-h3xJ|voE96+QEqpTAldJ$`?0>hf5Z#=iCr*D&SlEg6r zHbHOT@3Z@M`$D+tK-7C#d z_%05CB2yn1#6pJiUWthrHkjKGi-)ZGNKhUSb_#ar5(UOxkq%d8tzg(F79xHkonO*- z^@0Hxf?uXnmyjIAGAJvUt`k0-I`6N&IiBWkcPLI-fqe#AOvxlrM5jxW3;JyL{*?3d zw!PJzcj5nA8B-nN%+%WPfaqQjJkXy&Q)WU(I6fFr9K)HSQJ$oOvW$acS;QzsovJ)! zZ9$`Gz%WV(9jle@$2k{K&l}6wP2gl2$Swo{O?5&18%In3;QUGUeBjhKi?V|6W~!ub ze;MT%0Q7xy+_RlK6yy);Jg{f>IOI>!jGP05^HNSJn=+)qt;xy67QadA5);9-kbKHqWGiTKQ_No zx82U3DN#l}`WmC|Mi&{dzobu)Kn)!ErMk?%Pk?xjbU?V}s*Za5k2#_@1j2OI36zPR zkZ1;yVEg>1<28v5WWrE;Y9P{P(XQ zph@6P4#ymu9T)GS6VsfQxsAkRNIEoC*Q}?>3U#;CjLaw?5 z2Aa0xGIy3jta!r6Qp|W#$o&NF(~ZUkvWTODV(0i_DY+ z%i>4TW?LMLVmdjWzG-k?H34Ud{B9aq3rLevG#@baJ!b9l;fJjx7`WvAa1{c>G?C;; zh!4!u!ZlQ)>xb;2|ewXzpSW`QWhnG+kZ?RkzYywW1ehPH?3m} zicy@65Bl8#Sw)}`#d^+gs&QuniIqWf%_y|~3;O9~zPn>hjoU2;BNpo~>FJOq#j@fs z6oK=1jI&6kJQmyG%|@07s?ugDk(Z~B0bpRVs%W@$OR=8b&^y01`yqar8c}&wrG1CR zFH(HNP=5UtDNv!<3G1$6o|r*@#`+@uuL4`EUh~&94QJ7EkG=6kftR6inn-+)jQr&T zHn=JWyP>5jg^VI|ZbIu1(Kq*r_r(t``M}SM{Io{m*+$j_qw9PB_Gtzp(i`2E0c{Ho zzkjtf&b!Z#uMg8r`uPt1)`xeD_W;>ZhIzcx&)bSK-0yYgmGotl$1I-CDjORU7d<89 zDO*GMuNOT)clo@$j{)th8^X$d49#C>?-YTfL%q%+)0QRMZRtXwgC@@XA-BA5z?N8b z7I&B z=Tivp#HLsK2d|%@c7gt?huTn#`VB}!^-ERFw!q}~Pb)_(?`j3?b5snDxYep+$Wzsq zX1SKmn)QBC5#@LBg6;YEhC#OHSq=+Z89t<8!KguZEQe#v3c*6btTjod2yYys)KBVk zmQS@)^X`VqzX&{GURayh_I|hQu9wnHxBY&938IR>gv`}m{M5f!r3qZl^C`*q-=W`E zpB^j=m@rA9iPWh}V~H#tb5mg^K-1Mqk*d^FpwX=!`|zz@Wk~c__GXmKR^}#>1EOJn ztec{}=>$CEG}FkA_X+7-&b;y*e_=~udWBfBFl`G>@CWe_-w&?r(8%k)(8%kQ(8%kN zLXziJtMQQVRZd3~y+Fd84nm$N!>~r!5}^{o$NUdcw)H$MHJ4gv91f4|OQI(YkWdsU z+xs65p%#$n2m>0o>u(eIaZ{UwjtJ|*zS7&@C(-+k6f>~6J+-H>ny-#x0AJ=iXt`qvA#*uYvUoS3asxpdMr0H4vS9OXnfU z@U1g?s$sO@sH#TtIs2!ToiKSNL|GF#wHGEEdXkYNL`M@kDQp(10iPus5gC5(G6?t$ zNx*?%@`Sv(K=k+4FH3#fS|Z_-F}bXyB#n4@f`UY8uPc(>X;Me=8+^IFuOwL3j zQDuZ5&G{r=l<|ph)BBfy#?TQQzwgP#*Z7ek(2_G-c}u)xP+FL<6-Y%=k;ff+>Az3Z zCDyD7evlQ`Xp}4LAw5`cU&!}Bq;8@+@_BwOGbPQCR)1DmuGQ>U*BffjNt4%c^RewB-x86w3CY4+0t37eE=K$>#W1fN^u<<-;-vM^Djy+| zs!0j#S6J^UFxSz}_K-G#mes;~i0JUIUh`ucVm<_cs!8o`vtdyzkyaaRlj25yw0RI# zp#o1zy{4}OhdaIB8L+3Q$yciVX$5A<`%(^Y*($1Q%86?ARg}3NKU3h-?+Y*i z$?RlPSWA7)+j|3nN_cTz)D} z7Ks@yh#rhLAKpSZlrrnY40;M)?td4465`SdU!?5P}WhI+}^)dUNi-Dvy zx1IQGyqQ6X95m*10H)IT`E>A3_<&gO7lEcJ3(D-T8HgsE{$jF!8)PnP-J##Aw;wCn zl5Z0oppCX56-pkSC?R2QOc;>N#|MheV^*cPE>_V68~R^5VF|0K!vo*l3{8+Zg_TL> zx^5{?xcg=lz*1B*&uX&>-2!u;I0FDqn1$5X8@=zW64RTw!{zUR8G6F~+2IzY%Eg$R zY%$&xySP>GwOqt8SMl zBI0$BGqKTWO`W_#(h(cSXiX+g$}Nfgc`^`QkLBCb7GU|wW76c?Gml}cp!1-~BQq{g z-0ETlMW87n8<27))cQ4Jg1=(>ev?^#^@af|?Egq_zz92=-8ChyPCt7kSRC6Pa}P|U ztCN)qaB_?h;j-=Fv2Jag$}PB7*7vTY zQ7Ou!wNViTf7cNB?qB9~Rxzwtyh3;Y*OD#ctmV;xhEt^e2o!6%j$V6~3h4tdb!_4t zpCJ^lh`<37#opujffxuY2iDwAg3m?v&YEg~jP$17-h2>n(pr7r?1A`FIKNx}%YV*6 z2GRiB=YoSwia^A#{{Z=odwY|QKxxUA`u zx-K#c13I(#X^gCZ$;37fgtl{pJdNx?Uq@r)0f{c&hC`SGy{bY!UHtJ^G&9uzG*wH-fsTRTwLgB1Bk$4f zg4A!Ihqu^%{dj-1GI^7^PMKr0T=whE0ic5=M-c@%L;IKs?XAEjM$pNw_=RR*E6Yq+ zsr~+1mLBO%^KZl-bA%FNOo?uca#PUDgT`qu4D<1QDteXoS;(`aY!QSsXru25-uFp|WsIKue5fYFLf=Qqbv_l{d_VCk#s`MM+SP%$uAdU8)+)b?6kOqgQhSyqP5 z(8P;X|93`|fOsQ|T}rOGW{(lZ_onHHv+ynP#>PNGEfZqC)ZxKv0qfy^vEW$_B#)1i zPwWOW%D=cn^PQI!?JZK4=!#^WB4ktf*9ON1)c@6&_Uhs}2N34SGUR2|vZdnTvTuGw zygS)?Ad&noi|4#omKIBhQn%NqaxJRqQ`#$_lzc=2O!TP_o_(KE9cdt%e^<$$4{k)b zDu}~*T~_}*^K9mAA8|KYMbzyh$6^=Af1vq`q5rqlJOQyS;ZenH-g}oa6bb;4cdTy7oT172f_1VkIi0 z6cjhNB*zS+LjS69Qw-SgnIdp?JAyY*iximf6(?TN#z%rnb#W<^N*P$ZEemxJsD%t8 znIp7tG#ucDhM62pirJ$ftmu8OiMV1pnN2}$A>LP9mzSDoXoSMlOB@zmqIWos?pHmS zTLs3SG5M+a`HPlqcnVCJPqO%12oOt)KZGN3lGUZBDWgqpGt>ibGWl0Mg`>_dphKKAweh`?`^f>f4grz=DiQPn}tLM`PJ85a`p+9#gQ&0GCFrDtpu`jQpiX zsJv6|_gR@mm}eGN^tX_{J(>TmCdYipv|?b)*!PQ%@W@gC582LN&L}U>gap(QIXpPO zCra-v8j2glXhyE_SHTr?D$}1eiMV%Q3;-ygh&sd-mrFMhDPn?$!FH#{SKvB?fIWtqls5X z=@Hk%mq_t`niSbwJ-h;Is96N~&z;r~ujDoL0PC^O^?r-@&tS_{%E_@dqEsIL-eAaU zI?mpMRmNrtS7)Np9Weh2{OVLmBml z?{EDz7&qNN`f$O0KPuaD=Fop9-RGs?p$2b^^GUIhu{jLOn=N2x2OzpovaK7XNlzLY z$GjKBYfU0L7@IDROekiQ4a=-#kZn)Ovjn?POO31$YSBmlGs(zZcenQzzV;nIGCHDd z%aB?fC@h5IwJ6Txthf2fC1hDRIu^yw8!Ro*@x>;6S5k{<$h~cd5H4)N>HDiw^!P>0 zc{8FnW;!2{v6gN4U8wUQ(0JGp*s}gOe~_P?$D<&Fd;OJGAZ>*Za)VazxV=OFc7WKl z9`#&&yjb{_4UQN-pE2}up`v!NR2($gpQ4XZe>!F5YmgfwKqG#U@?wfq(XaQzQw>nj z((#)7KZ>q0EUKrAFH3`x(%s!6ozmT%(jlD^yC4WicSv`qC|&-MPHE{b>0CD6eLv0I zbLY7;cjnwVG57q=5tEYzlzY{==$l{SR(jALU@;7Ejj3F3&#$^ZD@o z5cU^2ZN4)cUNu_mv$r_Oj&oCa&bvZqO-7&qzm zzTSj;A!Zt{<^CU1qh!x9xuVAPF(Xc&YbcG;`%c$K9iIM2nvuuHX@Mm50@_NovZKe8{)Ej|^|MaNXmM9WFu|P{F?lY{m#6cX3uauMBs<^MdGl9)YUqb zQbAxSQ5t#RaAt6O0kU*i=5)}A+HPj z3*;kb<~lmJ#n|vREcATvE4_UOGl~*}@$l;D%Xp7UMUB$TSR%Ln5FyS$uiLq7j?_ZF(7vm7 z?^$s-jHzxyvOs*V6T+|2@BTo?{?;`piX~r;V5i<=Mn)^EZPKbr$?Hd1e;_Y*A*7pI z+btTF1o{22|Iyxll>>K8GwpCm6K=u21_9NN3dCL{rQ`=+oByrbDOqGziZOp;9(LVj zN~`Cw5LTTsceV~rFO$)Xg}8CoDzd#@G%-hWHFG5*7B((4@f{lYqU^RSY)qLOttsX< zLtA2Uk$5I$g-yQ87jc`g#LD8v3+~H#O=yOjT<(~+GvSej_9N4OckB8pQgs#kwC_$#U$2Xb=p@!t&=lr_ zl}5~izN=_BS5AGMT^Ft_TpZ|h5Gia0rk&4Y!Cg%fhtAlj>zX6a(1)^L+O%Xop2roaB4Ji87QrIwJLw>m+O-e`M$f4)vLG+o<7CS(#$rD5T}~mG=H~Iq zHiXrRdg;fb`&-2{h_eF)zx{8SQCAR@Sp{M`!uU-B+S2q*0*DqhB9~SyFT_BuSSHJN z&!|`?h|+#1$p4KQEae^(!&Xeh0=;5C(^dq7*>j69LT>wzjYv#c?DN1BJ$GR5AsdEu zgNUcRpN)>%^z~1A+5R$8#uU>IM7mO-X;435hosQowhJ}|C8Zc;w+}pp`1fav3!X3} zY{~wxesY$Xe4(LQh1hwOfCxP3Z2Q#2Oa6mTJiF$3)#zZb2o-U{5p~h)#=wP_X+|ChW2>-tqfYvRoHG3o)chUYD!((KEp1PSaZ8TBb0FRr%; zREU(wOGIE<2n1P?+yzg_c;+Dp^Fb^LTDrJ{kCm@`S={IiUjX}Z0^x~qP$UMG3_Wux`< zp6pb2YGjY-`|^Y&?heUbPvg3&iKXg(QDnXEcfb;+WM6pKeg4F?b&W*={MB{OS>wnf z2qnpiy+{3z262f?fU2(j2l;$O`44^ucO;UFe(gb?V!9yuts(C3u8ZSJ=^1{+tu|#Y zwsncIFO-2tbJ}&GkmJ2SuSdniPuoN~W;~;4pCpGLa0>b!W>*!2KjyQFTh(KT(vOB^ zv`3qKWN2<~hkcDgDoif%HZ$O&%KjPY^mgy5|CE&ABaYWD@)PkB^0+O~^DX%_R4qh| z5h+pXK8Rn>nSs>Y;Q4KrE@i)M-3)ivGo2OwPgBypyQ=$8AkSKO@l&v_Rm2V2SxR+1 z53@0uY?PH;=^YNK15(@QY>zhZZ?}s2V27zzfxM1JUdLG#psxz|5vnD8A!v~{!4g!> z`f7sMkV#@$WuaOxav2zx_YuMFYwsdza%yW%scvFF*+R`!tWcXtJg{dVg(=CV@HO4> zy!)gyqP%{iuTd0g*%`VyMzZa6s2dV@id~S4~#}rX}Zs-Jjl>@d>R#wkruS9Ln zl+xDV-g_POSN>ClY;LqqD*@`A`zR58-dLQz@>e{*Qmvv07`=Vp6%% z)RWRI5p1117uqCx4cz}}&oOdS^Kty3yiCPyH~7Q)Q>ABcIG zTw*CzG#q1Ruur~Ew+vU5XwF)2Lu%)w(^>|`Rc@FeH8K0n#)oxp72=IY8fu*S~z z+2zZ`3j%TBJ3pg$Me@TM?T%$@>mifx&-4N35mEA4uhrMB!jsX#X)eRoC(p>K9Suj= zjmM&zMu$}%d=&UZJDu76?cv@LeTb?m3>6o1#4Ybz;wu?(QyGf4rHHZYJuX_gr!L;G z_qH=b>7H&Gi_aA;)P`M7-(X4DRM(IZ!F=L$75fI=rB&yp*j}=ulix>0s0MHuM%^?-M;2o@ZJ6pwV~ZSegmqUunUZ%4k2x%KM?r;o82B1*P9sDE@5LlQm-K_gvH>i2K_(}+h zxp!4N1`)hf%bY%LN@yOrmSNPQ`*}OKQtM*Y3F2hy3da4XZhLk?Y_`ER+W?7ogp$o7 zqvVtVSgtBYtq*qfQ4Z>PPGKSULwv2GSD_D#NDvXrta6a`uZ{4*;Fdk<^lRxlC&*d@ zDfef^`{M18RO@)(!J8tb3?;`)(H%sfHIe~s0u^pIIWVB9+b5#gf?pBeqk#$w&wBj@-I)iZFg!b;qhK6NyeE@&#ZDZYeE z3}NtiYUVh%b;J>w_RX1CCX)G}tY~cG*k%y;)aHq&wc4B!cTEx)?mfYFjxPm}DgQ8| zwA1KPkQ{vccOfg9*m^hJJlwuOGo}raNj^Jc(i-kop=K&G0F}f2F3O_*o`s(5GoLCL zWD$0_Hf#T{UH02AGINtKj)q02DMY{3O~&IN|D)PYaI7I|CwcTANZi!X?^|#B{2Xmb zR%^~7?XDnIC7at0hub9>e8HV|<6jZ~6NPq~@<;bnV@YUKPj8&l$pV7EX-AZIbocJE z$1BV0=twnV#037VY-%cWS$asim453BKaagm`+ne^D|2Rbv57{+on3E}No+$|5lndG zE|@Kp9?hj)(^r^0J2%Cg=pzI1CVksB@qNbsz$~>$3HGF0GvASXpv4TT)kr&N>7@HC z7H`io5E4FB*%Y1~{aZ|-#_*j6h@4Y^zQ}*PN+P{Nhi(-uSZ~F#(+Dx1?I-|1bp+;Td0yP4<|x_{Oq8 zr}VbpElHbAvf-O&4U>70#rj0d%oBWSl-P1=({Aw0fhz~QG__!4drKjtPce~>Iq~vU z|L{mV-z9Ysk4%x4Dbp<5aeUd$s)NaXjRuG(o7z+;y*d=_)&JSAc1*7T`bxQPG*n(D zMP9@ew~fjP<7m5@I53qjiJpie`KnxI?#g54;vr7b zjvz|nx3UKQ;~pYzH@@60BAR^>={w$3a3iEDxN9ns*sip`s>=QSs1zOUJ4{{~7XLdh zqkhq%Nz~`~oB3?lEkV|m1n}-1ix8wrLNig({_buqRvT4QL3WpTpRy!T5`H$kHLtax zv74=jxVsS(_zXaBcTAP$D=_O}EAE=#jnl;yqx0j;M16?UVH^QHX~2VYpaibWnI`PI zyPz)F2}Vp|PExfuL5?XOQnm07KNP&0WD&>CQTONM&pyep;a%n!uqa87=+t9F_s!G- z9=aCb_z|UQp@>c}R)FOupc)7tRXpnx(Pf2aYwB?+GO^%)IJh$VSK6=3JcvPlWKwn( zB?eFbgnP(39+qA~r0&|B3M8cWw@C*?uUV(>ouv7USq`uF-rWAaFuE=3h-P#go}cc-5w~6{`a;$31gq=yI`n#@8Nz0Jv~lj`RNoPi}FyY#wv_Yky~* z?_WD{G1XOTh&w)TNSygaF`<9PK5KjDYvTE(3~>gRi|2SG#_$nygL%sQ(NHkEOx~QM zW2pGaz%jjNUG zGP;&w0Bz+V!$9Osxs`24OTNN`qTBSQnRi|l+#W~p$BX%Ta6AnqQhUo{>tvB{=RzGo z=ZNT^;qNOuo$2eS!(d}e=7TOwjeY!MoXQqY|5bqx^5SNVoEQ#8hM%i$PPsEaeXQsZ zp8GNq+6HxsoN!07IBWevoWZw7gRvo>$Pumm+V9|dluXVrmbJ5od93vNMAE}QDX(#` zPJO)~#Es36--|^|%(y33k`S3yEs$VFxu#Z9Qu3$U%z8NKHss{J_J*q>o5=Hzx_vp` zLTUJh(v$HIj4S3x5%eDgi3Y8NS7e_-S&}o(*B;zxpn^W=EOu{R0^+!*T`?&u<@1UY zS6S0DT%ZSu&!$OU#x{WHYZ0`~ei6FQ@mUH!=AzpR52(<)NREe)KL}N23N09Ghx7DW z7OUOF;fFi)f+oIzNDZ!-ZvuEC&bP>(kM|A)Eeap75>MMil;?-Fm4JWN2rk=a5p0l|Ew~S=YHg_eh)|YX3eC!_B+Db3cSOGQf*=IP$>}m8 zzn^oU;zQYEcQb!|sZIOK%ybfEA1McC&i&xdA;k4h3x^|B!|^A!_OJ<=EX?dz^@L!l z0+uG9{VJl(i|R4?c)slya*MO6mxrh9OV&E4h38w2hAp->iUd&0vZuH~(b znfLwTsEwR2zI%&Bql>|czEBCYpzci(v+6WMa#sQlnt&JZUZRe}-nmRe>(;vO-U za_4q*l8?%Nad*#l;Li1Pq)1OK$?d>t)17njxvaDr5_3E-R>0ymsX^EL*!zPLWOuRa z(In4?{PTg6zH#OBtTBI8aM)-0JABX1YH9USqr{wcNCGavuU)@8Ojm91Hzr~LK|7Jj znM^y%&5c^02%UtXWhyW#7acjy``>f5wteB2l`b%G{Lc_2{?TYvJ>vXapj&b@0JUlm zd$kW5<8rvXKR$WAr~s)l-0S1~<>T$`P3%2%RgtAVR+MO%CS~a8|D7*(a<}tbzb3nT zN52JxCfG0~z~+i_O)<{aPI{nFdQNmLWR0jBZEem^GhedeiK!uuEHjg-YJWLA_>JO` zxdHE+VmlGLAAGz92J-O0s@5e`;qEY60;U%LG_F`Ije%K5+uX2rQpQ zbjh!g;C6hR%1;i()?IaRz0+VT$(&GbBL7Vl+CC}q=VO*|(&~HF1m#(-<->)!XL>;= z*GJ&!7T?Qty8O-&yipT3Uc1Js;{{hb}cq0v^- zq;8Wh0nz`}VmY~ffkWa}>|oNx?gb1G{J&a&#@#X)5{YMvS0BV$v!G4L=X9?*L!}BC zv5*pjzNw%7%jWn@-T)VcEc?^r?!-hOz0Z})y&0(;7ya9szEHnhLH*97OPkbN7A`&_ zX)-4f|Etee{|tJ@)<&Z>1qDD33SnG=TcYXUd(gMG!09j|$&FUTT=^R)oxev1<7z)n zuC^2N%imNP5ub^PkBrmA+yX{}XC_nveX^lBd~aa99+_?Mz|A4 zs?%#&vOy(`&vbF`nJz;kt6%C}6F6}zb?kg1*I=3w!IUz#zZ~|Af)_0Ao+Thfvm>Mn zN@@LmT6W#fXS#Mzqxs~w0s=4f4>L|Yo%XoK!+S^PJ4VJ3!);OL623aq;`duWHIDj^ zAu`fssD0)Ce$gi;b%-M9Oj&P@D{gWS!$K6$A1Yydk&c{@dGubh2KaaHtF^_>2$clh zrwGJV)Jm_7v8-et2-jlEYv-lk?@#VH*<{H31|S{rbO^3h1$NOiceUqG%#8anBvLGE zSY@)d_-$c5;+wv;r)A&D{8)>ut1^=!{1V5;+zesfugE^BFgfI1YPB2nA)b>oD;F&u z4TI@X0gNmCil0jJklpeEbf=QTllUL;+?2~bn?u`3K1YB29I4WkOtN2ZMWz{6_)o%C zV4zqZR&_BlCy5k880#poLaHyzne?hY;f=)YwixV8`@sjYzU3C<9}dWE6+IN1#EM=-e?Ki-ydwOY=yDzU%HGe8#Uq-s5A^*w0U^h}d}7hk6V zC`?ET@_kbn$@pF}nulO+H=a`F*05?oI$qoJV4t%M&tB|R6#?}!B-QC!ILPNYWVPWc zSv%gzm&3VqSY#$YF~p4|-#otQhw)Y0YUI7djatAFwx84d(_Z>+{L+nAdy)Ar3nlx& z8lvnd(BO(`qu*)E_tuR)K>C>lJGf$Y2D>n!EnMBo`%YZuw}5nkMIGSq{S>fNfY!53 zv_}hNh&*`)fkL+alU(dneh^AQunM)i3z8#ULuXF#NV_ModdEB5s&cu=o^}5-T+9z$ zTpAbi%o*1Rhv}?@udagxS~K{RRg3fX*OPo-6sN+bdqiMXwN+r)|u%EG8!yBITdEajBt0@K&NmKkiR-`x7W^(*I=F9m;gc}CT%0_aWPU$3!*s-jEeJ1{CR zpucKIE=tGQu3~yqb;DwyGU-c=#J-(vg!d~?@<{DD98sxBwtXY8%fx?7Z^~^hY^9~b z3=7Bt+r*F&B5Zu^I2t)#w^!GX*mqrdt=cUgJ(*Zx9qB=IUT2|{N9m1cdlSz;)1xhX zB;KDSV(peiHblGkjAA(#Tz(!Y+79XScwboQOIl#h5oaQvRG=F^cy^Jqfd<87`%a+V zM2a|qM6Gu4D&Gm{?UaonEHfpqmdX=y1XQmCTgM_l@0q(4ev|z<8Q}CGT0(SlmvO@a z-?aB5Hj#U3wlcSFiPU@lxKdP7@LW+*Zuttf|W@FsALmSbAcshB!Lg_i!zOD4)IlkFmM@ zxSImJ?cu|DW6Y)kPrP~7?&Dk?mUUWI6BFVx;o5y#&a8P`goDZDh(d=_h-DXa^o7o5 za7+S;xOKh4Aydm$*kUl-{nh;%pffluIwtPuu=k!j{(Ip?_I5QXd|o;Uc9e z@5>zMAWn1H>L0Iu7OCv-WALWoAlMz=b-@^pCu_*aGYy+Pg<6M~vh^K`u9rE;rxcfz zrTlRwHJ|;8t|nIcG6bv(0~??&J#Ghl{oO`z*KW51?Pbd|%&HeE_vfg`u!#*$YwEy; zP|5WzJpD*v*1Z7@p`GB6_K|B|AwF0 zJABoBWLGb%k5)PPWL-|>3bNTeFAHyPE(-{8%eH8a4%`C53~>fWZr3fNH*leM$koJN zy;O$g)spIOC87=-^T0!_b)FTIwy;mn7k8c)g|HB@En4r{B$=+LzC$2JKGU>^*9VdZ z>>?zg>OJ;Abl1}2y$MZ4O;+0b1{?=c*x#5PD;u(}gy=OO$tk;8cN@ZHt&ZHT5N+%% z#HT`8_&HfAcs*4+zp&lt?+a1He2MUZ; z8~F*yziXNdIMVY#^5J)Fj7;3%Kp4{hYwYL)>W>L`TJoPlhNf@O&ZqV(sd$(%Q_h z9xtZCW>)%GME+9lLb&AQf2Z9c=9j->9XSi*+)00uqeJPsb?1uM;EzJYXP0OYg&{6S zA1Jn9e0<_782&2z%FG@-b>hDtOKy*n|6pKfP|k3Jk{Y~eX>@Mp8{Bqc|NHb`_t;NJ zMf;{zK&CczX7vPSAN;Yr&}TAmaQrkNrO^SSCjPg7AGiHjU!unT`m>?ZR%QB{_ zB(wd_f41|5m%#%zEAe57h6sY2kzdA~C`ezO+X+T<21yuy#HwHaPqG_<3LD`M zB_Gm=kdbrLjZZD{zcIj)R(6Y3R6 z>PFwz@WqTW>54v6EhCb-(#Mk>Oc$L0vnY_XieghN5}N!aC;A)`er1a#gmN^9C!OG2 zxzD#K%X%ki@Hv@=uL?{EmL&R|%;RqbkHlxn!-jSnU)g%)+VtO|A-pNjAq|B4aRm9G zFyOQu&67x5^nNj0=guiwF^PPS_91apnez%SPsld~G03@2beKU(9 zo#4TG+c}vhNes@gctRi<;RC$k1w_6vISI0?w6FxRrpRm_{u)T6xNcYW`3PyZG6`>R z`?oh!r8*JDmzw`;aopj@@~0h*_CCW3vra%*gT+{AgQskt5ihGWo&2+Ef6Kn~`>Y9< zrhA^|eg*%ZufGRFw`l4Ru&CO>kL_`Z66B@f=+{M=~fW+-ImGaUAHD)+8 z6o2!5a6z!(1?hUgI!->OZ<-j(s$0u1WOxxumV~dTBYtH@3yGbQ63cu{PoSrNx$kb+ zJU$5#AUt>6s|FCD4eVf@H}x%wQjPus08yQJ#Q_5FQ9DTI#mMW>g8&0t(!aW!4Q(C? znB4tSrl(D$2510qE$dD6Mqqb8{;xNba2T7G(t@n`Uk#G)(2WMY3!`Js=I(!EM^5c2 z(-qBTU^2|7zXc&=Jvir9Ygp!%^hVVDS{)HY?1&i;RShd z>=rYyG0IareL(gff^$c^s0Qiz8spfkDg)s zM*Atk%hDOdPEnfb#7Lv4hRmp-^vUHS69Rr*Md>+j!@b6ruP678D8bPp6K-sWTwp4Q?YJZF|__)-uuKht)lind(Rxiz+d{>}id8Tz(! z`O#vmJ8q7)_rgkNf7dSh1INdxAK3HhpW89=v1|J`_R$}LIXDs0+jLC3sbYT*M^!hK z!H%tvT*YJS=v!b2-7N}%IbGu9>KixQoX5gqh(v~!&1DRw>R*E6kAqKK9agh6C`$wYv3v6H4yY1@Ceo3L3I#@7rhAs6X0*{+Pff-RKbz?;71Ve`#y+-rLt@)N@3 zX8^6xqK#=xFL9v?EX+$vX+i1JI-3J{P~z$B&HQx1L|pThV|Cn}j;$~t8};Txw6t!z z6{${vV5{_e*&8IEJ&lTh+O;wG_Kd|H?0L#DqZWaaZfNY>ne!8CgB(Ym{;6W6%^2Xz zcQ=3SpI61A0S{}q+mxf!k7^R*As_Ezt3G9^)mQ*RK8Bt?o4&Wl6R1QF9n-ar-)##( zezxu01B9d0#5&iUe{`fg&n|X75tC7>91MM&BQ3Ig>Tl$2rcZtWU zck!CvD0ij@W0hGUs{4)nX0i<0Kju$gv7)q-yV_U~lHsBxa$07N9X zHZe>na7KJ^ASyHjQ_m;53NNH0e``^qm30a0Dh2=#!{F$YH;CcUpMIpIK8c7%?Zexa zNl8gl7OOA1VWIl-<1;1UDK*EhQH;pf>oYq1<;Dq+<#%Abqk3;RKC069_ry#_Q zb0wP6zoy4xoIOwyJf59TO^EUxW4~$Kz zsZFL&pW#vL2c#^D2Zptr3$709zxGeEvAG9S0pV+gnJRCpQH2gJ>HLLCcXl3C_Z^zG zr<6Rl{^kv$AN_A+qDRbVvg=YQ`LWtFH8 z?23XB)F>>kZ}-!a=hFWlQm|Y)Vu8S^<1SuRWSz%PM~O!NEjD zmsK{DHO3EJ_$z3}{d>Hs@uU)8rk*_u5LA+&O^I0fHIekKB3u=h#2M>YCikwGQCJDJ zW4dGvInC#IXsy%c1QhCVDlFiCc)~zq#H^PF>XVji_|XqVH5B)s=Ht)S8}I9EUn2!^ z%GTz`RC&N(Ddq#H2N00K#v`};bBAW=TdML=z=4lgo3H4(hr9Zcml1)lxuazIph+a5 zyiAldRWI{Lmplo7E?1^;+Ki-(@vBeGq~bVv#DXl3jAX1la>y9b7$#VxFB)@y;#^G^ z^SX6>y@*+*4z5ic*1Oen%(V5I&x+`t2 zxqz}6(30>~e`EkA34l8BPWaav(26{##^(y}+{q*A9nOjRFEbQ8RDD^s*z>Ps$2AQ( z5OI|vQskn@P*`!sZNL^7EwZ-Y=FZ3UH+qiflOZQDbgh-JOgxSt=1(H zXfGa)Q9Q3s_P!3I^s(~m>mm_&0)z0f=9N)0E`5#-1SEX&pxxLHGy#+zU+!vx(CPdJ zLdj$k=L=jD@dx{GDX=ZcbHoOx+lu1Qn?32k!YXv+@hG9JcW!cK! z(8N&;nr@|BQO>_*P+Aymk)F`RWdkQgLQfS3!dFDbRp4C%3&7{zhA(GfXM|;r3ZGuK z4^STOFn)j|6Kcqr3D3{IX#x!fM%y0HL2Ybv&cXu?DVyjxcF#rtKy80b=IHVbYUIRe zddj9EE_2ci58AeU*(xgNo|o|4?IGmz#3^y=ra}Je96mJq;hc?r`CP1r3W`CcQI)2p zWFo+!@5(|*7|gb)thJf}FDFda-_sl`qzD$PyFOR0rXz@5Nb=(g?JJgBvfb|6fZg_^ z%-zPJhC#6$A(4@oUb+y#-=ub8H>0eCPL?*QHbFaIC37VQ2<&9+j_A9;i|$)ifA+;9 z9|8y7uf#o6Z;6?iF0~5N&t*T6pS%y+uv0q_;4qSDlgEmfQ_VA91Hpl{osuE0SupcO({;^yW4nw$Dc zGa~$!T1O47`44GLd}C!(V7&VMlM)PhK!3{j)4a`Wq=B-x34vMw}z$8NdbN<()&3Illc5qXaLaX z%C%!=up3R;pexEI!M4mV_vQ?CUUlj$@re(RV!KEIz5!GKJkped6zG*`m*1j;w3+%% z{Bt*IYras9yis|)%n-ksGLrMASV!6=6X}+NUs0iZdU6c%1!`6KTj+GZ215Z(Kxkya zzH7p_|35TO`RA}J;4lbnplCR+**j^ZJfYs-PrshjCMg66W!knG`cF*y?ZGAfy+A2^ z&R=T|aM*zkHbc*$(kK=k`KULIsHORrhz{tZ9pEef1RN6c$nXg_d~s$m!n`_&=ptt& z9!TOsq4x7*nZ&(9M}bE+*JZYO)t3C8Q*7252myw-oSyF8X$rp;&x=z;*~A9y!1u;w zd6j6o%k%lZ&@AG`qxQVMvi^^oXdp=lxc*dqX!3UZ8c=8^{kQd%uZBiLQN5>M25CG{ z^3{O;$dMh3eo0bl&3*d)>*U(cE-1eB*xMG@%Fz)TapFswVloTVhV<$6Wqddb%m30j zng2^VhcI9F#{$cV#D71xjvmT&k7@YhWL0 z2b8Z|J(%lwym&k)&uPhwGwK0M|GcbufK;zjgB4bXWOQP?G~MoSKcfz_Az&WlI`)Nv zNOZ?$X0tF?GA;tV@1oDpR#riL{5lj-ssbZ+atzFy#NtJ{Lywq6RPJr|bMayA)@B2Z zJ)$pzC?galx5|eeNu7W`y5cOKR0RMgwI8nmyWAF5u7q(HK{IZiwBd$gBMI*pNyo67}5-qmD@NGSHPXmP~#b-6VdJXD|(5jZ`IE~#0Xt{~jU|zK zBzZAZ7$g(r#>sHFX z0!Ve<$Yw=o4979=CU4U9gzf1DJ!z(x1s89)ka+WN1o$bu~sp@YGcFF!r>C zhlBmHb-8dW=Lcref!CE+Ab3(!nh}&$g$S1vlqHi_+wUXt)gW?1aCP#M`ovew1E}7DFemlr zJQ|oeO2MoBc=q>fcfE+a8f1KnTPj?@E)C!riQwT$`Xea*%LZY>RNkHfPegh~mN5^F zAEk%jNYJTh1{i9K=l~2*z*&Q&$SLttF~MkBoCp2^c<8a^Ih0`qddqb+O^J6ur&H0< zpY%ujHLtzD^ZWPaeSwq8W)Bq&S=N0#3dx4?esiskzB{sO2OI%N3un)pK88fWswRdy z!-aqcfp3fTOSYKKMLtk_#NVlNr$7fi5jA9y__qC@>H4fR!vyEGKi{I<{zVZ!Mf_4p z4*%(;z2Zs6v~8h;nnvOhKm@W4=f70hgi^;!<@}poOBbf9!|`QueAUKpCss)OXuJO0 z$&ha+7VqVn?#T8}B`eK|;S%jN_2h2p$2@je{L2mQMJ?p&G7$10yX7R(S$C?zhA7oo#{!|{dL-a(Kh`8()QVRT7K>x) zk=9{8g}rtOG_)MRvgAQawP^?RHw|4k)=p5^*2U8=wqSs_mLVa=i&Kf)(e$xYhsfrg zqsZnWR83PFn5TVNxIGr+dtUF+T;g0%`kOG(nrdUHO3^$lCvvXGQ zt6yB%uYImT9c1-Q$&>CeE`V-NEjBCO2PHrqgAi^rVBnIAe|VzeD`EZG=;R^Nx{L?h zCwyoJ1aM$@G1-#_a^vu4x1$uqRtS%w_um6Nz>|!_LnzjivvINwaf{UxH#OEDq|_aX zF;O9ZmhzrjE8@%HSzV*tEJzh{Yk599dqPs_%9XLLxtS8YMaDll;Sj*&e4mo*^dBWk z_*TM5kHs3*4z8SI(l02WpAS=rFFT0Ipgkq`49NxkO^k2(vN4oaRG9TNxdHqlzenl* zo$KYA0J^>P;C-wLOq5B^0!p|!w{jHvB&H%O&;Gxz{<`UeDfmS|--p;k-xM?I7By?1 z5=xw$B|4`tiHdrr-H0LW!;L08wFEtYW|~Vz`{72jU)_J zw=1vj(EGvU^+3KMz!iptsb8z(6tjTTe0-6hc)43e|Mg#{>~Kl%znCS-9(w1pQ&-Be z`K{R)Q&As(y7~5sI{Pj{k^Hp^^!eGNr#GnWy1o;C_s4$Le*JLV?(7O~>xM~pv*U+M z`^Itip?#q&ySMZakM@mU{63KN00FK{G=Ja3PVanr8jVwEOCMJNuG}AI+;&o`j5u?@ zxsn2e`%a|RqBoyO*MxmN{hX52j?_ggMChK=GYSl9i3S?YtMX-pWyK+OJ7CYZHy_{r zP1ZuGG2j4OifD<+xF`7KvnHZ>Yoec0OzA}f0$||O*QrT@8n{n_Oo=(6G`^|h$Yo)TRN%1T6 z#~dnhYp$uocA>ZN|th}J?SQFs_ z@Lhc~D|2a>5{uqEftio51pr9sfrvn?eNjKzn%HKtL(q@_@E>`L+9<1dMzX>HAq)X; zySd%CjFgS&<0mYNRwHX1ssA&HARK9~xRkSwwMw>%{vq?x&`csvB2i-lERHLjGG65_ zccNIMF7P=pf-Fkd%hp-Q`5imfhjbCMAcO5L9Bn*@U-53QAvV{*u6TJ+EFf zgc6JGf=)b81uLGcL04eC`diUzp4acIPv2GkZr}ITStm|i8IqM&PJ6PRUju8D7#*J? z`fB*VPc#PBPNj`bld16(dIj<|O9lU`nS&NTpX#&(oUT>=Hr(?`*;;)c((d^qH6;6B zMyOrBw0pZaWpDg*&oy~FnU0ct5S_iU1iEeAqSCE3l$f{`6h?xElRJG)e}EosdG+J;Yt8QnZ_!bxdr9-SdhwyAB8Mk9P#Mw;IE>py*9BMjzEp^LP_*toPc9l-$ zce;U41*OD)d*Je;fAwk_Qm^3{O*6#5%g61-yHWFWTMlc{^!NNa=m?ZvWCekBZ%uoO z6A^V#>6!Diy4@^Q|5H@T9qigKHNTgzB!nYB&x=Cw;>cwYatbH*5y;YZ^CkEE{*YqM$E#@*fB zo#5{7ffOk2THGn_9-I_+hhjyF6?ZFe7cK6^UB5i<_biXwDeV=Cp?3~$#k=&FWhF_?{D}=WvX6j&LV{w_0rhc>Nv~_J&B)U2gC$-pauJQ5AW)`SzC9WXN!UHYKPovdc1p zmIxu?!iep~3sUT&{716t(aP|R(Oc_eeQ{NfXg@gPop+`;Fz81WKX2M7DP*B0zSl@ZER&dB$nK4=3RWs(isJ5{#CjMIb=;V9o zAI7>5jB0qlSW8%onnKc%0#p1;&LImdVOtP+LJh{F2@zx}#jm}?L!Ivwna2RTuVNlk zXp%>OHwF`rJ|y7+3O=iLDwq7Ep-J0iEAzAxpXtG+QT)0oC(*1dZ>RUOTYvSAW;V*g+ z?p?^=hWRjhfD`{6{CNHPeLzQ(SvS~_JS4bgExCX3xziAn3ly(gu1d=51fRd=(@)a5 z6E^kvO}=IgS}*(V@RxvH@DoTwg-}$?dKss?b1edf*H#&1y{vx}nft!`${u6H<(~m$ zOD|(72XtaV?g+)UD}+8pG6QO_{YN|MQIzvla9VybvwVryV`H?`ufzG!D?x}e7$(Jr|5z%F5dFUHCFc@P&crBQ&F)m;H}VZcG99; zU5Bpa8*nt;YW?7AM-!JZ*pRglEe8>N*mUD%3{ic!R!L&!0r29}D1!WG^V15JgmJ;5 z={Pq?AtFT?toD_*@^CaG#_rOhQ97foZojP)qSh{j>{j)g3V^c8V9lhe-Ep$^=!y}d zOC`~$IZY+BPDJu22~=0N8D3LRfGX;CxYu)b=%+0rbI0|Nb+9JLjDtwXPP!LEMKN|5 zJB0d@peUch+XX9>q%F*+nQ`42#@~UyAV{GGzt)EOve%DOTFmfty$*)=+aU6>-m`pz z5v%lxI$cqoXS6{?}S%=C$!!vOMRzoam2=WM&~>iGf97S}x_$oXMY^=jqc_ ze{m=ZvXc#Djd{RT?u-jfs8qXM%+P82Lr-}s$u{nN%7N6eotI~*pkK^DbULIw`q_{E zKTeo&hQGweB+6ol+do}i_nwn_OJEo?T2ND;JEP=9?aE52H<#~%OA}j|V2+OhEXra} zSNkP=~_Sileami6LvGV&&U2vW9~1A zoVr&Wj{W)Bg52WNGTH27$vLcQyTXfY)i8M0e``%KX^v0M>nv4tWzi+hTOX*sP`Hsi!&jT4N+TS*;U`uCOp zV;4%gR{zjVtJSL~k=m{>1E30(Igwz>jTQXWJC+9kUtgy`Oo{6+W7a%|4ECF^KJQADX*tC%+?azs~1kx;1?X5oudg9 zD|U(QpcY__l5cEBdu2*U0MUjf|5j!lEu!s@tF{3%=$PcCNjkSfz1qr>9kvahJP}-- z%*#&>Q7f~g4(mTRq|=zN19_9|5OuB4g=tM1xBZ-E@uHO8RER#+1aCT@WVEc-;@dUVJx&UrT%o2kvu*BB)_xcUT?(0`l z(<7>&8vG?o!mj7 zs!W~+J3$8yWCOWzzsW+8X(f5=?A~tZ6ICq%(&J8QqF<&nJ1CL>^7h#a{b7#WWGi;c zbRYF`F7X1UTD3-31;v<6rCOaMgLkHbwuQJfNoI`d%~QMif+J70M7QUp87e<&%Jg=^ zK>XR7#8WP6YDSoL#%ei{c)b>HS9QM@%cz>c8NAY{&@M_vsm=%QE8ErD1t3hxA}#zv zmjRswAR|*3!>M>0An~)CVwZfu+_GHmm5H5RjrWB9mo}ivSSr`{ECpGX1%CwcLOIeG z4B5M?f~1)~F(=hbP1c`|MCIysF<#ZtLJuggLpiiQ%ES-Y4=yXt{lEY@HXSy`p_OjE z$OJGKmmhpe4Qb_gjWY3Z>8ihSqF!%KIn9v%ehI-Tfif{J)jx||izyVwh4S?qFV@^E z#HvWydi^Tht_)gLJL|M0A70vu$w#cuY+68;J2V?rVya)$JT?8~$Fk)~GJmKt#I3a+ zq-f>J^(wW+M-ya=J>|Qk{n)XuuSNo{KQj@ z-sX0b_(qW-|DsEWy+aIYQVF?>6jWHOXAR51$9dqDZ#(rH50aaIcs9qJzs-ht|3xL3 zr8Z<;=#i03VwzhaJ6Uf>j!NY)9dj1YwC-|6`jc`!Mm`b;q-EkVk6r432N(%-N4-SA z^4Z371J>9*3NCsrh|Ioj1V*V=;z$TVln)c94&vIq&9Hf_=KbhfstXE4F}_pRW}xlI zd1L}W4MgQ*ar>}*tHY#_dVsgO(L+=-PU#GJ=sxC^JgdH>UAA#`I(-YMzjU1#VTc7u z$ofYKH&s+%;cj2M?6t~3O6nxxBLa*YjW^wu{-N(q;H6>rou7%nq&WULd?$Q|cgMcS zPY;w zpGC~7-@25nO4^@FhIHgFO)q8LC_4yR5f`b^!sAohnP$}*RJfE@lWrw(g{u;#4EF~r z>L2Dl=(Wk!KMUqHxOB@hEUeIaW|dh^_Z)JGtMuf~6kY2>@v~+uSR`Q^v->5t1oG=A zt!J}CC5`n3*Ta&zW^o!j0V`XlY*H;)#7v#$!cZeAVmtKK-bWVwBJu@|w^Dn&{DdIW znCTaza!N-FY?5ys>ybE^iaRyl_wMC00NOsB25sjUou`WQjjeWB_1&IEMDq-p1nAww;bPP8D>c0hJ-qmn0Drh0>_&NzYPI_mKi8p9=*h2y%-dMXvc zDha}U^o7%6o-AW}ysjRg8bhC6qM>aG!8NVgUA!ACQc{>*|DS0T^AZY+IwSr#P!Eur zmO~FbZ2MX5Ufn_Ci2xjJeOP_$otS3TThR9|QB`G06?wfRX?%f@S#8Hm(FR>vcW3pu zhI+=&d!%B4RQ7>iZz<^V{{vQxWa5WUSp-|MHU>k{nn;u?TWUpB86M(!)RfNN@lB6L z(kKXLp@;Gd25`zL`X$Rtvp7H?tQIH^KL27*B75if#nD*HRQcgROH7FU>`PABz0M&* z&7pmI6|id*-@Rg_d?(cFzk;~|_LA@I+m)IUkVglZeNcc(hA8TS1jc`U4(dsqTghIH zH{v|qjv>CEH~N?}08J$NDg-6iV3soZhi{^dP@{Jx{S&$D(XM)6l7kgL!7Wq1;u$8+ zSl#P^@vC~0+A#d_`85Y8sAX~IiF!=lF<<_9T?d#?xv&uzFYw^OFQ6GKwqWvpt47K* z+scGrjS}ZvCl8^c9qK0;hZ+{*JmvdlgrlDbtoW?%nS1;AU>vrxKt}PI+LCH_9`V%k zaxRLw9#yz!6W@$Df(})>02h|j8LDGb3ax84Bybbda-HW@DmBACp9`0Ggm&W@|5wcmaT}^T`G7TxWA73dJ#8^R=pxbFr&TT>9;cpQU zbhWtuE@U%vz_c4BRh3Q>4?IwO0>4l{bK$bx3EI9@)0k<-lYOQTx2)C-_o|I^5*M0< zUUv$6eDGF9R6tIk8B%&II~@6F^A#__8?P)Ex#7zAzuO2g=Ca&toq7pawy;u9d1;BoqiZquc^xZBN?6?%KHi?Ke} z5b21+s7?#E4fjy8Wwzy)!IOz=YpN0B_!Y2WWD}MZQnWx2^>g5vAaTnVeciRb?VRj^7? zVQ%zgn#CE!PY!#uab5Dvi^M{DzF25W%<7LPw9yiW6jvLocTh8Z-E_HM#unl#4IO05 z^CW2EHX}Jw(H0dQ1y6Y2X=QH~(O|K^h&TS@R8K*zH$x3X48*dtefcV zxA(RmYb%Q#Km8~J>xxEJ_Qp4_(%iAul8 zo3W-9GJuY4EKAs$n6!6WXN%MDJAEc$?sOaX6a49jRff9IiSS6zy{b4jS6x(!5(BOz zZv8ng{~gTEa5Q-6)1~cr%pX4@Vx{8wO1AQEF1wf(B}QLKd3B*vN1YwOoaBCF#WHlL zzp)*sSEFXjHJWMt``7i2>;ZZk#HyLF#o9E=Vgg5Y>=3j|%{jEos9b{7j#0o`9v)0uIZ;%@X(Lv-I1a5!~7(==05ACKn^u zXobe?n@#fdcHz(@_mD_T24=XISQ0DOq`Rs?*+zn>wzJ_(Ed)LAg(bZ5{$_%frWbz6$kTuG=bieon z(9@cx%9btx@>OXyL9EtYa*v|_Q^zB<2as0mO*c$bYQcTTk(En#<1|{SvhZB>q=Q`?Qyh&Y< zW#+kgl4cLSwqm&-HAMiOQ4g#3Z2Ad$mx5^db7zaZ=x9X5)u$6=I2%3H{$E0AB5jhn z)*&%%Lu~o#)p&($x;55a5v~-Tjy>+Mos=BGB~4yGFq;Ve;^bSaBD%xM6%T=s*R-32 z@9-){iZ4a}>??5R9Qd?RU;EjXnZR}Tpxo}xD=%;{pM|V&H8SKle>{SVP251ntO@J{tC9m zgJoa~q)xz)({La1!b5DU$dds0VL9~+#e(MuyTrHh<+tM8a&cR6b@dC7xO}R-ej^}QF4hI_3r(Kou z)a!I(_qv$zP<~r9x?keHi}^C)AMe#6^{A*!Rxo9Fq34f zCd-~Qn{D0q7`PfE)1TP-P6|`1|25@SH1*=UWa#W?Ne6A*>ud>aF6Lyf|3om5&Fe^J z=?R$^C_lltUHkT{*9`4nw|kI!h**S_5omcB2rm7h-BkMYHQ>mcrdQ1dh?uM@9}t(p zqJ#lAU{BCTk6viMGlw2~feVpm8`YVwWsu`q07)!F#?88&@SDo0BhC!NnBLF zz!*Q6k&!Dgy6fZa&)QJeMin(zI=ik7TIzYM8yyCL;^rfT&Vzh|93_q8+f)Bvk%3ds zc4I|hN}UAJg7wwnifVV?E8(4Cn{rVlN!*sdeB9wFh$41&0vDLc0IEqlP3B>q3guxNxiHx6))*7q& zQN73Gm99zcZ3pary%t@+iO9J>B}6(9mo7=~-t3zwj~v_<62ay?`;Yf+%j9CvRT|y- zWnWhc@o{FT7+R+W@Be&e!+gTVB`s!1D5W}ZSdGvf?gcTdiVu}QChgFH!M`UVQw^nk z&!^rF}&g#Wb07injHb^2eOvHBRclQgAPa&x1rV;*`~45%_cIcFtC(k5i3VZ&^2 z@sP?x_U=UR)A2es`uwl^U;QLs2t0BgO4U{Z36Ylc2U3rRxVh_dE=8wypUOLO$x^C| z1}W^Vz?S#-hQDsYk9$LQxwlvtpeK&+boI(R4~H*TSlgU4wUbuv*$09L3&N8gHJ(*x z!z*_yI8LOWG>9TP`CDl5Ejh+fDyY>83(pnSl9rQfH8#Rll_a@2+Rj99pv5qs{9Aq&I-_8TerSS9|;}{gmv&OF6%Kn>9Oh}lO(@4_V6)w|% z{QdoB=yUJ66rOgIGIv%5zvc?=;_m(T&#Xq!pOXoB^w`=Q>y-0=68p48RP8ZOmqKQpY4mayezae1{8N& znD+9dY=msdaZb8$=g=Z_n=souNmZ5TlJ9 z3cD)s>8TD7A6EzWqOoa{6MjNJcJMCguSBZ~IoGc1p^W{idAqDGSIz(jF36fiZU$5( zt$e~iHar-bkSv#ZTMHgZ`HFSR=Bdq!8d7Gbvg!u_j#WlhUm4ei-R=cxD^R;wXuoxu zT(6|;fL@D$c)`lEsr;4}}k@ z6(eh=8rCy^uxrlV=JHUN{|W7T7U|zbs>(dld-e__qx)ajIEw!VrTPoL7fo!65h3la z9Zz(%b2+dfZl_GGY(=2?yV{|-AkujvNvuuKpzM2Z0_r7-2p zFJ5xVu*CY)uFLw*-T(;8oZ)RQXp5depn zUuLEQuj-_q|L7Dkz9S0EpTZV_`HADCLS4rLakvZgBY$$VBiTu5Lc_=RWM}5f?{!#p z*Hf7}(>dj&Mm(ZC&PTa(m6f@_1QmYTuEvD{I4Fz`87!@>#8#M)vJPxH*Q#??a1tQNjwG zI%BcDGm(Y((j&Z3C4lk_=C!cq7+hP$5B-Beb<|L#$}WFSK7HLmoi@L?I`-pahAo=EA44%!_M^BhX=E7S6l!-(1QV*+_Ubc)G&*9(AO#OhH>DbG>6R9yg<3|6Se$&*0l+&O% zIZhuM`J&|j)p5G|aN1XFK>;p2?6O(*<${x+Vm{xxbQAp#LNb}Fh9fB#nDd~=$&F#C zKlog^F!v4dk8jHWbzVASGdga-mcQ+ zCmD{)g|gIoBkh%}ezZ8pazU*S*O-B$vQDQPiaiiZ5fSdWGPN@D3tf)88Jc_mv()O8 zP&H50Ifd(qshP$S>$&p90X4#lARnTVj`9Ul%KcSR*Trz_C+!651%fu^ihgpM9#@za zkH09oyMqE~$0i>RQvpRCjp+7>dTh&THmu%2#|X=HQ{A%mzi~3Xy-_`3)1}S1kyiPK z;6^<7wpjbb+xz8}mjGDn^$s0n*Plu+k2UBKgHq&|-Ce1UZ2$#MytqpwW!L@R5`+~a zF;2n@Ms6hujf{Uj{3{PdHfoh*G!|t7^cPTr*x{_jMaXG;rm5@i1=uk@`I<`3j+>gG zJC-0V{ETfVakU6djIoj{6MCChHT!Jw{ln+{P~^|4T%@Xoo>D-cCCcQ>01PSi5Okkk z!>-x(TnuU?7!FtE%q*{31Ts=3LyuID+OJqb0+LCta4=(P#q3vW*X7-EehJq*{+XRW zJpw)9g-6{!9Spg#wX|D4SpRHJw&Wa$Hz%}knLHcCu=`|vHk?z4JN>=vLZvWwGuB0O ztzbEYNReG@BT1CFjkk@#hIry@Mg@V>Ba9zQ9)eo2T=8%*gR;D2MmIqxqoJy3WGjn` z43Hx5w?5&&Mb0}+nH}a8;YO=MUzFbtHfOs_DG%)BDEhIcjbK9P0ndPObHG6XMloAY z;yyrOWyT?nBhoK7f?21^JxZBr*@Ol>?l#=?$*=WyNhrzwmXEW@Dl5v00~q&CN@QDw zfX$dT;Eh`+7G6@RYW-IJPKEc0a23@|p{F zo(Wl-yHAb0+wNQQndCCT5O3$s#-Kq{WJKj~52Zf` zmuob(%4$_?g)H^MmZk#dR1u#!78D8oj#Yts9MmQIUs&r5FTJnWVoaAJnbjYN zDxK)RQC_OC6m+fG$v$*fOaXhogr~0zaX@%T9nFCr`>wWb_8>bgx~YMS}1}OpRn8i@y>R;dW-I}$@;Vsdy5;M zcJx*^p^GQ?mczOmkF(q)d;#QN*Po;stNfv?FDlqvcSnS>1pZJ5;io|MI^0gOUkuix zr^M5Hy$>_kQLp9+t9QqfD3Eh)1vmHYTmEirHo02#bK9!Kw!8FsFcynNalg$W$DEyK9?E3pRXe81RnX%Rcv}3zjVwUDKHyLUF^x!NAaSha-=9v zjipt)y>rvqQDRD6;?F+|f6FDyjvLiEJ3Q=X!+3-SE&Nfh0@#@KaeS0`t15+j%W}yo z2Y1JeJa}X1TMUY&xxN~g4M1rDIs6$zg}G*#?VOELv)Q9N4dY)X+YZhKA=&stl6gHO zKaoyxmYq4&4o;??6X8kG`DBlk7GCCTT9fQs=JV{WPbL*${N+@}b_^p1xI6ybP_cSe0g zTJmegGXu61b81;>qudE1Q3HFYMJ@HXs43DvGItR0ORB$YqNwR!&w32+8-nv2`{ z32029GM9y@u`RFmMOC|JS4ZFWLAp40sS}b?3glB0((MzkC=TxARXCZuQ{Oeboj>fS z{H#0a-vm;k-^huP4(t{a?VkTrvun%Krhg-cMx60q$#cj?=~0fUUoCAPkuA~#ROz9v zoncnTPQ3~_SDH_HAtAcE0cg_Ce{neCAH{5bgCkY+R{UnJ9Cb4AU6ezRDOdhd@iow4 zm-S7TR=*DnguaV}?2>+H?na9aV;#FHP-?lHoBhv9n<{^J%yO62ozHTUr+*kvTtymn z%6p@&_F?FJwxb~ME$bVP`~Kn8rP8@{rT)P;0_Po1c04QJh%zTV1vvO$l>vI671Zy{h<5xCzjS{k_Sj3TkSoI(NQ$!vD1lwLAROX+ z5bIxjbo-Kc8>sN|=jC6xhUmCdL21tvwj-$y{;{uB+V$G};v*hu;%%*uC2Ais@%z@j z9n-}jOUYpu!LfL1una#&@yiz|C@Lud2NyuCu+c>?F>HYhCrC|q5!eRj8hYy)NEGj_ zNOn=Dqb&6kKj`&S?}b8`owgcihoDW5agdzmEh8oCrQRNmN`dyxxnRT?j^M%j+e|3i zVn8{=Fq@5zcH$ZoO|bh~lJ?0U27Fg9X?pa`X-6V)WZh1>4UCFxdOP3~C@@$`4OWn< z>NYEc0@mw!Ps+}3ezj4>S$Mt5edMwzf3bxM%q5kjmXY1xY}qlUX0!KZNy}!vIhI6d z-;VU^+RT`Bce!?BZhLyttaf4wDr+2%nC&p*m7|Glo}km)BAFFYIsMjpqI zD_nU-J$b^-dveBmV=4bdU|SyG-dya^`o zMtwZGyQZZw&zrBw!q3}^GU{mCPo6)rsg-0GWuKQzEMof`E2^(dt7V>%Bv7v3Fn_;~!l9x6{6*<{x-TbRe*mx$iQVUuaZl^sPn24yKZ9 zH1W;cC&UNSM`d}r?#ZCdkZ6iB=Z04f!j$MuN=bTO)>+)`QkD@(T-u>^p~A%NA<7^CwDj~ zy6)G7aDMOnz@exn=#XV2I%Z*Fh_@Wl5LRlvDX1WoLQGO!q%)??to7QYCzD9wJfuV; z=lket(yn&bs}MG%&8&7Gg_?B2PEM9Y`73gFPZFCQj5+!HSXDi!i4T&<(pHYEp?9Gx zT@``1t|KqR75Y!w*e;ZLM@_E;xPx{)i6v0rM&^!>xwuMdUTW5@^hZjrz#r{9he4EbiVsw+_JHleY!S6EnBU}1Bj^?Pzr6czA$y3=FHK-YEMRle2^ zRsy4+Vd>W*t3p6|hB6Ztl6hTj4ZS7QG>cr^bb^g_#}SdDNV4hpHp-A=^xyvbw^dYo zcleN+{cS8$6xo_-boS7LB`%6bePEE-G{Z-+UQUU4T z)i)MkryfG(?enWG9!Vdy_F zR3w;Mi2m-D<Q*}_0M>A@eejA z1^p`=HO!b3uYUE2PO1TS8g6hTH_dMAntQU=tS8J~B|xAYO+OaY9FqW29Z1%Ow_J>R zabIrbMLBcM9Dd{en+B}L|4V>J01{Ys z>iJS^V|;ItHcqyJQiptPZEp~E1odAb&!8VgIQSF0M^NRF*nO+!#XBGUQIVhAuc>4` z8J=%t^jBHDN2r)FTH!AzP+B_CYf_fAkJ||4y&ih_ z^BFp}zYYl;nSNc@_{gYNvIPo}H%;xoDpo}$hW)O1rgITlNHWC!v>R0 zj(`WdA699kr+heypl8}!o8!*`h^wDkJMC%tCA}#fk!vJuLMC8Tz0nX&sT$CU!vM8VEQu}Qv&_{jeii@zSyK}v=W0Z??Z|?gJ&*ljCE>Jn5|tTp}@ym+V_9v zCu~Y1xNBHl`h&vGm>G0b?r7OS8s{TTPP&scwR9%$BMmnfaxWa5e7TIQUr$Go+PMRz zu+_s^j*<{3U<33^D^mm!o{3L(MN{Ru)9^i)m``B8=p_mP^ta;9LSc$NIO1NNWu6>E z_3)C%jDz*+K%tG*?so1n2OeKd(XpUohp;?BUNDDcRajCx&n|Od+Gd2=E0hkJEAqpK z5DebHhS8c`LCjK0!SFrWcvoY_aAeVoXy5q-f^)Ey4%n{jvqN{HehH)MPtG2jf}$N6 zb&w&aNI)(O9zFp{;X!bx0reh5KL^GR!w#=hOknLz$tS$F)XpQ(S{O3v5vvwfK+#=k z#B0i!B>$_Y?TzQye?P6-((Ds4I-UxfAEXu+AOC!b#IV1Xar}@#k9Z{fhnBx{CuCSp z<46PVB1ypZd|?Z93ob&xyyH{6wGTH0SS)P5zvlg`M=1C#vnY$Sp2v*x+CGrToh3O2 z(}%tD{I~JD5Kf3oEL0z#c0lzsd0^O0sLGb#q4>|2)YZBlQ!f5rU-V3Dj2XDJkp2~8 zOr@TNA{7?PkNpG0yK9LmkF;*CF!ehBdyfH5RSNlu6c_SYrh^{d<%ssXl%sftI2d-H zO5=_?GJoVlUEpnsJD5wcX$Ff_I~wYyDV)8H$Tn6KNy}-)iR)nt6!d{vOKfB8qx_pX zdmsV+FXC|A%HzKSpY3NiNS=T&r7&n^6ih@%sjA5^ITi!fkD!9_4x?bLxP04k`HnnQ zdZAueXqxY$8OZZR^BZ%LETy7G#ix=pbx1nikXbS)wNs>p_;)%g-zRhakG}ZCyF1z= zCI0?OF2+9dvd7@5^!N0JE>7~P>{VRGhfRRhi_Qy~gS0?PwbB{71sW-GJVEK)-E!X>$ z1lREQI@(w^0yNU|h^aH_L7aw!pdTHtWr`e3iyl3nqr_B@HU6vbt0xRiO}b4V6plYAwC8ZgsRL~|43dbs8JcgW1czVPCZO~@h?LuBpvp=ZN}lJX5>LiX>!Bd*xo>zK*C zuJjQ^Ub87>sOFG;}9E$fYK zc?8ZmlEMNA756jnyP*n?zOl3 z&*Ue(tyc>7Lh9@7DkL-~vLsJ5PMJFukJ6T56&85uk;)q&9W~|kGqJ{TaDbk>ar^z= z?EwPx2U!5hXOJM(lBSi8JvxwZF*-g($r{j7=m05VT7RAdySyI=!6B@@HejsEb&HO> z_A>|}Ec$wJy}{|bm(><4cO#6d%d^V9QMGST=2P33E(QL_b!>z*Zqc;vs{)$7tS zQ{XUU#J5#-RYQqO!gR5thhhz4Cu-lctCcI#*$Jz!+biR6^i7u9l#&J{MckBdR^r^2 z_7#Kpd;c&oZhqTh+lwTVY2cPX1!W5gB*!p^cU#gPgRVyXA5`G7La;6YPwab<65$40 zDj?)orJ*_U?c<~M#TZk+^&Y03;}u2y&<0>Ko06c?ty?!eej zy^eBVf0tx-Rm3i$0{*yeb^}#;Df;WDpx^$qH|t!BR!E|`B_rO@?0wId@DT>>#Ep%B zz&zd9@-B3KOGHyb$Y@r48+t30AdrU&qn(y2z0)}DI^4cXIb;-FxewZL8O={IiZDuS zVXfq5jLIyWp=_v~d+>`Momj_iH_}@*LW0rA3%{O^lRkyMm1&2vp;Q}lgUV4*)cO<2uH;2C zgj3HyQ+zKJMJvPW)C{T}C}KKG#S&shXb7-^=0sAufb*U8#nosE8OCCb_>cs)W4$_5 z=0F#`gVF{Ax-&lchdX>O&Ac(CT3$kyU)UV(Q%`t#3UUQ}m#96#iEd++4 zdX|Xz?@G3v4)n?%^W;AxZ)yK>3;QO1YlVyJ6PHRh%W7wKr7eiI`?Zm^mU22O@~wrS z5_dGb2Qv`s2llD(^5?oA9K1IcQ;0blkWYy{ByyywiDp z7I_>UCWtZ$2+UMz{XC(!^}=%@d_nS#Ssxos%Vun6s#S^66tjdGhlPAdq|`A8Pum}4 za6GqtVGOpUenu^Orxw7_A%wPN)wOy!TDf@jH>O3??X-@QAzQz9RN{V)I7vqp0fd~z zkvRqH$m~CmiMVIAk3R-($okRV^ks+O{$br*XI*Ex`w!b7%9)Ide&B!q)?C->9nZ&i z&TcyPI!~-n@=Kh&<~tLsM*nN-{n)EcEB;R1%8KLZ_z>Sf9{7pg!7oi0-m}utu;Vhz zMC)5p(;4`wt&61c*>*(7P4*y!TYz1&twmK@kiue{wJr3+1Ze&K9iQCbcgy(fF4U#A zp86!vb+7q;pvfgIIjEVI6j(!dBedM+aSa^|+|@OOmagXvaJS4f@Ol{XJp^KWyHw#z8ahQI@i29o@f4Kp1CIEg=wSlm z!3PObW(mpk>XmEXeg zMN)S;%6k*;0|{>8Q&Sy{<^` z+|3#DX5%u>Zh6Wa_?B$fQwjAV9_WR{wvv~?0a)ws~+ zN#SBEZqS|jlu4|yj1VMfzkvmlhiZ~kIMq0{7Sqna9jzbslh2pS1(PfH#$3}knK)+F zG-V^c-j;IYb0VnFX23XRC7IRoZ0u;!K9B}}xkZJ-U(<0QpFUKgh zXBpnA-=g|X?#18AkO6}_CI)^llpf%>ONHL|4^ z;+|O)!G^c&5-Q+m)tO$Ux(V5oii7L%pG6^70>ZFfQJzW*k=jWpWKwE*tpo#DtOgn>d z0(2be<5&zf8L{HdwxDFqdzF#)Q-5vufzH@YKJ+=MJ3BbRDw1vEKT{nsMG;e|hsVui zNYD=`cJCdep)v}nPK@SSxC`B283mL-5X*Bfh9W5q?}G&#w90i2fMvW^QS0mLo0I78&~BM8BnHH)_G@AT_^2d;$7m)Lz9EP5lHc-^=geM^^kjM5gee)r+;&i{RVps5xQpqvSZiul0b?~eNIVLP%R7dG{= zdE+e~)SPqqBv)Wm1?5yh*YlU&etTTcN<^5q$b3X4V(a(iu4PU1TvGiwa=^!}R^hkN zbq7u9*;{VIGP)FotBg;qp1GvH*iczn%s)I&vO(<4D!vIBy)0F~L1VAuT`W#5UpuR{ z&ul)JCFa|u)g^@V ztt1rgFK&v5xL-CRg-RaPydHcNxuAj8OJVA6Uf<|McRO{T7QsHa-9hkRITL_7BYf)U z4JMnvHP!GuSkDY%n9C;alcXln-A*5w9AQC8_mlH<_Jq|&x^|_{+Q}6d8lS&A55hwUeAjkp8VqKWr115?aP(?+llmjBQ z9nl>}CDnUy*cqOufDzVtyT)!z-}zeCd9(d^r6`eT)ux-5!pm0xC8BB9qXHWPD=2YUfz+`z{ZJjrAFn|-- z??sFCQ;C&n@Bo&}A%uClP))qqaP(jAV?{9Gr`=7RH%LX|Qe$w9LV&TtB2lUSDL;%A z`iR#8ZwCt;Qy^xhWu5EE>cLEH__Yd*xn#8ygfxXp%o_X<$6FE=`VA%IT`d7xW2!s6 z^9C4dn}&TvGfQx|Kb`0_ic7lZZs|FXL&MZ;{W0JS0~pKS62lhoHN|0}$7>Efjll4r zKblF%A=RRjvYu(*?DW(sweNN911*RXxn>g_`cEY)VSf@B?hN^~2y>9Pv+lZ% z0@hXK>`x?6@l-$(Iaw9;74TKO?x;VHgt4Xd10kQCs>STjVt&w-Ee*(Yj9FSz9*&Up)@WHv}PBBs<&VSUd5sy zRNXn=s@{tvNd0v{*?IRsgG>VMeo02<8+jzuf{kVJ=|&xin9FwcE7_#LaT6GveC1bx zC%zk#N2cyCe(?SpezNDk)(JcEJHm`5p{0ggD9n;kUw)mroWTgDw~07$eUivR^t3zB zw$-(@88JYu5bi`;Aw?S8xQbmbEYD8=gr7W^4 z$}BpjC4Hi~rrYbx3=+F6ChK_{A?srumJ#Sz0CB(A(~& z#^{K7$7ly}Lsj7kflfRXaTC2Ct@A|FcBE}LfkXS1Zpz1eY>?`6k%8*cmr=}P%`vzG zXqr`dGv5zp>RE7YJcqgBpb;nt?7wvP9$47s$3$7pQux{o-z=?TBD;kAjg(j(WF7Xf z*#NwIH!J{S>KSZjyo8X{5eQAiQGdN$BIv(6A<4)IZbDRXohmZM+IkYt+3NQ-H67TGXVZLXHf!PHykEeh!& zE_{4S(dv8*j>6=nMlFXFo0Qrb_Ff^gn8tRHbVStb(a&INY7GtNL2>znkIGHx@> z{?O-T_`Z^Z(i=YQyi`PUlY|o{qa>b};RFVhhd682#$%{1x7Bxc?|%sNz1HCpR3H)(_yOMt0aevp(yd;oVVPbTFSAWX4Tzj#*4q4-Db+Rnjci0V z6WNH?h=8g%uI`!v4$t$AA6T`sCK&4U4KW>gWcoD;q8`RONwpdgr==g zvybha#gY}Foy*MGG=^m}sS^N?Wd9hu_@M%M!D98KRsLH>7q>U8V^9sM4ZCWHs<*1e zql}x90W2j}JqDv3XzXYDAyW+4Vj-YxnZeaMjC_rE$wq}QyZBj6#_Ursbqgb~2`!Ye zS=!qq(LU(bDI|CYcv|Usdz$PSHb;<+IBjyUWJg3jhgehI!C?*sN(EzZw1;eOQzl(- zQ1vHxqJH8UgZtIB%oQ}9SUZGoNOM%8q%~(Vh(eSDU_PR9h~dDI7NZ>rSo?n*U3EZ{ zUlbiJjPCC4E&=Hfq-!)d8tLxt8Xz)2LOR7E9nwx5q0*fL5s*+oLH&LF{)6pXeeb>d z?mg$+^Axyu4Cn?&3;!m%tuwM!O{;IMyv|4C+!@=*!~0OxGKHWD@J(%ZAdoLAn!#`) z^}Y5#PpomVS^K@rn~@tW@pXUZVnbR)v;BGG?k%W@XFJa;c!d}ZyC7v{{;t(i*R5XC zCyCv^P;N#DI@Ro!6axypBF}VPbs%3Y0&kNmc@rDX7vN!@Q?gHiAw%$3TaS`HY{q|S zBN-+a#~XQG)aU}^kM~tZc0*0`x*n|Vf?op=hGcf=u4f$ zhTJSvKMco?C)ZYCD)W8rBSh>Gd$vFkf{oauwm0@G4EPO{Zz-%GKDn`C@_WQ?qh^K0RS=1@LbCOt?MWUbnsvfXo;aNdp=WQ{6TAw2S08sX$)H+*CqC&;QK zwiX_mEqAs3k4|#~iTO&Tt<~++nDI>H3FUtNov#{o+k8hrgTw!21&)_+v1P0h!&_0u z$8@ugK4UPA|2u> zX`&bUF^jmiM;K@@8cPu#y+(BIaY)SPhq6vPm?aj9>=tDg2@xd*3u82piXB}~d^nv! zjWRTjfCp}>DC~*pJj!gYRCDyk;a8sx3}^C_zMH3_pv5y6^^YZm!x-MAV^s;3`!R55BmvdJ~x#L6VxjY8kBRE(d+hsE920A|2`ndePzdi zY4%u@cb-UU0oP&gK3pkjKCZ+%=Tj?|K`2MWA2mvbbl~0@To#4>;E^D2C6L%1j_=U* zdkzhv7;<5?8Q%?$T_IPcO|7G@TB+_f7Y`A_xG_)x8>dBGWNu^bp6Rwp-A-EGF{u#umhSSt)}R zdwAEs(m%3>=j*z^;&+8cjh;Vc8D*Z#hSIpM=gcSVBO_@8#9XkrOWu%GNma2&xrY1n zGBCYbFJH()Ywa3;H#pJ%S)*DY#Vf=|5E>Jz(ygSx1oRE#5hUO2-NGKiP5`qdG!}fA z0dgkvJ-?&|Zteaj>9qVMObKw<0QEaGTH^#fg@SBF=Ue*W=d`LcdStzo_5^ z6F64b4Zic66c~6@DoC67Nuv3ymiCeBBnBNHeByW*jsTg4jf`Z7t(H%7h9K`P2iTmm zyOp7cZibf!2r#_Z1)MAV0u}bfP7QZLPGj-=CN>rlA+|<7gjf~eLR~-Gc~mIB96PvB z@lB7LuH?rwA3`4EV@QLb@eAn?Tgn?A{MhF@wvzzdAjb+WR1#BpizAx9MRi7=C1lAz z9@N(JEi#rt2h=8m*vhgjKI*LiM$%uCx_|lHgKb4YU^hBo`m^<50V{NPN1bi)FS=Dx zV?rAmw?qPIqa6-Dadqhz!(jy%Kf2Ym2(Z9L>ZJ1JYIXNlK+?Y*yG-Oiux)co|JDqt z!kfj(sO}D??*g?sII6ngCc^mLPm%FSfhV@B#eLEg80H5vr1%&0W_l(o0Cq%*;;iBF zXnrtMtLq+@ZS8nhp!!vlyE=>md|~ISY;t)AsXBl?@W)?to9lk(P)cbbRQ!(Q;${lu zix=n~9WY4c!?R)2&sv6mjj;yr$u0%X2M?h4wLCUkezL^A5ZBBF!3V5Sl~BLn^F@Rc z{F%XoQh$_xlLrc|=XEkXW43y>5;)h=5Mc7nP}i`t7Nz4?H@kg1`qGi+P}Yrhj<8XA zBSV2juE^_gIBSDiF%4oXBH>@$Iqn+2wMsp-`|v7im3Hqc_ot=Wg4&NJDq)Szmxi09P7{e zspKd5iR6>zuRCNA4&eBs&a9qQm-nudWjMyb9s~s{#AlvB$lpm8Ec!9_lp>&O zTX`@r`XW*_e;OH|)=TZpQ1Y_VUya)9ujII9#S|`KGh{NkBC47IBDy`s>!?S(ea$x< z@T~!cvm5m3)d0}PR25?w4Nl%m5TwW~uL)GiqQbBoEm)rQ6KGa>tTt;fe@{C-lq*)SfP-xUSG)>j~j5Zis#^kCj z?|E$C>8*eB+E>VlAsy*xFu)^c=yAaH<#!}+0`75w|l*@E|=%Y@lZ zn&3@g{qmGVQxvEd2&wP8iHG9(R3Ax}yr?OY$g~lipPF8qGXF=HxLYI6cOOC zgqA1(2xs6hrOa}-Tr7@BqMh5|3Ur6j=|1XWUfw-Td+&n_a^X6Ev8{D664k(D)#HQ&#u+F?zf+* zD>P;&0h80Kig05{0THi+5##pgmf4nh+k+Jvs|OyK&v|^FoIbhYy3}F#=NS^oRRaJg z_OSkE>n}t@>}iqTid8B>bNF<3>HAOo?biTcg%>vbn%Azyci6`0B0rYKR?M_=|GMXW5D3@0ju878Se^{xOX$@2Za%&`o9b;hD455P1+{IqaKQRRPUx{(OHxw*{uZ2EiW&#g+1$O-ekM9IYC>z1>HAvBo7kZ(Y?3jS zE>8PW1-FDOFeD}*ghn~W3y1$gXR4bcAp=;axA6brgEN7Fg>?Z>yAR0{$DDH%W1IV_ zgu?0on(lkW`0_YEbCDbAU^244v1W^XSmIb=qnJ%1&9-)e%8Ym*A1Xg$3!4`OF`;2>ibM>q#3|fI2O!-sL z(^?efJ>_B#6-{vHrI83Z!1%q3V^}sb=OU^&z77m=@a*tg%Igt`BJS+)9Obp@E-om6 zkM9ISB9B7|L`V3=FY)`dXvjlpU5T>I2?|(byo?gk;Sk5*(^Mvp5lFl!5{8F+kDzNe zkXkBy#(}gco+K`ebS_VP=bMzk{F960%DLp7QgU#eUq%#Thm1dYuyi6i*BuRHuCCqM z0i?9;j^Bkr$m~PY zcDKS?ra7!e3@UaXy|S0bDlYk_T1WLED!7}oq1F*^C9d6q?nDS_svFY?7ibxELs3BS zOntaTtJ?i6ocphPD{`w=vcE+uARq@>cf2XWG-+czKp`$`^?LdRUp zQUPL6U-hZ-WnTeu3rW#2BJ{65k1SSZAZvJqGG_wKER|iZeui&cCEB<@1L10|tR9deaDtlkmH4|@FPB&7;&T}i6?pnoq)T})k)sB~Z2=xWR z?k=0;HSdcAiZY`B{5b-sFA+WSspGRkx$9u$mbJMciSE;6S2ZH)Vq?0!cOR+gY);1L zM~M7Wk8_4*XdBWAi9dB*@VcKmVjfELb0hZMeMPs8M($ywVU@%bNFfhMUN-lPSH2Zf zR5q5B*kDFoX^NTduJGbW79?VncFQ2QPDA@R=KGc@NoNn<&(JCi5L4;V@IC#akKD@7 zQ-AN$bG&GAxnLgI7LtDZAmExqV${)PMBK1R@^AUi6ss;@OuQ5H}_EZx_%}F6VcEE-4+JJkE50r|Mc5K{Cjm_4;<)hjraPo~MIy74SVQ`6a&bC;(et@l(fr zShi#n$VrM5$~njcCXFQwX1zHjkqp_?_W7Yo?HiRle1*LpMFC`|dntsS5m))!=u-iV zXc?=}j~qwL&H8@!?@^&YDiX~2PCcO-L_8F9NHxh0?@V?y6dd_Bi>a6`)i8D)J(p5FB z+oCI^vYh@o$2iNFe1o|RoSpbl)mrsZm543iVqy>Sfw;QryY*OW-$U`eLaE92TDU9n zJfC+;MV@R2+zFuCVf4(x(!Ul4xQE}W{JxrqxeP2C5CQ^)%=JIMUQyw%2W^Ry$u2h8I>okN06`S>Y=^-S$}5 z974X9j7!R5x;mA3!Y~}~MT*Pz+>>5<1({HMUYlGtE_c9k%^zLHr2$Wx!hFdgUY*$5 z;|h`3Mfhqa_jiR0%)COE9oJ!ZY;=>FQ7jWatft+Di~-o~A!)$K7tW9PASNfxP<Tyj%D#g7^0@@B(uBcNH*We-)QD0%$wp9Wx_b)1qlh^2Z0adoS)5EV#X4))ift%TRWYY zFcZwazkSp`xSBv3S^L-NVh~A+!`*E)~Mt1e0|HTI3<4TlS8N<`D%lSa(O60 z%HS(*x>kDb@RWWt*P2)g*YC4CLP{E_Z+vUVdz9N?!cQ+>U}eAmRvf`v?`O1z1L_s* zWqg!uU))9E<8AjKXVf<3p}=B-M0~q^9o74^D8>k?V1~~4AWlylb4J}Epduobh=&xv zVX6|TQmVp^0*AANi>{Y;O0|fzEQFlJC_TnXm+R+RqiDr@5#O1FPC8QI`e2>w$`g^B z%`WuN`{3xGC;n@H7rPqJUR5M4jS|$K%SMKM?Cf$nu2Y`KNi1$8{AQhsj=a_Lo7o(I zk%qFVMYm|lh}g0`E6@)$ zNoa6Sa_z6OsnH)f_1FKeok?C3V>)MdeIDy2J91Q)`@eKXdw_yrY3U%Zih0I9aX7a( z@t_i2b_)t!=uFWy*i}0sElVk)dyxbNfPiH9Boudh(I{ z4}1VFokr%;0|K-@c!W36)`gAhR~y8DqIh+$@N|HM#I7W;YE{d*m&g*mKqHMc$Dk1o zXJl?J1;es-KtoN=cl!~F(hJgn86u2+GPYMvtntRuQuic75dyy$5;=rvEUo!oNc112 zb*xfrT@S0;U0{piqS!Sf?$*?iA@`*70?9d-!lJZ!Jb%w%yPfG%Jr33T^B(v+sHUScfa%m!cspH`@?;m?e>^J4>lJeV1u zkOC!llS@Cx5Xa0#XA}BWZl5R~$Xp-iPi3m2W zSy@0<2?p(s_EN!&s4-g$zxY^Oa@R%a=vup)G%Wh-pSfS0nT)w?SH0LXr!EsXMpSec z8-lqCeb6vfX->zZf@S5OeS1jK`84_xaXHE_TEAWszt)3)T9d#Z%28JBa4I#dehbK$ zXp0nTq&$9LIv@(Ze)8)plB~g2)&zZ4fU&&`&VK1y+T*%pa>wG6aD+>|(<;h*Z`1%EPMn zdJ0keJ}S~tH8&~UW-cm~&h7gsAw@iO?XEW2Yoe)v!u+*G6K&+9!BpPU+9|I}RX)3W zT&VsCsapGkBG=e%w4M92q%e(fKL1`vvYh1}t8z3_HBvsi zZNOXx054TxN#1GIk3(BZrPBPDs#&3I!bV6>uDQ_5#x%hno~-g=LXM~NECUe)z9_a= zjcnjIX-;+-C3GThdy%Rkhi|a$GN3IEa%*N!plsYm3!aX1H}Mu&kVDN`n+eb1W-4L4 zuLLU8uP9vXz!eiu%<&+Hi_~ft#Uh^jla3P}tYD)wal6Y`6MeQpP_{{M>R0#EdEr0b zoF(#f3&!B9F)#-NYhP!!_+Y^l(U|5>5ovqO>lQ1PD^#`V>eANV3 zVM1aS^Jk?X^ZW0fLchStEDPa=d8<2sg3H+h`QB;dx z>fx{G!thyoyyHuFRa6Ceuk!q|ii=F$Z~JAXAhLK=E&^dg^PU#KSEt*DsWWuXR+QpE+z za5OBS+KAQ`3pI(|L8lZ#op9>H3y{)sXmGO_dz6z$eUHV^Is7-)fl0jA&7Le&o9KU{dHz2nP%C}6JON9&mD}|)pqpf(m%Q^A6(|IrFA@PB`hB0y0Uw#1u_ zRE?JG?+L*JlAAMi>fchGU;AAr{ZkZ}$!VZ$Ec6>IeFMNQYpOvVK5o}};a#%N80N-8 zj8wIgR2c5dg8Koz4d8)z(bb49lz*avc~&D*m07a?c?cNLLGEM-2JUV;hs#J^x58ZI zqr5pLD}@zcNo#`@fR#vhFeWU?23VNf8!OGk5>IH;5(W4CVe%t{s5%%2Y_<`5z3+`& zk-?}oI~&;cpkyNpm6@UkLgZ5X!A|^cE7H`oCn~0dRL!P=e=CmbA=B7EsuKU8AZ-lE z?df_6liW;`kt$C3(#-~5{&E()5$7_IFwO!wJo!ZAv)LS+H~Jydj(2|5_3inC3sq`) zs;euchn(DlOaVl$@#4ZNlT<6^BWUHrVl%JrjgV)YDSqdw)Oi$bT@oHPkK&N32%5L7 z64$~3ch`O+JQ~-2{B(38Po5V8oSO$yH7`FsZ1vT|#)s`^z;7H&OzR@@Q0T(UO;Q&D zy&~{9u3;>2&3x7fl490kL#j&iz{4!mv!e1x2?1yqAAc|eXD-zI7b_TIFDc@3`UGRz zm~S8_;KKtCjnUPJk`g)+I0#zFPXho@e~La~2wfY-(Lx5AlRPdlz<_J1Vo z{yw(6_7kU5q3#_Is10ZG1elz7SkmOD7#ZWSZ^-7d{L$qb4)AlXZaW|oo#6#;k+qd; z=OPdM?w_erdUQn*zyF%B*>H>fTf24Jr1I7<*g7<$I@Q9mb5t+6y;3_tK$ z?|5T`2XPC3g)qQVcTl|o+RUao9$U!2sYch1OA zR&cJg?Wbc=1d9OX&-JlAVTNA|D%2jDrdO3Ebl+2ma+An~FNU`i7;@j-m_8_dgrG+l zuIY?>t+>ieX(ANWdWjK+f=0`?z5(A;;?NpErr!t*m*$HubI&s597Wn;E6s< zzXlQ&nqE?9WokaEzf0^on$_)fL$aQYGPf-VVJOR_b+chzLO0U{T+x=HSCTLQfPj(> zC2<2<;p|{3r8KYng4JBVjZ2#+Qm`a?GUovq@oPIZ?BW~y!TFDxCG)vS^yK6HGLjN@ zZub}1U|Z8Pw^vd&mCG|WvwTevH2u!m`9#%wbd1MjCNxWxx>2_~>^1as0NYI|_%10x z+7IJX_%>2C2;j}XE22=LJ(_Ib`9bYo#!x43I=?`YUo%^VvH!eQI-c!=9Et8EO6|&`6Bx3zY ztMIA_qSV4^U+OSCzN|Ra*Qj@zlm-r8&<%Ym%j}|jslpHRY&KANPz#s$Qo3b5(9KY% z7S`&%5%f8gFvUKyDt52UYG!nxO%}8%%;xYY-$!K{%xOa%Gcqc4<7nEq83potIYZB3 zKXa3G%c0KgmcfcXZ}%krda{9Euut9!x}APuLH%>|gDits(gkhuc(>bQ;pfxlU`Y3v z2IAL{k+k;Hagzfat(+fP)WX5!i!R&8-ZvlSCEOS|z$Fy^f;KnR;?iK3#U;&cMGgf*NH=Nal?p1# z3U~v2OnBA=13S2c+^HOn$|RW*g*xVEb=?@)Ii480UR`8~_ z)w3veRMZizfH!@ImLMJ)SY9q<&!a}BGOtH*kt3*#$gH6->0`&tx#X=o7%;`Z@=&#Z zeX+@0Oy=YM7davsFHndM+^mgDb9xchlp?6d)f}lh6@@v3dSED>I$lN2&+tXp;$ao97pnCp(g(0m-E@_t=|#-m&w&#m0JW?qB3 z7)E--i@MCgRAlh>WCwR}O#Vh1?Sk!Wp_O#PBWc6#(m(V;v5z^iEzTAW=J!uWU&21_ z3J$^A7F`#iOrymmH4fg>UK4^Nmf2*=F}wpD1LV(yteyb&w)%4y1<(1S&!&CJQAy|& zuMgjH)wD@o7Jhv9_a9}NU?g7S!nh1-t!r>^P!}SFuSPwH^V{^+1C{xLA90rTSQOb+ z+w+OlfmvU#;Oo~J?C(C#4(ziq-bEg zN+`mgtN&C%Q_-;l<2)%%QiJ-6H8N5W6?FodZmfG3=~SepN1i5ltlxdpTS8|aQo;`I zvrTLvVBS;4MM=%mDTG2fppGx{tED~B%|ej`zX!Taq{b~=P6a@+A7%c<6Ya>JmhK2h zNhleK)lu57Huo70F`7g^n;3YIt9I1rHoXyRz`ZF#2w5sKye*Wumco<$NK-e*h5ka; zrh6{r>JsVZbVRxN8N$Hn&`7yyyekYct|eA$zuqXv9xTU&SgP$_Ep#t_bvZU$$3$-HiUSxjU44GfcAKl=Up&z>qB$DW)D#$l z(17wPuImA~F3*$PBn^XD#Yi2OtrknD<7%B>6tUFxGK*x03~3W+wfct9DR{-YNHoYN zpxjm^AVlpAL0iy~olD(75~Rl4=d_*6?bKV;9HTX__vNy?k7N8CUdip+{mU7fK-RTN z$m6$NN9<)9?S-f{<4EHv#7w{fePc-k1NT#);6GTY{4fqm^wmu6S)% zj#JYJs8Z^3>4&F+<7ag&df#=gYngPdGtColO_)TSo zNXJ0889uQtqAN9UJU|C#(tvsJi?_btC?6r$u6-4BOaI2PLw65HzEDI%0Rel0@EZU4 z^-^;fjzcrob_8K+PM|uq_kAbCRM|3Q?eSQ`3i&#__#SF$;5QcdNbHXd}_Kgd?Z!UDBl6tBJ(rq~G;D7XMmV+flbUs!<@GuZYN4#scHI*iGGHPImoBs~vx7iB# zoy*b>6C|AupX~cMK5LA?k0XBbSFF;+0VG_@RUfJ%S$Rp$kkpaK+ zW$r7?{kKowPL_dN$q>F+sz(ozYh6AI)6XVj+@$wg%jMs}&-cliUdWSp^q*sx%LI7` zt_c9j9K87X{NA^u(Cw8(xDQFdX7@h@q*@g1*!_v5ilkC&HscGk@;Cja z$Ll%0vK?YU@{6~DA`6t>Xf9OGHFeLk;N@~U?7V6K!`???1 zQSU^Nr`85Ck7*IeAmUe7eZY-MqfZlb3L^^?3V3Ix9JU!9RORs8WKr_r37)G9`0q)+v^4BGy3=Q%G7)Y1?SddYd#ojvV1+U z`VSD=aw8}oM~U4N6a!>Wb4r`aV#ecK1_nQ{yI@!i6@rq1U-fS)prfNOq{F$vHS?pkD39O-7fAr$~IrUNxtm zlq8^Nai0{zvtUJN`;CmfPUzXp?Dms}Vl2@>s%eLRl#By%nq{_(HGPUyvJ~k4PE2>_ z(viaIk!e%o!*1p-f3!w2)`hDrt9{e$n|tgz zy}fXhY4{3uXr8(#qIYe4kQj;2< zoqH=KE}^9A$(nKYu7Z>FnA-qLal$yXVSefl=I}_W_)vF4r3=g57#<`sfZUc5R2U;t z{zg~agCnCYEj@Yz9o_1n@cKh?@)43<@Kr(i3;4P4L4x4OT|6kJ?JmM0t47qA3H65( zxCkS&%){quSj6eA>7%yGkQ@fx%Gz|)pT^j)T^O1=9a6VjG~ZY=hIq`bnjB6o^so_; zxU2|;oqzO5c2c8>*MQtBsg)S<;1|0!oo^nICoNxxq-+?J72$iEujh3&GxK+*zEuYA zl+NUiV4ubOp~H#so!)z_DrDC^Ye-y0Sc^UKeh55#?@KLh zsD&)<2Zt&7ONj?wE8@EOKw;mCGL9Z)z+*h`ycc2I^k>sK+AnT5n}m7IQs9fX80b$nER8a0V@Leu$KAmTk-$lQbS)DZ7%`X z3=pYXI(QJZ{kFA3vSaWJcm7N#D6Px#PEow}6h)*yG8)@lT-$_ThYDxwL6q;}9wAaU z!QAIS>yObel6{be>iimMm4~P#ztjoB>wEW+2{Kj^tQxUuwXFA_w03iY`H9mYsUpPDu5A)XEn0ugZRVy*jhzW3g60MZyuq6=TtE0^B)e4k#HP z+t1ZS)Xks-BShUF=I`UngGcYUGdD2wQfonzn(U?Nr-hdKq4U*gx5Qc8n*&U+2K5`R z$2ZS>PP^RAZ~KOic`wq$vDq?~NR#e5B_uX_Rbd*5G!31Yx67bRNS!zS70cHwL8l<{ z`31QM+z7iLgtPb{)_x|?N}_#y7uIW;nf&)#ty9m2%>u3tQ18zjS%&R$ZA+%0fRHoI z`Tbf7P+H}_VW|R-77mIjrt8-bRW~${R4h~-Yq@LjVZFvoQ6@=niQ~^*WVPTqk;y{7 zyYf+ISEI}E!>@-j8)E+Z`|QC$M6no3MP?+oGEkMt@Du7rJxe|Lvv7PNjtE+rCbQTB z!!8o42<6@96j+r@Cs>Onb2xY}fFU;!M9|ptF#!_0VtYA)pO4w66NU@0p0y>;;lA`J9?1ryQoyL9hR{;J$8Uf>`ffwRMEITA>)Cl8UF@H@HBo8BB z?lj9bep)>fuvwq0@wS)OkFf1stIWy?Ppk&J@g0rWwLNI&2h*&^2>w4nWQ~`>gwS3} z6WghED-8czb?~V*L-fg!0{U-Mn%+MQ&rkUhwro0oL&!QLti*3#?Hg{hX5sVw2Nr|N6Qr0SX;Hv6BgyynsuKRs<}RS zHS`%r7!B~Im?Rq&8}SdVjs}c)&qf=v)bocK_{SjdzKVX1-x7U57j7FuMG%@BHWWTq z=b!&~=VpK1a2%d=9F3gq^7(+t48&nE95yurVM^bB%}Km?4i4#aw{b5w&9LbBA2sL= z6{9geVg<;2KR{_dWZBnC_BTY-Tpex?+00gErDd!O<^ER)FZ|=p_J67BJn;TLJ#v-Pp8vc zW4B%Ky`1$+vFs^GQn}h=pCX~NDs;emD@Edli?UzCnbLH(L*7GqLm1D1=EfWr@wX_A z;z9=$u55Fl2l#&-hgCXoXwxcAyVQCe>t?RThq+obMpo=E-RjEN7us3Uz*n?9Hx=?Y zrW;DH(X80j7riWqV~u#6hfX1s;#k56LSbRX{nFa)-p>uwF!3w_q$$nX9zk=m_8@^$ z`t!SNTpzydVl@hpCiH^qW?|j8N$e>4G#w>qvP;>>HT4m+n6z1WlS)SLj}N zo@H+l?e+MRpr>b^4GFzpe%{W=12ah)Q0yaFEtzs^dGGPjSd?X=wB+jt*#fagRl*5s z_DRgTBKoUE3&rMzy<#0WU)46AR?3V2=-uI`qIF|FOx{#t#Yv)X0PB@k?PByTEf#Qvz&%dQ64Fud)E((Z&x?(EYg zvms|a5+M~GVGa;Jb44SGlWxxr5cDw1;5mz%^Z$iPNR|HgJ zUc93UCcLalpULQs?km_6+_1wPO%H{qQ}lF4`lAVBC%O+5sv(??d^ENP0Qq4kL(fd( zTOBqu{7Mg}9rRi~x%cQThE|dD)g~QX_`}WSq|gb$SK(9`Hhq2nh&bNb%z{;u%@rFA zhX&CY5$TyQWPCk~_#8Z&<2W|uUU(anTPc(GWfJ3I37(eqj*@Plj})Qys4wR^#)vaM{&P^u^!UN^M$J7};;)ffjP{@HcSFu!0k> z5`Ul3?8|JwKr5y$rq%5*BW+_D#<=_nw-v!6|^B+QrZe^7|;A#InYa1orW zS9z2?NH{p#uCDv;v)V$#e;lKR;0Iipr5*NK5uVj}1`78Rpq^vR>4 zkIZEDWQr7MkKb5rDLOITpE9laY0~~m+@5(a7G)iu%wy{Q@X5s$ASsuyJI)RBdFM2d z+Fa*;v;J3%r%a|aGc2Q~9yMiF8|v~Cbzy%J7S<&`bN9uYSXEIZp zBSMFt9|~#24UTnupI0!_O(H9O@X!ike3NMO7kz<*QNY+egVdC2Rq*y^jR<}{Q171J zxOXV`Wvr|0#aDa{w2*p%Aq@3g3&WXGTN;YTc3DiGRKS7C>=HJBZde!7A+&RA_Pa4OCCA|P= zT5AS87ho*5-wNrgw-FraKc2HSYy&&knR`&qY7*DXE2EvsoeQjs1z13OpG`Yq+zesK zte4^sB=)IYCRQOtP`lq6txtv>iF>qkqeKa=zC^*o8nD|RhXzM`aDK@sDtVFDJJ{oI zRxz<=zVgdc$U~oF5ZNy}Y}yL&T+cCKVU-!mo(aym^Ei_W8#WI)hgrXjw2#SRo*Ar5$t8wj~f` z{u+<^QW&iIjsGV?clh$TD>g3M5P4 z#c525QC6vlZBozY@+?cgY`u{RLO}FrG8VArrpLd`)Ubz^QDd7df3#VqtB*;SFsS zw~a83T{}Dw+buq57ArW3Z?@O4?*k!g$)yV#;@7pqZX+U`)h_MIovnDQe0AsbXu+tN ztyvpr8xKG;>VJTaEFv<}d{Bnr zoPqk*(!^%GmgW9-_MLpk0lm6B+hzEtGtT)Vbfe=dl$Q&JV$8!v;)hT>1A68vt0}>V zyG|{1RMM~UhC(q5p#q(|KDXa{tfxyz$fM zeE@$^Z{~c;NO;3>S>iU|Z)Re8S<>_y3ch*AwBgEFvM8q^HG40{yp*r0M+5u6@2#$#kAQQVXl``f^ub1Ioq25MK+`m*sQkX@W>qRnh1-HCqNU{)(Qhf@ZEJ{Y4x z==^j^5vbkQ_O5Yw(@5;+iGNrHI_;GxD!9cf&!%*#{|%D*cQV+Y3@I>7h#EbnEPC{r z8NLWiR-5O`?KMk0WIp_)mn+rvMksxj9qvR8~l7`E>ne>npX;={&)SDs{5|3jm2D&pRQ4OlbXrd$o@h=DlobDzt2vX zz@w=x{39>XQU03H*xxV$=teqEvIU&WejN<~eyT%RV^wF@R>aivalPH+=Pp?0 zq~hOK`(*h$;O7fe>8J>Q{O1au2G5BiEtgH{mj2mpAp5C#jGErg2yorZ9nw_*|2scu zeC$vrBj7Ad*BhA5<*{bpX52tE+aFcB(}khTrbS-E*-xP$VnZQ}4cLJsyrX{v7uh)( zw=P~Rbsb$V@00DKvp_B$IsENz(B~l0pgcBXdA`faCe%mHy-rH|VKE zHD~-^7_b{W18kj4dty4{Z>x7AMBY3}m!Gt;wJ#qhn+bhhrg_<=NpP-#j*6JpV{$JH z;AbO+UqdN^ET^%#8LA^;Vb-?TpJVrVbb$bOA6i-vD*E_8K75pzUIU&xTxs$wZu*1R ztInp5dNEzinApTG?t^H3-kS_4&;X0pC*kxQ*eC=Bk**#-?tP11SV=jpt#fE=&{^8Z zwUb6WWk*WSihj8U_RJC^4~6j@Ft4ldG7O9?rqbz$c8uqycP9c}p&OP!xBq1Evh?W( zq^B0Zl~Q(~Y=mZGu!v0D6>I#wHfs4i8sO)gss~y6MyoDa%*qGP@?Le)b%8{EOeY)N zl>V}Dm~70@!DaH2y9{5*Sd_R{BJHbQ7i6K2VPPGT3i`Iw|63yTlNnGH;Ic8aww)Ci zvnm)TqZopns`y9!0b#`VO$=MK1fPAE8=WYAI`@qv3nXf&t>`^I!`ckMA}&Oz5_I` z4&>-Hm%Qrmn0h*JVaVx{!3MoM5FAYy5gh7Y;>66S`=D}V7_dxo7*6ykX->wlB&}QtUlaTz4Pxcw z9!?q29dY!1=W>0o3w`k<<;h6%)TO4y1Jjf0t3Q`>DAt#V3x1hD2t+C)m#3DXshw^6$Px%6!6!iD(0_UTJ3NTEiT~vIkM|G@EOxZ ztAR#9Ko!bB7J8S==BE?- z=$FcQ<|hTrU>~TGFq2mOk;eZX2I4FS?9-|algTofFXgfIa+=do?*aFz#>v9vp7s3v z#rQ9gsJR~0d;sW2+I!uIi%3h;bQ1KXm@(eH5l^5}xChG|EraqwRn3*=`F=C>W&NrND>+*^qg+ezJ3xo~6YryD8m58MyPX%E@+}44 z6t@vbEILa+wGs<<2z+W<^WDI{w6(J2vvkE10}7Ln%4wCB$ICAe4{Df`aKwbR>s>XwAOy=5L8mR}F)s(*8W2|f<<`2P`g)d5jHPygr+kr1h)L8Kd`K|16Fq*LHPO8V%QlNRZ&Bc!CI zMY`lji33rIBMzn0_woDw@%!s$c4wY_o_ltm-I<;FET5=NLQxqW>v0Sfa2lvY+aA`5 zAnuO(_I;Tnm96WR=adIq|DT+GsVqQsiYNQc^9>&23`;iIM`eoycp+2O2JXA#+`{V- zfBL991-ASSBJMiayHz=uxv>rR9sl*>tT4Fc@P|sQ3Bkd-f%bb~>(6kC2}nva$U&YZ z(qnOXRe*V?uzogq%Be`9&>y~b@-MkJf0}PlK-%>LBva@Fw?ww%gP{ZfAM`OD6-zNr{F;F4cqt}v1+Vgvts23Q zMozPVgS=Bov?af{Y*-O@aZUG&eEnCfgxS-(cq8*-|M^uf8TB98n(+Udrn9qDTnPW0 zri0J8pVe->TD(jLW@*-uV87_>d_+gS+)?Is2pgpD>_;$~T9!ieM_|kpLaWhxbXgcn zrch+C4&5#XI_5Q0caWXX4@K2K5-GG;)S^ytLirpT?lG}2*qzGOeAs$dzBD>{@alBv z6Uav%3eN|kbelp55taW}F0mzaGVZ@B+>G68|)1NG&6 zv4*n@2o3~+J!lKkgTVf_?o0xOO%ez>^(oXlIYHSsla95cS~l;UMuuB6GPT8@YzKb6r# zlv5(^KOdx_m!iM>ERS66X}p`wC{P$DZB2ipe;)_3-{LsLgu|3&=POB`9ZY-_Dlnp0 z(o*S_MF0J+>E|EsOsDLCD;!5h>&4X`8Q?VbrIA5J(z5cUMPN(8!?TF3GgP~m&POnF0%>$S+u1*-#}=Hli-fGSw$j#EJB&9BrI%hG zOUiM7aNlzBfazrDYy>+1ERv#{wbc1{;2lByebs_uA zIpUt6w|b2$POG>;xLdV|kiIT}O?X*CSh1G0<(G>U(lPG+HW>N6U?eyd_nSKqHw$c) zYz19&PrB!RV17sDw=}x5U~^%qHxm5)A2{LI_ICQ;vLD(%KO0I4w=s~P2re5Jy#|X_ zG33%Ok}pX4vd=B?hKp;hQ8M{Qi|g>>OduG6ke^^O!n!rI^W8lcg|`8BwBhS*SfFAg zM*x!)d294p3~f~Njrhgv@%ygZK$0W$pZ3+n_Jelisi{0^>0(CaAWOfX*1Q%$SE~$) zV~s6J#|N_sjjW|i1F?5PSJ)?LA6hqYGf^P4{%VfHMRQCKSmTQG#uOoc){am>p?{G|jHOBh$jRk`OQeeX&>*nJ$lx$Jk9_9@~S45jnF z=Eu6KRG?`>(+}e>1A?y{yL^jr+zj{Irk5dDG6q?8y=(0uAe>rADM*6$S&pE{SGdix z!qRGJNcfch6dy;Rj{;6j*^&YfxMJ^91RlJ@`nTGN$lyIYXORRwcp=TnXv406yh(|8 zPuO~Ewspn_I{C6$9uUw&pN8$ofN!kRXg&MSFvQ_2TdL2Y5f3MSTxi!j)_$+A?=^2C zNP?Jy{{j6AV4(D-cih^9_k=DgJZ%d9i674Hs4ghJymw{yQNp4ob&zaSG(^&l;@+Ii=(Sa4SbB5je8|MkAAcu^n>c_oW7}Gi zM{Brp$Q&MUm-9M@(q$TEb425(ZsdQrY9R3u5_{9j)l1V$>_KP6V&%&m*U8mJ(?;wR zHbs@kqo;P3v|sRwP9naAwnkigWHm~fPBg`f5kQR=eG0wuJCXO%U+!=2Z>D^h|B1~= zB|quoqjJ1*k>?DXX^Y@C_HoUiHOV$CP6dYzU({g1i~PR&Dw^zoG71r)f+E=uj)x6w zirW-|F-2l=4DsxY#{Zt`#j7#Jq5`|JOI95F9wo`H0N&IBSANsnzjBeLfY$rn_>-)aFq`oDrKk# z_=*Gz8eVVyfmrVJp?N32K4z^u^{3^`eQ?GmCo4`AFvQ~w{tJL2CH>?~g?shtML#wK`@i@n8_+>CZjI^dFJt<= z1=@f^dZ*r108UUbmAq;ZubMCORdBF>a<%^+xReUSw3EBJ;R3{PSfobCbGP~$tugi*)Tb3VXqcx^c&k#`c2^kF!@qJ4M$X#0h0^p4w5D zD}>9ltLrWoSVXKQJR$uPW3$t5KzHF8fG347pf+zn@=T)C2hl!b)Z7gXfilnGRL&Bg zILW0(v~A2d#NAFXo-Kq04pShaHNQ%QXg|bl@qS>t<(Zz!t>B5XUUG3`0B0Xv4G5<^ z9*Abg6K^F6zvSgjdhWBzDy)#`nKw0&O7`>DQ+JNXBBRiNP?xdSiXmF5fN4DawZ;2! z+C0-;CBEGJmnVB0@z-p}-aAsCeI7d0{ z*nYD+s2Ubs2GEnUt!)gcPozO#NV3;|ax6V_Ipo3pIK|*F&mn{IRof~|if!{v2P{9D zAcwp2ho!D9F0B_A4x23|@(O~3jj#PYD0XgEsfV?G#QIRh-=y3(f4jV0Wkj=)&JF2u zH<++~GT0c~VNa>})DM3}vv7m95-GBdn7GwNJ|8K*IoZ)8z$2o;Sy z*m3)BtMd47O+sQE6706mk64cX6*~16=|MR_)zVg547$)>{ zvlKrT@w4ze<-SNmt-z>@aFM*=aks=Gm#>L;Ty6MGYB7fq4!lKg4TxYmv6)32hCkdM z=Q)Aq7+0-C0gDcH8~{$n*|x>AwLuj750{mAgBpCGVvC#sbW+|0HKZv5KBElrTx;Kf zX5aCE=r3dnb{o7Fc1C06_Z?2KY<_oIq(n>tL%G#Vh`at=bIjkO#T32ld`D`6HKmYf z;qPFBP3D1V$S_@CWe>X^N9oUsXKG#eYi0MUFG+t!~t$G)+fe z$(codTs(9in7JQ#-E$Ubn7~&Qh*z!FNCXQ%Lbes3mvqjOm+>o-lrXC^X(hJfVZp#2 z_yswgl5G@{(V~%}>G!92C#-Vi*jHkF9|Os)-WdSaw|Af;8)Qi8P2=MqJ?A1eVL(3i z9aZ3p%VF=A5sK_y!hSy=l|;ll0Ew81;eL(yF|J5LdZ4suSIQ*|iEQ;Br_6U`QCUzp z)r5knm&%q&-qMs8SyLy)tKUp1m)ysxX1b~ZMX9uy?dS=84ru|W!}d3KqU0C!(uF$7 zOd`GMvBOdVu8xd&+zxlR~`yjEC4rs{4eRTrc7>FL1n_~kK&O>yIXF@M zy}OCIBvi=5e6FA1KKA>;Kd{&5I`Qs!X_cvc+_TfWw0*%sVB0p&NIInQFg>4FlbZJl zwiS^($x6S2vy>R$Pm-CDz0`XjkN*a!vaS`*U0a)lb97*9^2-)o^ve7mflg{}QyUQt zVs%kuNigi>m2B3Khu<0XtD_``FCM^&{ZPG}QMjCWjTrMQA5yiz_VGJidJdjl#_v5$ ziAlvgEa>JiCVV2eY+Sp?$L$C3*9@7r-3qmy>q%n6MGW5#>K%&A)mv4y6K4_08~f) zu46)MCqlaKhKjx)Ue7zE6fJzZHeO&*dA2}>*&YWg6>l@12YyQ|=DB4&_qIzZ$`aiT zDg7~IkUk}RO_a?+_*;s*9dio>6qdzM^*_JW)gJbk#7o4MJf>-3x!#|7=D$9h45&+U zP`OQClg}%psh03#TXCg2i}%@6#luJgbl9HJ;U;TxR15wi$^VgBVMkf2B~nq6cfXEE zBNjC{9$|Ac-ukKQv80p^X<_igjvh;=h zq#x)Qt02!J2rWzk^mFXr>mC?lX8*9nub7~o$4LKpr~3Jtw7hloc|^y?x#m^!6MNoq z_eTR|7a^5*?9<>sk8-tyC~oB4{-!#KRXIcM(MD#D^S4Ud!{2(iL>Ybg>wm#=S?p#W z3USqmUswO5@Q0LLY^9ml7+>%#&xxhl_@zY4msh|4{wV8!K>sEsxn`g?u@=vZ~! zRL}@=tR{LVO74Om6A|AS8n0JNL7qauAh%~8vv?mb zgp(CKM4Nz>@F`*Qq}Jybv~xBVxe0xZ7M^RVYI+t@=`$9aK1D4EoTEl}NVFI;u6V8Z zR%w!z=2Ga7=WFiQ;0_+BB$Dmxvj!>|m-NlAHu#z$(O2cH1U&fs56@}Md7mi z!-^%Q4>He>Up<3tyT~+g)t-gCNr zVaQ^J#>3J(hyj?bCWUlSF5*I&0G)~@UkEeu4DX}Po)zFMoGg+r+s*O}HtRKz9TXV) zo+2}yB;i(;n{Q{bcu9$g(>GV1)N4HUdZK!H1ie4LPc8d?fYsQ(#CH}y`Wvs`f?r&E zVE>m{who|%WRSJqtPd(`15^ZGtLVM?j3CSV2-&y!-9Kr)`+OF=V4wO_X)KB%85*s> zSLuML^fzW^JV}KulRou3Q6eXhwVn9{#fbu>a?+w=1Px$jG0d`R-DT*FG>SqA?xg&Z z0+SG-ARQ_BT7tySs zr>08KFK9V0MnNd6rhAVmONtA(aI3=xQAyq^Z{YpxrCAb=tXj+4i@puv;)`ZQELpWv zo0*8ILdWc_4Qutqk1_^hirqf5B3p~R)xY>D9-r5L_IjQ3G$g;o%pkC6lx|0VkI))X z2^*u}NUVy}ckQ=AR8oG!BC01ofQnD=Ig9RMk64gq28`3`usd28N-jqQzANUsDB71 z@p(n_7`G5T3WDU(zGF1M!qeBS4F?!}c+#&VqJ9L7ypI}j_{V-!5NzY}_HX8HOYF0{BeDS8#aZ|c0;jB%zwUz%=m9Z{37|$>L>9mPRr?%nNkTE%pdCftG zKiEZgFLSfK4ZUL~82%E?h!h<3;>#_S8^+y$XiM}`50g2lk6X*sSCOSz!+*ey)lDA! zh|zE12<1&u`JzsDg}q;e)d!e5ZMQQg!p|<|B02%4Y4(|$^(793u04b|NmPpQy%5*K zLK(xeaw&->g-18D!4P%}Yq8IVm1bGSk}XbXZLbdp0qN`7zh!)tceTAv+7!mzb*SZi z!8_Vs&6&)c0ZCm|G*Z^h@J$}?4-xJzZ_BbaU+DNz-%9sZEO5Y|#qN(}ykH7;!70kx z^labMI8Z}Wi5`BTj+0AQH)fe7EL_H`uaJ6GCyzXM*_|VUu}G}rQ!tF2pVf6cgFqNF zAk3y`vlbAi#i|*+{iHndS#-r&Qxz|{w+!>l-M5Yky<~t9{l;?d?@`r&nG0Mca_wGy zn-%28Gk|VKzqv1VF?Xo}(EQ)-F|%BJP=oA+%~f&($Cr+3@N3=}UDRH(p$fXNx+s~W zI`P|R7IT_#ob;0J2U(vf?}H`Yi)Z~BT8)Vp;(w4Uv@G)It7OUWS43&8qIQL*2Tu64 zA$>Xl1mEBx1l~^(DLY_P%wB|7tT+`dR-Jt6O@i6nPxR@ta zy1FVb(e37)r9bsnzmn+|*wJ0{-_iN)?WcaFC4Vpbli_xP)>>-M`xA)CP~OZKv&K3b zDb<{@$%CxUaxpxe-+buUlkz7{8*_3BQ#?jVCz_wp-y!DwQ`GA!4jP3GbgH5)jo)>C zuNlElhyts~D;B8oczbeXSVO9Np36b#4s&^XT!X+N4%S7Ir;351gZ_A7W%_|z&e5Ss zBBx(`fPw}E}B zk-XYoPk*%6v={vR8S_Y}m@xf&|6SGf>CnspQ>wHzo&*Hp{DT@p z(9Y(qN0>`{G1qMjutq?i7d0z7|8c&#_{(I2X~g`kq-_1!^^HQQq{(>8cg8W(ceB~| zCwRwDsom5-7{Szra9z@h_n;L^f<)C-PM;GSuaxZUl?c2lMd)HbQg)W@=D$g-e^hoxf z??=R1{JhDZb=PR7FvEq#kE)bLrBzRjt5cXct$5=gviG+s=R3=&cay%3m@}VB?-oe}@#U-8feiOfATXPL& zJ)P6alOC+8z}`I+^>f)9&)fXPr}9ZQsj4*B%vA&tAg!5txT&wbW-{tQ^(Ym*#%Cw) zbB?#ITM}TD#=iEp`y&;`)krda)5rquL;-X}T#^)OfU_v+_|yIb-@1igZ7i-0IhLPK&Fp?SzxCQf9D zqTMwnCqb^6d~%^0^i~o^PX5HBSf!&DkKg*L__d?E{zo5`1bP9^;9%|lb%QIlgyKwo@JSLJOxQqWi`$^WNRTx z5&&l>P%1H+Ev5h@yvV>?cwKFc`SgU(dH~p&wWWuxoMG&tVWBFaG^l}q@!!jTf&(lL zX;&jw1M1SfA3I4o87B!sLy<{8seYn=ej6Q5U5smuz*lKZp+Zp>kdcQYO81pa-%#l` zmKxC0p4{$?BUg}eJ7UYU&4JF(#E8f$P|3@g%PD3N9sJ(U9D^zpnn>+g0A%Q?gfK@O zP>=)dB1KofunvdGlg_LKRcj3pk%;tk1=o?@<-moGA9zN(MZCbHtl-?i|s za|Jm3gTA&j$i|DNHJ$t)h2`y2Zpl7B6XQQ4$mg7R>%1#d$q(eoBz?()X!D;X_#}K* z_JzoGn8Ej~j5UUH1S|cj@r<>-)(jJUPMGc|=^seX8(Ls6;Xc9L9|~kPtIFH!pm9Fw zUCmD+?C$}s*TfDBSN0D#AWjXtyzVRGDW*|{{2nd?Sp}PCHupsK_WF;WCubCFwq`J9 z8(qEHf|!?_P`CZ6O)(u${QVhWmI82igCieI^5w;kN)hdVx4Wr;60T3Sw8QKE275RC zC?)`6Zg%1<>RJX-nNXLUS1v)ci+@y?!F$q)nTsHk8{{{L^m+XNf>UV5T8wCy)=Jeg z7L@XG(TyzFbgWgDu{0W*lLo=y=0pr-_q}yM@+~((+FtgfDM_=|YAbWFJ$@KRyebOs zxF0h|wI)lIKawj6ZW)#%gDZ4q1;YS5uFxwvOVs| zzAk;~+R=4_5zn(H%r0*ythUR|KTVHDQw`eZj*aZ2?DKwKr>g*!5>#wWeAd-<*TlZS zbv|&YI@XH~QS{ae;d8==KT|oJu}#bSS+f#r`LQqehF0kv%+f)s(+;nl9DD=U&%aJu zR;QYNc_Ag=!qTMUWoir@%lrFfW$yCri>Gv-FqbI=JwJiNRQbkSIPNHW1PiCklT30= zayq&F0iRf1p0|*bxE^1U9D$w3$YDRZ9i5}wU``CDo%>i`glTG{NGZ-hTz|QTR^eMz zidB58s2i3UlbIJfbdIL-pi1vK)vump(eTN*CyOS)@v4{aC#8MWON2NZs+mNRCm-<3 zi;vAz;4aIs9jC)Ay|QJb0WKp0eC#P4dJoOkU3SC|{RoX%Z*9b9v8jY7S@eTY7lh61#V2!oQB|*Tjpp*ADi6 zYeis-IMkY~zMzeWmccVV(cCUeRscfvsvfmCdCQ{36=fL>nBsjyZ=;*(0 zo;tlocW*9H{~d@-!Mexo`MYYn7|8hQj05A;73OkX%;knOvW|qg(unl!eH*WsYO;ge zNIqx7*=Lb&sfpM9Z9RF9-r%JUsk|@z4Z!KdlJeZXx`yQX0hf#*b_n0i!oQd^6?p{@ z6Ogj`SY zedIdJ+gaWGM>dcf9LAKpv-;pKRrWVP>Sh$_uJubDV7)zile6hju6UJs_xVqi8``xw zfqHj(&}Fy6IHsQW?g<{!Bi8#zRa3(vb+5fE>upZ=-HcxM%JIX<8*;-J5P4(x!mll0(Ax(YubpLK&sx@cQQ7&3sfv@1# z*yc}?H3E$05v%6LZT!xg>3O#$0 z=9Vg8Yae-Zoks?6pI>TZE{+dgKO_PKpVvhCRLKnC^a^_a<%Gw*CET^U9wX?P=KD)E zsPdeC*ASK<8d@lF%L!MfXGO+b$8?|nitLU4ldeH0vY_F=KCzd{!<@n-vSR*s?z&`3 z@YyN_gtbYn_YdeW*ZhWRFocCu#5_tk@#tD6(7L1@Q>5rfa@j}can+OE1PDtSu{Q;F z3DB%A)?5L?K-bKDrNe&HGxar-=a6rSt?B*WJ|}_B>G(^awgESL(np8vre|yzsO?rA zdG*uDG-lI zkAuxdNy|dAQ1WbQfiL!;oCYapvwH_CWeEmsV*_c4hk9DB#U9wo&&_<`e~wC?s-J7_ zWr`?QJ;{6NbM^|_v{wc8(by|fc$E|7h3u(7_4uJ}W$+u$dZD8PL19;;and**n6kF| z99R~0Ku|o&Dg*Z7mz=(bf+gDa@y0d;@PCdj_Uc=a)A4AtMi=Xbx2-@t+WgVQrx9%{#vW}U=;9WjOxdH&2wfc7 zx3Z@1aUMRWA{WtSuJ6&Ngf8~$TdDofW-fkeAbsRFzIR}(BljHCwZ;bPRD)2|0#qcd zleH=?2ghSk-$N37`c=7a<#cZ4R8KBFDXIiw<|K!UohG4;X609MPF;9(n&Q=8myHq- zKBc7GXFKsr<#o2Fd{_=W0WZa%4_wNau_G;uPy$l_sx40a4y)qAZMG}hy!GT%hd~R6 zn0QqvLP3?_btfFwIaU=%O@OM)Le;6FS${-Y=H%Z2TFCtqg1xN1>f}qY%&YdfCt1G>LaYGj^bzUEw4snj#2=KO2Txt3fz^AXzZ1btvgQAgAT^X`U?&qakqn0S<# ztSg*u%tpd2yJ5F;QA!5&WhV7$Fd;(puM;$lAqBotcY~Fj*r^TW9Ldgn6a*+(GpRo; z{3juOingjEm<>1apQ~}wmCGXSf^l`jwy1w8@ec+1ezaN>IW2PRtGR!I-l`%{+d$BK zhnj`3Q$DN^*ORk|iCPWKLWTaC8vx#)wT?%xD*F3-fYR{j)j)se3~wvc_E69t!v%S= zPkOC`Ko4h|7)>d?aU4w?37dHA&4+GC`GIVdu&X~O3qIU3Ix8s)iN=YJPuG$Fhni+f z38SKE1TuD0r?`)yf9<=$65}$n83-QvVU!@vgrkkqgcG89&OWJR$hNlmQ5$^SUl$_s5MD@68Q<{~v zXt@$A`Z*hWRPWf= zDpsaB<{RTjBcZg=7*DPd-9j%zsYC*7$;3kZ2t~c9)28i?_d$%+=Tc8-vb!&(Fka!P zAK=@4vkf`F*`WR6!fxRsW?8hH-@>%jZSzq|^Ww@aXJl)f1=vL9@6R z3pKfE+Bv77w!4}i_?_mS{t(E3&3j=?0H>?%Ymi5IVbjAS6vaZ20*6}s#4gn53j-Z!UY3Errp(Yc7uLo7YzQ4MGXmN6H?u-tDrO0~-8CzNPjvS3hj5C`ml=7DGdXX+C9VXkjldPVbX6zz;j4>2dd#b0AT=r)c9xmT~ zKlxm5K^81m@{vjDXC)W=fZ|sWA?(=@23HmAa*8kf=dRdmA{)5EThxJ93%6}aC8jjiV3GJp zOsJyHFY%F$FbeCj7!o@=B36lAJ6y=*>IwTL*oS4_o`WR%8)!m4jaZpL1(C`@xr|_k zaU#3>ehJo#3CaP48e2V2w~5aqq}=*wqlsL%2~NnlO&-<P|v+7xZ|OZLHPot+}FQuR)l@ zTL1HTe?J1$nl9$B81n%eWm)BKvL~w@;h(v)_VQ}#eT08~nSa}yzW_m3kZE^NV90h! zUnkv6XYQ_SE(jx^k6L@ao=w~(tA^2=_2mw)3FGe}$hWyJbNN(;9{geC`Z8PAxbnx0l^3)mNr& zddKeCJ8KzQYK}As$L?=;)@bLa%{C%4&2!9`KY-iIJIW`CBmc+vV)ye;^4H!6{(E<5 zzM`kLxAw2JmDD^^8s&95SE|;VOZ4G~hfHn17d?7Z-5d+kUWxMhJy$xu0jPvQ?8uUi zA^P&4q>hqsPLjM4%#%2%#$1$F(p)JCqk^~UNm5f8^Ze^P|5wHSuinF+Lx4{8!=s@2 zi*Rh{pJ!wd{;!JsU!}vIN0>7uvBHMG0#3p_wCBlJSy(x<(S~81y-|0mEBYB8xv$jN zNfI2WUfuO%}1*y$VmAIi7Qu~(FNM1R(whsLRhqX%x4 zjnhXxpOhE;z)JGIkDn=p64S4-ry6G_0K+3UlBMrF{F~V}>SQ)b|aipeM@f>?Q z*b^B56Co@U<2gN|4{uX2^9Xx|{yyoMvVy5^Q!rq``795mn3cq~jcd+7@l{%qaWfAA z6EYy=3@|vKW1;7>vXKpD%MW=usGx$RKlRj3^c<^(vp^WJeAKAe>4Qf{deq(b`A;8E z9VM}!=>1I3#R?znL*GrHCh#Y;5^m|oMa@L>9tZ&lnvyW_PxNlG%V0A|PC5+N*B3qU zT<}rc9~&)eEjc(|muweL9%#IXy;!`+6zuUv8D(LCIo01Dtl`j?1u+^n94 z7F21hKcT}{c#oPEpxHIwNN6Z*K}|nhr^8hs>9&>*v8KGy+PT%*y^h=%UcAoU`S**w z_BshsJd)GHs3Xs@`p-4GF*8^4z}X=+=W9R~Jnnk;Nze7pb@)bSKFXgUgoQG=ZSLB= z7K0OsxjpS+*!x%0gYs7iVPV2~u`bDIwB8J8S6o({V)aW-O4d>k_CR}}KnuFZ`FwZ> z?=UjU|10iR0*ZC_$Ra&*JgTX86LS;CLvpWhKLyR5CB`WHk-#oyosm+DKPlLv);ZNZ zo@ehybl^ckW`j>PFwms_=j&qDa>$?@SD|^yNt0wij8W&5W;X<=#Wu+Zo(-Ob0Snrz zJ2^tgzq0tl{6GI)nlUJlweTLVVVMb=;}B?J zyN{xm0HGGyAlv9gmIgg0XoL-HS+R}FS6ZWJLYiKz*zI#Ph z_N317avyu5BNo+RjP{z%8?T(|hdJGP8AbT}Ey#A3F>~XfOsoAf5X?>_T}_E7({z|c z&pWgDuU?4v4`K* zmv8T`jisu7)vAHhcVL*|vQvK{(N-lJ>A{#Bn?%#U4F zM?QC`h_5TCG1IedQGO%>De%^rZ?1+pR6IG)s)ib!j_63cD+495)xba9QI?`n#s*4f z=aLzkmYy_KPzEf`OESj+fFgLkJ%2joT9K5Ja6C1>lb@;0^bDHk&s^efCFQH?wUJM- zlfSLU^b9v(8wK0$sbbISll5Pa_19!l!a@boc6$%c{iq;7b-YJ)_@ccu`((M%`R^df zZ?RF*hL}~3({`bad~w+J(VRUTyYMf;gZd{jmtxl861lHcbG=ZP8r{b;RqUHy_zhFn z@_Lwh3LM+*W=n`W2tAWTS>#(JG~+;(6yJ}mqD;#rZE!;Rp7LrrxX11Pk+Lxg=|fkI ztlnSSr)?;ax8b~9mEmf@dRyQmSYS*P%?c$!&=A-vF0Vq>6nF9$Bom30x0?l^)Rc~z zdzFQ*FiNxXmWAo}xXN~Bug$0lQ=z)Z&x&8mVi5DV#ZS#@n<*(HXR84aosEL6Y-1YS zZLv%-dP1aFU=BZ_1hl024>(=BCIzr#452TPI!Z#CeCb1Y5$}ey*`pM-qE2ueL8!mZ z-G3XeuqMOL*R3&OHfE%R*JW~#)!?K&p0E4D2=f2xU15PQJgU#vbre9je-lsdDCQ`> z3WuNm)m?SIpg<@DhhsZo@BPjFv3kVvG~@!b1|38~$198&w{HpdZt0K|JQ4yY`ni0G zB+84;htQv1s4%YXzY|w?q9Dw=F=kx=??7Ru+x?CR_IK;*4tx=}ciVDx2mDKSy+pQj ze`V(4&MELvy*a4fPd&YKM|TCVFprQhlZ{);lRNjTJK~MoU$C(9p56xmVW}wV5=`Nb zzeXB0Wte*V$QxsmX@yz^!aL|4^wzhi2q8RcLs=xI1*hI!Bo@W#SocUs7{I)#A>5I#C|_A-%y)A))4bx2?KrSHC**{f0hm2| z%|~q&e``y-%kahgN>-oiN@wxL!@10}qW9?re)hX0v(i-*0 zp?G-M9Ft0)Sh8XF4}!pfYCOarLrG4qX^;F%)WW&7SS!HF$ys4P+)9Gx@rI?yCG+s1*XQKQc;2n#es(&XcNJ(ziYhZ>|9E=bwFTjs?FeY_&II zqHNV#;o=8H6O_57ZIOM(hcc8)hc~z^qoG=q#yaM_lf=<#v$Xm(xSvy+V`kw|LSVPU zW;XDN-d^qyZn3vnrWi3{Q<<;M_av_0(oOmkAP_Px*xGI9NoXIz6&mOE^f&;UWv7_p z1UYSg-mjGJSja`7lu@B^KinqUn6nm}@Yn34itH$x4CBYOl!O(~nAsihSL6dICE-u8 z7YgU9PK|hs)fE5SM4h`*EDde)8^usE{bQ_^JsiKeX-k5O@Y)lsm7Q(!2XxFSt(s$B z&K>Z>Wp!Wgy^F*p2gv{?A}j@UN*OX7uwi*V-+5S%d4S)wHw9a?JY`}4VLs)fdhQ--_iv0si&tD22h%qPw<`}?SOwPXW<#a>&45{I+7h(TKa9vpgqfL zw5&*k|G@|UgA$Ae7Rr~l+f_XzZa2c;t=!+O7L$V8{ergrcyTP`1?U|sY9XI-1Cr5$_g+#s8DJFI$qf<8uPZD(>G+|75A+~=H&mn_Lz zDXrks*p?qD$9JcH#dYH!wViSux))id%ks4OudRFNr0E4Jl-@fWnh_XFd{5D^zJ6$Z zo>lq!B|D#9$0XmCHd0`0KD}o7K+wjH<&X|*P{IH67rQYvrZY*Ww4zE1%x!pk=7f!% zz%S6RyOS_CzmhS%?ESw$Fi)25w{L;H8Hg{t>HH$uJ(=g$cCeRx*SF2n4e_8&tH+`7 zJTJ?JLw&P2Do-_ABHCAMI(hbZ_q5JPE*9@`R(IvD7~FU-XyfwYimLoYlXZ5JwRwqHyJ*acnyE2##zBFZ zBn*2L&;Raq+uPSNoQ0|-xwfQ)-5zwHrQfL@v-6BRPn|{7HJxD*Fc(E{4(i3 zl5GQsX8(XK07R^_A92OwvJjv+Qa1wob2+H?K>%6g_K%#yf2_$d!gRtx_58tpkJC?c zp;V2ZF@62LIyHg~;M5VrhAXm})9~MNdp=P(RPl2}d5PQ|NkQ&sogHWO&sE2<+xqxD z-=;eGKZ*b=QjW;2Wi#q+)(?0Lw{0^GnI|p6w?|4}FMdDU!1tPzmi40D`trK^wa(H? z6P+!v8RDcryd2*Gt|8JMdy?KE)5Jd;PbAFTw=+g)OI?o9u?|N?Tg9|exbg6(8OMK; z^wo61Hd2;O`1tUpBb+;iL;+Mlb{0YZ_3G6A<#R{;}#t zz>7dGB6ts_hxMV$$RmpL0MpikMcodDQoWl5Zd0~uC!SJpKN2-BAHj(OAgy)(HFBbl=ICaUnr75`B*-eDU&E6m5B*{7g^BPQz0jDrz5@ zFAW}9yvLRy0%s4ehxFoNtX_tPv?S-gJ2JUmRTOBbx3ymTB_#Mk`a4mzpi3&ze#m}z zK1I{;CShlSCcKOPo;KcD(iyp4+&8P>W~}*RJ@scnjomxRZ4ZYr_)2uw@H3ifX2&58 zB_e$g9Q&H)oGl_mILI3@;QWGAY4W1%yQ>y_4m&7T&eF@7HgKnwTRnj7)G9V%L#lw+a#Q@ecqWz2}^Myl$x0z&L+>2(Grgb^fh=KJS!%t5h zmbb`nz65^+`K;b>V0TI%z$(eJe?PL{Uw#=(^>^Qst+CIYtMkk+?u+erna&sBzidBa zG&mZx8{YaqDZBIj^lcvJ&vYQepi4_%U9n|Ub=*Z_%Q4<-DmF>@{G$lV@ciCcRzLfL zImNp`-_jSg)JxJ!-(;EXM7eS(u`jo$=ImOOZMZ)+wJ4OW)_feTdo>1$Fbh*d4%S6l z2L58@`uC{1nQ59g#{*O~FR?q7{VK@g3>tazneawr{Bg?PGOZrVv_pj^R$RS(kaCx3u7!*}c&VQvUDjb!iRYFjnrVd<5*osp+ zQ?ZYFo@8DkDkLq`4eb?V$v$|o>uw@et%@-(H1EPoJ&zkTS7AAPW9JHI%w{{hJ|z1K z8hAP)rBNSxeX*fhorpRA?~wOC_%LSXaNd=ZRd^~DYyRc@6$9wjq#y(@p0t?(rMdf$ zl50GJgsy$MNMsWDp5c@?%`@!2wLjqS7Qnjoo zyuuuULN$Nv8GrM6$qD7T0Z_}0bS3|rox1q;a$F#fkKhNBXuJlS!N0K^+J}XI#G5;I zd#2f|)$B4=j_T6e%egh}7=@=@d0`( zI~onB=|L)cGY+6B07R=f{;;QSiZ=f+q}O(`yVMqy^jN)9KG&QMJZBk zaB3b#nKGZ(_=w7S-Q&77_GiN!{KH)39d@X-po7AYf%UTQ}=nZp4Pg|OclApV3_x)3ga8l%#_PaCQd_D8A)A&apsqIu=bFO~~v@nv?y8IE`vG-)zX-b((tuz(N?VtUoAMlJO&mh~-^9{A^ zDrKm$;RSzL3J2VRoK>-kzlKg&;|5Ho7=`KtReCp%QdW|knoOljLZ7_{I%J9BXFX^N zxLJnP{|B6OSr=6_&-C$c z(K)+s6K}JlY$_$;^%^mGz%!O~lv;>d>(xhE(_axr0o?(j%#K*Dm5h9)%p|hBsD4yT zuXx+|+oWR~20mj_1awn25rk@OzHuX9ierl5n&wLxO%IW7B?y(?G~4?6#RCUn4tL%* zdk9S=dD}&(X_ozNTNM{dmSp#jJN>oeK67j;1Za!SixPFY8 zbUMPRo`j;63^)l4+1bTid#>1kdE`G9uBg(bVS`UkJw$G2DnGhHV*6D&#B$3<(PFE3 zYi)fY=HpRX7@JX*s)0MoLy~W#NC!TD7Y@jil0}Psq`cu>KcI-%gNW`F39{UiZK(_qw>ra%+cKQapmL4R=G4wG3~(@IFgVuv zcOeD{NeQcKFHfG$5#k0(q%_a5K;K;GMBti`Wc17os+0>>{$_d^v5nNl^RjHdi8s}m zg-ImxYRz08sm^JfiJLVR$VmDyyjV6r!v{v*?Em*uSB#N_7kuKFd_K&mg__f!ixhD> zA0+?Aae2ttVIiTp{tJINE0Um$AN);)&SrgczlNKXm&q1?_!ZJK)kkS{l<=37+{$34 zp+gur6?FFIVP&LPHn9IgII+5vMh`g*OoH~%F;An80VZ*NZQ^f6D_`YufVtU^$a4(- z%I0{mGrbCv#)z8Xqd^iL^bZFYa|DWm!nMJ%R#Zg`XypaU)h(=A9n*vCxLUhVkQbQ8>PD^C^FK46^g>zt!JtQOD^V}gAseU4)t zd-_~)uaP2vhhA80a8hv50Y+6CY^ne&;O#=W1cM_!zt;O$kJ}C~lGmDGoH`a*mOoh; z{IA@L9~2Pb&|_GL&s$Habser0_s#V>9JN*JAtp_F7v;X_IF5*#Dm3)q7=iS#^7{=( z;N$wWx4O_T#?<`A4e%K!49c54;`jcZ_2N04_-%sp_syg=Oe>|#q~G1t{zxK;?E92M zx_L_}n!%c>9U|`L_EPp-_S%!k*$aG7UM^mS<&FkY%eM{cwgg9k)$7&xB;joz8>t(G z8&OP^24|x+aFkx;brJe%c&Yz!YWn+4;TuDFma2dnB~!R+nChV_@0qOQ8$EIzYHMs_ zdOZ3i8p?+_T3~bG(z@U4@%$ej!B<3!%`M;H{y~^@-ObzY_d$p2B+Me9o8t|981c2P z+lz%xI|V7qa%*V&8LydbwnZC z!|$6OTFC3>AcXVp-iN$hzxNUu zC(LM^@f^i9da$%ctgLvyeQP$EHn-?)3d!!CwUNuvVmR}QN1#IE`RZ!zuyYXBR;i{B zq5XuXT%Akhf#ctNF|)`TUYBE)qj>HA4o4)e%W2WNqU*NQMy%9Ts>iJ43!)u5%9kLHy>&O7ZRD9(rbKI@Ol-<|4I&GvAs1BpV zD^Y&Jf1Pxm%uC13ntqa~NZ24fqMlPnalk(1;3x(~FVN8_KYX$CEng>M;20V+J!!TK zEO6bQ#0p#zHt?2<=Ud0O?W8)3P+IQ(rsHGMm0390UBQW`;KU`}IThyB8HpQ}hy0N7Dq;dCVU_0s))JYJnd-QMTo`>KX@ zV7KOXH^KQ9F{~to7HZ>9`%{zEp&zQZ+h0|yNy#t^eSUo4VDMWxGBZi&c|ZLgh`O%x zlBMk9Q-hcJk4aburd6dy;lSAXtzXT`XNXYCGOA+!A~JAhnuQWniG8K=UA;{4=$zJB; zLAB%A#5&7*r|$o^ZE2|Qw1hZAn)%G9d|&u;vF^!!$l03nuA%nr+1j9s4ejiNO?2F( z%j4xzdZhdt5)b>`wgT2!1t%x-(96?DBBCq35tnofn1+)){zu-&sn5R_tONJ^aRT-?E%2VB1sF&n#bqk|h5ifQ9rxur zgc#T6(4dY#;x>?luoniHX~A&&1(mJDECKzZhVs?kq)YS1Eh z6)d%(F!d5{{wNfQh)beLrc8KJ zto!lKU+NML|J&1D+1&_+vHN`K;PP`vcG+||aww9xOY;@Mey}HX*)&}5&c=a>K+|>5 zsJjKy_|AB)cvR>f|M+hoyMy!H`^N)CR`R}5z|wyAiDXlM`e*X;Okn;r9=~{_Iq~<> z?THT}CKI(A`ruX*d5P`00J{~!;CgYG!wvGo`?uP}Jv+5CcXUMF<-Jb0j~=-3!tZG5 z%UuPvdZgC3?NG7JpOqWT%?W;eZ=IroAJ!L>q~vZ{VUd^b@4>fz7eyOHyU>HF19p6h zTh@c00Rppi!>}5NU#E)cx3&D#+=$@?lx{yi-vwzA#!^~-)C~C#%HP`CW1!mKp z^uj+G!S|-W_{ocep}^*x<%M!i3wj=0Bwtc)dAEXLMV+Hs8_;R_f--4}TR5yE90#WM zn5@IU5uTsH(QW!?*d2RgA}2xEUh@RrftyKxyB_8IsVVogJy)9gFO!{X*ZV^E)2|e_ zwZ|Q*NV8=G*#3PSXlCxZHuM{kKBTy!cSN45^AyMOZQSQ4`>RWsFmX@q5+6&k(_B-E zTetI*gOE!_a>Aku1&PyKON!f;Glkli%UG|1l&%CTVOnjGlh{ z#_G9wd7#6im$btM;V7Z-de7dRUI&E>#qHhw-NF|yf8X;i=A9=*i<%^(I+o9g?@1+n zr(t7%R|@iLAq45K7@w*ete}K-3wDuu2Nk3*aSFHG=d61+R3Vq8LXkBWCFF>5_W+7p z4j-7_mzRkG-(C?M(P(JzQH@JxG{}G4(HhLG{;Nf)b+rttUovwy<*`^jrye#8*a%_Y zrW~S}JetJbCf>3iq8yF+JIXuc2p@t?Rtzx7=!EDcGzsu!|04GEE2rNDW%P*yU)peE z0v1bcWip~v^Hj0cV~xLTBz58VdbNXc#JutCkZN#&47lvBuZau7lqX&{eke5-6I~c) zNoD5@8S6W!>MRgFwy4lzaMYeRFGuBw8e&r6PjlsTeO_lzh(KebXsvb#AE)c@b7dQg zVTt$DVb;Lb(|~A;#f+<7Y(w{GsxIV0Kd|Yx*)oY+c%o*z$UO3NA>7`m29Bw)NioN3 z7uI|6rwM&|YB@cn{4TNia zz)psst*05V-o&$k-??VnIKKFeK6tPZw*Ju9c9WJOAW>`rUD_9(Zu2+3rxW9U^Q+QA zZ%4}SR8UbS%*hV^M?Mx}brYTNBEYXMufRIc#&qe6YOy$yM(`Qvk}HHUr5vqRtTs@! zxSt}w(54bD*Q}T*n~b9QR#Qr0VJ)TwuNW)v$Z^T_I3e~t?RL`D)09e3 z_dDSJQ|`4FQqKO<2m($rdLXEqBrCo$I_i(Rs&LIV5S7lfO>&;gH6A@Uzm5L7$v^EX z3@R=faoO#-M!K~3@uNw>(DQD){z}uxJUBnsR`cOUfGl-|9*d*yh+R4ths}WItD@CS zl{n8o+H3@^tj8_!Xc<=v!~1Rzah%i@@~n%G$Z63K#2SnAEV=5}}D9(r;hx6}i|5o`;9WeJ#ar4ebc!qsa;CR-R_HG7EeG zRMy+nm|&HNgg8^F1v{eL%*1tY1ZG9)s*}x*yr`1IK=x~CV_%NPT9dGEu`Zr-fwrcA zzuoAiN^EKj)&QQx_h58<+km_dbw-lbe`~GI#iqK|xK8uKCP@^Zb{J~j7T8Q0=9f8k&3{ROGjMfOWOiau(oU0tT7M9uBEN6r@wy{6uBW^UadC$H&s42UBy3`y47 zbx#ubsJDDtJtXFMY*#xuyVwUAtP^@}jVJNcW2|^fUo{Bz_+Nf5RK?DAcV3_IlW308 z#hYx^y-nbA*n7ag!kGFhJXQ9{J)aPTY8Is`hAsjY%U!b{19L`?XZ=MG;?a^wLY=NL`8WB2 z-X4{wI&$+<$&!bQ$9Z&Ybp;(r^4I82qD zb8ox;MZXwtU3COG9XZK4QjKRM5%yN}38#1B2qdt+@f}8B?gowT+}*{$K5$07u_Qd8 zI81fK#zpO_iRy00tw!lQAKH{cp8yGwjXwJSV*-rBFFpv$@Wn_51^7c3i&dd z5G*q|+0gtPIykE91oi70kkS@K2ALjhcMfdNZIRj*GFFKbck4F}aWgIS!O@leqGFH?UN6|gEZmo~t@(!^nMx)1o zE4_ra64S&8^T773(-pL8{Q6(ujE=RjNa_z5TpT+hmi}{_0q6_EYm8-95M-fg`PApC z1D-3a1170G#vIF^phJhz6(iQpIigD+Zs0q^%%Q5=P-Vc*4YQL)d4QfPz z`vz4LCjJX8O{qQRr!X~qWt<);_UEjCL}Ug=BvJG)FE5`SavyXa2!5Rac}z3U&DM%q zj~p%c7k5+t9`|b}%!Tdr&^9iax?9}Ww^iF|%QgI|f6yu&r%aFfXlds4G3tYxInJ2n zFTC}!pI98;dc9IeJ>hfrC5G-@%xyiUrg5NUn#NUQKmNEBsr8rq>{L~r)z-n|Y#!Nq zZyvpWYBCUeu0asO@oYrZuaM)~d(B#(wcO*GOHlAKK?_tFCmKnELR?Az z*q!4s*5aH+RAa_TqP{`kc$8O|&nx7~CV}^U@cYX66>`%U2wWicF64$W=BhmY?)-j!^2i7~FiR6}Jq{X`JJ#M{bNCrtVdBvAkD zev$Q=$8Yo&4I&LlSt3YYpM}w@LD(8z1?@T==$Ni3r<9KaL z;LDS}RNTYz%ctX7Xk^Y?;J4JR4&=Gy5{Bk(y6pM*gZvD}->R;+6W#4Mj&zC^ZP{09Ebn}7cs&d~ z1a6+rn9r13MFiik5iIsC81rbMq=kA;&rBOk?>+C#piE~^%PXVI<6{MYY2KIfe*aDF zr1^p8@K^sm36rbDmB^c{Qm?YwXJHjZ%B{0A_4R$(iX7=*L`z}#mUG;3#7%=db}4jL zm@d583Rz_snZ5YGS3U_#;)BHT9p+wxO+E*ee)#4#dz|g>$zEZJ^ob?9vEn*p1A)Q& zDY@}m&itPbDWfZ&XcnlsId|gHsibK4``N4qOW~YPhUe;szN>Tmr9ePnYUNb{Bx?ZB)q{+H9MB3Pz@mn;%{+_oFi#B?NrTP z6hJ+XYaXKI*ljv*jHa}?4>$Whe_j!+s-WgwJgX{zzhDu+QwS_bGEg2!S(B?`PsMs)Y{Sz{9c1elyS7%s?=V%K9EPEAv?u$Ip~3EO3{fb zSd(8SzWsx7?jO>9>c_eRk%fk_`$gWX1AngPidfDrr5Lq1*(dSDh*1^H=W@o1gmU)7 z0g*~SYbe6W`%tC#tx;^CGJUx);@!RoT5MXw4%pmac^T;WY&LzT8hBAeCZoMC#Tu*)+Y0_pSJ9b^q@rrMNSToQ=K*I} zgbpiwI6nAVTPU_XZCe?nk3=~v(ntEN{7=zU)>U+0YX2|QzvC2K4b4Qz?|#b2XJlzt zBZCP3hpp>_?-keH!gpukt3{+Vc>b+Ik<_))4TevMuk!lw@3Q|~oWBn5XS&9i6k>Tb zl$C=@RVrf#L3ytCXLzi*E|`jRPFITT)EqUAWxBp*3jeNlY^R1>1!O>@vcpZ-X$vQo zYv7rq9F%S-+gcOXePz}mUdQrxdYGsK%J!8~hkgJ~%ZpHU2RG{Oe?BRgCF(GLLQ0m) zc~*@PS5Q6P6tJ9ke%*=xVk-c&xM> z^pp!z?Kr}<&ifM^p%l}J@2?z8+{du+T>!Slq^{Sgv zZsA#jS^YUH|LdbjU-6;uSwiLWgm~q8*|W-3_cy79`*H5dC!UdVFGK&RN(4*|sP|sw zN?1Rl5|P0N6#A5}x;;NHJcoe*CPV;$1pttVEH`^}9r^Ef9CI_k!U2_@`f%7S=-FCA`W5CFtxdX%eI@p%(hvkB~-4g=3zrnqsTfDU?hLipj@K%0w8hvTYaQCo8x zl^*6#oV0$v#70s}xyie1V%}iBPF_xzOc!#OAYMfK0yME|AGWf^GtfUX`7Ym(7S7c7+e>*6-7Y0<8&)eYEyhsiRQKB4Q;BBUjog_{s zI7>X4N+I7o1Bs_wqw{@s(=)40tQes6mL34Uww7@i(xRjODZZipw`C#y-AkBH;*)Ok>LYZs8KStzrONCruYXWKR-_|m4pH1QF)>uZ6bMC1k=KFGv5!LNYH56_PX z1ltE*WF8kO{9BCj+Rv$xR_7UvUhmO8jvgs@i{;6lSf*|-fp+K~m(f-nTBbnoRpEg; zX!ux{OvQw&Z;@&<)0OJcrqxD1QFnmIYx@c|rqQpSk?NI5`!v2$gz_R6av66VY7Ymm zK`>6C-b0HC58!r;pS)ZogyaE@ye^Rta^er-a`xbZhe&x*PsFy+3F=4%;t1F(+Y)aB=wd|&n z79>3(>7^<2uQ^0kbWg9?y@AM(QyP_Pm#&kHsq2$8cBoUl0p~%wSzeJ5NmTHq^>w(B zNcxu@noc@Z_Y6l(tCM-w&CwJ-X?7stK`-%p=LCamevTE(zm{Id>I?&xuOeQ4Y?ZDv zL0c)?cwbmXNE0P53D9D0EbMGyjC~D*Z5TJKg&E7A#bw=2Q95 zd*eW7PyDy+X)HkZQRMgP;lVTGn#RmC;~$Ng&3OgYCqzR_D$Ud?=`Cs$a*#FAme5) zYUzbT-w$7_5a^jYop=fJhtGk98mHcMFM@PJPn9yW){@agBHW1V-2VhyRn3wVPRL{h zl1Ns4aVgfG#ZrkYf-69yf%U3lO?@ao|Js0wD%ksjI|%+|?Qa`un|>>6YfPJ;9{Nuf zz({2`Vq2O{%4VbULHTOLzAGf&=AT|HxumTP;Gjx z`+9E6ngN~Yg|yIm6YXZLS{B-|Y;;b9sr`grS{soIn}w7Gr-e}ITeWePkz!6<6Wgif z_y(}4@Stt9*%$gScJax2qk35QjC(1N&po;esguIj%ZpbizP3~||6-)Gphfu&5elDZ z3a#3C!*1s=9&Mc%)u{hFf9$6}4+FQ4H=IeU{miX`~O+$7et@{QFh#!C1T zQw>p!qELK0tEOAticDd8M&YMKo4C@o&w?;}lCNrWosiD!K- zm0H}VKCQQ-oud!F9TE_%kB24rJ?v1zHHR;yEua43+7NLF&Bprw>K_f2k89cjXe9tz zbby2eU}wezkX-ynk`1uy2G~8(OSe#3u$y_k5rP(|(asf_%u;5Na0peZw43$=_|Q@T zjrV3=$(rp&mH<|7j#3}!O^LL7GAW0UY&QHIGtkKa$PgCL+z)AY7PaBagC59G40Z<9 zNhZA24X8soN2v+0XiE40wKEHlwd_%!wrT+g)|(*#TowtHq;j7*)RSj%^%~XT%h!$1 z_1Td?4+cN=7stasHsM&)&Y2FA6@M1Q)Hd;w?|goD1Yk?|9BNbm>J6N{&!s~iX01SX zQZr`Slxfv|U#7b~znWAYzD$St+f)H)jnUVt|f41dt z-zrz7HN0HsHI>2;5V)NTngeIUapOY1vYcGu$Xz}`wu<> z<2y)c@B?J4Q!3E(&df_EC85cPBQ?6Z@vt0 zE&TlD762uWyweAWKa-ULm`!s>fGM(hJn(;=4f>S+xip+-iZ?$Vw$(s}$7<%~u@g-R z;0)MJ0X+x@ncD)=a@>fH0pOFTKG7D6n#pumP1uqT7H<_Ng;J z0Y=BsY@zaaW#$lI6k1u)i$K99Awh5Wvi=~N5hz3rV*nl2I*HZ+3Kvsnz_e*C;Oqm< zjc^nLpvLj?|A-UG7=T8(^m^! zy&zi!y4B=1m+?Kv}tBCaiFU@A59$rf++J#fWT@i z+5jLhHyhU(zEtKl-2=Ebjaq3BU&jBA-UBe-$EShzB$8%Y<6*R19F>3?yy2xU2MTa9 zdjRh==?G|O#3yk;Sn;D|DL}tf>52gPh(}rw0V@LIeK5dmlWcBb2;kG|I`|5x6g%bt z=x1=2+3|n4JF?aPP#S|I0P1?I)et}laV`R~sn;I_mKk2EC5z$krIFYm9Z;x^Z!iJ~ zCOGeaF}EsznF6$Dj*}lKydD(=TA$}Ak_7OXmY*oZb#^_<{+qt{z&dS`2h=?3VR0Q$ zh3^v)K-c8IelY`J^JJBPrVjrn|G0+#$^XCt7JCm2l%LLY3D6>*(dB}8*h~T0f9tkg zVo(nt+_QuL()*PC(FIs%I_6Eld=rTT0~7R)7Zs4lZZr({zwvT>-01;044Mm81BN6s zItR;1=FM#3E(U==^^*l~Wl_|b_qpY!)Oql&+XI#l)hWh0+b__W#_q(_QJ>r%*RJQq zn_r27)ob$bl<=&vPjdPWAl_R!G><-{#CO48>(kkL9QYfOmjW60x-f>(G zZ*Vu+i0c&e7Iw3Aqw5e}O=2}6wN%r(Z)h>8>DS3#NaG@`VyfaF`))qMVNTV*7JN&y z$2{IU4j+eQ7|Z*Y27T)_`-p3N+yj_*7E`J(Z-IMe^uq-D!;B{b4)BT`#0;al-gWZ$ ze(@p%4hf@n68Q4}QE7r&Wld`ovWgzb+Q`_*UzChkm3+fF6q`ROKT=C8os>KgjVW6! zZC9m#T%3r%9+2SGs_Fd{v!2MJGb5q9Tpn48-C8DcT-3}HhjB8&14pN z`3$eQnF^qL?2fJVZ^YxW`+{chwusw6h@J>BdDaKz&~q{mLrF7>_$Nz7{BN6V;Eawe z)XCxnYMEJ2sCQAF5-Bcd^%tujIZu_A0UXo+bE-p!A+4_KGcF?C^{?bPhqBP#P| zkD1W^2=)HJT_)L%5Vf7`gROVg^WDPMp$&Xnkkbt83_2kTd4zrVl~oR0NNACs4=R9p zH1h^3fOYgL7fu;=Wt9$xA|0u`g?4Z+($hd!sgJgD;3uJ1j&caM0WaPXZvhjbH?Vb+ z>hKT!2kPRVvnjzuAUXcgvSr&znDZ?(5{yXJ>QC_QwH@~Bo3p=t~bC0o=&{2(I% zE@2`IZGg|2pEbafqpNzCYkb@HowR-yL#Bf3?f=1Y?@ge6vqJ8J?Of7`HQXbTMEEUD zb(Vko{$qo^`kc_x@Aj24@7f^OMg@c(!I1_7)WwRHE$&NZ8dz-Gimw;!t;i6IdH?!4 z_gG=23OLw;Fqs;Twa~N_XsoJ_s+Xw_|IuPpGXWU7I46-otms>^Mot}$PdNTzi7K(Z zCDdXYDP5Sp=66PS;7e`@t5CYVQr)FaQ=aG*O9*j)Wv{aZrdDYB5C_6cIK7S81;Yi` z!p4G^GoZpO)%*upIEULCsrc1+?|9O7@_xAA>>^?qH=p${^k z^H7<119YSa=FYuAMb16JgmbmD zW7&u^P05`pd_vH-UGBZ@UNIz1!gjA5k|u4tR}Ue5$?Y-$Nh4n#r-iX;B7KrmZXaV@ zX6b^lQ5ZM!mUL9dP82G-Yhz|fro(^ma?7ni(rz2HBa1sO2Q4z#pys%?B(m*eEWlF2 zEre+5R*Q#1md>@pIbgLV4Y;AR`U(xWzaW}yi^#I>45p1ua_)RDvPwML$B>s<8enXM z@@9*(F#8LWMiM#qqqvDt1^1)KiBW0ytY$#3zJ)=4wrG`U!0cHY6hFf36&e&1VD>uI zYEZ~eeyuWcnEgV7qA<*UUF$6Z!oyRY#0*vV?wVNIAycoIG6!Wg&KWJ~NEzTKR&akG zwpKj+NQ(Xg%%rh+K+;uYe$GSvd33&ADHAD8}0jw{gHCqVqHxSTm=UTv_YNfVPx6}scBw&**fY&hQ$o3yE z4%lP~;E1Jd*#b1Y2JM`H>*z!_xeIV;k#pxSjfXXmDT0WMem5+K>->!lJtH7<*^=bE z+pLaWakTyt4p;;E8qU(8B+kS$Mlux-k1wwc-WM?%u+pO;#?N~6IV!i$amd()>wmvD zOCFlw96tj*U|ykMjp57XWhs6kB34nG5+vPJ6tJFr+|{GLB1HlEyPjP&%i83R#mdMv z9Jd&G*!V4C*qPQzA|0?G&G$-ABPP^p!q5tEB;=u8ruN8~@?=(DbCCZ}aR*zVD@z)j zALB^t6SNs`F(C!cPqCPg3IBt9G|dln^&*0uu{tvvQ)Ze;7*isJ7*krC&;RB}!VpWq zHQd??bafmlk93W<9In?UFY7ptm{4VhnrD4}L(rzvzW+<>rwJ?X z1CoWPZ;*jwsoh@=1fO7me!vRw{56Xz)ZlpxyiwJA62StUZF8Anfhe}Qk+4AGde6ub zP^Rexks=;T$VAesh$+-E&}X1l8z;(Ho9Qg-b?=^iGF3e)w>$JQpr)Y>bq-hWgvi$KAn&en=QN$hU{D4rVT@GGtbljqe@NOLLeAV`6d|T0fkZ0s& zB!hPUpEGX=Dqfhb1o@*N$xxpg^jiI#h25T#R9m01gt-1K^FFVybp&SbcaBg$YM#(X z=#HrE^)Mt3+OWa}qY^M~T#`mC<75f(LU#g}kKr(?{)UyDIibZKi?mX2mZ%B)BzOZF zw|5&PPHg$OWL9Xe*Mdg|aS%8$DT7F-%*siI&vXICq{OaWilSQXbGww_V#&95sZWa~ z#_dw5)p9wIxIbEH0T4X@>L~a2aMHyAT4+DjQK39S*+{>7R;bcQpSi^Q>+g0VCB(Zh zSEfX`%Il*(d4v(*mspHB4q1*liXdevWWl>AxOHqi3qd$*SvEotg<6(# z5O>0APF846q$^`tM^e4EZgB@?(8M1WsGYy_^T|0%aP1x%6XFV&n+3np7nYpgF3x;pmW#QPaK?DV1@$AI`qhf;RD!W3%S&2(G zpf3$cmSNCMoqBxkaAPYGD;q0)D<-Sj4I2)+1v808!$zDnPmz6JqkYt19v;5QD?BxI zOVIKPs|Rh;4v|+zBk^%Hj={80en$6zRb1d-Ub$FJj-**b=u?l$ zp;j)8R!8NNkI9jgwq8_;s<$BEAwp=zsOhV|#(HDSI4qCVSzU=yTZywihL%wgx&FhN zthG}8j0(UIU;X_j+uM;r!$~}srT({9JqmPcYrh3a`T28DJKZ+aqtF^h^Wr;^*MejaE5NOKS**5#B z;Kr{PDj&OW;12nN;`WE3HEN{c>S}d!739v%$F0@|t6k5cEcbLcE9qCY+Wyh7*XtaWsEJT?>O zWL0+erZ7tN-cm*>nM*o7a>1Mtm6S_juv|}UN^l#aRLVkH?-+WcLM(G3`|fZMWz-8! z`PfXwseXl^Z;VnZm+}1x_4Hh?x%qzhR`xgWGNs!(nXEs0=DFkh>?V+yZbE)5T%*3nffC+ z?)x5G8_{}mRyJ_)TQ76$?9gy~tV*eT29iF}O1bg-3q6WM1 z@cl^dq88Siu4R;RzG@U0#}Rlp4=>*qH{qS&=r?jJ&G3WIclg zw{Y{(eW5iqmUwhA~#=Q z{rY?$rT`J9PX8`OS8kLNX;bFNtNL79f3#y!Or4e8GcvW4xCRlF7V1}@#&^$vMSJbt zcMSruIyig$Z_$d4WrAyGPOZApZM)^BRT;yVmK=f|sGCAYwtDXrj+cT@sKHI;BU^rV zF=rq&RukveMnBj4zsC2?L1F1&`!YjJLoO?^q<*{0s8x21Rd(V}-6LBlk9{|VViy@; z16d$|O=;P$E5A(vmuCqv0785DfiJu0)FiIw8X9z$307Qk|1AKz;^wQa>1y`nT=omg z=TpG7sZbi!MV~Ns)>88&y#G?~E3d4X)ZcXHD9BMBHDc^~*?cT+eBUmXBae$ceZS(} zdmSj&m=4}6bZ_|?exe_2!NDhAoAzh5?>aKyjWHbaGUa5f|5`ohPdZpb*066Kr-hwz zesuQ(q0mO|i`A?b%^&!pi!8U+^4}!&OINrJtx#gECIx3^fd6Rt7efo`p&!NmF@`f9 zAevWSwg}L?8{C~Pz3V&+e<7I#{-fNT0~I&wpbVx{z^y6TAlP7h*S9;3^!RwP7ew-S3qJdZG;9RcSjnbv6te+%ab18nZ7k)y5S848S#qen4 zvz1TI7*4W;_?d;;k|j`{IZ_~b*?HC_*2@^qan<-|0%O$`6YB$Ca$z3X>FZrf=i$q{ zR5z!3{UaKOB=N+{iGRB^N=f2{mpUDH_4-LPJW1kxmofj&Xh@U9tq-eKZ+qREgRghAqg2J=RvI}w{(3S#)Hl9*5;F%vGbIk2-bTb_MMvBq?dxZ|2jsZp ztmKsTK;s1eW7Wl|@5fY+A~<83MsST*{}d7Kab-uRex*`|Ti9AP~5JJxu~ ztfRhW#lkkC`7{PCpW4Pk16;*D7GvJeJXrVvVQJs57uWX5#opqrg^Pu6DXCf?%YfMj zTnpgaVnl2 z^3jgrPf!!QX|V}I2Y(_~BY~Up%Ic769;BvO#3p|tV<#0;s8PhP%32ZnZb;?2)b@*Z z(vNo~c;<|;9W&$FsUOxyCn&np2V_srILQzqx9BhKdUDUY)bE$QN7k+XB``gp2=#g8Z zLx;NQG#Br#ob}XwIn~Ul-e*T+qp%wBPPg9$D53S9TR(a^OkgZOtDZWzo1O<&isT^@ut4BrGg_ z6x)kkI3=tHf$JTvxPU7ID307Qmch8oZFh%^!)sTUx;v}th6`vJ0@B@1J?)M?!IgDp zLE|S?8~EM+SHwVtoXaY777(af+t-uO%)Z(0b(idwIRFp68$clmKuxXgO2*{)S>i|Q zV|B$KAKxZ-xQ~@ih@1ZNt`KOz;!fD(`7kP-#-;J95q%sD1gR1Jjh2yBdKxgL<10pJ zR?B?{LnYV@Xj$0j5!T45MlVfuB{R7LCdIW>9P<- z0xOq!83JHsUkrmzF9$+1Hug@b095d%zON!s_|G}3xdSr}>tS`W^kCsCYn)mKjWaB+ zZYLh<16^c390L)BqcW@K0RtcVY)HYp;raD5z0vclh1LI~>AAz%`rdDgBGgJsZBer}RitLDm<_e}swy>V zi&`Oe2~~TAC}QtTwOVS`3TjvFQ5{w(e)sczp5K!{a>je!bMHOpo%f#i&E_IuI3hni zpgiZa3PFLLl>f)6iI&;iB==>Rm&d~_DUO#*P^pxXD+f1{eq7OAo%dc^8hLu4sVO)* zC@)ubDES7i1zf-`-QHd98YfGr+$=j3IupBoUSp*&N6O4a6pIwIRTv~?Mw%=2h0*Qx zAdb9%X(%tQT`AUH$rD*~xJXXVJT4o0FBJ$f;wm@aq58s5vpuRuC_cm$^O4lbeg&`t z&iHq7{`SAW)FQfNa$Vd#qQ87)e^s_a)Wu%<9W`A<+FhZDk$Tum=|f!L$W8;G+WJ92jYg!t~G`o0^{7S2@!;aDaFy8jHQICTDY)AVn>9(nD&#UD~`=0%ZdEh!+w`KZU z2p;b7hkrhNKGg`_RjFMjAy5G*N5f`KPAr+x7t;iruaIqiqS*HqQqpq~+pZ$Yi32L3 zf6=G6&=-v5Hlw85r6;T_GvvoPr6^`Fo>Pffle7H1);4*ER}UNNMc`bWp*h|~c4bmd zv=|d?sd_eQmk)^v*<2xxp_YvWjK>L8HUp&F^N8hlH8guOt!KV`h-G9*tnIZu(=ONy z>Gp2P$xok%i_VG$U2OL;s;PkO*r!Y%xXZa6Oz4f-M@D%L=tGejvE8RM=f*%t6|NAS zU7gh@gx3K0+q3O|TeY^hF-JXYx0M3xCWgZueaKsSmh@AB`ZyAvEUt1kT&Og7B0hUE zJN7{rt2lCa{`UvXImaDTE#(BiMvu&8?HGw3R`J#0{JF=?^B<7*0?LWf>QJGV^J6i< zTsMwrf3nk@D~kJig7L}8p(Ou8alydNu^m;M(L{#KP%IKjx9?7it#{Dvbv)l1R%MoXOMGz+o|KRAQO%H2N4@r1*pw|O=9@HM==B#;ccNqjwm5x_6^j zF*rulBmR(3v;65P6~*yaMPGx*_!;u;2fx}lNzdhFed)pY877O<%I^)5dkr>Qa6W`s z*Owhm3pWhS0~OS(BlAyB>1Ut*9aH&V$11<@ZP*y;w)FJV(1Os~FKFB!;C>DjeG0^F zx2*UOHFb(Ur@rVARP?cw3Tiu~J$Fo`F`05=S8Xv-QN)gur?HfBqM@o=T2a-77L0$2 zRvhJLIex}C2dp7;^~~v1bO<-RBa=&kb!YecEBM14E`^Hi$dG^b1!I6-jCk~@t0P%q z@B3|71Lee|`axnx^eFIv(soM}jqNzqT^@q*r3lZ+1XY0HDF|&1{Y{Gwxfk6GEKBxo z!kL$SfdfuN7n_ecZ#skLlTR%Edym@RN^#Hh9IEsNL<`W>4nstv9`_6H-C*N=q zd;_^7N9W(kF&aRJ>rn^lfFk&So*=EVQCYk^5e%LU&KUz3-RRDl-mei=X#jlb?5N8$ zrb`Co?t&iPerwBWE7RCbDOqaRgFacUJ<-Pb>0;%0&q{u+!`-sDd`u>2kMmiNZDbqU zDJ7qpUnswf7;}9)kgM(`xir*4MIC%{>z1VYM(&RmznKwc7Q6Uit?@5=dDnWE*i|od zQ#kgI_I;%=XPMjzb6ce|O}CDK{n|LjziknX0@{j>43>z{*^XyrIf4^+;hb+LquYUI zmTlH8mKazLx5Cbj+wKkqmd&kj?Z&x2#>aFl8E?`P)+DF7 zZ*lRbgl7NFLj*1>kzM>;JbmEV8yK|vD}7^RWVg?4wBpO3RV_aMd*X6&3t94FLFT_B z*7gTjmAT7E)gocalt}9Vk~yY15DSe6<*o3iXvdZ8TB_%_a(d}XSU#pWXbA!_#SU(H z-mIY%1D)WaACr{3x{}>1@P<4I7>pFCFk~zm*2;=t_-K|mo)IDLz}$4Fni~2c_xj{X zv8SGGMmHox6s3uhLMgQKTkDExl}^$Wxj&l6HnX`a&OL8*vbdWqrl;RfSXUln5b#zp z9G2LAt%=nSHEm}SFnw4lp01?RTW?pF86zHG=P_WFE=St{ZeVT@oy>do;r>&2VvIzy zUF8vb_`yo{js=l;-QSN&MHfqBQ(n!%X|V)t$mC*&A3>|H*SZ~H_4yDnb7$Fsd02oQ z#W0@n%#hADJwX6FUbRtiunD?1cORcaIRS-pM!Tsx%c#KWj~d!WNjv;+Z9hf(;{Wp& zMITD2z#7LNh564tzym}xZqrl03##39g;D`CxgY7Y(qODJXqa8lzQQ$}YcR1rn5+{A z7+;*#oxGb{>vn~`&WGrCKD)3wiLj=nHvdGreFwMv(a&wx?*t17jwFEJ7Sui-SOuVv z7m?O7(bh6l=6$5wTP3z%{M={#K477I2>v0X7Hy9bI~kP$7$2ha_gQ@)2HT{I)ptJQ z_F$VGk$3U~<6oDD!a9)y1OPlce-(9qPlML{GwHUPz8`ypDpV+&i`{aIwtMBJ*?>2I z!@u0aeUZVwg;}*(S_P(8urvKTY8q;p!<7d(2o~?xT3QV-0$>7NjGhejS(Fpy`Q1sD z;(I1aYrQ~o_SsHg6_z}kEAQpelE-Lmj_m*ma5)?(nFXn}P~ZxhY_^?AI=*6_+o63^ zw|QITod6|wI{i#_fdkaR&f#52De2~Oae1l&)y&~)04TbBpQ2-*-n$iOXTM1Ipp95; zrj!HpK56B!uogeN7CktPq>A&=bWO4+#5b|ufueFuQ}MM&7oA6RQWta;E`wMWA{51*(#Ky@9Q z`Vt>N`L&mHdqRL%9HHqqTl}Jl0*u$O4sq|aX%YuYg-gpHZXHt)rU41QT72?8q(WL; zrCoMsUxBAK=5bRyAA;$PO+-Zn@qtRa*=|K(8b%?C=$gr8eQ#H2HJu38!;11Aew2S3 zsi18_1;9XvOrJ&wWZ7KSW~gX#vST~bKhi4BITFN+J12MTPUwl9y4bIPs@SST?XT3D z4P3k>K2+u;&+bH_qAioFfk^aR?`GcXc9-S{J2fj`kSxeVEpnQTECDH$jC<10#b-kT zrJE=vfmgQ1FJHN8gPk7Kg$kZv>`tCkdMS!CbY%lVItUQWKeTFt&s_mUfAoK%nK%gSneT@Z zKkRFRUrJMf@jl=X9uDiOM#_mcz$X_>vA0xcK?yYf&negBz=wFM)Ri1;JiFLqVF1QA zlrFKK5KI7-?Rlwb+x+_<$3$IS?C5`fIiv3YX0o%vA0_rD_lUB5h|T{w=3Iq=QElC2 z51IVMOkR1QeMRvyy;P>fz-HV=5#}Xo9~QGXp?#wddDyBoxKj!<%%|qZEnlHbZ@mFH zExvro;b4MpPlW0Xz-^x!c2#xh6fZU78~`TEMeL{#csA9cT~;MHQ4A*p$Q?|S1$;!} z1SdYQ@jEW5ciB@Mi!!=Ci9ZxLj2Tfgl{K=9KU~?CgN3?0d5kB2{Ai{QE|ksf)2MR< zn{yMRIEINfb_z=NAD(^i)r?M;R^LEOaF#vfX-pK9)CBDD_6t>=EN-8u?SS8NchFt_ zw?ypYhsTwBsyt%G9Dw)nO-Ghn%{0Khb9C9@WD7y8FeG-4Mhn<04ZOf(Mg_{&)x zxotPxoa3ob~Q!{mAb88<$8uQ<_XjUlN#*C7+cd+w`)@@ld43WeI$rpGqskCazt~b zpJ9IDpu%8M!SaHNom?+skm?p6g~Qu}$P-#zHW!7Zk|i-~ghT)C@@&Eh_^Z+&nI5ZVVb)2xcydj#sN zanfxreZM9J6$Z&j$_e{Qx1gETTDKDHG#`RI!DwcJKke4DCurY0yRJKfQPv4jJULwK zr{&cP;I~v-_f=r;Q1wIfwL-i+y`))BJ{e^=S|x>BYee;BaW(Ml(0Y9Z`^(AV%PA#w z{%3(f^#ERR|BT(bIo#Txay*->Vd{U*G6oOyFhk{X-xGz|^R_{Y8mD$*h194xDL=;6KcfPlIf z>rVI--@vda>gj^C+B5X9@QjW%;hktaT^6Ne!~fJX9-#a7;ks3Pujp;n=fL_5ZRvbt zgu=m28*mhu>E@oHEFK_#sYhRW|3cFNU~In8k=HC4O}Pu2Yu~Vf!}`dpb>{_iU5^gm z7J5YperHSzsuNeinq4TKc0)^m=DN@rLe2-{02)DiG}r%p2N;Ny3YP2Qlkp6uLQw!; zMu|S%k?A|&G@K<>$vv#F{`M&w%4fw8XOvLKD0o15%>V3qIPZL#AGI6pbfj6u+Wx}} z)g_@>$o4Ok7q*8;a!vbF=f+ildoQvbAS%I&h4#Pja)5UD&g43s!|iJFakYYy_~1#S8a^BPT2tMo z4|>=iw;p%x1QVmXSd1S6a@j_NC^S37c?_!ZFQlAUlp+o-R@~cLH+EM7<2$Sg8G|}E zgTI;vmjQiz#G$z%hU5CG<_yY-E-OL?##C#z;$_n!fK>f)7bv*SUaY~jBb#ec&#>#1 z)8Z}B9}o?Xk7_p!YMH9$07W~%kg)kewr$Rz57FXup^_i`AwR}sevWiIy>OXHsc9A1`*hqD&`GK%w}V=>ngE@|G@j$PEX^_AWcLYrSTTgqZ_jc5 zoj^O9y!F$G46_k>}nW6kIXIudn&{ww|nLn*cdv#Bm z%=NHeRS#+VWU8jeNwXGJl@=Ut&pKYXN&%XTDX}J^#@Zcl0{Lf!nkVCG`$5Dxfa%Qd zWW39$o}MPn>go)|YKF}^dNpkWcyx9*d&y1Q0P^%89DI`y+8eL10Ng(hO_d%lby@fT zXzIJWG<9YjH(Y=5Au^Z`-GBNM9RPJ=;yX!cuLRu; z({aLxZPlzd6WI)^&y*>PT9Np)c!(4TtjMy&v_u~&F3)Cj-R2I*wJ$U+kzl)9Y@pzG z+Gf`>!e5#v)Nk1PJss)Oc2ci(t?xAV7j`pwHtj1M8${tlyJ0eXE@A2@`Z>4Y>+7!( zUsJzEnFE3Ld>!I5*E2C$_doF^Hr*MLyeV}i36q)=cUazJ<*am^f2>7kesVzP4Wj}5 z_y}wNbWro%8CeV7rI5*s6oUAMF-kUkJZRBj7U+xiL;Q~O*Fs{McCmbF5Xjmnj3<{O z5^ZH3GsW!+R~fBTCD22W*t@%QkKU7j>K)lv;YJv=QKjly6g4Qdj)tBt9f{5KLkJe} zK%9nPeYxV1=%`9nSyEOILoE$-d+Kgs;b3LtJcFi+%58IUe!6oNm36a$Vay|6K~jua z9X9JPDJ_V;7Mo>%0}a1dN9UwrO?1RzLBgb3JZ~??gm-5dyeKj-TsIu(Wur#mSi?Sf zFN#PE*M^#sY}6+>9gW08wi^v}QTo1U)d69rx6Nv-0;jT!l8<$Y$RIDNsj|ui>2Hy7 zeug_wFwi4^egi;YYVHE3bO4ASHw2^@iy2PMPDLvB1_KS1 zvGbQ~+8EgFB$5ILvS#&mH7X|H{Z5MT;&Oh*K}D6M$#eWTwc0O@mNx6&%*xIy;9 zjGSqvoLpH&ce+>IcV`Jnm**$`xbz1#nSmMkW8WR~Latc9u|t@jkboEIZXr(|j2|0k=YC)^9u^XBvejuTK)H@M#W5Z$4o+Rok?> z1IkbETkwTFRfH@Q__3*PQmgicnDu9G=bpiPMa=u_{q(I1SJb8@_Wksw;JqVe{f*;t zP0{G@=KXy@+WEqjJJS;5uu?vx*Ztj0Ad2c4(u-#|bB-TIM5FJT^`GwM{wuV*wR=Y_ z?=?SUA=WRkYxFY>sQL>`1Lu>f+UsZDZ!|7PS-4_R>3DA^_nvaEv{^r7QZ7rimk1Q5 z>s4zWTlbvf+Nzl|JY~J0&3YjBiqmO7Bu-G1xDO9NwE>S$vnX;UQ%26U;(& zkCd#VRs#s!=}AVWZT@`_eUQ26IMyT0ox2k{9#tC~Enij(Y;DX$UhG*Ad&F6Nlk|N=&<^#f7 zeJV%Q z0tO%V-9sX*86^`$>UbcAuYvsC`DWKZlurOJ41EX=3lL|5paegJp%3niqi4s_DKSd= zuog)}RzJXG0oHkEoD-Ct;3u201tL3gWFO^n z#-Pt?X>uZ5sK}0-*r(%ND9MiO*cnytW6*Uzv-9k0Sdr)hg9G%30C zQ+8P7=nofJfe1erDTgotfpk9?>N;A;RGOd5T?cXjfp|X`YX>(0#1QO0cJ>YkuE$(hRMhsW}BzV0<#f*jSnT*KtOs>f4=E(^qb1!lD>Lm zZK7Y}tvXVOusyqV(j8K=`T8VL^$@)Z#;=2_`(T9s&{^gC8L`n* zky+LzP0+o2e)MqLZGmGwbi&AY=astN%|d_>%4pxb{Wj3RTTDZ_?3*qiLMkx8ap!WbE%?6A@;& zL37D|_*gR#2qmzK5OOdOaPgc@c@q1#uu#EFlac?XvPwr?(i;6@VPT%RrexeGaxAIx z?i{_8vdVm2Qf9sj8JYVB7ICTp}2NudGaPz zkY2RYb-(($kzN7Qb@qLu$e(+aj;wU^D!mPLNw=UJq+|gO?7NQ^I6*(&!J6;Y@j>Ll zyJpOFY>QtWcV@-JJ*FmL1T zG}{!QMuGV$kF3ma_{L4;eO`#+x=OuCey+F z&-y68wZ2%(9n5uLdvI=ce7TqRmDawd-zKh0Aeh5H;8=H0&7ZV`Z$8Jpzu7s%`B8tg zSxoJ*o%_djPB-c4)XKl+3g+x)BIbH#e&(0L{OPgANyeG#jvT!UF>UNV;0=r6Cs~nM zAz67@?wONILzbKjjFMjxESc{pmv;jP^EN+5QXRfET8_pH|5-J?2}2S*Kf^bIUVOXp zCT%CD0UKn)Hl!@1eWYhTATOq9Wyh<1L|zB9$`8F;1psP+Vs7g@?zA0RJLsRz*7OM7 zvNH`~r+g+cQS1%l<#5dK#VX59w(G{6qwtN;x?3b1H;ru*{%d8uxu;g%eUmEd{B{Xr ztw_n4tFV&?_ezA<(HrxD1+{k?!p-hGEED~DoBvs@8ikU$HKu`Qq?>5=-P3AD~oANuR=g*%aE16FFv zRApz%jFL?BbhnHPVlcz%q-x5Y}B}N}%|OCY(6^*Heu=;t+Nc zsJ}H-#>r2hBvV(-rf7l;P;%LKr7{6eR8%b%|1K7pU>TiEj1SO9M3?D}^-7 zVU6Zgi4m%XptDFsP=ddKQrNnf7_8~oR|SLjEV+xgf01dj_Of6Xoz~0 zh*jPo0Khf)nD9Xu@5x+rzXXXe1M;wGO!xJ zPaL2jxv|7=V~b`8PRcrJwstD2?YlgTF{%MT&mhB}54iaTtRin*+qW@yV1n&fxx%q3 z0QSK+8E6rWIrMlmOo34Zo}hFy|SPj+hs5>Ad>I>$Zc(})-w?$%xILMxLS!O|Q zT>wS8JWp{*JCtgBANR*E20r5m?W)*$nTH$uCX8><-4w#WXB?niK>W}L$SoFOd_Yj1 zr<{NV-nTDD*n(RZG3J$P?6S{9*TtAfF z(wSr`Jb4>X^yrbNcFiMNylIKf*6l6zZEE1KWz4vLp+amkjeF1>yz#P8w2|56*T2Zq zj$bV+o&&a+9@#L(P}x1Jr9;M4&JqVv;3*|7qVpE*%dhdljEIbWXpZe>o%S? z{7Z+OZ#&OAm2Hgkqf8@A)B0C9K8D-@q6$O;!RInIMf>)@?7z>8VEy7gT=mIs^B&0N zHu>A{-_N5 zWe!O(IUGOrw;z3%`1FCZiDSFeZCxE_N%E|y@pOyQ}vxDT&m|+Xk&1Pwcw*Xa^G;*_90^%)B zl||ItY=%O-xqy@K{Gfj8Sj^HzO5>W~BJ!uZGF zJWB|qUXE(p$ad3&7W6d@LSM@L9NZ2&>5wU*xZ$I6Ue_7}X z%*4c>7jxIBii2vqXga8@(ACcj!Gs(Az(O#2jq$CU3Nnf&7(aztYwyTwD-+>Br&OM% zL74>|)%N@8pxQ#$P+_O$W7x^}Lf0jr#FKZff|RCZl(bA64WTW|7NW|k${!73Ez6do z$`V0rc2gRSL|}$D-ul>*6P)|u&OYx4u;)8S>DyFU`ybD}Y@-eJ01M{s0#m8c>w4^0 zij%)MS8hg0)^Cb3Mk9bSq0#!~x^aU8w1NJIb)oAG#)&Mi0(yc;9LAS#!BUlYuNFHh z%j}&TNqF-Fnpdne&_!uf1#s1W4zJo~VhC@5C8IpCKsK!kn#Ue z{7kUd>ysel7Lsvd_hZj5b0&~=Cgza)<#ZH0rWR`x^~D>xbwe1>^sRvh0s}UM`l;|W z%;*ptMX&e=j`L~w4@@@N*l4Ier4|`Y9o$g6lFvd|{4lMsDQ_`RT)P?wOtMvgIkHh_|i-| z6`WKpHve`U2)T6#43&7#26F!lM=|n&RB)e#@%)j6A8;e)h)0>>D`TXLl23*5PVA8` z!cq28dNm|-$-K^g5#QiF>m590yt^2f!y_2m9#M=Fxa4omiK-pX80NWurTVTWQtt* z9q{iTbURX|oB4};j^G_wk9scB6P&EdijNi){^{Sx;D4vxi#vRu3K8N!H zt+(NH_Z+wt?lIhkyJsSj9ioEDq`}(;nF0_COx)oLxD%y1^ThGijA`1tYVrv<1#tmANC77 zR;24h)^t zISAt`IKNRDTLPTmh)2HAm8uR~?H|QLXud|Z?W#(Fb0slH%y_Grm(9rwNL_=sE_Z2!P{PAbWM?^ED4$DmJaiGdo|KE(Ip z4>W9FFC}oOm`<7l`G+mXr|}|cyBa!giN$Rb_mIhW4?XLgxeVA{=~NcPZNs*-3qjf< zVZ<}7a*Y&&)1OOg8*5yFBHs3a*C%NH?XRd^qHBf1G-e?%&>V*IMit4($4wQU-_4yT z>k^&589ie3XM>zK`@%Ed$2;}<`pUlRzbj~-<6{3UB&SAR5Zc}TK%%Y*g9(PKsil^? zX4sP3ESew~f9|b>4|*Kn*p^n8BgT5tb^MZD8LyeeDrdYr?e;LI(5g zAS;Yf(&6s=GO9s4uiFf}w03RQ-@@+jpz0i)RG!HqPsI!pcEk8?3APJ4of+J;zx%wt z5W;5myBmyM9hCn&dOP5v|3@j6_B*e41_wjB?S<)cYE*5pHm(`3L*1YIg2B;+rxY-& zkj3x|Cx$k{fM}16LuQYbbXg&zLDGVYPCY#~S`fkf+ zN~&r}B0x><`+bBI33cg6XpNf%xrtb`YdDiRm|6;#C8hGs+=@D2~$ zNN3*bshC$nNOdoW{wmgn0H11!@AY(dylqlPIyt%c22ywRiN3Jq?%$LmO{5pMQWy=p zT}RjhZe$r%$L(~TJ^CW1y<>{<_aXJsi$BGtUwJn^!^^Vg*--^n-%5|^=GC5QWwdouRbW^G-GaHarFAek*n{kWQ>AbFSL2uWF z)mKl68nh?xVeZ`6LO&O|;&X`8wnk+PBwts*bK^G!MYYXhPdCEpZaUEy-v;(TKK(((bKyI6=eJJgT8ArJ3&zzH)Q)APA*12=H(>si2LVj&s-d)*wa!va%3E%`Z z?(wTe?+(&}Ko2LADEq(2&e(#Dd%8n=4ESIg8L8-X#ny7$SNv>G{3+S|qGwq*&;Q2u zF|;9!P#NI{7~MPR!Qa@FG)rDt0pI;6TxpWOhEoqIym(t+#{1f~_BX3>U!r{*x&EID z0eYod7ET#GLN@0<8~Zfpw?*p{9_?^`TC`JY9S~i*=8p-X^`2dy(J3_reNOLCu00qH zkS%jO;NGsq#`4tDY2_^|3$JsgbFcgV^;_K5fj}*PQ1^Dzg37-cR<&z3!8k;TTO|R% z0wrzn6komhX9GsAF%`VKqD=eU@o(|h+~-r?_Yac*1!XZL1FVBgVFQ=@zX+Ce6XLP_ zajmzTij<#Et&yT<$VZK}pi-~0L~H7SmP-mA_$1%(NrvrJP1keg`t@VFy@yY|nz&9_ zJcuFa8*Xhze}2*s=y!SvokPnPY#i@((zq=>G_%={^FH%F&;@f=m9w%ly`^+35wY-Q zQi!rO=xu&lM#^;3-c&f)@$YQorxo<8H*4_h%%5OqLw}}HgN1shp(pr`uUp9AkKYC2NKcLC1#aqN zjA+4K;|ijy>$Y`hNKl{$W&Qew_+A70(aWKzEiaKFhYZ_fj(p4L=WWa+$IMnjur@8V zqPNEKL*5y-GBWvYI?XRBZXa(OcWL=LM5#;ZIe5Dzn3xv#<7Y*CXguX-qMo-2vL9!) zX$UygC9DeWMB2}m{*}tqIpCfN>8ePlW$BGl?KpQ)mrPMJ1m^00aGCg1`Oa~O==Z>CzJ&@cS3zXLW}cCDuH}@kUN&9+lA{Y4CD5Px^q<15k=ZQTpe50I7|C%6aqD zOi}sPxeTJ$JeM?&~OsptmV++1lZqOv(fsE_;2kZ3cIh_=VO zmKHob5>UtdaZ^fI25on6S8Y(TgF>moILf{a$8fy#nE#EI(UX9`9sVC*zX+v_Ucbqd zS=8C0{=|?q%gP{#se+&NiME9BOwG06JZ#-;?=ob+pI$`{LdUd4y1puKL}lZ(rtZ@#Ho#DZ;|rl zubJQ2g5wC(*P(swpwl5Xi<>mQEXIDOzcrakQiTO5$?Fe3U>A?=TjPzst{-@h>+91) zI?htu$oGmG-^|AoK_zAm6^*wmj3>N18vib6)63c^X8c^+N}s#Ry8jViwl{($p4J!A zQIikklzG_F0G+qrVbX@V9+~vhGAU^Z(8-^H$q)L@5etzYoNw`wX+fyW& z;aA5NEpI;it*1qa$Dd@yzGN#`6by&xf%tj5zo>QG)%uJ-yPC&zw{V3Nei8h^-l%R3c~=h4#gHY63y z#q$yQ+g{(tJEd+I_C1IDQCjL4a)17Q#UJh|8<1h-Y)d`mAJUHB)u0?0JW8tP&$eoR+?QD7&;}K6pFQ z_~Q!oC}Q&Rifgj*YI%*t{f-t&E@3E2Es@^FL)}-7o>}WM?9=oEdmdgbwRkQ{&MG-| zeTI}Z{Li5`Q3cO=xX-SJEGISWKJg!e<;e|247q^=JeZcrHzqC!`YVn+dnIivu6EKA z=Fc&ZNAWzoiGK~NA6=v2;WT6@KU;@bbbg8J=+XH0tnXV0=w8_Su&U2f%~#czI=lOq z8EM>{er-{-s{Uk1?$pD-iWfCNba>MBs~aQFx|U|5PDT_Hzn2zWzBvkbc;O~K$aGO4 z4cqVevUNq7KIz;ea1lno)hL&&yDqM`9KSOY^w&f^(ogH)yHwDX#5Y?!(0$&RHGM~f z;ia}@xz>*klD4D%wdb+3ST!D2U;%_X)sFVSsh(g9JzPN5;1 zpkT)E3TSz&hO%~Q_L_D*7eG8~nTcy!hN(_GRH^Z6f5WN~T=7>8`W1fAa&bAWSAvLD z{vwA(UheUX9oU-jJ+F@to|b-;&9l~rS}Lj5s%W83CTl`ofGJu1q-Me+gG2*>K*w8U zd{UcFhJ?EfZ~Nr_ZLpX4yw7G5L<8&Plo#!n@8z=^wfCtW)~V(p<;lqno_!0{*S5GP5`H=k*or%xheI~Y^`@-~P6r1TL zkK2AwKvy>GtW_-vJ~2k!z@1SL-vbU!ItJst|8Esax$nv^Zrx zNs7YXnD_p{xT&$EoK#^g*v*(-eQixrzF46K8k4)G?>(;dr}~v(*UcpprTg*KQ6JWqBTiB4-?e_rTC4wV9TitEO%6^HpJ~0$H#0;Zgq7E-E?u^Zg7BP7 zD%8yQRP&govXR7zUWpp4Ulo~jq%a`pGr+Yk703UU>Q=Q+ms=wkQmG$X*IfHJ>tcke za%juvzA;01JSA8DDe!XUn`DgH7u)*RtXe9+I}Kk*1CNHU&2d$tez%1GUN@s~@58^J zvrB!1|8#zSo7OeVKU1@~b1?Kd)fV3P%1pr2G$O2^;y9Vewh- zj87c>UnT~T_NBfK>n}z;r3nZRp7m`)ScdhdR;Es#RF(H57u6*LtY*-*wB>b;YObDq z`Sy#BmC)C;;r9@te`jJd3-VxJ9T)e%cRdT~eCcXAy6=J+QK_Hh%hI z>5pIKK+opTRv@iz=q*LD2C1cW6ty2oD5pq|;Vtae?*o>{mttr2AFptRXCjvYD#KU0 zC$83)+1Vdw;xo4_GE;l{l0m8c{wDL=J#E;hJ z`a4ps>cX@Lm!dow5*~84x5c`x=mV>{s_k%)#Tseu&(f*j*Yb}ta(|%iaxz%od-&s? z(%0+0`U$7RJ6_Dl@M=EDDawOi^D?^RiHx9-%z#PqkbCY*X#18oeOdn-o^YX{(CkQ! z`zOJf$(<@(9;T?3&??1yVtxj%(@GOF@~Yd@xrl#fMzIBZm9UeVS?s@8c0#`SGxbeT zYrlja<(Iam7?oChibYhfSmdAogK!2#D&uF1ok|ha(xbn=t2?gA2qLRx;GHkxMlZHc zf7$N;lzguB#X;agWy7$P)y-j*eB^;SO26Xkckg$Gx+t1c2PS!qxVEGh%mE^bn%A^s z16IDSTd*K)cPFZOzOXJ9Kimis(W>}T$6IQ>={c^P^(V6Et|CWBYnz1;Ez|mszq|h6 z@?#LyVJCz23G4cRR9A=1ZUo57x>lVPo$KlKO6ZOO(^*-L-&W2yzvQ9Y+BGNPqB2nK z{I+e@+4Rz6j~C>u*VvQu$@r=d&A%SOG+(qCF{S>~w&9(z8@yn#)T{M3?v=WppM&=r z*)H3lsYO{;qzvXnrRVI^(0`8PQMC4cg&9{`;fe@Oap;e-9&}2Ht2(`l;|ZWO%g70Q zy4^Iz)y;TEzNQ6PyjVk2HdYz@jo^(+t;15Jz&)*FR~CP;RfbxP#m4 zZ#`YYV%hre*ejab@m_XUk#=psU{AQu=pglK~Su(@zqf2M!N*0i#&sjTd zGHWES%-BkmTbi#ezf#-dy>NeVHIIaUBm+mryFVZ`(u%xzoT&69qQVC9VQcRG8_nDN<UIxA{igQpy1}&BDdfngSDyoC+ZlSrIGAbWfBrEdnKW|#;5M)qd&eu zGrOc)SaDGJx=fTjR$HIRcDKEHM)hvM&p<1Oe_)N&8w$^!;Jvy`oQW;795Sk}Ie1zo zd1bb3%hp)Fqcwx#UN_0*nTrd06s;nebp2@7f)sk$_cgpfAhmi+A~-Ufo}g~enl9n= zUbMye8avd8&;43;6Zw4fpzif*<0iQ`sfBoX&C?Jdx%|Qr3vZk!_sJ8Puk=4!C@kU^ z4qxpTh^JC-#R+ZbhltcZD(q%`-ad46xfL{xvbwkSqDmuCXGN~x`TK88kJs9^bLKjgd4l4fuPTzi=+J6ZzY;Br|v9yMD*Yzs(l=?kXx}O?gmXNwM^S&?k=ooke{%mIIhZ zMB8#%idA(?7){W2-v6G!Vj^p~7Ds981vODEr2SlvltB?~J-HkSkNYyu*C7V$nVp+A&2sLJp+B#q@Nt9vi6%CKyd9K(?;Hfh z?~3H_KTA#vdiJ_WyKvoZId9GXOscots!Y@Rhq!#3)w8O9d~ResKXV-$+DMvOa+DOr zKkH4&5@3r*5aLn%p0kD7%en8r$|S|A>P<>a!$XqY)Gz#rQ9Cq-IcpZ@=PiCxzcLEm zkqK@>+<$~u%?p;@dA!Ko5O`Sty$s)jl;~Sv-_xH13l0JnTofKsTxz@=Mbo-KTGO!r z-RaD#P5nph5U?Qh|6A^}euk|l_otznh?IXcdX0zP&7v|dUhFI!>g{jEZi?pxhN}iH z;aISXJd^RB5&HcVh~JY$nQ{`2(vqKS>h}XE%Xi(KI_4#$e=l!@#)PamE55L*pR}TR zw@M@Ra_?YM>UMK0tVM7eOSq?VqP;aZd5CRVfR#lLQl5wMLBWWx$T#7sGmx z8S`oKE9~a_7L0ih#YH&32a!Lx>DNWc4NkGrH?VIB{=WWqo92a2sM^sJ76vhLrx$!4 zdS~x+YDExDh`GlOHX9Yc`Zt@Jy~oSN)LCD(FMgwWZKXd><|Bv*cp$iG>FPu7Vg1Np z!D*IofP8{0WAIT>4{Nlt^{o!Y30=|SRjlmDO67)MT#{J}h-Xk4 z6l-?8GU&AVk{r-AC9D)Tp+4&AFv{-Ron`CC{2i_3sq*cKW8W2xC!^yh>vevCq5*q{ zKji7H%mlBVQ3~VI&b-i7fAakuf90SPUpdk&r-8a_Jw!pBO))ufbMCD<{z zc%MoAivM#`^8Ui&=uanu+4@nfjInmA9hnyGK^^G&%q0KG<4;23FB@4u z`z4-Ppl+D{r6dvao|d=u_&<`a#h>Z_`*%YrlKVZmY%ZDH8%C1L-0#Xgmx_eVWy~$9 zEn`=apxrAXZa~UxfzkR;HKVXl&-|yG!b`ZHw zINGYXp)jlL&5~wMP~s~0fk`H15aDad9XcZAHq> zIOx4id^u>`&>+9GWHk4*PXodBFSs&yH83Sd<1Cd(n2BP{s%X_4T@>225=1W1+I~g= zW`2GPn=KQY(89b%JF?z~WQVMPcnb+D9`{DtO0yPnekq{Wd4FsI(rLk-Ijj67bKQK= z%K-2wMg2D4^~^R*)~71P6{D9GDErfogU%;6_o+`?0-J|wi;oZ@Sg1@0zt2gWW?o288)haE?v}tZB>`irV zt+48@U;}>dtS{n>V6nKWe;$2W;tH!9hCNMYIapS6pxUmMjCk@;+zu(LCZRR@han3d zITU=NcipM#&*Ui{f6mD7VZ8^!yh2}we5+zfQ&sfq$jpIIrpF}jMzH#eb*WuoZNs;B zj;64PWazetYUrE1xoG_pLxCKZirf%@ad=C>KQ%0zUM~n{Om=1*@!Lyn)s%%1{>0fi zg6u*$jOJ5MZMxECTVyfP(boq^^UEg4-NtWx6b*YK+UOp{l&7RogWr(|1R(~elyg+S zuY!a*M@>=_)&La~5s53LF(Vtt>IPMYIBUb@I%yZvIfTKMpjNa%yO-%>^{8*D@m9s9 zn0~9S2FdC*`D!*O+KN+r$IDA;#q9YCYy3b>4iu0gKc-%jwjl4l5xka{Sj>;eE4X!s zoo0IS8UP7gSa(WU;Kc8j>Awg~Te`0F`b8NhPp4I}zjp?K408I-4P6h=;L%Y}RK zPYKG-kvB}j%kx+5TiH#JfP8eK5g)i?X<$a(UXvA50aJy0Pf`Wmg#$WIwG!K=6q|+E zh@sfcQH;>;k5ca?+BGsk+i%pwvi%9CkZe=#*NuA(M$aZD*=}mRtzGgu)ritbQ)QDy zTUjHve>iwJUIL)KEXlquS=LQ>O-UT=o+TtuxaU$9#a=L(5j zSm>KKk`;rF7Ly9jACMJgOsF1LZ%x!YF2FCZuEUxJJlfUdGwC@4O0jyUzkIQw=*26Q z>q$+H!)D>1#416a0$ZU?;fZ_jq70o^ecTAf2G*Y-JNfy zzxL{gnWSj;H}h7<)_8}PON(;X&Rm7R+@K{vlM!v)Il8Fw>((f#2Y$W8CM_3F<;G#? zDvkpD)%c@L7AuIQu?9Bn+9%zC03hdQSAd)ugH+{3O%A{H12WoOXe;za$0oP6QLw}; z;=xm6WbZgCC!JxW4TxHk7oJ?pTtiAPsAOCE`V48sP^CP{F7&RxQ?9B%nBtC`!$FaVtdMcb- zW=lj{xLOq2o|KzGp|LnuR9o94b3%T_i1UeIIYV(kXn8>1-W822?0Um4ZXmSg<2Bm(qNNjp*@P zh~&{M-c2fUSPdG@f^I#r07%F#8V!5!+;s9w%hVXY!HIfhYK^jC)~M$4Mz2Ftbt2=L zhI6Bz&AJv(LsoYkl)mMhB~N$wfhHC9H>F=e<5&;#8(#Y)$57$dDxofz9COt8d`Yf| zM%3avVMJD(1nT`eLN(9k*bf`jruNb#2LXmxUNOsBVJ#Z)`%;Q65N*m2l&XgPq8A47 zR=zbrhPdS5ystTwZ_5>e?yhlH2LN%VH{M6X5Ia^Je-;o409S_`vS<4OlWre@;%Cn|FnT}N*1-* zZ`2W1INJ`82s(^Xl8Wa%4IJLWd=y*?9y6TW43&)}_^izsUzY@`BPy!xq7VxaSiqtp!7hJ~ogweMHPR=38g-zkLFYBf~bbsb>dErT-Y0Ltj zT8}LY^-8Q#twolBl1F_Hj)tz!>+G;=G$&q5fwg>7N50rFyrEHDUkOWr2Y0-^DL#!`6bE;I&ryy~ReieTNM*1rYzu#qukB&m7WXYGM-yPlu(2pbp^l*tL@EaRLD8iRzsea+`Ej6lAatOX$6~*I< z5?!gpQ8+jsYe<(qceq7mp~{lq_X?>Ga!_ z7V9o?Sm={*EIo@d$}NkGa>x<5cRX(EllE0~Of4V62O|^$UmcN+2+_1+A`kc!vQE(6 zK%~Ai^t}KZTbF;mPTF#tf8V5Y7fdJOLZ@_D-NFu*c>esg-R23xrVni@N3Oz?5-F$( z$0Zg<)5uJ8ld47ZZ>>SpaCi%5>xCNHG5$mAaOOR**eb13TR zM5z(r^1p)l__!+f(2+^hWn$wxt&71Jto#$FU8(wQA5$VenLa9v>ag0X_^@2>nMgVHiLLTEC5%fFW(37z91NyXzCPlOSTpXuSmi$JMrQTlHo zSV;tJ@5vmWD^vSyIoAp%pQZU*ekrq=;;mA>0-t(m}0+L#dt`Ad?$(a1X5Jcyu$c+iv+RjFO zD*m!?0CTonY)xA6x%)>R@1 zjyeZHm^(opi2Vx=Puu1GY!7eZq_q12S)waxFJGk3Bfg82z%-U8_;$mcZ{u71nvCVOIG{Qd0sGx+-5n%B;LECRvRi$lT zfuc6i4MuEwMxe()tn=HjR1bGf)cfb=JB70OB{168{ zZ}5-*joiVS*N1;RL!V0kywMOxDAr`CsZk3IY%h+R)V%K`r=3=7@k zb}^L5@iC-opn7F)k?MJ)4S`M-oE^;KEZd4y0oA=+AMHP|PXMT&`-PdrVgl=jmH}Oh zx5v1bebfW%??g+>{ryhIq|n)OJV|zr7~g$jnr>;y#^dJCA~wxQIcXu~CMZR!;$|)p zkasC0BWqgyS*534g-oYjLNy|p+SYDXoAR6rH7tNLVyQ+Q=FW0fx|5Yr_-DzN@IoJr z_C0!D(27l8gPFW3jMvM1%0PQ_tXFp$oxz5;rh*9TDx|c(c?G!_>|fjZ;2@Kx!U(sd~xs*pvlxXX7fVSdp#zP|s^EI96sERIS$V!(syR zqL@IbzC^UJOs$1;{=(r+EAaLeY4SzuGbENq_qtW#C`*v)S+&KgT@D_r2+c%eY*g;u{iF2ms1gZ1RraL5N0vL8`xk{*!R5e{W^)Ln-Jv-^7t?nG{vF&}Ls9 zdA>`A+Li@mSSFUSS6+&1P)DG@vd1MOVOL^$XKJ@>;PIGWg&mj&A+<#7cy!U$5=?RRC z^)mIUQHQ}->d?&Hr$O@K@sG6&Lar1y7J!<2i_@kdiFO*Mh=M^0@d6}Nz{9av1s@bVLk#yf7PowhnFesd8aDbw<%ouuwgNN))TZ~_Y#KRO69Hq zI;n>P04#WUegAOmGtc7cx5j;d8T0sM-XW@hMR>x!O(YX6pze@W1*`s{H4cGFbJUg| zqCOkL#*9mEFn;)>*7FaUcoRIjh%Efr8hd%Fu`&*-^Z3GP`{RXY+RiXpsu9%JozT;m z+LaOsFrV-kYJ-hLEX@Vzj^LRYKnEf?%YTs}`H^VFWvBG8g&&sQCsNVlA~rzm+Y__B z=Y`!RCsFMg#ZVdMs&%1lyuiz%CBwK3y9%kC!9O>0_O4W96g1+bODEo`Z&$QBZ_QN| za299^OZcj&Ig)RTDbsVx!{;{1JBM(Uq|D@Ri(HGoOZP{p0=1TA0L%T`Gh6}Sf5C~X zPl!f+;&`mB?D56hzL$roM&sC+pO(gv*zswnanZEiIE*LSKIw1n-r$&cv*X2IX#pqq zzm617x5K7nU)O~w+(Iq!MnS++km4xjpYN8%R??*$tZ+rRu; zku-IWM(rZ?XR4>2cR?M=!1~)9T6SB-=i9570BqZ!A@zy4Dqw$a;o5Z94vJlkL9X=R zojTh(Jbu^E1F}`4Fwl$p_G*&C{rSmQ2A{H4^t??n8x;;IHxPYpBQDj5!WggkoiT!6 z^#txf*oCd_q(7?7cq)W_*@J(aA8qu=poG-~Fx5lM-p(uu4gfiLD}2Y#f=~}#==Dar zY2-QWkGX!Uf3riT6Rijj4ftiT>9%T9$Y1WYKLKl@NOFL<_sZP2k1J9U%^#-zS^Dho zN-e{#`qWPIWzr8<1AMTFZzBwFXa8!&8{R&%cB{EsD-o$*u@CYa3cw&>KxjRs64aIw8v@ z%R7y)lr!>QoWutej$(SloJZt1Rq;EEvlcED1*nf6%Pg7KW}=NKI34^g=RhX;O((;9 zzACSKTTpHF)Bh%~eLS;T8DS7{nNh#g>MdAFHS%Zs;0@y|d zN|Fw;KK_ahbFRdcdAsqy+~0lae$v>9Uek|k@)6{o%fkwv&xqMr_9OIda&!I6EAG6f zn kHD)ALz;sg$6uKOq=kM6@#5`T~tagR^_eW`HgJ9e)eE1ajv-j3XT_vvT&V5o= zZv80q{LJ*ey_J9VV6V9FB0NE3EmW)}5PQr%U~E$Z6yhwEB+s^XX9Qdr(1`u{^K`Dh z`QEwA@SMiQYz1ImXiJHmH`qRLMq)j=!i-O@iQ!AL_CivazC|ih(9ra~l3yCh=__+Q zz8wLYygL_ib%Qct4*qa%QuSh0t_P!%??M@4p|9!~e0(!-s{W6rt=&Q9TAgkypEC>HM-^hOY5qlFj zWj`$RB-15#~k(ow@nGYZDad>5t{;eo=c5AllyQZ^A+!xLe4@pgEF$QKr+x%TB{u4g-a{WBN! z2dYY?s}N<86Nobux<;QAmWlfHvWF|N&@!~eBhy$VKPas9CHB~Z;|#i4jw(z+rCeUV zkRYd8=_A@+UgqP-YHqsOIDhv|9J!Fp+0_XdtUgiWh1wT}X0_uYFNQAJ? z;{xb`4VUU|eyWf$6UpPt*iOEk!X_LO!H>u&coOJecN~lZ>1we7^E5{KF2$3Fy?! z|9!L~ckh*=pXJaKlJY&9x#cLVkr=&^2)84Ql2rr()I{W~KRjY}JA}WN2AtDKknSPg zA+ohl1sKv@ddcL5ZQ+W`PQIlHX6Tf+5jhTbiUz5GKaFu>95=A%*Vfgtx5g=!5XaD~ zAb|tiQz;_w;_(1gs+TITgCZ=1R^Fl}ee5KXYPKxPC7NYC5D3l3ZmL#{hKCfDez&GNfQJ@HAA`uIw`16$sXFX~eCR$2=m zqNI^qQ*hTR2}rz95{in}tMt8F(N$VjtzXwB`fB}A(p1o3F(Nm7fmXK|0Y3j7r+r&^ z^5NSRq3}M$9nnOzBZ>56WI9!&l&+9mpbWq`U6O5x_inmZw2J~Ihv$A39DB^@cb9~d z8-9V}f6PQ>zvp%=r&yikC(>An1noyVQd=*wD%Et6DZm?}yy$gfI~aD99)T})oavaP zsB*6&;}7+mWm^Qx)B#{8jR&UIp@!rD9)*=TMQ!}Eh4q}xxaN@W=2IDfW|OZ{p`V-J zsN6wnJZSeR#~xMm#S=>nskLLGZP0J(5c8W|z_4rGktGQ2a7DO5olSQ4Y9!;=Rl!)r zD3Q|K=Ss5GHlJ1jt;X_oPoJ=qhJzd0d~!26da`o_FcI6f-oG7yUg&A=G6FoLH&L+W&&ly8qnHFWmL&P zX+T!|4E*B-AQiYvGUoXpHQnHZ=0J4SLZd!rXB2zMo}Li>Q`GxxebMa6*X4T6Cz9Ar zlB4w(*)RUma9EkEX)UD1XU}%4(Fyjt}hHs8E(OjOEmvc z9$GXs%gM56@8YQ}oiGml41E|R?T%-|g91)O>Z!g_)kZ?bX+fr|TSZF+4k+Lzamm;1|b>6`Ln0@qMw z^YXdE4Qa$uVLSdjMX#Y8b8)bfc3L9VsZ9hRRioc>PTEm^%I3;4jnjIkEi&>d zeW;zua_#^rAJNF$J?ZwN(IcBezZnVuO1wVhVa_o5_>vvOKIn4(5ccC#%i}Xg%9m zQ@-^FaHHwlPt~3B(}V@=C7sQ={L}9|1)G6m*-5`S!ql(vaurnJ1gD>*gc0TmB4)ji zcUenkP`U5CW<4+?D|h^2)yi(A3?wa(8(a%(Vd&CNyC^Q{NDf8jzIIevY z-mPHP`TiH=GR@WMfmrqq(vIbjn;%G_2CNDWgGUxh&F~E z|F)lE>F(ySwDgK=;I`Lb#P zIhVem_xYc1a(nzhOGUN&0W8J5&b2&Lf;z3B8=XqQST8c`y_RgtB{-!^jD?AdH|LUr zISyYo%@mWOJ>GGcw+epkueLEUu0K+}(^u}f;wL$}C>#%6c$#rHu|{ zWgjZwcSpX*ld#`d{Fc&-qoB{kH6_EaCZ7SV*V>XY2}R3h$apbf^u+>`pt0;B0@1#G zH`iDS)GU~@cF)d-*8Eaq*=2O`$;3bzW16w4oQ-wO_Vn)hr}1Xq>u-7!g=K}rn#@1t z-yBpSdk032S@sIPR`M$s8j<&Pr_@cAw)AbWxJ zO8y3NLB%6wYzPPTYPfw|+gA!__OElC3DD8o~>`pW_#fv8Fa``0|gjD1#@hq#804t6#Aq2gX#Sw+; z>RWW#ke;fq(;{1(7_x7fsv!l>5U)I<0OX{qy7q!ml1EQ@l^SzF$kJEw4jsxK*2cf{ zp-<=C!Ay=6pcAKyQJXM2Mo6~JIlrQZP+}RKoN0!8o&OyM6)TOUT5d?ot)#yf#PA~W z6)%p=y%9sIo8Aq@oJT-(cW$=VJ~jEaIoF+AeY>De8RHEJwN2Fy(LvK0-61h!)g zeHA*0?wod=YR-Y+JKgFM4@($GKQ)&{P*?4ot4$Qsv+CwOU!imynapq|D)D4C9?7lk z*~Zz$%Gt%hi8zdtS@W=-itvq$&-%QI{;2ee-P)2Ub^gbNQsab+wEx$VY z%>LRqg>|+kBqfKygtj6_iUtJymevAiyPIBB_Fd?FO=;AVtU{Q7EI|nk&ixT3!b?7} zQoYgz1DMm~Vm~GBt-yYkg%i#d3YMxxolj0vzwmtwA8(Y8-fjAKrFY!3R#LE$F8Dlp zOA-1_Kjq^c0Se}?4(Y6;Npi+U;FJ)rGkylW{frJ-B;k>h4I^FCg^NS+xyO(tQN7CH z8x{v)v=sw`Du!}S_2ux`;FEhv{ZAh(Ju(X2b2>yU>Q|EeeVPanP}hsLi)mwD-kYkS zzJw9Pn7WB-tf6S6<|r@elykp+RY`M2r~s9grYsQ)9?A(<`u)$|agP_%s_!>5WRS4{ z4_ZDqd@AJ8^N1Wc$3S@sklTMUl`nbT& zz7f)0Y=K}IoHQ7od$Le%aB$7+@7J`JE_~SroUl4XDA0+t*Nw|{SrN3m<>tQk$l0gv zSgOk1SL9iPm5LMD^>!j%3KM^kMfvi9qUtS)8)B?R5@}-_s_+kZ_ZCt4Ooswwn*?v;s zil4tlXik2|=3`^Gs#3y7j+EA^?SOCM^J;zxjGXsZXrFfo(YvGhY9m$}J#Xaqc?0VN zpwZZ*?DW;dh{Y3yC`@X87EOhe8JKu1OOPgOKEN689n%XLRST>9s1$%MYUpkkx-&VF z0U4SI%O1S4skxI~qyakHl9?J6|JA}w?V#|)IRhNTNBH(=6N7tM7~wl@Elw5Avdu5pIU?< zL^$JNzUsNNm+tw(rxnf+|;O^ zBsy>0aCF7b{062wY7+L`VP}=Fa_`r0TWn(OwEuI=#KA4+rWp$R5vcbH zuL9124hr1@`^+#sS?;?!u}jvS#|HRn4itP8IX z?YQXXhHvgvNG)pXZU((@&v`z@$ZcGto@%q}AP7dU?_j;Jtc7A7!1(h6CUBpX|Gt1? z&zHes#l7ZL?#5pf_%Oz)M&KgmST?h9rT!=UcgB&Jgn=ITrPTcjIqN3E`AL0v!T}kk zhE%jI9*lZqvq(W@$SmI~3XOpiplj=}905REn$-y2egjj2kW?Op;;sMX$K3o-VPN^( zhUad_16J4-`pA3v2*Zu+UGnZkNcsYRe~DuiBzN4nI}!LiGNtP?CNpyiA`q&!593{cZO^xPBdP04smr$rqpEwbq97ov-2qmpg?Jx-7avd1`b=A@&@z zXD4qtM~aoex|!Jl@87zCt8?I5zxbtp!Ow zXxyD91G=;@i9J8%dvIquJ?Smsg-$bM;42Uci>FJ-eLgkP2IAbzG|LV>U8rAlD`e|) zFulODy>$}mT?tS}(xbNt&ciJHj3n+G?oI>>xeF?*&UYu|mvHM+uGePJ8$3_dYp(Xz zGvM+15P{7vLyURCJAp0(X!F}qc2&OS-}2FhP`@RgwSj0%8vZ1Pn!*+mI1IAc0Y8@n zZa$z}A%ey?z3oP;i;PeOAh2%e)vq@v%TpdW6F=gXf!A94+^N z>QR{cm>ItpkBhSgc<~O}t%#`so$l&CF8*6}F*tFzh1{*f;R2=g?6MhXK4LYa8(oxw zp6#Sc`MN3eLI#cQsbntWw7ePV7-$Hx zyDGd4gbehNzAs;WC+{4LHQA{jFYY4vzAOh#PU}yGdHAa@l^PB8smJW(^+i`(sF952 z!__?vVJ+^~v)@uXxCFLd%-obL%Ab$GG8GyEN+f#xP0dvN;s`tOVIF;k^ikH5i@`VQ z1|Y-HLc49uW<_!3m#~9<<=7q*{y%JK(}isGEN|yn>6bnytomE&;D_gY1QlwW4^JPk zYwEg`274Y4$WQQTQ|>*a6J;n`SHtrm)ke#G4+JOGq(Aj|yqEa_{HmjE(sX{nNqqVW zYi?z=Cs2Ml6zqsk685DHT`0J$Vh{hl-}s52ro|v2ra60F2V$`BW3EKsFzAL&VCOkAt?mw-q2Qd6s_5iO1XVfZJ|!Oa`$Gd z{)ZYGE4Fz79#M6@xY5=|!}soN4`dKxP9=AVkESWUAIf2q2nDLX>-AWAf>y69^es)X zn>jxgK$s|ADi$4n5H?g$W(k>+zY~AQxyL;06*<4m~Qd7m} zCvrPOPF~BhIYTZw zV4u+m=%omE@s+K6JXEvJj!Jq+#a{x=okNDRJg5gneaiGbF!*jU)3x4bwuAfjP>Elt znqN#58?n7V69+vbS9(6D;X=BP!uHQiUTKnvX8juH)wEsC3CxV64*^2|+$5H1Zv$4Z5}5LPB=ufgXX za@KSlNcEi22sB08c#(C9O6sbDx9Vs_ja@mw-#T9;U;X{be%#o=P7&Q-he%z8pZKk4 zqI``!(hthKng;#`(?UieeQL$%bsL->SMSU~MAaQQoe+;p_v>Ks)f0!vF<2LX=;{b6 zSe10`vrc}&+I@w+yHlPYVhr9!y{@N%yo^x8B0XtgFT)dqu{w-P@FsOY%PUzn7x#78 z)d1EkQ)A;-4#x8!tI~X>RIT~;vusLECqB)3!i6TmYfvrBgHK z82nUYpX3ETQj8SRK+m~%>g{U#mdcR*`I~3|-G@qO@in=dMk_}_g?81AwGr6MNw#z1 z8--BUVr_X+>bJbOK=xjiDidpu#40U}7yO%r5?&qq zxIauJxG5I|ak^`nS0swf%gl6Ly%7Ed>xMXX z!QCJ98+$HP6}?~}_=mQZl&uIAo#`fFBoH-0fD@cUdO@y;!sAr>?v9P1g@boID9_LZ zZ!-xc??Bz{Hrk@vDd5hfga{ce-9VxaUvN6bNLUA@NYRPj`29<( zVeJRIhkQN~A^!Gh{Zt(SHfAF9Sk2T$TXtEtIX#i|aMD10}(jxo6(QNAni{ggi85uSFGb zoaVl=*%e%)J`J*-?eZ(?A9$ObIoHXQc!2AD+393_xL5@M0Q@!oSN|6`UV_@pXfyw9 z{PwI+(<%6d5CVveS&zeC${8WOUuN01F#XEI|E~-&b>G(Uyu(hl{inBitis9ak_M97 z@=R~TwJt%g)GTq*MMCQpm*=-HT)EaqS@okF#w}RTf%=Se{D*OH6u$I_%vdgnl-U+;5x#EM74r*GR@! z^Qh;SMzwN*&ZQ8kUTpjUH*G9B?y4Z&gwdBX3Pd~2Nm9a6AdZ6U94bDJ?+5(m54sY^ z48-PE(Cn`YLYyO6y!0{gR*rz?u7Y4Xw7l<5hnDaW!z~dWA-QAk5!VcN-4(y*7NJaH z+rhF$y-8mWGlDntER$eEZ2-woZRQv=@mQeJp(HZmU zzcZWj^)iSJbBO%1b;7PRU}_P;25Pbe16sfJ;seH%*XhsWvJB@4dYOE}g}&&As0no( zf#?ksc<$F-Kv%bmou1+Hd!;hc{)yfIqG5P;cmloq#y2{F;QNO*Ll4uj%1Htrgb}h# z!;i@I5>daS^2OY_-piuuu*aQhFgmigr1gq_zFfB=gY9k2!D z!FD@j<(+qA=bdiB^9m*>?CHXC!1DIcWG)sEp&A3+2^&piYvEC58DHd_9LP3B>U&A$ zWPx&D<<33M(|TXD%Suk^O&Y(i{D6Z$NC4Bysj|h~PG@ns0$RNU90`e!4E%QI#G4RM zG5%_to>>**PBh)Y1aSJ?ah~r(Q!Gs^9*IMb^I5A+^_VE_%WtuUMpo!_7j!;tO<^S8)SxccUQsE3VX;U<=OTTP^dwMJQ zr6HN?L)weFms|nJGCFMR9oo#By(YJ99p3U($K?;VDlhFv)h>!rc9~P$rOKXIfPpRc z(?MwN8jVHHu&VB0Gg5SX6L7^jl-_C!uUxSF4U1D+QLhVN!p>Be0P)J~!D4ZNpi;U! zinT7x^P{1fg3dZV>)Lrns?l)gK1 zjAh9%d;7>dg@0<5sNs-ZGUB%0JvBbO`{0n$a0pfCPyp7UoQUEomf%6V7cZL_AWME! zZfP4XzMd)kYl8@}vS0`S44awo=32=l<=mFuLV!;iU8>BGVvGJ-PVx^ft_Lg7Ri<|s zjaEXf^w{Kmz&Ki+u@u}Bu-!HNyJ*ew8{)zHAgpOhcj?^oZ708bii=fncI7qNC1Co& z8L?eK46fJZOKJXi{v~(zpzE>>(Ww!vUkOqLHOHMXpEH=%*h*D0GYlMjk=rIp z#GYUAog7d_hnX|Z`n(P`&77lgSuMpwN#o;Ll&~?1Du5JPUbM=pI#^AG+)$rM64w%< z*Dc-`?68+|D6}vG5)3sW+3E~T2*h+xHg1M~Xm&I`B)=@LO*<|6K)YrAZxPvzV3P>| zW_hZ*SrZ|g(d1l*AG}tjw6gF4$4y zy4v6`2GIeA@Yv>+5PWd}Z;-v|Gg|Q|wU_ZP$oi)5!NqsmS%Z9AbVZ5ZY9?9TIxkqZ znemB8^b#$5j~;CdmNm0K>hB?c-#q?@OX%&~XRS}vajr=JvbUGpFk_l`f4vE3#nc{9 z8}pGiT7`mTby;2iAumwSuz)@^JR`Vk$(ilay8>tX36;6l;HHq5v%q@Vw#LmHi92FF zKkF$sJ@Updp`?&i(GfYyZ6UJropvXid|A=?iK60TmNpN77IG>S! zE;Vog+nk+gwW=v~nyBo{quS`cIAQnhW<*?}BiUl+515qgb1#`Fj#$FR5Er+K&hFr@ zttFug$O?MlO$+eDT^I>uMwLFjs|07Rqn>}<2Sg>vfS3?y(XZ1<3i@C^bz3lrk7gR# zQVMxyBwV^Hd=X5Ad!p}r#W|;?m?42fzrWO*+L!0}74la&be-9+FTT;tt=Q9MgpS(- zEOp%2stmS_d8W3q?nsAUk7B~FR5V$fRz|&^S^0}}#pI`(W}kxd2GCFKf)mCNI9g1* ziBjp`ytW%G4Pm^aNtr0eoH*D)oPgzgKbZ^ z%4K&4sQqSGA@-Dt*{2pS#7{q)EpJ$AJ*yn1k9qYg(lf36>Z-u6>YnV2cry-}_1de( zUApF<{jo%W{BStF{Lu3F#f4W&aJEU8??(xKb=GuW66i^#9MM z;s_GZz(1rT^12=7wy0NEWP;Z4A2SwmjKP!ZkYs_7+_s{mat9?XpKZ5cL}4#iqN~nM zrN?;BqOe_b6^?OqEQg>FOH)b~04F}{xTm6L6lrsH*lBFEY=tTA#0k-IoCbH*$Zx9@ zsBKudDgraP%jvRH5L321?$Ik#bvFGtsd4(B3Z{`ifKRMhU;On&oZsFP4XuYqdZuhS zS{Btu)WHgJ^b9OU`koEKJW0b@jALFq@-9cRpf-j0*Cws&j0`X@Ksmb4qMxGLFF#9R zHF|XvIB7L|wnY+a^6+E+hW2u5)F(j>j#yI$gW>D$BSJp(QEk3@N>IQ8+VjNwSd|6GW&Iv2u3zBxQ)oR0SA}3S9u&eVpeJiS_ZecZ)sSHG=uq zB}Fw_Wt)k%yq08f5;1P>2nA)W^Qxv@4*5Iz1{Bkk;Z7$L1hFhs4_V~~4oEek!q?r= zU{{{rK=y&3E+4*^(r1NJ;eY?5D0^jkS~7LQSNy`iQMje2A{0``n$O&WnjPR`B9@Q> z#D|28J@k$CJ9qI^6$+sv0KBZJ7t92647|K@>*SH}JV?2O<^d7_-+R^}e%n{&pQHS! zvRdZcLydHo(iD(5V(`Z4J7o_);<-DbeP8bU#f^*7EZGyZ=q-wT9#$<+4fg9D<)3 zW2TohAE?^rof^wqQ>9{a;ewWzx<6-7a{Bm`@G!!;i7F^g(4RAIK=@=gt!At zw-o(c%aFBC-!G|P^QK8;_u^m8;;Bu}hN?Tv&_1(^73o$6;q|x5pz!DPu9`8KUOwT1 zD63@ggEQ}fI_{yMuXWLjdyO&U>kqaEi37V<(E>yo_Yw{N+PMQ)rHYR)3VXASbZdCp z=_Ef1O9`;e0!m!))E=Ij(C`wI@^AhLlc0a~1ALS4g8Z%n+pTUB(V<3tY@9t2dQfu# zBT;Gq2y=XM+9uh(bZ~#xJQsAn9OM$Gdm?|q^q#^(an2b!wbZ5L9C?*>b~^9J>Lz30 zr22i`Md9U-Z~B2Hf`RvkMU-Vrb*0s3B5DVTVX0p@T?}I@e6_K<#c^BP+SE(^7Xos} za2@JZlkb}bN}i+{@qO2aR$&|)a@Z2+3<6$t@@MydGq^+lP^ERmza2{I~`< z5dfciI?E0vmxgHAhQ{g`YV-uu9#yWtirkj;dnIn2i6R%$gUm-fQCP5$ZgD)HvYx*1 z$U!KAXG_dKqu{22JTNsJ>@87Tea*xG%I=?LRXIG@UPR*@&1y*4AZ*=m3FjnDI%e+7%q-BJ(8KpZDtm@eJQ<|oVPX8%cScd zGk?x!BwjOF&fFCbO+L1dtljMv)KjW*<>ackEWc}%?K{al>*Ml9j_LLZou~Jrr}2B- zZOn@UXJwkN4PTebQ4(c{rt;&d0w$bu+U>~CvBjk_et$+!9-qXoM8(qT;@QD%!(as4 z@AD{}9osq52%EW?`5Z?0?(P>6xoua1wAR~;qKAejdMvtI^?9c9d#F}Q_%VfCcqaw6>Qta|}S)=&6>DJ}a$5i-&G~fj;QMyMq zd4!M7mHCW10oA&>IOgt_VK5S^qSgmcG~f$NW}*~)$E}a*5=YM`WT+{;W40tHxNZ;N zX9jPg$ifA>-RMC(A4#*i^I?f~1A6jKJOj~ptHj-WBwkqr{@?|yVImRJBb*e?qcVOo)twMGOfCoiiEGzd@eoYn%x2ca&WR6QB zIe)6#XVPs9zw8!8Lw%FhcNdQcIvz#GtM2e-jC+)u=+*X_bl<=4IvLbQev8fTatDG) z{QvBB|Ng{8CmVr~-)qR-$|?ZI^Vh!kF5&qumy?s-fv0u9T%G%59uLv=0unsRO&tE_ zIHLK-Zk6Mx=1oXa-lT<#?f{m`uQe;#&wzGRlXYe$U4bR?laemx^i1O>j+Ps$x(8mu z?YwfuEv~8Rlp9pV3n4u1XY!K;F6I;6Jc$;~XbCe?yBdx7ds7>w%2; z7Rv4IenIzZ_1G={+KlrPg;L~vn{`~lsFFR$jDDARYmX~|Ro?-Bpk7`Ih} zA?Md^=Wke1a*MLzK~j!!xyk2KP6pHRdLtb%nepicKYbg z7rz1WoR*+{Nbv=wG?nV|*SaXj-lbPhatptxya|68FB;=9MuEA4Yx%@zL`~>2SIjzi>idXtGV9VphcaLDXK;(4BPii#r2HGgOj;WqUv;3W?XyTh( z0N2aWk9(54!daD*@}b8SjEKPH9`51eZ}%jQcO$7WCCTk{bkffY>hlwbN#^{%_WX@f zx?E#y@wJ>a+U*|e|D#8HjFFtEAW6Y>Zt_+=|DIb)#(4Y;@jyJ8DaG{^*Hb+2G1NOL zVR9t%SE}-CrgxuN6RR=NO{ldeCc1~tivk<(F&PTVwcu+CWMVQxR&toqyh%#W6H_#q zTT6KlPEXYsx5=J}>boy3kaKo{79=VF2}In)QH6V#S0UVe%zLy1QJmt6iQeny%A_O; z+R7mmU+!1wjS&BM>7>yK4aC2-}N9btT7!*~U zg1TdFm*aFRxb_~oNmSNfS+ zGx5nW_dED!u6JMhbmpw6imr4$C+S(un*ii`Ex9YP(bDTk0v+#p51=j4_0nnF)x_ih z!siqyUoKnO9mt{M$BW0EAZ8Fy*yQtRT6aEjDIcxI)VHW*p0_A-?vv6nVe7S2{HHX{NoNLk#XSfs zUm^YSQxtbdmnGNBoRd)S&TG9TKl!LuPGL1~veG-0oz;`+EXKdvImhjM29Hz5JrU=p zKzq#Tn8p<>Jd|j%LeOZpdrZG8PnVoNezYse9Xu;YB2Y00d3-r&6)!RA@d}a(oa7Xq z^EcQiy#xBD9CMeh)33;@b$Oc6^HMX1{Pal`Ilr$uci>uak42alqso19N?YYgv<5B2RNhhMswwUJ>?Ni zmbV@6`m4M)B$HB|lX=|3cL*TmBl(?lW_bS^cVa1F5(r{d%YP_Px=~uLq0Jb znT$CF)w~Hvu6I}qrDNPkZevEf+#@B&Nkv{IcJ}tP$#7@XXTWCksu?`KD}ep}=G}NyR8C zJ4HQNh)|~cHCg>~p9|qS|DGnkhdG?LV2R38enqQ;g}VVQ%+EV>-^+_hbKH+;>*pdCaD43fXKk+ zYYdOizX^tt$z*4@queDo;l3`-hP&rnOU_N8ECUOs z@sc}m{GX~6oi6&IyWH_y??L7;?&`FyI$xPZ{>C$2$3XLy;i`3M4*87?Dqi9zmv?$A zdyv#)M3enKaRs;@FF8j5$tY(@HFt8=eKLiO;zq#sJYC1%MU0>tBhPOdJGX zjy3sGF3GNO2SDOUC*tUw)^+~IrEb758Rx2j6BDmdssY8^rt6KrmdH!To z;>kLoiW?D|_$4}$yjPY2^|f;4ke4b|EX{dM?A?QIl-oUkv{aWeC?+cdsZJj)8RK#- z_~%>^mE9&0o0?GQ0Dg_oSL@PG*%i`B=iqPk9k3eLOBF^dC*z->9(M?6(Yv1zo93*D z%1KI)778w;Ob(%%H&Iq~z3x=pBe~W6T2+$V<3UA!y$2MHQJt2ub6TZ&14*U#z@b-8 z)-zY%0;`R8C&^BEo~`23t_u=~Y05zyU(F4YiC~4I(s4I(tmga;Be_jRhZT4cQDZAbSC&cCX2Hy^5A1}QgU8pc+-ZiQ66O~fs zv{K_HE~G-y9lRa)J6xX%lIRpMhN7aWkG*`Oqw)OYBvm9;?eY=}qtY9>hTAFQJ?`Og zsTd;y*9FN(J>}G33kLM$f~nps1B1uq*i<)a4aH==4)OK620R+KDo76K37l5L{+fBX zXM;_X+@xpYc}pwFFBhjABf7=cl3}RF&wzy|K4F~3tNy!m!fn!}%BvvBneDG5dZ#%jHS$00W}(Q(W)yw=sUS5~R_bPUWjDLP1gktRzXm{TySv-~!3G-eZqo z^k{cX{j16hZl|)zPZ5J_@uXBC@W}a7;c*j3jo~iLRMF|E>{?fRi;?a&S;9?ribH;i z)25vNQ+dHge7{1B#dm8CRb! zzXLxn$0XxYX8y66{5<#gYs^kMQv{19(-FCh5na#TJZ}+aN6RNOIf@IeX`=YMKa@V3Xc# zos7H6PbMgtV_m-7yDE|bVAaGE(lR5b@SVSbN$I7eH|sT?*CR*CZICb781ZC1cnOyC z73HdlX~OKz`47l*2hDH5RjT(&!Ew8k&h2E;O>(K??n_M7{KRFGIsaUG{)JB}@3Fiu zxs=lN4q_rY-hDFi%A_aod zj}7H5D96`;opk0Heusati@^LfP zKK}DTZV-5$lda*Umtr{Ne-)AyBoRngIe}{4z@NMP|6T#~<0aU5>14p<(dz4LL-N7b z`N;$(a|FtlB3FJnxeWPDhz+=xqh#lANb+_GnD|Do{4V}*qC4Q_vX|&~v})Y7EI*AX zM$Wf+=T8{vGTGokbdSK`@yg5Xs-G{o$HZp}QhqYQ$Z`MJXVPtKr0foRwE9_2J?>yo zsPBLnD8{J4b#77?JpUd*j#gdnTKrzoK-}&?*WREp-EM(F+;Y>L;Q0zg@^=9;^g>tS zn4nXB&WZU(dyWry7?t^i~B+pWp^Rq}NCM2yTCt%H+v~&Z$ zQr-enp`%^Lh{lMp@uG74M>@k_0Kt1kyVzO`@ za=s%wcVHVIuew&0-S1IMubQmV{tggQw{e&GiHRF?enWTu1{&S2^F=91^g-iAlNH!T zzu05rQ50O|CSbPn?-`@#>9;!pUWXfBCw(M$Q2i8lUplzwCpcrADs)RqZvk5K*TVRA zE3e0;DmOcWquoxI-XUBT7d+F(;}TO&K{ane(hYcOyzHF-jOv%@SN2{P7*J_`%J#*a zj%og+i>{Z$^BAMP(B%0}TS?I^T!Sp{T0Hs5LKkza$CqPPIuRUdR5tELPT@I!Ba5zM zZqTVWyGNeb+tD{JlMxps6VoUdm-G9ob0@Cd?yyIXR*@tmk4L*=s`o-HB^@&<(V-~7 z|6Fh(7w=MgQD3i)Zzmu8iV_{=WXwMC#A^&GH{o)fe@_!{upOSKsNXBdgzIEgmUsC8 zaQSMHxrvSId?g(PH^JgxlFWOi*GXr@VfE>X$;v<;_wbZdPbPQ1ivjgrj6%je%3b+8 zF(Gk|IW5<`2}i8@)Y&IE9&d*zbCjJmyjnufaE13v-@xMl(z^|dY<#~$7d#UIvc!&PyCnR*t30U)&(D5$&x1#?kcNs6r zZ{)zJ=sL%eopwE1os;gI#ubb-N`40n=j||e`Q>28-)t`2rI?eSM8Wa5=LnH6SM5|} zSOf*j<8y-P{0%nBuQ8J6J=l}P_h4O8Vyb(rW-5Na9r9DBSLA#LcHG2KlzuU+(9f5a zPPPXd?RF1ATFKN)6sF@6NY0SBiGjO8nS-m`Ju_^4Gp7zeZEHTmQt@(Z1wzd=l(k ziWQ_2uT=-d#8id*j!z~ere)`l%l#0iCykNg*5(|U}bMLH4EPHIHx7vi4WXG5y^Fo$4x@2XfhC+;?XXX z(KAOEBxtnwbyUT={52_xG1(oGJkhn*E5F{ZjaPq=>rF1E^t4o+W1)%)7U)8B3+AW1 zR(?mL9zO%Pmt4bMxBPSsia9OPxPlRAd)|TAl-^@;;F<8o|BAOB`J`tKjr?zMA^-p& z0MuLo04mppP5=NP0G{Rw0LID&0000000j&&I066w0N791t{Epjheq_)(|~p=X!Igw z1^~I|{`YP`KpcRKucXgc`UnPbu_P%qA<{c)EAm90mt@IWyU(KH*^z2VDZ1{x_uhN& z??1G*&f4*erLWzJ6w+CW(=E3px~x9k%S`+xGpP59sJv&VfVy(KZaO6j5J=i`s6Zq* zLo@142v(0BC*NZ|y(!QE#O(jn+MyjYR_^Z_tvo8aK>X)3wPIu;Av`?PT9L>Z^}~La zL$1g;YOMcUmd}o@Fl}4CJKSD2_%|HR(_Y;T>XxO(Rv6~ksv|>3HynXTC}4y0lqn7c z2UJ4u(7mbfdNVUK1pw$Mv}&I{wU@qHT`yC&_WESyTVLt8S90p?=~FF#JN9y_cY3x< zS?OclgCmBE-bK8t9Q^#uym^-pnsM(>ORe)v5W_(X#u#CY5TOZ;X+mR+UoasI(*FOd zuMy#3gt!2iq+4;??3Z*$puR`M|Kwv-M*+|e|W01KT~oan*~64V)=&aRukf>pAkpu z1<>I@|6v4E(I>XeY{Nt9cEN{cpI@>QA*VH{K}`5D08sJsf($%E?$2_V-%G#sb;8R~ z-!~YqDOYEn;h0>vV*E`#uzPcxz5uQd0%zt z`1}XFUbAB){W5=%o+I4(>lr0p?|sRbqi7fLIcyJF66D z7q|TMO9zhFKv*wEh~F3YJLw)CFgPJh;B6`p81ctV~?wjhYC3E zVPofEB@eCBl@^^oQ695yl~LFqr^0t(!f)wo`OeGjOaST07H&pS&TY3E6xET3dYf&A z8hWN5`+5r(G9HsP4M59d);p_|45ND#0&4$1)9H3y0O(=Kl1n`~~lAPUvRx8cuRjzzlk4l}aZ3^GejTPMjCb)Z&kQ>ebm5GtS5 zXMJuAfMsnT5ygSQ^R;t_Ch-|HC0N~6-@GhCtN7;t@C>}2RjReYmRWsb<@-NGbORzYFxaliKo&5*Rigdo|=ez9!2K` z=~9!eYBW(={y^b7i4eb%ZRBMcDqp|?E9Qr-*2nP39+Xoi zE$c{9pkK)YPFCMT*~|dVc)Q?8*iuoETcnQlt1280>^~{Cu?sK=#&&8af0~{a&+aDE zoTm+&|EXf0E?PCc2gm7ecbdzb1YjHq)KrvuNdht&yzdP)r$8(7t6Q!|f>Q@*oE zxxZO@D|U41u1i}8jef1Jb1mx3YwjEC<9=oNGqvZ+t8AzSt^-D7`=k>iIJP#=bPDv` zqKp4I+HnpfCjTd%s)|Q-lliePY>&oHe@$!+J?Tjuwjx8Sg~4z`IDpFxqcXI*vq*t) z>Rg8H8y=+CuZI`THP0Zw$EF1cXOs}-XP9elg5Ga#O7gU{Ww%qvs48tP@`JJAEk@_y5 zlpPoM<%v7Fd1j^|TVRQamjTwDRVpk#eM)g-qj<=i%-|GggXcH(SE{R33naoQJ(ahO z%a=&Tb>1`iN{MW@8ZoeQ;KmN-E!{NYCPB{v1>tpy%ql*nu=9iwLVIR8Rfgd5RPqw@REs%q8Pq25DWKnY?L59`m0_ThK? zxq=fvpnbN5tw;|56E&O2oBT?x3g9niEyyIJw6)HqfoRQ;l07kUYY14H$WfR&3k#fL zj1sZDEnTtNQo<_HypWq^M|Z0+<25z3+*9>y?oc(9Tg`By&znka>N6iYPs?NEJDb#L z0E071n|fIPLA4?8>u+m~O17}#jIx9F@c;%OeQaf%DNVWqR%DZ_rzAzTs_+H8-5f7KTT$u5K|#v|!;rsb?wRvBwSCK{#db!U;{G&QQ+RyC@e z8l(}wMg#aU=xc7ba50V2gn3)Ma*PHM)+lC)n|5jRekCQW9J1ON;`rK_-mpqG6d#r6#x3cs;Qc&C1Ue+gUyJStRB#Z z*q+GKd`cBw(eU}pW*KD&RQ0d4xRHy}RXSIc^$%QhdToAoYa^!b(+{|r%K{16Yy@as zfF^Wjl`@oe09$uHm3u=+Z+VD$CUy2Nh&&;H)mAVZP2Myt5pMb1m<<$I1o>MV zO(00esDc`$wfR~NRDbAxTxPp$8=!6$+JUh3g5eKLT@QwOpU(P`!9kT;AyYqW6W92- z(9Ohs8MbzGeP4GF((%Zj=>e@-^NkUE6jxddxzme4=gL5Ct6Vm1Rr9E0Wh+hW)>Y*& zuI@2Ttf0&0&LYKSd?2?xz4V9Fpo&|}m?s!z1Ix0b@U~7(k8%ThB7f#ZyR8Pm^cLlW z$}TM@*^`4b2m|=T@-j5b8-Qn0;dGA^YPFBo;gb)+qSz>07LIds*1`h)@>ibN9CGpL zK;7fW@AKAnTHg=NOL>b?g)eUao+*V-tcft9JuBLSz0cyqo|)NLu1*UX+}ngA3$?Ug z+p+SoAK)=t)>z&Kd9{h z_uTGNh_Hn=qt*oAjiDa4U@(aCnDk6a4IP!Q+B)xhQ-V`9JoQz{TXZ+3g#!)dcUz5x z@IbwG>Qh%YX<`X4hd0>8E0L`#cqYBGNNM1!Fq6MUw0Qsu5R(gjz4+f&J{#b!wpqH( z1Y-H7xL3Qjj;YZZ1f-a zVcFq1m$uX@*N9xiKv?;Gw+5cxRPLau+fJYaF<(%r`M{YtJ8BRnB!&t8=HkX8DQD zp^x&E!u_^H5AFq-s{gj56WEvi*@lG3Pn=(up>R`;mFnA0)qoGoJkjauN=vIu^jJTf7bKP~h-|PVByV$8 z_E>Jnp3E1ERNYR!kgfF;XMSNPxZu-aD`QCYRby8`AgQmGbJ{a0H``M>^UW5AD#lKR zmEDpF6{8hI$&v8~t#(Di7JZ$|fs87+MsUIfk zabdto21xl(^%JW@p5(4Bg(DlK2C-lJ4!_9lP%*z6QeB2~4WHx*HqIH}zTRmtQU&r*owu zdPKGZo01#yw_G>H0bBY$#Sm>FM21<;rE~CD;f;Gr`iNljeqG5eUpF-wn-&gYSlSqG z+f|RUr#F4D>($bc+-fhZ)FEv-b-16%2ysdjM{0?QE`SM{%0tdOZA$vGC;I+~3FE$` zXrzw8gi}cI3YwZ>dCPRGtU!EZ8f@@J-5cRVA8>|gL7xq$Ied?T4Kw?DlJud|6iAsEwBj*%QnN? zM8!3(?K+_@C?q zg6a$R8&^-5v?}y?#%8(gxYg!Ihqyu?s|K;t2O9D|AILQwEsQZbEN>8=Nr~NCEJW)Q zteo}iGv+3=f(`DxG2{8?#AfT8tnRUE?O6PDKkR|oftuhUdwEiI+61w=w*U|dEW+ws zdFVpLrCs9k=?{?X=)P96lWJjP?InQp5|okCokeOJM2A_&_TYFwu8l>f;1M%fL6j;i zZIHJWOQZK+*mudpB1E^E24D3jhiWT1Lk{ZN_QmA;&Ds3xM!vw=b*sFPJ#r)?b|e<{ z8IRl0ZZ$8+Uc78zSpC0V_EYdq`<1Z}ACDhB&q}@RI$+>bip-mjHU`l&|ZW z27XVCj%a8D-+zUEf5L;&=T~HYPc{2`PvE{HbR7c`8=P=3vVUcECa?Iz&c`4s+fJWu zr6=MPnHb<9RWp6vr<-UufL<6Qx(K3k$(*W^Q=iYvV>d~4t+%uqhP<`rw15UEES|;B z;PnJ@$sRxN!_ZzWZO5$!M0t~RAHCbPqEM~b@)dr!{i?#3uwYp8O!A!W2?Tb!QD%)$ z9u6!0h@>;s*ab9{VZPgHEEHSRy{=PguEi(}!Yj~vTXlkF3D;gTcW2;~2byP+=et%E z*HnnR`Wx0@h)Va_dEt>)hN4@@5aB~*mDZD7F}}hNnMLfxyjdqqD<-nTxQ{)Xi!$VS z=Dd=D&<_2nw3)v5O1mfQxTGRaTDuSzEOWF4gAkU`;(KLJ*c>h0c|N;?lCc|LD4_J2(d6HnN^D`cfd$#Pq&gTql47a{Vvn;ogoYnC zx|z_*Q>VCoK|wkllXc?|9~D@dMCZyvwY{fL{HFTCj+VFwQFoz` z&n<2JtF^RR^m5&p2l+fKzJrE(p6I$wFw zZ>w3*uH{2=36s$Xda_R)qn%n*IIw|6c@y!@Dph-6A4s8Jv(XvBNL8zS$kHvC$EJk_ z1(vT$ZZ-e$jvA)2uX6y-*emf^4Xk`yQPB*R8n;K}=hg~rehkpT10qbAT)0882Y^9i zWNr>z6)RtEsjjlNZ|(e+uXw1NPH}vx2NS*ax$#AXCoTa*1+ipIXVO#o2e@~2V(2E~ z8cyxGwIcXx^Ys=E(o}jLUj~vsBq;2+=n30=283MNo`3D?P^Ob>yUp9+8KwSxkM=y* z>cU4%HoBl%_0A$iY5d4wtHE%H9j1yORYSKa9E%ws^Ny=z`MlP1g~J<{0_&^f687Wh zu25V^Azc}52|9Gp41{WxC`&&nO>ZXr>Y9Jv!lE^9qLO_##YQ*zIJU4xeP@l7*+2MyVV83mfHd4z6q`)_SiEt zr5#_vQw6Q%hZQgsvtm3yu{yMi!=4C#3l&Y+>ex9|YE<^JpqDj+HqDELS%M`DFZXzB zeUA^XhR*d@tx)HRH!pw9=;{R|nV*#CHksntY^ihkfgi*zZO8hQiu^Vc6k)uou2!?l^Q;B&R06kCiuX=R(1W>v*R~}-6uvU}WEgmnmL|@F>z^xY* zfN3G55G4}YDBbhVRHvZhv@eo4g1+hxSh3wjh#+ub%vMCV?L}`kTy>D3}jC#BRdh1l{MiidBZXvqPz| zr^l8rFywE`(CJ)S=RSjAPhCKF;4kpI(1}C`WK>;gaj6g`0(l#->Ze$%tE#zFgy>d_ z1nW~z4e%8!#U<}SYtx+X`CRFOY}Y%B6h^4QiH02a#cI~ZIoM)7fWfNda9hymL=jvs zmAvJ+FDgCY2bg=R7_V)oUW$L57Mi0LL`IQ2#pC&JVF6$Cxw)!TH4}gA{rSmj-lY3p zEcL6<3ys}C2)cAB?Ge^ddOd~(RtBpb+sKUW9mHf)G=KEBl7}0)$>o` z)L}Lo2q~A|U)o&f3QHHva4WYq0H?L=zfP}Hm&BstyVT-|gNu;5vq;(eDecR4l08rQ z(bd{7ZFn)pW|1au+ZKB(k2b@6>HVecy4BdIJA)5)6CwwEk8x-_!bmq7j?D%Pw1)Bo z_s*g(>&2FDK{(b(YPOVPSf38rX=rRytINm2TWyYK(pGK?QBC9;B6-SGfu)c=+ep#7 zU9jV+(vB}_HU5a}HZxI&29;j%cLV2FmCzTlZYF@%yE05`Q}>1ZkGt$IewrF18f(t+ zgBM!_)wzNa-t&65RuA46bJfuAD;WPG4Km+;834H^m%B`N7JX~~|7I2e99oMS`|ch) z+Cj*6*n$HaOB3X6(Ebh3^A&F{=I!E(ZZ$Ki1Aw{y*&5dMLiw%V; z4_UVg7%R49*wUJ-QehvKoQ)W@pfifx`_GiOY`2;g&06C+3|kJ&_kCUM9J3kaX)z!Lwgkit4u1=C=&bTod(u>8BsUPaBt(zV=bN5rk_M15q3 z!sIv0YsArZRL;!+GtXz?~&<&j*uE>{=*=F)cjYgdPiqF*zde2-o8 zoljX9h>jlD+`wjept)5BafVfUqMgP)#S;@<9N}PoSr{10Sq8(^@=eiCtPbrG-Lc$X za0Pc;Yso{}f|8U!#IyPO45&P}M?#p6MYjvT-WQU>>}VJ}m^*h_h?8uf_ODXz7x6fs zx2mtTVP>3@eqp?{*h(|0D)po!Zaf%I>fTdaE1BNFO`+Z}0 z4rc{~GElm+=tJr=Ayw81>qGxNu4g(ZHhse`z@ZCE)8lQ$s?Ci>J`BW~t|s=F8_<=X$ZoYE zvVC_w#Ku)G(5A^<*TA)#xG^)>YP~ulO2m|Am}-8TZ4Z4wOLsw$u5ExxZd^zsRko#W zCKzA2h1(*gm`FHb*ceT zkw$k`DR+1x$)wjY`xm~U>Z*E`{n>yNBv+amZwpqxpz^wT*3N^{wcKhzG;0neOjTak zQ;`QSj0Ym@My^GsNt8#RXHsd_*Gu@o_4$!*s`Va}-9ubKlTaUjyVY=L`|&M&ne5tq zV{@u?9QsuSlw>%RN1$g?X?1AZ)F^adtNd8ZgJYPjz94+4XP8quPye5N_h&f8W-S+O z$7WcGfqBG+3OnNXPgbgLkFCo%wkrTJ>7~PzwS6%>LD56!adP1_)<1K`XvsDe4W0Md z7(XQ;I+x6Olg;HrkNwy`{oT^Lb*pvk+ZH%|+ic2HwI`&MySUQpyQ*IcSP?~tb zv^ikHA=^{7eY>#OSM?UaP-*3T&O56ov8y^)X|S z;lfWarEBe&30)t4+(E%3fWv6SmVk_YTqu^&0I!5d=ZZt3<9j<}m^f3R#zP6Cp5z(%5GYOo$bqk{z1`Fi2tXD1Jt)V#?H^~?dyubkQax_-AR!?`7ZmI$H&M?8X(<*HdWb5DVhgmFIByytVLifKc^#QHDCt zYcma8^KuE1=D`s9;gNbCYHJzDOlsR1_*FB5r&!cyOP#yr6`*qo9D86#d`&m3+!0M0 z(l0W&5?bp>EgVR&FpBT3v1y1uVmONuD$Y|j!h1#=9+7!)BDkuhPtU&( zGPes7ybtWdR&F4B3;xb99-5f@{!@?btVYY6=RX0yd;;obLP<|+64iYV<2#fuJ)wO@ z(NbYDKf)77fI!xK3&!*L(n@*4T>va1ZqJG$;8>U6UrpFl{iGnqvJByS;<3v1C zbbyb30p|tx0>F4)h%L4tg2B?pc-yUV&1twUHy5eWr6al3IOzInU#)5_JkTTAPaQY( zRg;lf9&(;Zp) z_yYP~2Q$n!_V)r*P`i z-h+2N2?KXeH~4tfX5xfBmhn>(taIg}Q#wU@gT*EcY=>|sI*?&8w=UX%h)Gy7s5`6F zFHrktt#xN{XD6<29=Hzdp>2V&ZQ&q2=DFg=kkmc(?c#W0RUj}7jd2|21> zWAoxOc4e6n{r~|qhC=y??43E+fis8we-S?TYws+Psdo&lKc9OglKfizzm>%$SpiCa&md{H5e6&R4h_OgroX&+iV zx0{Rx9*#9U-8YBk#_l6a{0=$7LvqtBXBoqMzzXuH?yUMKZ|J2#UHt-D9A?6%#PC4e z+1R$gFs#xwd7DkR=Ad22%|);BdrQytZ?4+|$AW$wsXlg&0l0>R@vTbfxUen*eva8E z*WU7bbnmSCa_>X;F>^=+@R1~kLtK&yr4-)4LH5gu*vAUf{I~|#$EDBp5GN!YL-zKO z2mn{+XTah=N9Q>Q5Qjgf*^0+>Gr~!qk+_|CFP-s=UjQ>YgEy<rPu zq_(un=$=%_55XF!B3Bj=<$Y>V!T05duxHY2v-Z;4P92Y?rmJCkEprV^6nhwsgs@svKp#dtBcgmnduNsMLcV|DUT_%JDk?oWvqU&` zceF63iV}IfRBl$&T9$TU`ik8X`(brP=vM1hrI=(06(8!)(&%xGlbkCkeGXHo2Y4ga z37V@39g*xR^<=g!xU{0QrS7a!>M$Kh@KAmzyoK~qjqDqsC(UvUqmq!kty(e4o>*OE zxpK4YsBSe_&>=voYjz9bQ?n}{h(kGlq92N}g+JiRHM#sd?wv)7E2;{Yre)~)iR+n> zIbbRJ9&lqE7Xh|@_vOA=UUN&}cne*%HF`#)mw|d&U9*7SZ8M}co~Ra&z!O{a z9cVa~4Ea6$t17&usp`YTt?ub-Ewt34bgj-6e(ah-Vzxfd@TPuPnL}WvMk3o5CT>xh zC~xalZnl(?m258MX7OdW+AdD%F||05sS9^8veN)Ofn{*ADHSpcm{^PQ82C&Y&ii*U zAD5g{xJQq2t&&y)oox#zzbHQ0RtbjfhmlwdJj_yR)|1%Dt+)p3Kcl+CZ)1zTP1DDm zll(=L|LmtRP2Xc~Fbs`t!NnIPgu1gxf#}ydAn?z&a;aD5N>{?X~HvhEi3fB)S$LJpq*8EDo#X)=!iQyscNY zYA{SX_e)ptY6@$~L(v3%*M}E8*TV~J5@AvKvla>jvtvmby68CDC-pEs@0uE3O#Y~gXB(73UjCd z`5_9lH#NLeURxk|M9EOz)~s1I*d>$uWh8qsH4}DJ4~Nv}2RxAmy0Z~vKMihZ09k$s zyj7%lrt14Lk=dlKp7v`ovE8R~V_LwtMH!KOtSCr2LABx|HV^n(bn!GF-RCVU;Ne>T z72f|qJwZR}Mz2|#hEM+A(OA6iBOTzEZ@H{$lPQ8Ov_#V&+{0e~a~LZ%br`p~gn3;S zb8(V)Rw+t|Yt{;X1pSQ~Rh4^7C52pB_qDCj{89c~bLxFf?{DpWMeo=CU#i~q-?^tK zF}rB5d_X?nTLcVpz&f)4{tA1a#Ifa50tJFx+ks7-sV-DB>u6ZS-IU{B@7M~@Y`T_WG|*fw;XzuwSnhTNUe z7yXO$`ia_lT34G&1|S#p+7OQ4eq!^Y-R>&u@G(wNueip-u(g?~mYYiYU0}+0XVr(u z-5cmTv<6SfQAG!w^tP!|WBC1wsf>ROC*=EnuLl>mjM*k*#mK2#wg)$?)0S^QHLU;3 ztiug^Udt`Z^7}K%uDnOKb=vcwr|hJv%}De@uG$(6Pnne+wg3C{+uO0C!?oCnhvC2u z!hn`yg`d)F4Birf&2VCA*=9LcwlN2=n~r@Kv!<4x$P((1wYxo?6#zxtaw>8z%_5cp z*_pt1cm+Ui@}{fut1Aeq{U7J|mHC+;Wga**QSZNxkhAxZp4U!&T<&WI)-(pcgxcBQ zO#u(?yf7hL!9{2(Z=#(^YpGv_4jk-`5De{<8jUX4l(H4-)Rkh~wpzm3zKGOF9D`(P zO_qnP=n#8;Q=NGRR%@R)zpk&AI<`vaQ)g84^qUUw?Bl{Py#^pZ!f@DT)bKw7h?bao zyE;>rzQ(Z@o$8rBP$2d@+}4JjXjY~#_snu4zK`bGT>cW}T(Oj`HA3l;IT=+r1b5+3 z?GM#uL2<2QFk2W1(2oebtsJr1f@mw*T*zMW%(mKrU>~EEJ(3A*a7L_aUT`Z0Gb3s} zhC+Fr?#?2$B4KdfmavYL%l4lZ$Nqx*X%KuqDnq_=5D-A{d zIdng?)bN{S8DiwOjMkg_?G*SCj&mQS-}=kXC?!iA!nUi6vEVu3?r{n&jw)Qb_i6x3 z3rdbxW#lr~=Hjbtg&35!&bg8&^>}}HVbGVBnx!AWBQ6OpPw6R?Ax!+^x|$)ivqwSFZJ!~|IQZ?_kM=Tp z)IAws=LN&jeB>V1)bsMt@Xn$y>%=QGxsI3>b z4nAMAqSki>Lar4FXI3)JT~^R)c&<|aMu#SzLofpdJ4SdQs>CU9Qa7*2|$9478 z>G?DqYJJ<0Q#7Upg5l+_wp#A0D!c)Mqoxku*8SCtuKK>qt1*1W+vPUhoi@dDJN5XQ znJ%sAXT!UAXV+fj26R6{aoC1l_shQjvBbVjueM{e^A9W_?4Cftu`PLO0#OGO5zhuFCIDwz9pYj57l>pecz%E)mx7x+R*lX*@rxqe9H=3bAS&hAh1;&Cij@q zT2rGBsMens-q~fS5?Z7XQt9G+?>r(;oYE3o!(VrWFHU^tXj8}5I`}DxIs>3COPF&B z8SKZ7%?TfHNA*2XIAs>#n&8-&767zYIt;&EO`*O2XThqOm9E}A6`cvc*$Nw|`JQPN zZ}Ez2eq3V;U_F(*yx;9%!iVL`K9o9pX+4G6m|2aMI1fLr@;`Jt)|mj&)ppE! za4738Ears+Hu?n^Z$77wHg^pG{6M6dnp}L5HDARPbJ>=Ta|p47i?QrBx60y+Ysg+{E>DTUo1Kp@7CN9>LoH{e;-}i1U_m z=X;06SKDgGb0gWaeLK}??@4)e7h^A9#^2b2h7ZcybZ1iDxD`ZKT~Ng`lT+iwspaoN zdd$M`ao^q8A|B$0qfUx z3!>v{1JrN+1NwLGVgItvUo3f3bhRDhoqpXBo%->JOVX$ws)<=u=ohqTaiXdyrL65k z9!#*~6tCqDo*X0{~q>eM%Vb|@4w7|YP( zZLh)$F0aFR%Tnli8F+5B_pwfBOWqQ9cq%CToLc@zpiM;sD3C_Ivr4TT^*|RD`g$vE zK_B~4{1FNpryTRfv>=eca$k0VuMQOZ^R@I~2s713^29{fGhUNf*ZAS?ZxB9I7NUi<6c2j9$+S*S`pU`z_#3KQvkeZV+l3R#JsCN2 zYci1C@?H>ozWCp^o|~g5XV6f(^;DxBIpN2BZYK6+zlVTpx>i-yr}mEOj8NhfHqb2F z%%E0KfkCqWBG0)pka&v>&xQDjQyYnz)V$Nfi9I*AEsSum?8w|%^@)(Qgk+3+B@U z-`Q}>rGh(@{rldY_GxUgZ2)u5Kx6L`>(zGbeHHJ!iFyE+O;c{Z2a{9!=P9PI-0^8v zNTDjqi0NEGXqc9QzMSf;*p^w-DRaPexDMrxQ0PO!8qu9aUmTqwn9~*;AUihMhi;Fr za+6_WT1Wt3>4Lls*N3bT*QuxTbEPM`)g&1ANX2MK#{`{SOM!;Zi{eq*KptH9e&%(xJM^a-H``V_HZcVfl{jCsv1AIDaJTjo34ORfrklRy)d& z_rln!f@{`0ZL0d_*f&gDZ&v&OsnRp@SbDm^&)a~m^}wUO42d5nx|vwJ~7uR9>p^HbB9W`sSHkx~+&Y}LmN>Qfqs=!E8U-%LcGEv7B4DpwH3m#H-Wc!9qLX& z!>x5{uHyq~p-K-=mbWOk$_L}%6j84GCwlzT74IZLZO@F+TE6DF)h2iXOVHLjO>O(8 zNBuClu&SbaD{$H&-}z*Di}KDYWqWJbDsk3*vFBzcaZ8WoRD6|}O_pnQ>(Rw(q=vL@ zv)xR1-p~PHrvn94gEw`!&@;G2o{-J(94cBDWny)%Tok6--e!y73~|b@eFpaPxKh0- zfkRYK$8;{ubIPridos1!B7S}-0g%@Cb-ZC$(7;7X7v*itik`_0d6ST{B4xK)4&5U_ zqlfMVu)fbGC$w2*&kNSDoNa0|`X!6IAZcRx zzVRnkhmN^E@F>}j9lTMU`a?OYU*=jiGbjuG#OAtQDvacms~@obnaS$~OI6$_+6u^s z$zQN$HWMy5dxciA=MUvno!-J5Az*g}H|Io0KdvtJ!W!(4B3ao@l+4gvwu&|W0u0zk{=StUet8r2E zU*+%omS6i_LnGwPjH>J8B$1aMm@*J6t~t2%S3J|XfJaP^7hb=j?k zL@_!slEWI>f1(~jr_FmGdcVMWCQAuf@S3I0Kxz#mCu>Y^rpSvPEBSyBARE zThQSYTAIKbfnd%HeE247;bVs-0lKqDfucJmDbpc~uv4b+UGOEprKaqzwAiG>(&l&@ zt~GBOSM#WJG`AWKO{YJ1SC?utN{8kYmOc$kSvRHyghiA`q-Rp<_y&$<^)_R3cFp7p zN78h7Uiz%GkYK~++lwha%CeIT0#66F!;omF2ag$cYN@Ao{> zq1iVz?HjuVF&TcvM1CHwX%Dc_tx<9AzzKOT{5CUCYkD_~t^7WIrA3fNz37uIo+XB^ zqj5V`hgDS=!ANhlJ`TrFE^V4~=^1y#&tgZor(X9;>Lm%pdSTR<792wO!w_!+)$}ko zaI>d)&TRO@f?KVE^a8{)G#>cSiNky19NMkZ)iF$;F5hIlvq(u2bgaC%wvo7d&|rFI zbQgKg!N`wO-n86m{WHI)qKxjK7}-5BdKF*RJ=vdaNQm4XiQn(nUIo77)F+?lLws+0 zG-6}yevWXqzRmK@6)yQ}1{qxX%r)zazM7ng4$!8O`C(I^^DCtzb*?-lN9qN3l^K|h z{}=jl>W?=?$&j)Ydbsm4RN5+kh_@&eo&C1{?@>9BmWV4qN24@a8I!ziSo)))-$R={ zEOhpYP~B=IluK>d?BSj&5LmyK9oN8xn1{y9Yc!O`&GJjzGfDSd`-n?tOKu&c#QyVe zaj7|7X%Pn%Hgz0{#gqhHtKT&c#&zsSx}JVVW)85_l@CIVJN_&1?$(N{bu0Ds826 zWg|Q!7V*F|!l5ptP9b$z{Sy$+D=UWT*YliA!R4@2#Qm`s;IjK zJdk1WG=7Gz=7&`Nrc;k(9+kG`R#Rfw(%`WjsjZvvC9BLjidnI#5cPF|vgn;v3Kxbg zYkf&q3SJ9zAjHp}X&$jE3t*Ju?MK18r;J<*lpE5p!vSjbz{+Cz$ggHt(#-8%Ou zcW{b5@C<-R(K{pB06^tH6`sQysuwDRSPbTyGigte4p`{a zB5FDk_qZz1&>5ULeqwW7F@pQX9{TTwd7aTHI%r;hUdXz%(2>5?1XpW)npM|k3R{1G zeHX-LcqcD(feiM-kB)nMQ*DAa)1@;Wy9}K&K)SO^wNF^{Vf=)TKIfIH6aOw8Xl-7O zM;RI=6nUFRwQL%dZk{WV=~mlQx+R4k@mui9{uvdoIN)76q)XUXUC=FiXVn*GhGA;k z9!bM9=hX`TF`CxG;v575mZNfP^|5jtj!!|VP8`x6iI?FCU3Vq}JRC3UGQbI)5@xCW zIu`>^@sq5?X5zy>g|*8y_>E1S-6g=vZ>1-d*KiJHgMh_V^HR2v&J|jz4^yFMfVKJ+ zwhr-#P1J44>@9%Qs6;;JlAdskt@;sPqiP>2l({86eyW?l(qa>g3d8tWQZRp1@q0`U z^K&JX+-fHBTX#M8b-P&`-qJ)(rMiBla)qs8I2$a}8BQzbM3qJru8puUu`HpVGQn zE?`Gw%24TCO2Gh zN~KUsFd4oJzlVTRZ`hZ8allAdT0APnd<5S=i}$~%b2Cxw#z9=ek=-Fy3Vj&KPNIWf z7WATL8KA#M=9=Hmh@vp6bA{M5sPWK V-U;m_D5-H$(wOU$=d0Ky+j#&l#W(p`Z{Vvf!K~uV^Y1Ur^=b-4+QFF%mGALB?Wqpo zm<*|E(^HM*8$^&b%DL{HMM~7-5p_A`LdQMy|6QHRM0o#7i#Sax9}8b-n>{=MOX|D8 zKMaE>v15TV=LP6)lg)t4_hKQnVZaa7eeC!_^_CJsdImQ)LFO4Ct*0UFL>qqwH~+(0 z#o8^|j=j+>kvr-nUG&mK8{#1J#ijzn@N@JCpZu?vHdeOitC`^`ZvIn-nh%+Y-X{}v zE}BhA1$R#8l0Elng&(mk)g`fSAJ`IZbeA`+8MVM7#}cZ%EnC@>xgl52@saN@ZQHG8 z$6@H8>eYcNn~slnc*go`5A4E>EiUS^&?tW(@Ue=W03JKA<(h4cHdIyWxDV_KpJILa zf$~=Cqu%O-yTGbl5Bzvx;vv;T<6~O;A=r^6r}Ki=qRDct zZap0twwD3&RWRd4s+$SL_XNU(2_6&b&l7#lK#7jM7D#)vH1VKPC|DJ(;4(+q6#DjzYJAYiW{vuX+Wf z*VP{}oi7((b)K?)A;~G{^a!m3JcLqb5X-pcR5eDm_^_z*i1yAR^#WI4bx?*^(_pAO zbVxCZW7|T68q3?hpV%BaeEAV-#QufT_c~s?%Ta8~yjjkGFL%4(MK|T?*UI8}&AtJv z5eI6LPcqED=BDTy2VeC!`5%zSn#0w0Y>VLqWpUrj_7Gs5XqabYV6+7mTMW+?cpR0| zWja?niaj|o1KSC9h&`CAr@k3CVcD(#WT+HLv{gJIjv!<8JW%)DsKZvc1wAe>tZcFt z60TS}9&Za)pKoC}Ri=5qbUn9P6x9Jms5PtW!h>`bC-1R`2-uJ93KH@{d8~S8mEwE+ zz$E;Zw?NqAg;5v`U7r^CWQ*k;*{x>8yTZix9Nkvu8XFAlG2KW@1-~&f;Bx)M<~q0$ z@7afWiXMspEBvwB+>9JvQ(kKl{l_e~Wa(J&KNR_ALW zVTUEuc$=-bY8cO$pD%68t0{cqJ1CS&EJd3$UM2V*aXr>=;pv9uq3D@pT5K8T`6a*i z2ZhvRsP_!rl=;}yEg;OW`POPGo3KM7e4CgTLlHlqIVXl!%=&} zuw~aUtk|_vrZ28VdNar|-FmLExQq?IsKoWW)XhZcoBBiZfFlxuk+OqjO0e*4glfDL3CiRk6vd>>6GcKB$_k zTEIgbmZr$h7L&`G1VtF)6ywn?bKS!+0bRVJm8zAE0ku zHdzZFQhaamna&3`Vuw`b6ccqKcBune;!Ee-EGmQ8!Uq(K6xu3IR0FjYFLBCeR#SfR z(8kz%rg){rCMTAT$J>78=Uco^m1v$XUC*tiMEwQ}OYBsxho_tuy9eqXxG`3Sjjb@_ zp*%*tvr73AbHIqz8JJ%si4c{3==JF=hH90EK~pcs&`{242$__lVehj{E*s3|soWDZRNGnSv&d%}CA#U>q=Hpkm=mAw}wzejGKqvMv2=G7E1v1?`m>zL4WhpqM++h0!6 zmOG|Zzkr$aOiG)(eoaiX@6 zMcgra-+;3`;M^*EFdfA$pPYGLs(y80+03nN|5sYX*+Y43`iadoIilTK7l}tg;{xb} z+((z~$ogj+8bY@V96Ysp=-X7Q^pucj9;B@n8r&CGq*$)c%}I%PW|bZp z&teY6r(7!@!X)f-r20q5@GK1Dd!NjnnF`KX2_@%g=&5H;A#pIlk$L6}58PiCgd>`) z!UhlJ0q3kPFyGlFY^QF){3<6CzDL<$1v&?;d%ub8y@BbU%z{ z8yiBej-bNYe8~SbTPD7*M>w&4m9hI17|bV_4zIRj9t=yLnH_S@3umQr3hr%3Flef8 zc%?-#50(y6w&+s{w{=0|wg90`hq-rOb-E)#I5T*P1$OXYNr28JaMVN$_|^i7oHBh< zP2E**OGA)N3kf1DZH~9qikmG0b%o9IrK5QTOx(E>st z$|KS{i`4l(8UA5!tIm~rYBFRGL~*q}$0rR;dE0fXxllZ!M&dpRJvDQk_y@Y5wsbh^ zyqp1D>ctT!REL<5Z`H5(o*Bqd>J*W}9(e=Z&uPyWjnSn2op>Gp;zlDSp7T@B_Ry9*&^0$~J2a-pHIc~KPszVW4>3cjc zCZY$UxW+iBeWo_cGSpl^jCp638Y5NQs?mhLAIOe^DQ;CW+8#8kG6W4%84VoD>!Mrj zg8Tp}@K_+UYbnruMW~NOJa-^JY`mI*TjwWM*R^tWjQ_a4e#Khib!}l<>!{fbb2|Ts z$#x)u)jJ+B7w{*s=f4L&CfA^q)d4eNw*=bsl4o-F*r`_iGkfH@@e`lbXLE~Bv>oYF zNvN_#pGyqm7G$#DQxk_^0@m6s{2oo^OzC|gl_58m;Gv~omjTm zSqlj&EW+e%$%-%7qpynQ`I5M9H66-~|?70aemx}9kxM|3f(zD%a z(_)91Bd!Ume9!xY)w9QT*Q?xpvs`3AgDvm?@yjoSw@Rho6nAhTwao7m!A;VnI#GUG z(7D#!lhw!N%JQdP&m|6&+xnPcQ<;2ZmZVqe`@tE4NnXw~X7Q=^1_1M`B>o(0D<0BK zCZ7&HK6qXnJGQmi8ZlEtr!p_bMVq+={Ip*#!>0(PJFAo}JmG$I2Vr*#8ij%E0AlSZ zpH%N@p@bGCBzYUOPiId}HRnlbt6og)eq|=2lbhCSS041wlq%Js{k}3gLs<3eT$9Vc z8#4w?5m;Nr6#5WY__a4x^!_S!zu}3&#upVr9m;d; z7-aq)^VkQ0K~7y=ohu{3F=iP@aZN3@Tj51^jel3o&3R@d%5}PwOxpoeT#$}nYgV>C zLfy3;xuyFwHZ3fmqV!DO)~xRF+|Zlnl&@DyVk@|d)*0K&UxlpJ^9hGBPR8|Qsg*Cv~N^aGYUHI;zh+G_JIm1&gwc^0sNss-bk5{CsYf9oelWi=ld;6;OxP*B{## zRbAO*uB!_BY{~}q2y{U?@R>AxC=Q%4t@)cZbwV>{OIg8P7Je040HQ_N;rdvSDex*^ z!H)!J4F@DFA6cd)`=PN_Rl_-U%*o4+(~U>6l}jysuCyd3X$ure-gMa`3!}D7HPe*h zl@{S{QMyuhRw)dluBHA34hOb$>Fc-^y3AG>McGQi^0sa9kIH@z_Ar0G_`2JvUZjp_ z;vwS_tVL=x7}`#TDBoRyLU+pBuX}pU@vTCCXx3hfGwpXd z!W)(RIb4WbdrQf5XO)_i{GJKc{0&r~r&%BNZOeKK*fP=LnS3wx{({eR2I-p*n(eaf zI#0!#(*KvaRe7gr1N*wITz_7AR&NlYbT8+;+W|h(R(Ok?qCI0Osin!IOX6}a znJFKz11`|wpL+Jg>k<;)e;dRAn^!Gtl&G{7{-_-AeZ*&PD4M;}vD<11s?5})Ifm+< z_l6TV;GlFU%I2kcHnpEaRo(}@vr0jqPuXj?DwR&OmpFMDN!Yg=H0lA$UBw$M1dvAz z;;zWDDP!FW6MpC;s>i2dlI3g$M};>F1b{gP%fps~@KE@#8DrdrL|wy+SsvSaZ!QN|MkirZwDE-$dqR^`051b#50TsC&N84!mjT*0=`h zn`2+gZt*EJriF?KZbI_}tlc;57zO3$=>gX<;`~9b;e}I+>P$v38WNvZ9&VDB_JEm+Yf7;~igHyh1KnArET?%S+FIILmeoro;sl(o;vUMC7MC0C4vRspk z@3OtBQ7`&ri#{L3TVCQ+nOT#rpT6tt_3!t_rUjA{mK~aN=^6C~QpFhqlzb#4&9Jgt zavOYQk+BvWLiocFZv$1oBF*c%C-aLh3U0Lu#%m8z6&@;1iIH1MVyUhCr~yZLi}B7P z^@3(;@4GFE2^z)zh3gIaC#8XADJ{2C{ksp=DmF!@-hwu8ArWSn_DnNO%Ug_RQsnAm zjIqP=(xbbi_?j4u262N(cGN0i58AfPo=-@5#UsX7hNn)!x)#rJam|?Lha&AtduD&K zAV6r&ij+E69=Z?Tub$yC$qsj_)_pqvf-+&w^f^{k=E@XltN1}}33gp@`KTXaf~I?1 zYc2~wJmaidfr1h#U6Qv6YkDR(u*dSnB2~9jBUF2mVWc}v6ZNcF(-C-IlwKECn6L}V zN3?fVsR0z%V6amvBrffr;cKKNaar&P$ytU#vs2#p-D*orpGPV_r_J~=ZBhHJ-H%Ey zte}}eSnhV=i?vy!L{5O$=gB_LJRMsK?7X0^sNXY#h1{)2Ad3S~_!DsC=dfryrbYgM zry-Acl-w$=j1%+7S;9K?aBQK!fRQTv2VO)vS2Ds*edi2@_ciW(nCQOi^qi@&Ep$|| zNT028iHCSQXW$#*9ye96RCCoahnCF(9=@=68gIju*7CXQbiSt^d%bimx0(^{fg|cy zI8?z>v#V>^b3S8mzS5#nBg!MtJByS!;TCL!?znkFM}X=_tnbeYGr|R^%wc&=bvq?P zSbDIh$|c#sJr3iVtAF7>r2%Gn1bU{F4qKn&{EAa9kEeew+kG6+0Lf3;6GtQ#TrFkU-$)z z3rj>>(BR-Nx2b0(Z=$ZYVf`O{6(K)xBeU^Y)bXJVXnc&H`-oys3NS+ z6^>Lt9*Cju(;m*72xd)xcz#Minlo4-M=LCso$jnsiS(s^wxA;&9`8S_@?5S zwZL%05~;i`+J{VN*X8*hWNdC0Vf#0?mnBgyvCufheahG3Q1b92B>0sI8GXiN(XTPzQhw^|!da5lRqCa1*pmMVf?a~82*&o)>T zZx{ZkKCLZ(%N!c@`G~zBK5me!DES9J&Qo7&$KV(bd|z!Ta_VC*=q@^&j(1%2b*WUY zV1t*G9i4L}qOgU>j@RnD&iFJQs?j=bDi*>5L?E&3z?@6T_$}i!*MAk!9)?Ni(>()L zjctKpicf!>;ccJ7AC>za*zCEGbMr;LtyaUdCvggU^M6gxDm<1!C=Gy9j9>Fcso9e&JGc3zmzr|06=OSmk zzkrQbE5a#T^Z~@nmc8I8%-2+^I5LCux*oF_qU;v-1!_ij7Ac{oW8>8v5u^)=EMWo% zWNr@-a0N}MutXsLLA``>uj}(Yzu4*6gx{^_CPD+ zkFAny&b-?Q{Cs6nV{-G7IY%+G#0`o*1K7TExLac_g~kKxmJMo89+S+=_-6osL-q*adO7)QN$ZR<1BplK$q=)i>6RZ#ThzKZz7 zAJE_s`nVO%av%OS$0gG|11irs%*w5~jC?fI$NZ~(0V&)xUdaESL5}CvQ;c?~g3s$z zYeHi?_CV_UwSfu_yovYSC>{%Gu5%e~j!TA;AIR@HP|UPSN9SDW=Ynj(1mw2%q(HhxzLXux;@ktBi4Z*GA1o0MZSo4OPRU8fFEs@z` zg~rAZ$-VNw6hE;#RK)LEkURj|%4{v84Aat&@cq1;0h!@;fqJqJTixrtvo#JqG4lPV zL(h&f=o+>%E~?WXtNfD8iUZk)P7=3nj@ywWiD!ijn=&9elaBI! zm0pn$@1Qo*M7$y0FIsGxQt5fT&7zt$4f#hjXHg>0t#+m`HER3VkGJGK;RpE}dSqS2cU&MK9xhh`wQa7u=9Z7v$>LoIUw`L;QpgGarxd|vAL04!235ef6GZ;px9 zA)ENM#h_W1j3(@Z>=GE{@?MnrSuOer8$vCqxy4u-oggh$<$oG8FZ*I^THbC}vYRrZ zseXp+$;Aj@2paY%s$I~isvC6(dPQ08-+Pv=@Yd8!JzWc^FoUx)+yrEy!R^Wl3u~q zeRlgXpfKCKpm}xV4aC9Q!UbL6CO2Dv8e*SZxFxZBr9~stwg;&3aj9SR?-PDhNA7H< zyuHBtSn)kAw#GAU^NwMJ2mv?xP_BE z6~^&4j8uG-2S|iT2dhT;dmd`;wAGoCA9#ULdF1ROB`R~y)t9~`M3mBlJoPEif z+Q*^(CiMle?r_ml((&_@qkP@94kNu*R`Ungs0PSoXtY(Nhg-K1dg`=#lZzKE;VRm! zkRG@?Wx{{eZ7<-Gq420Rao5S_!)bA2MY+btB+Q$eZkfV4!%o;WXsqzkfL@2pZU zxAt30b+Ba|!Jpx`;J$AR=SEg7TvVb6s;zQ~6L?3jaffbC#7)?tX~%s8hcPDSL+t)p zPya=m>e^yVrehBVVd3Zs#dW5ToSyY%^_BXI0sFwulT+wxSifXAvN7?%-q8W}P z=aBb!wnKIxM;RzZBW;xIYz5sB24ja#(@oNppWByc1J>e;{H!rxPv!=$F1lmyFU<66 zN;yL37tcG7o3sWZ$^mW#7OYAq6$`dy&m`N_XSbxLN0P?W6%BA{hVVbGKKb?n4z_xH zf1#zd8_5ndZ&;-z(qD%y{NTzgD*BlL{KV$ETRnc>WBo@EQ?kSQ%s^Wm+M4mPZn0y& zx%UaFKg0Ze(duTR$QAdP>Z(0-7h-FmggqjBsS*oI1^GF0Y<-HN$`*Z-2K~G2D>|FJ z6Q^1pC`Tn{m7^QzkaEjd>0E-xjMP>$r0FI(Kl^RtD9=0~kvade3SMIom78^QI9?Hretv< zx3;R~AZ4tUw`{kX6Q6e(wpQ+5qbmBRD!w)17H69xVn4CDu2poC8n*0~;v>Xp>$_}K z(fLa6AVVaxwhJI%bJO#UgRi>WLiwjQR}{O?b9`0t{eJW?^?AQ`gV6I$wE~WUQo2al zqR$jhi6cWcVOx2!pTe3(*ir9XY0nIit&k(26bW=^k&0}+XW|YSTRrq6JCaL^@>F2a zm=+F#SUMVSyHzgbt?P1F1s-M^#qSxix9iX-#<}b`pJ#CiU0$)|kLIa2LNc7Gk z)i|t!L#IOtZYSyu@axd|h%Z0~hFi}y+QbSkn|c@3<_c^VCZ~E@oci*I4zz|NcjyLe zWgUhVI#O8LMCS@azE4|ZCiNLanVf<%ooB?;s}k65q2q)_@SIE8+=qqcKyPc)LBHq$ zdtgJjTII5ZgA$g|;%%&|)t0|pspe8?J6=uM5?t$=sx#%q(DTpG8y@*)Q=#9mU|91^ z@_bhvu(M)+TPFZ_&j#7ZF5TID+ycZM$|KQ>sU#foC0Ba&>DNepd|=m(fu@|nl;_0} zAT%9MOsx-CkaxHMr~2e!tyZ`t5C2uV{i3+suQ>3E&4jq?`f;rrt51X{^Ne^MzdnR< zwE_-zSR$r#1)?+5-5=Gbw-xvq+P>Q&q)d-jdXF@t6?CY>G7#D-g3u34B;tTu*}hie zD~h^c2S6KiLV!xo<88U>BbsvE^mx8lBG0XcLOGC~c(LkeBTn5bZ(GiUmjxQqX0!r> zkXAlKy|YNkuUb1?^(d~v-LIk4Sl^wma5*!O%6DY9Q#Xu12ESroVd|FHL%TKr%I~3U zX0X+|UGO2T)ia_)U8F}O&kW^AzpgQ9V0*~`F21Qor5)oT>!igmygBm&o?`u)mdfO* z^P@S|E#mO7bdk=LiQ=A=>6t_FdFu6Jz0k*NwDu%iX)#QPMfz+N9KzPx)fuk>o0ud1 z$$mi2Z!9xs0Ss7Jni_Ab_0qH1QDt$xbS<|U4dH>Mg+KE0%XU}*X;ht}OW@eOADb2o z4pAO~ZWS2nJ{U`6M~!GJ0B&k^>#4?K%nX0V9IC&q9Xp{~Q})l)l2VWN zX;Se$7B}&m3hPmgYjW{vF0Kl;vQ4y_OALvvjGp^gA|5%=r_-7X5LXrN`A_Q%fU4Z$ zIhV8<*6{~OhC{ujvs2U7-$AW5*d&ycHpb6zwPwA)M6dmRK^~TlL86xzSV|K`+*;P?4to~cFuZ7-A?vj7Ju%&)bY2gQ_e z1#9K9{9VF`mSCFSRAikQRE1t05hVI`A7EOW15S0Rd{47Jb~KO!ekL2^F`R1og30?mE+o zIEioZz?OS*?!2P@fCVZ%Quz+$nUq;CF>Cz-XEo9N%53q)o%wR)<7Tt~1{W;GbE_%v zZGIAC5BupJ7@g6@ng@=`SH;lThK0=Sf&s&xonAU3Y>gRts0cEw@YwOqriBUv{#hpS zd)c?XPE8p?zQTIG@0W@Q^uzZ^&9|VC{i+fo)ut|s+sDTx1eynM3>w%2XtEvr!SKmy zXkJh^92@b|+N}(j65-71l*xnx)A8~79!=^Ca})NFN4O0%3#0g6xdymhm**D|m`bR) znZC^>o0{sB{l6+PwlYg^{&I=)vIUVgl>3ykQXN$on@Uz&HLPwD2H5xKE8?>TBITjy zCpL#rLfsP+KZplv#71FM@y{c?Fx#|{xm_@zexMMgp6lx^?5I;Lz$r}BO|e!D=zfG` zD;e-7AeT=dRoB`v1oC5XHxB$-pY7I`JGB$kP?JrNznJihr*$asH^aZ9wc?Sawyk=$Q{Z<&O3`#Akow^8_5Y9={@K_ z2`kvl3f;m11@pI_SRIn%Y3oxiZrwHO9{mp2r=@e2H#XV@4&IlZHShd{I5| z=PL%u24tV}o1YN6nUKuygZK*q0v93~U`v-w^<`f#?g{x7Y@Cq7e9jeu?&?H1G%gnk zlK8~+E8TI@oZl5DXn}*arDwBMCK!71nq5Q8YJP;u)LV@5R?xHqi!bp%Yu2!Z>*kLL z&Z02Gt=2%XL{xE<_VmJ16_1meZUQ%@0;WJ0^3E!yiqEhHPiPRCeN0sUL0G;N;zeIg_@TwlW(H4{pV(Zd3yP`A6Cvbt;^L~_YUz{x z8R%605s|I5zv>-ZV|jm)Z~l8|VS3HcZN~Gg~oH8ERfodyU#Bc~!OSfLXXDc{xIYDEm41+Cv29d(af!K>dC(-Zo6IRif1Ppq!X zDt>Az$GJu+7XORM5xrPY4Eg}Fmg*U9RV>eoz5Q8n8 zn4*LrZ!@;mO{1dbh0+$inEDzzfZQ{W!ZRk7*yEG5&(}(vuSm74*@$0Spu%AM_VIRk z2lmb)%J9YeQX9OT@qW6&OEriv0 zRaHgV#EHB_fJeFcNWI@Ywe^jIzxU8%SKssom)P@0%@+u~v&c_5)n=xQ?S%DVl5R=* zwm>3oY%97c%0MX^>0CPJ7gYHS`)-XBGm+Qy5!aTz)YujhG*NmYZyWZ~Q)yA<(bW=} zZZ%H$Ew=-jYPFrmke|qFZopcrw=m)v5#=M=JBw6KxX$k2OgzGFt&URRmdVn4hG)!a z@brOMkWIoz20i3rs&=N!U@3vlb>qQMO6mmMpBc zbgc@SOSxHgRJR%_)SuF27rf2HTJroh_XPFkR20@`NO3|iXNZ)CxM$LCe?TBZHVRAM z-1V!<^e+f|)7Z8!Vv4eZ^|68*84lTm>ZIUK0ZhEF?^!*6>PlNV1^n}r45W>Rnl)>< z;9Mz5AAl0vq{oiX$2=qY_c4<1XVZd8DoWSs&ML)SYQ6^N(x8S8yTpxD$J1iRs}@{V zQJN@ki&pji5*V^l&86HdzU)?e#hVTw(>ZzV5&L41AP<>NBm)K50Y;z>D{Mw-}{zf(30z=Mp;?CP~}~|D2r_ zCvt0UN=*Ug<7U*t#4Cy?@-}Ams-Y|C{CwUn+ooGB6{&}P(Q!A3e(Z%04fz(&A8##0 z$$o_e*|c{SsoADiP;~*4!S-}N_QM-UbFQ@_+``Bx%C^;30)>4;+Vu?Z0Q&dUXY8?o zTf;xEv=%7f=X7#&t)Dm1`|Ag*rWRs8?e5nNF30SER41PKDytiMcJ#83DtQy0k4px# zsxnkcSLa+&m0wGJy_Cu2p=+t*)-lcz_ zumjJ(OForc;7+Dwzq~GarD^{kby=|$$5f>WP2?lCKPtbn+>$DoMLbtD76bdh3|xyN zl{>75YD(GlVQe?>V1fOx&yUMg*V?h~U62&z2hy5Gwv*+rD(X%pllyhnR5c~hetUao*) zHsC2c0&nY+Hd`>gikkR0y=b=8kXKc)6J@Aiiyl-D@EBC7sK+uk%U!r*W!L&4Gh&@E zkp40K!8N)q=2Z(KysOK9(fh>tA^d}1BLmIg6of(teCG;azmO_r+iU68peL;92rGp;io}+1z0$D7O4UX1KO%@sne1yto z#HqgP44EqQ~m9h@&Ty?sR=DZ+RZlR=pKaB7; zM#W}}fLF;T&fbf1+o|-WUnKe9!dNz6D;(=Ia+A;t8K32KzB4JXTq}>vnii+_P;uh> zp`TWjq0)jv_nNobrFd zR;2{38NS04GnD$NwX&x-7;r3SSw=v2Rw>INCT^(&3{Ryi;RSZJ8>odvCo4Fx9HqM}HqtNKqcm!FVsl?4vt z2&X(nM~^Ee!?1R|4qHfCV0qtlt9{V*RR_^o!&=+>v^a)!?gJP$wll~|{lwxr{8IzB zMp5zu_mv+ym50B{W2*sO>+!~72>*W4XE~p!($aV+-e$play#}_vs^^aecm}sC&l2(*UwOfV{IvX_A_< zOnb1nw8rWo9x01BSwPeVmOGl;DFdcM*!eM3f53n8o=%7(#^n2u?F^m(F+tA0Dz^*# zyHA|>0W|47q;N#8PbqNKZ~<5^xbY42IJw%6?eEn8CXNtwIO3btFm7Qpu~o&O@=bl# z-i_y_+#eTOYlETpluMI6`DJsZVTMwW(yMa#W3h z^PRqBa!{s!Th)*+Ymbv5O*jZ#>*CR%2#$!?yOSO8x9RbeJWU~uBu6VL$@0? zcqDi~S+)t@CMfk@6#E|PVZQXD+F!dmwEa%37SUlv-bXBQpk7x(tV&(Bg##hf-c$O@xC@vTN6EOAp2@nArQ4} z5L1NFxpGffE4g9vJUP=*i15MNB1OqfWp-vO#3w{WtL3Q%S?UJ_fNeZuAdF>7Z`iq zS)_c=9cWQ?UqIL+FI1~zBn%%JKh;38ykol67Fg>g-N8CRetyU>;gC;2Up~+-UYTub z5Zx|-P##b``!N)xKStZW7SE?xsxOl#w@KxTFF4K-}kR6L1_x*Ypv5q*RdX2AR z1|i!E(oPHLsJ^o8vz|)>soy0I^wu)7-uid_g9?`~n-OZE=7L4goJ-E6DKOnX!AR}v zZYRBOChEJ1M=qwY`LogILWl2#H3IEA^eFF_w%kL~RD*s5aIVTA!( zpnRZsrZ^4<%=d3$ki{Dg4S3`u^xP`8g@N>y*CglZT@N}H$fu4};7s~bEWyRJslePb zU~=3pr0>*x$M@jUGi-8|Z?RIIDQh&K8(;mnOm(dt8=rVf=}-l?7<^erb?p36FDxiD zX2@5FA^OU;%(>FeDMN;>iO6m%+Cfa%KWWs%rfR{%du0dZT;k=FPbF?@{REFKi2F+6 zO`lET9FqS9bkFda(Ad@=gZ@#BC~1Xzz0<+ z<<1nl7v!G!8*XNHX~^P{KED76-;^yF0PpGY*LquxcKmfgt2>sM#o#`%ykNwO12x+; zV0U$7^M!j>e&JKR!nJ3YEu}tlS-=%&fdzHH?8}czPR(6y$6&{o4%LbFmU?o+rs6_J zK61tpdZj(XA!zYpL&K`HfzB0pbjPn1`=N)ExFwXCwqScJx56*1U8K#OMJoPd=d>L< z>6qbN1v33%rOzvplj>@QKX70{Z$RnA7erP#iZ^}q zeZq|G44x{t3;YvXFZXZ=CE~RyiIEj}__N|PpAJd2X)fFPb!Yqq%h9r(MLb_ITAs4@d6H|G*C zbcpjFQpXNmCu9J7KyeF>cxJe4AwhjVZ1A>2srQ$l$1l?)C;#ae-L{(d^aFjC9LOFU zsR4ENl>8nF$(|pt%202HMEM5Z*+5@$pt5%%uX>Za40{HT-IUna780bF|E|@H_oh&q z*AyK?@hn+UN0_7!JxjBZusU+|;+9G#ANj3c85sCAIRRFMqt^f=v(3;2vGOI9>gr7C z8ul>606H(6uqE+g4wT2ORmjb<40To~Ohf?~&z&}vZ+_EhJEt&z4C_689~M>mys#B& z!6QfCUP6nXfe=lgY4FWO0B~tLZnY%gBbpFu@xZS#>1a!%T{L`&m_;G^K|?d zSyuOWqW%=ruBZ3ln&liix|JnY`pe3q2(p6?*N41FukA&{q3gSQxX~P!jO9@5p_SV2 za@A9ceo|K6OnA*{L`TNCiu(w{TP%m3zs06Jgj~h2#0_GQ4khF{S1ff)jnW^xUc;C5 z@+#f?yvt!RGKVc>6zJQV&dw^;3FDTIIN+fq$|o&&0H`pApXCB^BvP-7 z)kS5p?C5PZ`}k)iKX{FcQt2tn*tr{CNDdl9vb<+_CMkA%q-=mAv9BatBe#cY3BdBk zt^lEa<=cxXCVHDoh7%J&_T{nJHoU3^tjBUS10}_ag(<4e6bJb|MzUKTszcW?zT5M{ z@2UYvo`22g>IGz$pAg$<={&H-v%=v`fFkk{Ofsj$upxhB?m%2vYIzPA5X_=%wn~$# zmjNpe{cAiFuzGDDg}(gbbefM^@MuzLL%dBO=*irG)joq*I)Ym*N;G2q>NURV51RBN zJ#xqR)a8jL!7+TweaACN@@v4-3XUC>TJ*$kOMSQXYMRXgCW5GRh@LAaLwl_8u?OrI zb3pB;XD9kd>G`&Tz6A{U&^$rxU-gml37DHqiF=pqE;yxKCDhw$S8#{$ z>*|H^M!N?mMkmx-1*<}f&G0Gj8Qxi?WI);zY$-7AB@pLZFL* zM;4DE?Y3 z%L`=ZB7R-CClkZNEOlti96WQ5wo)&ofE%2|8NwL&Pw=%Nb@O54AHL>Ac3YFj0ph zn4T++b~O@HUEz_f4i_fGP6*2?{9hB9k6Q59!*DK8`)^_MUUXSqU5!PQ6O+gfaO>#j zgzK%{A!8l#%ff)vIIA{*0Zo?#DO>ct3GWYI<2ek|NKg2dRI2?saLIhsjMzSVGh9jr zbZ3$JIkAT3+3y0E-t|xo%z+W56((KfA~b&163irf*c16Pg;{R34OI_W3~dLfe^-Uz zmK14=uWDgzKR?7txh9uii=IiQ`I_!t)m0_#;ccDPLPR_UVH>l80iBZHTWLt;NpTF> z(;BBOCcY1EX>}6)Y-WIEdbMCx%$}8gL>otS27FZwX)3ld=Y`#H22Yzf$6qm|dC}=+ z0w2AgWKEsm_g!LFJ$j~&gEI)6yqsm`R=GCkc~MN~3Pt{w%>Kt^y6DuChbO$0-5P0X zjNTx|UQxzEcUGxJPn}oHnUG3&LoWTk&!e@y@=A+OFf5_R+jgZ@g94+RzQ43R|Jv0d zt9_=mbB1+q)-*6Pd0CrhOi*HMHy|J)l%Js9X;azL%;e?F83oaW$c_oxxV?cEN|Xf5B#&_p4g>!&lYJ7m=!K?br_W)S}wg6L!LsX8@dhE&Vvdf^C*%X!9H}sHsH|ohuO4wr{qM zJh0C@L>ONN>+{0o zZ^0J`<%8l&ZZ#K%EsS;SgSl5dZFR4)jiE^LwObN~QL{AOQ?pQ(<&%l8e zx(>{!F)b{hFu&1iA~XZ)pNNd|2YhiPw+J58lxVZD(JpXMElI7=fdq<)?YaJ`-L!J& zg;YrfNb6xn+r`1JxoP>v!B<^wnRonA^=-#8cp_Y+0o#fXtJ6JH)26f5^9#E_6Se6=?L4B5}^8X>gF1zGfu{pRwxD^(%b{a~rb) z1*KoMCEhk_&6#d{mQfzz+=I#Gd=<}!<-kMoDD$A1I?{QK>LPBckF0s(-9|ABRRP|HQ1N489-TnVsjmDI;>@f z6bqf(g&w)393w6ZkKGMGTF)%nuK)d6kNQV^ZYF?JaResRG1_Skpb2|&LR%N+m#0qq zno$cF{VQ#rbA=z@IUSh}mmwZ0>0ub@E&B*Fu3E_0UlBBS7AbUgomAN=b|Jh$=4&{`AKL%|x=^+q-i9gkOm3)W)hy}~`fauP)o~>IY#%;&OV|_JlWmpKgdS@uESOci zvr5r2-d8_Pr?CSEujPOb;(6hpkO7jz@|xsUYoG40WQKC7_=F|&|EfE8!Ta#aY!iax zb|HQ7+NsmvZ7iq4R(wufeNI{ro8>rL00#Pf5ux&VqvsO{Vd`*z#M)eNN_2UWAM-5u ztZ5s&f(##6BBE^3H%R_1fi!8v_K2Ro@5yjL3+rQ7kf8(1K<8Y-#&x*EnN0@gO zDf;^yD3XUj`hw!i)3j9)tTvTlxPe9ahUivXAaq`VRqY3r*u$ygn%Q_CSTtq^Q=Ok! zeGV0OYpWL>0W-TqtJOWGSG^4&eQQ4iEY^yI=tGBLGU3W{t13uJv22P>W=Kl zpBG?a4b(~(=zL%x-HcVe9GF?UHg^`OX7lBfcdp2R);(|f1TXJ*Lt}V%CQdpAzT)0 z_cD0O1IRO}GFw|hTqmUyj`0uGH~UU@52%}dhB=j6Pb?M#4*1_;^xhSttL@nSF}H@{Maq(CMje@??XgLkm}5D|Zs`Cu04*NG+cf!khil5xki4zt_lRau2nt zFA$819*k(sA{ZOhTL40fm3J7o$`?|P59pW`Qxn|!ZHr4b;*&zJAjy80*Dbf2{7%WK z;+{c>Ei*elc^Os}TUBPGD!665vr1_!ctpO%nG>!(RGV>9+s^Mxt}0HNFOY)$KEd<+ zs&=qkiaNNpyQO&ziHE{8+E zL_S=HY>o@-h{iB@Z+V;W&MI|xV68}f4J94k0F3to+;`Ffbb@FcmeO&nc@Gaz?^I|B z9S&j@`@_2!Atqvs$nqZHnUuKt97@7_QlTE{oWhsJe%fGCsoyfD__O5V_mXd2^GcpR zpKu7PPlM_^k2{)bvlHL>1L85~k(Xtt@*FS_k|o4BSL8Y2ZsI-G^OGT)3LE+khD)^8 z9>k(P8|LyV%(;Zjh3ysA*$107h?q^n#0=tjWfs-Kfc6Sw_+Hr)xgpQ@C2mWox0$*h zvRKmtj1?P*2|E;EZY_mqOaUz6tYGWhy_OyA(eS>1P|vuvy1g;bq5y_U={Sd_XZSAW zQ70^Rs@zl^ZHnxy9Nc+jDFOwpgm+dc&?iRhNJM{%;qYmR?b5fED{BuowK}twF~v^+ zDxUzlnb5%Hl$m**ZO9IZSeUR6*#oO!V+*sotZVUEwh1DY4$rw_&wY;~r^N6UnicC0 z{g!`kJTEwdo2*j(0xgme zZZ-0$z8q9>>EYOZ7+e^EtHLd2Ga$=-#yhK2%Vhn^tzjPe0o3DZ{YZQu+Em1SwW`mU z={PK}TW&S>@keq^#6$PRCa;3gVl4);e@#*SY~w-Xb^(5P0Pk=JC(bl**+5SC5rVl3 zOpQ@14Cul+{G74;gwD-`_N^aK3d1ohCOal@al|XtTBM*?7K3O3qkV$kQFM>j z`o!3_FtELBR#Tfpc0y)$Ykfiu{3yL3SZyi@?+lI#Ke4$^>+=&h5@Kdgl@ErggC3Rr zT(%JLyysA?tkXqNh?)h|UrS2&ZtuZYOq^}5#x3P+w zEevvnOH0J+2Gpp0D0*j=vO2n7*)4JhbHKPX zIhFsPK+YRTBK)2#@2GxabEt6QofH6DGfMOzjl>b+q(5a=n%gtLGQBvWe`YBr)vu`s zs22xupqGfB%qw|KXVkQrcl>FmSv;?sjC`#-uGosE-0WMRp5a)ItMIZQh*E|^t4g%U z5yPU0&XsmU{{$C4^GJ$YVbtcB$A6Q2VzVqmrd10ElPX=0pW%^sogwg>#DOy8tn@s$ z+NJD|t6Mg5hnUGfW478x9Uu$K;fRFT+A5bN?-q=%Xk)5Ao270e#KzCLt;T=1IX?moHbG%lE zPL5P;3P$blY6~5HC_Rn0y;?)l5IvLoC9=GlqC8@f9-&}X58pOfvesK{K$V+Wbz!go zg5xZYNzbIy>`=3)tqe+k3>ITA^-r(^JMgWA+!iVX@pS1rZKXk^sWW!~?5T%+8ks&D ziOvL7j_t5kqXlFDMDc+B3~e3u)q0gJ`UK*6YoWuyNCVri-JX;?WJG>kwNO%s(iXb2 zN&N!u5Ki-vS$d{&>h7*aU|;o{WeX~XDBB!wt5vSHIIBuFX>OJs&8>zAu@=DHRVBCQ z7@s-Ozi~^+I4_$KTh(VcDQD$A>YY^z5ZKo(UAQ!dhd3~u=3qK6yeV4HQAF8+`pe4R z0K?%0uA@_|-CZn#PHx~KsOy!svIzL+DH%Y2N!AL74&^Fa^mW*M>~{w1gg5>8p$qXX zm0n<*M3k=4okgl5hGNTNz79P*IrY@yK#bVPHCQc8khk>;n=RF1rJ6K1i!Zv>CLxbh zCcUKv5%-|$Vcg0(Qms|=dI1j`Q69qHS)@Wj_t-O)9z4W7sLkk2m|b>^<>FIqrA)-B zFgB5$gO6V0@y(uDRl&;Y9W9(>;%Ag_{M)Lzgi(A2L}rQSz#0-gj7z}-H-+7_$yzY6 zLdR}I-n=V$YF*|ywjjWDmP zG_il`cfBu@%v3W@nYPAjTYzXp`GEA!D%D)%ARQR*DIHHvSpQ8gPNK(}s)dh3lx?Rg zWkr}n6Md#6#gA?M&-h6mS_waZYS#(JLVxBigKO$IF#9okHV9jWY_ z;;G_IX{9a;LX9oR^r1+ZbLknsMp*GBt#X2zh6$gT4(!#BZH7SUFubi((-XO2R(p(5 z>FRAYG*l<_%6+q^M|Nu@lN|vhzo;-v3jt^--$gu=7SmLsT{1`h0YpM~_+o60cWO%k zY+xYE3qT($B2r(|H@OZo_dz8l6krr~_fZKj1x8omMc3hmP4^TYwQg~XOXhe6D>{bOWi&q zI9N>d77~g-V35Ylz>Rw9J<-q%d6``+Kyd!qNNA3$zqBiVhQjbulf7nVTR@I*Sq zNA3zW8#E=-zO(3~@Hd$u;MUcPc){>}xfL%9rHQkR1m1txdR6@$`<|<2igrC!ezgi6 z(gj~@X=^sY2aKw`K~vh&cNQsHI-?q>Ql~Eyj$9@`#F@ikdzaZ~wV(C>fRENDliwlt zB;GF%@k#D|bZ%*HKzr&~XF{jU2#CXttG(CvvR_YkJr zPSRTaae2z&u-R~Er{JzSMubyvxPAl+N}QZH2^Sm_(in~955hi^xStXl;*`5v+htGa zNO>qNE_C0mj2JlsIqvNZc;_9+Vm0K)AV6Bm<-C8U3|p~mXCN28J;iswM#qSo^0-fU zc`Y81Wq(}=;IuaoKJ9_3Ln3K9@>BdB{vO(_ zN;sr}zzMHdhCreJhpemB7NuFK4`lY9kB$`W4S4tc3r^Ev$t&46d`#GZ&GBQ{pjnn7 za_p&$`MILHd&^yl?WumH))u9>R7|jE#%L@bL2swPenxDIorEs$*-2Pyu+kqh8*l6k z%#gQ7s4k|ib^nB_d8l_jOlt_8K1M1UFqV&yw>KdD#F{yy7T4nasiDY@a|Ou6Zm1Azv2(5ei*muncTo0%lsn(Z*P#e zUE7Y*9-`^v($%DWk5_!kIvc*ig)>neke*4X!!`QH09(Bn!y&DC7-6Evn;Lbix!ZNv zRjJRm!h!!X)#|BoVRe@dn86h3_6WDt+SGXAw?+?APkrdFid7Zwr3R1X9n$R$%GO&p zL)G(2#TN2UB`4txLW$W%hSH0d(Rb{?Y4juhDSEnfgt}pmLrI!K&UXL=oZ*?{ZMfC1hAIPCkN=lw7> zl;j^5iMQFO*eNcNZGmo_FnHp? zP~3ra>e=Q9-tCmE^*!6vM+!gu^H{U=4e5uZ&Nf2eZjbO9*ZSGY?wc$e&uqQ)b|myFCSMx%L6Lj;TLg^L@5u_u)tF z1__t7GujphIwqdw_!f^Eu5rrGGv|jEWwtRw_v#oYOP?1etI*SvGkk>$(F$(O{JSzk zBHJsUko#}x1JnOQwB?$BcU}H>9b_~6h~nEDynQNd@q4Oxh!))EVdyu3o46HHLCNxv z_0A#%o^+(f=+jEW)adY(t#qm>t{O0w4`{bj(zbiJRXSw5XYORaCr9^H{e9VF%VrDd zomGmAxgK1z9Z|dM%$9BEo_pc`J}(Q*S+_SBJ9SEIvCq~R$WtG#J@68{q?+@FM|%p` zufcZYmW>2F;8TeHeN$SqTWaTJfw}E=M%S_*Us0Gjc8E^Yn%W$?1bloG_>>0d?G3ax zQ-5LLmvrZaAG116Ez$$De;T9q&ya$u`a`(YW{b#O=?`T6QP0rc;A@=lzT3mrw=79L zn8YKS&5m8i#w-9JPI6Qp1K(MtY^OTZoor9;p>ndGTtMouYmQI@#_||>J0zagxwSTqAM;ENkjJ8tb!>OtzLa>IbH2@~S7@T|}Pr#uGU-eB%<W~QskOn&Qb5IQb-W?0ap7S@7MaCtemn6 zYq_ehxeS8x9oVZGn@w9|v~=ujRMdfi`i>8X`ZU|zfVyfIs2w|%62Df+!=YBN&*(MN zaOlTqEbpOS9iwA-Xawm2^6A2Zi{F=*KjKDuQyCOyV3oQ(#cTK5LWl5vN-=u+1f;TS zZhiyC@}BH=2G%F+W98mp8jgFCl^W44xi_VeYX(-T+Z#wNuTkIk9>OQur>GycJO?&l zg%-U?6CPMyKJHo#M6;#-U1hGEe5B*IH=z2y7?R(GAGrs3*f`K@;7OXeu{A$uQ;=a$ zK7zfoN^ym>M{6doW2KRUdMMVYHR!FtNXM1?xZ5dMiw+u(j`iJ|uXR0@-0D@5d!&t- zffnrc2(81~>mo;S!d@5WUAUdViEPn{*5%u<+Z%9Qo$3@^PmN&DI^EM5x@kQVESPP4 zh~1vz^&Pv8pC?&)2U+%zgzX`#U3F!)>A`k818h1_u;D4$RrGA%O`)E_f z$zB{oYrjSo>$f-))Uh8QIp=8)G^GLOCrI-C9}@jJUT__zmh-ZKq<`du% zJGPBsE!V#JN{_9cg2-Sf??IkPl>HhAr*F#K64y0-wsy3i3R@d6mTzEgrzq{$+Tqyo zH<>l9XUKc8Plw_wWLv9(Sj0Q46a!Ifg z3A)NjRqH8f(^}^kss@vbV+ifm#KQQ7F`XP#_yB@%!OSJjFvs!#MC~tsL;qvoU)TGJ zsfTy=-qrgJonN!~^WfU4jqgRa9}&ne-*O`zz3=JL5$(1x6{-`ii$?B4YAr)!=PNb5 z{~iAmY{vUTc!7GZ!R6PYTgA$!wvyP%F@>!uu-ZRjdBTi}QGH&cd3W-#NX_5U`-a}P z?5ST!KZU9Kt6#TA^v%6@AFC7ZIFF&DFJxDp;nY>N8>lz9fbAr#RyuqcIaTL%S?Mef zXP5CUO|NXxcjx?2*~l%%Ian&Q!!u8k%Kc$tc`+X`Nj3F3f4Ow1&ZU3EfbAKalGbtrwzwIMe^}ppF0H06b&MquNi7jFa zHDUKu!LFe|x_!y>OXj&MFy_3oO3|}3){p8;?Mz;)Yrj;_PC%vRxMZZyYqY+2d2ITL z0~r3TixId<2OJDfxmVQ1rb5M$fMffZ%f~Z_3tbrJtZ2{E9LZGMe^c@Ydx5m=n`~z_ zT4>+{m1_p_Rqg$Mk9Z_~D~An-#vm-m*QUv@~usz>31fC3 zi{?-9ihR4R(W+m5=yxUw{y~KDS?o3QG8`a2yrGq+Z(8zk3lPLAZNr7x{XbObtM&!5 zXUCWkpNhUqi}i`Uptii(e$6~J#oGQOrRDcAYXP6eq|0mD?`|mxpBU& zVg8YU+D-x9zRoJ4V?}dV*KVRa=q|PA+Q6>-fbY&CWxMJ?51_LKR&NNI$F+_{T&|pk zQ;QLBFW)lUYG98`zBZ1;3vN$s`*vwtoWc&8&#P`~K~qVOlwLci}LT5NCWZ9Af{Iyytg$PxAIY$ zIscz0lxO)r)}pxK%W%`z+OhMWu@%$n2;_%U^+VaO?7qAC*y1r`lxy5&Ira#FnZGt}1e7UZa^XK5Az`^iS!x{tKGTwRViSa?1*n9f*8dyYlSB zuMtM|s+0}oWqk%*R2GQaQ|v1t=D7meg#rxMcWbVKzK8J_7Gx`b0DD*3GuNwfZ7x4` zJeRB*;*o)i*UaR;f^!G1YCC?J#UKc%E3GVzD-U&5uF37YoL06SvsE7hVGj@me(N(w@2Ng*4y6Jv zRqDnp0BKlDNO&$Cg-cH-VynDg$@EOF4;0Hm{;B^_rxR4a3*tO`l-i9`p}Hsw?++s z%RACrt(|f$NS6b%bsH0U@YGf8spj4c*qpZu>}J3% zUM6S%-v+nodw<*D8jXz>kFx3}HviI*!5LnWhJV~^#!oPWNvO6>;f z7`APv5~Y{OmRTD-e1C2Pwg8PEEN!2+C8n14?{)PT!5;ajbiEJ1YV{&MTeD-sH7yPNj4dN&K2U~p51P0boryne|j-dXO$g1v?-B?3W@i^ zNOxjCaDZuznE{{s#X_N-Dn#QOdb)BcRu3yT!hz|zF@_g&-~T+MZ}`Kazh(-zdg4Dq z!aJB+yV{QZR2>VFq638C`*c^IH)l^}0oap`g%uvnjUq_TmB`W_iQ5B=TijA`4`KM$ zHvnx=C&4QpbDm3T#jPMKd?2R6wN2Ab;v@JF&G`!8p&8XH$XFaDGJ4zD_==COX!F@R6k@}I>TfbR{j~)tn#R- z)%neTT)y^u_MUaqOb5+Zm~T+;bSWf*{dpuaooOaa>EjO zW{W;gg*EhAY)PMn4urg}o;+oIH^*f}c?C$@un5U>r7N?R*qsR?_@0`C2^<3sv}T)T z(}KoTOUU!KtZB8y1DiuWm{04{*4}DOt;7*dJOR4G8W9Z>zIK4}4Sp>hXRr+Hp%eQM&HV@3t zB=s;72f!w$3PRs?l3KV{!NwJa_4n0Z`60iiCwgD?pOWvJM`#mk{gxb6X<$2dI9R(p zGblTir&H;a>(D-$;}&YzRysaE12XfvulPD&-85?J z((&GEZcA%^g*+tXbtMPGY6xrb*b2bBc=?t3okfZk^^|dV%J;;;t<7tGGGvDwJ)0FQ zX~g1@&gxX9CXc`=4W3s#Oj|EtvG1GBiFf^w;o;TASf8gPto;$F;FFJmou#v^3xy^pe~+R%1kqP~9w{d;sVcpcF6-BzhX1C!k&ntyaSKR8Ep5&70mSePaT5NN>U;#m17hz5 zDQSJ9;sv>ocNVEJsxGu+iQlF6H<70_>e_akZCB>lMRf^v-WD~iw$$MYnlF^L^;WxS zmDV=(6A6(9bu}F77c6g1bVFrBMEp!L&pYO;bckMt)$^EPOEaUki$a07KoisQ1NBdA z4zasx%|&<_b8buHdzc1i)=;VE$E(@K1oQ1eN#oW{N$A^-c8AtHZnhS*veilln8Abj z<~zT>_m2Ko9Lts8FqL)USpI(FdD@!{u+FyTXiR6T%=>qdP4(5*M2~1JU({#xpTAQE zn0FSbQe-!U7x=zT7xF$MX@z`3ir8N7z&QPyS)Wzj0E(WAsn+=NWG%RB&;O>A~oE zpseqDY=Q?ub~W^DUX>wc-J(%dN=Prv6PrV!M}0=h z$kzl@n)-)hV?3?7E@rlgq<<4;b*hMGYdDj7 zM?RZ0W&s<$R=PxQ^9OV_9(6zK z^m%q`D0*RVYKy# z%;=r{!3^xIQpwieBekb_UruS)tdB<`Jv6ABeWEQ`Xz&)d=G)=}0U3Wo9-x9rSfdoF zLGSDjW?(KwV0vaStV~Z2XzNOBXnX9MJ60Mq=-M}M_J3wWoNtr<@OO=V<5DdDjlHk? zPsz;{K{*`@eEL}V@%I#ujh+r2F;G}pEk^Xs7>#AXdak4vwx}KX155c(Z2{-pg<1WG zW(8;}vp}OvEeE1or7(OzOJG9wPvn^4g*E^;aw|*6tU$w~7RmIszWEVdx-Kpof(i4q z4D`2ClI3gBQ6-i*?kQ{yw``B$7@ldCv!MaA4GaQyR;f5tr@lTwpA&UPKNHumdbwwv zmrd3}hGS>HbYL~5M_%P-~J)2*^9D6h1$5BRX-NhI&m#fjv{*7YCSrrNyqb zmQd$ySIe~_;kvwRpjXe+(zf1eS>?z0(*+68G-88VjrhL7EAe<`F;E_+aMTq_M<6M(grJs*>$zf>TQV}? z7TjS;fDQGbOu#iQq%kdYK(#IdthXtydVj%8u2l1dZ?9%U30lpq*jWa~t-l#}%X~i( z$C8Nc@oU+bSzVSsAJ6`19PF%8P=xjQ+Ke0f^m7`1{#XaZeqN3NGJC3+&}yn>N4C}V z**+A^)WLB0qcXsHZfxfp6+&nikgKmjUDLveer4sYVDpqg$CJokiZQY~X zFjMLIr1ZqMQ;fYpn?oa9L%%PG)P;_gRty$K(`+Dv7%9JIKa=A7PEFZgtM#F`sfY2V z9QS3ufv>M|{LvGeLuF%nR;r(@WMBSa$yL}VeBKyp7l?XS(L;ywq>jGD63?<<+ta*05C zN4kC=W&Wb|4kx-`H4ogh|I71>GB}}5(%Q;mw|35l<_8??d4WyS zz++Y;c$h0eJS6i}_n_#6IjZHL8rG_}0-Y<{%uQePzP9)Ey?5;cv3l1{z*WK;$kaROW0@p!p1G1q{Nj@0cPL3-yD zXkEVqzOVQm{n~v3)_)MA;#144_s-Gx(mN3JwWHrhRqS6fLi9v#h@Ur^&-0JoaOP&+ z_JqoI%pmmz1_5@!TJT8O6t^b_pfM3e;n;!k>gSSE?LW>4cqw^>{~FHv8S2} z=5?6>IV`{OJyz7A#IU|u;@)RSwWm&I?5*zVLaQ1r9h8aja$x)S3jG!TUG?A3cyBev zWY`Pl<<#Yw6M#7)NBDVwL>4Rg6xT7X$+Np!mkDXM=;M!5a(b1v3UaVBxzsN}y^kJ? z(JU8rnU9rUV4h26$u$s5jQpNWb*3Nk5I)3TuFONt0m7_R+XX01r(c<`d=}4Ou?2`L z_yFsF^sBJV4B~la?=1H`t4bVczj#0?c%(yTcNBnGeO5g`wOWNPrn58qoEiVCj7LI8 zVZwe$aE9CL6Dz?Jn?pa`sg}5sgZp;xR9R8GCF$trn^GKjVsl+(P{AOs2}5)b+iN?* z18!q0OlqF3FF3>YRf2uT)YQjKpI_B+iAxNml2e?u?pOQ})}4|7AzRf~mvz~QNe)ZL za{E=ctAE5aYx@WbTRNi^^l|Ew25fMuB2kNqMvQ@4nC7{ZRyDL8BE-;d6)@<*DQJh* zV#CI?uu|Ci6HsrPdnlWR?&>s(Cf(QP_Z>etj*yr<#Y0#pI-)6sZ zU}up6czeW~@xWc|)P|f~fc>;f?6)y;w%K686PrUo+}nsXiSNd67}w;>dgzyCMz~>N zw#nhZ&MH;?@TS=;X;ArqOb(N9WHV|rX+YPGD5rf@V|~A>{;oZ_Z~Y6YuKWU;VD@|;L*?vWxOZ zr1)IEEqX4|<+hq`F7ytWPQ_R}bD|eiVud<`VE$K3EU;E4T$c+5JY>9!_^aAkl*XJ7+L}(Xqt0uIy1`*c!SGi`u(syyn8Jt6o z2h^Ep_Iuqs%dTy6tsUd-sp9pj7^DvAPmgHo)b6tn$MzIH*g{lqOV{>X+0FFy z2(~D|;u=f;bnMAd#V-q15;?0xuFvJSs^?N*W~~JMtFTUREq?WTc(nA&8`FYHaZ3m6 zZJ1Nfyzj#3KWqNStSdsRH5a!2K}C-ZRHyc<2XA`azR+INnAt{)3$0S!69jEYokm-MRa&pzQU%q1D{ z$33p?2%vS(edwwjuz_e$S2DQmSCsc_{{`CrBS{g%9?8{q482v{BQ?)DL*KzURHy7< zcZfQ~cm>xgX!hkT9!!JO(&ar@lJjf9s$9G5?~^S*dCghn2gAH9L)ldeRqHJh_FPgd z_Hd9!bsFhcR8JeE$s&io-HJq1Q|M}|4=jBj$j9>yAU>>)j3&|d9byr@!Uj2t`;@=~=S$<&93Fi5 z>in5^JV3I&>!z3yuTrgMV7CZe^dGn1=4h6gAQ~LZo;oD#tWp#J z`uvcJ*e!KnIEEd?)POtY{aT}xe1inuP-gG!Veg&2ukXF1_pU>?^%XZYUq8hvreMt) z$o7Lut9MN;@ds9=cRqkB)$ja|JZKmH6eYUvf@RZyFBo1wdRO@5<}#{Gt?3PH&1E@5 z9XyjRpaY=PvojOg+U(Y|r!Wa~DTN_D(i-ArL{@%e`k^CCbKj#^=7^KRIaB=j6;mMp zv42CT;QKz(BQ~$7cHk9RzV}MI2Z*v4_JHJD8ur2wEdGd(-_k=V1X*m>cPkpWVq=prPaCn6{36WS~>)h*XnusEpY6zoFC5Oz|B*QsYTtB}PWW>l2FH#=80ik*N?7|<mafaM%+G$-t<=&Lzpl<3eit7-g`CegMzC+zx<7WPDxY^NkHic0bidqD z{?}z_Ww6gA=eAG#1UpeqtD*0iXDUAMlLhExQ}eqg&JQ&Y_|~nAL2k6Aejd*YFtRZ~O4nz5?3O=cfcQPMIp9Yc=w)J` z$inJ-Of9XtimfV$=9I>mYjTld+fxK9+j8GqdT9NmI<>8y!kJ`;f8>^akUlSTR@)4~ zTEMww3C(6@9$^*%1G^QJ>$dC^sQ)C+thE_5#dG;y(-XO2dMe*6+rINuuXQyzNLv*y z_8v})E!YWu1Ht97@~reR$b}t>{zFqpn5bjCgC41S+Q7HGBRx;Uk*jolKEg+sE>!-& zsa+ozR!+}=&3U_U%e1x-)uNYvk?iD$94*wz>9S@u2FO?66rM-2bn;Ko3cc?mLuqkK z({3_V=qaUuZv|!eUYOvs{E32aCe~4xJGK`!nnvgUu(L?T!9!E~A$1O3p{FKpz_!$z z)Yytuoz^YN*moJbu6}RN`u`U{0!P?=F=hy1;Ev&1+0l;EEuyd5P7$(djg9g>{all0 zcaScZHM2#ZCa5*0{7f-y$k%#**NfLqud>gfrDiK8;T50R z0cJbfumE5#6~G6vQw^^D8jNWB)qQF9Pe5Z}swr<6EHr^QQ$)ml&c{9T6LAzexP`ki z1M^KL1uPai!gdVgr$j(EG6#5m6-V|M6?S7guh9y~m)kFK&Y!U^=Myon`{*?7>rL*_ z!69aXEl?$QOA%hq6pKG@d>I_=mu;?WYkqI(L1q&%NWZ969{XzoQB0>UJf+|Mwq_vjKb839FPClmd78HHQ~(4)`@UFT z?qQ}^R2H}70WREhHD~86>RKS%rTvOfE~#}bpa8L24Z2MMGGfmo&8XOJY|R2 z_)Q`ZHGCR@>TNh%+`jL_7}>Lr0mw=W@IZ2CFti8kVAm$&Gv;}}u-K-BiLtgb*7^Hx znm>l+d++!Gq&uSet-W{lzV-i=FS=};uPN!rt}ojXBuJRfnJ@58;+V!RtB&iGqhL+M+VU9 z7V2W&cctBf6mic(Ph~Ue88NZX>Xjc2n-b=AnPcVOWX~nJ*uXD&Z+!@ge?c9F;fW3G z&kNn7>guqCg|C#c?vkngAG;9pH(v9HPW0<~UorX1Y7_8ni!mOhk>8^*Q-YPBxW4Q# zxb5Q=L`+qaol>WBO`d%X(Syny@Fq>{jjFB9ES+zc0o|Qd zYVcHc?T-AExvxsk!&;5Z11v!<+geSNMZx^a%s*?AwQ3r2)o}Aa`m$s*MHQ5Z>qAwP3(_Bjj{^>`257<0)#_PdX6+hb4 z>h@L9d{OQB1S;h|@bOzp0Ab3GtzB)edFk4_7^XLMnL3eg7Z2@RDe6oM=S20r@1kqI z_EPF=@OZ_!SRS=tv&+J~&J~B^TB3hn3h3Tn=0v*KIWL~(R_h{von&HP`Ztm)z!Lgk{M*BULBc} zehUH|2Pbk8PLb9_HF#cl23`BAF@9C=@9TX-{~LeEt-02Yk&*ZDp7Rf%r+4asJ%t?G zf!S2FmKD^%tFps(uGI99PPJkOu;G@bckK?CqdFBvWz&L98B1I2&LVXe_Z_#oN&0@& z=Zr8-LHf&rXmOLZ0Aa?ucph(K7kfH4aMfU!^RVoAZZ$MMge*=S#E5rf5w0cXaq zthzAnbew(?8tUl$>|8(z^B=!CFWV~z+M4FQz>uAZZ$T_BQ{QJZH(yIWrWNw-mogFDDk%sH*RSvATMQE$liv(jm*X1qh4gpD(5iwDu#jM)~-u zU(t743JRtlZ)^s&3m$#i9^-CtEsGhZspY$-f=3u)4A^$+Gr#TtLI19))8YS=P?Nu+ zm!7HqIuK9wZEVrEhG%$Pe5=kSJ^(G6iF+NKVq44G4cy9Qz&nc+8`^uIRzDAN=#T7~ z>|=ieJ5hHtDg&Ok@l~6q0e{4LJ}5)&zjk#%}9>)IjBv06cX2YQ{z*#|GKY}oA=$3FoobUsxJVW#tj+fO{)x(Uq zAL034{R)$=>&re9q&zB~_B<7PrjneGz+N z0Dbzr37O$sBC5A#ZF(zDj59gUotaRe)vm(&bW35^p?ts#yibL^)fw2@l@`gaGW)$0 z%%u!Y9Sf%pka~D(gbE|~$fKzHhPyE>1ihsQ)UC9aQ|kbG3ie3dh(@-TuJL}zn-JeL zRh1d!OY#=S`T+pUkN6=FO9Sk9o+@0eY{3lWqA+Jwhe7o!iZQHYFHQU-1_RmS6;UM( z085wZd$Ff-12@-Tr@1%lDUhdr;C_zDTn*qDA2f%!qLTlzukuj~J$sq`2MV&X1HR`h z9$~HrTaWwxfz$~*HS;U&=7GJG9_p-8XKfqSuvC6%B;=%4Te&i&R9ubW_P6)neT=F9 z9`GLZY24>ZVrTGoyq5+Q-*QyP(S2`*olj0|C#q9o(a>%sAKcfy&2bA;+V~CM$KJKp zzy69(Q`Zh%!)`$qzysqAJH}4ffl1vL^t8I^9@ke}aJok6klk6N22X53atDAR1PMlG`&w3`srcX;Ziv-2tgEzTw^}vSG3vzDFo(N# zpZdeQv{9XTBWI|VAM@T>q%4&kNL3X_v<3Y@AF}sga#1Rr24bbnccpY%T9aV?u@aH? zmCXCl`5o(hfn8~FFC4M=4ZW``TWB{KrBFX5AK6wD2eg(jvw`l}XPT21qP{VX<`PF? zZA5kZI%0#gBr4rM%x?-$PJOinlx`HClt{w_Dq}gh6@N3_AH8;>+0L-zLf#XZ18Iz9GhdXx1 z>a^Blsz-Ry=zXO%%NDjk(r)XP-dwV+v7Q}Ob~41#XJrIBwFtAYgl-JCGSWMjZo(z& z08^9lr)h!s2x6&PkFK=X#gXFMyiH}bYIs#T=h-XF`DSW0qJ3_uEpV0CQ49@F(LNQs zEJ%a3FoThDj(um9Vm$X15bL{R^y)B*1UN zjd|124|YBWS9xcRHQOKn_@B^k{TKXhGT&IbrKDUdBf`k_eP4BEh@G|#+l~;YIi5k7;C~e@HW{8nPBo_g9t9IyNlU?6j83shxQA=Un*;BD0q{4yK>_hKQ?y@ks1!fW zSikSeVoyY!@T=m03QuHtIaQga?%WYuyfWJiK)4JE@2pZ!P;`hU6)g1)HmUItP*v2^ z8F%G1#_xLkDJ}r?Pifaz7JKH2?deo$OSbreWO_{ld!QMt=f;}?CDFUHNXe7^0f-6@ z>5N$V@@$XJPSRpi0AASMPXFU_R~en_*XV|NNcYtDZLLoHzJuKX2QM}R+(lt(XOi2u zNwL%iR1purPRF$M5nvi~aS7YF% zol{=bKPMfszU+y2<4_7+|mT3cJhA0tDWRVK_fPDt2Uq;OiUUFNYfo;9PYQpf5KuH{6zoP$IP z;-=KxWMS{?NA=f_s@nW9&DHXl_!!EYVBHhFclGq>Yx}16^}lWSn`qS#-Dx*p{pby0 zp7>82!uPqLI-hdvyS|<1DftZ8*(Z{Otj;)mTxSl&k1Zm&CrxfpvBxVR7v}(x!jGVR zn`Woq(0h09>u-wRF?#pl8~%QE4|o0*G#2?keWYitZt+p8jADpe1DGe|(3uEUjgvD3 zhf~q68&}X<)ON^G{>Ar95`Lfh55>Omt1w8H^KKW&Zc zt6%plaXzFDs={bknFF{Jol!fi_1QG3OtE&wd0jUD%~xj&o=ey8T;a;B)wb4rOKZIb zr8@(Wi<63;xetbLE&ggu3mg?KO6qNBi{6X=-y_Z&4z_tQ8yL`PHKnD1ci)s>U?>Vt zr7aBDIIqxcdg4Z1o;~Ftm@5^WaBOdb<5&AZ+}aIEZ^^ckH*8a@^Hbo7%R@*9r)XH; zw`-!d?@T1<5L28PG&g3x@t}fsp|a`?DO|TC$M}}}FbzKCfn8WXby=%Hm*fLFbZNiO zGQF?wiIF}+!(VaCfvDa)1~9n5Nn{TFC_5yhruUAUY|&%SQur6e>M){a3-+wuyK0&O zAN_k_Zq6ep-WSX#=6@ZwbStYNeOd&&LZUJ;d#aI;6@ON(s#7$p9G$8K#S2>06ns;T zYxcVb-}J}4_BQ_rAE)}Bf5nDnZhWLItZtD5t4voO(v}*eJwzPpfi{Ot;1&XRCCFyG zs@bAMah6*Jd$1NhTqtcG`qv%NspDRdt%bc+&DJAIb!&Bfh7@offt*WE@WOd8NZ3oHF@?I?v@@{w&=SFxivMEwmiXN4?pxNrCsM$(wIff zCQ;>et8+;pvGyK3G>)}f6A4e-H6M_lBTpEhbU=P(-urf#%6UIbDP`}Yb3vZTPA!9a zX~aijUp zjQ?LUq5cW3;#xZvM!tt-du+hB01m6Fa!*yyTg~OBRx1JXmr7gfeBh+}DnE3{0I*i5 zRd+SGI+N(grUeu)76ElG?A!2Q>fLG!^RXagPuvHPvl(jc_Cj9hI%48_!@m#s1#~4 zbzZOSJM)iPEs1dG((PKoq7EcOErBUEsm`F>vzftF>GsGF`GHU1h&^C%ir;aUhEIXd zdTeJkTInp?F?)RTT3`L{-Z%VzG7!Z#|6#eSjGWi~&@+>_@l;FqoT^IwYKW`K->h0d z3009+>y_kE*-g(0q{;Rq^dXe0{Z_bvYY~c6RcV8~O{Q~C*Qv@oIVxSzt)?owhIGHF z)+UVfq&j0gu={jMV|^|jg#;@T-^*ElluX|Uxv>VRG539w{&$?Qg&oByDX z+p?mx9m=4e4Ecm!VelAw@1Fmef@AL+24zQTeRZy&bm7aFcTCLYKrG~%08o7nYpAhZ zKuYTuA$2b8Lmi>1yCtCABT8!-K1>0MJ&!9bHnF0#Io?KXZJI5$Z_Yd_9nGzV3enLb z>jS8Njr%VrYQ(luVa?bsAi;ji4@mEk&03(ac8L{CYxW6mbM#jNt7AHF^S zOPysKxraaJz~Sb1)34i;S`3lCf8e)@{qQWL_LRhg-*aFy1>1nT4A{<HU4X?mD#0X*@YRqAhqNyYo=(~_$x%nP71*r{hd zIsWtbM2tnnG7C4XXbU4O&Z)UL{Q)~)QPNg8yF zcBUJ40SoiE64>;+_8@-au?Ii=D+C$;9yPd`Ty4itiBqqxBLobGoaa8&QX|`myRE>D ziIoiQTuCZ*IuU1n7-`F1?rHvc*l2a4YU*pRO8hx$0Y#N%Vs>Yh!YJ`|Ft8t72x=SF zYCwnPD)jhxRbMUAZ3_vkEJK*L4J=n%d}bw^=SwEM)nLi`=|DI9F(fV?xq>zf9Utu} z`86-g(D@h=<)4}FEK=jFwpapA_^J!!F>!KX1=y|S-OaKLske|o%kpFEPpqyXWoJA+ zsUw%OeKERF2wU0n!nII`)9IJ zz2osSR<@Yl`AF3+-PE2+5bP_srpbjg7woCNZB{J|1*{0DGl^<=#5j&SASyf*uotEq zF7TsJj}25_wLoI85^B7SCg@>qs8Jr3w&hj>*PBS0PQebYvyFkip2%Ago7VDk1Bvnw z^v)`Ub!ksguE{EX3tOXdebcFAx5hYDu&@PWxeoTRQrXIPMsIP?D|O;dL({Am|ul79GyLK$h#=MUO`ob7q0d~n}N1W}wbMk`#zxEHy#Q#T2 zLvDN|QZ~0hW19@*t=^K}ajLGWhi_AqqNe_bY1EdY1@pQL?6Fs#nBH0S`3Lg~qj@J2 zQ0Y#gMfKz-@r56y^JX?Otf&xUbt>Px%hrxwgE-_+j z5XYyGy=um`t>KnjdL+LxfBLhm_!?T|y4m~*xb&k3hQ$oS`Ob6f1ZBmoU6MKs(m?e6 z4eXWQ(cW35DBTH3SGz&YZ#w(%EA|<+ z$yn;9leXoz2#!m`7e}IJCbX3}n3pXuRjYKl&J?hxl;|NYwbtP;aIN?`ArNj9z-ElPt8)b`Sw7G9TmihB*QtP4?G}o|RXReBX;rbFO|72)9fZ>! z^v)jcJEnv_?sb#daZi=?zF%SId7^u9a6!D`)FMzyu)2pg>U4R_>&_|#-o!qI@DWEi zxTbB_&ucv6GSGR|WElW+Ups|?{0wsS6wmuFIB?}j2}QS>F4W*cVx(LvIOQQDAKER; zOSUQS0A=W!`UTXiTV)rvW3zQVF}N$kW*|HC6Fe{YUK=o$(CxV*cE@8qg$_Zg8NG=b zLr?f0w;C-@9Mp>KYYEr9 zmDJZuJlw4AS;M-ZneRIcmHb6?zStg8d|Z$ORWi0}ltDRHl=XepQ8T1Y zsf_tR2~}B>wa_r9B3yo!D#V|M6yGCyn6H$?cfHW&*BrBMuOX>VEiu*5EK&D( z2&5VVtGW%JmOl{rOlqEv1aPGe%<)1HfEoRQP6^@=(lllT4ap`ydgA<$*vPF-RdOo{ znO+xKo=Ie4PY-4rFq%KH`J4lhK5tRErP9Dh?jMGm$^x(gm~QjGv^J&;-IUS0-oR19 zFKAe=w0j7KTZ<5P38j9h_$HQkad^CfSa>|vJ(kf`1lXNT3ZlS6$8m-SZr27FKY=~I zN^S~ibQ`*F)%_v& zL*6vZpU{<$e$Do`T)u$D{zQkD9fC#d#~!~H*1U3gqgaf9R<6;rrxXKoDFQm;L2^)? zsfpc{Zd`*OV~;iW%&ab3aLz>R|8alk9?Hxni_gh z`bU=X<`uk-{wZdy^z7f44QFz0rw*Eb(UUag?CwEMG4`RY%lw+33NuOnDfjHc(wX1V zil}Y>z9Pc|=m}%gl`r})r|$n5aEkl<@35qCb49moZ~4FuIOa93Vl5}U14%KD3y84F z5cbPT%n+LWrR${!oV9(NWw*GmD!H~0J#-kZ*oRbaQ?fDeMtv^-ZhN6v1>Un5IjGMF zG1SOBg^&E2YRsZ$d#G{@^(*t;>SkMC4|7 znHP&XZ7^m}DF=2Iecvx$H#Q8_=v4`_b|Z0!Lo(=QpJ)pf8fBTusZ&jC8DE?L0%s5* z;@A&xZKd?{jRq1d7J|!6(vr;jmD;w2sf zl`jh~jw@Q#WwN6D(U|XSQqo5{G8q0BEnNJ~m05cEYJ)sj?R?4XGB*1e%A0*>z26*Q zYyQjGfeWjtl)Mq?5Qb4t7%vra-lf-ocMeboHQKBWJR0G)G^;6;X}IsW3kpehMw-%a;x2^5^vG0 zSiz3!`I`16EoyIp@mG(&q4%!d-#2*Y6wOyWkdwWu|93sBJ&zo(wPPq&$EvIAC>P@Z zkEE|(V}!&MWn*AbmsQBuwEq_nOG2Ej`b10YI4y8bE^YO$49x)oxMQn<#+7Q(%EKk& zy|YNUui83z(EYa!J9r4CM{6+%Yw^s&MOeLUcK)IFiyq7Wd6qcPY6dCBmB)KeklTkRi(4QR93FZY{}_S#};$nf;Y?ghKmlGFsl;{fFCp0aiEXT&~V6>Qs<`BRgY`+*R)^2p~b6Y z@Xtu^&BUj!4iSgkQ*v8AX6na97$4|kq3=q227hMCrvOOz;%hFnY%6DNA9nRI*2WH* z4(qvz>G=6zsr}Hxf{dDSea^3xZ~LB0pS=zHE)HNa3|k@;!xLW9t`P~1S%3>=6%Xre zvCGw#u3X9HnS3&n613WOV`r4@`}gftoFW*?J@2ZjFx%Nii3f8@gxHDf`!&SXb%v-z z+C#>*&$TfNaGBox({>8HVo&!}X)F6R8&vTSfmBbb`Q{c8o;d#;%MOmxWEi)|#_HPk zWk)sW8`OPG`x5uGUozg0G_C&&=l7e#PuTzO6Td-68oV9DFYKGpy#)c};{xi?*L}HX zn#=oKpa6(```0p9mh|UJeryej4}-KNb@C>;OTTrO7@#suU|(|l(ZdEt?f8EP_w0gXgc zo!5Aon%R`u(sepl5E7lmx&1{6=X`%S9O4n;uVt=OTbCgupB71UE}a8MSZ+wiK+2iS zKzMc~^h!N(Z&pZj5pUzz{pv+#88@fugz|HuKpnPEuyf%C+H?_vMGps#4(uJ)!d zjcoxj=AA_fTV)41V7KV8R0s2MAqwWqBZ|hTE007kGz_>fI8ez0nzCDqH86@j+jj>b zHQUJ0xm{SjIsnGHJ_F&u09*!rF;bmfyl$}B4qzkozNPmYdcR?+^&L|#ALlBrwPPnd z1tVOL0AU9NRqM3?#l9lrO=)YcO>a}vX{zn1LX}V}TlCeG+*3+xQ5|-)@K2v&sKcV- zb}gi|utZSjQa;toa#fE^B1k=dZFm=XUlz~`ct+D)aGQ4ZWqRQA0gH!?n%XNu`LEC(vdyz$rjMY`2VLR z06yXMd?Jr=W;I%+2|d!J&VR^t6en_EvlV-axu#cN(H3}BLauXVCG5)%Zn%!GVCgkN z6m1QSwE$Pf5=q@@Q?a18{PCG1m^icpId5(WCpNRI-2_82A)4orv3z1 zxYmxfF-&njls2g4nj>6=t=5q3AN?{9{ON01?NAcmY|n^ORXaGHlQOZ zjsL1dP_sIHyo-A`-|{kCujb5202_>bbAQHMf+59+*}fnM!)VT|qp)J;u!^Ny~<_2lSOZBXH5 z!HJ>1Is=B~OqIS-A#6Uzd}7wKO%i8WpcnU#%GudgKRHSeixQ&xx_k zZRl-kv@ScV@;%Z!s}x>WYlu|npwsw7PlhLU++C>{FIz})VtK=Lt0D0O9Hu4xCOghO zIg!WW4Xu?pjhR7K>L)hWg#;HeiRx3y>6yO+jc`jnd2>qrYyi?S-e|{!_;>Wa;dM;y z&(MtM{0ghX3E`)=Y8dc9sQeo4M*E&Rfu*ylWl!F~Q)zQ$ZJ!e3i1lB?v8V&9s;f7_ zaIH>UuyIzmfTF}Aq|Oz7;ugA8OkxNulbn>WtRoIIQK&hwlBicKQzA!%F6xh_NUD}$%$_(6+G|I~| zw+6lhQN zfw&bL(JW{1kh^6B(vG?DYi`==Z~5H{riR)HHQv>$>NTfJoLa3;%;L)ITPrWyOt4^u zCw;LrskQ^&;9Io~a*8dj9W}#O3F3-2D@;w!T1YWt=_s8`@W?d;Wmu&V9Vmq!obi_1 zrO(%x797M_b~xU)tXcb@uA5B*zn@iUYHl?xim5%fRxr!S@YKl5pSl45)SNVsD&Hf$ zvr4hHN_O7J^=l{;H5i(X7D~6MlZosC|Zg|9$Z8wc&0sUaq(2wKE55D5O#`}?@kTo)ME~=GeoyQn-Sxx2cZ%oVlDM5um=MyICWW5b z`vpZ7#3&BJGqkV}oG%b17t6pcTl576914Il;ukxjtt?BbhsJZdFw_1hDU{QkxMEb+T9zZ;FMI93$anZ)&>ON;2UK}|jRlwI=vabUA; z!NFpstMW6BI`J9aPsb!qzFK;=TTNkjllQg@J^BDh(h>4;BR{x6Hk-`~8Yo%$De#>| zN`CZ_;!+(=gg!DP_CQ3cI;<)oQnkq7uX11cYG!^6;VHKzP*$1#=WJJ+Qg6%*&Wg7S z=F(HLyi>)XeUd-aI(}Q?@5=P)F(=$=-F|x0HWP1W4mn8XV28H*`WpFpBJ)+ zb~LnyM2K$K6{sxpa+U4QD#b!7KTvx-VrzUJ`){MwcVBfaj09N012-?3&)XyxJ)Rq4 z(_oBeRmR?1Etu(9X-I2uv;1+-&euwDnrd!L*-$_~liKqh8_0n;bbYjBN9v*NfRq*` z*j<3b^p#)8Z>Q23w?ww|1MyW=v7Q{+Yq&)pkj)JC+P4e+lv@yTHLNY5xMnM{sebB| zJ!X*8zGd#x&Qa#GTz#Kty574--~0&m9W_ODl`Z=Iwn}TWSL)=d!YeYX`LSGL#ufi* zwp*^f-#ZI%TIytEK&qtnKkb$?xDk4PZ0aEbCzBhYa%yjP)Nvr zc^U2Hz{C3m2oZJ&O4J|l|JGp@4@@I3=NXN2t&a1RjqOy|$7OCZ?KN9k={0Sga$IG7 zvvwrbZe{h#;Q~JBCx<(WzU#rh?OPP zwLS1-XQ`qi`uGr)zZTE3mHlpJP?k67&ZNAy^GT71mJVM>kv)B1+0cOzHl_uQDilv> zs|exymHw8eq7%QZhx{$T2!3uY)Ief5?+Nv7Sb)EIs^y)%Zy8kox?0&x^v(DNk_a4P z1-*724y!XM8tAiPk(zV#Kwy-_>Ri!O?^`Br`OMXLNQ$WM24aaK>&CV~BA+6e?krO2 z>7O-*W^`Zpp2+fciFUqhpT@M1@SoE0_*qiWJ&_xF(-+=;d+B;^wG6Sf!Wj2y#E#Vz zwS^U>Zz_F%Zj=No9FR5TBh)*KRFmBmsLFPJG1UoE6OOd*saB;i8z`{V%KNexQ+93k zm23xo2`mh$&qk+C?%K>YL9|{hShebmYW;^!K)5ujp+k!@d*pf903`N)P47S6d!qN% zy|3#1n%>|3Kh&SZd(59;5R2mLB8In1zi77+%be?slW4eD?O<+15jQ@+}gd8*}B z5Q3ZxD_HY?aj*d%e5Cw>^GphzwmdQ1zP7Nl+<*F%NR5YBj*n6IKNZBA|A7#A-qriM z2bl2R_Vm(^`eb`%m0UK zBfg(^busngQu9-Y*#&2;A={FhsG-vq zbX!1fS6ajYXZaWD3+)obS~4p~dI|iUuo1jpyB_Py#?D}^`C_3JPGuIa@e|FU{;T+y z;_Lk626Vpn8;>Q39~4@h`O|*w14Hn;w>AfV#ZAb+W-9c)j|il_1=fp9+Onl$%ih90 z!;V${VccRgsBlv`Y8SQHC6r%_-dUvR?=`}y8KqY+W+zv9r)$N=wyn{CRtBnz)ck7? zVZl3IfcfNqpTv%rd9|6)_U#tII`8nLU|-L5MQbCbTU6?HQ=`GjvsV!=k=u6Q9c;~M ze--dlYe2nN`h$8^!K#ZItqjV$WOv$>BJBVNvJYG28g9T2m1rTSeh=@N6g=#^ ztUi&-?+XIfacRk3$bUM6hv4m>%jEwaS6|nW1^l1ze}`H|9g>c#?bs(nk6*I~#&PBZ zF;o+~1k?DGZUgi()H_$6s%77Fu1m7xM5t>Ry+*%WfQ~|!`*7z{O7RgiM`46Zn-C8i z3n${9c5HwrVVeubmI2M%B$hpv8?q%*2}f`*b;dXR5Jrc|DR<3{>=<{|^TfXH|IGYbdf(LhdpZT%cMbl3Mf=2W zFHLW!a6CDsBMxQkh5GQiX8Vwe6V-gSqW^8x>qfG1#QS_{@C{33?*Bgl5fuMN9)8nD zw!~lk|AQVW{x>%iul&c~{f*!JE${dZ;oaZ(uCM*(-}sH+`m3(EcYN*t%D4R8>D|BK zUBBweuYJci|0jQy4dIDj_rzEI8vCpN&R_jif9sWB`8{>zYu^38`mSHaxw!Hxzgt&! z{?4y`=l|kiB>ipgddJtj>l=R+Fw$3k<^RE53Gez1@A~F<{i?5j$8Y$icU}3F|Cq1% zZ+zD~zWH5W_v_xh^R93D=6CG;-M@-U;7CFNFb;xH;+0?de_F2Cul?G0ebYDn-bVW; z_sXw+$2WcRum8q(|1WSb)bDMme@0ySmH$@)|22nSYrp!}?LBD_qYL7`KfS|!KBxYn5np37^xR=IoM==6t)@puT=o}a=GX)d1mzHrAHE63XTE5Fc znP!)mFqy#kWCFK51_vaKP3W#`*6eZy2n`wVj3XhS@Q_eibauD+J}V8`x#)~h;EW6i zUP_XV?Q(%RAcpzNMl(c{Zvt^-E-Jy32NkSE>2@X8+2>5^eC@x2&Y$}|D(^EO%Yb?V_L@7}D8! zofsp}gXaK&5tnv%7ECU*Q2AOeUE-Wu(#b~+q&!9Ac5_P@9Isgr-X@`#H-L^=8DKZJ zBm>IVaw(Lw;HARkEd*szTeF*6k{grBdoGygMAB;rhFhO_77|Ei5q=xFxQ0wX!CRp`PeOo; z$uUq_z_e@r8E6r#jZ7E{z!bBQa97QCrvQa4ljj(uHyp@l0FKtvb;)lqEp;aCdE!wjY<1!S^@ zQwlCA<^v>~2$|RwIy2Ci$p_AaNo2!I*Gkew(jS-yrcg$TOu}#>jA2qn1=4%#M9M-T zLUuuDW2{Of3NB!E#25x!oKRvg|Zk@`9mI0j%S9ejp3OrO1RN znMy9mq%C;Okr|eSk)$&bL+weD2H}B8>rkZ}E5J;EQhTS6M-8AjBja*{Tx5z#f)3y# z8U_@RLf$70nKWoHUOMTcgqRW`msy|?n8|~pBoi9a0=N{;iI4?KWSJZ(vXRLE(Ss1& z3a4_sn01$2YR8v)sYWds3ZG7bc{E@+u!G&+-w+REge6@wvT;!6um_gG@jwU{W%vL?AucASuVBbS9Hzj1V}Ni~}k~ z$wG-bS8`;kwu}rNFaQ&5X|m4 z5Kys9))~Wu0%Qrm7=tmXT}3+Y3Qz(vk>@fn#}xwt6w$J%b~%@_@f8;=lMqoj#~dli z!CE42(r(kzLdi_l`d|W?m;?cnK$vo@fvHTWgH?wcN#Eg{;Eo-a|F!1=3au$qaM2n| zG7$psL}(rD&VsbGkunqGCJ3KU*`&c6PLynpjTDq!FeVvm1p7f2QcxS~4T2V#j3k9F zNYE01d50uo7N|L7(q3s7nG7ZvNYOiBV}WQelNN!5je#>8L2*k;uq=>3WJ2;OM3O;( z1|=(rF~_7NX0lpPlt~NW89)Hi5wC;FyOL?cGkF8t0w$8ifDN3CYa^(T4Efl}mqNj; z36LBJ6J6kqkc>2DQjy3gCzAvLhP(x(cbhuxIgAN+xisTlDU=eK z0A5lSDHl=%u*y0=~_3yCc)l8+pH z^ktgD*=ScM1eCGm^IZfkRl${Sb)+xlS?s#1RR_ruq=^slm!@$nL_m3 zrij}61j>67(q|5YV`qg!udI?OSa3o)2DTB3fzD(Jv=1^E0}dqDR*=v9&RS=3;FI>+ zF~t=a?yYl>g)&TMGJ(i~v7AK%ptUoRu1m_kmP}-dJXyoNk^m7H*Vb~#LIdzjk&q>a z!3CERiQFe7@Z4IXdFC3G$poZZblbUDZfeU7Y zMur5D1$#*Lau3+bJ=6R+4G~5tED^8Ai|!$QYf4P?}}(PJ16c z3NIXJYtWI)yi&R$fMYlWNofw!i$&aE;lqM8wv zl^}9YQL4;A=O@yJBsKFK4Tor*<6*^z8PE$yJ`*`%QAurl01{{!UC#^*5@zy(8I>G2 zq$LE!$uW^RAX6-pvX(R{57u#D$v$^3{VjeP0`FP#|5`6b1SuF260~lTroA*vPm1) z(v}%;-@>KFvdqzPYwByJPWw!MfB(1V#dE)U?sK2db*^)E&??+s|Hb>YBv~ROGwHz!Iax(`|EptrSphA5rXp<|O}Y>lbc?3$ z+n^pjpB?Ie5xXl-HovCC+y)S*&>jBs@p=dAOlYxLlYG`R38QHd+gQ-P2N?C`VNzQA z53(TE&<6e6alrm0bjYK8aQt2G$6^yXs#TyFQGs9c%=syGLo@CKC=*+RN}lfU9pf$@Yz9}CQQf4Tm9)}VB_P7 zwDyr(O13d?1WXwI?W%Yp7hi_Gz^sgu)3E2TB!QEBLXE8?PD>$jIddbdps})~tydyB z$Z*-r1|uGgH*p-eeh7dz8~xBuO)Jo@kbN1+y{O#p~;D)m=c|orM0j1n-UZIWZq--1~TCa z;j0el&FJ@mp2D^4Lh(4fS!SeU-Tw*^YqE(ohtBgOz6LzpC~l7~K|boXo-lr;P#k6T zVf4peyHNY(Kbf8Hs-XpOsD4c_pR-@=a$D$apmvHqnXYnD6`;}XJ{@8m7P;9QmFrr# zreIR+FSFpUQuF44 z=VWiF0JOzMQDX&-vZ{1>Wrc?&z_j3>7Ho{oH%-0mRk_l)Bid3)Iw3=SE8NY%J7m*L zdUE(l(2QcjFxf*sob6KcGRdHM!d00flPyYc4Kj(_Jso{Lu|6JJ+%ujjy=`twk$;r# zf|aWxx$3|;q%xIfu0hGBn^;$zIp8{EGOGs~DHlj^wZQ)a* z*V6F5Ep7@$g&h2oYNP!5;l8Y}aiVZQ2A6W7 z5{1$QzskhD* zP&a5JvtX;_=Z0gSt-shdnGHQF%KpVmdxT)%<~4-|>W%rN*GCAu(^6_fWj7ao16!_gtQ? zk?SZ8Jq{vvF|moV{`WZua@pO9H!n-xZ_l+It&NGiHCNqWbj+XD5QgWT?Wel5qf}#S zJxW1)qB814tR}zf!)?s<b{2-cqi>*v9lGU-j z*I6j?aiKn%@kNoFA_O*BkXko(%>n=3wt#D0b=*&SQ?^oiE4!f_-LpFF1Li%0x%yFP z@n@a@n5bi`7oh$eA0Cu=Gk-}=0bE$#<2*L3IMo8rm?_ApumN|k!OrKD6Z?x2zQoig zmDxW-49Hf%Ebj0<)!b2pjCE94#D2?@NxfUA{=&<*BgHj+cA-suR9<12YR~deLUfCI zd~H#z6yD2@O2Y?w#8t&V`9APceyy6W9iG8{ZoDhvb}7C47X8S~zN*OS>(R7maeiEQ zc9gjrOi=sv?iHzg^Yo-wL-LwV`r&P?yBc?S<|IG$#O#~HkoCyV_hH%>w)|b>9@l3Dyn!{yEWIM zQ8MKgdyP;C8CTcxxPRfb)r9)QV#Wr87H`i<6@#>nEqpm?oABoN&r$3m3{+gZt8CA+ z3^I$@xE$q&nGtkR944~4qKA7CeJ3s?-R|=CjyL)gLf-&!A7`^(Zx?s97DSC@qP2z* zseo76^?n8Z2yu@GlvJ=4)v2m_!j3!MrBZ#8QTBeMlAg~XO8)sJly=S#S7=g3i9C&L z725FnNt1!-Mg&WVb7%Zg!J8&S5N6AD1?H zP`QUS+;~K)VIT(8=jsisjY4t_qw(?)xbvm);T_$vQQ%al5vjCb?;QgCsCfPPMZgS? z!g*VJ7??RLRCQP*nR?SW#YCH*?@nfhF>9E36z1Pmb_cLg=t;1p;KUo7IOUaEe}}gG zdq2X)Iz1e|aWf^Q@>BML{Ru)Rsxenr{(A4^nyxW~MIix~&^F$~a<27s*Roj$iGA#j zdE;YKV>S~LIbm`Zn(fw~(w#TCeh4%T)I?h+X=Ecst{^hQ1v-73G%Y?VJC1%xO>Iz5 z&Ne}h_7}`oh9p`S{h9eN zSo?yHJ&fF_VmdYtU>leG=?^p1({DMR>#4x4*i(lc)D57yr2GXncmC_3!%Am%B@CS4 zlF@q@?q>kb+OS)#A;-VG-(S@}F(zzB&+JFRmQIP#Nm<5%;=M+0GP?7s$V!tm($%mQ zvO*!8LHTrs{PYy31a}{YtGV(@V~-| z_Zgc2p`9>5b%GX`AtzU^E@^!$h{+9EN+cvDE;Xb)2VMvt_!g!_W?d&?&=wCrP#1z6 zJWn6~3BVGzmsUDviBARcdvm|vRuQ5$g{JckRI9Q(4OvF7A~eBk0F|f%0HJH5MGM+l z2%b4pN+*Q1O=#>Er>q5W!K3i- z!uvgdlnH;O4QP4)-ANCs%sVN!c5V3y+7?r(dTlt+2AG-Mh?@>s7}oC2U2Hi?*#Y5z zj8Bd!9?3ul-&Cs34SM>FC>a^e+z^;q5VYo(BYKs{WY8PIbk|x6d*`ouBkJ@F9Msy+ zTWRHGB`yE0ykgH2DE9P($P`oMN05O9qDA}4+DHtzWZtyYPQ`xebYX-hUe=0_D|^b! z!kY&k;>gAvBDq*sG4h!bJd93^zypdj9zMM<%1}Zxrq>?2SoGO$0ju3@@Wx0EAr6&8 zsVk3?>+Q6pS42KryE=9Hh?+?;;D1eA#H>SNV4J6e@W{>wvQjQ;fr&1rI&TC(3Bq)T z|E}807i8{0rJAWGkD{)F@haAmfEbeL|KN+dW<%+iPPyVF74M6QxgiSY?}E*2Ua#x6 z_0@JEv2SEc)e}yx-LDyKkN!0YyX$zB%|_F7+y69kwx^dA$EZ>>w8}gge)@}=8teHb zR*H`g*V5Pc@h-~4n9_DgxOvMeBl_OZpxC&TZwQ{E*(Vu>66KAx$ON9Dj4sZk_YF0~ zEQ;Xv+pM;h)KdjC&7dPqne!lykwuLrpvGy#O&=9(a4~g@b@*w%Ve~GjcLhbes>>^k zF_#mbU1%}vEKP~C;Q#?ZCGYJGjStZst$<;G1S1nW@t=8gEA-7J8GNOO3^ip)2%(bU znWP_UZC9mOI)BSAZq@ZLf{g%8cIc4P5%VGfe*#J$qAmxWOKdcWHeJQk59?Cf^CkCQ-{F^o- z?t)!1vqbL%qhNlDhidlIg)!;ho``H`;=R2X`Van;Dc75IQpnP+@;@X8uV8#iAdNY#TFs6Gja1t@ZA*e`JxFC(LPxC~{jWeS z8*QXtgMe=e)0uW8kTDS18tXO7F7nb#6@3@A&OAt^yr3ym+dsK^KVto8a2Wb*t<=H9XG^dP zfK23HDlM5O__9j-e|d8mNR|$-xO>RNLL=5hO-+o|=sTVdfYRN@@yX$Yt`=7VNk@_r zSEC&Mm(frP2S8B6M~MZUmF|#bV%g_}-$^2rZ$tGZZ}V2RDV7GQ%89VGLr-X{YU8*v z9SZo?9`9)!e?t31mV+C5lata}SwwxJqsis2B>#Xd|RkyP>ia%Td)5YNBPs4 ze2vC}fmgfNa$z((_Nf0g-L^LTSLr-shGmHLVN;OF z6W6pRMR44=x_jXa22^O^_NYY$Yw?4u@i9hWu2o`bhoV8~v2N#?WlI7x5O(Uq&_d33*%ctT70wCd^jycOM#X zq-vD(v1}<)QhaQBH^nRxi&FTai5yXnKR+Ndv9Y&3`B9fu zYn!FH+1K``erdpI{HiJpxBxh*ggIhj_Uc-GZBm;lKW1E?M@fF4cK7?6zdCk*NAY_F zSOb;x)!F}?whYaFmbZZHy&LF}|KG#NwK5iklf+#j{Gr`<#;-o4Ax2ul3Rf3RTyFd-h-nz6lirs5@Y8UWFaFDsl zZ~W{lmPudH8mi?Z&(PdWTjl3wngjkTq*HD_&)>2(NjAs8hqszy#BzZ5Mwrbs+bE1p z7BkInrWw<@YLu8{6M?a*+9Yzq?_lI^wJR_K6pN)d*G=Vgyi1RMTMEpPgMm-T9s9Ry zu<5fTNq&7g%JN{0&jMl0-hRCf7k#%=-8yezr_j18L}1BDk!kHZAfq*lDvK9xY2`Mg z8UUI>m^+0w(b;=WPudX;NG-RB`Sk2qgQg!AHR~r!0XWB)w@Nj!SqwZHqA?S3;zy&_ zecg@Q>Vx2$EpT#%q8+L={p1@AK=&v#D6z7-6HYP}wYYfEiuJ15dNhfYJV}*qxNZ6p z%n*J59+YT&HhYdv2T9Da_g^6ZzwRyl`fGIqHnTT0_AQ7;8yAOaR!j9wR`5@2ouV&i z6}6x~#G=Mu-f2Buh;%$u#{^%?rT|a^#or5T-#mz(lg}+AM}!sM9et*&lN4Fs!3g1< z7lD!z!#YsHNGT`Bse)m=Q#*i!WtZ1HL-0?A6{kZm+Fu&13Kt^ObY3mK)KW8QhGk~V z+7UOWWus50)OK`v58fQk~WJUIMU6!i01s3=Z`ERx?%FJjjfTA@L2#D zT`nn@j2~%_At9^(MsY$Y%wR>A`8wJ9rWu^f6 zL7^MNeRINe!7@EsB?Bb$ybwV!UUujV6JTRH)RfFgAcNaFF|IXHyVaijCQ#1tbX2M=`;HPEkP+E$I+g6S|)bYCtQ zm=ob?PA_D_N;nN6a3IRNb1hjRf_nO8rrcC^hA7Ptu}pa7h@Messl9f8263hY*I?7b zvtiLLJk8e?4gQ1fP}^;3wy8WdVxH4^AM#Z`Q)N+0B}c(uruoB@-({acK*R579ui^OJ1g8^?ZdD)Q8i|BddYLGQp zzDi)(NVKK$lz-qWMnFeoVS|Bv2fNgE_g(0Gx$T1NC@4K^LFzIoYQel)eK-K;73il> zO;95JPcD~;)9tZd3I>q2eYxWkcsZh7veyu_&?7-DMoHTBHLcLISJSAuLf_G4c`VH6 zl=8}($bX4;xlu7f-W=5RmIb1*t}IRyCp+$XKFr7HOw>L-3oaq-5~v_P|-mz=Lx{9>Viv9HuYJ$)k5U?1-1FYfg z@P8Wk0vOXk*AXz<4gJHZ3u3Pn+f{Exm%7RO-eqfLPQ0vNSF*s~%I)F0uCNHLpe^>C zV`XF$#T=oH9S^ut=>lHg|Kp6>6Wp?Tae?$dQG|&-@Tf;CGTGy(**h8Ak4K}!Q!$>- z=tqVZy2GUGZ;m9WLC!n>by@2L94+Olr;dOvIjH!lm>swY;He5QHc~05;hXiHD^(n6 zO;blz!UvOq@>o)ytDR_jK-tbaX=Rb_s#UyD0|g@9d5_|M8<{+4jZ9Z<(=tJKVh3p9 z({J}OOhWFc-~D)Tz*B|7g7@ANyI(glq^SxQkhKqoE;9xYuk0(^TZalvcUKT{BhXpQ zEs{;w+7tU7gyL7kJgk};QThuf#fPg=Sj4RL*deGGiGdw==gke0SecauWo|qE-(ul1 z-X<{OHs$`sPh6lt0v2P3Ov5wDosz(e%cI@i0x~9MLgre;t|>QVGHK(y^a+e?MVMmT zm5`n-ysHvi#7(|`t07!t8WBmrt4vsr933F`!wbfq?Vvtvjt^?bXUWR>P!s)O-@pIQ z{Gw&Q{fvr5k2<*sowYg{u)+v#j&`zi_Ex;P)-FR;cp!@lYyEJ)t!3JIb8~?0bw}oi zT<)+zwybrK)~3kKQBT=EH}Uw$axRk)~?C zkU6t@!ERVZujGXex8H`~O9+xBKRcW@J&XV6`+s%ICus_n{Ru(T4=8gr`_X4!CUA|haeA&jDYlhs}JiTh6-CW_Z zj0J3-gxrEW;f2spJ!O^1D^JcT{)P%q2kmX_5>KrW^-M2mBm^GK`b;bn+`N z=uZohc4tPc&&BDdjfq#1?cxlozz*mQ7r)v}_r#wRVr#pm)-w`(t2*TA!Kz%S5A^Ju zaaH8aIX0nCK^mnv0nt~yJQr?x7mcllGLseRXv(_|bhRujMqzJ6n@RTziHkad zldd(Cxmpu&HhJ0qj?)FOhS6cA_n$k}y9*Q_JNUY;3M*@%jU3RB)!^FZY$A%#wN_He z!eM`nJTISWIE|^=jJo!9p%?~-UZ(|SebIFn_6WS@(8EIe`b+-uV(=JqS}FAy#wC;xRD zC1MdD)p3}>xFv0}t{4AGt^lcq2N^@85mHP}pQ(+Ho1ljolA_t{qoM$UZqjyj%h1#8 zreeX1wPIKp966xO_46d`2ZBZ(?DKq?|nViHXv?bE)*nv4BuuBcJUU@ zmf7-Ed-Q>5Rm^xuqQpe)spuizoDT^*{(Z35`7ZeAOzWp^PuK*D4cwpom9t!sD}TFx z8m@PwdX@X9iv6a4T?!kA{hXoy;qaaMYB!K^Bme@`-LnptPAZ$|7l9Zfib!0pQkWY5 z{;isuxlR!+RT~Wz(w7Q?`wJ`evDsL7FCjDgwel%l40!6{^D{x*-br*>N~sIHMwO>3 z$veIua$JBF(zjNc3Kj@MWXy1^+)t>PJ>}KYWbLa=1vHTa6ZFp!fl&mkoM{29jIWQN z-gx-pxPf&f8*>wy4~=S$B(Zb+DTOd@C)ny5|NwtWRuMVhb@7g8RZ{@%GDy-tl~vkjFh{W@MbJT z?qQOSwGB5|Dn$AW5`1iQ4Y**3c@2;<^mJRn!qa(Ddsla?K`Z zi^Iox7Zdt`t7YfJheH^p@)tg_gt6RJh6m996f@U0gdrx|wKSIv?lg3)H3*%ge7}|E z(y=W##YItH)qE~MTNk>EPO~m!ZBfic0md$c=0I+dDy(d(sa9HGMl->>PP5Nxq?L0Jk$lx#DMUWo^tF_HBPqc!>;5Q)_UF|FB zHx`R~GNnFe|Kx2_5**8kQXQ0)RIo+%=?dE(Gl=AT8^gP`N-kGzuJAdHoyz*4AF~)y zhzDJ#3Iro(v<5;lQ^KeQCuS3&%rmw56Q|aZuB-x*T9fiq>$1enRRYj>CKb6B!bz+# zX`MDo#2J)5r8m0PA(0S%y9ZVtx`d4WwKhfdA^A1Z!5u%U%puHt(JZ7zQ+N*Pn(1(v z^7*63*heGtOt0HS3naV`EdCC3P|Mg=qi`l9q&|I3?EScdsjPiJproBFD9XB}n>4IhA0A^T*-#UE^qCp`Y>-WD16 z_PwZGamkJ%|B9eybV$HluPI;7q}7HlkTN<)#TvA67@foYcsDs~*+emILQHUS*yc4{nuwnkKidwoDSe8M<@v1tC)C zLNC*S`%nRx+Nm59;gxi=4}h^SaoYyw*tt^^vxH3xOGYt6dbc(jc*N8FDgcABo_SXd zqh!NO_+?;BWiSWSGw}etX0XNKGFT$Ap6=v{{pMruIWT zJg(SX|dR8=15-8IzcOusXb;U18ts|FxC?1nqQDs65-_2bj$V4lYVcG)ABZ> z4CfryEl|MxGjG-uMY`{KD>za+n-|i@3r2OxpEY>#pOmt{TLxOIqrA;ivR_rmiPn`-nMa`CrY|77cv9HHU$G6%Z+0j-^x#yC<2`c1{& z%@7UoYioU3CmjzJ2Vyo2Wb>SZykLSa8BZ$QW`8mb|G#zy>F2RcsFFcQXImXcMf$ICd+))_r3C znbC$HyFM^iyXl;zPibE5;Zi9`jMlM3`YcH4yK{<*?iuxt_@in5DB-!K^hc;uiR6ZV ztdj<6?|*#LQYY}I0c7e`P31hz`yzy_73ZKs?co~bMmOM5sDi_ipj=%Ghy0|imVf7O zv?iIvQMnEoF%hUyIYn$Yt! z<`6gGWjv7DERMaY2D|>l-#)zhGWaFS9~MMlJGp4@#yU@*EX_=4H#Cf+crWWH2PHBO z1nQ&?Yy4Zi^#55XYY2AsMO8Heswt;($c-lW1fUiqwXI_Lkwq(ds->4lwioy9HXIq^ z;l>!Y@gKec-a}Lw`PA1{X@p|osk)B^ZB6-eZl1a=g@~NzFF(Wo3-a;EHU#slzO}8u zxCW1=?H3}bTuPYbXV^f2!mPbn#{uK(SW~?5POl9DJ%ZmMtNCb;UD$ZWS}20O%u}S! zIz^Nxo9};y3i4G1GAN_;DQ~w^5hsh7aN!ylF-{0u;`=6OHb9HLt0&^#^eQ=LcmU=d zjMlb|vhGEq@2|FKl=6s|Z=lVs6SmF{%fQ*H{)w0l#=LcZS@8G2c=xnNGY6*EvF!K( z=(17$tf6b+!ms_eOspfl+3p4oD~y0}4&XGc_ZCXFYH!PQ@o&epW)Q&}VBqk??h?r- z8j?}6RD`y1KSboI4a3f7Km%Z9i$q|-RGWz#$f!J0@IK*^+%In2s45nLMK`X6ixy|; z#0>$$1&=Axr6g+$eURyt!qbPX=}c|{4P%AlTUW2?jgaS)rezD?Fv%X*Y$BaTf~I2C zj|o3nrPN6;ato0iNDa@DIn|;&bV!WEqBH0eL1NJG^kb3ygR7iDtAZkFB6de#IG1bI zDt1i{8P4^%_c}9UAz;14uspM+lh>52yY!DPP4(Waw+&}h&N5XF<^)UWS{0y!VbE?0 zQI=&rBF*_=7kBwcPY~#_@Il2~qUv;pq7zuv?%hTu`dqygTI00=@y!{?M3YQ-`@gE& z<@mCeH^gplG2%71JkveQpJ#i%O6pDY34zMs+G0wKrbNqz@vEp>rf4E#RXg-`RKgcz za3wre-0D-1d7zIb-HlT$pijcvyXeN=a`1+7iQ|EDL{v=J+Y4%QtX&H%oYST~|JM(8 zI9g=6IrgmHv4n53H}pQtceyifmI&-irW6?s7ipv>kvyF5aa^*b_aS1(d# zzKvor8>_B{kS)k8DgHgZ=y5huaj^JKKG_?F)TMUP@)-v*stM0RvCvobWT6)bmiT?` zP4qN5j+~g4E()`~f`!PNsQ*mo`aA};{yA8oYxLj=KZC7QuD%`e?mj1axC^Csy4y5d z!5k!;+On9S#@)EpXWp8s5c}{m?hoq)^c%;qj@Ow<=k@Oy)>S7?yGC*jMzt5cDwnEk|6XASKKM*JSrEux_yWG6Y*s>qoddFKk&)=?$hui4WXkVMg zMg~tD!a2>TywxtMBwg4(sUV}ew~*_G&W1-;5p6S1lL@bUsQGuIa|d9FC*J7XFT~S{ zR+u)jT7@sc1f(qBo^(~G;_Xg{M36rWU-t9QJfHS`SpE0G*m3x2fxgd+2F0!6j^mcb zRT=)jo|clIEBoj*46!;hDE$E_elu`VUJ`Zj_eM#^HP__H8n7KM;={k~;jEkQ(gpl# zJ0EO5o%j3Nx4o~0F;%LWr3(zyp?pQ%EoBM!PCvdJ8z;poh*kZ>sr132#&laJ*G$5S zopJGcuF91&BZ;nW9~cmgxJCu3Hy~`0RaAyf9tBrckm)~K*p{c{gm3zB!w?st3+Zd% zXE8HqbZGLsgP+p@C#wX)F8E|9x-S+5>ou?uV_`e3gCa|Y7iiU#1|2k70fz*KC%7CCo zVb#(ITz1OsTfZWZ?vktzb zS!epEhO4K9pSw>DCN)&6n#EkSCyv8X+Gr%BL$}mY&E*AF&FM%8)sx4r(Tm)l|C_G?Mly!sJy`%9iq#EK&9VHkIaWP-gfW1ghBMvd0P2BK+1G#Gh?G6BbrBA8QLy@AzWHSp3{K9Ie;i zS-Fh_-d(Bfsr^^txue6<{XBU56bg(-4dm;?KD=Z7?WlddUo|A=p6@4rVKv%W^uCcY z8ImMjy*Emw+PPxuJhf~8T$rpLc*U^FKi30ZGlI4Xq-TtXx%Y+G+Yp@_5j##hXpn09 zQ2u`p{Ga1SY^{bV-m|K13`?UhP)FIuy?zCoOK*fz1`TBLcynW6dGgV-|2q;{t1}dZ zQ89{x)?$?!DvXmP?q|$w=GlT_dXr}XT(*}sIi{-?>E!z=v)K)|2BXC>nd{Z|zcL4h zSCFTSTscVloY-V$;Rj~Oc(oIxl`A`8+vQ5U{daDE&s@?3cNfHdvRx!L*ZIY=1ALWe z4*wcvD>Zcl81wyXh+?huRe6j?i&s0YmecE{%;he*8IDqRrgRVa-Dw-3#0A<&xHjU; zNwEW+jUkV)8s&&|*wUzDwOUqG?q4g6MC<0eFrtyre9%K)`fImtGY0PTTc5gVoR(G* zFncfdpW44dAVkBv%$;Se*JqFbkHTL6`?YT|Fv{CxXB%yh7a?$BbtvsW{!N`Oo(ZlD zDoF{i1z|XjSI9l)UcdVMT{W}WOIBet0oIURPfc&GV8Ol1GD0791e zQQ{*X++7BK&0ko#eO>3>rO+3`j_YtKS0k)*@JiMAOX!j4-0<@SIc!&+k8mIGOS!}_ zNzbS_gqMkL$jS>d$^i_EfIb?7q|mG+`Us~u5W4ao>n{uIaAxQ&*XL#B&IIYf5P@1lva`$Nim@|}lgi*+W-WlpDLfka95 zfA&(#5pJJgVjO1R4)vjaP|Y7mghdRg)2{2pkkCe2$x%QhXwr8{(k-hf7gqQnB9OsG z28I8TJ$d-9slj8I%t*hcF8466I@v$}W#r|Oqi;PcNMX-;dDlFvGJN0M7|9H9kD(UX1Dz$EP$ewttm!_%_Ccs|4zc$ zG-O=owfL=MB(o^R8lGS4tShCH8wq3S9?PfM;o7> zPa9ofQCwd4YBC&9Wos%Nv$5*4uC4z2JmOfB=7(1rZlF|$mX}HK`MTP>R*#hHz#Y!* z_V-#|2AD|ee1a=DAn2UZl-Z!B{hI|91T%`Xo-Yd{wOnxJq@VuGK(za1;xTBMnZy8N zIN*&`oUH=8ToKNP^!k0C=Bvh{-PSX~#_x3+ZB8)l;N_@}<}geKKn*Ig3yBl|^S!pw zIr+L#OtFab&w_z(iTBq_w@p4TE#~0X2L7>2KguSoYQAVak@(m-sjbizoL)^usGcKqpD)i6k}`=L@b_CN1W32iM(1VzmJ zEf&q{@{(7z^z`2E)-Bd1Or_|`{{pRbV} zwWmv>qND|Cn-}*Wlehrb&PO`#x2!ug8MJ9tO_cl)e5#b>kYNm}J;VSQm`99^ez9*~ z3DI7ASL_<1R-2MkIJa(Ia?Y|$2BbBRUSR(!@mqm10tFY3%wIaO6o$cxzc~gGGm3M z16FU$W< zzkF)n6wDG8r&JcaTq1NP7ns@KR?H9zNqz5W8*($Q2||2{#S3G`89>vbOB~RL2z2@y+Q99*VcVWGq{0j$z%`)&4^} zd5(9bI1-nZ?Rt=qrlw<`H%ym^zaLvR-cUiA(j)NXkm732+8K@t`vF6e@$F zZthCkFT1o{9PSlF!W861OkH@Td#U}8)G&uUwjKPqyhDC=Xb}m-edxmbU1dDz#uX}9 zYJcTI9>>dZ-8tX>BVUow<(L9eN@wc!vOao@>0Q<69!SZ_G3nqbAZ|(9?}w}P8S}1f zE`C}x)q;bC`OO`))hc_~nnrR`VCULg0?8+(c;IBq`O9J zE-eM4o~CG*x@@4 zCNK>13euaFEgnC;dO^VBt0ZELlD%t9lI}W2R>@}{*uF9a7vt7H3~}?-iX$fi&I8YR z&!zki4~)x^d^T^vEoPjpqc6*Zo5dLfh9{f1j!Pa4Cy(_;vRrm1pf845F6YVAv58Sw z1o+a;A&Fg=jk%*yFUUouIiD2bBYL!)`v+*W=P>|<^@FzqdzUie)1;lp%x&1+Eg6Dk z#|aQmK3jYkKVEsSmhML)U*PMu!FWG1e7uM30Y^gP_Zda9qA!!$tGvaN-b7LW@lNmy zbQZ&;V>Jw(LjJ|u<)hCTT_Cj(QGVE*dI&kMhnYPDuvPLd&^lS)Zr4(ABSotz65Cv}23f2KU#(zcBysBq99dCTxn~~dai2YXj zPmKJdJ?&|!EbEqhr6!cI)febu(B6X$2aX?>s*VoWmel@~+)^?TkMs^QyQUv7T=FOR z|45BC%CXfp;~0ymA!gV&_dJ?ArTD;6R?a+qew3pmp&z?XwBcm@4=!6S@cwNek!!}l zIpSG$fkk?qAUBL#B^tO}IimZMBqJ~Sz|*)tAGB=)-l%27q!iQ_u5M-AdsHRZTH zDzz)6^1obG`JCL6lXWjh>rk&XyH0ATVlg=iB73XO?Co;p|B{VSG&sa zdbEWD*)z8>$_vmV;4N)u>~uBc$Jf<;LIu7JnH>~)BhL({wAxkcZEdMHKtM#mmF-P= zX|4G4>h$Z~@&urRp;L_<-?1>T?bK_pXeZP6273@yWbE1I()$CgG|PpDGtisfg$-;@ zOWnVVM9O29dPn{ZrDX@3x7Ryl;^_nU6YRAVc4M=zrRghxstq_k>VW+n$A;8By@vq= zya7)Pql96tK_67|@*5}NYG{dHL_yx9q1>bM@r}E;f8~5&PA)pSt&~VZ7vxe^bQ;YZ zjPGl&Xi#9L;ZIg|CQv$yqv`aIcpl&g4>&n&jLRj}iE%(&EeDv^E zA7gr8XW0g$i0*OoWF-Seo>xfB`0njW7Pfu@M@qI#-&Uv&%Xh3AsHA$-7if((shKjo zL@ku?|B5b8-oIyn6Q=Lf$d7>w--wPU0e;(lSJb%px>rLf3Y<5To#Rb67 z@-Uy+)eK$)0^aoRN-f_buA}F*hSnI#i6(u}RZuITq~tE*r?{{!k*ib?HD=)AQSXno zRpoVmE_>)jS*W9}>IP?rM?*I5>U2w6Wfl1wzcqy9m|PwooE_M!=&bq0Jj+891lG~} z^hU}Wqe+lNT}QjHDHk(i$<1A*J?60T24;cuZw5R%CeydD|L%MD`pe+jIgR-@$UZw1 zxUJ-S#?!A$gyL(CD<)=r?B_JrY@~AT<lJ*<<3oLbS2oXUn{II{mdVI}!~%ab?hP z#L2!8Ze+Iv803CzT;sc+ZHY-w8d(}uw!HNA%ytXXj!mZK5{6+?!}*oCs02Vk7t_CR zg%viK4s6M~7zX^V)Vg;Y_`JX9R`hbBnOJ^;W86u#Y&sPl))!3~XyrL;wXJAGAXVj# zCTgX-*pbX+zut6Im2;*Z(n}nw{eHJXck@5}5+CNo4 z+0eB>h68_r9FUlV;Ato5=ku)H>Jfpj!RgW=$#R{GS8WmJh=;{hXI6k}9}b~c$;4j9 zUhXf`gQV-@f%$lu5)8oipQ;4YO_9mZ+t2qDQZ%$!exV@4xWEX-Lvk{a#=^)TBgV7} zfZ*=%P9i0I%DPflJa>bQ00tqW+9Bq9{|)r`fV2!9O6IQPIwi(E!B*!#-S!zoR8A!F zMF`nRWA7T>E$N>$s3}na7!`%r24IWv%;Qium{8dWF^;B_cb-Qg50;y+D}XE>Is7u`~D>J z!7efgk+bRbpPBu(d71wU$42TJxLBGX#;YkyavFL|=Cb%3Q|?r&#ex%A%sR)OqZ+Vu z*GzK`i}Ta-`Hbzy$y$Wn+8|nfq{1Zs$)uF)59wClAqB10QOkhsKL1L%L2P}k_phtD zmYb&fJ?FAbMB2DtS+1q{s{@Vlz>+U929Wol(a)<8zBH&pI|1S|#YFhNYH6)B=diUS z{e(IO2`0V(cLza%iUC^DF0pO^<&c(WybyE)8?GP*dMsQHKUDDOHfr)1ny5ndX63q2 z=pS#0{@w%?G3?-!LZ32^8tcxvfTuIxC1UO~^xFYRf_HpriIVAyXQ^L@>n z5BYxphd_A0f#i(TSv4W@xO?fNcpdV~*(?oY3{mC1-_vsE_o%$@Q9v+32fV|f$1ttKOa1{4BR^q71Y$Aa_mtSOcB&IA{XBm|a-n6yn)3yC6Md(KpV z2vI5_bd)uqw&A~!Ljj=kwQ;F1L@k)&N=Go3TmLw!NT3$yv##amOa-%CMo5s*TF@a{ zBWN586yw><3Mx1gKX}k{3raH^?FTP?6t9)MoGBU3B_l43G6^L;STe?I0bU`2NV}Q!wUL>)F+rmAnkfU(kyWbUmF6P5 zq=OJfIS>pWMMhf69BWS5RXj)vD5Pim1O0N>!6vA+2FeteWig>MB-K!97s%{344J;1 zfv|ecSP;`ef(in80OOd`dJ!@6%J6ZXO9#>_%h87LVGjBW=lUEV+vEtb=S)RRWTarm za3_EQpq62`VaUv8cC~rVSooj>4~{cqD&T-@EJnm{%yJncmqI&bL*&4svB|~VhCPie zlTHqJ^3l0KKw3HD!}aXfmpPoJTm}dzH8|^R1Woi)bM}~h%mN`3w~QbfZ>*P)qCqA^ z!~41r3+6OPqD0D6(MB7I?=}IlRnET@8&nAwtY#Fo1#1mpZUQ-QT1of20M2(E^{SvpdJ`GlsZXkKx>6$H_@&EIXj>IBQ&M4%sLWLI_W{FL^kqWrL)i3 z%(11siKr9FlmLd2#ENHVAG0tzQ?k}05O5=0t$77%cg#35Br-{+BswRe4G{!r)O;0{ zIHS$1P?bxs4JJ+`Z3H0uH)O)MfwA$+yxL?g1$V)TXf#)q;mWzViDFsExm47wlSsjU zlVkyuwJdyRZgGA&gF2W?Wx)YBh6yb=5s|?M#{u$HKKPAG0_hCf-!S{I&{nyaIdXnE z8>2ifmEi`wNJ1(E8F&RBYy#xsa^^m0Tx#$Sgj*7Wywf835S(XX933fX5-<-@ zAv(F)``-00XDx1WiAfMi<^!`Fq(&EG*agw}{mYpc)XuCM2y-sC5MTqcMvc^^fR5|mIbh_UEP$c}TDqNwgvAD}m=`Iry1 zqD*82rf7jHOdut5!ctBQSDB<&$~g({4g_fO_*1JPn!Jk~n4F)t!YJ@Ygb*|s5QP2!bLjbjy!TozMJ@bIBb<6}1%-4MY>kGm&F;Im_^vONdS- z9uyZAfs(~9hzaG`ua#br&k%q`DT5DQ0DLS1{%!G!rtA;T^9J`^LLe!XR@NU=MYYp7 zjy0gj;byO{^=(6tuQd#ze^_P!fOe z>FzkF3|A~u3Lq7D&mdOd9SY2e5fZZ_o}^EjC5PY=xi5t8I3MpKH%gWBpehIjK{;W# z1RD^&V!N3kH&Y7mS6?R1@&_2C~@V55KaM)fJU!4 z;Z&c`T-9gb!6V5lim z;L3T>TyY~I3PDP_%mrUL3nu|6AZeL03=EG1u8C{0qCX?J2+?Np{`srr=XNWk&^Kne zOp>!Z8Y?++(8gK1~+{xN}?KxwCAOnJxf_VXo@XMqBIA*_JE!I+(OVEZ)3;ty9d3pe;}` z&SPqLg|BDpjfm?#NCF~2*fj~;FJmd5zkrOp<|#;iYd` z2G&Fu(gz!cH5FnZn3aJ`m52jih=ktdn0Q|MAefQXSd9qGp!J&XHmoAZPlRPbTAt7b zfW)jt(TE`#klA?^A^{T+CET$+tH%N*Gun&^1M`#^X=e!}F$X^FW`>e4TpU&cNZ8~Q zNDrKA%adz3N-hjF6pVEwlvjdBF!4@TyAL)2N`5}ORc*>BOfpL9V3UNvh>+8mqvSXv zw@?V{l$MO51?`giB6;4WkK(l!d_nb|8Ri)e(k9Ko7=zASZ(1lNmp5k5*$YgX95Ium zfDnaEiH|u-;0rQ-I#R+Qyv7i~afyM4-ONzJ5XZz4GK`4`odTuJE{8`jr`6TI~26ym_trSPLKqzB=9KzJ@=4#P(P)yC9Sqj3rrN8bO=I9M`#=yUt@1dZI#o^b3sZ2ScYWOn4`YTv9UjAEK=0L$^?S7eYRqIwfsqb* zkQ^}CpQnv#*gzLz0g)#jBbQo4NKF4!1CuXcUOP^X6j^P3sB9qN-3?x8p4Z51Fo|g+ zz<}m~C{e>JEd|Sj0N${~t%wm^&|ffeHmo-1Gcb)@h7h7v$r$4p1Tr>Rv)cryjaU%E zk0}_Y8D}nOP)Rs-$v3f~HWfAwm9oT;dFLxjjs-T3P@9><+$g8Ham-N&z?^hL)5OM@ z*8Ok-jgm3wnxh-r7_Ys?zYXQC>(1WJ~h6a(UgNeE`e?kb4YHS!JFIPRPl*VI27CpfZ!bj2qrippM_x>vs22cAiPm5MBoxFX`h8*1le(p z-Xq!o8X%x|fm{}bbCF$Ckt^+zLPlVjp)XMk&Mm_MvWqCRF`gVG2Z5QtiKk6&8LmZk zK1E3&RR|)2vg*qx`DVf9h7*h(_uil-n=opKf)TMMF+#NT6;=od!YZSz1B}sPR81^J zOM4%@2v!O0tN{Qe9J5U#m2R9ch#oL0rc|XRIxm{|GN<;ROU-yl+?pgL2Pp`db2$c9 zhy^MJpo0Lz9GGO#m?im*%&MaCM_v2Nnjs3dsu|WQ1fa z1{WJ)l!5GQ^wM%e$T#&D_ac zYYP;e^UOG~+BlI?Bh1`oiyN=JNP_c3z=cM>5hVa)G-T&AClbL~tpsQz3ANsBT4uA} zN*S+^gK`lOxR*o%ni$!NXj|k=A$cRc;NZP+Kzi4R>>HGMEuxjl7?VVT3V~eML=;&x z2n)w6v=L4)?bmP#jEh0K$G) z1Ag)4vS}GyxU9>B(VV3eeTu+PSyFyi>Bcvgd6)EDN-Y&iHrh#b@m8}cr(~XpjM&4;$Y7GPH2z1PP*YQn1JqkWk|*mV>}H0W zwLFYRuC;asLX3dqFnZGnWNJfUL*cxSgi2X%AwsZUdM}_vo z?Oys6U=SIxu}e{a5mBnh0|c(Ewz}bnoHHC#P(evYz>ynJDA32>*#tP03lc#wDjSI@ zZB1o^vMlj2N8}r)i1XG06Ts5Jn>cNQE@Fj|Iuj^U`42}MJZQvCOqw4Uyx{^S!N8}a zr2=OXaT#~VK`l6AnXC&&I`5?k3G~o?2@t@T4KMRn(z#SgSRRd*UV2cBe;KsonBinb zf}#lwC38qhjrOgXBSbNCY@v4{gkYRb3M}K!*pOq9pNJqR03uqgYM)#XAxD+WPq@;W zgA?9>ganoXh=x~k;pj`H3>nfsItEq>%fRmzwqoJt3xZPIpfoXg02k3|*xdv<&RQ*~ z-E$*_K%JsW5rBR8mljaSEtI+t3#B5{E*QZCKm_l;^nT|#RzVBu%hJW@0i=&IRnb~! zH{5|aBGC{hgPd6_YX_R7ll(h1jC}-v*13st4m1-W93+>l_3XORjX#_@wuFsLY8Aja z4WJBa`p#hvhO}_>MMfE-2O-dcLxmxxUBn!q+BhjLrN|Pnz&*ZHKZ7Quu|U0Yn}-aN z9D#CCN>ECn`|^)Y*7&GJOEau7LJA?u=q)&s7!2lEZ(NF2--$kMBS$6yEd7nx2ZgaP zEgeoE9?9rLL187pMaPTi>E_Z|B^jhU zK+hm0|2K~$IS=Zo5J_%aahOY?fCOq;;?av>i|JJZx~b0COIl_?5K$(Up)axmVKvzUdHV0b2R2e^1jp1^`M&Pf*jGr+SirP5#a-YG}`@`8VGK-pJ@8<9zA9Yr!h zd&9x$c$Q=On=X9{Fl3|=ydlkX;+{i5Z-Egw%XAh-F{DhwdG>&hz@r9Wo_>BJX3WSa zspJg`imc}nDVhsVr6R;e7-GOPIj@8T&O%}iyr3_`o36%;3`u1gVhp)3k=r|H!JMY3 z#0M{TQM?WnZm1-q$fA#qYp*yY0Txm3HmufcL!@h&qGK9?f`^Jn$AcYnBF#5MhQ8gn8I8|pm(fV4)V4-~;Gj>%%fiL}~~E?bgh&NC*h4!}jiFOvN>0g=Y> z+5~w~3nrgMZAzsO(e(l>|ty16al_^L#f4M1~U|695Sr&~g?8h+y!S5`bvf zNPx@~lL=NQasn-w;9Nk{@IJ8YP+2a#LvT_7_YS{!Y~KV#k8=@dp0gDYKqWHKM*}G( ztGO9-BC~P2Y#Rhx?ShWrAu)8?@ZB8LxN%4{?Ii;%oiu{LFk`K!%s*z4*YXY}IVX~k zLx#~B#deLj!Q_UHXn4m5G&2bH0WNze#qP!@cM~BjTqZDH_@tB5o`crHM&wx#B4y{a zlgS0=Rq$Yv{_@VACK%Gjq3^kb$Vo}1v;yD^eafPu=1HBjOQ0Z;2OSfA=`?u`M&l>O z3gxAt7?FU4vLex#*Q8K3B+%KQ8S-Jl zsbFle4pS;AZiBPZS^>@`l#hA)WFNcOINw&(PB?7|wHDwQVM=Cqw)@t{EX;-wZ)m`H zmpD+2m6Ze(Gv_tK4fV3M;leS=mA3(sW|WjDyangY+9?q=Ck-4l$jdEAh0O&n7NqNh zml|SHG6)Hg41EbD{bisfov{xKeS=a;!fDQ=l`n;ue(E#747Q{*#`T7_^{4^@x=(Iy zAQ?gCoTol=#x`rqRa8a>qm2V4!I8L-g#8_hU3T&@3oS%;F*tN*Rf~r$RBZSW?PC{) zvrOquZ@m;^E+u$l@QXQ$g|(1O=uFZ$2}b=sg8?S%m}vGTUyx_!f=h0LWKl*io)8jV zm+HCT0wl|XK?TkPhL{3qxAYZNX|S2!JKwsS5pobPK8FV zJ+}dMNK`xF7-J3RjOmS|&bt&f7s)v*5rX2Rgv!xCYs}6H#ZV@AkC7C~kNH)jDN|Cn zF6SVv2ItW6l$zL_&-y=ei8>eveu%<>aSk!^CNbQ|OjgGvP)ZS<2FG9O`E@073y?A? z6~THz+VCox=zjKY(6;p4s09^b!-F%CqfRCPC-3OYVs&(WV1y?-XaV2!#n4F+6jq_4l!{kdTcA&LDd>rv#GeAYzDakeWO7NNkliJ1w zcWndIkk=p;%AgGj4u(Z1zMLghH4I5*7i^6RBwQQ^VJ@Q2oHIrn2Ojb+IVVwT;R6Io z4s!gliwYY`N(Bl2L5&|Udg8I=fx_9!!6zwMYrP^NB-D!AUur@{@*FVEHtYADAP9jg zlHu*?pCE`LT4*_TB4|tQ!-7l=npqkAc>i(+>pqtT9dcvPMP*NAe*8Mealkld8RL`NJ^Dgh6w{%R9N<41C{CcQoQ zUF$%U5F`ZRX&yi4GKW{5ODUKR4x$fE`?Px*n0fse#>z1pUMoi0stPKJjHGkBm4F-w zrZ?36(Jn=gMrsH(G2zrXm;2*P3|EAQYGj5dt{pr8iUnt*`QR+5OK{u}jKT?8P~)@@YWTr4O&L0O!5K}CH#_F(b94uU`2YUOyE7^E|?&|LmjNj`({RSMX!uW z)|DwyY@E|N$Y_KzDFJi7W@+~^OHhIdrDjwYkTvL!~oQklFKRw@@GCvF2+k;pJNj-@_#FK&#Y6a0?;4es29V&Ma& z<>EYdr_ZH}k|iswF@b>y9+Oi!F&l@Mv06ATB+~&5SRJhV_bJ89!bL~fF&6}ZkwAh~ z!dVp{C&XBGN%`br5XmqL4w(bwIU%95^C}9VNG5I_I49iW7&?dQd_A5f0fmfKMN}F* zptGQM=Pir^6G~@_@y_K-p80X?Ye&$TXA&I$nVK6wbnaapP81jca;TA#c6A(Ol&;7%I{EJ^&5c+#e= z>6{b_Be=l96FMb9IfjO%-N%894@~iM$J?aICnm@p3WK1~dA^9#o#L<|-iNeGxMT(6 z)K^t>riqnM=M?OqAxX!Tw<$=Fgc!gzv3i`V$&yR5%tcZ*a87{XKLF4thf2_lx^PmO z;8aN92bNPXCdW#OLM|{yu+mB^u%Zx1G0KUAycV8wloqX!9$1K&guE_wZkfD}KoXR& zL1+h3I+E|xltW?*_rDbj%p~TxgDBB5y@^@{l>$YWDM1j1ND8Grhy*r?6>lySpw13R zNoBZ98WoUIXt>Dn_tNZ=pC?#}uPIAsfl+KuRocZu`j#6AHCDqsk zotUE(97jHY}62#%mXi(5z0{yWrC9#-A0`kLOWY<&OAB_2&p5x*E5--h32#EK|f)Ji*HBzR##$~crTPVn5(mK{1#r<{E0=7F=H zqGH-sEMe>HPwAM@`{2Bh5I{R1-Xy58aUcT&m81yBfec!~e+xop#F)rr7z>F+vZNw- z706;6w*_$=y9ZcFWZI+qu%qMzyFP1)PBX`am*lLs0lZXTh!eQDo7re<6K(l0hVma1aF5D|1 zo`U3PERP_0utb<+eV*5N=TaFJq}3vE6Cg=xxuP6vj_1xZMnvr-A1dQO4D_GhSy~q8 z`g}dNOHO~1QIP_-5BmB^$K7$Lg;0=*Y3>DQ%u+O<5QqZgSTEM}Loyj7s)We`cnSE$ zqJyTTYYv%EVWn+MN(8Wik<+}1wVbU%k1wr42(DBDi_HEKC=KJ5mNWM`c?2Q7A`=Ou z*A7_9i8L)iBr{$lYq&v{fD)jmW*^R-+D-&vjP@)g764I^*RY!}KEaveAcBgCyWC$EwE0X#_1mS!V@!V;l=2C#rRV?zAxIQ#ignwc_+k z*R_m8b>j&JlH3~Yo%O&f6kO$4E6uZ0r=pp}JxSo&)Sh-{3@$|*qGX6Dt(82As2QXv ze`;}FFc72F`Hay$mqJEuq^YzJKnz__Hpg0Xb;BhOEb1hZ4;nlpE6nd~T3T=17t*_w zzzFT5G?f#7gD!B>(i#?2?SwQ2h$Sgy07CckEm2KNYhy4w?HHQmiPyl5wB(?PwMNmn ziZRKZ<<=pPuS{^eGX|GAcjC;#g2AYevqT`3{hRx(RkOfzGk=1=U*%V`3}-ad65)j!B#o8kmMi&T6l~1z;vQxa3#P1|;TG3ocnS z-bLp^03{g-P`f##Hiti65zi4n?=h1j&(D%EMo1}@5EeWWqypc49C&jvq)q;fdhYDP zajP9#3?Hr>AX3odxFXCBfD13c1;YUX^Qf%9Aq<=4aXoit5y)_6WMHV-%k5%%92=HD z``p=uPKnFtrPKrvoF^Nu1KwygPoyQzqbKQ{2JO(9P0X+wDa_=gAs1MbKm;mE)Y9w% zG{Nxk48*lu2E&6-7Ck2iUJGlQxHkMeUjr+qMUdKA70B~cD~~ZfezY9Q{ona-&iMR!6qVyE<)1G`7c8XEzE^c*>MO&V5AqygO2=f z@>lpcU;=AEJUi{Vjovsk!Gj`++Ra7JjWjco%etsIk~R@*cjrSB>~ejh^*E<7ESD~Z zAfvXNFoDzzHwo|0T;>%cn=%B)y^7YESm~H3V9fiMGx-I%R7{v;lrvn|iYGEg<$XOP zE)Yyq26Qk!Kv32K^VfMBAeT|+IT~BG(JBlnX>E8dMX;!S=9STW?kLK&6g(2w%!B2@ zezETe+JN$nmgBXSniM)Er6tfokyI-II2e67^N#$Sy&z3dI^!56@FL{SsCFRm3ADDMMdg%aFxZ^szO^czpoK-=1&Rj@qC^3?p7z3@9 z)luzkf@%N9FdolfrpTp}07hynCXkr7Usm<9@!{t~;x#suyp%zR2u4akO$3jHzE;yT zv-8q@P(WN-2*QI@xx)XDOooYRb3Aa0!w zEDO%h=STI~s(l#iNFow==jdl4NiJ51zJ?$vOor$67p| z2@H|Tghntcg^EFe;@w1x4T#@PUoxJ1+f!uOGX(oDDgpp9j<)t_{G9+Pb4d5+!y<1odBMr}lj6;w} z_(?&%_sEiI_Cc6TJYw>Q!mC5LWNZMl`#69Wi=#0M>VL|U2rj8;Nq}YvEwbHN>vKaA zGbQVM@RECm0hAP9Scl{bC>O-yMGD4gkrj!YnU88AiH zB&b)e6|$6sV%|EzDz7NI)Wk>&BG<-q;l#n614vEuOYdDat>NQ*W42rh?>tzS0GI-d zci7s05Fj&>hGjA!RbVcV^nDpAr0c8TlCDUt=nBw+ob@1hP&MPs{Y|lsa*LQ)ke@=4 zWC}sW2o@Lu{wyLDaU2i>1KFjhP;(IziYh2)ASc9>&dymS5|3aaFc2Co3AS5WEzmR$ zRdiZM&b+K6NAwo*{^d*@Z7u_I+)4+MOhv>gI=6f2e|#Mh7jqhyaVi2>!H_%9#GQ70 zH;2SGIR`ykRNw;zMRW(;XlP9sCjzv}WDO*4If=>vw-FtL919~TlTiv12@KH_pbHeU z6v$0>Nd`$Ct&|Q#H0Tj>EV-1KC?p=3Rx(5cDYYZ+b0US{nXEMel?WfZhbXvZDSluR zR1Ye7IqU10OQ9t!nUmVcmWoCMapnZfcrBH(QE-RJ0a%|bhU+<0Y({ZGB&*XM z4q$NzP$kNVx|~U3%;gZdoRTh4aWX@?#f| zXOnT}l7Z2lB!Na%@n8v3!~0q>mPs(q1b5baSb|bS;-}ib=K>3}pdd<;8OxNlMtwN) zXyYaKB>S<8g`<$t5(zLiJd@b;R#f>Fm6V=%SVojb&&+Y5g}=t@EZuazW!8b&`Qut~jGQ z07?G7(sH5mTH44yX*qpT3mc_<9Ov^i!n|huj^+f%v_KGG{)6^2Fa4dbTrf6sT_~ku z(2j%-l|=pp-{p*rE*J+vnG!SFIIV5u3A8~{&SxQ*03|a8Z9vE5$;AlX3ep_15KI_u zGBK0L+T;|V1~k&KkmFhqu1zTey1d~w6 z1zIL35_jkVXySi^AvIv$y=wA0Ime}x;EW}J=*Xn&vru$N3t}kflTJKhbS{EV{$w%z zj^+XoQYICd4@OI4cmlHE7z?|lWmJhd50~6LvT~7(D$#R6i?uch04Us$`tZ-T?f=h&y|zh` zBuVnQrR?_<{+p=5b+Fl0LGNO>wRUkv+a%eBQA|+`@93V5jsd(kx=D@ZdZW?Pc=1K2 zF~Mye8xKx2ri=wXo%?lwXmnfwZjC%nfYSLqOOm(*U#i}Lu27!?R+LT_Dz4Sn9_l-%uamAA zfa7|#qUUa8;R}O1%teD*Oc5VLWDaoGSI;Hs>o*wexVaE4t-2Knfc?a(>8_66^nzqb z$9D+t!-l1^cFmap%$R_WsIf!~>R|LR01Hi7$X+6Ze?ODBrb%%P9H-%Lnx0aa#v%?zqN zPyi|9rMGQF$b`3SLGo?o6tf9jJB&O3oEdmyHqoe<-)}WBIc)gVu51?ot2{>uR-a2n z`dTjP$KVESW2jL`_V*Mi&7#K8uO3B$PAG6eCP%1{VBV{B!JxEdhY{+_qIdD_&kLUv zjWiYisBy@ut3$ug3sSD(1Ab*fl~^F54CsyB*wbNEwoha;G&hTBLRCNAk~~*J(>v6) zC|ZfkNsco54Lg1HT*khh2%cA7$bD6=*^8nKLS*t!xTfy3QBoD%m@~Y=S}pjrGQADn zPWHSc0`IG{_ab3?#?2!BQh4$J)a!HvPj;j$2Q(*rkDPEWywa$?V!B8QJt9oBo zTS;Gz&7k&$Yt9BONNCEcmi}l>MN*=BcrhvIj7dt^PX*qnzdGb!c=7`c$g+S76eL)p zm2V@Zdop^f6^KdH^kg!VW_$HeuBh@Ix#-yXd(R=Qk`zsPvhb*D#^be5j&9h6$BhdK zgjJmFn*Dg~(-T&;YRkF(%r7d?xswX+*V_*ZF&Jpt0E14AKGE!WD5=nX-Tox{eJMwV zO;Wr^Y5V#R(#H&TB+QA348|`DPs63;-g^%fZ2mJE6o34<-(gnH@x0iy+&w zl_!8&ov)Y=eLfsa?n^|+@ZMPR#0XACSNHYXUJjsM_T|0`A=$naV-RwAn{r%&!;!t-<`x)70HwW`O72WU1MQ>zHeNHlzG3~z$@*gem4vS{-n6ul! z>5|s!Z;HA{H9$L)=HLm=j$(pPHv`UYAarI!()WYnD?zw0Cgs@;>>h_=wLCasjqLIs zt#Q)X4dNCq=5@2|$it>kzONKI+z`(hQIkfS>VkqkJp5~vLs53(ho0gp5c@Zg@^daR z|GmYo+BPfPXAE~Kmui|ScOE*C9V7vYB=VYmax28kbIvCty%0}3QD>)>SQ4F5hi)Sy zql1#oVs_~7i*Jf&E4{TA*LI*mm9&r;X)<-?i|xGg1;af8z4KUM^`($l%jh+(?(}o! z2dc8(xcIwR5DGwLA8{TmekS!Y1t)-6(o{<-jv@Dq$nL#QOr6OkuhrY1ANA!>OKe}b zVh%u4m`m96*=;X;A@67l#<|A8=xd1Z$dZAF%hREizfS4IC7}IvgxE4mVq20C1jCP7+TsyqsYC-vZQ=j-NqV*$rzguZxc#kPa z>D*i;v(1|nAI#@r&kI`TzJ7gXy$`dzX&n=ot{R>7fnzCoS$7NiR?4+FefvJD(?istjBN0xfBm*bMGebv9v5Nm>yKt$!s zQ;FAaESPCS2EydoWSELVmPWsN5$6)kFVwzSBGxMMu3eH_{)jorOp{+9Gf#OKTAZ7DE7Aw!iV?Z4GXlMuPzz>bv0eHfs9(>P0ADw2&iF`wAHi z;(e)ofiL}^;%_b<2?xj0eD1l0;}wzW&j@W?XeB5L0) zr}?VC8O@w)LyS!xA9NjVy+l-`bo9d;vTTlFkgauU3uLq&@bc_K^wjVneW-i~;=o}o zr7PyBuaDYZj#ktEe&FEcAq&y5FiXl-W|ym7 zo8T>snvsTTc0m*@%A$DH&eB94L6lflnbTSW{<+)^eC~R|Z<^>GLKp0z;OQnyh@e90 z>bAP@cLaKKlDU>pOqtz$1s_B2iLQ ziIP$?eSn?H_hJE3!}^zfCHK5~D$WShtliVkeXX`?wuMVjDeKYO3GFeNXByU}1m$}e z(j9PVDu6Cu9U4U9!sY63>=uJR+w6w$M{m9{g>O*sm z&V(W$ks@n5IWp)5ht5%I{nvboFz1NvCx3+82nl*et0gle5Ps3Fu1WVs&WLTpyQPeQ zX*`D!-`*E@WHDl%GYtEEVp)<;8;j>@PIvC+yI zTk8v0q(gI2*~Zuac!LU7n^KLZiwyFbE~pOcrnS8rpa!0i4J<&2HHxHc!z4Qz(A7SjJ}l-nmNiN18)#a!?31tkpfnKq%z1TB5B zY(TDE@g9BAM*|E5TQvl+dFOt(H@F9Pp(y7#``Rg=+v!b!SD<` zj04+F>I<@BmQ9sh^nYx88wbHoZ~gsV5O$fuQ2z0ewWA8S?o=>Wg#wS$EY3MbQrq4H z^@(B|!U|SlLm{MLc^AA2^SucZJb-~$ni!~*gi2C6+PHcs`cC+gIwQm~ttfK~!4|<< zSGVed2@V<+kVf)aBsNBM#;e`rfwZd!D9>tR#K}edqZ}wl6TToiG8Rwu#Y!UIWpu8u zkEZ;yRNMe|&Fq zZf5+3JaV~9w)B)WNBqqq{%Fna5V|&>5N0delv4Mqb+ub-4*<_O`!p+R%Rso|+HwzX z=fvKK6$h{3-)*KodP;Y0&o6K``|P9MQ8 zBLk1iQKK4UcnEg)8g;d+AiT*w=Ey-#$)^rd9}#GAJw%YeH+n%rrBdpYoaEx|>S%P! zqHN;BJ7$d%UB6;jJ&s)%WCKXLcYwlxR!9uVau%*I^Q^{WSGsKQ81hs*Sz`)_Zgl6iR60yxRi=pkg;z z%WUcOY?Kq%-d*0%hFS?arM_pI;rfX*oU__vo&sj(unrg<1YNV-U+rp76kGDqef%7V zDvL<>S^CxS;Cr-nE$U-B4rnQTw*06<`0;oo;b>VZ$O`tf*AC%pUBzXibbis!*#K-7 z%++KF*{EuEjCRkTwPj|#V7P#^krDRGqcw*&^wknFcubu_wPN)=hBrDAU0dsv0VzEC zZ^?>}_I$Lg-xnKIt-_Vu1*&E5x<~jsJcl5tG0r*tT8!$WDW|(C0Kmpt@4vbY8w64` zDy1E+aL=}`ux{#omb-jNxz#Zg?>TN7IV@6|n263(Y(u-OQDfXRi<;}LU+_Jxc%T)BF|OAW!ar)5^iIu1*Jp~Z4$6@q zp1MQQ?7>8&vXE@7p~8zbr=Ni8H2N!oU6ddA%6zWAELN;B1iSf~85VY7SjCO6Zq)@I?~%}W%>?Nn zeT07$t7%uGdwNbVl8=?CSoZWiO(u=yA*+pPG8+A~72s$F z=lorsANUz<1;bID`0Qr3Q#4B^TTJ28Ft3JJ=Z7E31o=>b(5uatHIn$upEMAbWx8I*FOfPJq7 zo2gk_Eo|R@?m0zk7Gt}5*)TmnHF%k5&+O| z%q(s?WB9LCu@>YX-+INr=1>Z|5lt7*R;7T$!9@v=OA-yvneMl~0SaAkgkf7pQ!d08O8 z@2G&q6pNO20Ur*1ToKw9HfTGgW=LbU6vV1$dpG?BJMjinH_lczm&tV{`PcVCqD|l) zo5MOQy^|8EqZo8bG*16yg>hJYr;;==s2(#xuqg}pynX!!S z5J&KN(^i2LS;lj}8UAO_b34$EMIB(N&BT;J(_6lJDp!OZdzoC+?(m;uhY~JZGL;gZjA;0}xomcoB(^g5C83%> znT2vW#P2ES`+XKh&guVD9JU1RpNqRDBFY=S~%US=W=Ty$3wj?b|z`YqI{f72nY1bE$Rj-pQ!S2(w4?r7g^k+3}eOG(YZY zr`AJXGJPI45G8Uy>gGcG!XBOto_)HX#Xlc>V1~G+uJ#iCl2_oVxE0+vj3ZYsnTY=x z;BluY@LL4Wc+Vl$W2A^Xo0`W&rEB)CM@pYya&n@+#7ckm>9tcYAM%SuxcO3Jkkd%2 zq0&RE4pQe=nohY>Z6vJ84dFF;@sGvfuY_ce)ACydY;_L5Mv!HHH*WNJX zWHURpNb_5?1jC--BA9!1HnmxR1_b$IyJp)RN|YBJLPb{VKC#iJ?tAt$ z1VwsQtHzPiC;lO(FFBwvOC+^b$M>`=`={ln$wm&omzeCn-G^jft9>;QyR51?!b|vK z=AaZKNYGx4`eZvxUH`iB8q>jJ;$yG;mdtP*F4(7--SD}Dbe@p!^F_V!o%vns>TL(z=Dk6ZwQJNJni0mC$V+NRfLNEr`)| zr>A@#Uh=F_t6d1;U^Xp+p~havU3j!v{ph2b^j8TJs^Dp{p~N$8*?G9jtcEo4qOdRb z)U|w{_q9eOgb+QQp5L0{_Y=|!qIKV_bmd(#9GZ0qj%be?yLZRv;00NFpK6N%ss8cW z1=dqV$qTIf`C^5VI=aTA!SVM9b+>cWSr3in3AGJ&1h(D*PhAwQJfR)giN-m2IAut3 z^@tv|v!^vY@rqn4kjftBnk<#EFuy()w^|uqB&d=hcOqePmo?+6?2V!~lL{)WEktCa zX5-uFN!Ht(lY0yHpK?3Z9LmFzgSQrq z*JPd5`qT$*W2`OaKEz5KNuehDf*nn1>@*icR(?X^T+HF)iN_a>pX-=wDdZ|2=j0M< zkZkU~*eOsLhp0uWRceIsACRX>d&w>7Bn^!>$S%vG$Zd#`eS{! zJnqf?D(&SRVdZBtEuBMSj^^Fu^dsor%bp5G`4{Ex3bS)s8gBilWo|5c+8|&VGj>m! zUYfPpg!*WM#LE2CT)}L)^J0?7@Z@pDlyI-bBDJ-nEsvi@z2tK!Lw!)+>yfYfc0E#r zu9XSrq%gbhCBOA4Ir&Dm8^93`-t0Rd3TbiNmu;EjLzf-(but&ndqiwluT`%2g5P=u z4@Se4w)gavlep2PvZ7^{aG5^wq-p1Od?)=0g>pOvS_5L`*h74*%?mPX8^k;$#A?~8 z>RI3Qki(V1&|)36nu4~$0L}OFNb@`dHDLfE+JK^5(R^y~Do*&Z; zr(ZV2S!JoAI$O#O+LQEKkwW-UHBtMKF|Ag z^%EDu9Vyj7?3aL?sj0wOZ{-ZT?hm7aBwYdP54A;&$nvwHjLr~)P;|$zkY4$-j+V_) zQuLd`WWp+cj@~&952d}$*?sAE%JrpBb3}RP^So8DzcD7;z7{@G!cFuo+mtB6`kY%) z${sPTcGdnelEytaWqyCb$(G&|!45fp9oEBhC%nH;;!Pf}9FaOs)c#5P!4m!$nnu3; z=lp99Y|aPzdA?3l#rwb~kv3k@g69hr5*QB3Sa~#-_}KWqBx@#Rq7iX3z}V=f^{?{BDAgELQou zJW%D&ZQE|Hq_;fsJwZaz#^KL7um*616;2gw#uZxWlRK?CZ>!5zEIZdLhvn(!s_NWR zbsL}hIBS7!V;obQeiwS7cH-pa;e0;Yllty-?CwPe8po8^OtnuIu4$~DXttdCdXJwq zE_{**>+RK@YN2Ybspa)wOzc{#@K(F$b!q()IGWWE zM#!>s**s0I$|}k!F85^~r?LKAW#X=`1(NpP7U$f4Jry_LY)BQ6nN9 zv8agY842H4LUwYt4A(RpBE)S1RUe-h9hKjsw01+gXH)T13Y~|@BUF9q?Q^X9_tzVg zUa-%Z3)KrGMtSQ*gyo)n^>eN@Df%eSRI{z+|WK;J8a{ecz4hFA+Z{ zI+^cVmdum_)dDYW}d>Y=kP^8PZH(Ge%G{jo2(n~PBUE*h3iUx=CJ4KxL?IuzJl7p*CpMMWnOw~syEXiOP`}Eu2zotzLqk3^SFU-C>N6Rne$rW69snE$bS|7uF zK|X@Bzhroc-G_F<-VvjTJAGQm4Fm!-nI-v-%FX6%mO8YJM0pT=wUIQfCcP@h(~({i zoNkKDy5&krte$>8KQ%Q{n$Owx+)|=B5_~G$r*-pDuxEzkK78A&jOzyJ?S*^AYNTA? z9p~bn1baH!MN~cO7z+^W;mIA@d+@4S^Tk*zaW{i^Ew$hMoHY}jOrkS*j-1hMXDLxu z3moZ|Hm&1oZ@|7R{BC$5Evww3fRT3WiPL%Oax0O&FQOc3zwXn7CpfFUdnVW|b~KQA z;o#D^u5sDfsbc4Sd41An-q*sgvOPWDuJ0!FKpBsezjB!n?JhjgbJ_6c^}S);iSs?j zrbc`s_!xV%>JI!EuCh`-OFCI^fgnllV+PmH%O7&3%H;wAU^08=uUB zl0~%KsF!smT_7o_8BW`LkGm{S`^eo!%i}rMFl`IMRmI-NuCGMznGC}W9O+LG3p55p zhYpz~GBVHz@IWPenSKAznP6Inq#qxi)v$B@6u(qutUr1C(QZ!!;^z2Dw3z8yC!Y3@ zDQ<5~aO{C;IZz2))sw2YSeSQACX}IREbE+cNlMnyjq1~UqenA0sC?e{J(3WMn_@SI zeofod6OZ|#_#pK8ZGX2*S(>X%xq*+-B+HQf>5Kf&UxCOeDW;WZfkBW;woSzdqP}+LMl7dB4D6$)NhS5&3&Z6)bDUuN8k8={_64 zcf|Fh3j^Kpv9C)rS90HQT-S$>PwJ^ZC`f=i3Hl$>R1Hm6Ql+!zx}+*FbdFcJ!*w!9 z=U{+Z!m*Ntumf20QOlceKLRdGM(8cFn5#I+w^+}B_~GEm>2r5}(kza>Jk7bE;APw< z^fjI@smkq^MXz5|(!}YCX)H~Aa7`>jOuTtR`gtwY`}@9VEM_Qc|G3_I<d7-R5u1{qo1iA|k7Yv1_`i`$wH3PA85FPn`zrYsrMe9aHe8c_X7 zy+jz>Pp_+Y^{IKcTWQbI^@e9XuX8fb%?b0v*pB#rzhG%vrMK5kVn95%K$qtelfbMG z{bzT~Q@n=h?D&nsPv`2Xzm9hBJk(ro^_DvSJy6#EfWi#zrIpYQ1rA(dL-!D=B=jZ0 z&EUy+4jDF_E+8Em$$QGAgE4J2U+`Av=$IB)^2gzav8Pgd%ZJ7xSLZDB^VstiGSudz zo|R>K9B`ozet0MG$Z7j)jz1jkC;Op;n4a~Gz+(AMt?Zi7e508$pJ&C170Nu0Rv5j| zd1Y{IXhgz;rIYoC!sY#4oQ9Ek>Xt*$`SG}cf$QQepIR`~2__4?tXj6@*t*6l8iMbr zRsOAv3mOckzURtL>Pfe99@wj$`JlqBXsN5S>uJR98#DKA9xM~Oz^xKsdG@4BdqjJ{ z{JlLDyeF@I6E*fF*j(OC-S5|WFH(8GkwItP{p_>fp9IX-^A{?fx1aG5wpw6$n^+v) zd~oi7K>&&qhW^1KB&9TFTDp4om`NlLDfsSbOnIXAi-OFI7Z!=nc`k{@T{aICzokD_ zqGh=;TqUU>f9U+T_RsFAc28WckCy-R3GryxvplHvX8eqd`?`CS_=>8{G#BRqVwwai ztzsC>ik6k(`4l=K>sxFt-zE~X<=vk6yVVym@(tQqAJ2$-dtuosq`dx_2Il~W>-;0` ze3g_Q4Ufr6vGR)9B0Hz)Ek`u zSxiiImyo&JFThx$xjMUYCbs==UuWqoAG>VZJ|HPe zXC^m?u61U8ETBfsA^R51`JCsDL(^kI!^@2X{>hbgZyOzVkF3GI8&|35pJf^)pdp9l zpUioRIdH$J4x3%wHOl%#L#eWX3QH_0SPb1%-opd{(d{C?}EEQ*r14KcOVONIrY`M`;E?v=`69qGxx-r zAYND@>4mQx3~pc;K62 zk~s=ioXvJohf%idzD%XEkf?-lYPbHoBZn7qRD)-1uLV{_OJvEh?g~BgcyeYnCeSZ9 zDH5|^m2v&2pXTb2aohw+k*+lP?z?+1-LcTf*xOfTM7@wR+2fW4X2aY<48s?S>KbV- zTKKNe7?JN!q;wNhts_EL4L`Hem_4tL34OfzA+KnZXT9vBVqUTuX6cb7>~Zv<=4HH# zR*9O50j61QBq*8&KL)vn`@R;N%Mc*?!9FZK{oVps2R~%$x=4thNww@X%*ws|V(zab-j1lve9aU{7cFcb{Hga&)s(Sg;ykZh`l5k!u|%JH zzIUQeENV4C`k2_KHANlRhW3&^M~4?YRD5i#R3F% zRg>oaV195kBIP?W8`Hy+HbMk%cReyOFa?NU~<=DIAv=!Qi-pSei zx~_a-{_$D-Vpob|&C?jZIP8B)WqGeX1ZU^_!Ck=oU`uAHqY=`9_nY81m+ugLw$iKz zy44c1T%scMnj&0J)3ir$6`&iKiF$f8%?ZPTN}av_dyx7`Ddj5GQh&q+)1WfB}r({`gZ$Ep>W zsPDJ>hIJ99_SP@8N{6V4c0kyssmEsp#`ElpMf*lU6Pt?BAR1fP<+lVf;ado_96njtDGig)q!R}J* zY;~_htM9D4aJ-@y-$iaWXVb39F8iz!r4HnMVVO@K!@~39qKvY%3UV>F&xX`;j@cI8 z`6+rd)%>zhypU{|KwN{9MPB!+2HzKyD}!{c*V(Kn0w+sO6VxoN(8N#NV2} zxqD6bMWeKyD4d;Rb-6|GFuBUob-+8t$NqUPv3t!>TR&O3YGzJDsn`1BBx-eOUg@js zz+)?F_WY0s&pl(4Ja0GTwp<)oNKdO}ZnDtTy%owTbkN*Z=B8xjEz&hZ8V5{-ii$zs z_jh}XLp`c)&QE$1Bn1a9Jglajq?VFTK2Dq&=R3b^DLnDJGHs8n=oOz`5rK~9U$da- z<=kbmUBsoyOo~Rz#MHBcuOu?@(!w?a8xl!HKWJZH2uezL#eK_)1+5@Pui0?+&>4t( zO?bmz^Dk}G-mbBe2!i;rrnRJjZ%U^IYy(e~ep%IOZsBm662?m&Trtb*RPd@iI(;*v zeb7#+#k_AR&2m>w<4VjA$Jn%whVi{tWsm!guLm2`eWi7T?-4m%^wqM#W$k#>6l%=&C0xow19_;#$hj$*ca>k^5SI)K7MG zT>TIyciPZJ8J37_?5O=bcQwU3De7Qig(HLauA<8?dIk!j{KlD7pI#g={??`)Q;O^_ zKpt8)JJZ)3pYQ(4L1pOvs1I|E5tE8Uw!1@i`IWra8c!DcR?LR;Qb;LMYl@3*vd?C3qb>YS}dJ%2M{Ai(qZa0YfmHxsrEG%06LG0qg1w|Us zS3~EQbKb;!)ITSd${q+?OS!BM2uvzeYLM?`R4Y3%P&46xRq#lmh6P;-6J0>N6}{3O z+3&)+ht3JyI;8258aGUc=d&B5PTwfz$-QNR;OBeuYcr(RKYu+SLI3`a=xBz; z>028q43?c>?8iE{`qinAIhGu!edp-pnR$`11Ci2r$IzM*nrv@h!-eW9osbf5I*AAE z$R)SAe#7_Q>kgUjMZYZfSFMW?L6-IxOm7I9uGfiWMH!DJ;y=+rD@ac*@!>qJ7o!_4mDLQ^DL+hiwMWnzz%11auzqikzuS z+;fw~RRE$p!FQ60k-KR@OjuV9N_Abqjy~(oK`7_>7Sy=fB|YC84hM<_Pxi>q*H@js zt3Nn7Vsled?fj@*ZWA{l&EQNfw>sO4b(*DRn~RJHnKm}%ypQrR$E7ziWs_u)cLPmMOWNPey<%z?@;t8bG&Kx zc(|)bU_nRtY|Ap^9%9H3x1qBZ!DeYULaZ>W@%;EomR+?ZsFT40zbNnilV2dT_ZYv3 zCpzxpmBp9c)vY%1k4MucGWLlFzO#CGn@L4G&}2p1eY5dSwd$z75#Jlj@GnCdcBQvQ zci(9Cz1_Y@Iur4%Ko3^Ifwe`uvC&a|8ol*1o~hVcH-GL;#iFx|uZ@EGeJ*X~dil-y zpBz=|>x{}aJZy%E*_rJZ?QtFjI$zVSdKvRfJXw06L8Wwbj{Zs)Gu%}_wkg)e>*eSJ zY`5pVPTI?@yNFQf1SuGaMi!! zIz6i3ohzzydGGm=R@p->XcP0`hS?zCiNpUG8FtZ>Kl;zy#`+Q#MJDpRd?i!ZZ&dUY0!XMG%wdAJNz zwO72!=lXGkPxNDX$k1sEt!E9Iy#p=Ixjde`Olj3ya1WbBghr?B#|}p*mJQPywDYL# zMMn(2705T}Z8T7msgkK5%L?E%ik_`$^Fx#Aua>>Ocf=m47LC7qUUTEIh3m`8qIy+w z%@;Z4{bOyVwJtEuB)O!#UHg5KUD=nku9WCn!)q94-cwB~v=J6XI#dfIo~CG`{W#NS z7ie!N#=4h2#yZf%(HZ-_C*$41UwhugATDQIF7-4~73~%*C~GLtVF+uSPqwkrBe?BNw(qc=kX?0Pgi4QKc3=vP0uYKG4JB^?CZwrRNd}^yzbY;CBb0w zdi7>fopb(X-^j`Z5#~rtbmfBtF*Y%Tho{=9jM9Yw28}eiMhTm&+B*jG1Fo+U4_^AA z_;ldMaI;#HaTWK~tA&ni^E%0$$GywB-`-g}z3{~(7M>UAC(`-#E-UALxh%^EfwWW_ zzERNi=eCKQWUn*i#wXs2FR2XPb=`0?p@~}-V^|K4ycli*U%&B1AYHCf^C$bq>Er45 zX9quM9%88J+m~g0({R_V7w^NW?}i4}nYIyvdtEEJ6@;o&Tl_@$PQ=TG#o@f&&Ez5; zE~^&l`m>Y@u8yB)x8651ZBHuT@1jc$c*mc{BKJ8bm!Ei-9G%frd@=cEv*wjs9t7Of zbVrgQXKF|O@y4=^bIJn({T&=rw@ChHO4MRt7dyDbH>c-a6zLuXo2?_UwN}CvFtLvr z&h$4-zN&UBR#~1%r+%A9mEl#SJy_Ok<#t-8RClqJTU;W>>*J8^WycC{BlA5$=kpIS zwyqw%u~af?Ix^@?C&@)DAI>bi)N^}H{Z&$ah)V5FZG9Kw2qlyB&+kEWglm#S|INVc~@DuNIY~r>8#NW z5vLn`j(tJJ#l(LHXsiu7IXt2rMwvuqUlWj8iu$ZkfC zhxPHUg>PKoW2PfyV8U6lPfu~LXdf8yi!dqqiRL`lEG)%$H=IqyEHljgisYr@Y9j*^ zChH`01^4|LS5&K-^UYzO^UMVv`^+B|s#>iMSCNi59gJN0Ac(%-_eJXc3S;>l#`x~T z1xQ}OVLj&gCp>BLUxsJ(vi4;uD4ulK&{fcE9*SWM4~C}q#l(aN`%?=pbQqLn`nfyb zL>EA--PoX!Ejd%yzR}6o#^C@Yw)USxj0uM$V8X-mh_XKx9Ok7EQP2&pkE