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,2481 @@
|
|
|
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
|
+
"xbrltt":"https://xbrl.org/2025/transform-types/"
|
|
10
|
+
},
|
|
11
|
+
"documentNamespace":"xbrltt"
|
|
12
|
+
},
|
|
13
|
+
"taxonomy": {
|
|
14
|
+
"resolved" : false,
|
|
15
|
+
"name": "xbrltt:TransformsTaxonomyModule",
|
|
16
|
+
"frameworkName": "transforms",
|
|
17
|
+
"version": "2025",
|
|
18
|
+
"dataTypes": [
|
|
19
|
+
{
|
|
20
|
+
"name": "xbrltt:dateDayMonthnameBgType",
|
|
21
|
+
"baseType": "xs:string",
|
|
22
|
+
"patterns": [
|
|
23
|
+
"[0-9]{1,2}[^0-9]+(ян|фев|мар|апр|май|маи|юни|юли|авг|сеп|окт|ное|дек|ЯН|ФЕВ|МАР|АПР|МАЙ|МАИ|ЮНИ|ЮЛИ|АВГ|СЕП|ОКТ|НОЕ|ДЕК|Ян|Фев|Мар|Апр|Май|Маи|Юни|Юли|Авг|Сеп|Окт|Ное|Дек)[^0-9]{0,6}"
|
|
24
|
+
],
|
|
25
|
+
"whiteSpace": "collapse"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "xbrltt:dateDayMonthnameYearBgType",
|
|
29
|
+
"baseType": "xs:string",
|
|
30
|
+
"patterns": [
|
|
31
|
+
"[0-9]{1,2}[^0-9]+(ян|фев|мар|апр|май|маи|юни|юли|авг|сеп|окт|ное|дек|ЯН|ФЕВ|МАР|АПР|МАЙ|МАИ|ЮНИ|ЮЛИ|АВГ|СЕП|ОКТ|НОЕ|ДЕК|Ян|Фев|Мар|Апр|Май|Маи|Юни|Юли|Авг|Сеп|Окт|Ное|Дек)[^0-9]+([0-9]{1,2}|[0-9]{4})[^0-9]*"
|
|
32
|
+
],
|
|
33
|
+
"whiteSpace": "collapse"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "xbrltt:dateMonthnameYearBgType",
|
|
37
|
+
"baseType": "xs:string",
|
|
38
|
+
"patterns": [
|
|
39
|
+
"(ян|фев|мар|апр|май|маи|юни|юли|авг|сеп|окт|ное|дек|ЯН|ФЕВ|МАР|АПР|МАЙ|МАИ|ЮНИ|ЮЛИ|АВГ|СЕП|ОКТ|НОЕ|ДЕК|Ян|Фев|Мар|Апр|Май|Маи|Юни|Юли|Авг|Сеп|Окт|Ное|Дек)[^0-9]+([0-9]{1,2}|[0-9]{4})[^0-9]*"
|
|
40
|
+
],
|
|
41
|
+
"whiteSpace": "collapse"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "xbrltt:dateDayMonthnameCsType",
|
|
45
|
+
"baseType": "xs:string",
|
|
46
|
+
"patterns": [
|
|
47
|
+
"[0-9]{1,2}[^0-9]+(ledna|února|unora|března|brezna|dubna|května|kvetna|června|cervna|července|cervence|srpna|září|zari|října|rijna|listopadu|prosince|led|úno|uno|bře|bre|dub|kvě|kve|čvn|cvn|čvc|cvc|srp|zář|zar|říj|rij|lis|pro|LEDNA|ÚNORA|UNORA|BŘEZNA|BREZNA|DUBNA|KVĚTNA|KVETNA|ČERVNA|CERVNA|ČERVENCE|CERVENCE|SRPNA|ZÁŘÍ|ZARI|ŘÍJNA|RIJNA|LISTOPADU|PROSINCE|LED|ÚNO|UNO|BŘE|BRE|DUB|KVĚ|KVE|ČVN|CVN|ČVC|CVC|SRP|ZÁŘ|ZAR|ŘÍJ|RIJ|LIS|PRO|Ledna|Února|Unora|Března|Brezna|Dubna|Května|Kvetna|Června|Cervna|Července|Cervence|Srpna|Září|Zari|Října|Rijna|Listopadu|Prosince|Led|Úno|Uno|Bře|Bre|Dub|Kvě|Kve|Čvn|Cvn|Čvc|Cvc|Srp|Zář|Zar|Říj|Rij|Lis|Pro)\\.?"
|
|
48
|
+
],
|
|
49
|
+
"whiteSpace": "collapse"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "xbrltt:dateDayMonthnameYearCsType",
|
|
53
|
+
"baseType": "xs:string",
|
|
54
|
+
"patterns": [
|
|
55
|
+
"[0-9]{1,2}[^0-9]+(ledna|února|unora|března|brezna|dubna|května|kvetna|června|cervna|července|cervence|srpna|září|zari|října|rijna|listopadu|prosince|led|úno|uno|bře|bre|dub|kvě|kve|čvn|cvn|čvc|cvc|srp|zář|zar|říj|rij|lis|pro|LEDNA|ÚNORA|UNORA|BŘEZNA|BREZNA|DUBNA|KVĚTNA|KVETNA|ČERVNA|CERVNA|ČERVENCE|CERVENCE|SRPNA|ZÁŘÍ|ZARI|ŘÍJNA|RIJNA|LISTOPADU|PROSINCE|LED|ÚNO|UNO|BŘE|BRE|DUB|KVĚ|KVE|ČVN|CVN|ČVC|CVC|SRP|ZÁŘ|ZAR|ŘÍJ|RIJ|LIS|PRO|Ledna|Února|Unora|Března|Brezna|Dubna|Května|Kvetna|Června|Cervna|Července|Cervence|Srpna|Září|Zari|Října|Rijna|Listopadu|Prosince|Led|Úno|Uno|Bře|Bre|Dub|Kvě|Kve|Čvn|Cvn|Čvc|Cvc|Srp|Zář|Zar|Říj|Rij|Lis|Pro)[^0-9a-zA-Z]+[^0-9]*([0-9]{1,2}|[0-9]{4})"
|
|
56
|
+
],
|
|
57
|
+
"whiteSpace": "collapse"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "xbrltt:dateMonthnameYearCsType",
|
|
61
|
+
"baseType": "xs:string",
|
|
62
|
+
"patterns": [
|
|
63
|
+
"(leden|ledna|lednu|únor|unor|února|unora|únoru|unoru|březen|brezen|března|brezna|březnu|breznu|duben|dubna|dubnu|květen|kveten|května|kvetna|květnu|kvetnu|červen|cerven|června|cervna|červnu|cervnu|červenec|cervenec|července|cervence|červenci|cervenci|srpen|srpna|srpnu|září|zari|říjen|rijen|října|rijna|říjnu|rijnu|listopad|listopadu|prosinec|prosince|prosinci|led|úno|uno|bře|bre|dub|kvě|kve|čvn|cvn|čvc|cvc|srp|zář|zar|říj|rij|lis|pro|LEDEN|LEDNA|LEDNU|ÚNOR|UNOR|ÚNORA|UNORA|ÚNORU|UNORU|BŘEZEN|BREZEN|BŘEZNA|BREZNA|BŘEZNU|BREZNU|DUBEN|DUBNA|DUBNU|KVĚTEN|KVETEN|KVĚTNA|KVETNA|KVĚTNU|KVETNU|ČERVEN|CERVEN|ČERVNA|CERVNA|ČERVNU|CERVNU|ČERVENEC|CERVENEC|ČERVENCE|CERVENCE|ČERVENCI|CERVENCI|SRPEN|SRPNA|SRPNU|ZÁŘÍ|ZARI|ŘÍJEN|RIJEN|ŘÍJNA|RIJNA|ŘÍJNU|RIJNU|LISTOPAD|LISTOPADU|PROSINEC|PROSINCE|PROSINCI|LED|ÚNO|UNO|BŘE|BRE|DUB|KVĚ|KVE|ČVN|CVN|ČVC|CVC|SRP|ZÁŘ|ZAR|ŘÍJ|RIJ|LIS|PRO|Leden|Ledna|Lednu|Únor|Unor|Února|Unora|Únoru|Unoru|Březen|Brezen|Března|Brezna|Březnu|Breznu|Duben|Dubna|Dubnu|Květen|Kveten|Května|Kvetna|Květnu|Kvetnu|Červen|Cerven|Června|Cervna|Červnu|Cervnu|Červenec|Cervenec|Července|Cervence|Červenci|Cervenci|Srpen|Srpna|Srpnu|Září|Zari|Říjen|Rijen|Října|Rijna|Říjnu|Rijnu|Listopad|Listopadu|Prosinec|Prosince|Prosinci|Led|Úno|Uno|Bře|Bre|Dub|Kvě|Kve|Čvn|Cvn|Čvc|Cvc|Srp|Zář|Zar|Říj|Rij|Lis|Pro)[^0-9a-zA-Z]+[^0-9]*([0-9]{1,2}|[0-9]{4})"
|
|
64
|
+
],
|
|
65
|
+
"whiteSpace": "collapse"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "xbrltt:dateDayMonthnameCyType",
|
|
69
|
+
"baseType": "xs:string",
|
|
70
|
+
"patterns": [
|
|
71
|
+
"[0-9]{1,2}[^0-9]*[^0-9a-zA-Z]+(ion|chwe|maw|ebr|mai|meh|gor|aws|med|hyd|tach|rhag|ION|CHWE|MAW|EBR|MAI|MEH|GOR|AWS|MED|HYD|TACH|RHAG|Ion|Chwe|Maw|Ebr|Mai|Meh|Gor|Aws|Med|Hyd|Tach|Rhag)[^0-9]{0,7}"
|
|
72
|
+
],
|
|
73
|
+
"whiteSpace": "collapse"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "xbrltt:dateDayMonthnameYearCyType",
|
|
77
|
+
"baseType": "xs:string",
|
|
78
|
+
"patterns": [
|
|
79
|
+
"[0-9]{1,2}[^0-9]*[^0-9a-zA-Z]+(ion|chwe|maw|ebr|mai|meh|gor|aws|med|hyd|tach|rhag|ION|CHWE|MAW|EBR|MAI|MEH|GOR|AWS|MED|HYD|TACH|RHAG|Ion|Chwe|Maw|Ebr|Mai|Meh|Gor|Aws|Med|Hyd|Tach|Rhag)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
80
|
+
],
|
|
81
|
+
"whiteSpace": "collapse"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "xbrltt:dateMonthnameYearCyType",
|
|
85
|
+
"baseType": "xs:string",
|
|
86
|
+
"patterns": [
|
|
87
|
+
"(ion|chwe|maw|faw|ebr|mai|fai|meh|feh|gor|ngor|aws|med|fed|hyd|tach|dach|nhach|thach|rhag|rag|ION|CHWE|MAW|FAW|EBR|MAI|FAI|MEH|FEH|GOR|NGOR|AWS|MED|FED|HYD|TACH|DACH|NHACH|THACH|RHAG|RAG|Ion|Chwe|Maw|Faw|Ebr|Mai|Fai|Meh|Feh|Gor|Ngor|Aws|Med|Fedi|Hyd|Tach|Dach|Nhach|Thach|Rhag|Rag)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
88
|
+
],
|
|
89
|
+
"whiteSpace": "collapse"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "xbrltt:dateDayMonthnameDeType",
|
|
93
|
+
"baseType": "xs:string",
|
|
94
|
+
"patterns": [
|
|
95
|
+
"[0-9]{1,2}[^0-9]+(jan|jän|jaen|feb|mär|maer|mar|apr|mai|jun|jul|aug|sep|okt|nov|dez|JAN|JÄN|JAEN|FEB|MÄR|MAER|MAR|APR|MAI|JUN|JUL|AUG|SEP|OKT|NOV|DEZ|Jan|Jän|Jaen|Feb|Mär|Maer|Mar|Apr|Mai|Jun|Jul|Aug|Sep|Okt|Nov|Dez)[^0-9]{0,6}"
|
|
96
|
+
],
|
|
97
|
+
"whiteSpace": "collapse"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "xbrltt:dateDayMonthnameYearDeType",
|
|
101
|
+
"baseType": "xs:string",
|
|
102
|
+
"patterns": [
|
|
103
|
+
"[0-9]{1,2}[^0-9]+(jan|jän|jaen|feb|mär|maer|mar|apr|mai|jun|jul|aug|sep|okt|nov|dez|JAN|JÄN|JAEN|FEB|MÄR|MAER|MAR|APR|MAI|JUN|JUL|AUG|SEP|OKT|NOV|DEZ|Jan|Jän|Jaen|Feb|Mär|Maer|Mar|Apr|Mai|Jun|Jul|Aug|Sep|Okt|Nov|Dez)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
104
|
+
],
|
|
105
|
+
"whiteSpace": "collapse"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "xbrltt:dateMonthnameYearDeType",
|
|
109
|
+
"baseType": "xs:string",
|
|
110
|
+
"patterns": [
|
|
111
|
+
"(jan|jän|jaen|feb|mär|maer|mar|apr|mai|jun|jul|aug|sep|okt|nov|dez|JAN|JÄN|JAEN|FEB|MÄR|MAER|MAR|APR|MAI|JUN|JUL|AUG|SEP|OKT|NOV|DEZ|Jan|Jän|Jaen|Feb|Mär|Maer|Mar|Apr|Mai|Jun|Jul|Aug|Sep|Okt|Nov|Dez)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
112
|
+
],
|
|
113
|
+
"whiteSpace": "collapse"
|
|
114
|
+
},
|
|
115
|
+
|
|
116
|
+
{
|
|
117
|
+
"name": "xbrltt:dateDayMonthnameElType",
|
|
118
|
+
"baseType": "xs:string",
|
|
119
|
+
"patterns": [
|
|
120
|
+
"[0-9]{1,2}[^0-9]+(ιαν|ίαν|φεβ|μάρ|μαρ|απρ|άπρ|αρίλ|άρίλ|αριλ|άριλ|μαΐ|μαι|μάι|μαϊ|μάϊ|ιούν|ίούν|ίουν|ιουν|ιούλ|ίούλ|ίουλ|ίουλ|ιουλ|αύγ|αυγ|σεπ|οκτ|όκτ|νοέ|νοε|δεκ|ΙΑΝ|ΊΑΝ|IΑΝ|ΦΕΒ|ΜΆΡ|ΜΑΡ|ΑΠΡ|ΆΠΡ|AΠΡ|AΡΙΛ|ΆΡΙΛ|ΑΡΙΛ|ΜΑΪ́|ΜΑΙ|ΜΆΙ|ΜΑΪ|ΜΆΪ|ΙΟΎΝ|ΊΟΎΝ|ΊΟΥΝ|IΟΥΝ|ΙΟΥΝ|IΟΥΝ|ΙΟΎΛ|ΊΟΎΛ|ΊΟΥΛ|IΟΎΛ|ΙΟΥΛ|IΟΥΛ|ΑΎΓ|ΑΥΓ|ΣΕΠ|ΟΚΤ|ΌΚΤ|OΚΤ|ΝΟΈ|ΝΟΕ|ΔΕΚ|Ιαν|Ίαν|Iαν|Φεβ|Μάρ|Μαρ|Απρ|Άπρ|Aπρ|Αρίλ|Άρίλ|Aρίλ|Aριλ|Άριλ|Αριλ|Μαΐ|Μαι|Μάι|Μαϊ|Μάϊ|Ιούν|Ίούν|Ίουν|Iούν|Ιουν|Iουν|Ιούλ|Ίούλ|Ίουλ|Iούλ|Ιουλ|Iουλ|Αύγ|Αυγ|Σεπ|Οκτ|Όκτ|Oκτ|Νοέ|Νοε|Δεκ)[^0-9]{0,8}"
|
|
121
|
+
],
|
|
122
|
+
"whiteSpace": "collapse"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "xbrltt:dateDayMonthnameYearElType",
|
|
126
|
+
"baseType": "xs:string",
|
|
127
|
+
"patterns": [
|
|
128
|
+
"[0-9]{1,2}[^0-9]+(ιαν|ίαν|φεβ|μάρ|μαρ|απρ|άπρ|αρίλ|άρίλ|αριλ|άριλ|μαΐ|μαι|μάι|μαϊ|μάϊ|ιούν|ίούν|ίουν|ιουν|ιούλ|ίούλ|ίουλ|ίουλ|ιουλ|αύγ|αυγ|σεπ|οκτ|όκτ|νοέ|νοε|δεκ|ΙΑΝ|ΊΑΝ|IΑΝ|ΦΕΒ|ΜΆΡ|ΜΑΡ|ΑΠΡ|ΆΠΡ|AΠΡ|AΡΙΛ|ΆΡΙΛ|ΑΡΙΛ|ΜΑΪ́|ΜΑΙ|ΜΆΙ|ΜΑΪ|ΜΆΪ|ΙΟΎΝ|ΊΟΎΝ|ΊΟΥΝ|IΟΎΝ|ΙΟΥΝ|IΟΥΝ|ΙΟΎΛ|ΊΟΎΛ|ΊΟΥΛ|IΟΎΛ|ΙΟΥΛ|IΟΥΛ|ΑΎΓ|ΑΥΓ|ΣΕΠ|ΟΚΤ|ΌΚΤ|OΚΤ|ΝΟΈ|ΝΟΕ|ΔΕΚ|Ιαν|Ίαν|Iαν|Φεβ|Μάρ|Μαρ|Απρ|Άπρ|Aπρ|Αρίλ|Άρίλ|Aρίλ|Aριλ|Άριλ|Αριλ|Μαΐ|Μαι|Μάι|Μαϊ|Μάϊ|Ιούν|Ίούν|Ίουν|Iούν|Ιουν|Iουν|Ιούλ|Ίούλ|Ίουλ|Iούλ|Ιουλ|Iουλ|Αύγ|Αυγ|Σεπ|Οκτ|Όκτ|Oκτ|Νοέ|Νοε|Δεκ)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
129
|
+
],
|
|
130
|
+
"whiteSpace": "collapse"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "xbrltt:dateMonthnameYearElType",
|
|
134
|
+
"baseType": "xs:string",
|
|
135
|
+
"patterns": [
|
|
136
|
+
"(ιαν|ίαν|φεβ|μάρ|μαρ|απρ|άπρ|αρίλ|άρίλ|αριλ|άριλ|μαΐ|μαι|μάι|μαϊ|μάϊ|ιούν|ίούν|ίουν|ιουν|ιούλ|ίούλ|ίουλ|ίουλ|ιουλ|αύγ|αυγ|σεπ|οκτ|όκτ|νοέ|νοε|δεκ|ΙΑΝ|ΊΑΝ|IΑΝ|ΦΕΒ|ΜΆΡ|ΜΑΡ|ΑΠΡ|ΆΠΡ|AΠΡ|AΡΙΛ|ΆΡΙΛ|ΑΡΙΛ|ΜΑΪ́|ΜΑΙ|ΜΆΙ|ΜΑΪ|ΜΆΪ|ΙΟΎΝ|ΊΟΎΝ|ΊΟΥΝ|IΟΎΝ|ΙΟΥΝ|IΟΥΝ|ΙΟΎΛ|ΊΟΎΛ|ΊΟΥΛ|IΟΎΛ|ΙΟΥΛ|IΟΥΛ|ΑΎΓ|ΑΥΓ|ΣΕΠ|ΟΚΤ|ΌΚΤ|OΚΤ|ΝΟΈ|ΝΟΕ|ΔΕΚ|Ιαν|Ίαν|Iαν|Φεβ|Μάρ|Μαρ|Απρ|Άπρ|Aπρ|Αρίλ|Άρίλ|Aρίλ|Aριλ|Άριλ|Αριλ|Μαΐ|Μαι|Μάι|Μαϊ|Μάϊ|Ιούν|Ίούν|Ίουν|Iούν|Ιουν|Iουν|Ιούλ|Ίούλ|Ίουλ|Iούλ|Ιουλ|Iουλ|Αύγ|Αυγ|Σεπ|Οκτ|Όκτ|Oκτ|Νοέ|Νοε|Δεκ)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
137
|
+
],
|
|
138
|
+
"whiteSpace": "collapse"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "xbrltt:dateDayMonthnameEsType",
|
|
142
|
+
"baseType": "xs:string",
|
|
143
|
+
"patterns": [
|
|
144
|
+
"[0-9]{1,2}[^0-9]+(ene|feb|mar|abr|may|jun|jul|ago|sep|oct|nov|dic|ENE|FEB|MAR|ABR|MAY|JUN|JUL|AGO|SEP|OCT|NOV|DIC|Ene|Feb|Mar|Abr|May|Jun|Jul|Ago|Sep|Oct|Nov|Dic)[^0-9]{0,7}"
|
|
145
|
+
],
|
|
146
|
+
"whiteSpace": "collapse"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "xbrltt:dateDayMonthnameYearEsType",
|
|
150
|
+
"baseType": "xs:string",
|
|
151
|
+
"patterns": [
|
|
152
|
+
"[0-9]{1,2}[^0-9]+(ene|feb|mar|abr|may|jun|jul|ago|sep|oct|nov|dic|ENE|FEB|MAR|ABR|MAY|JUN|JUL|AGO|SEP|OCT|NOV|DIC|Ene|Feb|Mar|Abr|May|Jun|Jul|Ago|Sep|Oct|Nov|Dic)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
153
|
+
],
|
|
154
|
+
"whiteSpace": "collapse"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "xbrltt:dateMonthnameYearEsType",
|
|
158
|
+
"baseType": "xs:string",
|
|
159
|
+
"patterns": [
|
|
160
|
+
"(ene|feb|mar|abr|may|jun|jul|ago|sep|oct|nov|dic|ENE|FEB|MAR|ABR|MAY|JUN|JUL|AGO|SEP|OCT|NOV|DIC|Ene|Feb|Mar|Abr|May|Jun|Jul|Ago|Sep|Oct|Nov|Dic)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
161
|
+
],
|
|
162
|
+
"whiteSpace": "collapse"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "xbrltt:dateDayMonthnameEtType",
|
|
166
|
+
"baseType": "xs:string",
|
|
167
|
+
"patterns": [
|
|
168
|
+
"[0-9]{1,2}[^0-9]+(jaan|veebr|märts|marts|apr|mai|juuni|juuli|aug|sept|okt|nov|dets|JAAN|VEEBR|MÄRTS|MARTS|APR|MAI|JUUNI|JUULI|AUG|SEPT|OKT|NOV|DETS|Jaan|Veebr|Märts|Marts|Apr|Mai|Juuni|Juuli|Aug|Sept|Okt|Nov|Dets)[^0-9]{0,5}"
|
|
169
|
+
],
|
|
170
|
+
"whiteSpace": "collapse"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "xbrltt:dateDayMonthnameYearEtType",
|
|
174
|
+
"baseType": "xs:string",
|
|
175
|
+
"patterns": [
|
|
176
|
+
"[0-9]{1,2}[^0-9]+(jaan|veebr|märts|marts|apr|mai|juuni|juuli|aug|sept|okt|nov|dets|JAAN|VEEBR|MÄRTS|MARTS|APR|MAI|JUUNI|JUULI|AUG|SEPT|OKT|NOV|DETS|Jaan|Veebr|Märts|Marts|Apr|Mai|Juuni|Juuli|Aug|Sept|Okt|Nov|Dets)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
177
|
+
],
|
|
178
|
+
"whiteSpace": "collapse"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "xbrltt:dateMonthnameYearEtType",
|
|
182
|
+
"baseType": "xs:string",
|
|
183
|
+
"patterns": [
|
|
184
|
+
"(jaan|veebr|märts|marts|apr|mai|juuni|juuli|aug|sept|okt|nov|dets|JAAN|VEEBR|MÄRTS|MARTS|APR|MAI|JUUNI|JUULI|AUG|SEPT|OKT|NOV|DETS|Jaan|Veebr|Märts|Marts|Apr|Mai|Juuni|Juuli|Aug|Sept|Okt|Nov|Dets)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
185
|
+
],
|
|
186
|
+
"whiteSpace": "collapse"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"name": "xbrltt:dateDayMonthnameFiType",
|
|
190
|
+
"baseType": "xs:string",
|
|
191
|
+
"patterns": [
|
|
192
|
+
"[0-9]{1,2}[^0-9]*[^0-9a-zA-Z]+(tam|hel|maa|huh|tou|kes|hei|elo|syy|lok|mar|jou|TAM|HEL|MAA|HUH|TOU|KES|HEI|ELO|SYY|LOK|MAR|JOU|Tam|Hel|Maa|Huh|Tou|Kes|Hei|Elo|Syy|Lok|Mar|Jou)[^0-9]{0,8}"
|
|
193
|
+
],
|
|
194
|
+
"whiteSpace": "collapse"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "xbrltt:dateDayMonthnameYearFiType",
|
|
198
|
+
"baseType": "xs:string",
|
|
199
|
+
"patterns": [
|
|
200
|
+
"[0-9]{1,2}[^0-9]*[^0-9a-zA-Z]+(tam|hel|maa|huh|tou|kes|hei|elo|syy|lok|mar|jou|TAM|HEL|MAA|HUH|TOU|KES|HEI|ELO|SYY|LOK|MAR|JOU|Tam|Hel|Maa|Huh|Tou|Kes|Hei|Elo|Syy|Lok|Mar|Jou)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
201
|
+
],
|
|
202
|
+
"whiteSpace": "collapse"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"name": "xbrltt:dateMonthnameYearFiType",
|
|
206
|
+
"baseType": "xs:string",
|
|
207
|
+
"patterns": [
|
|
208
|
+
"(tam|hel|maa|huh|tou|kes|hei|elo|syy|lok|mar|jou|TAM|HEL|MAA|HUH|TOU|KES|HEI|ELO|SYY|LOK|MAR|JOU|Tam|Hel|Maa|Huh|Tou|Kes|Hei|Elo|Syy|Lok|Mar|Jou)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
209
|
+
],
|
|
210
|
+
"whiteSpace": "collapse"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "xbrltt:dateDayMonthnameFrType",
|
|
214
|
+
"baseType": "xs:string",
|
|
215
|
+
"patterns": [
|
|
216
|
+
"[0-9]{1,2}[^0-9]+(janv|févr|fevr|mars|avr|mai|juin|juil|août|aout|sept|oct|nov|déc|dec|JANV|FÉVR|FEVR|MARS|AVR|MAI|JUIN|JUIL|AOÛT|AOUT|SEPT|OCT|NOV|DÉC|DEC|Janv|Févr|Fevr|Mars|Avr|Mai|Juin|Juil|Août|Aout|Sept|Oct|Nov|Déc|Dec)[^0-9]{0,5}"
|
|
217
|
+
],
|
|
218
|
+
"whiteSpace": "collapse"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "xbrltt:dateDayMonthnameYearFrType",
|
|
222
|
+
"baseType": "xs:string",
|
|
223
|
+
"patterns": [
|
|
224
|
+
"[0-9]{1,2}[^0-9]+(janv|févr|fevr|mars|avr|mai|juin|juil|août|aout|sept|oct|nov|déc|dec|JANV|FÉVR|FEVR|MARS|AVR|MAI|JUIN|JUIL|AOÛT|AOUT|SEPT|OCT|NOV|DÉC|DEC|Janv|Févr|Fevr|Mars|Avr|Mai|Juin|Juil|Août|Aout|Sept|Oct|Nov|Déc|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
225
|
+
],
|
|
226
|
+
"whiteSpace": "collapse"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "xbrltt:dateMonthnameYearFrType",
|
|
230
|
+
"baseType": "xs:string",
|
|
231
|
+
"patterns": [
|
|
232
|
+
"(janv|févr|fevr|mars|avr|mai|juin|juil|août|aout|sept|oct|nov|déc|dec|JANV|FÉVR|FEVR|MARS|AVR|MAI|JUIN|JUIL|AOÛT|AOUT|SEPT|OCT|NOV|DÉC|DEC|Janv|Févr|Fevr|Mars|Avr|Mai|Juin|Juil|Août|Aout|Sept|Oct|Nov|Déc|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
233
|
+
],
|
|
234
|
+
"whiteSpace": "collapse"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "xbrltt:dateDayMonthnameHrType",
|
|
238
|
+
"baseType": "xs:string",
|
|
239
|
+
"patterns": [
|
|
240
|
+
"[0-9]{1,2}[^0-9]+(sij|velj|ožu|ozu|tra|svi|lip|srp|kol|ruj|lis|stu|pro|SIJ|VELJ|OŽU|OZU|TRA|SVI|LIP|SRP|KOL|RUJ|LIS|STU|PRO|Sij|Velj|Ožu|Ozu|Tra|Svi|Lip|Srp|Kol|Ruj|Lis|Stu|Pro)[^0-9]{0,6}"
|
|
241
|
+
],
|
|
242
|
+
"whiteSpace": "collapse"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "xbrltt:dateDayMonthnameYearHrType",
|
|
246
|
+
"baseType": "xs:string",
|
|
247
|
+
"patterns": [
|
|
248
|
+
"[0-9]{1,2}[^0-9]+(sij|velj|ožu|ozu|tra|svi|lip|srp|kol|ruj|lis|stu|pro|SIJ|VELJ|OŽU|OZU|TRA|SVI|LIP|SRP|KOL|RUJ|LIS|STU|PRO|Sij|Velj|Ožu|Ozu|Tra|Svi|Lip|Srp|Kol|Ruj|Lis|Stu|Pro)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
249
|
+
],
|
|
250
|
+
"whiteSpace": "collapse"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "xbrltt:dateMonthnameYearHrType",
|
|
254
|
+
"baseType": "xs:string",
|
|
255
|
+
"patterns": [
|
|
256
|
+
"(sij|velj|ožu|ozu|tra|svi|lip|srp|kol|ruj|lis|stu|pro|SIJ|VELJ|OŽU|OZU|TRA|SVI|LIP|SRP|KOL|RUJ|LIS|STU|PRO|Sij|Velj|Ožu|Ozu|Tra|Svi|Lip|Srp|Kol|Ruj|Lis|Stu|Pro)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
257
|
+
],
|
|
258
|
+
"whiteSpace": "collapse"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "xbrltt:dateMonthnameDayHuType",
|
|
262
|
+
"baseType": "xs:string",
|
|
263
|
+
"patterns": [
|
|
264
|
+
"(jan|feb|márc|marc|ápr|apr|máj|maj|jún|jun|júl|jul|aug|szept|okt|nov|dec|JAN|FEB|MÁRC|MARC|ÁPR|APR|MÁJ|MAJ|JÚN|JUN|JÚL|JUL|AUG|SZEPT|OKT|NOV|DEC|Jan|Feb|Márc|Marc|Ápr|Apr|Máj|Maj|Jún|Jun|Júl|Jul|Aug|Szept|Okt|Nov|Dec)[^0-9]{0,7}[^0-9]+[0-9]{1,2}"
|
|
265
|
+
],
|
|
266
|
+
"whiteSpace": "collapse"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "xbrltt:dateYearMonthnameDayHuType",
|
|
270
|
+
"baseType": "xs:string",
|
|
271
|
+
"patterns": [
|
|
272
|
+
"([0-9]{1,2}|[0-9]{4})[^0-9]+(jan|feb|márc|marc|ápr|apr|máj|maj|jún|jun|júl|jul|aug|szept|okt|nov|dec|JAN|FEB|MÁRC|MARC|ÁPR|APR|MÁJ|MAJ|JÚN|JUN|JÚL|JUL|AUG|SZEPT|OKT|NOV|DEC|Jan|Feb|Márc|Marc|Ápr|Apr|Máj|Maj|Jún|Jun|Júl|Jul|Aug|Szept|Okt|Nov|Dec)[^0-9]+[0-9]{1,2}"
|
|
273
|
+
],
|
|
274
|
+
"whiteSpace": "collapse"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"name": "xbrltt:dateYearMonthnameHuType",
|
|
278
|
+
"baseType": "xs:string",
|
|
279
|
+
"patterns": [
|
|
280
|
+
"([0-9]{1,2}|[0-9]{4})[^0-9]+(jan|feb|márc|marc|ápr|apr|máj|maj|jún|jun|júl|jul|aug|szept|okt|nov|dec|JAN|FEB|MÁRC|MARC|ÁPR|APR|MÁJ|MAJ|JÚN|JUN|JÚL|JUL|AUG|SZEPT|OKT|NOV|DEC|Jan|Feb|Márc|Marc|Ápr|Apr|Máj|Maj|Jún|Jun|Júl|Jul|Aug|Szept|Okt|Nov|Dec)[^0-9]{0,7}"
|
|
281
|
+
],
|
|
282
|
+
"whiteSpace": "collapse"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"name": "xbrltt:dateDayMonthnameItType",
|
|
286
|
+
"baseType": "xs:string",
|
|
287
|
+
"patterns": [
|
|
288
|
+
"[0-9]{1,2}[^0-9]+(gen|feb|mar|apr|mag|giu|lug|ago|set|ott|nov|dic|GEN|FEB|MAR|APR|MAG|GIU|LUG|AGO|SET|OTT|NOV|DIC|Gen|Feb|Mar|Apr|Mag|Giu|Lug|Ago|Set|Ott|Nov|Dic)[^0-9]{0,6}"
|
|
289
|
+
],
|
|
290
|
+
"whiteSpace": "collapse"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "xbrltt:dateDayMonthnameYearItType",
|
|
294
|
+
"baseType": "xs:string",
|
|
295
|
+
"patterns": [
|
|
296
|
+
"[0-9]{1,2}[^0-9]+(gen|feb|mar|apr|mag|giu|lug|ago|set|ott|nov|dic|GEN|FEB|MAR|APR|MAG|GIU|LUG|AGO|SET|OTT|NOV|DIC|Gen|Feb|Mar|Apr|Mag|Giu|Lug|Ago|Set|Ott|Nov|Dic)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
297
|
+
],
|
|
298
|
+
"whiteSpace": "collapse"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"name": "xbrltt:dateMonthnameYearItType",
|
|
302
|
+
"baseType": "xs:string",
|
|
303
|
+
"patterns": [
|
|
304
|
+
"(gen|feb|mar|apr|mag|giu|lug|ago|set|ott|nov|dic|GEN|FEB|MAR|APR|MAG|GIU|LUG|AGO|SET|OTT|NOV|DIC|Gen|Feb|Mar|Apr|Mag|Giu|Lug|Ago|Set|Ott|Nov|Dic)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
305
|
+
],
|
|
306
|
+
"whiteSpace": "collapse"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "xbrltt:dateMonthnameDayLtType",
|
|
310
|
+
"baseType": "xs:string",
|
|
311
|
+
"patterns": [
|
|
312
|
+
"(sau|vas|kov|bal|geg|bir|lie|rugp|rgp|rugs|rgs|spa|spl|lap|gru|grd|SAU|VAS|KOV|BAL|GEG|BIR|LIE|RUGP|RGP|RUGS|RGS|SPA|SPL|LAP|GRU|GRD|Sau|Vas|Kov|Bal|Geg|Bir|Lie|Rugp|Rgp|Rugs|Rgs|Spa|Spl|Lap|Gru|Grd)[^0-9]{0,6}[^0-9]+[0-9]{1,2}[^0-9]*"
|
|
313
|
+
],
|
|
314
|
+
"whiteSpace": "collapse"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "xbrltt:dateYearMonthnameDayLtType",
|
|
318
|
+
"baseType": "xs:string",
|
|
319
|
+
"patterns": [
|
|
320
|
+
"([0-9]{1,2}|[0-9]{4})[^0-9]*[^0-9a-zA-Z]+(sau|vas|kov|bal|geg|bir|lie|rugp|rgp|rugs|rgs|spa|spl|lap|gru|grd|SAU|VAS|KOV|BAL|GEG|BIR|LIE|RUGP|RGP|RUGS|RGS|SPA|SPL|LAP|GRU|GRD|Sau|Vas|Kov|Bal|Geg|Bir|Lie|Rugp|Rgp|Rugs|Rgs|Spa|Spl|Lap|Gru|Grd)[^0-9]+[0-9]{1,2}[^0-9]*"
|
|
321
|
+
],
|
|
322
|
+
"whiteSpace": "collapse"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "xbrltt:dateYearMonthnameLtType",
|
|
326
|
+
"baseType": "xs:string",
|
|
327
|
+
"patterns": [
|
|
328
|
+
"([0-9]{1,2}|[0-9]{4})[^0-9]*[^0-9a-zA-Z]+(sau|vas|kov|bal|geg|bir|lie|rugp|rgp|rugs|rgs|spa|spl|lap|gru|grd|SAU|VAS|KOV|BAL|GEG|BIR|LIE|RUGP|RGP|RUGS|RGS|SPA|SPL|LAP|GRU|GRD|Sau|Vas|Kov|Bal|Geg|Bir|Lie|Rugp|Rgp|Rugs|Rgs|Spa|Spl|Lap|Gru|Grd)[^0-9]*"
|
|
329
|
+
],
|
|
330
|
+
"whiteSpace": "collapse"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"name": "xbrltt:dateDayMonthnameLvType",
|
|
334
|
+
"baseType": "xs:string",
|
|
335
|
+
"patterns": [
|
|
336
|
+
"[0-9]{1,2}[^0-9]+(janv|febr|marts|apr|maijs|jūn|jun|jūl|jul|aug|sept|okt|nov|dec|JANV|FEBR|MARTS|APR|MAIJS|JŪN|JUN|JŪL|JUL|AUG|SEPT|OKT|NOV|DEC|Janv|Febr|Marts|Apr|Maijs|Jūn|Jun|Jūl|Jul|Aug|Sept|Okt|Nov|Dec)[^0-9]{0,6}"
|
|
337
|
+
],
|
|
338
|
+
"whiteSpace": "collapse"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"name": "xbrltt:dateYearDayMonthnameLvType",
|
|
342
|
+
"baseType": "xs:string",
|
|
343
|
+
"patterns": [
|
|
344
|
+
"([0-9]{1,2}|[0-9]{4})[^0-9]+[0-9]{1,2}[^0-9]+(janv|febr|marts|apr|maijs|jūn|jun|jūl|jul|aug|sept|okt|nov|dec|JANV|FEBR|MARTS|APR|MAIJS|JŪN|JUN|JŪL|JUL|AUG|SEPT|OKT|NOV|DEC|Janv|Febr|Marts|Apr|Maijs|Jūn|Jun|Jūl|Jul|Aug|Sept|Okt|Nov|Dec)[^0-9]*"
|
|
345
|
+
],
|
|
346
|
+
"whiteSpace": "collapse"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"name": "xbrltt:dateYearMonthnameLvType",
|
|
350
|
+
"baseType": "xs:string",
|
|
351
|
+
"patterns": [
|
|
352
|
+
"([0-9]{1,2}|[0-9]{4})[^0-9]+(janv|febr|marts|apr|maijs|jūn|jun|jūl|jul|aug|sept|okt|nov|dec|JANV|FEBR|MARTS|APR|MAIJS|JŪN|JUN|JŪL|JUL|AUG|SEPT|OKT|NOV|DEC|Janv|Febr|Marts|Apr|Maijs|Jūn|Jun|Jūl|Jul|Aug|Sept|Okt|Nov|Dec)[^0-9]{0,7}"
|
|
353
|
+
],
|
|
354
|
+
"whiteSpace": "collapse"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "xbrltt:dateDayMonthnameNlType",
|
|
358
|
+
"baseType": "xs:string",
|
|
359
|
+
"patterns": [
|
|
360
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|maa|mrt|apr|mei|jun|jul|aug|sep|okt|nov|dec|JAN|FEB|MAA|MRT|APR|MEI|JUN|JUL|AUG|SEP|OKT|NOV|DEC|Jan|Feb|Maa|Mrt|Apr|Mei|Jun|Jul|Aug|Sep|Okt|Nov|Dec)[^0-9]{0,6}"
|
|
361
|
+
],
|
|
362
|
+
"whiteSpace": "collapse"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "xbrltt:dateDayMonthnameYearNlType",
|
|
366
|
+
"baseType": "xs:string",
|
|
367
|
+
"patterns": [
|
|
368
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|maa|mrt|apr|mei|jun|jul|aug|sep|okt|nov|dec|JAN|FEB|MAA|MRT|APR|MEI|JUN|JUL|AUG|SEP|OKT|NOV|DEC|Jan|Feb|Maa|Mrt|Apr|Mei|Jun|Jul|Aug|Sep|Okt|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
369
|
+
],
|
|
370
|
+
"whiteSpace": "collapse"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"name": "xbrltt:dateMonthnameYearNlType",
|
|
374
|
+
"baseType": "xs:string",
|
|
375
|
+
"patterns": [
|
|
376
|
+
"(jan|feb|maa|mrt|apr|mei|jun|jul|aug|sep|okt|nov|dec|JAN|FEB|MAA|MRT|APR|MEI|JUN|JUL|AUG|SEP|OKT|NOV|DEC|Jan|Feb|Maa|Mrt|Apr|Mei|Jun|Jul|Aug|Sep|Okt|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
377
|
+
],
|
|
378
|
+
"whiteSpace": "collapse"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "xbrltt:dateDayMonthnameNoType",
|
|
382
|
+
"baseType": "xs:string",
|
|
383
|
+
"patterns": [
|
|
384
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|mar|apr|mai|jun|jul|aug|sep|okt|nov|des|JAN|FEB|MAR|APR|MAI|JUN|JUL|AUG|SEP|OKT|NOV|DES|Jan|Feb|Mar|Apr|Mai|Jun|Jul|Aug|Sep|Okt|Nov|Des)[^0-9]{0,6}"
|
|
385
|
+
],
|
|
386
|
+
"whiteSpace": "collapse"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "xbrltt:dateDayMonthnameYearNoType",
|
|
390
|
+
"baseType": "xs:string",
|
|
391
|
+
"patterns": [
|
|
392
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|mar|apr|mai|jun|jul|aug|sep|okt|nov|des|JAN|FEB|MAR|APR|MAI|JUN|JUL|AUG|SEP|OKT|NOV|DES|Jan|Feb|Mar|Apr|Mai|Jun|Jul|Aug|Sep|Okt|Nov|Des)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
393
|
+
],
|
|
394
|
+
"whiteSpace": "collapse"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"name": "xbrltt:dateMonthnameYearNoType",
|
|
398
|
+
"baseType": "xs:string",
|
|
399
|
+
"patterns": [
|
|
400
|
+
"(jan|feb|mar|apr|mai|jun|jul|aug|sep|okt|nov|des|JAN|FEB|MAR|APR|MAI|JUN|JUL|AUG|SEP|OKT|NOV|DES|Jan|Feb|Mar|Apr|Mai|Jun|Jul|Aug|Sep|Okt|Nov|Des)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
401
|
+
],
|
|
402
|
+
"whiteSpace": "collapse"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"name": "xbrltt:dateDayMonthnamePlType",
|
|
406
|
+
"baseType": "xs:string",
|
|
407
|
+
"patterns": [
|
|
408
|
+
"[0-9]{1,2}[^0-9]*[^0-9a-zA-Z]+(sty|lut|mar|kwi|maj|cze|lip|sie|wrz|paź|paz|lis|gru|STY|LUT|MAR|KWI|MAJ|CZE|LIP|SIE|WRZ|PAŹ|PAZ|LIS|GRU|Sty|Lut|Mar|Kwi|Maj|Cze|Lip|Sie|Wrz|Paź|Paz|Lis|Gru)[^0-9]{0,9}"
|
|
409
|
+
],
|
|
410
|
+
"whiteSpace": "collapse"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "xbrltt:dateDayMonthnameYearPlType",
|
|
414
|
+
"baseType": "xs:string",
|
|
415
|
+
"patterns": [
|
|
416
|
+
"[0-9]{1,2}[^0-9]*[^0-9a-zA-Z]+(sty|lut|mar|kwi|maj|cze|lip|sie|wrz|paź|paz|lis|gru|STY|LUT|MAR|KWI|MAJ|CZE|LIP|SIE|WRZ|PAŹ|PAZ|LIS|GRU|Sty|Lut|Mar|Kwi|Maj|Cze|Lip|Sie|Wrz|Paź|Paz|Lis|Gru)[^0-9]+([0-9]{1,2}|[0-9]{4})[^0-9]*"
|
|
417
|
+
],
|
|
418
|
+
"whiteSpace": "collapse"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"name": "xbrltt:dateMonthnameYearPlType",
|
|
422
|
+
"baseType": "xs:string",
|
|
423
|
+
"patterns": [
|
|
424
|
+
"(sty|lut|mar|kwi|maj|cze|lip|sie|wrz|paź|paz|lis|gru|STY|LUT|MAR|KWI|MAJ|CZE|LIP|SIE|WRZ|PAŹ|PAZ|LIS|GRU|Sty|Lut|Mar|Kwi|Maj|Cze|Lip|Sie|Wrz|Paź|Paz|Lis|Gru)[^0-9]+([0-9]{1,2}|[0-9]{4})[^0-9]*"
|
|
425
|
+
],
|
|
426
|
+
"whiteSpace": "collapse"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"name": "xbrltt:dateDayMonthnamePtType",
|
|
430
|
+
"baseType": "xs:string",
|
|
431
|
+
"patterns": [
|
|
432
|
+
"[0-9]{1,2}[^0-9]+(jan|fev|mar|abr|mai|jun|jul|ago|set|out|nov|dez|JAN|FEV|MAR|ABR|MAI|JUN|JUL|AGO|SET|OUT|NOV|DEZ|Jan|Fev|Mar|Abr|Mai|Jun|Jul|Ago|Set|Out|Nov|Dez)[^0-9]{0,6}"
|
|
433
|
+
],
|
|
434
|
+
"whiteSpace": "collapse"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"name": "xbrltt:dateDayMonthnameYearPtType",
|
|
438
|
+
"baseType": "xs:string",
|
|
439
|
+
"patterns": [
|
|
440
|
+
"[0-9]{1,2}[^0-9]+(jan|fev|mar|abr|mai|jun|jul|ago|set|out|nov|dez|JAN|FEV|MAR|ABR|MAI|JUN|JUL|AGO|SET|OUT|NOV|DEZ|Jan|Fev|Mar|Abr|Mai|Jun|Jul|Ago|Set|Out|Nov|Dez)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
441
|
+
],
|
|
442
|
+
"whiteSpace": "collapse"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"name": "xbrltt:dateMonthnameYearPtType",
|
|
446
|
+
"baseType": "xs:string",
|
|
447
|
+
"patterns": [
|
|
448
|
+
"(jan|fev|mar|abr|mai|jun|jul|ago|set|out|nov|dez|JAN|FEV|MAR|ABR|MAI|JUN|JUL|AGO|SET|OUT|NOV|DEZ|Jan|Fev|Mar|Abr|Mai|Jun|Jul|Ago|Set|Out|Nov|Dez)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
449
|
+
],
|
|
450
|
+
"whiteSpace": "collapse"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "xbrltt:dateDayMonthromanType",
|
|
454
|
+
"baseType": "xs:string",
|
|
455
|
+
"patterns": [
|
|
456
|
+
"[0-9]{1,2}[^0-9]+(I|II|III|IV|V|VI|VII|VIII|IX|X|XI|XII)"
|
|
457
|
+
],
|
|
458
|
+
"whiteSpace": "collapse"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"name": "xbrltt:dateDayMonthromanYearType",
|
|
462
|
+
"baseType": "xs:string",
|
|
463
|
+
"patterns": [
|
|
464
|
+
"[0-9]{1,2}[^0-9]+(I|II|III|IV|V|VI|VII|VIII|IX|X|XI|XII)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
465
|
+
],
|
|
466
|
+
"whiteSpace": "collapse"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"name": "xbrltt:dateMonthromanYearType",
|
|
470
|
+
"baseType": "xs:string",
|
|
471
|
+
"patterns": [
|
|
472
|
+
"(I|II|III|IV|V|VI|VII|VIII|IX|X|XI|XII)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
473
|
+
],
|
|
474
|
+
"whiteSpace": "collapse"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"name": "xbrltt:dateDayMonthnameRoType",
|
|
478
|
+
"baseType": "xs:string",
|
|
479
|
+
"patterns": [
|
|
480
|
+
"[0-9]{1,2}[^0-9]+(ian|feb|mar|apr|mai|iun|iul|aug|sep|oct|noi|nov|dec|IAN|FEB|MAR|APR|MAI|IUN|IUL|AUG|SEP|OCT|NOI|NOV|DEC|Ian|Feb|Mar|Apr|Mai|Iun|Iul|Aug|Sep|Oct|Noi|Nov|Dec)[^0-9]{0,7}"
|
|
481
|
+
],
|
|
482
|
+
"whiteSpace": "collapse"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "xbrltt:dateDayMonthnameYearRoType",
|
|
486
|
+
"baseType": "xs:string",
|
|
487
|
+
"patterns": [
|
|
488
|
+
"[0-9]{1,2}[^0-9]+(ian|feb|mar|apr|mai|iun|iul|aug|sep|oct|noi|nov|dec|IAN|FEB|MAR|APR|MAI|IUN|IUL|AUG|SEP|OCT|NOI|NOV|DEC|Ian|Feb|Mar|Apr|Mai|Iun|Iul|Aug|Sep|Oct|Noi|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
489
|
+
],
|
|
490
|
+
"whiteSpace": "collapse"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"name": "xbrltt:dateMonthnameYearRoType",
|
|
494
|
+
"baseType": "xs:string",
|
|
495
|
+
"patterns": [
|
|
496
|
+
"(ian|feb|mar|apr|mai|iun|iul|aug|sep|oct|noi|nov|dec|IAN|FEB|MAR|APR|MAI|IUN|IUL|AUG|SEP|OCT|NOI|NOV|DEC|Ian|Feb|Mar|Apr|Mai|Iun|Iul|Aug|Sep|Oct|Noi|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
497
|
+
],
|
|
498
|
+
"whiteSpace": "collapse"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "xbrltt:dateDayMonthnameSkType",
|
|
502
|
+
"baseType": "xs:string",
|
|
503
|
+
"patterns": [
|
|
504
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|mar|apr|máj|maj|jún|jun|júl|jul|aug|sep|okt|nov|dec|JAN|FEB|MAR|APR|MÁJ|MAJ|JÚN|JUN|JÚL|JUL|AUG|SEP|OKT|NOV|DEC|Jan|Feb|Mar|Apr|Máj|Maj|Jún|Jun|Júl|Jul|Aug|Sep|Okt|Nov|Dec)[^0-9]{0,6}"
|
|
505
|
+
],
|
|
506
|
+
"whiteSpace": "collapse"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"name": "xbrltt:dateDayMonthnameYearSkType",
|
|
510
|
+
"baseType": "xs:string",
|
|
511
|
+
"patterns": [
|
|
512
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|mar|apr|máj|maj|jún|jun|júl|jul|aug|sep|okt|nov|dec|JAN|FEB|MAR|APR|MÁJ|MAJ|JÚN|JUN|JÚL|JUL|AUG|SEP|OKT|NOV|DEC|Jan|Feb|Mar|Apr|Máj|Maj|Jún|Jun|Júl|Jul|Aug|Sep|Okt|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
513
|
+
],
|
|
514
|
+
"whiteSpace": "collapse"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"name": "xbrltt:dateMonthnameYearSkType",
|
|
518
|
+
"baseType": "xs:string",
|
|
519
|
+
"patterns": [
|
|
520
|
+
"(jan|feb|mar|apr|máj|maj|jún|jun|júl|jul|aug|sep|okt|nov|dec|JAN|FEB|MAR|APR|MÁJ|MAJ|JÚN|JUN|JÚL|JUL|AUG|SEP|OKT|NOV|DEC|Jan|Feb|Mar|Apr|Máj|Maj|Jún|Jun|Júl|Jul|Aug|Sep|Okt|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
521
|
+
],
|
|
522
|
+
"whiteSpace": "collapse"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "xbrltt:dateDayMonthnameSlType",
|
|
526
|
+
"baseType": "xs:string",
|
|
527
|
+
"patterns": [
|
|
528
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|mar|apr|maj|jun|jul|avg|sep|okt|nov|dec|JAN|FEB|MAR|APR|MAJ|JUN|JUL|AVG|SEP|OKT|NOV|DEC|Jan|Feb|Mar|Apr|Maj|Jun|Jul|Avg|Sep|Okt|Nov|Dec)[^0-9]{0,6}"
|
|
529
|
+
],
|
|
530
|
+
"whiteSpace": "collapse"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"name": "xbrltt:dateDayMonthnameYearSlType",
|
|
534
|
+
"baseType": "xs:string",
|
|
535
|
+
"patterns": [
|
|
536
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|mar|apr|maj|jun|jul|avg|sep|okt|nov|dec|JAN|FEB|MAR|APR|MAJ|JUN|JUL|AVG|SEP|OKT|NOV|DEC|Jan|Feb|Mar|Apr|Maj|Jun|Jul|Avg|Sep|Okt|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
537
|
+
],
|
|
538
|
+
"whiteSpace": "collapse"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"name": "xbrltt:dateMonthnameYearSlType",
|
|
542
|
+
"baseType": "xs:string",
|
|
543
|
+
"patterns": [
|
|
544
|
+
"(jan|feb|mar|apr|maj|jun|jul|avg|sep|okt|nov|dec|JAN|FEB|MAR|APR|MAJ|JUN|JUL|AVG|SEP|OKT|NOV|DEC|Jan|Feb|Mar|Apr|Maj|Jun|Jul|Avg|Sep|Okt|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
545
|
+
],
|
|
546
|
+
"whiteSpace": "collapse"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"name": "xbrltt:dateDayMonthnameDaSvType",
|
|
550
|
+
"baseType": "xs:string",
|
|
551
|
+
"patterns": [
|
|
552
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|mar|apr|maj|jun|jul|aug|sep|okt|nov|dec|JAN|FEB|MAR|APR|MAJ|JUN|JUL|AUG|SEP|OKT|NOV|DEC|Jan|Feb|Mar|Apr|Maj|Jun|Jul|Aug|Sep|Okt|Nov|Dec)[^0-9]{0,6}"
|
|
553
|
+
],
|
|
554
|
+
"whiteSpace": "collapse"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"name": "xbrltt:dateDayMonthnameYearDaSvType",
|
|
558
|
+
"baseType": "xs:string",
|
|
559
|
+
"patterns": [
|
|
560
|
+
"[0-9]{1,2}[^0-9]+(jan|feb|mar|apr|maj|jun|jul|aug|sep|okt|nov|dec|JAN|FEB|MAR|APR|MAJ|JUN|JUL|AUG|SEP|OKT|NOV|DEC|Jan|Feb|Mar|Apr|Maj|Jun|Jul|Aug|Sep|Okt|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
561
|
+
],
|
|
562
|
+
"whiteSpace": "collapse"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"name": "xbrltt:dateMonthnameYearDaSvType",
|
|
566
|
+
"baseType": "xs:string",
|
|
567
|
+
"patterns": [
|
|
568
|
+
"(jan|feb|mar|apr|maj|jun|jul|aug|sep|okt|nov|dec|JAN|FEB|MAR|APR|MAJ|JUN|JUL|AUG|SEP|OKT|NOV|DEC|Jan|Feb|Mar|Apr|Maj|Jun|Jul|Aug|Sep|Okt|Nov|Dec)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
569
|
+
],
|
|
570
|
+
"whiteSpace": "collapse"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "xbrltt:dateDayMonthnameEnType",
|
|
574
|
+
"baseType": "xs:string",
|
|
575
|
+
"patterns": [
|
|
576
|
+
"[0-9]{1,2}[^0-9]+(January|February|March|April|May|June|July|August|September|October|November|December|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC|JANUARY|FEBRUARY|MARCH|APRIL|MAY|JUNE|JULY|AUGUST|SEPTEMBER|OCTOBER|NOVEMBER|DECEMBER)"
|
|
577
|
+
],
|
|
578
|
+
"whiteSpace": "collapse"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"name": "xbrltt:dateDayMonthnameYearEnType",
|
|
582
|
+
"baseType": "xs:string",
|
|
583
|
+
"patterns": [
|
|
584
|
+
"[0-9]{1,2}[^0-9]+(January|February|March|April|May|June|July|August|September|October|November|December|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC|JANUARY|FEBRUARY|MARCH|APRIL|MAY|JUNE|JULY|AUGUST|SEPTEMBER|OCTOBER|NOVEMBER|DECEMBER)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
585
|
+
],
|
|
586
|
+
"whiteSpace": "collapse"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"name": "xbrltt:dateMonthnameDayEnType",
|
|
590
|
+
"baseType": "xs:string",
|
|
591
|
+
"patterns": [
|
|
592
|
+
"(January|February|March|April|May|June|July|August|September|October|November|December|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC|JANUARY|FEBRUARY|MARCH|APRIL|MAY|JUNE|JULY|AUGUST|SEPTEMBER|OCTOBER|NOVEMBER|DECEMBER)[^0-9]+[0-9]{1,2}[a-zA-Z]{0,2}"
|
|
593
|
+
],
|
|
594
|
+
"whiteSpace": "collapse"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"name": "xbrltt:dateMonthnameDayYearEnType",
|
|
598
|
+
"baseType": "xs:string",
|
|
599
|
+
"patterns": [
|
|
600
|
+
"(January|February|March|April|May|June|July|August|September|October|November|December|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC|JANUARY|FEBRUARY|MARCH|APRIL|MAY|JUNE|JULY|AUGUST|SEPTEMBER|OCTOBER|NOVEMBER|DECEMBER)[^0-9]+[0-9]{1,2}[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
601
|
+
],
|
|
602
|
+
"whiteSpace": "collapse"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"name": "xbrltt:dateMonthnameYearEnType",
|
|
606
|
+
"baseType": "xs:string",
|
|
607
|
+
"patterns": [
|
|
608
|
+
"(January|February|March|April|May|June|July|August|September|October|November|December|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC|JANUARY|FEBRUARY|MARCH|APRIL|MAY|JUNE|JULY|AUGUST|SEPTEMBER|OCTOBER|NOVEMBER|DECEMBER)[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
609
|
+
],
|
|
610
|
+
"whiteSpace": "collapse"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"name": "xbrltt:dateYearMonthnameEnType",
|
|
614
|
+
"baseType": "xs:string",
|
|
615
|
+
"patterns": [
|
|
616
|
+
"([0-9]{1,2}|[0-9]{4})[^0-9]+(January|February|March|April|May|June|July|August|September|October|November|December|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC|JANUARY|FEBRUARY|MARCH|APRIL|MAY|JUNE|JULY|AUGUST|SEPTEMBER|OCTOBER|NOVEMBER|DECEMBER)"
|
|
617
|
+
],
|
|
618
|
+
"whiteSpace": "collapse"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"name": "xbrltt:dateJpnEraYearMonthType",
|
|
622
|
+
"baseType": "xs:string",
|
|
623
|
+
"patterns": [
|
|
624
|
+
"(明治|明|大正|大|昭和|昭|平成|平|令和|令)[\\s ]*([0-90-9]{1,2}|元)[\\s ]*(年)[\\s ]*([0-90-9]{1,2})[\\s ]*(月)"
|
|
625
|
+
],
|
|
626
|
+
"whiteSpace": "collapse"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"name": "xbrltt:dateJpnEraYearMonthDayType",
|
|
630
|
+
"baseType": "xs:string",
|
|
631
|
+
"patterns": [
|
|
632
|
+
"(明治|明|大正|大|昭和|昭|平成|平|令和|令)[\\s ]*([0-90-9]{1,2}|元)[\\s ]*(年)[\\s ]*([0-90-9]{1,2})[\\s ]*(月)[\\s ]*([0-90-9]{1,2})[\\s ]*(日)"
|
|
633
|
+
],
|
|
634
|
+
"whiteSpace": "collapse"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"name": "xbrltt:dateDayMonthType",
|
|
638
|
+
"baseType": "xs:string",
|
|
639
|
+
"patterns": [
|
|
640
|
+
"[0-9]{1,2}[^0-9]+[0-9]{1,2}"
|
|
641
|
+
],
|
|
642
|
+
"whiteSpace": "collapse"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"name": "xbrltt:dateDayMonthYearType",
|
|
646
|
+
"baseType": "xs:string",
|
|
647
|
+
"patterns": [
|
|
648
|
+
"[0-9०-९]{1,2}[^0-9०-९]+[0-9०-९]{1,2}[^0-9०-९]+([0-9०-९]{1,2}|[0-9०-९]{4})"
|
|
649
|
+
],
|
|
650
|
+
"whiteSpace": "collapse"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"name": "xbrltt:dateMonthDayType",
|
|
654
|
+
"baseType": "xs:string",
|
|
655
|
+
"patterns": [
|
|
656
|
+
"[0-9]{1,2}[^0-9]+[0-9]{1,2}"
|
|
657
|
+
],
|
|
658
|
+
"whiteSpace": "collapse"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"name": "xbrltt:dateMonthDayYearType",
|
|
662
|
+
"baseType": "xs:string",
|
|
663
|
+
"patterns": [
|
|
664
|
+
"[0-9]{1,2}[^0-9]+[0-9]{1,2}[^0-9]+([0-9]{1,2}|[0-9]{4})"
|
|
665
|
+
],
|
|
666
|
+
"whiteSpace": "collapse"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"name": "xbrltt:dateMonthYearType",
|
|
670
|
+
"baseType": "xs:string",
|
|
671
|
+
"patterns": [
|
|
672
|
+
"[0-9०-९]{1,2}[^0-9०-९]+([0-9०-९]{1,2}|[0-9०-९]{4})"
|
|
673
|
+
],
|
|
674
|
+
"whiteSpace": "collapse"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"name": "xbrltt:dateYearMonthDayType",
|
|
678
|
+
"baseType": "xs:string",
|
|
679
|
+
"patterns": [
|
|
680
|
+
"([0-90-९]{1,2}|[0-90-९]{4})[^0-9०-९]+[0-9०-९]{1,2}[^0-9०-९]+[0-9०-९]{1,2}[^0-9०-९]*"
|
|
681
|
+
],
|
|
682
|
+
"whiteSpace": "collapse"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"name": "xbrltt:dateYearMonthType",
|
|
686
|
+
"baseType": "xs:string",
|
|
687
|
+
"patterns": [
|
|
688
|
+
"([0-9०-९]{1,2}|[0-9०-९]{4})[^0-9०-९]+[0-9०-९]{1,2}[^0-9०-९]*"
|
|
689
|
+
],
|
|
690
|
+
"whiteSpace": "collapse"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"name": "xbrltt:dateIndDayMonthnameYearHiType",
|
|
694
|
+
"baseType": "xs:string",
|
|
695
|
+
"patterns": [
|
|
696
|
+
"([0-9]{1,2}|[०-९]{1,2})[^0-9०-९]+((C\\S*ait|चैत्र)|(Vai|वैशाख|बैसाख)|(Jy|ज्येष्ठ)|(dha|ḍha|आषाढ|आषाढ़)|(vana|Śrāvaṇa|श्रावण|सावन)|(Bh\\S+dra|Proṣṭhapada|भाद्रपद|भादो)|(in|आश्विन)|(K\\S+rti|कार्तिक)|(M\\S+rga|Agra|मार्गशीर्ष|अगहन)|(Pau|पौष)|(M\\S+gh|माघ)|(Ph\\S+lg|फाल्गुन))[^0-9०-९]+([0-9]{2}|[0-9]{4}|[०-९]{2}|[०-९]{4})"
|
|
697
|
+
],
|
|
698
|
+
"whiteSpace": "collapse"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"name": "xbrltt:dateDayMonthnameYearHiType",
|
|
702
|
+
"baseType": "xs:string",
|
|
703
|
+
"patterns": [
|
|
704
|
+
"([0-9]{1,2}|[०-९]{1,2})[^0-9०-९]+(जनवरी|फरवरी|मार्च|अप्रैल|मई|जून|जुलाई|अगस्त|सितंबर|अक्टूबर|नवंबर|दिसंबर)[^0-9०-९]+([0-9]{2}|[0-9]{4}|[०-९]{2}|[०-९]{4})"
|
|
705
|
+
],
|
|
706
|
+
"whiteSpace": "collapse"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"name": "xbrltt:dateMonthnameYearHiType",
|
|
710
|
+
"baseType": "xs:string",
|
|
711
|
+
"patterns": [
|
|
712
|
+
"(जनवरी|फरवरी|मार्च|अप्रैल|मई|जून|जुलाई|अगस्त|सितंबर|अक्टूबर|नवंबर|दिसंबर)[^0-9०-९]+([0-9]{2}|[0-9]{4}|[०-९]{2}|[०-९]{4})"
|
|
713
|
+
],
|
|
714
|
+
"whiteSpace": "collapse"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "xbrltt:fixedEmptyType",
|
|
718
|
+
"baseType": "xs:string",
|
|
719
|
+
"whiteSpace": "collapse",
|
|
720
|
+
"length": 0
|
|
721
|
+
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "xbrltt:fixedFalseType",
|
|
725
|
+
"baseType": "xs:boolean",
|
|
726
|
+
"whiteSpace": "collapse",
|
|
727
|
+
"patterns": ["false"]
|
|
728
|
+
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"name": "xbrltt:fixedTrueType",
|
|
732
|
+
"baseType": "xs:boolean",
|
|
733
|
+
"whiteSpace": "collapse",
|
|
734
|
+
"patterns": ["true"]
|
|
735
|
+
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"name": "xbrltt:fixedZeroType",
|
|
739
|
+
"baseType": "xs:integer",
|
|
740
|
+
"enumeration": [0]
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"name": "xbrltt:nonNegativeDecimalType",
|
|
744
|
+
"baseType": "xs:decimal",
|
|
745
|
+
"minInclusive": 0
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"name": "xbrltt:numCommaDecimalType",
|
|
749
|
+
"baseType": "xs:string",
|
|
750
|
+
"whiteSpace": "collapse",
|
|
751
|
+
"patterns": ["[\\. 0-9]*(,[ 0-9]+)?"]
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"name": "xbrltt:numCommaDecimalAposType",
|
|
755
|
+
"baseType": "xs:string",
|
|
756
|
+
"whiteSpace": "collapse",
|
|
757
|
+
"patterns": ["[\\.'`´’′ 0-9]*(,[ 0-9]+)?"]
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"name": "xbrltt:numDotDecimalType",
|
|
761
|
+
"baseType": "xs:string",
|
|
762
|
+
"whiteSpace": "collapse",
|
|
763
|
+
"patterns":[ "[, 0-9]*(\\.[ 0-9]+)?"]
|
|
764
|
+
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"name": "xbrltt:numDotDecimalAposType",
|
|
768
|
+
"baseType": "xs:string",
|
|
769
|
+
"whiteSpace": "collapse",
|
|
770
|
+
"patterns": ["[,'`´’′ 0-9]*(\\.[ 0-9]+)?"]
|
|
771
|
+
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"name": "xbrltt:numUnitDecimalType",
|
|
775
|
+
"baseType": "xs:string",
|
|
776
|
+
"whiteSpace": "collapse",
|
|
777
|
+
"patterns": ["([0-90-9\\.,,]+)([^0-90-9\\.,,][^0-90-9]*)([0-90-9]{1,2})([^0-90-9]*)"]
|
|
778
|
+
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"name": "xbrltt:numUnitDecimalAposType",
|
|
782
|
+
"baseType": "xs:string",
|
|
783
|
+
"whiteSpace": "collapse",
|
|
784
|
+
"patterns": ["([0-90-9\\.,,'`´’′']+)([^0-90-9\\.,,'`´’′'][^0-90-9]*)([0-90-9]{1,2})([^0-90-9]*)"]
|
|
785
|
+
|
|
786
|
+
}
|
|
787
|
+
],
|
|
788
|
+
"labels": [
|
|
789
|
+
{
|
|
790
|
+
"relatedName": "xbrltt:dateDayMonthnameBgType",
|
|
791
|
+
"language": "en",
|
|
792
|
+
"labelType": "xbrl:documentation",
|
|
793
|
+
"value": "Bulgarian date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 февруари')."
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"relatedName": "xbrltt:dateDayMonthnameYearBgType",
|
|
797
|
+
"language": "en",
|
|
798
|
+
"labelType": "xbrl:documentation",
|
|
799
|
+
"value": "Bulgarian date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30 февруари 2008 г.')."
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"relatedName": "xbrltt:dateMonthnameYearBgType",
|
|
803
|
+
"language": "en",
|
|
804
|
+
"labelType": "xbrl:documentation",
|
|
805
|
+
"value": "Bulgarian date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"relatedName": "xbrltt:dateDayMonthnameCsType",
|
|
809
|
+
"language": "en",
|
|
810
|
+
"labelType": "xbrl:documentation",
|
|
811
|
+
"value": "Czech date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. února')."
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"relatedName": "xbrltt:dateDayMonthnameYearCsType",
|
|
815
|
+
"language": "en",
|
|
816
|
+
"labelType": "xbrl:documentation",
|
|
817
|
+
"value": "Czech date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. února 2008')."
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"relatedName": "xbrltt:dateMonthnameYearCsType",
|
|
821
|
+
"language": "en",
|
|
822
|
+
"labelType": "xbrl:documentation",
|
|
823
|
+
"value": "Czech date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"relatedName": "xbrltt:dateDayMonthnameCyType",
|
|
827
|
+
"language": "en",
|
|
828
|
+
"labelType": "xbrl:documentation",
|
|
829
|
+
"value": "Welsh date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30ain Chwefror')."
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"relatedName": "xbrltt:dateDayMonthnameYearCyType",
|
|
833
|
+
"language": "en",
|
|
834
|
+
"labelType": "xbrl:documentation",
|
|
835
|
+
"value": "Welsh date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30ain Chwefror 2008')."
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"relatedName": "xbrltt:dateMonthnameYearCyType",
|
|
839
|
+
"language": "en",
|
|
840
|
+
"labelType": "xbrl:documentation",
|
|
841
|
+
"value": "Welsh date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"relatedName": "xbrltt:dateDayMonthnameDeType",
|
|
845
|
+
"language": "en",
|
|
846
|
+
"labelType": "xbrl:documentation",
|
|
847
|
+
"value": "German date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. Februar')."
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"relatedName": "xbrltt:dateDayMonthnameYearDeType",
|
|
851
|
+
"language": "en",
|
|
852
|
+
"labelType": "xbrl:documentation",
|
|
853
|
+
"value": "German date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. Februar 2008')."
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"relatedName": "xbrltt:dateMonthnameYearDeType",
|
|
857
|
+
"language": "en",
|
|
858
|
+
"labelType": "xbrl:documentation",
|
|
859
|
+
"value": "German date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"relatedName": "xbrltt:dateDayMonthnameElType",
|
|
863
|
+
"language": "en",
|
|
864
|
+
"labelType": "xbrl:documentation",
|
|
865
|
+
"value": "Greek date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 Φεβρουαρίου')."
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"relatedName": "xbrltt:dateDayMonthnameYearElType",
|
|
869
|
+
"language": "en",
|
|
870
|
+
"labelType": "xbrl:documentation",
|
|
871
|
+
"value": "Greek date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30 Φεβρουαρίου 2008')."
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"relatedName": "xbrltt:dateMonthnameYearElType",
|
|
875
|
+
"language": "en",
|
|
876
|
+
"labelType": "xbrl:documentation",
|
|
877
|
+
"value": "Greek date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"relatedName": "xbrltt:dateDayMonthnameEsType",
|
|
881
|
+
"language": "en",
|
|
882
|
+
"labelType": "xbrl:documentation",
|
|
883
|
+
"value": "Spanish date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 de febrero')."
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"relatedName": "xbrltt:dateDayMonthnameYearEsType",
|
|
887
|
+
"language": "en",
|
|
888
|
+
"labelType": "xbrl:documentation",
|
|
889
|
+
"value": "Spanish date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30 de febrero de 2008')."
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"relatedName": "xbrltt:dateMonthnameYearEsType",
|
|
893
|
+
"language": "en",
|
|
894
|
+
"labelType": "xbrl:documentation",
|
|
895
|
+
"value": "Spanish date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"relatedName": "xbrltt:dateDayMonthnameEtType",
|
|
899
|
+
"language": "en",
|
|
900
|
+
"labelType": "xbrl:documentation",
|
|
901
|
+
"value": "Estonian date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. veebruar')."
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"relatedName": "xbrltt:dateDayMonthnameYearEtType",
|
|
905
|
+
"language": "en",
|
|
906
|
+
"labelType": "xbrl:documentation",
|
|
907
|
+
"value": "Estonian date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. veebruar 2008')."
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"relatedName": "xbrltt:dateMonthnameYearEtType",
|
|
911
|
+
"language": "en",
|
|
912
|
+
"labelType": "xbrl:documentation",
|
|
913
|
+
"value": "Estonian date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"relatedName": "xbrltt:dateDayMonthnameFiType",
|
|
917
|
+
"language": "en",
|
|
918
|
+
"labelType": "xbrl:documentation",
|
|
919
|
+
"value": "Finnish date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. helmikuuta')."
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"relatedName": "xbrltt:dateDayMonthnameYearFiType",
|
|
923
|
+
"language": "en",
|
|
924
|
+
"labelType": "xbrl:documentation",
|
|
925
|
+
"value": "Finnish date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. helmikuuta 2008')."
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"relatedName": "xbrltt:dateMonthnameYearFiType",
|
|
929
|
+
"language": "en",
|
|
930
|
+
"labelType": "xbrl:documentation",
|
|
931
|
+
"value": "Finnish date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"relatedName": "xbrltt:dateDayMonthnameFrType",
|
|
935
|
+
"language": "en",
|
|
936
|
+
"labelType": "xbrl:documentation",
|
|
937
|
+
"value": "French date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 février')."
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"relatedName": "xbrltt:dateDayMonthnameYearFrType",
|
|
941
|
+
"language": "en",
|
|
942
|
+
"labelType": "xbrl:documentation",
|
|
943
|
+
"value": "French date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30 février 2008')."
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"relatedName": "xbrltt:dateMonthnameYearFrType",
|
|
947
|
+
"language": "en",
|
|
948
|
+
"labelType": "xbrl:documentation",
|
|
949
|
+
"value": "French date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"relatedName": "xbrltt:dateDayMonthnameHrType",
|
|
953
|
+
"language": "en",
|
|
954
|
+
"labelType": "xbrl:documentation",
|
|
955
|
+
"value": "Croatian date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. veljače')."
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"relatedName": "xbrltt:dateDayMonthnameYearHrType",
|
|
959
|
+
"language": "en",
|
|
960
|
+
"labelType": "xbrl:documentation",
|
|
961
|
+
"value": "Croatian date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. veljače 2008')."
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"relatedName": "xbrltt:dateMonthnameYearHrType",
|
|
965
|
+
"language": "en",
|
|
966
|
+
"labelType": "xbrl:documentation",
|
|
967
|
+
"value": "Croatian date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"relatedName": "xbrltt:dateMonthnameDayHuType",
|
|
971
|
+
"language": "en",
|
|
972
|
+
"labelType": "xbrl:documentation",
|
|
973
|
+
"value": "Hungarian date in the order 'month day'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts 'február 30')."
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"relatedName": "xbrltt:dateYearMonthnameDayHuType",
|
|
977
|
+
"language": "en",
|
|
978
|
+
"labelType": "xbrl:documentation",
|
|
979
|
+
"value": "Hungarian date in the order 'year month day'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '2008. február 30')."
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"relatedName": "xbrltt:dateYearMonthnameHuType",
|
|
983
|
+
"language": "en",
|
|
984
|
+
"labelType": "xbrl:documentation",
|
|
985
|
+
"value": "Hungarian date in the order 'year month'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"relatedName": "xbrltt:dateDayMonthnameItType",
|
|
989
|
+
"language": "en",
|
|
990
|
+
"labelType": "xbrl:documentation",
|
|
991
|
+
"value": "Italian date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 febbraio')."
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"relatedName": "xbrltt:dateDayMonthnameYearItType",
|
|
995
|
+
"language": "en",
|
|
996
|
+
"labelType": "xbrl:documentation",
|
|
997
|
+
"value": "Italian date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30 febbraio 2008')."
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"relatedName": "xbrltt:dateMonthnameYearItType",
|
|
1001
|
+
"language": "en",
|
|
1002
|
+
"labelType": "xbrl:documentation",
|
|
1003
|
+
"value": "Italian date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"relatedName": "xbrltt:dateMonthnameDayLtType",
|
|
1007
|
+
"language": "en",
|
|
1008
|
+
"labelType": "xbrl:documentation",
|
|
1009
|
+
"value": "Lithuanian date in the order 'month day'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts 'Vasaris 30 d')."
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"relatedName": "xbrltt:dateYearMonthnameDayLtType",
|
|
1013
|
+
"language": "en",
|
|
1014
|
+
"labelType": "xbrl:documentation",
|
|
1015
|
+
"value": "Lithuanian date in the order 'year month day'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '2008 m. Vasaris 30 d')."
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"relatedName": "xbrltt:dateYearMonthnameLtType",
|
|
1019
|
+
"language": "en",
|
|
1020
|
+
"labelType": "xbrl:documentation",
|
|
1021
|
+
"value": "Lithuanian date in the order 'year month'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"relatedName": "xbrltt:dateDayMonthnameLvType",
|
|
1025
|
+
"language": "en",
|
|
1026
|
+
"labelType": "xbrl:documentation",
|
|
1027
|
+
"value": "Latvian date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. februāris')."
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
"relatedName": "xbrltt:dateYearDayMonthnameLvType",
|
|
1031
|
+
"language": "en",
|
|
1032
|
+
"labelType": "xbrl:documentation",
|
|
1033
|
+
"value": "Latvian date in the order 'year day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '2008. gada 30. februāris')."
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"relatedName": "xbrltt:dateYearMonthnameLvType",
|
|
1037
|
+
"language": "en",
|
|
1038
|
+
"labelType": "xbrl:documentation",
|
|
1039
|
+
"value": "Latvian date in the order 'year month'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"relatedName": "xbrltt:dateDayMonthnameNlType",
|
|
1043
|
+
"language": "en",
|
|
1044
|
+
"labelType": "xbrl:documentation",
|
|
1045
|
+
"value": "Dutch date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 februari')."
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"relatedName": "xbrltt:dateDayMonthnameYearNlType",
|
|
1049
|
+
"language": "en",
|
|
1050
|
+
"labelType": "xbrl:documentation",
|
|
1051
|
+
"value": "Dutch date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30 februari 2008')."
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"relatedName": "xbrltt:dateMonthnameYearNlType",
|
|
1055
|
+
"language": "en",
|
|
1056
|
+
"labelType": "xbrl:documentation",
|
|
1057
|
+
"value": "Dutch date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"relatedName": "xbrltt:dateDayMonthnameNoType",
|
|
1061
|
+
"language": "en",
|
|
1062
|
+
"labelType": "xbrl:documentation",
|
|
1063
|
+
"value": "Norwegian date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. februar')."
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"relatedName": "xbrltt:dateDayMonthnameYearNoType",
|
|
1067
|
+
"language": "en",
|
|
1068
|
+
"labelType": "xbrl:documentation",
|
|
1069
|
+
"value": "Norwegian date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. februar 2008')."
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"relatedName": "xbrltt:dateMonthnameYearNoType",
|
|
1073
|
+
"language": "en",
|
|
1074
|
+
"labelType": "xbrl:documentation",
|
|
1075
|
+
"value": "Norwegian date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"relatedName": "xbrltt:dateDayMonthnamePlType",
|
|
1079
|
+
"language": "en",
|
|
1080
|
+
"labelType": "xbrl:documentation",
|
|
1081
|
+
"value": "Polish date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. lutego')."
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"relatedName": "xbrltt:dateDayMonthnameYearPlType",
|
|
1085
|
+
"language": "en",
|
|
1086
|
+
"labelType": "xbrl:documentation",
|
|
1087
|
+
"value": "Polish date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. lutego 2008 r')."
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"relatedName": "xbrltt:dateMonthnameYearPlType",
|
|
1091
|
+
"language": "en",
|
|
1092
|
+
"labelType": "xbrl:documentation",
|
|
1093
|
+
"value": "Polish date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"relatedName": "xbrltt:dateDayMonthnamePtType",
|
|
1097
|
+
"language": "en",
|
|
1098
|
+
"labelType": "xbrl:documentation",
|
|
1099
|
+
"value": "Portuguese date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 de fevereiro')."
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"relatedName": "xbrltt:dateDayMonthnameYearPtType",
|
|
1103
|
+
"language": "en",
|
|
1104
|
+
"labelType": "xbrl:documentation",
|
|
1105
|
+
"value": "Portuguese date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30 de fevereiro de 2008')."
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"relatedName": "xbrltt:dateMonthnameYearPtType",
|
|
1109
|
+
"language": "en",
|
|
1110
|
+
"labelType": "xbrl:documentation",
|
|
1111
|
+
"value": "Portuguese date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"relatedName": "xbrltt:dateDayMonthromanType",
|
|
1115
|
+
"language": "en",
|
|
1116
|
+
"labelType": "xbrl:documentation",
|
|
1117
|
+
"value": "Roman date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in Roman numerals (I to XII). Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 II')."
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"relatedName": "xbrltt:dateDayMonthromanYearType",
|
|
1121
|
+
"language": "en",
|
|
1122
|
+
"labelType": "xbrl:documentation",
|
|
1123
|
+
"value": "Roman date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in Roman numerals (I to XII). Accepts 1, 2, or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30 II 2008')."
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"relatedName": "xbrltt:dateMonthromanYearType",
|
|
1127
|
+
"language": "en",
|
|
1128
|
+
"labelType": "xbrl:documentation",
|
|
1129
|
+
"value": "Roman date in the order 'month year'. Accepts months in Roman numerals (I to XII). Accepts 1, 2, or 4 digits for year. Requires a non-numeric separator."
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"relatedName": "xbrltt:dateDayMonthnameRoType",
|
|
1133
|
+
"language": "en",
|
|
1134
|
+
"labelType": "xbrl:documentation",
|
|
1135
|
+
"value": "Romanian date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 februarie')."
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"relatedName": "xbrltt:dateDayMonthnameYearRoType",
|
|
1139
|
+
"language": "en",
|
|
1140
|
+
"labelType": "xbrl:documentation",
|
|
1141
|
+
"value": "Romanian date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30 februarie 2008')."
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"relatedName": "xbrltt:dateMonthnameYearRoType",
|
|
1145
|
+
"language": "en",
|
|
1146
|
+
"labelType": "xbrl:documentation",
|
|
1147
|
+
"value": "Romanian date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"relatedName": "xbrltt:dateDayMonthnameSkType",
|
|
1151
|
+
"language": "en",
|
|
1152
|
+
"labelType": "xbrl:documentation",
|
|
1153
|
+
"value": "Slovak date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. februára')."
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"relatedName": "xbrltt:dateDayMonthnameYearSkType",
|
|
1157
|
+
"language": "en",
|
|
1158
|
+
"labelType": "xbrl:documentation",
|
|
1159
|
+
"value": "Slovak date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. februára 2008')."
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"relatedName": "xbrltt:dateMonthnameYearSkType",
|
|
1163
|
+
"language": "en",
|
|
1164
|
+
"labelType": "xbrl:documentation",
|
|
1165
|
+
"value": "Slovak date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"relatedName": "xbrltt:dateDayMonthnameSlType",
|
|
1169
|
+
"language": "en",
|
|
1170
|
+
"labelType": "xbrl:documentation",
|
|
1171
|
+
"value": "Slovenian date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. februar')."
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"relatedName": "xbrltt:dateDayMonthnameYearSlType",
|
|
1175
|
+
"language": "en",
|
|
1176
|
+
"labelType": "xbrl:documentation",
|
|
1177
|
+
"value": "Slovenian date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. februar 2008')."
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"relatedName": "xbrltt:dateMonthnameYearSlType",
|
|
1181
|
+
"language": "en",
|
|
1182
|
+
"labelType": "xbrl:documentation",
|
|
1183
|
+
"value": "Slovenian date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"relatedName": "xbrltt:dateDayMonthnameDaSvType",
|
|
1187
|
+
"language": "en",
|
|
1188
|
+
"labelType": "xbrl:documentation",
|
|
1189
|
+
"value": "Danish or Swedish date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30. februar')."
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"relatedName": "xbrltt:dateDayMonthnameYearDaSvType",
|
|
1193
|
+
"language": "en",
|
|
1194
|
+
"labelType": "xbrl:documentation",
|
|
1195
|
+
"value": "Danish or Swedish date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30. februar 2008')."
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"relatedName": "xbrltt:dateMonthnameYearDaSvType",
|
|
1199
|
+
"language": "en",
|
|
1200
|
+
"labelType": "xbrl:documentation",
|
|
1201
|
+
"value": "Danish or Swedish date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"relatedName": "xbrltt:dateDayMonthnameEnType",
|
|
1205
|
+
"language": "en",
|
|
1206
|
+
"labelType": "xbrl:documentation",
|
|
1207
|
+
"value": "English date in the order 'day month'. Accepts 1 or 2 digits for day, with optional ordinal suffix. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30th February')."
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
"relatedName": "xbrltt:dateDayMonthnameYearEnType",
|
|
1211
|
+
"language": "en",
|
|
1212
|
+
"labelType": "xbrl:documentation",
|
|
1213
|
+
"value": "English date in the order 'day month year'. Accepts 1 or 2 digits for day, with optional ordinal suffix. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30th February 2008')."
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"relatedName": "xbrltt:dateMonthnameDayEnType",
|
|
1217
|
+
"language": "en",
|
|
1218
|
+
"labelType": "xbrl:documentation",
|
|
1219
|
+
"value": "English date in the order 'month day'. Accepts 1 or 2 digits for day, with optional ordinal suffix of one or two letters. Accepts months in full or abbreviated form. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts 'February 30th')."
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"relatedName": "xbrltt:dateMonthnameDayYearEnType",
|
|
1223
|
+
"language": "en",
|
|
1224
|
+
"labelType": "xbrl:documentation",
|
|
1225
|
+
"value": "English date in the order 'month day year'. Accepts 1 or 2 digits for day, with optional ordinal suffix. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts 'February 30th, 2008')."
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"relatedName": "xbrltt:dateMonthnameYearEnType",
|
|
1229
|
+
"language": "en",
|
|
1230
|
+
"labelType": "xbrl:documentation",
|
|
1231
|
+
"value": "English date in the order 'month year'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"relatedName": "xbrltt:dateYearMonthnameEnType",
|
|
1235
|
+
"language": "en",
|
|
1236
|
+
"labelType": "xbrl:documentation",
|
|
1237
|
+
"value": "English date in the order 'year month'. Accepts months in full or abbreviated form. Accepts 1, 2 or 4 digits for year. Requires a non-numeric separator."
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"relatedName": "xbrltt:dateJpnEraYearMonthType",
|
|
1241
|
+
"language": "en",
|
|
1242
|
+
"labelType": "xbrl:documentation",
|
|
1243
|
+
"value": "Japanese date in the order 'era year month' (e.g., '令和元年5月')."
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"relatedName": "xbrltt:dateJpnEraYearMonthDayType",
|
|
1247
|
+
"language": "en",
|
|
1248
|
+
"labelType": "xbrl:documentation",
|
|
1249
|
+
"value": "Japanese date in the order 'era year month day' (e.g., '令和元年5月31日')."
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"relatedName": "xbrltt:dateDayMonthType",
|
|
1253
|
+
"language": "en",
|
|
1254
|
+
"labelType": "xbrl:documentation",
|
|
1255
|
+
"value": "Numeric date in the order 'day month'. Accepts 1 or 2 digits for day. Accepts 1 or 2 digits for month. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '30 02')."
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"relatedName": "xbrltt:dateDayMonthYearType",
|
|
1259
|
+
"language": "en",
|
|
1260
|
+
"labelType": "xbrl:documentation",
|
|
1261
|
+
"value": "Numeric date in the order 'day month year'. Accepts 1 or 2 digits for day. Accepts 1 or 2 digits for month. Accepts 1, 2, or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '30-02-2008')."
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"relatedName": "xbrltt:dateMonthDayType",
|
|
1265
|
+
"language": "en",
|
|
1266
|
+
"labelType": "xbrl:documentation",
|
|
1267
|
+
"value": "Numeric date in the order 'month day'. Accepts 1 or 2 digits for day. Accepts 1 or 2 digits for month. Requires a non-numeric separator. The schema does not enforce valid day of month (e.g., it accepts '02 30')."
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"relatedName": "xbrltt:dateMonthDayYearType",
|
|
1271
|
+
"language": "en",
|
|
1272
|
+
"labelType": "xbrl:documentation",
|
|
1273
|
+
"value": "Numeric date in the order 'month day year'. Accepts 1 or 2 digits for day. Accepts 1 or 2 digits for month. Accepts 1, 2, or 4 digits for year. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '02/30/2008')."
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"relatedName": "xbrltt:dateMonthYearType",
|
|
1277
|
+
"language": "en",
|
|
1278
|
+
"labelType": "xbrl:documentation",
|
|
1279
|
+
"value": "Numeric date in the order 'month year'. Accepts 1 or 2 digits for month. Accepts 1, 2, or 4 digits for year. Requires a non-numeric separator. The schema does not enforce valid month (e.g., it accepts '13 2008')."
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"relatedName": "xbrltt:dateYearMonthDayType",
|
|
1283
|
+
"language": "en",
|
|
1284
|
+
"labelType": "xbrl:documentation",
|
|
1285
|
+
"value": "Numeric date in the order 'year month day'. Accepts 1 or 2 digits for day. Accepts 1 or 2 digits for month. Accepts 1, 2, or 4 digits for year. Numeric values may be represented by halfwidth or fullwidth forms. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '2008 2 30')."
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"relatedName": "xbrltt:dateYearMonthType",
|
|
1289
|
+
"language": "en",
|
|
1290
|
+
"labelType": "xbrl:documentation",
|
|
1291
|
+
"value": "Numeric date in the order 'year month'. Accepts 1, 2, or 4 digits for year. Accepts 1 or 2 digits for month. Requires a non-numeric separator. The schema does not enforce valid month (e.g., it accepts '2008 13')."
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"relatedName": "xbrltt:dateIndDayMonthnameYearHiType",
|
|
1295
|
+
"language": "en",
|
|
1296
|
+
"labelType": "xbrl:documentation",
|
|
1297
|
+
"value": "Hindi date based on the Indian National Calendar in the order 'day month year'. Accepts 1 or 2 digits for day, in Arabic or Devanagari numerals. Accepts Hindi names for Saka months or equivalent Latin transliterations. Accepts 2 or 4 digits for year, in Arabic or Devanagari numerals. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '45 Chaitra 2001')."
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"relatedName": "xbrltt:dateDayMonthnameYearHiType",
|
|
1301
|
+
"language": "en",
|
|
1302
|
+
"labelType": "xbrl:documentation",
|
|
1303
|
+
"value": "Hindi date based on the Gregorian Calendar in the order 'day month year'. Accepts 1 or 2 digits for day, in Arabic or Devanagari numerals. Accepts unabbreviated Hindi names for Gregorian Calendar months. Accepts 2 or 4 digits for year, in Arabic or Devanagari numerals. Requires non-numeric separators. The schema does not enforce valid day of month (e.g., it accepts '45 जनवरी 2001')."
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"relatedName": "xbrltt:dateMonthnameYearHiType",
|
|
1307
|
+
"language": "en",
|
|
1308
|
+
"labelType": "xbrl:documentation",
|
|
1309
|
+
"value": "Hindi date based on the Gregorian Calendar in the order 'month year'. Requires unabbreviated Hindi names for Gregorian Calendar months. Accepts 2 or 4 digits for year, in Arabic or Devanagari numerals. Requires a non-numeric separator."
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"relatedName": "xbrltt:fixedEmptyType",
|
|
1313
|
+
"language": "en",
|
|
1314
|
+
"labelType": "xbrl:documentation",
|
|
1315
|
+
"value": "String type with no content."
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"relatedName": "xbrltt:fixedFalseType",
|
|
1319
|
+
"language": "en",
|
|
1320
|
+
"labelType": "xbrl:documentation",
|
|
1321
|
+
"value": "Boolean type with the value false."
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"relatedName": "xbrltt:fixedTrueType",
|
|
1325
|
+
"language": "en",
|
|
1326
|
+
"labelType": "xbrl:documentation",
|
|
1327
|
+
"value": "Boolean type with the value true."
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"relatedName": "xbrltt:fixedZeroType",
|
|
1331
|
+
"language": "en",
|
|
1332
|
+
"labelType": "xbrl:documentation",
|
|
1333
|
+
"value": "As xs:integer with the value zero."
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"relatedName": "xbrltt:nonNegativeDecimalType",
|
|
1337
|
+
"language": "en",
|
|
1338
|
+
"labelType": "xbrl:documentation",
|
|
1339
|
+
"value": "As xs:decimal but not negative."
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"relatedName": "xbrltt:numCommaDecimalType",
|
|
1343
|
+
"language": "en",
|
|
1344
|
+
"labelType": "xbrl:documentation",
|
|
1345
|
+
"value": "Positive numeric values with a comma for the fraction separator. No signs or exponentials accepted. Dot, space, or no-break space allowed as optional digit separators. If there is a fraction separator, then it must be followed by at least one digit."
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"relatedName": "xbrltt:numCommaDecimalAposType",
|
|
1349
|
+
"language": "en",
|
|
1350
|
+
"labelType": "xbrl:documentation",
|
|
1351
|
+
"value": "Positive numeric values with a comma for the fraction separator. No signs or exponentials accepted. Dot, space, no-break space, and various apostrophe-like punctuation allowed as optional digit separators. If there is a fraction separator, then it must be followed by at least one digit."
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
"relatedName": "xbrltt:numDotDecimalType",
|
|
1355
|
+
"language": "en",
|
|
1356
|
+
"labelType": "xbrl:documentation",
|
|
1357
|
+
"value": "Positive numeric values with a dot for the fraction separator. No signs or exponentials accepted. Comma, space, or no-break space allowed as optional digit separators. If there is a fraction separator, then it must be followed by at least one digit."
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"relatedName": "xbrltt:numDotDecimalAposType",
|
|
1361
|
+
"language": "en",
|
|
1362
|
+
"labelType": "xbrl:documentation",
|
|
1363
|
+
"value": "Positive numeric values with a dot for the fraction separator. No signs or exponentials accepted. Comma, space, no-break space, and various apostrophe-like punctuation allowed as optional digit separators. If there is a fraction separator, then it must be followed by at least one digit."
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"relatedName": "xbrltt:numUnitDecimalType",
|
|
1367
|
+
"language": "en",
|
|
1368
|
+
"labelType": "xbrl:documentation",
|
|
1369
|
+
"value": "Positive numeric values with unit string suffixes. No signs or exponentials accepted. Must have at least one digit before and after the first unit string suffix. The fraction part is limited to two digits and is assumed to be in hundredths. Numeric values may be represented by halfwidth or fullwidth forms. Dot, comma, or fullwidth comma allowed as optional digit separators. Unit string suffix is required after the integer part but optional after the fraction part (e.g., '3,000円5銭', '3.000 euro 5 cent')."
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"relatedName": "xbrltt:numUnitDecimalAposType",
|
|
1373
|
+
"language": "en",
|
|
1374
|
+
"labelType": "xbrl:documentation",
|
|
1375
|
+
"value": "Positive numeric values with unit string suffixes. No signs or exponentials accepted. Must have at least one digit before and after the first unit string suffix. The fraction part is limited to two digits and is assumed to be in hundredths. Numeric values may be represented by halfwidth or fullwidth forms. Dot, comma, fullwidth comma, and various apostrophe-like characters allowed as optional digit separators. Unit string suffix is required after the integer part but optional after the fraction part (e.g., '3,000円5銭', '3.000 euro 5 cent')."
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"relatedName": "xbrltt:date-day-month",
|
|
1379
|
+
"language": "en",
|
|
1380
|
+
"labelType": "xbrl:label",
|
|
1381
|
+
"value": "Numeric date recurring day and month"
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"relatedName": "xbrltt:date-day-month-year",
|
|
1385
|
+
"language": "en",
|
|
1386
|
+
"labelType": "xbrl:label",
|
|
1387
|
+
"value": "Numeric date day month and year"
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
"relatedName": "xbrltt:date-day-monthname-bg",
|
|
1391
|
+
"language": "en",
|
|
1392
|
+
"labelType": "xbrl:label",
|
|
1393
|
+
"value": "Bulgarian date recurring day and month"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"relatedName": "xbrltt:date-day-monthname-cs",
|
|
1397
|
+
"language": "en",
|
|
1398
|
+
"labelType": "xbrl:label",
|
|
1399
|
+
"value": "Czech date recurring day and month"
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
"relatedName": "xbrltt:date-day-monthname-cy",
|
|
1403
|
+
"language": "en",
|
|
1404
|
+
"labelType": "xbrl:label",
|
|
1405
|
+
"value": "Welsh date recurring day and month"
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"relatedName": "xbrltt:date-day-monthname-da",
|
|
1409
|
+
"language": "en",
|
|
1410
|
+
"labelType": "xbrl:label",
|
|
1411
|
+
"value": "Danish date recurring day and month"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"relatedName": "xbrltt:date-day-monthname-de",
|
|
1415
|
+
"language": "en",
|
|
1416
|
+
"labelType": "xbrl:label",
|
|
1417
|
+
"value": "German date recurring day and month"
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"relatedName": "xbrltt:date-day-monthname-el",
|
|
1421
|
+
"language": "en",
|
|
1422
|
+
"labelType": "xbrl:label",
|
|
1423
|
+
"value": "Greek date recurring day and month"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"relatedName": "xbrltt:date-day-monthname-en",
|
|
1427
|
+
"language": "en",
|
|
1428
|
+
"labelType": "xbrl:label",
|
|
1429
|
+
"value": "English date recurring day and month"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"relatedName": "xbrltt:date-day-monthname-es",
|
|
1433
|
+
"language": "en",
|
|
1434
|
+
"labelType": "xbrl:label",
|
|
1435
|
+
"value": "Spanish date recurring day and month"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"relatedName": "xbrltt:date-day-monthname-et",
|
|
1439
|
+
"language": "en",
|
|
1440
|
+
"labelType": "xbrl:label",
|
|
1441
|
+
"value": "Estonian date recurring day and month"
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"relatedName": "xbrltt:date-day-monthname-fi",
|
|
1445
|
+
"language": "en",
|
|
1446
|
+
"labelType": "xbrl:label",
|
|
1447
|
+
"value": "Finnish date recurring day and month"
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"relatedName": "xbrltt:date-day-monthname-fr",
|
|
1451
|
+
"language": "en",
|
|
1452
|
+
"labelType": "xbrl:label",
|
|
1453
|
+
"value": "French date recurring day and month"
|
|
1454
|
+
},
|
|
1455
|
+
{
|
|
1456
|
+
"relatedName": "xbrltt:date-day-monthname-hr",
|
|
1457
|
+
"language": "en",
|
|
1458
|
+
"labelType": "xbrl:label",
|
|
1459
|
+
"value": "Croatian date recurring day and month"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"relatedName": "xbrltt:date-day-monthname-it",
|
|
1463
|
+
"language": "en",
|
|
1464
|
+
"labelType": "xbrl:label",
|
|
1465
|
+
"value": "Italian date recurring day and month"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"relatedName": "xbrltt:date-day-monthname-lv",
|
|
1469
|
+
"language": "en",
|
|
1470
|
+
"labelType": "xbrl:label",
|
|
1471
|
+
"value": "Latvian date recurring day and month"
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"relatedName": "xbrltt:date-day-monthname-nl",
|
|
1475
|
+
"language": "en",
|
|
1476
|
+
"labelType": "xbrl:label",
|
|
1477
|
+
"value": "Dutch date recurring day and month"
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
"relatedName": "xbrltt:date-day-monthname-no",
|
|
1481
|
+
"language": "en",
|
|
1482
|
+
"labelType": "xbrl:label",
|
|
1483
|
+
"value": "Norwegian date recurring day and month"
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"relatedName": "xbrltt:date-day-monthname-pl",
|
|
1487
|
+
"language": "en",
|
|
1488
|
+
"labelType": "xbrl:label",
|
|
1489
|
+
"value": "Polish date recurring day and month"
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"relatedName": "xbrltt:date-day-monthname-pt",
|
|
1493
|
+
"language": "en",
|
|
1494
|
+
"labelType": "xbrl:label",
|
|
1495
|
+
"value": "Portuguese date recurring day and month"
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"relatedName": "xbrltt:date-day-monthname-ro",
|
|
1499
|
+
"language": "en",
|
|
1500
|
+
"labelType": "xbrl:label",
|
|
1501
|
+
"value": "Romanian date recurring day and month"
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"relatedName": "xbrltt:date-day-monthname-sk",
|
|
1505
|
+
"language": "en",
|
|
1506
|
+
"labelType": "xbrl:label",
|
|
1507
|
+
"value": "Slovak date recurring day and month"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"relatedName": "xbrltt:date-day-monthname-sl",
|
|
1511
|
+
"language": "en",
|
|
1512
|
+
"labelType": "xbrl:label",
|
|
1513
|
+
"value": "Slovenian date recurring day and month"
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"relatedName": "xbrltt:date-day-monthname-sv",
|
|
1517
|
+
"language": "en",
|
|
1518
|
+
"labelType": "xbrl:label",
|
|
1519
|
+
"value": "Swedish date recurring day and month"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"relatedName": "xbrltt:date-day-monthname-year-bg",
|
|
1523
|
+
"language": "en",
|
|
1524
|
+
"labelType": "xbrl:label",
|
|
1525
|
+
"value": "Bulgarian date day month and year"
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
"relatedName": "xbrltt:date-day-monthname-year-cs",
|
|
1529
|
+
"language": "en",
|
|
1530
|
+
"labelType": "xbrl:label",
|
|
1531
|
+
"value": "Czech date day month and year"
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
"relatedName": "xbrltt:date-day-monthname-year-cy",
|
|
1535
|
+
"language": "en",
|
|
1536
|
+
"labelType": "xbrl:label",
|
|
1537
|
+
"value": "Welsh date day month and year"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"relatedName": "xbrltt:date-day-monthname-year-da",
|
|
1541
|
+
"language": "en",
|
|
1542
|
+
"labelType": "xbrl:label",
|
|
1543
|
+
"value": "Danish date day month and year"
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"relatedName": "xbrltt:date-day-monthname-year-de",
|
|
1547
|
+
"language": "en",
|
|
1548
|
+
"labelType": "xbrl:label",
|
|
1549
|
+
"value": "German date day month and year"
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"relatedName": "xbrltt:date-day-monthname-year-el",
|
|
1553
|
+
"language": "en",
|
|
1554
|
+
"labelType": "xbrl:label",
|
|
1555
|
+
"value": "Greek date day month and year"
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
"relatedName": "xbrltt:date-day-monthname-year-en",
|
|
1559
|
+
"language": "en",
|
|
1560
|
+
"labelType": "xbrl:label",
|
|
1561
|
+
"value": "English date day month and year"
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"relatedName": "xbrltt:date-day-monthname-year-es",
|
|
1565
|
+
"language": "en",
|
|
1566
|
+
"labelType": "xbrl:label",
|
|
1567
|
+
"value": "Spanish date day month and year"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"relatedName": "xbrltt:date-day-monthname-year-et",
|
|
1571
|
+
"language": "en",
|
|
1572
|
+
"labelType": "xbrl:label",
|
|
1573
|
+
"value": "Estonian date day month and year"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"relatedName": "xbrltt:date-day-monthname-year-fi",
|
|
1577
|
+
"language": "en",
|
|
1578
|
+
"labelType": "xbrl:label",
|
|
1579
|
+
"value": "Finnish date day month and year"
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
"relatedName": "xbrltt:date-day-monthname-year-fr",
|
|
1583
|
+
"language": "en",
|
|
1584
|
+
"labelType": "xbrl:label",
|
|
1585
|
+
"value": "French date day month and year"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"relatedName": "xbrltt:date-day-monthname-year-hi",
|
|
1589
|
+
"language": "en",
|
|
1590
|
+
"labelType": "xbrl:label",
|
|
1591
|
+
"value": "Hindi date day month and year, based on Gregorian Calendar"
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
"relatedName": "xbrltt:date-day-monthname-year-hr",
|
|
1595
|
+
"language": "en",
|
|
1596
|
+
"labelType": "xbrl:label",
|
|
1597
|
+
"value": "Croatian date day month and year"
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"relatedName": "xbrltt:date-day-monthname-year-it",
|
|
1601
|
+
"language": "en",
|
|
1602
|
+
"labelType": "xbrl:label",
|
|
1603
|
+
"value": "Italian date day month and year"
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
"relatedName": "xbrltt:date-day-monthname-year-nl",
|
|
1607
|
+
"language": "en",
|
|
1608
|
+
"labelType": "xbrl:label",
|
|
1609
|
+
"value": "Dutch date day month and year"
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
"relatedName": "xbrltt:date-day-monthname-year-no",
|
|
1613
|
+
"language": "en",
|
|
1614
|
+
"labelType": "xbrl:label",
|
|
1615
|
+
"value": "Norwegian date day month and year"
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"relatedName": "xbrltt:date-day-monthname-year-pl",
|
|
1619
|
+
"language": "en",
|
|
1620
|
+
"labelType": "xbrl:label",
|
|
1621
|
+
"value": "Polish date day month and year"
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"relatedName": "xbrltt:date-day-monthname-year-pt",
|
|
1625
|
+
"language": "en",
|
|
1626
|
+
"labelType": "xbrl:label",
|
|
1627
|
+
"value": "Portuguese date day month and year"
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"relatedName": "xbrltt:date-day-monthname-year-ro",
|
|
1631
|
+
"language": "en",
|
|
1632
|
+
"labelType": "xbrl:label",
|
|
1633
|
+
"value": "Romanian date day month and year"
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"relatedName": "xbrltt:date-day-monthname-year-sk",
|
|
1637
|
+
"language": "en",
|
|
1638
|
+
"labelType": "xbrl:label",
|
|
1639
|
+
"value": "Slovak date day month and year"
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
"relatedName": "xbrltt:date-day-monthname-year-sl",
|
|
1643
|
+
"language": "en",
|
|
1644
|
+
"labelType": "xbrl:label",
|
|
1645
|
+
"value": "Slovenian date day month and year"
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"relatedName": "xbrltt:date-day-monthname-year-sv",
|
|
1649
|
+
"language": "en",
|
|
1650
|
+
"labelType": "xbrl:label",
|
|
1651
|
+
"value": "Swedish date day month and year"
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"relatedName": "xbrltt:date-day-monthroman",
|
|
1655
|
+
"language": "en",
|
|
1656
|
+
"labelType": "xbrl:label",
|
|
1657
|
+
"value": "Roman numeral date recurring day and month"
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"relatedName": "xbrltt:date-day-monthroman-year",
|
|
1661
|
+
"language": "en",
|
|
1662
|
+
"labelType": "xbrl:label",
|
|
1663
|
+
"value": "Roman numeral date day month and year"
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
"relatedName": "xbrltt:date-ind-day-monthname-year-hi",
|
|
1667
|
+
"language": "en",
|
|
1668
|
+
"labelType": "xbrl:label",
|
|
1669
|
+
"value": "Hindi date day month and year based on Indian National Calendar"
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"relatedName": "xbrltt:date-jpn-era-year-month",
|
|
1673
|
+
"language": "en",
|
|
1674
|
+
"labelType": "xbrl:label",
|
|
1675
|
+
"value": "Japanese traditional date year and month"
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
"relatedName": "xbrltt:date-jpn-era-year-month-day",
|
|
1679
|
+
"language": "en",
|
|
1680
|
+
"labelType": "xbrl:label",
|
|
1681
|
+
"value": "Japanese traditional date year month and day"
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"relatedName": "xbrltt:date-month-day",
|
|
1685
|
+
"language": "en",
|
|
1686
|
+
"labelType": "xbrl:label",
|
|
1687
|
+
"value": "Numeric date recurring month and day"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"relatedName": "xbrltt:date-month-day-year",
|
|
1691
|
+
"language": "en",
|
|
1692
|
+
"labelType": "xbrl:label",
|
|
1693
|
+
"value": "Numeric date month day and year"
|
|
1694
|
+
},
|
|
1695
|
+
{
|
|
1696
|
+
"relatedName": "xbrltt:date-month-year",
|
|
1697
|
+
"language": "en",
|
|
1698
|
+
"labelType": "xbrl:label",
|
|
1699
|
+
"value": "Numeric date month and year"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"relatedName": "xbrltt:date-monthname-day-en",
|
|
1703
|
+
"language": "en",
|
|
1704
|
+
"labelType": "xbrl:label",
|
|
1705
|
+
"value": "English date recurring month and day"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"relatedName": "xbrltt:date-monthname-day-hu",
|
|
1709
|
+
"language": "en",
|
|
1710
|
+
"labelType": "xbrl:label",
|
|
1711
|
+
"value": "Hungarian date recurring month and day"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"relatedName": "xbrltt:date-monthname-day-lt",
|
|
1715
|
+
"language": "en",
|
|
1716
|
+
"labelType": "xbrl:label",
|
|
1717
|
+
"value": "Lithuanian date recurring month and day"
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
"relatedName": "xbrltt:date-monthname-day-year-en",
|
|
1721
|
+
"language": "en",
|
|
1722
|
+
"labelType": "xbrl:label",
|
|
1723
|
+
"value": "English date month day and year"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"relatedName": "xbrltt:date-monthname-year-bg",
|
|
1727
|
+
"language": "en",
|
|
1728
|
+
"labelType": "xbrl:label",
|
|
1729
|
+
"value": "Bulgarian date month and year"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"relatedName": "xbrltt:date-monthname-year-cs",
|
|
1733
|
+
"language": "en",
|
|
1734
|
+
"labelType": "xbrl:label",
|
|
1735
|
+
"value": "Czech date month and year"
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
"relatedName": "xbrltt:date-monthname-year-cy",
|
|
1739
|
+
"language": "en",
|
|
1740
|
+
"labelType": "xbrl:label",
|
|
1741
|
+
"value": "Welsh date month and year"
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
"relatedName": "xbrltt:date-monthname-year-da",
|
|
1745
|
+
"language": "en",
|
|
1746
|
+
"labelType": "xbrl:label",
|
|
1747
|
+
"value": "Danish date month and year"
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
"relatedName": "xbrltt:date-monthname-year-de",
|
|
1751
|
+
"language": "en",
|
|
1752
|
+
"labelType": "xbrl:label",
|
|
1753
|
+
"value": "German date month and year"
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
"relatedName": "xbrltt:date-monthname-year-el",
|
|
1757
|
+
"language": "en",
|
|
1758
|
+
"labelType": "xbrl:label",
|
|
1759
|
+
"value": "Greek date month and year"
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
"relatedName": "xbrltt:date-monthname-year-en",
|
|
1763
|
+
"language": "en",
|
|
1764
|
+
"labelType": "xbrl:label",
|
|
1765
|
+
"value": "English date month and year"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"relatedName": "xbrltt:date-monthname-year-es",
|
|
1769
|
+
"language": "en",
|
|
1770
|
+
"labelType": "xbrl:label",
|
|
1771
|
+
"value": "Spanish date month and year"
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"relatedName": "xbrltt:date-monthname-year-et",
|
|
1775
|
+
"language": "en",
|
|
1776
|
+
"labelType": "xbrl:label",
|
|
1777
|
+
"value": "Estonian date month and year"
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"relatedName": "xbrltt:date-monthname-year-fi",
|
|
1781
|
+
"language": "en",
|
|
1782
|
+
"labelType": "xbrl:label",
|
|
1783
|
+
"value": "Finnish date month and year"
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
"relatedName": "xbrltt:date-monthname-year-fr",
|
|
1787
|
+
"language": "en",
|
|
1788
|
+
"labelType": "xbrl:label",
|
|
1789
|
+
"value": "French date month and year"
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"relatedName": "xbrltt:date-monthname-year-hi",
|
|
1793
|
+
"language": "en",
|
|
1794
|
+
"labelType": "xbrl:label",
|
|
1795
|
+
"value": "Hindi date month and year, based on Gregorian Calendar"
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
"relatedName": "xbrltt:date-monthname-year-hr",
|
|
1799
|
+
"language": "en",
|
|
1800
|
+
"labelType": "xbrl:label",
|
|
1801
|
+
"value": "Croatian date month and year"
|
|
1802
|
+
},
|
|
1803
|
+
{
|
|
1804
|
+
"relatedName": "xbrltt:date-monthname-year-it",
|
|
1805
|
+
"language": "en",
|
|
1806
|
+
"labelType": "xbrl:label",
|
|
1807
|
+
"value": "Italian date month and year"
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
"relatedName": "xbrltt:date-monthname-year-nl",
|
|
1811
|
+
"language": "en",
|
|
1812
|
+
"labelType": "xbrl:label",
|
|
1813
|
+
"value": "Dutch date month and year"
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
"relatedName": "xbrltt:date-monthname-year-no",
|
|
1817
|
+
"language": "en",
|
|
1818
|
+
"labelType": "xbrl:label",
|
|
1819
|
+
"value": "Norwegian date month and year"
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"relatedName": "xbrltt:date-monthname-year-pl",
|
|
1823
|
+
"language": "en",
|
|
1824
|
+
"labelType": "xbrl:label",
|
|
1825
|
+
"value": "Polish date month and year"
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"relatedName": "xbrltt:date-monthname-year-pt",
|
|
1829
|
+
"language": "en",
|
|
1830
|
+
"labelType": "xbrl:label",
|
|
1831
|
+
"value": "Portuguese date month and year"
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
"relatedName": "xbrltt:date-monthname-year-ro",
|
|
1835
|
+
"language": "en",
|
|
1836
|
+
"labelType": "xbrl:label",
|
|
1837
|
+
"value": "Romanian date month and year"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"relatedName": "xbrltt:date-monthname-year-sk",
|
|
1841
|
+
"language": "en",
|
|
1842
|
+
"labelType": "xbrl:label",
|
|
1843
|
+
"value": "Slovak date month and year"
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"relatedName": "xbrltt:date-monthname-year-sl",
|
|
1847
|
+
"language": "en",
|
|
1848
|
+
"labelType": "xbrl:label",
|
|
1849
|
+
"value": "Slovenian date month and year"
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
"relatedName": "xbrltt:date-monthname-year-sv",
|
|
1853
|
+
"language": "en",
|
|
1854
|
+
"labelType": "xbrl:label",
|
|
1855
|
+
"value": "Swedish date month and year"
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"relatedName": "xbrltt:date-monthroman-year",
|
|
1859
|
+
"language": "en",
|
|
1860
|
+
"labelType": "xbrl:label",
|
|
1861
|
+
"value": "Roman numeral date month and year"
|
|
1862
|
+
},
|
|
1863
|
+
{
|
|
1864
|
+
"relatedName": "xbrltt:date-year-day-monthname-lv",
|
|
1865
|
+
"language": "en",
|
|
1866
|
+
"labelType": "xbrl:label",
|
|
1867
|
+
"value": "Latvian date year day and month"
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"relatedName": "xbrltt:date-year-month",
|
|
1871
|
+
"language": "en",
|
|
1872
|
+
"labelType": "xbrl:label",
|
|
1873
|
+
"value": "Numeric date year and month"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"relatedName": "xbrltt:date-year-month-day",
|
|
1877
|
+
"language": "en",
|
|
1878
|
+
"labelType": "xbrl:label",
|
|
1879
|
+
"value": "Numeric date year month and day"
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
"relatedName": "xbrltt:date-year-monthname-day-hu",
|
|
1883
|
+
"language": "en",
|
|
1884
|
+
"labelType": "xbrl:label",
|
|
1885
|
+
"value": "Hungarian date year month and day"
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
"relatedName": "xbrltt:date-year-monthname-day-lt",
|
|
1889
|
+
"language": "en",
|
|
1890
|
+
"labelType": "xbrl:label",
|
|
1891
|
+
"value": "Lithuanian date year month and day"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"relatedName": "xbrltt:date-year-monthname-en",
|
|
1895
|
+
"language": "en",
|
|
1896
|
+
"labelType": "xbrl:label",
|
|
1897
|
+
"value": "English date year and month"
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"relatedName": "xbrltt:date-year-monthname-hu",
|
|
1901
|
+
"language": "en",
|
|
1902
|
+
"labelType": "xbrl:label",
|
|
1903
|
+
"value": "Hungarian date year and month"
|
|
1904
|
+
},
|
|
1905
|
+
{
|
|
1906
|
+
"relatedName": "xbrltt:date-year-monthname-lt",
|
|
1907
|
+
"language": "en",
|
|
1908
|
+
"labelType": "xbrl:label",
|
|
1909
|
+
"value": "Lithuanian date year and month"
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
"relatedName": "xbrltt:date-year-monthname-lv",
|
|
1913
|
+
"language": "en",
|
|
1914
|
+
"labelType": "xbrl:label",
|
|
1915
|
+
"value": "Latvian date year and month"
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
"relatedName": "xbrltt:fixed-empty",
|
|
1919
|
+
"language": "en",
|
|
1920
|
+
"labelType": "xbrl:label",
|
|
1921
|
+
"value": "Any string"
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"relatedName": "xbrltt:fixed-false",
|
|
1925
|
+
"language": "en",
|
|
1926
|
+
"labelType": "xbrl:label",
|
|
1927
|
+
"value": "Any string"
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"relatedName": "xbrltt:fixed-true",
|
|
1931
|
+
"language": "en",
|
|
1932
|
+
"labelType": "xbrl:label",
|
|
1933
|
+
"value": "Any string"
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"relatedName": "xbrltt:fixed-zero",
|
|
1937
|
+
"language": "en",
|
|
1938
|
+
"labelType": "xbrl:label",
|
|
1939
|
+
"value": "Any string"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"relatedName": "xbrltt:num-comma-decimal",
|
|
1943
|
+
"language": "en",
|
|
1944
|
+
"labelType": "xbrl:label",
|
|
1945
|
+
"value": "Number with comma fraction separator"
|
|
1946
|
+
},
|
|
1947
|
+
{
|
|
1948
|
+
"relatedName": "xbrltt:num-dot-decimal",
|
|
1949
|
+
"language": "en",
|
|
1950
|
+
"labelType": "xbrl:label",
|
|
1951
|
+
"value": "Number with dot fraction separator"
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
"relatedName": "xbrltt:num-unit-decimal",
|
|
1955
|
+
"language": "en",
|
|
1956
|
+
"labelType": "xbrl:label",
|
|
1957
|
+
"value": "Number with unit strings"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"relatedName": "xbrltt:num-comma-decimal-apos",
|
|
1961
|
+
"language": "en",
|
|
1962
|
+
"labelType": "xbrl:label",
|
|
1963
|
+
"value": "Number with comma fraction separator with apostrophes permitted as thousands separator"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"relatedName": "xbrltt:num-dot-decimal-apos",
|
|
1967
|
+
"language": "en",
|
|
1968
|
+
"labelType": "xbrl:label",
|
|
1969
|
+
"value": "Number with dot fraction separator with apostrophes permitted as thousands separator"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"relatedName": "xbrltt:num-unit-decimal-apos",
|
|
1973
|
+
"language": "en",
|
|
1974
|
+
"labelType": "xbrl:label",
|
|
1975
|
+
"value": "Number with unit strings with apostrophes permitted as thousands separator"
|
|
1976
|
+
}
|
|
1977
|
+
],
|
|
1978
|
+
"transforms":[
|
|
1979
|
+
{
|
|
1980
|
+
"name": "xbrltt:date-day-month",
|
|
1981
|
+
"inputDataType": "xbrltt:dateDayMonthType",
|
|
1982
|
+
"outputDataType": "xs:gMonthDay"
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
"name": "xbrltt:date-day-month-year",
|
|
1986
|
+
"inputDataType": "xbrltt:dateDayMonthYearType",
|
|
1987
|
+
"outputDataType": "xs:date"
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
"name": "xbrltt:date-day-monthname-bg",
|
|
1991
|
+
"inputDataType": "xbrltt:dateDayMonthnameBgType",
|
|
1992
|
+
"outputDataType": "xs:gMonthDay"
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
"name": "xbrltt:date-day-monthname-cs",
|
|
1996
|
+
"inputDataType": "xbrltt:dateDayMonthnameCsType",
|
|
1997
|
+
"outputDataType": "xs:gMonthDay"
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"name": "xbrltt:date-day-monthname-cy",
|
|
2001
|
+
"inputDataType": "xbrltt:dateDayMonthnameCyType",
|
|
2002
|
+
"outputDataType": "xs:gMonthDay"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"name": "xbrltt:date-day-monthname-da",
|
|
2006
|
+
"inputDataType": "xbrltt:dateDayMonthnameDaSvType",
|
|
2007
|
+
"outputDataType": "xs:gMonthDay"
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
"name": "xbrltt:date-day-monthname-de",
|
|
2011
|
+
"inputDataType": "xbrltt:dateDayMonthnameDeType",
|
|
2012
|
+
"outputDataType": "xs:gMonthDay"
|
|
2013
|
+
},
|
|
2014
|
+
{
|
|
2015
|
+
"name": "xbrltt:date-day-monthname-el",
|
|
2016
|
+
"inputDataType": "xbrltt:dateDayMonthnameElType",
|
|
2017
|
+
"outputDataType": "xs:gMonthDay"
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
"name": "xbrltt:date-day-monthname-en",
|
|
2021
|
+
"inputDataType": "xbrltt:dateDayMonthnameEnType",
|
|
2022
|
+
"outputDataType": "xs:gMonthDay"
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
"name": "xbrltt:date-day-monthname-es",
|
|
2026
|
+
"inputDataType": "xbrltt:dateDayMonthnameEsType",
|
|
2027
|
+
"outputDataType": "xs:gMonthDay"
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
"name": "xbrltt:date-day-monthname-et",
|
|
2031
|
+
"inputDataType": "xbrltt:dateDayMonthnameEtType",
|
|
2032
|
+
"outputDataType": "xs:gMonthDay"
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
"name": "xbrltt:date-day-monthname-fi",
|
|
2036
|
+
"inputDataType": "xbrltt:dateDayMonthnameFiType",
|
|
2037
|
+
"outputDataType": "xs:gMonthDay"
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"name": "xbrltt:date-day-monthname-fr",
|
|
2041
|
+
"inputDataType": "xbrltt:dateDayMonthnameFrType",
|
|
2042
|
+
"outputDataType": "xs:gMonthDay"
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
"name": "xbrltt:date-day-monthname-hr",
|
|
2046
|
+
"inputDataType": "xbrltt:dateDayMonthnameHrType",
|
|
2047
|
+
"outputDataType": "xs:gMonthDay"
|
|
2048
|
+
},
|
|
2049
|
+
{
|
|
2050
|
+
"name": "xbrltt:date-day-monthname-it",
|
|
2051
|
+
"inputDataType": "xbrltt:dateDayMonthnameItType",
|
|
2052
|
+
"outputDataType": "xs:gMonthDay"
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
"name": "xbrltt:date-day-monthname-lv",
|
|
2056
|
+
"inputDataType": "xbrltt:dateDayMonthnameLvType",
|
|
2057
|
+
"outputDataType": "xs:gMonthDay"
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
"name": "xbrltt:date-day-monthname-nl",
|
|
2061
|
+
"inputDataType": "xbrltt:dateDayMonthnameNlType",
|
|
2062
|
+
"outputDataType": "xs:gMonthDay"
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
"name": "xbrltt:date-day-monthname-no",
|
|
2066
|
+
"inputDataType": "xbrltt:dateDayMonthnameNoType",
|
|
2067
|
+
"outputDataType": "xs:gMonthDay"
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
"name": "xbrltt:date-day-monthname-pl",
|
|
2071
|
+
"inputDataType": "xbrltt:dateDayMonthnamePlType",
|
|
2072
|
+
"outputDataType": "xs:gMonthDay"
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
"name": "xbrltt:date-day-monthname-pt",
|
|
2076
|
+
"inputDataType": "xbrltt:dateDayMonthnamePtType",
|
|
2077
|
+
"outputDataType": "xs:gMonthDay"
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
"name": "xbrltt:date-day-monthname-ro",
|
|
2081
|
+
"inputDataType": "xbrltt:dateDayMonthnameRoType",
|
|
2082
|
+
"outputDataType": "xs:gMonthDay"
|
|
2083
|
+
},
|
|
2084
|
+
{
|
|
2085
|
+
"name": "xbrltt:date-day-monthname-sk",
|
|
2086
|
+
"inputDataType": "xbrltt:dateDayMonthnameSkType",
|
|
2087
|
+
"outputDataType": "xs:gMonthDay"
|
|
2088
|
+
},
|
|
2089
|
+
{
|
|
2090
|
+
"name": "xbrltt:date-day-monthname-sl",
|
|
2091
|
+
"inputDataType": "xbrltt:dateDayMonthnameSlType",
|
|
2092
|
+
"outputDataType": "xs:gMonthDay"
|
|
2093
|
+
},
|
|
2094
|
+
{
|
|
2095
|
+
"name": "xbrltt:date-day-monthname-sv",
|
|
2096
|
+
"inputDataType": "xbrltt:dateDayMonthnameDaSvType",
|
|
2097
|
+
"outputDataType": "xs:gMonthDay"
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
"name": "xbrltt:date-day-monthname-year-bg",
|
|
2101
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearBgType",
|
|
2102
|
+
"outputDataType": "xs:date"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"name": "xbrltt:date-day-monthname-year-cs",
|
|
2106
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearCsType",
|
|
2107
|
+
"outputDataType": "xs:date"
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
"name": "xbrltt:date-day-monthname-year-cy",
|
|
2111
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearCyType",
|
|
2112
|
+
"outputDataType": "xs:date"
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"name": "xbrltt:date-day-monthname-year-da",
|
|
2116
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearDaSvType",
|
|
2117
|
+
"outputDataType": "xs:date"
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
"name": "xbrltt:date-day-monthname-year-de",
|
|
2121
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearDeType",
|
|
2122
|
+
"outputDataType": "xs:date"
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
"name": "xbrltt:date-day-monthname-year-el",
|
|
2126
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearElType",
|
|
2127
|
+
"outputDataType": "xs:date"
|
|
2128
|
+
},
|
|
2129
|
+
{
|
|
2130
|
+
"name": "xbrltt:date-day-monthname-year-en",
|
|
2131
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearEnType",
|
|
2132
|
+
"outputDataType": "xs:date"
|
|
2133
|
+
},
|
|
2134
|
+
{
|
|
2135
|
+
"name": "xbrltt:date-day-monthname-year-es",
|
|
2136
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearEsType",
|
|
2137
|
+
"outputDataType": "xs:date"
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"name": "xbrltt:date-day-monthname-year-et",
|
|
2141
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearEtType",
|
|
2142
|
+
"outputDataType": "xs:date"
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
"name": "xbrltt:date-day-monthname-year-fi",
|
|
2146
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearFiType",
|
|
2147
|
+
"outputDataType": "xs:date"
|
|
2148
|
+
},
|
|
2149
|
+
{
|
|
2150
|
+
"name": "xbrltt:date-day-monthname-year-fr",
|
|
2151
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearFrType",
|
|
2152
|
+
"outputDataType": "xs:date"
|
|
2153
|
+
},
|
|
2154
|
+
{
|
|
2155
|
+
"name": "xbrltt:date-day-monthname-year-hi",
|
|
2156
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearHiType",
|
|
2157
|
+
"outputDataType": "xs:date"
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
"name": "xbrltt:date-day-monthname-year-hr",
|
|
2161
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearHrType",
|
|
2162
|
+
"outputDataType": "xs:date"
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
"name": "xbrltt:date-day-monthname-year-it",
|
|
2166
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearItType",
|
|
2167
|
+
"outputDataType": "xs:date"
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"name": "xbrltt:date-day-monthname-year-nl",
|
|
2171
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearNlType",
|
|
2172
|
+
"outputDataType": "xs:date"
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
"name": "xbrltt:date-day-monthname-year-no",
|
|
2176
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearNoType",
|
|
2177
|
+
"outputDataType": "xs:date"
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"name": "xbrltt:date-day-monthname-year-pl",
|
|
2181
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearPlType",
|
|
2182
|
+
"outputDataType": "xs:date"
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
"name": "xbrltt:date-day-monthname-year-pt",
|
|
2186
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearPtType",
|
|
2187
|
+
"outputDataType": "xs:date"
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
"name": "xbrltt:date-day-monthname-year-ro",
|
|
2191
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearRoType",
|
|
2192
|
+
"outputDataType": "xs:date"
|
|
2193
|
+
},
|
|
2194
|
+
{
|
|
2195
|
+
"name": "xbrltt:date-day-monthname-year-sk",
|
|
2196
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearSkType",
|
|
2197
|
+
"outputDataType": "xs:date"
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"name": "xbrltt:date-day-monthname-year-sl",
|
|
2201
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearSlType",
|
|
2202
|
+
"outputDataType": "xs:date"
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"name": "xbrltt:date-day-monthname-year-sv",
|
|
2206
|
+
"inputDataType": "xbrltt:dateDayMonthnameYearDaSvType",
|
|
2207
|
+
"outputDataType": "xs:date"
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
"name": "xbrltt:date-ind-day-monthname-year-hi",
|
|
2211
|
+
"inputDataType": "xbrltt:dateIndDayMonthnameYearHiType",
|
|
2212
|
+
"outputDataType": "xs:date"
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"name": "xbrltt:date-day-monthroman",
|
|
2216
|
+
"inputDataType": "xbrltt:dateDayMonthromanType",
|
|
2217
|
+
"outputDataType": "xs:gMonthDay"
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
"name": "xbrltt:date-day-monthroman-year",
|
|
2221
|
+
"inputDataType": "xbrltt:dateDayMonthromanYearType",
|
|
2222
|
+
"outputDataType": "xs:date"
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
"name": "xbrltt:date-jpn-era-year-month",
|
|
2226
|
+
"inputDataType": "xbrltt:dateJpnEraYearMonthType",
|
|
2227
|
+
"outputDataType": "xs:gYearMonth"
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
"name": "xbrltt:date-jpn-era-year-month-day",
|
|
2231
|
+
"inputDataType": "xbrltt:dateJpnEraYearMonthDayType",
|
|
2232
|
+
"outputDataType": "xs:date"
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
"name": "xbrltt:date-month-day",
|
|
2236
|
+
"inputDataType": "xbrltt:dateMonthDayType",
|
|
2237
|
+
"outputDataType": "xs:gMonthDay"
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
"name": "xbrltt:date-month-day-year",
|
|
2241
|
+
"inputDataType": "xbrltt:dateMonthDayYearType",
|
|
2242
|
+
"outputDataType": "xs:date"
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
"name": "xbrltt:date-month-year",
|
|
2246
|
+
"inputDataType": "xbrltt:dateMonthYearType",
|
|
2247
|
+
"outputDataType": "xs:gYearMonth"
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
"name": "xbrltt:date-monthname-day-en",
|
|
2251
|
+
"inputDataType": "xbrltt:dateMonthnameDayEnType",
|
|
2252
|
+
"outputDataType": "xs:gMonthDay"
|
|
2253
|
+
},
|
|
2254
|
+
{
|
|
2255
|
+
"name": "xbrltt:date-monthname-day-hu",
|
|
2256
|
+
"inputDataType": "xbrltt:dateMonthnameDayHuType",
|
|
2257
|
+
"outputDataType": "xs:gMonthDay"
|
|
2258
|
+
},
|
|
2259
|
+
{
|
|
2260
|
+
"name": "xbrltt:date-monthname-day-lt",
|
|
2261
|
+
"inputDataType": "xbrltt:dateMonthnameDayLtType",
|
|
2262
|
+
"outputDataType": "xs:gMonthDay"
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
"name": "xbrltt:date-monthname-day-year-en",
|
|
2266
|
+
"inputDataType": "xbrltt:dateMonthnameDayYearEnType",
|
|
2267
|
+
"outputDataType": "xs:date"
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
"name": "xbrltt:date-monthname-year-bg",
|
|
2271
|
+
"inputDataType": "xbrltt:dateMonthnameYearBgType",
|
|
2272
|
+
"outputDataType": "xs:gYearMonth"
|
|
2273
|
+
},
|
|
2274
|
+
{
|
|
2275
|
+
"name": "xbrltt:date-monthname-year-cs",
|
|
2276
|
+
"inputDataType": "xbrltt:dateMonthnameYearCsType",
|
|
2277
|
+
"outputDataType": "xs:gYearMonth"
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"name": "xbrltt:date-monthname-year-cy",
|
|
2281
|
+
"inputDataType": "xbrltt:dateMonthnameYearCyType",
|
|
2282
|
+
"outputDataType": "xs:gYearMonth"
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"name": "xbrltt:date-monthname-year-da",
|
|
2286
|
+
"inputDataType": "xbrltt:dateMonthnameYearDaSvType",
|
|
2287
|
+
"outputDataType": "xs:gYearMonth"
|
|
2288
|
+
},
|
|
2289
|
+
{
|
|
2290
|
+
"name": "xbrltt:date-monthname-year-de",
|
|
2291
|
+
"inputDataType": "xbrltt:dateMonthnameYearDeType",
|
|
2292
|
+
"outputDataType": "xs:gYearMonth"
|
|
2293
|
+
},
|
|
2294
|
+
{
|
|
2295
|
+
"name": "xbrltt:date-monthname-year-el",
|
|
2296
|
+
"inputDataType": "xbrltt:dateMonthnameYearElType",
|
|
2297
|
+
"outputDataType": "xs:gYearMonth"
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"name": "xbrltt:date-monthname-year-en",
|
|
2301
|
+
"inputDataType": "xbrltt:dateMonthnameYearEnType",
|
|
2302
|
+
"outputDataType": "xs:gYearMonth"
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"name": "xbrltt:date-monthname-year-es",
|
|
2306
|
+
"inputDataType": "xbrltt:dateMonthnameYearEsType",
|
|
2307
|
+
"outputDataType": "xs:gYearMonth"
|
|
2308
|
+
},
|
|
2309
|
+
{
|
|
2310
|
+
"name": "xbrltt:date-monthname-year-et",
|
|
2311
|
+
"inputDataType": "xbrltt:dateMonthnameYearEtType",
|
|
2312
|
+
"outputDataType": "xs:gYearMonth"
|
|
2313
|
+
},
|
|
2314
|
+
{
|
|
2315
|
+
"name": "xbrltt:date-monthname-year-fi",
|
|
2316
|
+
"inputDataType": "xbrltt:dateMonthnameYearFiType",
|
|
2317
|
+
"outputDataType": "xs:gYearMonth"
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
"name": "xbrltt:date-monthname-year-fr",
|
|
2321
|
+
"inputDataType": "xbrltt:dateMonthnameYearFrType",
|
|
2322
|
+
"outputDataType": "xs:gYearMonth"
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
"name": "xbrltt:date-monthname-year-hi",
|
|
2326
|
+
"inputDataType": "xbrltt:dateMonthnameYearHiType",
|
|
2327
|
+
"outputDataType": "xs:gYearMonth"
|
|
2328
|
+
},
|
|
2329
|
+
{
|
|
2330
|
+
"name": "xbrltt:date-monthname-year-hr",
|
|
2331
|
+
"inputDataType": "xbrltt:dateMonthnameYearHrType",
|
|
2332
|
+
"outputDataType": "xs:gYearMonth"
|
|
2333
|
+
},
|
|
2334
|
+
{
|
|
2335
|
+
"name": "xbrltt:date-monthname-year-it",
|
|
2336
|
+
"inputDataType": "xbrltt:dateMonthnameYearItType",
|
|
2337
|
+
"outputDataType": "xs:gYearMonth"
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"name": "xbrltt:date-monthname-year-nl",
|
|
2341
|
+
"inputDataType": "xbrltt:dateMonthnameYearNlType",
|
|
2342
|
+
"outputDataType": "xs:gYearMonth"
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
"name": "xbrltt:date-monthname-year-no",
|
|
2346
|
+
"inputDataType": "xbrltt:dateMonthnameYearNoType",
|
|
2347
|
+
"outputDataType": "xs:gYearMonth"
|
|
2348
|
+
},
|
|
2349
|
+
{
|
|
2350
|
+
"name": "xbrltt:date-monthname-year-pl",
|
|
2351
|
+
"inputDataType": "xbrltt:dateMonthnameYearPlType",
|
|
2352
|
+
"outputDataType": "xs:gYearMonth"
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
"name": "xbrltt:date-monthname-year-pt",
|
|
2356
|
+
"inputDataType": "xbrltt:dateMonthnameYearPtType",
|
|
2357
|
+
"outputDataType": "xs:gYearMonth"
|
|
2358
|
+
},
|
|
2359
|
+
{
|
|
2360
|
+
"name": "xbrltt:date-monthname-year-ro",
|
|
2361
|
+
"inputDataType": "xbrltt:dateMonthnameYearRoType",
|
|
2362
|
+
"outputDataType": "xs:gYearMonth"
|
|
2363
|
+
},
|
|
2364
|
+
{
|
|
2365
|
+
"name": "xbrltt:date-monthname-year-sk",
|
|
2366
|
+
"inputDataType": "xbrltt:dateMonthnameYearSkType",
|
|
2367
|
+
"outputDataType": "xs:gYearMonth"
|
|
2368
|
+
},
|
|
2369
|
+
{
|
|
2370
|
+
"name": "xbrltt:date-monthname-year-sl",
|
|
2371
|
+
"inputDataType": "xbrltt:dateMonthnameYearSlType",
|
|
2372
|
+
"outputDataType": "xs:gYearMonth"
|
|
2373
|
+
},
|
|
2374
|
+
{
|
|
2375
|
+
"name": "xbrltt:date-monthname-year-sv",
|
|
2376
|
+
"inputDataType": "xbrltt:dateMonthnameYearDaSvType",
|
|
2377
|
+
"outputDataType": "xs:gYearMonth"
|
|
2378
|
+
},
|
|
2379
|
+
{
|
|
2380
|
+
"name": "xbrltt:date-monthroman-year",
|
|
2381
|
+
"inputDataType": "xbrltt:dateMonthromanYearType",
|
|
2382
|
+
"outputDataType": "xs:gYearMonth"
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
"name": "xbrltt:date-year-day-monthname-lv",
|
|
2386
|
+
"inputDataType": "xbrltt:dateYearDayMonthnameLvType",
|
|
2387
|
+
"outputDataType": "xs:date"
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
"name": "xbrltt:date-year-month",
|
|
2391
|
+
"inputDataType": "xbrltt:dateYearMonthType",
|
|
2392
|
+
"outputDataType": "xs:gYearMonth"
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
"name": "xbrltt:date-year-month-day",
|
|
2396
|
+
"inputDataType": "xbrltt:dateYearMonthDayType",
|
|
2397
|
+
"outputDataType": "xs:date"
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"name": "xbrltt:date-year-monthname-day-hu",
|
|
2401
|
+
"inputDataType": "xbrltt:dateYearMonthnameDayHuType",
|
|
2402
|
+
"outputDataType": "xs:date"
|
|
2403
|
+
},
|
|
2404
|
+
{
|
|
2405
|
+
"name": "xbrltt:date-year-monthname-day-lt",
|
|
2406
|
+
"inputDataType": "xbrltt:dateYearMonthnameDayLtType",
|
|
2407
|
+
"outputDataType": "xs:date"
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
"name": "xbrltt:date-year-monthname-en",
|
|
2411
|
+
"inputDataType": "xbrltt:dateYearMonthnameEnType",
|
|
2412
|
+
"outputDataType": "xs:gYearMonth"
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"name": "xbrltt:date-year-monthname-hu",
|
|
2416
|
+
"inputDataType": "xbrltt:dateYearMonthnameHuType",
|
|
2417
|
+
"outputDataType": "xs:gYearMonth"
|
|
2418
|
+
},
|
|
2419
|
+
{
|
|
2420
|
+
"name": "xbrltt:date-year-monthname-lt",
|
|
2421
|
+
"inputDataType": "xbrltt:dateYearMonthnameLtType",
|
|
2422
|
+
"outputDataType": "xs:gYearMonth"
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
"name": "xbrltt:date-year-monthname-lv",
|
|
2426
|
+
"inputDataType": "xbrltt:dateYearMonthnameLvType",
|
|
2427
|
+
"outputDataType": "xs:gYearMonth"
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"name": "xbrltt:fixed-empty",
|
|
2431
|
+
"inputDataType": "xs:string",
|
|
2432
|
+
"outputDataType": "xbrltt:fixedEmptyType"
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
"name": "xbrltt:fixed-false",
|
|
2436
|
+
"inputDataType": "xs:string",
|
|
2437
|
+
"outputDataType": "xbrltt:fixedFalseType"
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
"name": "xbrltt:fixed-true",
|
|
2441
|
+
"inputDataType": "xs:string",
|
|
2442
|
+
"outputDataType": "xbrltt:fixedTrueType"
|
|
2443
|
+
},
|
|
2444
|
+
{
|
|
2445
|
+
"name": "xbrltt:fixed-zero",
|
|
2446
|
+
"inputDataType": "xs:string",
|
|
2447
|
+
"outputDataType": "xbrltt:fixedZeroType"
|
|
2448
|
+
},
|
|
2449
|
+
{
|
|
2450
|
+
"name": "xbrltt:num-comma-decimal",
|
|
2451
|
+
"inputDataType": "xbrltt:numCommaDecimalType",
|
|
2452
|
+
"outputDataType": "xbrltt:nonNegativeDecimalType"
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
"name": "xbrltt:num-dot-decimal",
|
|
2456
|
+
"inputDataType": "xbrltt:numDotDecimalType",
|
|
2457
|
+
"outputDataType": "xbrltt:nonNegativeDecimalType"
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"name": "xbrltt:num-unit-decimal",
|
|
2461
|
+
"inputDataType": "xbrltt:numUnitDecimalType",
|
|
2462
|
+
"outputDataType": "xbrltt:nonNegativeDecimalType"
|
|
2463
|
+
},
|
|
2464
|
+
{
|
|
2465
|
+
"name": "xbrltt:num-comma-decimal-apos",
|
|
2466
|
+
"inputDataType": "xbrltt:numCommaDecimalAposType",
|
|
2467
|
+
"outputDataType": "xbrltt:nonNegativeDecimalType"
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
"name": "xbrltt:num-dot-decimal-apos",
|
|
2471
|
+
"inputDataType": "xbrltt:numDotDecimalType",
|
|
2472
|
+
"outputDataType": "xbrltt:nonNegativeAposType"
|
|
2473
|
+
},
|
|
2474
|
+
{
|
|
2475
|
+
"name": "xbrltt:num-unit-decimal-apos",
|
|
2476
|
+
"inputDataType": "xbrltt:numUnitDecimalAposType",
|
|
2477
|
+
"outputDataType": "xbrltt:nonNegativeDecimalType"
|
|
2478
|
+
}
|
|
2479
|
+
]
|
|
2480
|
+
}
|
|
2481
|
+
}
|