arelle-release 2.17.1__py3-none-any.whl → 2.37.71__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- arelle/Aspect.py +6 -3
- arelle/BetaFeatures.py +3 -0
- arelle/Cntlr.py +117 -413
- arelle/CntlrCmdLine.py +364 -227
- arelle/CntlrQuickBooks.py +4 -2
- arelle/CntlrWebMain.py +179 -119
- arelle/CntlrWinMain.py +342 -124
- arelle/DialogAbout.py +1 -1
- arelle/DialogArcroleGroup.py +1 -1
- arelle/DialogFind.py +1 -1
- arelle/DialogFormulaParameters.py +2 -2
- arelle/DialogLanguage.py +45 -36
- arelle/DialogNewFactItem.py +1 -1
- arelle/DialogOpenArchive.py +30 -34
- arelle/DialogPackageManager.py +11 -8
- arelle/DialogPluginManager.py +43 -89
- arelle/DialogRssWatch.py +2 -2
- arelle/DialogURL.py +1 -1
- arelle/DialogUserPassword.py +1 -1
- arelle/DisclosureSystem.py +69 -1
- arelle/ErrorManager.py +321 -0
- arelle/FileSource.py +201 -99
- arelle/FunctionFn.py +44 -5
- arelle/FunctionIxt.py +16 -13
- arelle/FunctionUtil.py +1 -1
- arelle/FunctionXfi.py +68 -24
- arelle/FunctionXs.py +1 -1
- arelle/HtmlUtil.py +5 -4
- arelle/LeiUtil.py +63 -43
- arelle/LinkbaseType.py +94 -0
- arelle/LocalViewer.py +8 -2
- arelle/Locale.py +239 -79
- arelle/ModelDocument.py +180 -48
- arelle/ModelDtsObject.py +32 -27
- arelle/ModelFormulaObject.py +14 -6
- arelle/ModelInstanceObject.py +43 -14
- arelle/ModelManager.py +6 -1
- arelle/ModelObject.py +12 -8
- arelle/ModelObjectFactory.py +18 -2
- arelle/ModelRelationshipSet.py +46 -3
- arelle/ModelRenderingObject.py +899 -951
- arelle/ModelRssItem.py +2 -4
- arelle/ModelTestcaseObject.py +41 -4
- arelle/ModelValue.py +42 -14
- arelle/ModelVersReport.py +1 -1
- arelle/ModelXbrl.py +133 -273
- arelle/PackageManager.py +202 -176
- arelle/PluginManager.py +551 -239
- arelle/PluginUtils.py +54 -0
- arelle/PrototypeInstanceObject.py +53 -12
- arelle/PythonUtil.py +166 -25
- arelle/RuntimeOptions.py +32 -18
- arelle/SocketUtils.py +3 -0
- arelle/SystemInfo.py +1 -1
- arelle/TkTableWrapper.py +33 -5
- arelle/UITkTable.py +27 -21
- arelle/Updater.py +7 -3
- arelle/UrlUtil.py +6 -2
- arelle/Validate.py +596 -402
- arelle/ValidateDuplicateFacts.py +584 -0
- arelle/ValidateFileSource.py +38 -0
- arelle/ValidateFilingText.py +46 -29
- arelle/ValidateInfoset.py +104 -32
- arelle/ValidateUtr.py +31 -4
- arelle/ValidateXbrl.py +144 -120
- arelle/ValidateXbrlCalcs.py +51 -66
- arelle/ValidateXbrlDTS.py +98 -29
- arelle/Version.py +2 -7
- arelle/ViewFile.py +2 -0
- arelle/ViewFileDTS.py +7 -2
- arelle/ViewFileFactList.py +1 -1
- arelle/ViewFileFactTable.py +4 -4
- arelle/ViewFileRelationshipSet.py +36 -19
- arelle/ViewFileRenderedGrid.py +164 -753
- arelle/ViewFileRenderedLayout.py +174 -0
- arelle/ViewFileRenderedStructure.py +108 -0
- arelle/ViewWinDTS.py +4 -1
- arelle/ViewWinFactList.py +1 -1
- arelle/ViewWinFactTable.py +1 -1
- arelle/ViewWinRelationshipSet.py +14 -8
- arelle/ViewWinRenderedGrid.py +397 -287
- arelle/ViewWinRssFeed.py +4 -0
- arelle/ViewWinTree.py +15 -9
- arelle/ViewWinXml.py +1 -1
- arelle/WebCache.py +510 -272
- arelle/XbrlConst.py +202 -196
- arelle/XbrlUtil.py +2 -1
- arelle/XhtmlValidate.py +9 -23
- arelle/XmlUtil.py +24 -19
- arelle/XmlValidate.py +95 -67
- arelle/XmlValidateParticles.py +4 -4
- arelle/_version.py +33 -3
- arelle/api/Session.py +183 -0
- arelle/config/creationSoftwareNames.json +24 -10
- arelle/config/disclosuresystems.xml +1 -1
- arelle/config/disclosuresystems.xsd +3 -0
- arelle/config/sbr-text-formatting.xsd +737 -0
- arelle/conformance/CSVTestcaseLoader.py +102 -0
- arelle/formula/FactAspectsCache.py +10 -4
- arelle/formula/ValidateFormula.py +82 -194
- arelle/formula/XPathContext.py +42 -28
- arelle/formula/XPathParser.py +15 -9
- arelle/locale/ar_EG/LC_MESSAGES/ar_EG.po +3 -4
- arelle/locale/messages.pot +1 -2
- arelle/locale/ru/LC_MESSAGES/ru.po +2 -2
- arelle/logging/formatters/LogFormatter.py +47 -0
- arelle/logging/handlers/LogHandlerWithXml.py +94 -0
- arelle/logging/handlers/LogToBufferHandler.py +20 -0
- arelle/logging/handlers/LogToPrintHandler.py +41 -0
- arelle/logging/handlers/LogToXmlHandler.py +244 -0
- arelle/logging/handlers/StructuredMessageLogHandler.py +74 -0
- arelle/model/CommentBase.py +3 -0
- arelle/model/ElementBase.py +3 -0
- arelle/model/PIBase.py +3 -0
- arelle/model/__init__.py +3 -0
- arelle/oim/Load.py +2869 -0
- arelle/oim/Validate.py +155 -0
- arelle/oim/xml/Save.py +21 -0
- arelle/packages/PackageConst.py +7 -0
- arelle/packages/PackageType.py +13 -0
- arelle/packages/PackageUtils.py +22 -0
- arelle/packages/PackageValidation.py +200 -0
- arelle/packages/report/DetectReportPackage.py +13 -0
- arelle/packages/report/ReportPackage.py +265 -0
- arelle/packages/report/ReportPackageConst.py +79 -0
- arelle/packages/report/ReportPackageValidator.py +207 -0
- arelle/plugin/EdgarRendererAllReports.py +12 -12
- arelle/plugin/OimTaxonomy/ModelValueMore.py +15 -0
- arelle/plugin/OimTaxonomy/ValidateDTS.py +484 -0
- arelle/plugin/OimTaxonomy/ViewXbrlTxmyObj.py +239 -0
- arelle/plugin/OimTaxonomy/XbrlAbstract.py +16 -0
- arelle/plugin/OimTaxonomy/XbrlConcept.py +68 -0
- arelle/plugin/OimTaxonomy/XbrlConst.py +261 -0
- arelle/plugin/OimTaxonomy/XbrlCube.py +91 -0
- arelle/plugin/OimTaxonomy/XbrlDimension.py +38 -0
- arelle/plugin/OimTaxonomy/XbrlDts.py +152 -0
- arelle/plugin/OimTaxonomy/XbrlEntity.py +16 -0
- arelle/plugin/OimTaxonomy/XbrlGroup.py +22 -0
- arelle/plugin/OimTaxonomy/XbrlImportedTaxonomy.py +22 -0
- arelle/plugin/OimTaxonomy/XbrlLabel.py +31 -0
- arelle/plugin/OimTaxonomy/XbrlNetwork.py +100 -0
- arelle/plugin/OimTaxonomy/XbrlProperty.py +28 -0
- arelle/plugin/OimTaxonomy/XbrlReference.py +33 -0
- arelle/plugin/OimTaxonomy/XbrlReport.py +24 -0
- arelle/plugin/OimTaxonomy/XbrlTableTemplate.py +35 -0
- arelle/plugin/OimTaxonomy/XbrlTaxonomy.py +93 -0
- arelle/plugin/OimTaxonomy/XbrlTaxonomyObject.py +154 -0
- arelle/plugin/OimTaxonomy/XbrlTransform.py +17 -0
- arelle/plugin/OimTaxonomy/XbrlTypes.py +23 -0
- arelle/plugin/OimTaxonomy/XbrlUnit.py +17 -0
- arelle/plugin/OimTaxonomy/__init__.py +1037 -0
- arelle/plugin/OimTaxonomy/resources/iso4217.json +4479 -0
- arelle/plugin/OimTaxonomy/resources/oim-taxonomy-schema.json +935 -0
- arelle/plugin/OimTaxonomy/resources/ref.json +333 -0
- arelle/plugin/OimTaxonomy/resources/transform-types.json +2481 -0
- arelle/plugin/OimTaxonomy/resources/types.json +727 -0
- arelle/plugin/OimTaxonomy/resources/utr.json +3046 -0
- arelle/plugin/OimTaxonomy/resources/xbrlSpec.json +1082 -0
- arelle/plugin/formulaLoader.py +3 -3
- arelle/plugin/formulaSaver.py +4 -4
- arelle/plugin/inlineXbrlDocumentSet.py +331 -102
- arelle/plugin/internet/proxyNTLM/HTTPNtlmAuthHandler.py +1 -1
- arelle/plugin/loadFromExcel.py +13 -10
- arelle/plugin/loadFromOIM.py +16 -3096
- arelle/plugin/logging/saveMessages.py +1 -1
- arelle/plugin/saveHtmlEBAtables.py +293 -213
- arelle/plugin/saveLoadableOIM.py +652 -361
- arelle/plugin/saveOIMTaxonomy.py +311 -0
- arelle/plugin/streamingExtensions.py +1 -1
- arelle/plugin/systemInfo.py +46 -0
- arelle/plugin/transforms/tester.py +4 -4
- arelle/plugin/validate/CIPC/Const.py +18 -0
- arelle/plugin/validate/CIPC/__init__.py +34 -13
- arelle/plugin/validate/DBA/DisclosureSystems.py +12 -0
- arelle/plugin/validate/DBA/PluginValidationDataExtension.py +165 -0
- arelle/plugin/validate/DBA/ValidationPluginExtension.py +545 -0
- arelle/plugin/validate/DBA/__init__.py +49 -0
- arelle/plugin/validate/DBA/resources/config.xml +21 -0
- arelle/plugin/validate/DBA/rules/__init__.py +323 -0
- arelle/plugin/validate/DBA/rules/fr.py +1377 -0
- arelle/plugin/validate/DBA/rules/tc.py +45 -0
- arelle/plugin/validate/DBA/rules/th.py +172 -0
- arelle/plugin/validate/DBA/rules/tm.py +351 -0
- arelle/plugin/validate/DBA/rules/tr.py +373 -0
- arelle/plugin/validate/EBA/__init__.py +11 -12
- arelle/plugin/validate/EDINET/Constants.py +208 -0
- arelle/plugin/validate/EDINET/ContextRequirement.py +58 -0
- arelle/plugin/validate/EDINET/ControllerPluginData.py +298 -0
- arelle/plugin/validate/EDINET/CoverItemRequirements.py +42 -0
- arelle/plugin/validate/EDINET/DeiRequirements.py +118 -0
- arelle/plugin/validate/EDINET/DisclosureSystems.py +1 -0
- arelle/plugin/validate/EDINET/FilingFormat.py +275 -0
- arelle/plugin/validate/EDINET/FormType.py +134 -0
- arelle/plugin/validate/EDINET/ManifestInstance.py +236 -0
- arelle/plugin/validate/EDINET/PluginValidationDataExtension.py +640 -0
- arelle/plugin/validate/EDINET/ReportFolderType.py +162 -0
- arelle/plugin/validate/EDINET/Statement.py +139 -0
- arelle/plugin/validate/EDINET/TableOfContentsBuilder.py +493 -0
- arelle/plugin/validate/EDINET/UploadContents.py +48 -0
- arelle/plugin/validate/EDINET/ValidationPluginExtension.py +64 -0
- arelle/plugin/validate/EDINET/__init__.py +109 -0
- arelle/plugin/validate/EDINET/resources/config.xml +22 -0
- arelle/plugin/validate/EDINET/resources/cover-item-requirements.json +793 -0
- arelle/plugin/validate/EDINET/resources/dei-requirements.csv +27 -0
- arelle/plugin/validate/EDINET/resources/edinet-taxonomies.xml +62 -0
- arelle/plugin/validate/EDINET/rules/contexts.py +547 -0
- arelle/plugin/validate/EDINET/rules/edinet.py +1991 -0
- arelle/plugin/validate/EDINET/rules/frta.py +301 -0
- arelle/plugin/validate/EDINET/rules/gfm.py +2394 -0
- arelle/plugin/validate/EDINET/rules/manifests.py +88 -0
- arelle/plugin/validate/EDINET/rules/upload.py +1370 -0
- arelle/plugin/validate/ESEF/Const.py +16 -75
- arelle/plugin/validate/ESEF/Dimensions.py +2 -2
- arelle/plugin/validate/ESEF/ESEF_2021/DTS.py +6 -1
- arelle/plugin/validate/ESEF/ESEF_2021/Image.py +7 -4
- arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py +80 -57
- arelle/plugin/validate/ESEF/ESEF_Current/DTS.py +60 -22
- arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py +272 -133
- arelle/plugin/validate/ESEF/Util.py +5 -19
- arelle/plugin/validate/ESEF/__init__.py +61 -46
- arelle/plugin/validate/ESEF/resources/authority-validations.json +120 -10
- arelle/plugin/validate/ESEF/resources/config.xml +44 -3
- arelle/plugin/validate/FERC/__init__.py +31 -18
- arelle/plugin/validate/FERC/config.xml +18 -18
- arelle/plugin/validate/NL/DisclosureSystems.py +19 -3
- arelle/plugin/validate/NL/PluginValidationDataExtension.py +710 -7
- arelle/plugin/validate/NL/ValidationPluginExtension.py +117 -12
- arelle/plugin/validate/NL/__init__.py +21 -10
- arelle/plugin/validate/NL/resources/config.xml +27 -6
- arelle/plugin/validate/NL/rules/br_kvk.py +81 -21
- arelle/plugin/validate/NL/rules/fg_nl.py +292 -0
- arelle/plugin/validate/NL/rules/fr_kvk.py +60 -7
- arelle/plugin/validate/NL/rules/fr_nl.py +705 -24
- arelle/plugin/validate/NL/rules/nl_kvk.py +2182 -0
- arelle/plugin/validate/ROS/DisclosureSystems.py +1 -0
- arelle/plugin/validate/ROS/PluginValidationDataExtension.py +109 -0
- arelle/plugin/validate/ROS/ValidationPluginExtension.py +27 -0
- arelle/plugin/validate/ROS/__init__.py +28 -341
- arelle/plugin/validate/ROS/resources/config.xml +20 -0
- arelle/plugin/validate/ROS/rules/__init__.py +56 -0
- arelle/plugin/validate/ROS/rules/ros.py +393 -0
- arelle/plugin/validate/UK/ValidateUK.py +1372 -0
- arelle/plugin/validate/{HMRC → UK}/__init__.py +195 -189
- arelle/plugin/validate/{HMRC → UK}/config.xml +1 -1
- arelle/plugin/xbrlDB/SqlDb.py +1 -1
- arelle/plugin/xbrlDB/XbrlOpenSqlDB.py +5 -5
- arelle/plugin/xbrlDB/XbrlPublicPostgresDB.py +1 -1
- arelle/plugin/xbrlDB/XbrlSemanticJsonDB.py +1 -1
- arelle/plugin/xbrlDB/XbrlSemanticRdfDB.py +1 -1
- arelle/plugin/xbrlDB/__init__.py +4 -1
- arelle/{RenderingEvaluator.py → rendering/RenderingEvaluator.py} +120 -99
- arelle/rendering/RenderingLayout.py +476 -0
- arelle/rendering/RenderingResolution.py +814 -0
- arelle/resources/cache/http/www.eurofiling.info/eu/fr/xbrl/ext/filing-indicators.xsd +20 -0
- arelle/resources/cache/http/www.w3.org/2001/03/xml.xsd +117 -0
- arelle/resources/cache/http/www.w3.org/2001/XMLSchema.xsd +2534 -0
- arelle/resources/cache/http/www.w3.org/2001/xml.xsd +287 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xbrl-instance-2003-12-31.xsd +779 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xbrl-linkbase-2003-12-31.xsd +486 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xl-2003-12-31.xsd +251 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xlink-2003-12-31.xsd +121 -0
- arelle/resources/cache/http/www.xbrl.org/2004/ref-2004-08-10.xsd +129 -0
- arelle/resources/cache/http/www.xbrl.org/2005/xbrldt-2005.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2006/ref-2006-02-27.xsd +120 -0
- arelle/resources/cache/http/www.xbrl.org/2006/xbrldi-2006.xsd +41 -0
- arelle/resources/cache/http/www.xbrl.org/2008/boolean-filter.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/concept-filter.xsd +127 -0
- arelle/resources/cache/http/www.xbrl.org/2008/conformance.xsd +116 -0
- arelle/resources/cache/http/www.xbrl.org/2008/conformanceFunction.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/consistency-assertion.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/dimension-filter.xsd +86 -0
- arelle/resources/cache/http/www.xbrl.org/2008/entity-filter.xsd +92 -0
- arelle/resources/cache/http/www.xbrl.org/2008/existence-assertion.xsd +44 -0
- arelle/resources/cache/http/www.xbrl.org/2008/formula.xsd +261 -0
- arelle/resources/cache/http/www.xbrl.org/2008/function.xsd +90 -0
- arelle/resources/cache/http/www.xbrl.org/2008/general-filter.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-label.xsd +80 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-link.xsd +81 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-reference.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +788 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +488 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xl-2003-12-31.xsd +248 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xlink-2003-12-31.xsd +117 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xframes-1.xsd +166 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-applet-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-attribs-1.xsd +72 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-base-1.xsd +36 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-form-1.xsd +195 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-table-1.xsd +169 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-model-1.xsd +376 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-module-redefines-1.xsd +61 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-modules-1.xsd +259 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-bdo-1.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkphras-1.xsd +161 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkpres-1.xsd +37 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkstruct-1.xsd +49 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-charent-1.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-copyright-1.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-csismap-1.xsd +96 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-datatypes-1.xsd +128 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-edit-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-events-1.xsd +130 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-form-1.xsd +326 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-frames-1.xsd +113 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-framework-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-hypertext-1.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-iframe-1.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-image-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlphras-1.xsd +163 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlpres-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstruct-1.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstyle-1.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-legacy-1.xsd +97 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-link-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-list-1.xsd +99 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-meta-1.xsd +42 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-misc-1.xsd +441 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-nameident-1.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-notations-1.xsd +69 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-object-1.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-param-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-pres-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-1.xsd +171 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-basic-1.xsd +89 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-script-1.xsd +70 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ssismap-1.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-struct-1.xsd +112 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-style-1.xsd +52 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-table-1.xsd +272 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-target-1.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-text-1.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-model-1.xsd +677 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-module-redefines-1.xsd +335 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-modules-1.xsd +528 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11.xsd +104 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml2.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-2.xsd +74 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-2.xsd +75 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-1.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-2.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-handlers-2.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-definitions.xsd +225 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-model.xsd +681 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-modules.xsd +535 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0.xsd +40 -0
- arelle/resources/cache/http/www.xbrl.org/2008/match-filter.xsd +94 -0
- arelle/resources/cache/http/www.xbrl.org/2008/period-filter.xsd +86 -0
- arelle/resources/cache/http/www.xbrl.org/2008/registry.xsd +145 -0
- arelle/resources/cache/http/www.xbrl.org/2008/relative-filter.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/segment-scenario-filter.xsd +41 -0
- arelle/resources/cache/http/www.xbrl.org/2008/tuple-filter.xsd +83 -0
- arelle/resources/cache/http/www.xbrl.org/2008/unit-filter.xsd +58 -0
- arelle/resources/cache/http/www.xbrl.org/2008/validation.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2008/value-assertion.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/value-filter.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/variable.xsd +240 -0
- arelle/resources/cache/http/www.xbrl.org/2010/aspect-cover-filter.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2010/concept-relation-filter.xsd +108 -0
- arelle/resources/cache/http/www.xbrl.org/2010/custom-function-implementation.xsd +71 -0
- arelle/resources/cache/http/www.xbrl.org/2010/generic-message.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2010/validation-message.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +788 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +488 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xl-2003-12-31.xsd +248 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xlink-2003-12-31.xsd +117 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xframes-1.xsd +166 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-applet-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-attribs-1.xsd +72 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-base-1.xsd +36 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-form-1.xsd +195 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-table-1.xsd +169 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-model-1.xsd +376 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-module-redefines-1.xsd +61 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-modules-1.xsd +259 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-bdo-1.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkphras-1.xsd +161 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkpres-1.xsd +37 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkstruct-1.xsd +49 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-charent-1.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-copyright-1.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-csismap-1.xsd +96 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-datatypes-1.xsd +128 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-edit-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-events-1.xsd +130 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-form-1.xsd +326 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-frames-1.xsd +113 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-framework-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-hypertext-1.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-iframe-1.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-image-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlphras-1.xsd +163 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlpres-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstruct-1.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstyle-1.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-legacy-1.xsd +97 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-link-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-list-1.xsd +99 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-meta-1.xsd +42 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-misc-1.xsd +441 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-nameident-1.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-notations-1.xsd +69 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-object-1.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-param-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-pres-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-1.xsd +171 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-basic-1.xsd +89 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-script-1.xsd +70 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ssismap-1.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-struct-1.xsd +112 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-style-1.xsd +52 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-table-1.xsd +272 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-target-1.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-text-1.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-model-1.xsd +677 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-module-redefines-1.xsd +335 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-modules-1.xsd +528 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11.xsd +104 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml2.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-2.xsd +74 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-2.xsd +75 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-1.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-2.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-handlers-2.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-definitions.xsd +252 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-model.xsd +681 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-modules.xsd +535 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1.xsd +40 -0
- arelle/resources/cache/http/www.xbrl.org/2013/match-filter.xsd +94 -0
- arelle/resources/cache/http/www.xbrl.org/2013/preferred-label.xsd +12 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-base.xsd +142 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-details.xsd +143 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-use.xsd +64 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-dimensions.xsd +162 -0
- arelle/resources/cache/http/www.xbrl.org/2014/extensible-enumerations.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2014/table.xsd +356 -0
- arelle/resources/cache/http/www.xbrl.org/2014/tablemodel.xsd +156 -0
- arelle/resources/cache/http/www.xbrl.org/2016/assertion-severity.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2016/severities.xml +21 -0
- arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package-catalog.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package.xsd +154 -0
- arelle/resources/cache/http/www.xbrl.org/2022/assertion-severity.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2022/severities.xml +21 -0
- arelle/resources/cache/http/www.xbrl.org/dtr/type/nonNumeric-2009-12-16.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/dtr/type/numeric-2009-12-16.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/accounting-arcrole-2023-01-04.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/deprecated-2009-12-16.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd +14 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd +13 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/jpfr-arcrole-2007-11-07.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/parent-child-2013-09-19.xsd +12 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/deprecated-2009-12-16.xsd +17 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/jpfr-role-2007-11-07.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2008-03-31.xsd +30 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2009-12-16.xsd +33 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negative-2009-12-16.xsd +25 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/net-2009-12-16.xsd +13 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/positive-2009-12-16.xsd +25 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/property-2022-09-28.xsd +15 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/reference-2009-12-16.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/restated-2006-02-21.xsd +19 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-01-30/utr.xml +4543 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-10-31/utr.xml +4510 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-11-30/utr.xml +4567 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2013-02-28/utr.xml +5180 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2013-05-17/utr.xml +5349 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2016-08-10/utr.xml +5363 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2017-07-12/utr.xml +6164 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2021-02-16/utr.xml +6370 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2021-12-08/utr.xml +6493 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2022-02-16/utr.xml +6551 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2022-07-20/utr.xml +6638 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2023-12-20/utr.xml +6680 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2024-01-31/utr.xml +6680 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2024-10-22/utr.xml +6693 -0
- arelle/resources/cache/http/www.xbrl.org/utr/utr.xml +6693 -0
- arelle/resources/cache/https/www.xbrl.org/2005/conformance.xsd +87 -0
- arelle/resources/cache/https/www.xbrl.org/2020/extensible-enumerations-2.0.xsd +51 -0
- arelle/resources/cache/https/www.xbrl.org/2023/calculation-1.1.xsd +27 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2020-01-21/types.xsd +812 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2022-03-31/types.xsd +847 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2024-01-31/types.xsd +897 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-def.xml +68 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-label.xml +84 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators.xsd +67 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/libTktable2.11.so +0 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/pkgIndex.tcl +3 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/libTktable2.11.dylib +0 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/libTktable2.11.dylib +0 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/Tktable.dll +0 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/tkTable.tcl +825 -0
- arelle/typing.py +9 -4
- arelle/utils/Contexts.py +38 -0
- arelle/utils/EntryPointDetection.py +139 -0
- arelle/utils/Equivalence.py +22 -0
- arelle/utils/{validate/PluginValidationData.py → PluginData.py} +5 -2
- arelle/utils/PluginHooks.py +256 -5
- arelle/utils/Units.py +36 -0
- arelle/utils/validate/Decorator.py +5 -3
- arelle/utils/validate/DetectScriptsInXhtml.py +99 -0
- arelle/utils/validate/ESEFImage.py +283 -0
- arelle/utils/validate/Validation.py +9 -1
- arelle/utils/validate/ValidationPlugin.py +74 -11
- arelle/utils/validate/ValidationUtil.py +55 -0
- arelle/webserver/bottle.py +5 -4424
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/METADATA +51 -42
- arelle_release-2.37.71.dist-info/RECORD +697 -0
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/WHEEL +1 -1
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info/licenses}/LICENSE.md +1 -4
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/top_level.txt +0 -1
- arelle/DialogOpenTaxonomyPackage.py +0 -1
- arelle/RenderingResolver.py +0 -624
- arelle/examples/.pydevproject +0 -5
- arelle/examples/CustomLogger.py +0 -43
- arelle/examples/LoadEFMvalidate.py +0 -32
- arelle/examples/LoadSavePreLbCsv.py +0 -26
- arelle/examples/LoadValidate.cs +0 -31
- arelle/examples/LoadValidate.py +0 -36
- arelle/examples/LoadValidateCmdLine.java +0 -69
- arelle/examples/LoadValidatePostedZip.java +0 -57
- arelle/examples/LoadValidateWebService.java +0 -34
- arelle/examples/SaveTableToExelle.py +0 -140
- arelle/examples/TR3toTR4.py +0 -88
- arelle/examples/plugin/bigInstance.py +0 -394
- arelle/examples/plugin/cmdWebServerExtension.py +0 -42
- arelle/examples/plugin/crashTest.py +0 -38
- arelle/examples/plugin/formulaSuiteConverter.py +0 -212
- arelle/examples/plugin/functionsCustom.py +0 -59
- arelle/examples/plugin/hello_dolly.py +0 -64
- arelle/examples/plugin/hello_i18n.pot +0 -26
- arelle/examples/plugin/hello_i18n.py +0 -32
- arelle/examples/plugin/importTestChild1.py +0 -21
- arelle/examples/plugin/importTestChild2.py +0 -22
- arelle/examples/plugin/importTestGrandchild1.py +0 -21
- arelle/examples/plugin/importTestGrandchild2.py +0 -21
- arelle/examples/plugin/importTestImported1.py +0 -23
- arelle/examples/plugin/importTestImported11.py +0 -22
- arelle/examples/plugin/importTestParent.py +0 -48
- arelle/examples/plugin/locale/fr/LC_MESSAGES/hello_i18n.po +0 -25
- arelle/examples/plugin/packagedImportTest/__init__.py +0 -47
- arelle/examples/plugin/packagedImportTest/importTestChild1.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestChild2.py +0 -22
- arelle/examples/plugin/packagedImportTest/importTestGrandchild1.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestGrandchild2.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestImported1.py +0 -24
- arelle/examples/plugin/packagedImportTest/importTestImported11.py +0 -21
- arelle/examples/plugin/packagedImportTest/subdir/importTestImported111.py +0 -21
- arelle/examples/plugin/packagedImportTest/subdir/subsubdir/importTestImported1111.py +0 -21
- arelle/examples/plugin/sakaCalendar.py +0 -215
- arelle/examples/plugin/saveInstanceInfoset.py +0 -121
- arelle/examples/plugin/streamingExtensions.py +0 -335
- arelle/examples/plugin/testcaseCalc11ValidateSetup.py +0 -32
- arelle/examples/plugin/testcaseIxExpectedHtmlFixup.py +0 -45
- arelle/examples/plugin/updateTableLB.py +0 -242
- arelle/examples/plugin/validate/XYZ/DisclosureSystems.py +0 -2
- arelle/examples/plugin/validate/XYZ/PluginValidationDataExtension.py +0 -10
- arelle/examples/plugin/validate/XYZ/ValidationPluginExtension.py +0 -49
- arelle/examples/plugin/validate/XYZ/__init__.py +0 -75
- arelle/examples/plugin/validate/XYZ/resources/config.xml +0 -16
- arelle/examples/plugin/validate/XYZ/rules/rules01.py +0 -109
- arelle/examples/plugin/validate/XYZ/rules/rules02.py +0 -58
- arelle/examples/plugin/validateSchemaLxml.py +0 -156
- arelle/examples/plugin/validateTableInfoset.py +0 -52
- arelle/examples/us-gaap-dei-docType-extraction-frm.xml +0 -90
- arelle/examples/us-gaap-dei-ratio-cash-frm.xml +0 -150
- arelle/plugin/functionsXmlCreation.py +0 -106
- arelle/plugin/instanceInfo.py +0 -306
- arelle/plugin/loadFromOIM-2018.py +0 -1282
- arelle/plugin/objectmaker.py +0 -285
- arelle/plugin/sphinx/FormulaGenerator.py +0 -823
- arelle/plugin/sphinx/SphinxContext.py +0 -404
- arelle/plugin/sphinx/SphinxEvaluator.py +0 -783
- arelle/plugin/sphinx/SphinxMethods.py +0 -1287
- arelle/plugin/sphinx/SphinxParser.py +0 -1093
- arelle/plugin/sphinx/SphinxValidator.py +0 -163
- arelle/plugin/sphinx/US-GAAP Ratios Example.xsr +0 -52
- arelle/plugin/sphinx/__init__.py +0 -285
- arelle/plugin/transforms/SEC/__init__.py +0 -308
- arelle/plugin/transforms/SEC/conf/README.md +0 -39
- arelle/plugin/transforms/SEC/conf/extractTestcase.sh +0 -2
- arelle/plugin/transforms/SEC/conf/extractTestcase.xsl +0 -109
- arelle/plugin/transforms/SEC/conf/runIxtSecTests.sh +0 -16
- arelle/plugin/transforms/SEC/conf/saxon9.jar +0 -0
- arelle/plugin/transforms/SEC/conf/testcase.xml +0 -7117
- arelle/plugin/transforms/SEC/conf/tests.xml +0 -848
- arelle/plugin/transforms/SEC/text2num.py +0 -110
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-boolballotbox.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-countrynameen.xml +0 -65
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-datequarterend.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durday.xml +0 -61
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durhour.xml +0 -69
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durmonth.xml +0 -71
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durweek.xml +0 -70
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durwordsen.xml +0 -56
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-duryear.xml +0 -64
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-edgarprovcountryen.xml +0 -65
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-entityfilercategoryen.xml +0 -63
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-exchnameen.xml +0 -86
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-numwordsen.xml +0 -55
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-stateprovnameen.xml +0 -64
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-yesnoballotbox.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/transform-registry.xml +0 -314
- arelle/plugin/transforms/SEC/transformationRegistry/schema/inlinexbrl-sec-transformation.xsd +0 -418
- arelle/plugin/validate/EFM/Consts.py +0 -362
- arelle/plugin/validate/EFM/DTS.py +0 -569
- arelle/plugin/validate/EFM/Dimensions.py +0 -264
- arelle/plugin/validate/EFM/Document.py +0 -206
- arelle/plugin/validate/EFM/Filing.py +0 -4383
- arelle/plugin/validate/EFM/IsolateSeparateIXDSes.py +0 -19
- arelle/plugin/validate/EFM/MessageNumericId.py +0 -142
- arelle/plugin/validate/EFM/PreCalAlignment.py +0 -324
- arelle/plugin/validate/EFM/Util.py +0 -688
- arelle/plugin/validate/EFM/__init__.py +0 -843
- arelle/plugin/validate/EFM/config.xml +0 -333
- arelle/plugin/validate/EFM/resources/README.md +0 -57
- arelle/plugin/validate/EFM/resources/axiswarnings.json +0 -27
- arelle/plugin/validate/EFM/resources/cef-deprecated-concepts.json +0 -8
- arelle/plugin/validate/EFM/resources/country-deprecated-concepts.json +0 -19
- arelle/plugin/validate/EFM/resources/currency-deprecated-concepts.json +0 -7
- arelle/plugin/validate/EFM/resources/dei-deprecated-concepts.json +0 -8
- arelle/plugin/validate/EFM/resources/dei-validations.json +0 -2884
- arelle/plugin/validate/EFM/resources/dqc-us-rules.json +0 -1389
- arelle/plugin/validate/EFM/resources/ecd-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-16-4.xml +0 -115
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-0-4.xml +0 -300
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-1.xml +0 -304
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-2.xml +0 -290
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-3-1.xml +0 -294
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.1.xml +0 -549
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.2.xml +0 -506
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.3.xml +0 -496
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-1.xml +0 -662
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-2.xml +0 -3761
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-3.xml +0 -3577
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-1.xml +0 -4020
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-2.xml +0 -3320
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-3.xml +0 -2998
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2012.xml +0 -957
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2013.xml +0 -982
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2014.xml +0 -1001
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2015.xml +0 -1076
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2016.xml +0 -120
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-1.xml +0 -3329
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-2.xml +0 -1230
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-3.xml +0 -1113
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-4.xml +0 -1321
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1-preview.xml +0 -1721
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1.xml +0 -1841
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2-2.xml +0 -1450
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2.xml +0 -1429
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-4.xml +0 -1527
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1-1.xml +0 -2049
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1.xml +0 -2065
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-2.xml +0 -1674
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-3.xml +0 -1715
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-all-years.xml +0 -10671
- arelle/plugin/validate/EFM/resources/edgartaxonomies/erxl.xsd +0 -69
- arelle/plugin/validate/EFM/resources/edgartaxonomies/extendedtaxonomies-all-years.xml +0 -18
- arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrs-taxonomies.xml +0 -3126
- arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrstaxonomies-all-years.xml +0 -22
- arelle/plugin/validate/EFM/resources/ex26-validations.json +0 -255
- arelle/plugin/validate/EFM/resources/exch-deprecated-concepts.json +0 -163
- arelle/plugin/validate/EFM/resources/ifrs-full-deprecated-concepts.json +0 -204
- arelle/plugin/validate/EFM/resources/invest-deprecated-concepts.json +0 -99
- arelle/plugin/validate/EFM/resources/ixbrl-transform-registries.json +0 -16
- arelle/plugin/validate/EFM/resources/naics-deprecated-concepts.json +0 -295
- arelle/plugin/validate/EFM/resources/oef-deprecated-concepts.json +0 -59
- arelle/plugin/validate/EFM/resources/other-standard-taxonomies.json +0 -12
- arelle/plugin/validate/EFM/resources/rr-deprecated-concepts.json +0 -14
- arelle/plugin/validate/EFM/resources/rxp-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/shr-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/sic-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/signwarnings.json +0 -112
- arelle/plugin/validate/EFM/resources/srt-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/stpr-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/taxonomy-compatibility.json +0 -79
- arelle/plugin/validate/EFM/resources/us-gaap-deprecated-concepts.json +0 -2886
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2020.json +0 -29068
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2021.json +0 -29598
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2022.json +0 -29141
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2023.json +0 -29400
- arelle/plugin/validate/EFM/resources/vip-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/tools/CheckTxmyRefs.py +0 -180
- arelle/plugin/validate/EFM-htm/Const.py +0 -205
- arelle/plugin/validate/EFM-htm/__init__.py +0 -217
- arelle/plugin/validate/EFM-htm/config.xml +0 -17
- arelle/plugin/validate/EFM-htm/resources/efm-htm.dtd +0 -664
- arelle/plugin/validate/ESEF/ESEF_Current/Image.py +0 -199
- arelle/plugin/validate/ESEF_2022/__init__.py +0 -47
- arelle/plugin/validate/GFM/__init__.py +0 -59
- arelle/plugin/validate/GFM/config.xml +0 -82
- arelle/plugin/validate/SBRnl/CustomLoader.py +0 -19
- arelle/plugin/validate/SBRnl/DTS.py +0 -305
- arelle/plugin/validate/SBRnl/Dimensions.py +0 -357
- arelle/plugin/validate/SBRnl/Document.py +0 -799
- arelle/plugin/validate/SBRnl/Filing.py +0 -467
- arelle/plugin/validate/SBRnl/__init__.py +0 -75
- arelle/plugin/validate/SBRnl/config.xml +0 -26
- arelle/plugin/validate/SBRnl/sbr-nl-taxonomies.xml +0 -754
- arelle/plugin/validate/USBestPractices.py +0 -570
- arelle/plugin/validate/USCorpAction.py +0 -557
- arelle/plugin/validate/USSecTagging.py +0 -337
- arelle/plugin/validate/XDC/__init__.py +0 -77
- arelle/plugin/validate/XDC/config.xml +0 -20
- arelle/plugin/validate/XFsyntax/__init__.py +0 -64
- arelle/plugin/validate/XFsyntax/xf.py +0 -2227
- arelle/plugin/validate/__init__.py +0 -20
- arelle/plugin/validate/calc2.py +0 -536
- arelle/plugin/validateSBRnl.py +0 -530
- arelle/scripts-macOS/startWebServer.command +0 -3
- arelle/scripts-unix/startWebServer.sh +0 -1
- arelle/scripts-windows/startWebServer.bat +0 -5
- arelle_release-2.17.1.dist-info/RECORD +0 -676
- tests/__init__.py +0 -0
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj +0 -30
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Tests.cs +0 -381
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Usings.cs +0 -1
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest.sln +0 -31
- tests/integration_tests/ui_tests/resources/workiva.zip +0 -0
- tests/integration_tests/validation/README.md +0 -50
- tests/integration_tests/validation/conformance_suite_config.py +0 -59
- tests/integration_tests/validation/conformance_suite_configs.py +0 -63
- tests/integration_tests/validation/conformance_suite_configurations/efm_current.py +0 -261
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2021.py +0 -85
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2022.py +0 -90
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2021.py +0 -15
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2022.py +0 -15
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_2_1.py +0 -34
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_calculations_1_1.py +0 -40
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_dimensions_1_0.py +0 -28
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_1_0.py +0 -10
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_2_0.py +0 -10
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0.py +0 -9
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_assertion_severity_2_0.py +0 -9
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_function_registry.py +0 -14
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_ixbrl_1_1.py +0 -22
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_link_role_registry_1_0.py +0 -11
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_oim_1_0.py +0 -19
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_table_linkbase_1_0.py +0 -296
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_taxonomy_packages_1_0.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_3.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_4.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_5.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_malformed_1_0.py +0 -31
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_registry_1_0.py +0 -22
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_structure_1_0.py +0 -18
- tests/integration_tests/validation/conftest.py +0 -24
- tests/integration_tests/validation/discover_tests.py +0 -22
- tests/integration_tests/validation/download_conformance_suites.py +0 -47
- tests/integration_tests/validation/run_conformance_suites.py +0 -175
- tests/integration_tests/validation/test_conformance_suites.py +0 -14
- tests/integration_tests/validation/validation_util.py +0 -271
- tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-invalid-period.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-missing.xbrl +0 -53
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-multiple.xbrl +0 -60
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-invalid.xbrl +0 -57
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-invalid.xbrl +0 -58
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-invalid.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-missing.xbrl +0 -61
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-invalid-date.xbrl +0 -89
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-invalid-file-extension.xml +0 -56
- tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-invalid-lang.xbrl +0 -56
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-missing-lang.xbrl +0 -55
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-entrypoint.xsd +0 -6
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/index.xml +0 -20
- tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-invalid-period.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-missing.xbrl +0 -53
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-multiple.xbrl +0 -60
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-invalid.xbrl +0 -57
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-invalid.xbrl +0 -58
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-invalid.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-missing.xbrl +0 -61
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-invalid-date.xbrl +0 -89
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-invalid-file-extension.xml +0 -56
- tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-invalid-lang.xbrl +0 -56
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-missing-lang.xbrl +0 -55
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-entrypoint.xsd +0 -6
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-testcases.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/index.xml +0 -20
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-testcases.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt18/index.xml +0 -8
- tests/unit_tests/arelle/conftest.py +0 -16
- tests/unit_tests/arelle/formula/test_fact_aspects_cache.py +0 -170
- tests/unit_tests/arelle/plugin/test_loadfromoim.py +0 -40
- tests/unit_tests/arelle/plugin/test_plugin_imports.py +0 -27
- tests/unit_tests/arelle/test_betafeatures.py +0 -81
- tests/unit_tests/arelle/test_cntlr.py +0 -28
- tests/unit_tests/arelle/test_import.py +0 -40
- tests/unit_tests/arelle/test_locale.py +0 -73
- tests/unit_tests/arelle/test_modelmanager.py +0 -15
- tests/unit_tests/arelle/test_packagemanager.py +0 -65
- tests/unit_tests/arelle/test_pluginmanager.py +0 -176
- tests/unit_tests/arelle/test_qname.py +0 -140
- tests/unit_tests/arelle/test_runtimeoptions.py +0 -56
- tests/unit_tests/arelle/test_system_info.py +0 -26
- tests/unit_tests/arelle/test_updater.py +0 -507
- tests/unit_tests/arelle/test_urlutil.py +0 -49
- tests/unit_tests/arelle/test_version.py +0 -46
- tests/unit_tests/arelle/utils/validate/test_decorator.py +0 -59
- /arelle/{examples/plugin/validate/XYZ → plugin/validate/EDINET}/rules/__init__.py +0 -0
- /arelle/plugin/validate/{HMRC → UK}/consistencyChecksByName.json +0 -0
- /arelle/plugin/validate/{HMRC → UK}/hmrc-taxonomies.xml +0 -0
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,3046 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../oim-taxonomy-schema.json",
|
|
3
|
+
"documentInfo": {
|
|
4
|
+
"documentType": "https://xbrl.org/2025/taxonomy",
|
|
5
|
+
"namespaces": {
|
|
6
|
+
"xbrl": "https://xbrl.org/2025",
|
|
7
|
+
"xbrli":"https://xbrl.org/2025/instance",
|
|
8
|
+
"xs": "http://www.w3.org/2001/XMLSchema",
|
|
9
|
+
"iso4217": "http://www.xbrl.org/2003/iso421",
|
|
10
|
+
"utr": "https://xbrl.org/2025/utr"
|
|
11
|
+
},
|
|
12
|
+
"documentNamespace":"utr"
|
|
13
|
+
},
|
|
14
|
+
"taxonomy": {
|
|
15
|
+
"resolved" : false,
|
|
16
|
+
"frameworkName": "utr",
|
|
17
|
+
"name": "utr:UnitsTaxonomyModule",
|
|
18
|
+
"version": "2025",
|
|
19
|
+
"importedTaxonomies": [
|
|
20
|
+
{
|
|
21
|
+
"taxonomyName" :"iso4217:iso4217TaxonomyModule"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"units": [
|
|
25
|
+
{
|
|
26
|
+
"dataType": "xbrli:area",
|
|
27
|
+
"name": "utr:acre"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"dataType": "xbrli:area",
|
|
31
|
+
"name": "utr:sqft"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"dataType": "xbrli:area",
|
|
35
|
+
"name": "utr:sqmi"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"dataType": "xbrli:area",
|
|
39
|
+
"name": "utr:sqyd"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"dataType": "xbrli:energy",
|
|
43
|
+
"name": "utr:Boe"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"dataType": "xbrli:energy",
|
|
47
|
+
"name": "utr:Btu"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"dataType": "xbrli:energy",
|
|
51
|
+
"name": "utr:ft_lb"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"dataType": "xbrli:energy",
|
|
55
|
+
"name": "utr:MBoe"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"dataType": "xbrli:energy",
|
|
59
|
+
"name": "utr:Mcfe"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"dataType": "xbrli:energy",
|
|
63
|
+
"name": "utr:MMBoe"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"dataType": "xbrli:energy",
|
|
67
|
+
"name": "utr:MMBTU"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"dataType": "xbrli:length",
|
|
71
|
+
"name": "utr:ft"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"dataType": "xbrli:length",
|
|
75
|
+
"name": "utr:in"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"dataType": "xbrli:length",
|
|
79
|
+
"name": "utr:mi"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"dataType": "xbrli:length",
|
|
83
|
+
"name": "utr:nmi"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"dataType": "xbrli:length",
|
|
87
|
+
"name": "utr:yd"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"dataType": "xbrli:mass",
|
|
91
|
+
"name": "utr:lb"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"dataType": "xbrli:mass",
|
|
95
|
+
"name": "utr:oz"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"dataType": "xbrli:mass",
|
|
99
|
+
"name": "utr:ozt"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"dataType": "xbrli:mass",
|
|
103
|
+
"name": "utr:T"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"dataType": "xbrli:power",
|
|
107
|
+
"name": "utr:hp"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"dataType": "xbrli:volume",
|
|
111
|
+
"name": "utr:bbl"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"dataType": "xbrli:volume",
|
|
115
|
+
"name": "utr:ft3"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"dataType": "xbrli:volume",
|
|
119
|
+
"name": "utr:gal"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"dataType": "xbrli:volume",
|
|
123
|
+
"name": "utr:MBbls"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"dataType": "xbrli:volume",
|
|
127
|
+
"name": "utr:Mcf"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"dataType": "xbrli:volume",
|
|
131
|
+
"name": "utr:MMBbls"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"dataType": "xbrli:volume",
|
|
135
|
+
"name": "utr:MMcf"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"dataType": "xbrli:energy",
|
|
139
|
+
"name": "utr:Cal"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"dataType": "xbrli:mass",
|
|
143
|
+
"name": "utr:t"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"dataType": "xbrli:memory",
|
|
147
|
+
"name": "utr:B"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"dataType": "xbrli:memory",
|
|
151
|
+
"name": "utr:GB"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"dataType": "xbrli:memory",
|
|
155
|
+
"name": "utr:kB"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"dataType": "xbrli:memory",
|
|
159
|
+
"name": "utr:MB"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"dataType": "xbrli:memory",
|
|
163
|
+
"name": "utr:TB"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"dataType": "xbrli:area",
|
|
167
|
+
"name": "utr:ha"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"dataType": "xbrli:area",
|
|
171
|
+
"name": "utr:sqkm"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"dataType": "xbrli:area",
|
|
175
|
+
"name": "utr:sqm"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"dataType": "xbrli:electricCurrent",
|
|
179
|
+
"name": "utr:A"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"dataType": "xbrli:energy",
|
|
183
|
+
"name": "utr:J"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"dataType": "xbrli:energy",
|
|
187
|
+
"name": "utr:kJ"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"dataType": "xbrli:energy",
|
|
191
|
+
"name": "utr:kWh"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"dataType": "xbrli:energy",
|
|
195
|
+
"name": "utr:mJ"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"dataType": "xbrli:energy",
|
|
199
|
+
"name": "utr:MWh"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"dataType": "xbrli:voltage",
|
|
203
|
+
"name": "utr:V"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"dataType": "xbrli:frequency",
|
|
207
|
+
"name": "utr:Hz"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"dataType": "xbrli:length",
|
|
211
|
+
"name": "utr:cm"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"dataType": "xbrli:length",
|
|
215
|
+
"name": "utr:dm"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"dataType": "xbrli:length",
|
|
219
|
+
"name": "utr:km"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"dataType": "xbrli:length",
|
|
223
|
+
"name": "utr:m"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"dataType": "xbrli:length",
|
|
227
|
+
"name": "utr:mm"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"dataType": "xbrli:mass",
|
|
231
|
+
"name": "utr:g"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"dataType": "xbrli:mass",
|
|
235
|
+
"name": "utr:kg"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"dataType": "xbrli:power",
|
|
239
|
+
"name": "utr:GW"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"dataType": "xbrli:power",
|
|
243
|
+
"name": "utr:kW"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"dataType": "xbrli:power",
|
|
247
|
+
"name": "utr:MW"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"dataType": "xbrli:power",
|
|
251
|
+
"name": "utr:TW"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"dataType": "xbrli:power",
|
|
255
|
+
"name": "utr:W"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"dataType": "xbrli:voltage",
|
|
259
|
+
"name": "utr:kV"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"dataType": "xbrli:volume",
|
|
263
|
+
"name": "utr:l"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"dataType": "xbrli:volume",
|
|
267
|
+
"name": "utr:m3"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"dataType": "xbrli:volume",
|
|
271
|
+
"name": "utr:bu"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"dataType": "xbrli:volume",
|
|
275
|
+
"name": "utr:aft"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"dataType": "xbrli:perShare",
|
|
279
|
+
"name": "utr:Monetary_per_Share",
|
|
280
|
+
"dataTypeNumerator": "xbrli:monetary",
|
|
281
|
+
"dataTypeDenominator": "xbrli:sharesType"
|
|
282
|
+
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"dataType": "xbrli:perUnit",
|
|
286
|
+
"name": "utr:Monetary_per_Decimal",
|
|
287
|
+
"dataTypeNumerator": "xbrli:monetary",
|
|
288
|
+
"dataTypeDenominator": "xs:decimal"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"dataType": "xbrli:pureType",
|
|
292
|
+
"name": "utr:Monetary_per_Monetary",
|
|
293
|
+
"dataTypeNumerator": "xbrli:monetary",
|
|
294
|
+
"dataTypeDenominator": "xbrli:monetary"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"dataType": "xbrli:pureType",
|
|
298
|
+
"name": "utr:Rate"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"dataType": "xbrli:duration",
|
|
302
|
+
"name": "utr:Y"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"dataType": "xbrli:duration",
|
|
306
|
+
"name": "utr:M"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"dataType": "xbrli:duration",
|
|
310
|
+
"name": "utr:D"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"dataType": "xbrli:duration",
|
|
314
|
+
"name": "utr:H"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"dataType": "xbrli:duration",
|
|
318
|
+
"name": "utr:MM"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"dataType": "xbrli:duration",
|
|
322
|
+
"name": "utr:S"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"dataType": "xbrli:flow",
|
|
326
|
+
"name": "utr:Volume_per_Duration",
|
|
327
|
+
"dataTypeNumerator": "xbrli:volume",
|
|
328
|
+
"dataTypeDenominator": "xs:duration"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"dataType": "xbrli:voltage",
|
|
332
|
+
"name": "utr:MV"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"dataType": "xbrli:voltage",
|
|
336
|
+
"name": "utr:GV"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"dataType": "xbrli:volume",
|
|
340
|
+
"name": "utr:Bcf"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"dataType": "xbrli:volume",
|
|
344
|
+
"name": "utr:Tcf"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"dataType": "xbrli:energy",
|
|
348
|
+
"name": "utr:GWh"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"dataType": "xbrli:energy",
|
|
352
|
+
"name": "utr:TWh"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"dataType": "xbrli:duration",
|
|
356
|
+
"name": "utr:Q"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"dataType": "xbrli:duration",
|
|
360
|
+
"name": "utr:WK"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"dataType": "xbrli:energy",
|
|
364
|
+
"name": "utr:MMcfe"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"dataType": "xbrli:energy",
|
|
368
|
+
"name": "utr:Bcfe"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"dataType": "xbrli:energy",
|
|
372
|
+
"name": "utr:Tcfe"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"dataType": "xbrli:mass",
|
|
376
|
+
"name": "utr:kT"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"dataType": "xbrli:mass",
|
|
380
|
+
"name": "utr:MT"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"dataType": "xbrli:mass",
|
|
384
|
+
"name": "utr:GT"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"dataType": "xbrli:mass",
|
|
388
|
+
"name": "utr:kt"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"dataType": "xbrli:mass",
|
|
392
|
+
"name": "utr:Mt"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"dataType": "xbrli:mass",
|
|
396
|
+
"name": "utr:Gt"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"dataType": "xbrli:energy",
|
|
400
|
+
"name": "utr:MWM"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"dataType": "xbrli:energy",
|
|
404
|
+
"name": "utr:GWM"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"dataType": "xbrli:flow",
|
|
408
|
+
"name": "utr:Energy_per_Duration",
|
|
409
|
+
"dataTypeNumerator": "xbrli:energy",
|
|
410
|
+
"dataTypeDenominator": "xs:duration"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"dataType": "xbrli:temperature",
|
|
414
|
+
"name": "utr:Celsius"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"dataType": "xbrli:temperature",
|
|
418
|
+
"name": "utr:K"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"dataType": "xbrli:temperature",
|
|
422
|
+
"name": "utr:F"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"dataType": "xbrli:pressure",
|
|
426
|
+
"name": "utr:Pa"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"dataType": "xbrli:pressure",
|
|
430
|
+
"name": "utr:Bar"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"dataType": "xbrli:pressure",
|
|
434
|
+
"name": "utr:psi"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"dataType": "xbrli:pressure",
|
|
438
|
+
"name": "utr:atm"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"dataType": "xbrli:force",
|
|
442
|
+
"name": "utr:N"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"dataType": "xbrli:power",
|
|
446
|
+
"name": "utr:var"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"dataType": "xbrli:power",
|
|
450
|
+
"name": "utr:VA"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"dataType": "xbrli:energy",
|
|
454
|
+
"name": "utr:Wh"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"dataType": "xbrli:energy",
|
|
458
|
+
"name": "utr:VAh"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"dataType": "xbrli:electricCharge",
|
|
462
|
+
"name": "utr:Ah"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"dataType": "xbrli:electricCharge",
|
|
466
|
+
"name": "utr:C"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"dataType": "xbrli:planeAngle",
|
|
470
|
+
"name": "utr:Degree"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"dataType": "xbrli:planeAngle",
|
|
474
|
+
"name": "utr:rad"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"dataType": "xbrli:energy",
|
|
478
|
+
"name": "utr:dth"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"dataType": "xbrli:energy",
|
|
482
|
+
"name": "utr:MWd"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"dataType": "xbrli:energy",
|
|
486
|
+
"name": "utr:GJ"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"dataType": "xbrli:energy",
|
|
490
|
+
"name": "utr:MJ"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"dataType": "xbrli:energy",
|
|
494
|
+
"name": "utr:TJ"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"dataType": "xbrli:memory",
|
|
498
|
+
"name": "utr:PB"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"dataType": "xbrli:power",
|
|
502
|
+
"name": "utr:Mvar"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"dataType": "xbrli:power",
|
|
506
|
+
"name": "utr:MVA"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"dataType": "xbrli:ghgEmissions",
|
|
510
|
+
"name": "utr:tCO2e"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"dataType": "xbrli:ghgEmissions",
|
|
514
|
+
"name": "utr:ktCO2e"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"dataType": "xbrli:ghgEmissions",
|
|
518
|
+
"name": "utr:MtCO2e"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"dataType": "xbrli:ghgEmissions",
|
|
522
|
+
"name": "utr:GtCO2e"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"dataType": "xbrli:ghgEmissionsPerMonetary",
|
|
526
|
+
"name": "utr:Emissions_per_Monetary",
|
|
527
|
+
"dataTypeNumerator": "xbrli:ghgEmissions",
|
|
528
|
+
"dataTypeDenominator": "xbrli:monetary"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"dataType": "xbrli:energyPerMonetary",
|
|
532
|
+
"name": "utr:Energy_per_Monetary",
|
|
533
|
+
"dataTypeNumerator": "xbrli:energy",
|
|
534
|
+
"dataTypeDenominator": "xbrli:monetary"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"dataType": "xbrli:volumePerMonetary",
|
|
538
|
+
"name": "utr:Volume_per_Monetary",
|
|
539
|
+
"dataTypeNumerator": "xbrli:volume",
|
|
540
|
+
"dataTypeDenominator": "xbrli:monetary"
|
|
541
|
+
}
|
|
542
|
+
],
|
|
543
|
+
"labels": [
|
|
544
|
+
{
|
|
545
|
+
"labelType": "xbrl:label",
|
|
546
|
+
"language": "en",
|
|
547
|
+
"relatedName": "utr:acre",
|
|
548
|
+
"value": "Acre"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"labelType": "xbrl:symbolLabel",
|
|
552
|
+
"language": "en",
|
|
553
|
+
"relatedName": "utr:acre",
|
|
554
|
+
"value": "a"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"labelType": "xbrl:documentation",
|
|
558
|
+
"language": "en",
|
|
559
|
+
"relatedName": "utr:acre",
|
|
560
|
+
"value": "Acre"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"labelType": "xbrl:label",
|
|
564
|
+
"language": "en",
|
|
565
|
+
"relatedName": "utr:sqft",
|
|
566
|
+
"value": "Square Foot"
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"labelType": "xbrl:symbolLabel",
|
|
570
|
+
"language": "en",
|
|
571
|
+
"relatedName": "utr:sqft",
|
|
572
|
+
"value": "ft²"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"labelType": "xbrl:documentation",
|
|
576
|
+
"language": "en",
|
|
577
|
+
"relatedName": "utr:sqft",
|
|
578
|
+
"value": "Square Foot"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"labelType": "xbrl:label",
|
|
582
|
+
"language": "en",
|
|
583
|
+
"relatedName": "utr:sqmi",
|
|
584
|
+
"value": "Square Mile"
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"labelType": "xbrl:symbolLabel",
|
|
588
|
+
"language": "en",
|
|
589
|
+
"relatedName": "utr:sqmi",
|
|
590
|
+
"value": "mi²"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"labelType": "xbrl:documentation",
|
|
594
|
+
"language": "en",
|
|
595
|
+
"relatedName": "utr:sqmi",
|
|
596
|
+
"value": "Square Miles"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"labelType": "xbrl:label",
|
|
600
|
+
"language": "en",
|
|
601
|
+
"relatedName": "utr:sqyd",
|
|
602
|
+
"value": "Square Yard"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"labelType": "xbrl:symbolLabel",
|
|
606
|
+
"language": "en",
|
|
607
|
+
"relatedName": "utr:sqyd",
|
|
608
|
+
"value": "yd²"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"labelType": "xbrl:documentation",
|
|
612
|
+
"language": "en",
|
|
613
|
+
"relatedName": "utr:sqyd",
|
|
614
|
+
"value": "Square Yard"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"labelType": "xbrl:label",
|
|
618
|
+
"language": "en",
|
|
619
|
+
"relatedName": "utr:Boe",
|
|
620
|
+
"value": "Barrel of Oil Equivalent"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"labelType": "xbrl:symbolLabel",
|
|
624
|
+
"language": "en",
|
|
625
|
+
"relatedName": "utr:Boe",
|
|
626
|
+
"value": "Boe"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"labelType": "xbrl:documentation",
|
|
630
|
+
"language": "en",
|
|
631
|
+
"relatedName": "utr:Boe",
|
|
632
|
+
"value": "Barrel of Oil Equivalent"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"labelType": "xbrl:label",
|
|
636
|
+
"language": "en",
|
|
637
|
+
"relatedName": "utr:Btu",
|
|
638
|
+
"value": "British Thermal Unit"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"labelType": "xbrl:symbolLabel",
|
|
642
|
+
"language": "en",
|
|
643
|
+
"relatedName": "utr:Btu",
|
|
644
|
+
"value": "BTU"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"labelType": "xbrl:documentation",
|
|
648
|
+
"language": "en",
|
|
649
|
+
"relatedName": "utr:Btu",
|
|
650
|
+
"value": "British Thermal Unit"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"labelType": "xbrl:label",
|
|
654
|
+
"language": "en",
|
|
655
|
+
"relatedName": "utr:ft_lb",
|
|
656
|
+
"value": "Foot-Pound"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"labelType": "xbrl:symbolLabel",
|
|
660
|
+
"language": "en",
|
|
661
|
+
"relatedName": "utr:ft_lb",
|
|
662
|
+
"value": "ft-lb"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"labelType": "xbrl:documentation",
|
|
666
|
+
"language": "en",
|
|
667
|
+
"relatedName": "utr:ft_lb",
|
|
668
|
+
"value": "Foot-Pound Force"
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"labelType": "xbrl:label",
|
|
672
|
+
"language": "en",
|
|
673
|
+
"relatedName": "utr:MBoe",
|
|
674
|
+
"value": "Thousand Barrels of Oil Equivalent"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"labelType": "xbrl:symbolLabel",
|
|
678
|
+
"language": "en",
|
|
679
|
+
"relatedName": "utr:MBoe",
|
|
680
|
+
"value": "MBoe"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"labelType": "xbrl:documentation",
|
|
684
|
+
"language": "en",
|
|
685
|
+
"relatedName": "utr:MBoe",
|
|
686
|
+
"value": "Thousand Barrels of Oil Equivalent"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"labelType": "xbrl:label",
|
|
690
|
+
"language": "en",
|
|
691
|
+
"relatedName": "utr:Mcfe",
|
|
692
|
+
"value": "Thousand Cubic Foot Equivalent"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"labelType": "xbrl:symbolLabel",
|
|
696
|
+
"language": "en",
|
|
697
|
+
"relatedName": "utr:Mcfe",
|
|
698
|
+
"value": "Mcfe"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"labelType": "xbrl:documentation",
|
|
702
|
+
"language": "en",
|
|
703
|
+
"relatedName": "utr:Mcfe",
|
|
704
|
+
"value": "Thousand Cubic Foot Equivalent"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"labelType": "xbrl:label",
|
|
708
|
+
"language": "en",
|
|
709
|
+
"relatedName": "utr:MMBoe",
|
|
710
|
+
"value": "Millions of Barrels of Oil Equivalent"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"labelType": "xbrl:symbolLabel",
|
|
714
|
+
"language": "en",
|
|
715
|
+
"relatedName": "utr:MMBoe",
|
|
716
|
+
"value": "MMBoe"
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"labelType": "xbrl:documentation",
|
|
720
|
+
"language": "en",
|
|
721
|
+
"relatedName": "utr:MMBoe",
|
|
722
|
+
"value": "Millions of Barrels of Oil Equivalent"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"labelType": "xbrl:label",
|
|
726
|
+
"language": "en",
|
|
727
|
+
"relatedName": "utr:MMBTU",
|
|
728
|
+
"value": "Millions of BTU"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"labelType": "xbrl:symbolLabel",
|
|
732
|
+
"language": "en",
|
|
733
|
+
"relatedName": "utr:MMBTU",
|
|
734
|
+
"value": "MMBTU"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"labelType": "xbrl:documentation",
|
|
738
|
+
"language": "en",
|
|
739
|
+
"relatedName": "utr:MMBTU",
|
|
740
|
+
"value": "Millions of BTU"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"labelType": "xbrl:label",
|
|
744
|
+
"language": "en",
|
|
745
|
+
"relatedName": "utr:ft",
|
|
746
|
+
"value": "Foot"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"labelType": "xbrl:symbolLabel",
|
|
750
|
+
"language": "en",
|
|
751
|
+
"relatedName": "utr:ft",
|
|
752
|
+
"value": "ft"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"labelType": "xbrl:documentation",
|
|
756
|
+
"language": "en",
|
|
757
|
+
"relatedName": "utr:ft",
|
|
758
|
+
"value": "Twelve Inches"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"labelType": "xbrl:label",
|
|
762
|
+
"language": "en",
|
|
763
|
+
"relatedName": "utr:in",
|
|
764
|
+
"value": "Inch"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"labelType": "xbrl:symbolLabel",
|
|
768
|
+
"language": "en",
|
|
769
|
+
"relatedName": "utr:in",
|
|
770
|
+
"value": "in"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"labelType": "xbrl:documentation",
|
|
774
|
+
"language": "en",
|
|
775
|
+
"relatedName": "utr:in",
|
|
776
|
+
"value": "Inch"
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"labelType": "xbrl:label",
|
|
780
|
+
"language": "en",
|
|
781
|
+
"relatedName": "utr:mi",
|
|
782
|
+
"value": "Mile"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"labelType": "xbrl:symbolLabel",
|
|
786
|
+
"language": "en",
|
|
787
|
+
"relatedName": "utr:mi",
|
|
788
|
+
"value": "mi"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"labelType": "xbrl:documentation",
|
|
792
|
+
"language": "en",
|
|
793
|
+
"relatedName": "utr:mi",
|
|
794
|
+
"value": "5280 Feet"
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"labelType": "xbrl:label",
|
|
798
|
+
"language": "en",
|
|
799
|
+
"relatedName": "utr:nmi",
|
|
800
|
+
"value": "Nautical Mile"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"labelType": "xbrl:symbolLabel",
|
|
804
|
+
"language": "en",
|
|
805
|
+
"relatedName": "utr:nmi",
|
|
806
|
+
"value": "nmi"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"labelType": "xbrl:documentation",
|
|
810
|
+
"language": "en",
|
|
811
|
+
"relatedName": "utr:nmi",
|
|
812
|
+
"value": "1.15078 Miles (One Minute of Arc Latitude)"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"labelType": "xbrl:label",
|
|
816
|
+
"language": "en",
|
|
817
|
+
"relatedName": "utr:yd",
|
|
818
|
+
"value": "Yard"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"labelType": "xbrl:symbolLabel",
|
|
822
|
+
"language": "en",
|
|
823
|
+
"relatedName": "utr:yd",
|
|
824
|
+
"value": "yd"
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"labelType": "xbrl:documentation",
|
|
828
|
+
"language": "en",
|
|
829
|
+
"relatedName": "utr:yd",
|
|
830
|
+
"value": "Three Feet"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"labelType": "xbrl:label",
|
|
834
|
+
"language": "en",
|
|
835
|
+
"relatedName": "utr:lb",
|
|
836
|
+
"value": "Pound"
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"labelType": "xbrl:symbolLabel",
|
|
840
|
+
"language": "en",
|
|
841
|
+
"relatedName": "utr:lb",
|
|
842
|
+
"value": "lb"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"labelType": "xbrl:documentation",
|
|
846
|
+
"language": "en",
|
|
847
|
+
"relatedName": "utr:lb",
|
|
848
|
+
"value": "Pound of Mass, as Used in Commerce (http://en.wikipedia.org/wiki/Pound_(mass)#Use_in_Commerce))"
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"labelType": "xbrl:label",
|
|
852
|
+
"language": "en",
|
|
853
|
+
"relatedName": "utr:oz",
|
|
854
|
+
"value": "Ounce"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"labelType": "xbrl:symbolLabel",
|
|
858
|
+
"language": "en",
|
|
859
|
+
"relatedName": "utr:oz",
|
|
860
|
+
"value": "oz"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"labelType": "xbrl:documentation",
|
|
864
|
+
"language": "en",
|
|
865
|
+
"relatedName": "utr:oz",
|
|
866
|
+
"value": "US Ounce"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"labelType": "xbrl:label",
|
|
870
|
+
"language": "en",
|
|
871
|
+
"relatedName": "utr:ozt",
|
|
872
|
+
"value": "Troy Ounce"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"labelType": "xbrl:symbolLabel",
|
|
876
|
+
"language": "en",
|
|
877
|
+
"relatedName": "utr:ozt",
|
|
878
|
+
"value": "ozt"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"labelType": "xbrl:documentation",
|
|
882
|
+
"language": "en",
|
|
883
|
+
"relatedName": "utr:ozt",
|
|
884
|
+
"value": "Troy Ounce"
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"labelType": "xbrl:label",
|
|
888
|
+
"language": "en",
|
|
889
|
+
"relatedName": "utr:T",
|
|
890
|
+
"value": "Ton"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"labelType": "xbrl:symbolLabel",
|
|
894
|
+
"language": "en",
|
|
895
|
+
"relatedName": "utr:T",
|
|
896
|
+
"value": "T"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"labelType": "xbrl:documentation",
|
|
900
|
+
"language": "en",
|
|
901
|
+
"relatedName": "utr:T",
|
|
902
|
+
"value": "US Ton"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"labelType": "xbrl:label",
|
|
906
|
+
"language": "en",
|
|
907
|
+
"relatedName": "utr:hp",
|
|
908
|
+
"value": "Horsepower"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"labelType": "xbrl:symbolLabel",
|
|
912
|
+
"language": "en",
|
|
913
|
+
"relatedName": "utr:hp",
|
|
914
|
+
"value": "hp"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"labelType": "xbrl:documentation",
|
|
918
|
+
"language": "en",
|
|
919
|
+
"relatedName": "utr:hp",
|
|
920
|
+
"value": "Horsepower (Foot-pound per Second)"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"labelType": "xbrl:label",
|
|
924
|
+
"language": "en",
|
|
925
|
+
"relatedName": "utr:bbl",
|
|
926
|
+
"value": "Barrel"
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"labelType": "xbrl:symbolLabel",
|
|
930
|
+
"language": "en",
|
|
931
|
+
"relatedName": "utr:bbl",
|
|
932
|
+
"value": "bbl"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"labelType": "xbrl:documentation",
|
|
936
|
+
"language": "en",
|
|
937
|
+
"relatedName": "utr:bbl",
|
|
938
|
+
"value": "Barrel (of Oil)"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"labelType": "xbrl:label",
|
|
942
|
+
"language": "en",
|
|
943
|
+
"relatedName": "utr:ft3",
|
|
944
|
+
"value": "Cubic Foot"
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"labelType": "xbrl:symbolLabel",
|
|
948
|
+
"language": "en",
|
|
949
|
+
"relatedName": "utr:ft3",
|
|
950
|
+
"value": "ft³"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"labelType": "xbrl:documentation",
|
|
954
|
+
"language": "en",
|
|
955
|
+
"relatedName": "utr:ft3",
|
|
956
|
+
"value": "Cubic Foot"
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
"labelType": "xbrl:label",
|
|
960
|
+
"language": "en",
|
|
961
|
+
"relatedName": "utr:gal",
|
|
962
|
+
"value": "Gallon"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"labelType": "xbrl:symbolLabel",
|
|
966
|
+
"language": "en",
|
|
967
|
+
"relatedName": "utr:gal",
|
|
968
|
+
"value": "gal"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"labelType": "xbrl:documentation",
|
|
972
|
+
"language": "en",
|
|
973
|
+
"relatedName": "utr:gal",
|
|
974
|
+
"value": "US Gallon"
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"labelType": "xbrl:label",
|
|
978
|
+
"language": "en",
|
|
979
|
+
"relatedName": "utr:MBbls",
|
|
980
|
+
"value": "Thousand Barrels"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"labelType": "xbrl:symbolLabel",
|
|
984
|
+
"language": "en",
|
|
985
|
+
"relatedName": "utr:MBbls",
|
|
986
|
+
"value": "MBbls"
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"labelType": "xbrl:documentation",
|
|
990
|
+
"language": "en",
|
|
991
|
+
"relatedName": "utr:MBbls",
|
|
992
|
+
"value": "Thousands of Barrels (of Oil)"
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"labelType": "xbrl:label",
|
|
996
|
+
"language": "en",
|
|
997
|
+
"relatedName": "utr:Mcf",
|
|
998
|
+
"value": "Thousands Cubic Feet"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"labelType": "xbrl:symbolLabel",
|
|
1002
|
+
"language": "en",
|
|
1003
|
+
"relatedName": "utr:Mcf",
|
|
1004
|
+
"value": "Mcf"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"labelType": "xbrl:documentation",
|
|
1008
|
+
"language": "en",
|
|
1009
|
+
"relatedName": "utr:Mcf",
|
|
1010
|
+
"value": "Thousands of Cubic Feet"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"labelType": "xbrl:label",
|
|
1014
|
+
"language": "en",
|
|
1015
|
+
"relatedName": "utr:MMBbls",
|
|
1016
|
+
"value": "Million Barrels"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"labelType": "xbrl:symbolLabel",
|
|
1020
|
+
"language": "en",
|
|
1021
|
+
"relatedName": "utr:MMBbls",
|
|
1022
|
+
"value": "MMBbls"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"labelType": "xbrl:documentation",
|
|
1026
|
+
"language": "en",
|
|
1027
|
+
"relatedName": "utr:MMBbls",
|
|
1028
|
+
"value": "Millions of Barrels (of Oil)"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"labelType": "xbrl:label",
|
|
1032
|
+
"language": "en",
|
|
1033
|
+
"relatedName": "utr:MMcf",
|
|
1034
|
+
"value": "Millions Cubic Feet"
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"labelType": "xbrl:symbolLabel",
|
|
1038
|
+
"language": "en",
|
|
1039
|
+
"relatedName": "utr:MMcf",
|
|
1040
|
+
"value": "MMcf"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"labelType": "xbrl:documentation",
|
|
1044
|
+
"language": "en",
|
|
1045
|
+
"relatedName": "utr:MMcf",
|
|
1046
|
+
"value": "Millions of Cubic Feet"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"labelType": "xbrl:label",
|
|
1050
|
+
"language": "en",
|
|
1051
|
+
"relatedName": "utr:Cal",
|
|
1052
|
+
"value": "Calorie"
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"labelType": "xbrl:symbolLabel",
|
|
1056
|
+
"language": "en",
|
|
1057
|
+
"relatedName": "utr:Cal",
|
|
1058
|
+
"value": "Cal"
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"labelType": "xbrl:documentation",
|
|
1062
|
+
"language": "en",
|
|
1063
|
+
"relatedName": "utr:Cal",
|
|
1064
|
+
"value": "Calorie"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"labelType": "xbrl:label",
|
|
1068
|
+
"language": "en",
|
|
1069
|
+
"relatedName": "utr:t",
|
|
1070
|
+
"value": "Tonne"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"labelType": "xbrl:symbolLabel",
|
|
1074
|
+
"language": "en",
|
|
1075
|
+
"relatedName": "utr:t",
|
|
1076
|
+
"value": "t"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"labelType": "xbrl:documentation",
|
|
1080
|
+
"language": "en",
|
|
1081
|
+
"relatedName": "utr:t",
|
|
1082
|
+
"value": "Tonne (Metric Tonne, Metric Ton)"
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"labelType": "xbrl:label",
|
|
1086
|
+
"language": "en",
|
|
1087
|
+
"relatedName": "utr:B",
|
|
1088
|
+
"value": "Byte"
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"labelType": "xbrl:symbolLabel",
|
|
1092
|
+
"language": "en",
|
|
1093
|
+
"relatedName": "utr:B",
|
|
1094
|
+
"value": "B"
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"labelType": "xbrl:documentation",
|
|
1098
|
+
"language": "en",
|
|
1099
|
+
"relatedName": "utr:B",
|
|
1100
|
+
"value": "8 adjacent bits of Memory per IEEE 1541-2002"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"labelType": "xbrl:label",
|
|
1104
|
+
"language": "en",
|
|
1105
|
+
"relatedName": "utr:GB",
|
|
1106
|
+
"value": "Gigabyte"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"labelType": "xbrl:symbolLabel",
|
|
1110
|
+
"language": "en",
|
|
1111
|
+
"relatedName": "utr:GB",
|
|
1112
|
+
"value": "GB"
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"labelType": "xbrl:documentation",
|
|
1116
|
+
"language": "en",
|
|
1117
|
+
"relatedName": "utr:GB",
|
|
1118
|
+
"value": "Gigabytes of Memory per IEEE 1541-2002"
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
"labelType": "xbrl:label",
|
|
1122
|
+
"language": "en",
|
|
1123
|
+
"relatedName": "utr:kB",
|
|
1124
|
+
"value": "Kilobyte"
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"labelType": "xbrl:symbolLabel",
|
|
1128
|
+
"language": "en",
|
|
1129
|
+
"relatedName": "utr:kB",
|
|
1130
|
+
"value": "kB"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"labelType": "xbrl:documentation",
|
|
1134
|
+
"language": "en",
|
|
1135
|
+
"relatedName": "utr:kB",
|
|
1136
|
+
"value": "Kilobytes of Memory per IEEE 1541-2002"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"labelType": "xbrl:label",
|
|
1140
|
+
"language": "en",
|
|
1141
|
+
"relatedName": "utr:MB",
|
|
1142
|
+
"value": "Megabyte"
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
"labelType": "xbrl:symbolLabel",
|
|
1146
|
+
"language": "en",
|
|
1147
|
+
"relatedName": "utr:MB",
|
|
1148
|
+
"value": "MB"
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"labelType": "xbrl:documentation",
|
|
1152
|
+
"language": "en",
|
|
1153
|
+
"relatedName": "utr:MB",
|
|
1154
|
+
"value": "Megabytes of Memory per IEEE 1541-2002"
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"labelType": "xbrl:label",
|
|
1158
|
+
"language": "en",
|
|
1159
|
+
"relatedName": "utr:TB",
|
|
1160
|
+
"value": "Terabyte"
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"labelType": "xbrl:symbolLabel",
|
|
1164
|
+
"language": "en",
|
|
1165
|
+
"relatedName": "utr:TB",
|
|
1166
|
+
"value": "TB"
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"labelType": "xbrl:documentation",
|
|
1170
|
+
"language": "en",
|
|
1171
|
+
"relatedName": "utr:TB",
|
|
1172
|
+
"value": "Terabytes of Memory per IEEE 1541-2002"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"labelType": "xbrl:label",
|
|
1176
|
+
"language": "en",
|
|
1177
|
+
"relatedName": "utr:ha",
|
|
1178
|
+
"value": "Hectare"
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"labelType": "xbrl:symbolLabel",
|
|
1182
|
+
"language": "en",
|
|
1183
|
+
"relatedName": "utr:ha",
|
|
1184
|
+
"value": "ha"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"labelType": "xbrl:documentation",
|
|
1188
|
+
"language": "en",
|
|
1189
|
+
"relatedName": "utr:ha",
|
|
1190
|
+
"value": "Hectare"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"labelType": "xbrl:label",
|
|
1194
|
+
"language": "en",
|
|
1195
|
+
"relatedName": "utr:sqkm",
|
|
1196
|
+
"value": "Square km"
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"labelType": "xbrl:symbolLabel",
|
|
1200
|
+
"language": "en",
|
|
1201
|
+
"relatedName": "utr:sqkm",
|
|
1202
|
+
"value": "km²"
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"labelType": "xbrl:documentation",
|
|
1206
|
+
"language": "en",
|
|
1207
|
+
"relatedName": "utr:sqkm",
|
|
1208
|
+
"value": "Square Kilometer"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"labelType": "xbrl:label",
|
|
1212
|
+
"language": "en",
|
|
1213
|
+
"relatedName": "utr:sqm",
|
|
1214
|
+
"value": "Square metre"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"labelType": "xbrl:symbolLabel",
|
|
1218
|
+
"language": "en",
|
|
1219
|
+
"relatedName": "utr:sqm",
|
|
1220
|
+
"value": "m²"
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"labelType": "xbrl:documentation",
|
|
1224
|
+
"language": "en",
|
|
1225
|
+
"relatedName": "utr:sqm",
|
|
1226
|
+
"value": "Square Metre"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"labelType": "xbrl:label",
|
|
1230
|
+
"language": "en",
|
|
1231
|
+
"relatedName": "utr:A",
|
|
1232
|
+
"value": "Ampere"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"labelType": "xbrl:symbolLabel",
|
|
1236
|
+
"language": "en",
|
|
1237
|
+
"relatedName": "utr:A",
|
|
1238
|
+
"value": "A"
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"labelType": "xbrl:documentation",
|
|
1242
|
+
"language": "en",
|
|
1243
|
+
"relatedName": "utr:A",
|
|
1244
|
+
"value": "Ampere"
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"labelType": "xbrl:label",
|
|
1248
|
+
"language": "en",
|
|
1249
|
+
"relatedName": "utr:J",
|
|
1250
|
+
"value": "Joule"
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"labelType": "xbrl:symbolLabel",
|
|
1254
|
+
"language": "en",
|
|
1255
|
+
"relatedName": "utr:J",
|
|
1256
|
+
"value": "J"
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"labelType": "xbrl:documentation",
|
|
1260
|
+
"language": "en",
|
|
1261
|
+
"relatedName": "utr:J",
|
|
1262
|
+
"value": "Joule"
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"labelType": "xbrl:label",
|
|
1266
|
+
"language": "en",
|
|
1267
|
+
"relatedName": "utr:kJ",
|
|
1268
|
+
"value": "Kilojoule"
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
"labelType": "xbrl:symbolLabel",
|
|
1272
|
+
"language": "en",
|
|
1273
|
+
"relatedName": "utr:kJ",
|
|
1274
|
+
"value": "kJ"
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"labelType": "xbrl:documentation",
|
|
1278
|
+
"language": "en",
|
|
1279
|
+
"relatedName": "utr:kJ",
|
|
1280
|
+
"value": "Thousand Joules"
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"labelType": "xbrl:label",
|
|
1284
|
+
"language": "en",
|
|
1285
|
+
"relatedName": "utr:kWh",
|
|
1286
|
+
"value": "Kilowatt-Hours"
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"labelType": "xbrl:symbolLabel",
|
|
1290
|
+
"language": "en",
|
|
1291
|
+
"relatedName": "utr:kWh",
|
|
1292
|
+
"value": "kWh"
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"labelType": "xbrl:documentation",
|
|
1296
|
+
"language": "en",
|
|
1297
|
+
"relatedName": "utr:kWh",
|
|
1298
|
+
"value": "Kilowatt-Hours of Energy"
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"labelType": "xbrl:label",
|
|
1302
|
+
"language": "en",
|
|
1303
|
+
"relatedName": "utr:mJ",
|
|
1304
|
+
"value": "mJ"
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"labelType": "xbrl:symbolLabel",
|
|
1308
|
+
"language": "en",
|
|
1309
|
+
"relatedName": "utr:mJ",
|
|
1310
|
+
"value": "mJ"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"labelType": "xbrl:documentation",
|
|
1314
|
+
"language": "en",
|
|
1315
|
+
"relatedName": "utr:mJ",
|
|
1316
|
+
"value": "Millijoules"
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"labelType": "xbrl:label",
|
|
1320
|
+
"language": "en",
|
|
1321
|
+
"relatedName": "utr:MWh",
|
|
1322
|
+
"value": "Megawatt-Hour"
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"labelType": "xbrl:symbolLabel",
|
|
1326
|
+
"language": "en",
|
|
1327
|
+
"relatedName": "utr:MWh",
|
|
1328
|
+
"value": "MWh"
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"labelType": "xbrl:documentation",
|
|
1332
|
+
"language": "en",
|
|
1333
|
+
"relatedName": "utr:MWh",
|
|
1334
|
+
"value": "Megawatt-Hour"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"labelType": "xbrl:label",
|
|
1338
|
+
"language": "en",
|
|
1339
|
+
"relatedName": "utr:V",
|
|
1340
|
+
"value": "Volt"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"labelType": "xbrl:symbolLabel",
|
|
1344
|
+
"language": "en",
|
|
1345
|
+
"relatedName": "utr:V",
|
|
1346
|
+
"value": "V"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"labelType": "xbrl:documentation",
|
|
1350
|
+
"language": "en",
|
|
1351
|
+
"relatedName": "utr:V",
|
|
1352
|
+
"value": "Electromotive Force"
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
"labelType": "xbrl:label",
|
|
1356
|
+
"language": "en",
|
|
1357
|
+
"relatedName": "utr:Hz",
|
|
1358
|
+
"value": "Hertz"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"labelType": "xbrl:symbolLabel",
|
|
1362
|
+
"language": "en",
|
|
1363
|
+
"relatedName": "utr:Hz",
|
|
1364
|
+
"value": "Hz"
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"labelType": "xbrl:documentation",
|
|
1368
|
+
"language": "en",
|
|
1369
|
+
"relatedName": "utr:Hz",
|
|
1370
|
+
"value": "Frequency or Number of Cycles per Second"
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"labelType": "xbrl:label",
|
|
1374
|
+
"language": "en",
|
|
1375
|
+
"relatedName": "utr:cm",
|
|
1376
|
+
"value": "Centimetre"
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
"labelType": "xbrl:symbolLabel",
|
|
1380
|
+
"language": "en",
|
|
1381
|
+
"relatedName": "utr:cm",
|
|
1382
|
+
"value": "cm"
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"labelType": "xbrl:documentation",
|
|
1386
|
+
"language": "en",
|
|
1387
|
+
"relatedName": "utr:cm",
|
|
1388
|
+
"value": "One-hundreth of Metre"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"labelType": "xbrl:label",
|
|
1392
|
+
"language": "en",
|
|
1393
|
+
"relatedName": "utr:dm",
|
|
1394
|
+
"value": "Decimetre"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"labelType": "xbrl:symbolLabel",
|
|
1398
|
+
"language": "en",
|
|
1399
|
+
"relatedName": "utr:dm",
|
|
1400
|
+
"value": "dm"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"labelType": "xbrl:documentation",
|
|
1404
|
+
"language": "en",
|
|
1405
|
+
"relatedName": "utr:dm",
|
|
1406
|
+
"value": "Decimetre"
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"labelType": "xbrl:label",
|
|
1410
|
+
"language": "en",
|
|
1411
|
+
"relatedName": "utr:km",
|
|
1412
|
+
"value": "Kilometre"
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"labelType": "xbrl:symbolLabel",
|
|
1416
|
+
"language": "en",
|
|
1417
|
+
"relatedName": "utr:km",
|
|
1418
|
+
"value": "km"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"labelType": "xbrl:documentation",
|
|
1422
|
+
"language": "en",
|
|
1423
|
+
"relatedName": "utr:km",
|
|
1424
|
+
"value": "Thousand Metres"
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
"labelType": "xbrl:label",
|
|
1428
|
+
"language": "en",
|
|
1429
|
+
"relatedName": "utr:m",
|
|
1430
|
+
"value": "Metre"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"labelType": "xbrl:symbolLabel",
|
|
1434
|
+
"language": "en",
|
|
1435
|
+
"relatedName": "utr:m",
|
|
1436
|
+
"value": "m"
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"labelType": "xbrl:documentation",
|
|
1440
|
+
"language": "en",
|
|
1441
|
+
"relatedName": "utr:m",
|
|
1442
|
+
"value": "Metre"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"labelType": "xbrl:label",
|
|
1446
|
+
"language": "en",
|
|
1447
|
+
"relatedName": "utr:mm",
|
|
1448
|
+
"value": "Millimetre"
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"labelType": "xbrl:symbolLabel",
|
|
1452
|
+
"language": "en",
|
|
1453
|
+
"relatedName": "utr:mm",
|
|
1454
|
+
"value": "mm"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"labelType": "xbrl:documentation",
|
|
1458
|
+
"language": "en",
|
|
1459
|
+
"relatedName": "utr:mm",
|
|
1460
|
+
"value": "One-thousandth of Metre"
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"labelType": "xbrl:label",
|
|
1464
|
+
"language": "en",
|
|
1465
|
+
"relatedName": "utr:g",
|
|
1466
|
+
"value": "Gram"
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
"labelType": "xbrl:symbolLabel",
|
|
1470
|
+
"language": "en",
|
|
1471
|
+
"relatedName": "utr:g",
|
|
1472
|
+
"value": "g"
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
"labelType": "xbrl:documentation",
|
|
1476
|
+
"language": "en",
|
|
1477
|
+
"relatedName": "utr:g",
|
|
1478
|
+
"value": "Gram"
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
"labelType": "xbrl:label",
|
|
1482
|
+
"language": "en",
|
|
1483
|
+
"relatedName": "utr:kg",
|
|
1484
|
+
"value": "Kilogram"
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
"labelType": "xbrl:symbolLabel",
|
|
1488
|
+
"language": "en",
|
|
1489
|
+
"relatedName": "utr:kg",
|
|
1490
|
+
"value": "kg"
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"labelType": "xbrl:documentation",
|
|
1494
|
+
"language": "en",
|
|
1495
|
+
"relatedName": "utr:kg",
|
|
1496
|
+
"value": "Kilogram"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"labelType": "xbrl:label",
|
|
1500
|
+
"language": "en",
|
|
1501
|
+
"relatedName": "utr:GW",
|
|
1502
|
+
"value": "Gigawatt"
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
"labelType": "xbrl:symbolLabel",
|
|
1506
|
+
"language": "en",
|
|
1507
|
+
"relatedName": "utr:GW",
|
|
1508
|
+
"value": "GW"
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"labelType": "xbrl:documentation",
|
|
1512
|
+
"language": "en",
|
|
1513
|
+
"relatedName": "utr:GW",
|
|
1514
|
+
"value": "Thousand Million Watts"
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
"labelType": "xbrl:label",
|
|
1518
|
+
"language": "en",
|
|
1519
|
+
"relatedName": "utr:kW",
|
|
1520
|
+
"value": "Kilowatt"
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
"labelType": "xbrl:symbolLabel",
|
|
1524
|
+
"language": "en",
|
|
1525
|
+
"relatedName": "utr:kW",
|
|
1526
|
+
"value": "kW"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"labelType": "xbrl:documentation",
|
|
1530
|
+
"language": "en",
|
|
1531
|
+
"relatedName": "utr:kW",
|
|
1532
|
+
"value": "Thousand Watts"
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"labelType": "xbrl:label",
|
|
1536
|
+
"language": "en",
|
|
1537
|
+
"relatedName": "utr:MW",
|
|
1538
|
+
"value": "Megawatt"
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"labelType": "xbrl:symbolLabel",
|
|
1542
|
+
"language": "en",
|
|
1543
|
+
"relatedName": "utr:MW",
|
|
1544
|
+
"value": "MW"
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
"labelType": "xbrl:documentation",
|
|
1548
|
+
"language": "en",
|
|
1549
|
+
"relatedName": "utr:MW",
|
|
1550
|
+
"value": "Million Watts"
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
"labelType": "xbrl:label",
|
|
1554
|
+
"language": "en",
|
|
1555
|
+
"relatedName": "utr:TW",
|
|
1556
|
+
"value": "Terawatt"
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
"labelType": "xbrl:symbolLabel",
|
|
1560
|
+
"language": "en",
|
|
1561
|
+
"relatedName": "utr:TW",
|
|
1562
|
+
"value": "TW"
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
"labelType": "xbrl:documentation",
|
|
1566
|
+
"language": "en",
|
|
1567
|
+
"relatedName": "utr:TW",
|
|
1568
|
+
"value": "Million Million Watts"
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"labelType": "xbrl:label",
|
|
1572
|
+
"language": "en",
|
|
1573
|
+
"relatedName": "utr:W",
|
|
1574
|
+
"value": "Watt"
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"labelType": "xbrl:symbolLabel",
|
|
1578
|
+
"language": "en",
|
|
1579
|
+
"relatedName": "utr:W",
|
|
1580
|
+
"value": "W"
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"labelType": "xbrl:documentation",
|
|
1584
|
+
"language": "en",
|
|
1585
|
+
"relatedName": "utr:W",
|
|
1586
|
+
"value": "Watt"
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"labelType": "xbrl:label",
|
|
1590
|
+
"language": "en",
|
|
1591
|
+
"relatedName": "utr:kV",
|
|
1592
|
+
"value": "Kilovolt"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"labelType": "xbrl:symbolLabel",
|
|
1596
|
+
"language": "en",
|
|
1597
|
+
"relatedName": "utr:kV",
|
|
1598
|
+
"value": "kV"
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
"labelType": "xbrl:documentation",
|
|
1602
|
+
"language": "en",
|
|
1603
|
+
"relatedName": "utr:kV",
|
|
1604
|
+
"value": "Thousand Volts of Electromotive Force"
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
"labelType": "xbrl:label",
|
|
1608
|
+
"language": "en",
|
|
1609
|
+
"relatedName": "utr:l",
|
|
1610
|
+
"value": "Litre"
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"labelType": "xbrl:symbolLabel",
|
|
1614
|
+
"language": "en",
|
|
1615
|
+
"relatedName": "utr:l",
|
|
1616
|
+
"value": "l"
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
"labelType": "xbrl:documentation",
|
|
1620
|
+
"language": "en",
|
|
1621
|
+
"relatedName": "utr:l",
|
|
1622
|
+
"value": "Litre"
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"labelType": "xbrl:label",
|
|
1626
|
+
"language": "en",
|
|
1627
|
+
"relatedName": "utr:m3",
|
|
1628
|
+
"value": "Cubic Metre"
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"labelType": "xbrl:symbolLabel",
|
|
1632
|
+
"language": "en",
|
|
1633
|
+
"relatedName": "utr:m3",
|
|
1634
|
+
"value": "m³"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"labelType": "xbrl:documentation",
|
|
1638
|
+
"language": "en",
|
|
1639
|
+
"relatedName": "utr:m3",
|
|
1640
|
+
"value": "Cubic Metre"
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
"labelType": "xbrl:label",
|
|
1644
|
+
"language": "en",
|
|
1645
|
+
"relatedName": "utr:bu",
|
|
1646
|
+
"value": "Bushel"
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"labelType": "xbrl:symbolLabel",
|
|
1650
|
+
"language": "en",
|
|
1651
|
+
"relatedName": "utr:bu",
|
|
1652
|
+
"value": "bu"
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"labelType": "xbrl:documentation",
|
|
1656
|
+
"language": "en",
|
|
1657
|
+
"relatedName": "utr:bu",
|
|
1658
|
+
"value": "US Bushel"
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"labelType": "xbrl:label",
|
|
1662
|
+
"language": "en",
|
|
1663
|
+
"relatedName": "utr:aft",
|
|
1664
|
+
"value": "Acre-Foot"
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"labelType": "xbrl:symbolLabel",
|
|
1668
|
+
"language": "en",
|
|
1669
|
+
"relatedName": "utr:aft",
|
|
1670
|
+
"value": "acre ft"
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"labelType": "xbrl:documentation",
|
|
1674
|
+
"language": "en",
|
|
1675
|
+
"relatedName": "utr:aft",
|
|
1676
|
+
"value": "Volume of one acre of surface area to a depth of one foot using a US survey foot"
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
"labelType": "xbrl:label",
|
|
1680
|
+
"language": "en",
|
|
1681
|
+
"relatedName": "utr:Monetary_per_Share",
|
|
1682
|
+
"value": "Monetary/share"
|
|
1683
|
+
},
|
|
1684
|
+
|
|
1685
|
+
{
|
|
1686
|
+
"labelType": "xbrl:documentation",
|
|
1687
|
+
"language": "en",
|
|
1688
|
+
"relatedName": "utr:Monetary_per_Share",
|
|
1689
|
+
"value": "Monetary Unit / Share"
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"labelType": "xbrl:label",
|
|
1693
|
+
"language": "en",
|
|
1694
|
+
"relatedName": "utr:Monetary_per_Decimal",
|
|
1695
|
+
"value": "Monetary/Decimal"
|
|
1696
|
+
},
|
|
1697
|
+
|
|
1698
|
+
{
|
|
1699
|
+
"labelType": "xbrl:documentation",
|
|
1700
|
+
"language": "en",
|
|
1701
|
+
"relatedName": "utr:Monetary_per_Decimal",
|
|
1702
|
+
"value": "Monetary Unit / Anything"
|
|
1703
|
+
},
|
|
1704
|
+
{
|
|
1705
|
+
"labelType": "xbrl:label",
|
|
1706
|
+
"language": "en",
|
|
1707
|
+
"relatedName": "utr:Monetary_per_Monetary",
|
|
1708
|
+
"value": "Monetary/Monetary"
|
|
1709
|
+
},
|
|
1710
|
+
|
|
1711
|
+
{
|
|
1712
|
+
"labelType": "xbrl:documentation",
|
|
1713
|
+
"language": "en",
|
|
1714
|
+
"relatedName": "utr:Monetary_per_Monetary",
|
|
1715
|
+
"value": "Exchange Rate Expressed as: Monetary Unit / Monetary Unit"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"labelType": "xbrl:label",
|
|
1719
|
+
"language": "en",
|
|
1720
|
+
"relatedName": "xbrli:pure",
|
|
1721
|
+
"value": "pure"
|
|
1722
|
+
},
|
|
1723
|
+
|
|
1724
|
+
{
|
|
1725
|
+
"labelType": "xbrl:documentation",
|
|
1726
|
+
"language": "en",
|
|
1727
|
+
"relatedName": "xbrli:pure",
|
|
1728
|
+
"value": "Dimensionless (Pure) Number"
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"labelType": "xbrl:label",
|
|
1732
|
+
"language": "en",
|
|
1733
|
+
"relatedName": "utr:Rate",
|
|
1734
|
+
"value": "Rate"
|
|
1735
|
+
},
|
|
1736
|
+
|
|
1737
|
+
{
|
|
1738
|
+
"labelType": "xbrl:documentation",
|
|
1739
|
+
"language": "en",
|
|
1740
|
+
"relatedName": "utr:Rate",
|
|
1741
|
+
"value": "Rate"
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
"labelType": "xbrl:label",
|
|
1745
|
+
"language": "en",
|
|
1746
|
+
"relatedName": "xbrli:shares",
|
|
1747
|
+
"value": "Share"
|
|
1748
|
+
},
|
|
1749
|
+
|
|
1750
|
+
{
|
|
1751
|
+
"labelType": "xbrl:documentation",
|
|
1752
|
+
"language": "en",
|
|
1753
|
+
"relatedName": "xbrli:shares",
|
|
1754
|
+
"value": "Unit of Ownership (Stock)"
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"labelType": "xbrl:label",
|
|
1758
|
+
"language": "en",
|
|
1759
|
+
"relatedName": "utr:Y",
|
|
1760
|
+
"value": "Year"
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
"labelType": "xbrl:symbolLabel",
|
|
1764
|
+
"language": "en",
|
|
1765
|
+
"relatedName": "utr:Y",
|
|
1766
|
+
"value": "yr"
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
"labelType": "xbrl:documentation",
|
|
1770
|
+
"language": "en",
|
|
1771
|
+
"relatedName": "utr:Y",
|
|
1772
|
+
"value": "Gregorian calendar year of 365 days. Use only as a denominator because durationItemType is not numeric and has no units."
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
"labelType": "xbrl:label",
|
|
1776
|
+
"language": "en",
|
|
1777
|
+
"relatedName": "utr:M",
|
|
1778
|
+
"value": "Month"
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"labelType": "xbrl:symbolLabel",
|
|
1782
|
+
"language": "en",
|
|
1783
|
+
"relatedName": "utr:M",
|
|
1784
|
+
"value": "mo"
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
"labelType": "xbrl:documentation",
|
|
1788
|
+
"language": "en",
|
|
1789
|
+
"relatedName": "utr:M",
|
|
1790
|
+
"value": "Gregorian calendar month of 30.41 days. Use only as a denominator because durationItemType is not numeric and has no units."
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"labelType": "xbrl:label",
|
|
1794
|
+
"language": "en",
|
|
1795
|
+
"relatedName": "utr:D",
|
|
1796
|
+
"value": "Day"
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
"labelType": "xbrl:symbolLabel",
|
|
1800
|
+
"language": "en",
|
|
1801
|
+
"relatedName": "utr:D",
|
|
1802
|
+
"value": "d"
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
"labelType": "xbrl:documentation",
|
|
1806
|
+
"language": "en",
|
|
1807
|
+
"relatedName": "utr:D",
|
|
1808
|
+
"value": "Day of 24 hours. Use only as a denominator because durationItemType is not numeric and has no units."
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"labelType": "xbrl:label",
|
|
1812
|
+
"language": "en",
|
|
1813
|
+
"relatedName": "utr:H",
|
|
1814
|
+
"value": "Hour"
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
"labelType": "xbrl:symbolLabel",
|
|
1818
|
+
"language": "en",
|
|
1819
|
+
"relatedName": "utr:H",
|
|
1820
|
+
"value": "h"
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"labelType": "xbrl:documentation",
|
|
1824
|
+
"language": "en",
|
|
1825
|
+
"relatedName": "utr:H",
|
|
1826
|
+
"value": "Hour of 60 minutes. Use only as a denominator because durationItemType is not numeric and has no units."
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"labelType": "xbrl:label",
|
|
1830
|
+
"language": "en",
|
|
1831
|
+
"relatedName": "utr:MM",
|
|
1832
|
+
"value": "Minute"
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
"labelType": "xbrl:symbolLabel",
|
|
1836
|
+
"language": "en",
|
|
1837
|
+
"relatedName": "utr:MM",
|
|
1838
|
+
"value": "m"
|
|
1839
|
+
},
|
|
1840
|
+
{
|
|
1841
|
+
"labelType": "xbrl:documentation",
|
|
1842
|
+
"language": "en",
|
|
1843
|
+
"relatedName": "utr:MM",
|
|
1844
|
+
"value": "Minute of 60 seconds. Use only as a denominator because durationItemType is not numeric and has no units."
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"labelType": "xbrl:label",
|
|
1848
|
+
"language": "en",
|
|
1849
|
+
"relatedName": "utr:S",
|
|
1850
|
+
"value": "Second"
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
"labelType": "xbrl:symbolLabel",
|
|
1854
|
+
"language": "en",
|
|
1855
|
+
"relatedName": "utr:S",
|
|
1856
|
+
"value": "s"
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"labelType": "xbrl:documentation",
|
|
1860
|
+
"language": "en",
|
|
1861
|
+
"relatedName": "utr:S",
|
|
1862
|
+
"value": "Second. Use only as a denominator because durationItemType is not numeric and has no units."
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"labelType": "xbrl:label",
|
|
1866
|
+
"language": "en",
|
|
1867
|
+
"relatedName": "utr:Volume_per_Duration",
|
|
1868
|
+
"value": "Volume/Duration"
|
|
1869
|
+
},
|
|
1870
|
+
|
|
1871
|
+
{
|
|
1872
|
+
"labelType": "xbrl:documentation",
|
|
1873
|
+
"language": "en",
|
|
1874
|
+
"relatedName": "utr:Volume_per_Duration",
|
|
1875
|
+
"value": "Flow rate, as Volume per Duration"
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
"labelType": "xbrl:label",
|
|
1879
|
+
"language": "en",
|
|
1880
|
+
"relatedName": "utr:MV",
|
|
1881
|
+
"value": "Megavolt"
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"labelType": "xbrl:symbolLabel",
|
|
1885
|
+
"language": "en",
|
|
1886
|
+
"relatedName": "utr:MV",
|
|
1887
|
+
"value": "MV"
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"labelType": "xbrl:documentation",
|
|
1891
|
+
"language": "en",
|
|
1892
|
+
"relatedName": "utr:MV",
|
|
1893
|
+
"value": "One million volts"
|
|
1894
|
+
},
|
|
1895
|
+
{
|
|
1896
|
+
"labelType": "xbrl:label",
|
|
1897
|
+
"language": "en",
|
|
1898
|
+
"relatedName": "utr:GV",
|
|
1899
|
+
"value": "Gigavolt"
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
"labelType": "xbrl:symbolLabel",
|
|
1903
|
+
"language": "en",
|
|
1904
|
+
"relatedName": "utr:GV",
|
|
1905
|
+
"value": "GV"
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
"labelType": "xbrl:documentation",
|
|
1909
|
+
"language": "en",
|
|
1910
|
+
"relatedName": "utr:GV",
|
|
1911
|
+
"value": "One thousand million volts"
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"labelType": "xbrl:label",
|
|
1915
|
+
"language": "en",
|
|
1916
|
+
"relatedName": "utr:Bcf",
|
|
1917
|
+
"value": "Billions of cubic feet"
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
"labelType": "xbrl:symbolLabel",
|
|
1921
|
+
"language": "en",
|
|
1922
|
+
"relatedName": "utr:Bcf",
|
|
1923
|
+
"value": "Bcf"
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"labelType": "xbrl:documentation",
|
|
1927
|
+
"language": "en",
|
|
1928
|
+
"relatedName": "utr:Bcf",
|
|
1929
|
+
"value": "One thousand million cubic feet"
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
"labelType": "xbrl:label",
|
|
1933
|
+
"language": "en",
|
|
1934
|
+
"relatedName": "utr:Tcf",
|
|
1935
|
+
"value": "Trillions of cubic feet"
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
"labelType": "xbrl:symbolLabel",
|
|
1939
|
+
"language": "en",
|
|
1940
|
+
"relatedName": "utr:Tcf",
|
|
1941
|
+
"value": "Tcf"
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
"labelType": "xbrl:documentation",
|
|
1945
|
+
"language": "en",
|
|
1946
|
+
"relatedName": "utr:Tcf",
|
|
1947
|
+
"value": "One trillion cubic feet"
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
"labelType": "xbrl:label",
|
|
1951
|
+
"language": "en",
|
|
1952
|
+
"relatedName": "utr:GWh",
|
|
1953
|
+
"value": "Gigawatt-Hour"
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"labelType": "xbrl:symbolLabel",
|
|
1957
|
+
"language": "en",
|
|
1958
|
+
"relatedName": "utr:GWh",
|
|
1959
|
+
"value": "GWh"
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
"labelType": "xbrl:documentation",
|
|
1963
|
+
"language": "en",
|
|
1964
|
+
"relatedName": "utr:GWh",
|
|
1965
|
+
"value": "Gigawatt-Hour"
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
"labelType": "xbrl:label",
|
|
1969
|
+
"language": "en",
|
|
1970
|
+
"relatedName": "utr:TWh",
|
|
1971
|
+
"value": "Terawatt-Hour"
|
|
1972
|
+
},
|
|
1973
|
+
{
|
|
1974
|
+
"labelType": "xbrl:symbolLabel",
|
|
1975
|
+
"language": "en",
|
|
1976
|
+
"relatedName": "utr:TWh",
|
|
1977
|
+
"value": "TWh"
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"labelType": "xbrl:documentation",
|
|
1981
|
+
"language": "en",
|
|
1982
|
+
"relatedName": "utr:TWh",
|
|
1983
|
+
"value": "Terawatt-Hour"
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
"labelType": "xbrl:label",
|
|
1987
|
+
"language": "en",
|
|
1988
|
+
"relatedName": "utr:Q",
|
|
1989
|
+
"value": "Quarter"
|
|
1990
|
+
},
|
|
1991
|
+
{
|
|
1992
|
+
"labelType": "xbrl:symbolLabel",
|
|
1993
|
+
"language": "en",
|
|
1994
|
+
"relatedName": "utr:Q",
|
|
1995
|
+
"value": "qtr"
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"labelType": "xbrl:documentation",
|
|
1999
|
+
"language": "en",
|
|
2000
|
+
"relatedName": "utr:Q",
|
|
2001
|
+
"value": "Gregorian Calendar Quarter (three months). Use only as a denominator because durationItemType is not numeric and has no units."
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"labelType": "xbrl:label",
|
|
2005
|
+
"language": "en",
|
|
2006
|
+
"relatedName": "utr:WK",
|
|
2007
|
+
"value": "Week"
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
"labelType": "xbrl:symbolLabel",
|
|
2011
|
+
"language": "en",
|
|
2012
|
+
"relatedName": "utr:WK",
|
|
2013
|
+
"value": "wk"
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"labelType": "xbrl:documentation",
|
|
2017
|
+
"language": "en",
|
|
2018
|
+
"relatedName": "utr:WK",
|
|
2019
|
+
"value": "Gregorian Calendar Week. Use only as a denominator because durationItemType is not numeric and has no units."
|
|
2020
|
+
},
|
|
2021
|
+
{
|
|
2022
|
+
"labelType": "xbrl:label",
|
|
2023
|
+
"language": "en",
|
|
2024
|
+
"relatedName": "utr:MMcfe",
|
|
2025
|
+
"value": "Million Cubic Foot Equivalent"
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
"labelType": "xbrl:symbolLabel",
|
|
2029
|
+
"language": "en",
|
|
2030
|
+
"relatedName": "utr:MMcfe",
|
|
2031
|
+
"value": "MMcfe"
|
|
2032
|
+
},
|
|
2033
|
+
{
|
|
2034
|
+
"labelType": "xbrl:documentation",
|
|
2035
|
+
"language": "en",
|
|
2036
|
+
"relatedName": "utr:MMcfe",
|
|
2037
|
+
"value": "Million cubic feet of natural gas equivalent"
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"labelType": "xbrl:label",
|
|
2041
|
+
"language": "en",
|
|
2042
|
+
"relatedName": "utr:Bcfe",
|
|
2043
|
+
"value": "Billion Cubic Foot Equivalent"
|
|
2044
|
+
},
|
|
2045
|
+
{
|
|
2046
|
+
"labelType": "xbrl:symbolLabel",
|
|
2047
|
+
"language": "en",
|
|
2048
|
+
"relatedName": "utr:Bcfe",
|
|
2049
|
+
"value": "Bcfe"
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"labelType": "xbrl:documentation",
|
|
2053
|
+
"language": "en",
|
|
2054
|
+
"relatedName": "utr:Bcfe",
|
|
2055
|
+
"value": "Thousand million cubic feet of natural gas equivalent"
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
"labelType": "xbrl:label",
|
|
2059
|
+
"language": "en",
|
|
2060
|
+
"relatedName": "utr:Tcfe",
|
|
2061
|
+
"value": "Trillion Cubic Foot Equivalent"
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"labelType": "xbrl:symbolLabel",
|
|
2065
|
+
"language": "en",
|
|
2066
|
+
"relatedName": "utr:Tcfe",
|
|
2067
|
+
"value": "Tcfe"
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
"labelType": "xbrl:documentation",
|
|
2071
|
+
"language": "en",
|
|
2072
|
+
"relatedName": "utr:Tcfe",
|
|
2073
|
+
"value": "Trillion cubic feet of natural gas equivalent"
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"labelType": "xbrl:label",
|
|
2077
|
+
"language": "en",
|
|
2078
|
+
"relatedName": "utr:kT",
|
|
2079
|
+
"value": "Thousand Tons"
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
"labelType": "xbrl:symbolLabel",
|
|
2083
|
+
"language": "en",
|
|
2084
|
+
"relatedName": "utr:kT",
|
|
2085
|
+
"value": "kT"
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"labelType": "xbrl:documentation",
|
|
2089
|
+
"language": "en",
|
|
2090
|
+
"relatedName": "utr:kT",
|
|
2091
|
+
"value": "One thousand US tons"
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
"labelType": "xbrl:label",
|
|
2095
|
+
"language": "en",
|
|
2096
|
+
"relatedName": "utr:MT",
|
|
2097
|
+
"value": "Million Tons"
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
"labelType": "xbrl:symbolLabel",
|
|
2101
|
+
"language": "en",
|
|
2102
|
+
"relatedName": "utr:MT",
|
|
2103
|
+
"value": "MT"
|
|
2104
|
+
},
|
|
2105
|
+
{
|
|
2106
|
+
"labelType": "xbrl:documentation",
|
|
2107
|
+
"language": "en",
|
|
2108
|
+
"relatedName": "utr:MT",
|
|
2109
|
+
"value": "One million US tons"
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"labelType": "xbrl:label",
|
|
2113
|
+
"language": "en",
|
|
2114
|
+
"relatedName": "utr:GT",
|
|
2115
|
+
"value": "Billion Tons"
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
"labelType": "xbrl:symbolLabel",
|
|
2119
|
+
"language": "en",
|
|
2120
|
+
"relatedName": "utr:GT",
|
|
2121
|
+
"value": "GT"
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"labelType": "xbrl:documentation",
|
|
2125
|
+
"language": "en",
|
|
2126
|
+
"relatedName": "utr:GT",
|
|
2127
|
+
"value": "One thousand million US tons"
|
|
2128
|
+
},
|
|
2129
|
+
{
|
|
2130
|
+
"labelType": "xbrl:label",
|
|
2131
|
+
"language": "en",
|
|
2132
|
+
"relatedName": "utr:kt",
|
|
2133
|
+
"value": "Kilotonne"
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
"labelType": "xbrl:symbolLabel",
|
|
2137
|
+
"language": "en",
|
|
2138
|
+
"relatedName": "utr:kt",
|
|
2139
|
+
"value": "kt"
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"labelType": "xbrl:documentation",
|
|
2143
|
+
"language": "en",
|
|
2144
|
+
"relatedName": "utr:kt",
|
|
2145
|
+
"value": "Thousand Tonnes (Metric Tonnes, Metric Tons)"
|
|
2146
|
+
},
|
|
2147
|
+
{
|
|
2148
|
+
"labelType": "xbrl:label",
|
|
2149
|
+
"language": "en",
|
|
2150
|
+
"relatedName": "utr:Mt",
|
|
2151
|
+
"value": "Megatonne"
|
|
2152
|
+
},
|
|
2153
|
+
{
|
|
2154
|
+
"labelType": "xbrl:symbolLabel",
|
|
2155
|
+
"language": "en",
|
|
2156
|
+
"relatedName": "utr:Mt",
|
|
2157
|
+
"value": "Mt"
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
"labelType": "xbrl:documentation",
|
|
2161
|
+
"language": "en",
|
|
2162
|
+
"relatedName": "utr:Mt",
|
|
2163
|
+
"value": "Million Tonnes (Metric Tonnes, Metric Tons)"
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"labelType": "xbrl:label",
|
|
2167
|
+
"language": "en",
|
|
2168
|
+
"relatedName": "utr:Gt",
|
|
2169
|
+
"value": "Gigatonne"
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
"labelType": "xbrl:symbolLabel",
|
|
2173
|
+
"language": "en",
|
|
2174
|
+
"relatedName": "utr:Gt",
|
|
2175
|
+
"value": "Gt"
|
|
2176
|
+
},
|
|
2177
|
+
{
|
|
2178
|
+
"labelType": "xbrl:documentation",
|
|
2179
|
+
"language": "en",
|
|
2180
|
+
"relatedName": "utr:Gt",
|
|
2181
|
+
"value": "Thousand Million Tonnes (Metric Tonnes, Metric Tons)"
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
"labelType": "xbrl:label",
|
|
2185
|
+
"language": "en",
|
|
2186
|
+
"relatedName": "utr:MWM",
|
|
2187
|
+
"value": "Megawatt-Month"
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
"labelType": "xbrl:symbolLabel",
|
|
2191
|
+
"language": "en",
|
|
2192
|
+
"relatedName": "utr:MWM",
|
|
2193
|
+
"value": "MW-M"
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"labelType": "xbrl:documentation",
|
|
2197
|
+
"language": "en",
|
|
2198
|
+
"relatedName": "utr:MWM",
|
|
2199
|
+
"value": "Megawatt-Month assuming 730 hours per month"
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
"labelType": "xbrl:label",
|
|
2203
|
+
"language": "en",
|
|
2204
|
+
"relatedName": "utr:GWM",
|
|
2205
|
+
"value": "Gigawatt-Month"
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"labelType": "xbrl:symbolLabel",
|
|
2209
|
+
"language": "en",
|
|
2210
|
+
"relatedName": "utr:GWM",
|
|
2211
|
+
"value": "GW-M"
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
"labelType": "xbrl:documentation",
|
|
2215
|
+
"language": "en",
|
|
2216
|
+
"relatedName": "utr:GWM",
|
|
2217
|
+
"value": "Gigawatt-Month assuming 730 hours per month"
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
"labelType": "xbrl:label",
|
|
2221
|
+
"language": "en",
|
|
2222
|
+
"relatedName": "utr:Energy_per_Duration",
|
|
2223
|
+
"value": "Energy/Duration"
|
|
2224
|
+
},
|
|
2225
|
+
{
|
|
2226
|
+
"labelType": "xbrl:documentation",
|
|
2227
|
+
"language": "en",
|
|
2228
|
+
"relatedName": "utr:Energy_per_Duration",
|
|
2229
|
+
"value": "Flow rate, as Energy per Duration"
|
|
2230
|
+
},
|
|
2231
|
+
{
|
|
2232
|
+
"labelType": "xbrl:label",
|
|
2233
|
+
"language": "en",
|
|
2234
|
+
"relatedName": "utr:Celsius",
|
|
2235
|
+
"value": "Celsius"
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
"labelType": "xbrl:symbolLabel",
|
|
2239
|
+
"language": "en",
|
|
2240
|
+
"relatedName": "utr:Celsius",
|
|
2241
|
+
"value": "°C"
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
"labelType": "xbrl:documentation",
|
|
2245
|
+
"language": "en",
|
|
2246
|
+
"relatedName": "utr:Celsius",
|
|
2247
|
+
"value": "A temperature scale based on 0° for the freezing point of water and 100° for the boiling point of water at 1 atm pressure."
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
"labelType": "xbrl:label",
|
|
2251
|
+
"language": "en",
|
|
2252
|
+
"relatedName": "utr:K",
|
|
2253
|
+
"value": "Kelvin"
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"labelType": "xbrl:symbolLabel",
|
|
2257
|
+
"language": "en",
|
|
2258
|
+
"relatedName": "utr:K",
|
|
2259
|
+
"value": "K"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"labelType": "xbrl:documentation",
|
|
2263
|
+
"language": "en",
|
|
2264
|
+
"relatedName": "utr:K",
|
|
2265
|
+
"value": "The kelvin is a unit of measure for temperature based upon an absolute scale. It is one of the seven base units in the International System of Units (SI) and is assigned the unit symbol K. The Kelvin scale is an absolute, thermodynamic temperature scale using as its null point absolute zero, the temperature at which all thermal motion ceases in the classical description of thermodynamics. The kelvin is defined as the fraction 1⁄273.16 of the thermodynamic temperature of the triple point of water (exactly 0.01 °C or 32.018 °F). In other words, it is defined such that the triple point of water is exactly 273.16 K."
|
|
2266
|
+
},
|
|
2267
|
+
{
|
|
2268
|
+
"labelType": "xbrl:label",
|
|
2269
|
+
"language": "en",
|
|
2270
|
+
"relatedName": "utr:F",
|
|
2271
|
+
"value": "Fahrenheit"
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"labelType": "xbrl:symbolLabel",
|
|
2275
|
+
"language": "en",
|
|
2276
|
+
"relatedName": "utr:F",
|
|
2277
|
+
"value": "°F"
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"labelType": "xbrl:documentation",
|
|
2281
|
+
"language": "en",
|
|
2282
|
+
"relatedName": "utr:F",
|
|
2283
|
+
"value": "Fahrenheit is a unit of measure for temperature defined by two fixed points: the temperature at which water freezes into ice is defined as 32 °F, and the boiling point of water is defined to be 212 °F, a 180 °F separation, as defined at sea level and standard atmospheric pressure."
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"labelType": "xbrl:label",
|
|
2287
|
+
"language": "en",
|
|
2288
|
+
"relatedName": "utr:Pa",
|
|
2289
|
+
"value": "Pascal"
|
|
2290
|
+
},
|
|
2291
|
+
{
|
|
2292
|
+
"labelType": "xbrl:symbolLabel",
|
|
2293
|
+
"language": "en",
|
|
2294
|
+
"relatedName": "utr:Pa",
|
|
2295
|
+
"value": "Pa"
|
|
2296
|
+
},
|
|
2297
|
+
{
|
|
2298
|
+
"labelType": "xbrl:documentation",
|
|
2299
|
+
"language": "en",
|
|
2300
|
+
"relatedName": "utr:Pa",
|
|
2301
|
+
"value": "The pascal is the SI derived unit of pressure used to quantify internal pressure, stress, Young's modulus and ultimate tensile strength. It is defined as one newton per square meter."
|
|
2302
|
+
},
|
|
2303
|
+
{
|
|
2304
|
+
"labelType": "xbrl:label",
|
|
2305
|
+
"language": "en",
|
|
2306
|
+
"relatedName": "utr:Bar",
|
|
2307
|
+
"value": "Bar"
|
|
2308
|
+
},
|
|
2309
|
+
{
|
|
2310
|
+
"labelType": "xbrl:symbolLabel",
|
|
2311
|
+
"language": "en",
|
|
2312
|
+
"relatedName": "utr:Bar",
|
|
2313
|
+
"value": "bar"
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"labelType": "xbrl:documentation",
|
|
2317
|
+
"language": "en",
|
|
2318
|
+
"relatedName": "utr:Bar",
|
|
2319
|
+
"value": "The bar is a metric unit of pressure, but is not approved as part of the International System of Units (SI). It is defined as exactly equal to 100000 Pa, which is slightly less than the current average atmospheric pressure on Earth at sea level."
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
"labelType": "xbrl:label",
|
|
2323
|
+
"language": "en",
|
|
2324
|
+
"relatedName": "utr:psi",
|
|
2325
|
+
"value": "Pounds Per Square Inch"
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
"labelType": "xbrl:symbolLabel",
|
|
2329
|
+
"language": "en",
|
|
2330
|
+
"relatedName": "utr:psi",
|
|
2331
|
+
"value": "psi"
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
"labelType": "xbrl:documentation",
|
|
2335
|
+
"language": "en",
|
|
2336
|
+
"relatedName": "utr:psi",
|
|
2337
|
+
"value": "The pound per square inch is a unit of pressure or of stress based on avoirdupois units. It is the pressure resulting from a force of one pound-force applied to an area of one square inch."
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"labelType": "xbrl:label",
|
|
2341
|
+
"language": "en",
|
|
2342
|
+
"relatedName": "utr:atm",
|
|
2343
|
+
"value": "Standard Atmosphere"
|
|
2344
|
+
},
|
|
2345
|
+
{
|
|
2346
|
+
"labelType": "xbrl:symbolLabel",
|
|
2347
|
+
"language": "en",
|
|
2348
|
+
"relatedName": "utr:atm",
|
|
2349
|
+
"value": "atm"
|
|
2350
|
+
},
|
|
2351
|
+
{
|
|
2352
|
+
"labelType": "xbrl:documentation",
|
|
2353
|
+
"language": "en",
|
|
2354
|
+
"relatedName": "utr:atm",
|
|
2355
|
+
"value": "The standard atmosphere is a unit of pressure defined as 101325 Pa (1.01325 bar). It is sometimes used as a reference or standard pressure."
|
|
2356
|
+
},
|
|
2357
|
+
{
|
|
2358
|
+
"labelType": "xbrl:label",
|
|
2359
|
+
"language": "en",
|
|
2360
|
+
"relatedName": "utr:N",
|
|
2361
|
+
"value": "Newton"
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"labelType": "xbrl:symbolLabel",
|
|
2365
|
+
"language": "en",
|
|
2366
|
+
"relatedName": "utr:N",
|
|
2367
|
+
"value": "N"
|
|
2368
|
+
},
|
|
2369
|
+
{
|
|
2370
|
+
"labelType": "xbrl:documentation",
|
|
2371
|
+
"language": "en",
|
|
2372
|
+
"relatedName": "utr:N",
|
|
2373
|
+
"value": "The newton is the International System of Units (SI) derived unit of force. One newton is the force needed to accelerate one kilogram of mass at the rate of one metre per second squared in direction of the applied force."
|
|
2374
|
+
},
|
|
2375
|
+
{
|
|
2376
|
+
"labelType": "xbrl:label",
|
|
2377
|
+
"language": "en",
|
|
2378
|
+
"relatedName": "utr:var",
|
|
2379
|
+
"value": "Volt-ampere reactive"
|
|
2380
|
+
},
|
|
2381
|
+
{
|
|
2382
|
+
"labelType": "xbrl:symbolLabel",
|
|
2383
|
+
"language": "en",
|
|
2384
|
+
"relatedName": "utr:var",
|
|
2385
|
+
"value": "var"
|
|
2386
|
+
},
|
|
2387
|
+
{
|
|
2388
|
+
"labelType": "xbrl:documentation",
|
|
2389
|
+
"language": "en",
|
|
2390
|
+
"relatedName": "utr:var",
|
|
2391
|
+
"value": "In electric power transmission and distribution, volt-ampere reactive (var) is a unit by which reactive power is expressed in an AC electric power system. Reactive power is the power that is wasted and not used to do work on the load."
|
|
2392
|
+
},
|
|
2393
|
+
{
|
|
2394
|
+
"labelType": "xbrl:label",
|
|
2395
|
+
"language": "en",
|
|
2396
|
+
"relatedName": "utr:VA",
|
|
2397
|
+
"value": "Volt-ampere"
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"labelType": "xbrl:symbolLabel",
|
|
2401
|
+
"language": "en",
|
|
2402
|
+
"relatedName": "utr:VA",
|
|
2403
|
+
"value": "VA"
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
"labelType": "xbrl:documentation",
|
|
2407
|
+
"language": "en",
|
|
2408
|
+
"relatedName": "utr:VA",
|
|
2409
|
+
"value": "A volt-ampere (VA) is the unit used for the apparent power in an electrical circuit, equal to the product of root-mean-square (RMS) voltage and RMS current. In direct current (DC) circuits, this product is equal to the real power (active power) in watts. Volt-amperes are useful only in the context of alternating current (AC) circuits."
|
|
2410
|
+
},
|
|
2411
|
+
{
|
|
2412
|
+
"labelType": "xbrl:label",
|
|
2413
|
+
"language": "en",
|
|
2414
|
+
"relatedName": "utr:Wh",
|
|
2415
|
+
"value": "Watt-Hours"
|
|
2416
|
+
},
|
|
2417
|
+
{
|
|
2418
|
+
"labelType": "xbrl:symbolLabel",
|
|
2419
|
+
"language": "en",
|
|
2420
|
+
"relatedName": "utr:Wh",
|
|
2421
|
+
"value": "Wh"
|
|
2422
|
+
},
|
|
2423
|
+
{
|
|
2424
|
+
"labelType": "xbrl:documentation",
|
|
2425
|
+
"language": "en",
|
|
2426
|
+
"relatedName": "utr:Wh",
|
|
2427
|
+
"value": "Watt-Hours of Energy"
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"labelType": "xbrl:label",
|
|
2431
|
+
"language": "en",
|
|
2432
|
+
"relatedName": "utr:VAh",
|
|
2433
|
+
"value": "Volt-ampere-hours"
|
|
2434
|
+
},
|
|
2435
|
+
{
|
|
2436
|
+
"labelType": "xbrl:symbolLabel",
|
|
2437
|
+
"language": "en",
|
|
2438
|
+
"relatedName": "utr:VAh",
|
|
2439
|
+
"value": "VAh"
|
|
2440
|
+
},
|
|
2441
|
+
{
|
|
2442
|
+
"labelType": "xbrl:documentation",
|
|
2443
|
+
"language": "en",
|
|
2444
|
+
"relatedName": "utr:VAh",
|
|
2445
|
+
"value": "Volt-ampere (VA) hours of energy."
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
"labelType": "xbrl:label",
|
|
2449
|
+
"language": "en",
|
|
2450
|
+
"relatedName": "utr:Ah",
|
|
2451
|
+
"value": "Ampere Hours"
|
|
2452
|
+
},
|
|
2453
|
+
{
|
|
2454
|
+
"labelType": "xbrl:symbolLabel",
|
|
2455
|
+
"language": "en",
|
|
2456
|
+
"relatedName": "utr:Ah",
|
|
2457
|
+
"value": "Ah"
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"labelType": "xbrl:documentation",
|
|
2461
|
+
"language": "en",
|
|
2462
|
+
"relatedName": "utr:Ah",
|
|
2463
|
+
"value": "An ampere hour or amp hour is a unit of electric charge, equal to the charge transferred by a steady current of one ampere flowing for one hour."
|
|
2464
|
+
},
|
|
2465
|
+
{
|
|
2466
|
+
"labelType": "xbrl:label",
|
|
2467
|
+
"language": "en",
|
|
2468
|
+
"relatedName": "utr:C",
|
|
2469
|
+
"value": "Coulomb"
|
|
2470
|
+
},
|
|
2471
|
+
{
|
|
2472
|
+
"labelType": "xbrl:symbolLabel",
|
|
2473
|
+
"language": "en",
|
|
2474
|
+
"relatedName": "utr:C",
|
|
2475
|
+
"value": "C"
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
"labelType": "xbrl:documentation",
|
|
2479
|
+
"language": "en",
|
|
2480
|
+
"relatedName": "utr:C",
|
|
2481
|
+
"value": "The coulomb is the International System of Units (SI) unit of electric charge. It is the charge transported by a constant current of one ampere in one second."
|
|
2482
|
+
},
|
|
2483
|
+
{
|
|
2484
|
+
"labelType": "xbrl:label",
|
|
2485
|
+
"language": "en",
|
|
2486
|
+
"relatedName": "utr:Degree",
|
|
2487
|
+
"value": "Degree"
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
"labelType": "xbrl:symbolLabel",
|
|
2491
|
+
"language": "en",
|
|
2492
|
+
"relatedName": "utr:Degree",
|
|
2493
|
+
"value": "°"
|
|
2494
|
+
},
|
|
2495
|
+
{
|
|
2496
|
+
"labelType": "xbrl:documentation",
|
|
2497
|
+
"language": "en",
|
|
2498
|
+
"relatedName": "utr:Degree",
|
|
2499
|
+
"value": "The degree is a measurement of a plane angle, defined so that a full rotation is 360 degrees. In XBRL the degree is reported in a decimal format."
|
|
2500
|
+
},
|
|
2501
|
+
{
|
|
2502
|
+
"labelType": "xbrl:label",
|
|
2503
|
+
"language": "en",
|
|
2504
|
+
"relatedName": "utr:rad",
|
|
2505
|
+
"value": "Radian"
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
"labelType": "xbrl:symbolLabel",
|
|
2509
|
+
"language": "en",
|
|
2510
|
+
"relatedName": "utr:rad",
|
|
2511
|
+
"value": "rad"
|
|
2512
|
+
},
|
|
2513
|
+
{
|
|
2514
|
+
"labelType": "xbrl:documentation",
|
|
2515
|
+
"language": "en",
|
|
2516
|
+
"relatedName": "utr:rad",
|
|
2517
|
+
"value": "The radian is the standard unit of angular measure. The radian is an SI derived unit."
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
"labelType": "xbrl:label",
|
|
2521
|
+
"language": "en",
|
|
2522
|
+
"relatedName": "utr:dth",
|
|
2523
|
+
"value": "Dekatherm"
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"labelType": "xbrl:symbolLabel",
|
|
2527
|
+
"language": "en",
|
|
2528
|
+
"relatedName": "utr:dth",
|
|
2529
|
+
"value": "dth"
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
"labelType": "xbrl:documentation",
|
|
2533
|
+
"language": "en",
|
|
2534
|
+
"relatedName": "utr:dth",
|
|
2535
|
+
"value": "The dekatherm is a unit of energy used to measure natural gas. One dekatherm is equal to 10 therms or one million British thermal units (Btu)."
|
|
2536
|
+
},
|
|
2537
|
+
{
|
|
2538
|
+
"labelType": "xbrl:label",
|
|
2539
|
+
"language": "en",
|
|
2540
|
+
"relatedName": "utr:MWd",
|
|
2541
|
+
"value": "Megawatt-Day"
|
|
2542
|
+
},
|
|
2543
|
+
{
|
|
2544
|
+
"labelType": "xbrl:symbolLabel",
|
|
2545
|
+
"language": "en",
|
|
2546
|
+
"relatedName": "utr:MWd",
|
|
2547
|
+
"value": "MWd"
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
"labelType": "xbrl:documentation",
|
|
2551
|
+
"language": "en",
|
|
2552
|
+
"relatedName": "utr:MWd",
|
|
2553
|
+
"value": "Megawatt-Day is used to measure energy generated in one day by a power-plant. Is commonly used to define fuel-burnup. A commonly used measure of fuel burnup is the fission energy release per unit mass of fuel."
|
|
2554
|
+
},
|
|
2555
|
+
{
|
|
2556
|
+
"labelType": "xbrl:label",
|
|
2557
|
+
"language": "en",
|
|
2558
|
+
"relatedName": "utr:GJ",
|
|
2559
|
+
"value": "Gigajoule"
|
|
2560
|
+
},
|
|
2561
|
+
{
|
|
2562
|
+
"labelType": "xbrl:symbolLabel",
|
|
2563
|
+
"language": "en",
|
|
2564
|
+
"relatedName": "utr:GJ",
|
|
2565
|
+
"value": "GJ"
|
|
2566
|
+
},
|
|
2567
|
+
{
|
|
2568
|
+
"labelType": "xbrl:documentation",
|
|
2569
|
+
"language": "en",
|
|
2570
|
+
"relatedName": "utr:GJ",
|
|
2571
|
+
"value": "Billion Joules"
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
"labelType": "xbrl:label",
|
|
2575
|
+
"language": "en",
|
|
2576
|
+
"relatedName": "utr:MJ",
|
|
2577
|
+
"value": "Megajoule"
|
|
2578
|
+
},
|
|
2579
|
+
{
|
|
2580
|
+
"labelType": "xbrl:symbolLabel",
|
|
2581
|
+
"language": "en",
|
|
2582
|
+
"relatedName": "utr:MJ",
|
|
2583
|
+
"value": "MJ"
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"labelType": "xbrl:documentation",
|
|
2587
|
+
"language": "en",
|
|
2588
|
+
"relatedName": "utr:MJ",
|
|
2589
|
+
"value": "Million Joules"
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"labelType": "xbrl:label",
|
|
2593
|
+
"language": "en",
|
|
2594
|
+
"relatedName": "utr:TJ",
|
|
2595
|
+
"value": "Terajoule"
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
"labelType": "xbrl:symbolLabel",
|
|
2599
|
+
"language": "en",
|
|
2600
|
+
"relatedName": "utr:TJ",
|
|
2601
|
+
"value": "TJ"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"labelType": "xbrl:documentation",
|
|
2605
|
+
"language": "en",
|
|
2606
|
+
"relatedName": "utr:TJ",
|
|
2607
|
+
"value": "Trillion Joules"
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
"labelType": "xbrl:label",
|
|
2611
|
+
"language": "en",
|
|
2612
|
+
"relatedName": "utr:PB",
|
|
2613
|
+
"value": "Petabyte"
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"labelType": "xbrl:symbolLabel",
|
|
2617
|
+
"language": "en",
|
|
2618
|
+
"relatedName": "utr:PB",
|
|
2619
|
+
"value": "PB"
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
"labelType": "xbrl:documentation",
|
|
2623
|
+
"language": "en",
|
|
2624
|
+
"relatedName": "utr:PB",
|
|
2625
|
+
"value": "Petabytes of Memory per IEEE 1541-2002"
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
"labelType": "xbrl:label",
|
|
2629
|
+
"language": "en",
|
|
2630
|
+
"relatedName": "utr:Mvar",
|
|
2631
|
+
"value": "Million Volt-ampere reactive"
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
"labelType": "xbrl:symbolLabel",
|
|
2635
|
+
"language": "en",
|
|
2636
|
+
"relatedName": "utr:Mvar",
|
|
2637
|
+
"value": "Mvar"
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"labelType": "xbrl:documentation",
|
|
2641
|
+
"language": "en",
|
|
2642
|
+
"relatedName": "utr:Mvar",
|
|
2643
|
+
"value": "In electric power transmission and distribution, Million volt-ampere reactive (Mvar) is a unit by which reactive power is expressed in an AC electric power system. Reactive power is the power that is wasted and not used to do work on the load."
|
|
2644
|
+
},
|
|
2645
|
+
{
|
|
2646
|
+
"labelType": "xbrl:label",
|
|
2647
|
+
"language": "en",
|
|
2648
|
+
"relatedName": "utr:MVA",
|
|
2649
|
+
"value": "MegaVolt-ampere"
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"labelType": "xbrl:symbolLabel",
|
|
2653
|
+
"language": "en",
|
|
2654
|
+
"relatedName": "utr:MVA",
|
|
2655
|
+
"value": "MVA"
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
"labelType": "xbrl:documentation",
|
|
2659
|
+
"language": "en",
|
|
2660
|
+
"relatedName": "utr:MVA",
|
|
2661
|
+
"value": "A megavolt-ampere (MVA) is the unit used for the apparent power in an electrical circuit, equal to the product of root-mean-square (RMS) voltage and RMS current. In direct current (DC) circuits, this product is equal to the real power (active power) in watts. Volt-amperes are useful only in the context of alternating current (AC) circuits."
|
|
2662
|
+
},
|
|
2663
|
+
{
|
|
2664
|
+
"labelType": "xbrl:label",
|
|
2665
|
+
"language": "en",
|
|
2666
|
+
"relatedName": "utr:tCO2e",
|
|
2667
|
+
"value": "Metric tonnes of CO2 equivalent"
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
"labelType": "xbrl:symbolLabel",
|
|
2671
|
+
"language": "en",
|
|
2672
|
+
"relatedName": "utr:tCO2e",
|
|
2673
|
+
"value": "tCO2e"
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
"labelType": "xbrl:documentation",
|
|
2677
|
+
"language": "en",
|
|
2678
|
+
"relatedName": "utr:tCO2e",
|
|
2679
|
+
"value": "Carbon dioxide equivalent is calculated for emissions other than carbon dioxide according to their global warming potential (GWP). As estimates of GWP may change over time, the UTR defines no fixed conversion rates."
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
"labelType": "xbrl:label",
|
|
2683
|
+
"language": "en",
|
|
2684
|
+
"relatedName": "utr:ktCO2e",
|
|
2685
|
+
"value": "Thousand metric tonnes of CO2 equivalent"
|
|
2686
|
+
},
|
|
2687
|
+
{
|
|
2688
|
+
"labelType": "xbrl:symbolLabel",
|
|
2689
|
+
"language": "en",
|
|
2690
|
+
"relatedName": "utr:ktCO2e",
|
|
2691
|
+
"value": "ktCO2e"
|
|
2692
|
+
},
|
|
2693
|
+
{
|
|
2694
|
+
"labelType": "xbrl:documentation",
|
|
2695
|
+
"language": "en",
|
|
2696
|
+
"relatedName": "utr:ktCO2e",
|
|
2697
|
+
"value": "Carbon dioxide equivalent is calculated for emissions other than carbon dioxide according to their global warming potential (GWP). As estimates of GWP may change over time, the UTR defines no fixed conversion rates."
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
"labelType": "xbrl:label",
|
|
2701
|
+
"language": "en",
|
|
2702
|
+
"relatedName": "utr:MtCO2e",
|
|
2703
|
+
"value": "Million metric tonnes of CO2 equivalent"
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
"labelType": "xbrl:symbolLabel",
|
|
2707
|
+
"language": "en",
|
|
2708
|
+
"relatedName": "utr:MtCO2e",
|
|
2709
|
+
"value": "MtCO2e"
|
|
2710
|
+
},
|
|
2711
|
+
{
|
|
2712
|
+
"labelType": "xbrl:documentation",
|
|
2713
|
+
"language": "en",
|
|
2714
|
+
"relatedName": "utr:MtCO2e",
|
|
2715
|
+
"value": "Carbon dioxide equivalent is calculated for emissions other than carbon dioxide according to their global warming potential (GWP). As estimates of GWP may change over time, the UTR defines no fixed conversion rates."
|
|
2716
|
+
},
|
|
2717
|
+
{
|
|
2718
|
+
"labelType": "xbrl:label",
|
|
2719
|
+
"language": "en",
|
|
2720
|
+
"relatedName": "utr:GtCO2e",
|
|
2721
|
+
"value": "Thousand million metric tonnes of CO2 equivalent"
|
|
2722
|
+
},
|
|
2723
|
+
{
|
|
2724
|
+
"labelType": "xbrl:symbolLabel",
|
|
2725
|
+
"language": "en",
|
|
2726
|
+
"relatedName": "utr:GtCO2e",
|
|
2727
|
+
"value": "GtCO2e"
|
|
2728
|
+
},
|
|
2729
|
+
{
|
|
2730
|
+
"labelType": "xbrl:documentation",
|
|
2731
|
+
"language": "en",
|
|
2732
|
+
"relatedName": "utr:GtCO2e",
|
|
2733
|
+
"value": "Carbon dioxide equivalent is calculated for emissions other than carbon dioxide according to their global warming potential (GWP). As estimates of GWP may change over time, the UTR defines no fixed conversion rates."
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"labelType": "xbrl:label",
|
|
2737
|
+
"language": "en",
|
|
2738
|
+
"relatedName": "utr:Emissions_per_Monetary",
|
|
2739
|
+
"value": "Emissions/Monetary"
|
|
2740
|
+
},
|
|
2741
|
+
{
|
|
2742
|
+
"labelType": "xbrl:documentation",
|
|
2743
|
+
"language": "en",
|
|
2744
|
+
"relatedName": "utr:Emissions_per_Monetary",
|
|
2745
|
+
"value": "CO2 equivalent emissions per monetary unit (Emissions intensity)"
|
|
2746
|
+
},
|
|
2747
|
+
{
|
|
2748
|
+
"labelType": "xbrl:label",
|
|
2749
|
+
"language": "en",
|
|
2750
|
+
"relatedName": "utr:Energy_per_Monetary",
|
|
2751
|
+
"value": "Energy/Monetary"
|
|
2752
|
+
},
|
|
2753
|
+
{
|
|
2754
|
+
"labelType": "xbrl:documentation",
|
|
2755
|
+
"language": "en",
|
|
2756
|
+
"relatedName": "utr:Energy_per_Monetary",
|
|
2757
|
+
"value": "Energy consumed per monetary unit (Energy intensity)"
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"labelType": "xbrl:label",
|
|
2761
|
+
"language": "en",
|
|
2762
|
+
"relatedName": "utr:Volume_per_Monetary",
|
|
2763
|
+
"value": "Volume/Monetary"
|
|
2764
|
+
},
|
|
2765
|
+
|
|
2766
|
+
{
|
|
2767
|
+
"labelType": "xbrl:documentation",
|
|
2768
|
+
"language": "en",
|
|
2769
|
+
"relatedName": "utr:Volume_per_Monetary",
|
|
2770
|
+
"value": "Volume consumed per monetary unit (e.g. Water intensity)"
|
|
2771
|
+
}
|
|
2772
|
+
],
|
|
2773
|
+
"propertyTypes": [
|
|
2774
|
+
{
|
|
2775
|
+
"name": "utr:baseStandardIdentifier",
|
|
2776
|
+
"dataType": "xs:string",
|
|
2777
|
+
"definitional": false,
|
|
2778
|
+
"allowedObjects": [
|
|
2779
|
+
"xbrl:referenceObject"
|
|
2780
|
+
]
|
|
2781
|
+
},
|
|
2782
|
+
{
|
|
2783
|
+
"name": "utr:dateUnitCreated",
|
|
2784
|
+
"dataType": "xs:date",
|
|
2785
|
+
"definitional": false,
|
|
2786
|
+
"allowedObjects": [
|
|
2787
|
+
"xbrl:referenceObject"
|
|
2788
|
+
]
|
|
2789
|
+
}
|
|
2790
|
+
],
|
|
2791
|
+
"references": [
|
|
2792
|
+
{
|
|
2793
|
+
"name" : "utr:InititalUnitCreation",
|
|
2794
|
+
"relatedNames" : ["utr:acre",
|
|
2795
|
+
"utr:acre",
|
|
2796
|
+
"utr:sqft",
|
|
2797
|
+
"utr:sqmi",
|
|
2798
|
+
"utr:sqyd",
|
|
2799
|
+
"utr:Boe",
|
|
2800
|
+
"utr:Btu",
|
|
2801
|
+
"utr:ft_lb",
|
|
2802
|
+
"utr:MBoe",
|
|
2803
|
+
"utr:Mcfe",
|
|
2804
|
+
"utr:MMBoe",
|
|
2805
|
+
"utr:MMBTU",
|
|
2806
|
+
"utr:ft",
|
|
2807
|
+
"utr:in",
|
|
2808
|
+
"utr:mi",
|
|
2809
|
+
"utr:nmi",
|
|
2810
|
+
"utr:yd",
|
|
2811
|
+
"utr:lb",
|
|
2812
|
+
"utr:oz",
|
|
2813
|
+
"utr:ozt",
|
|
2814
|
+
"utr:T",
|
|
2815
|
+
"utr:hp",
|
|
2816
|
+
"utr:bbl",
|
|
2817
|
+
"utr:ft3",
|
|
2818
|
+
"utr:gal",
|
|
2819
|
+
"utr:MBbls",
|
|
2820
|
+
"utr:Mcf",
|
|
2821
|
+
"utr:MMBbls",
|
|
2822
|
+
"utr:MMcf",
|
|
2823
|
+
"utr:Cal",
|
|
2824
|
+
"utr:t",
|
|
2825
|
+
"utr:B",
|
|
2826
|
+
"utr:GB",
|
|
2827
|
+
"utr:kB",
|
|
2828
|
+
"utr:MB",
|
|
2829
|
+
"utr:TB",
|
|
2830
|
+
"utr:ha",
|
|
2831
|
+
"utr:sqkm",
|
|
2832
|
+
"utr:sqm",
|
|
2833
|
+
"utr:A",
|
|
2834
|
+
"utr:J",
|
|
2835
|
+
"utr:kJ",
|
|
2836
|
+
"utr:kWh",
|
|
2837
|
+
"utr:mJ",
|
|
2838
|
+
"utr:MWh",
|
|
2839
|
+
"utr:V",
|
|
2840
|
+
"utr:Hz",
|
|
2841
|
+
"utr:cm",
|
|
2842
|
+
"utr:dm",
|
|
2843
|
+
"utr:km",
|
|
2844
|
+
"utr:m",
|
|
2845
|
+
"utr:mm",
|
|
2846
|
+
"utr:g",
|
|
2847
|
+
"utr:kg",
|
|
2848
|
+
"utr:GW",
|
|
2849
|
+
"utr:kW",
|
|
2850
|
+
"utr:MW",
|
|
2851
|
+
"utr:TW",
|
|
2852
|
+
"utr:W",
|
|
2853
|
+
"utr:kV",
|
|
2854
|
+
"utr:l",
|
|
2855
|
+
"utr:m3",
|
|
2856
|
+
"utr:bu",
|
|
2857
|
+
"utr:Monetary_per_Share",
|
|
2858
|
+
"utr:Monetary_per_Decimal",
|
|
2859
|
+
"utr:Monetary_per_Monetary",
|
|
2860
|
+
"xbrli:pure",
|
|
2861
|
+
"utr:Rate",
|
|
2862
|
+
"xbrli:shares",
|
|
2863
|
+
"utr:Y",
|
|
2864
|
+
"utr:M",
|
|
2865
|
+
"utr:D",
|
|
2866
|
+
"utr:H",
|
|
2867
|
+
"utr:MM",
|
|
2868
|
+
"utr:S",
|
|
2869
|
+
"utr:Volume_per_Duration"
|
|
2870
|
+
],
|
|
2871
|
+
"referenceType" : "utr:unitCreationDate",
|
|
2872
|
+
"properties" : [{"property":"utr:dateUnitCreated", "value":"2012-10-03"}]
|
|
2873
|
+
|
|
2874
|
+
},
|
|
2875
|
+
{
|
|
2876
|
+
"name" : "utr:InternationalSystemOfUnitsRef",
|
|
2877
|
+
"relatedNames" : ["utr:ha",
|
|
2878
|
+
"utr:sqkm",
|
|
2879
|
+
"utr:sqm",
|
|
2880
|
+
"utr:A",
|
|
2881
|
+
"utr:J",
|
|
2882
|
+
"utr:kJ",
|
|
2883
|
+
"utr:kWh",
|
|
2884
|
+
"utr:mJ",
|
|
2885
|
+
"utr:MWh",
|
|
2886
|
+
"utr:V",
|
|
2887
|
+
"utr:Hz",
|
|
2888
|
+
"utr:cm",
|
|
2889
|
+
"utr:dm",
|
|
2890
|
+
"utr:km",
|
|
2891
|
+
"utr:m",
|
|
2892
|
+
"utr:mm",
|
|
2893
|
+
"utr:g",
|
|
2894
|
+
"utr:kg",
|
|
2895
|
+
"utr:GW",
|
|
2896
|
+
"utr:kW",
|
|
2897
|
+
"utr:MW",
|
|
2898
|
+
"utr:TW",
|
|
2899
|
+
"utr:W",
|
|
2900
|
+
"utr:kV",
|
|
2901
|
+
"utr:l",
|
|
2902
|
+
"utr:m3",
|
|
2903
|
+
"utr:S",
|
|
2904
|
+
"utr:MV",
|
|
2905
|
+
"utr:GV",
|
|
2906
|
+
"utr:GWh",
|
|
2907
|
+
"utr:TWh",
|
|
2908
|
+
"utr:MWM",
|
|
2909
|
+
"utr:GWM",
|
|
2910
|
+
"utr:Celsius",
|
|
2911
|
+
"utr:K",
|
|
2912
|
+
"utr:Pa",
|
|
2913
|
+
"utr:N",
|
|
2914
|
+
"utr:VA",
|
|
2915
|
+
"utr:C",
|
|
2916
|
+
"utr:rad",
|
|
2917
|
+
"utr:GJ",
|
|
2918
|
+
"utr:MJ",
|
|
2919
|
+
"utr:TJ",
|
|
2920
|
+
"utr:MVA" ],
|
|
2921
|
+
"referenceType" : "utr:baseUnitsStandard",
|
|
2922
|
+
"properties" : [{"property":"utr:baseStandardIdentifier", "value":"si"}]
|
|
2923
|
+
|
|
2924
|
+
},
|
|
2925
|
+
{
|
|
2926
|
+
"name" : "utr:CustomaryUnitsRef",
|
|
2927
|
+
"relatedNames" : ["utr:acre",
|
|
2928
|
+
"utr:sqft",
|
|
2929
|
+
"utr:sqmi",
|
|
2930
|
+
"utr:sqyd",
|
|
2931
|
+
"utr:Boe",
|
|
2932
|
+
"utr:Btu",
|
|
2933
|
+
"utr:ft_lb",
|
|
2934
|
+
"utr:MBoe",
|
|
2935
|
+
"utr:Mcfe",
|
|
2936
|
+
"utr:MMBoe",
|
|
2937
|
+
"utr:MMBTU",
|
|
2938
|
+
"utr:ft",
|
|
2939
|
+
"utr:in",
|
|
2940
|
+
"utr:mi",
|
|
2941
|
+
"utr:nmi",
|
|
2942
|
+
"utr:yd",
|
|
2943
|
+
"utr:lb",
|
|
2944
|
+
"utr:oz",
|
|
2945
|
+
"utr:ozt",
|
|
2946
|
+
"utr:T",
|
|
2947
|
+
"utr:hp",
|
|
2948
|
+
"utr:bbl",
|
|
2949
|
+
"utr:ft3",
|
|
2950
|
+
"utr:gal",
|
|
2951
|
+
"utr:MBbls",
|
|
2952
|
+
"utr:Mcf",
|
|
2953
|
+
"utr:MMBbls",
|
|
2954
|
+
"utr:MMcf",
|
|
2955
|
+
"utr:bu",
|
|
2956
|
+
"utr:aft",
|
|
2957
|
+
"utr:Y",
|
|
2958
|
+
"utr:M",
|
|
2959
|
+
"utr:D",
|
|
2960
|
+
"utr:H",
|
|
2961
|
+
"utr:MM",
|
|
2962
|
+
"utr:Volume_per_Duration",
|
|
2963
|
+
"utr:Bcf",
|
|
2964
|
+
"utr:Tcf",
|
|
2965
|
+
"utr:Q",
|
|
2966
|
+
"utr:WK",
|
|
2967
|
+
"utr:MMcfe",
|
|
2968
|
+
"utr:Bcfe",
|
|
2969
|
+
"utr:Tcfe",
|
|
2970
|
+
"utr:kT",
|
|
2971
|
+
"utr:MT",
|
|
2972
|
+
"utr:GT",
|
|
2973
|
+
"utr:Energy_per_Duration",
|
|
2974
|
+
"utr:F",
|
|
2975
|
+
"utr:Bar",
|
|
2976
|
+
"utr:psi",
|
|
2977
|
+
"utr:atm",
|
|
2978
|
+
"utr:var",
|
|
2979
|
+
"utr:Wh",
|
|
2980
|
+
"utr:VAh",
|
|
2981
|
+
"utr:Ah",
|
|
2982
|
+
"utr:Degree",
|
|
2983
|
+
"utr:dth",
|
|
2984
|
+
"utr:MWd",
|
|
2985
|
+
"utr:Mvar",
|
|
2986
|
+
"utr:Emissions_per_Monetary",
|
|
2987
|
+
"utr:Energy_per_Monetary",
|
|
2988
|
+
"utr:Volume_per_Monetary" ],
|
|
2989
|
+
"referenceType" : "xbrl:baseUnitsStandard",
|
|
2990
|
+
"properties" : [{"property":"utr:baseStandardIdentifier", "value":"customary"}]
|
|
2991
|
+
|
|
2992
|
+
},
|
|
2993
|
+
{
|
|
2994
|
+
"name" : "utr:SiDerivedUnitsRef",
|
|
2995
|
+
"relatedNames" : ["utr:Cal",
|
|
2996
|
+
"utr:t",
|
|
2997
|
+
"utr:B",
|
|
2998
|
+
"utr:GB",
|
|
2999
|
+
"utr:kB",
|
|
3000
|
+
"utr:MB",
|
|
3001
|
+
"utr:TB",
|
|
3002
|
+
"utr:kt",
|
|
3003
|
+
"utr:Mt",
|
|
3004
|
+
"utr:Gt",
|
|
3005
|
+
"utr:PB",
|
|
3006
|
+
"utr:tCO2e",
|
|
3007
|
+
"utr:ktCO2e",
|
|
3008
|
+
"utr:MtCO2e",
|
|
3009
|
+
"utr:GtCO2e" ],
|
|
3010
|
+
"referenceType" : "xbrl:baseUnitsStandard",
|
|
3011
|
+
"properties" : [{"property":"utr:baseStandardIdentifier", "value":"Non-SI"}]
|
|
3012
|
+
},
|
|
3013
|
+
{
|
|
3014
|
+
"name" : "utr:XbrlDerivedUnitsRef",
|
|
3015
|
+
"relatedNames" : ["utr:Monetary_per_Share",
|
|
3016
|
+
"utr:Monetary_per_Decimal",
|
|
3017
|
+
"utr:Monetary_per_Monetary",
|
|
3018
|
+
"xbrli:pure",
|
|
3019
|
+
"utr:Rate",
|
|
3020
|
+
"xbrli:shares" ],
|
|
3021
|
+
"referenceType" : "xbrl:baseUnitsStandard",
|
|
3022
|
+
"properties" : [{"property":"utr:baseStandardIdentifier", "value":"xbrl"}]
|
|
3023
|
+
}
|
|
3024
|
+
],
|
|
3025
|
+
"referenceTypes": [
|
|
3026
|
+
{
|
|
3027
|
+
"name": "utr:baseUnitsStandard",
|
|
3028
|
+
"allowedObjects": [
|
|
3029
|
+
"xbrl:unitObject"
|
|
3030
|
+
],
|
|
3031
|
+
"requiredProperties": [
|
|
3032
|
+
"utr:baseStandardIdentifier"
|
|
3033
|
+
]
|
|
3034
|
+
},
|
|
3035
|
+
{
|
|
3036
|
+
"name": "utr:unitCreationDate",
|
|
3037
|
+
"allowedObjects": [
|
|
3038
|
+
"xbrl:unitObject"
|
|
3039
|
+
],
|
|
3040
|
+
"requiredProperties": [
|
|
3041
|
+
"utr:dateUnitCreated"
|
|
3042
|
+
]
|
|
3043
|
+
}
|
|
3044
|
+
]
|
|
3045
|
+
}
|
|
3046
|
+
}
|