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
|
@@ -1,2886 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"ASU201501TransitionAbstract": "2019-01-31",
|
|
3
|
-
"ASU201517TransitionAbstract": "2022",
|
|
4
|
-
"ASU201814TransitionAbstract": "2023",
|
|
5
|
-
"AcceleratedShareRepurchasesDescriptionOfAdjustmentToInitialPricePaid": "2016-01-31",
|
|
6
|
-
"AccountingChangesAndErrorCorrectionsTextBlock": "2021",
|
|
7
|
-
"AccountingChangesTextBlock": "2021",
|
|
8
|
-
"AccountingGuidanceMember": "2021",
|
|
9
|
-
"AccountingStandardsUpdate201026Member": "2023",
|
|
10
|
-
"AccountingStandardsUpdate201104Member": "2023",
|
|
11
|
-
"AccountingStandardsUpdate201201Member": "2017-01-31",
|
|
12
|
-
"AccountingStandardsUpdate201204Member": "2017-01-31",
|
|
13
|
-
"AccountingStandardsUpdate201205Member": "2017-01-31",
|
|
14
|
-
"AccountingStandardsUpdate201207Member": "2017-01-31",
|
|
15
|
-
"AccountingStandardsUpdate201304Member": "2017-01-31",
|
|
16
|
-
"AccountingStandardsUpdate201307Member": "2023",
|
|
17
|
-
"AccountingStandardsUpdate201401Member": "2019-01-31",
|
|
18
|
-
"AccountingStandardsUpdate201404Member": "2019-01-31",
|
|
19
|
-
"AccountingStandardsUpdate201405Member": "2019-01-31",
|
|
20
|
-
"AccountingStandardsUpdate201409CumulativeEffectPeriodOfAdoptionMember": "2022",
|
|
21
|
-
"AccountingStandardsUpdate201409RetrospectiveMember": "2022",
|
|
22
|
-
"AccountingStandardsUpdate201411Member": "2019-01-31",
|
|
23
|
-
"AccountingStandardsUpdate201412Member": "2019-01-31",
|
|
24
|
-
"AccountingStandardsUpdate201413Member": "2019-01-31",
|
|
25
|
-
"AccountingStandardsUpdate201414Member": "2019-01-31",
|
|
26
|
-
"AccountingStandardsUpdate201416Member": "2019-01-31",
|
|
27
|
-
"AccountingStandardsUpdate201501Member": "2019-01-31",
|
|
28
|
-
"AccountingStandardsUpdate201502Member": "2021",
|
|
29
|
-
"AccountingStandardsUpdate201503Member": "2019-01-31",
|
|
30
|
-
"AccountingStandardsUpdate201504Member": "2019-01-31",
|
|
31
|
-
"AccountingStandardsUpdate201505Member": "2019-01-31",
|
|
32
|
-
"AccountingStandardsUpdate201506Member": "2019-01-31",
|
|
33
|
-
"AccountingStandardsUpdate201507Member": "2020",
|
|
34
|
-
"AccountingStandardsUpdate201510Member": "2020",
|
|
35
|
-
"AccountingStandardsUpdate201511Member": "2019-01-31",
|
|
36
|
-
"AccountingStandardsUpdate201513Member": "2019-01-31",
|
|
37
|
-
"AccountingStandardsUpdate201516Member": "2019-01-31",
|
|
38
|
-
"AccountingStandardsUpdate201517Member": "2022",
|
|
39
|
-
"AccountingStandardsUpdate201601Member": "2023",
|
|
40
|
-
"AccountingStandardsUpdate201604CumulativeEffectPeriodOfAdoptionMember": "2021",
|
|
41
|
-
"AccountingStandardsUpdate201604Member": "2023",
|
|
42
|
-
"AccountingStandardsUpdate201604RetrospectiveMember": "2021",
|
|
43
|
-
"AccountingStandardsUpdate201605Member": "2021",
|
|
44
|
-
"AccountingStandardsUpdate201606Member": "2022",
|
|
45
|
-
"AccountingStandardsUpdate201607Member": "2020",
|
|
46
|
-
"AccountingStandardsUpdate201609Member": "2022",
|
|
47
|
-
"AccountingStandardsUpdate201615Member": "2022",
|
|
48
|
-
"AccountingStandardsUpdate201615ProspectiveMember": "2021",
|
|
49
|
-
"AccountingStandardsUpdate201615RetrospectiveMember": "2021",
|
|
50
|
-
"AccountingStandardsUpdate201616Member": "2020",
|
|
51
|
-
"AccountingStandardsUpdate201617Member": "2021",
|
|
52
|
-
"AccountingStandardsUpdate201618Member": "2022",
|
|
53
|
-
"AccountingStandardsUpdate201619Member": "2020",
|
|
54
|
-
"AccountingStandardsUpdate201701Member": "2021",
|
|
55
|
-
"AccountingStandardsUpdate201707Member": "2022",
|
|
56
|
-
"AccountingStandardsUpdate201709Member": "2021",
|
|
57
|
-
"AccountingStandardsUpdate201710CumulativeEffectPeriodOfAdoptionMember": "2022",
|
|
58
|
-
"AccountingStandardsUpdate201710RetrospectiveMember": "2022",
|
|
59
|
-
"AccountingStandardsUpdate201711CumulativeEffectPeriodOfAdoptionMember": "2022",
|
|
60
|
-
"AccountingStandardsUpdate201711RetrospectiveMember": "2022",
|
|
61
|
-
"AccountingStandardsUpdate201715Member": "2023",
|
|
62
|
-
"AccountingStandardsUpdate201802Member": "2023",
|
|
63
|
-
"AccountingStandardsUpdate201804Member": "2023",
|
|
64
|
-
"AccountingStandardsUpdate201808ModifiedProspectiveMember": "2022",
|
|
65
|
-
"AccountingStandardsUpdate201808RetrospectiveMember": "2022",
|
|
66
|
-
"AccountingStandardsUpdate201809CumulativeEffectPeriodOfAdoptionMember": "2022",
|
|
67
|
-
"AccountingStandardsUpdate201809Member": "2023",
|
|
68
|
-
"AccountingStandardsUpdate201809RetrospectiveMember": "2022",
|
|
69
|
-
"AccountingStandardsUpdate201813Member": "2022",
|
|
70
|
-
"AccountingStandardsUpdate201814Member": "2023",
|
|
71
|
-
"AccountingStandardsUpdate201815ProspectiveMember": "2023",
|
|
72
|
-
"AccountingStandardsUpdate201815RetrospectiveMember": "2023",
|
|
73
|
-
"AccountingStandardsUpdate201816Member": "2023",
|
|
74
|
-
"AccountingStandardsUpdate201817Member": "2023",
|
|
75
|
-
"AccountingStandardsUpdate201818ApplicationFixedList": "2023",
|
|
76
|
-
"AccountingStandardsUpdate201903Member": "2022",
|
|
77
|
-
"AccountingStandardsUpdate201904ProspectiveForDerivativesAndHedgingMember": "2022",
|
|
78
|
-
"AccountingStandardsUpdate201904RetrospectiveForDerivativesAndHedgingMember": "2022",
|
|
79
|
-
"AccountingStandardsUpdate201908AdoptionFiscalYearAfterAccountingStandardsUpdate201807CumulativeEffectPeriodOfAdoptionMember": "2022",
|
|
80
|
-
"AccountingStandardsUpdate201908AdoptionFiscalYearAfterAccountingStandardsUpdate201807RetrospectiveToAccountingStandardsUpdate201807Member": "2022",
|
|
81
|
-
"AccountingStandardsUpdate201908AdoptionSameFiscalYearAsAccountingStandardsUpdate201807CumulativeEffectPeriodOfAdoptionMember": "2022",
|
|
82
|
-
"AccountingStandardsUpdate202004Member": "2023",
|
|
83
|
-
"AccountingStandardsUpdate202009Member": "2022",
|
|
84
|
-
"AccountsPayableRelatedPartiesCurrent": "2023",
|
|
85
|
-
"AccountsPayableRelatedPartiesCurrentAndNoncurrent": "2023",
|
|
86
|
-
"AccountsPayableRelatedPartiesNoncurrent": "2023",
|
|
87
|
-
"AccountsReceivableAdditionalNarrativeDisclosure": "2019-01-31",
|
|
88
|
-
"AccountsReceivableBeforeAllowanceForCreditLossNoncurrentAbstract": "2021",
|
|
89
|
-
"AccountsReceivableNoncurrentNotPastDue": "2021",
|
|
90
|
-
"AccountsReceivableNoncurrentPastDue": "2021",
|
|
91
|
-
"AccountsReceivableRelatedParties": "2023",
|
|
92
|
-
"AccountsReceivableRelatedPartiesCurrent": "2023",
|
|
93
|
-
"AccountsReceivableRelatedPartiesNoncurrent": "2023",
|
|
94
|
-
"AccretionOfDiscount": "2016-01-31",
|
|
95
|
-
"AccrualForEnvironmentalLossContingenciesBalanceSheetClassificationAbstract": "2022",
|
|
96
|
-
"AccrualForEnvironmentalLossContingenciesGrossRollingMaturityAbstract": "2016-01-31",
|
|
97
|
-
"AccrualForEnvironmentalLossContingenciesIncreaseDecreaseForCurrencyTranslation": "2016-01-31",
|
|
98
|
-
"AccrualForEnvironmentalLossContingenciesPayments": "2016-01-31",
|
|
99
|
-
"AccrualForEnvironmentalLossContingenciesProvisionForNewLosses": "2016-01-31",
|
|
100
|
-
"AccrualForEnvironmentalLossContingenciesRollingMaturityAbstract": "2016-01-31",
|
|
101
|
-
"AccrualForEnvironmentalLossContingenciesUndiscountedDueAfterRollingYearFive": "2016-01-31",
|
|
102
|
-
"AccrualForEnvironmentalLossContingenciesUndiscountedDueInNextRollingTwelveMonths": "2016-01-31",
|
|
103
|
-
"AccrualForEnvironmentalLossContingenciesUndiscountedDueInRollingYearFive": "2016-01-31",
|
|
104
|
-
"AccrualForEnvironmentalLossContingenciesUndiscountedDueInRollingYearFour": "2016-01-31",
|
|
105
|
-
"AccrualForEnvironmentalLossContingenciesUndiscountedDueInRollingYearThree": "2016-01-31",
|
|
106
|
-
"AccrualForEnvironmentalLossContingenciesUndiscountedDueInRollingYearTwo": "2016-01-31",
|
|
107
|
-
"AccruedLiabilitiesForUnredeeemedGiftCards": "2023",
|
|
108
|
-
"AccumulatedComprehensiveIncomeAfterAdoptionOfNewAccountingPrinciple": "2016-01-31",
|
|
109
|
-
"AdditionalChargesForCommodityAccounts": "2019-01-31",
|
|
110
|
-
"AdditionalChargesForSecuritiesAccounts": "2019-01-31",
|
|
111
|
-
"AdditionalLiabilityLongDurationInsurancePeriodIncreaseDecreaseAbstract": "2022",
|
|
112
|
-
"AdjustmentForLongTermIntercompanyTransactionsTaxBenefitExpense": "2016-01-31",
|
|
113
|
-
"AdjustmentToAdditionalPaidInCapitalIncomeTaxEffectFromShareBasedCompensationNet": "2022",
|
|
114
|
-
"AdjustmentToAdditionalPaidInCapitalIncomeTaxEffectFromShareBasedCompensationNetAbstract": "2022",
|
|
115
|
-
"AdjustmentsForNewAccountingPrincipleEarlyAdoptionMember": "2021",
|
|
116
|
-
"AdjustmentsOfRetainedEarningsAndAccumulatedOtherComprehensiveIncomeLossDueToApplicationOfMeasurementDateProvisionsAbstract": "2016-01-31",
|
|
117
|
-
"AdjustmentsToAdditionalPaidInCapitalCounterpartyDefaultPeriodOfDefaultEffectOnEquity": "2016-01-31",
|
|
118
|
-
"AdjustmentsToAdditionalPaidInCapitalCounterpartyDefaultSubsequentPeriodChangesEffectOnEquity": "2016-01-31",
|
|
119
|
-
"AdjustmentsToAdditionalPaidInCapitalIncomeTaxDeficiencyFromShareBasedCompensation": "2022",
|
|
120
|
-
"AdjustmentsToAdditionalPaidInCapitalTaxEffectFromShareBasedCompensation": "2022",
|
|
121
|
-
"AdjustmentsToAdditionalPaidInCapitalTerminationOfSCorporationElection": "2016-01-31",
|
|
122
|
-
"AdministrativeServicesRevenue": "2018-01-31",
|
|
123
|
-
"AdmissionsRevenue": "2018-01-31",
|
|
124
|
-
"AdoptionOfSFAS158EmployersAccountingForDefinedBenefitPensionAndOtherPostretirementPlansAbstract": "2017-01-31",
|
|
125
|
-
"AdvancePaymentsByBorrowersForTaxesAndInsuranceSummary": "2016-01-31",
|
|
126
|
-
"AdvertisingBarterTransactions": "2022",
|
|
127
|
-
"AdvertisingBarterTransactionsIndeterminableFairValueDisclosure": "2022",
|
|
128
|
-
"AdvertisingBarterTransactionsPolicy": "2022",
|
|
129
|
-
"AdvertisingCostPolicyExpensedAdvertisingCost": "2019-01-31",
|
|
130
|
-
"AdvertisingRevenue": "2018-01-31",
|
|
131
|
-
"AdvertisingRevenueCost": "2018-01-31",
|
|
132
|
-
"AgedFailsToDeliver": "2019-01-31",
|
|
133
|
-
"AgedShortSecurityDifferences": "2019-01-31",
|
|
134
|
-
"AggregateIndebtedness": "2019-01-31",
|
|
135
|
-
"AggregateIndebtednessAbstract": "2019-01-31",
|
|
136
|
-
"AgricultureAbstract": "2022",
|
|
137
|
-
"AirlineProductsAndServicesAbstract": "2022",
|
|
138
|
-
"AirlineProductsAndServicesTable": "2022",
|
|
139
|
-
"AllowanceForCreditLossesChangeInMethodOfCalculatingImpairment": "2019-01-31",
|
|
140
|
-
"AllowanceForDoubtfulAccountsContinuingOperationsMember": "2018-01-31",
|
|
141
|
-
"AllowanceForDoubtfulAccountsCurrentMember": "2018-01-31",
|
|
142
|
-
"AllowanceForDoubtfulAccountsDiscontinuedOperationsMember": "2018-01-31",
|
|
143
|
-
"AllowanceForDoubtfulAccountsMember": "2018-01-31",
|
|
144
|
-
"AllowanceForDoubtfulAccountsNoncurrentMember": "2018-01-31",
|
|
145
|
-
"AllowanceForFranchiseReceivablesMember": "2018-01-31",
|
|
146
|
-
"AllowanceForLoansAndLeasesReceivableMember": "2018-01-31",
|
|
147
|
-
"AllowanceForPromotionsMember": "2018-01-31",
|
|
148
|
-
"AllowanceForSalesReturnsMember": "2018-01-31",
|
|
149
|
-
"AllowanceForTradeReceivablesMember": "2018-01-31",
|
|
150
|
-
"AllowanceForUncollectibleAccountsTimeSharingReceivablesSoldWithRecourseMember": "2018-01-31",
|
|
151
|
-
"AllowanceForUncollectibleAccountsTimeSharingTransactionsMember": "2018-01-31",
|
|
152
|
-
"AlternativeInvestmentsFairValueDisclosure": "2018-01-31",
|
|
153
|
-
"AociGainLossDebtSecuritiesAvailableForSaleWithAllowanceForCreditLossAbstract": "2021",
|
|
154
|
-
"AociGainLossDebtSecuritiesAvailableForSaleWithoutAllowanceForCreditLossAbstract": "2021",
|
|
155
|
-
"ApplicationOfRecognitionProvisionsOfSFAS158IncrementalEffectsOnBalanceSheetAbstract": "2017-01-31",
|
|
156
|
-
"AssetManagementCosts": "2018-01-31",
|
|
157
|
-
"AssetManagementFees1": "2018-01-31",
|
|
158
|
-
"AssetManagementFeesAbstract": "2018-01-31",
|
|
159
|
-
"AssetRecoveryDamagedPropertyCostsCurrent": "2016-01-31",
|
|
160
|
-
"AssetRetirementObligationForeignCurrencyTranslation": "2016-01-31",
|
|
161
|
-
"AssetRetirementObligationsLiabilityNotRecognized": "2022",
|
|
162
|
-
"AssetsAndAssociatedLiabilitiesAccountedForAsSecuredBorrowingsByTypeAxis": "2016-01-31",
|
|
163
|
-
"AssetsFairValueDisclosureNonrecurring": "2018-01-31",
|
|
164
|
-
"AssetsFairValueDisclosureRecurring": "2018-01-31",
|
|
165
|
-
"AssetsLeasedToOthersMember": "2021",
|
|
166
|
-
"AssetsNetAbstract": "2023",
|
|
167
|
-
"AssumptionForFairValueOnSecuritizationDateOfInterestsContinuedToBeHeldByTransferorServicingAssetsOrLiabilitiesTypeOfFinancialAsset": "2020",
|
|
168
|
-
"Asu201601TransitionAbstract": "2023",
|
|
169
|
-
"Asu201618TransitionAbstract": "2022",
|
|
170
|
-
"AuctionMarketPreferredSecurities": "2016-01-31",
|
|
171
|
-
"AuctionMarketPreferredSecuritiesAbstract": "2016-01-31",
|
|
172
|
-
"AuctionMarketPreferredSecuritiesDisclosure": "2016-01-31",
|
|
173
|
-
"AuctionMarketPreferredSecuritiesDividendCumulativeUndistributed": "2016-01-31",
|
|
174
|
-
"AuctionMarketPreferredSecuritiesDividendPaidFromCapital": "2016-01-31",
|
|
175
|
-
"AuctionMarketPreferredSecuritiesDividendPaidFromEarnings": "2016-01-31",
|
|
176
|
-
"AuctionMarketPreferredSecuritiesDividendPaidFromEarningsAndCapital": "2016-01-31",
|
|
177
|
-
"AuctionMarketPreferredSecuritiesDividendPaidFromEarningsAndCapitalAbstract": "2016-01-31",
|
|
178
|
-
"AuctionMarketPreferredSecuritiesPerShare": "2016-01-31",
|
|
179
|
-
"AuctionMarketPreferredSecuritiesStockSeriesAggregateRedemptionAmount": "2016-01-31",
|
|
180
|
-
"AuctionMarketPreferredSecuritiesStockSeriesLiquidationPreference": "2016-01-31",
|
|
181
|
-
"AuctionMarketPreferredSecuritiesStockSeriesRedemptionRequirements": "2016-01-31",
|
|
182
|
-
"AuctionMarketPreferredSecuritiesStockSeriesScheduleOfDividendDistributionsAbstract": "2016-01-31",
|
|
183
|
-
"AuctionMarketPreferredSecuritiesStockSeriesValue": "2016-01-31",
|
|
184
|
-
"AvailableForSaleDebtSecuritiesAmortizedCostBasisAbstract": "2018-01-31",
|
|
185
|
-
"AvailableForSaleEquitySecuritiesAccumulatedGrossUnrealizedGainBeforeTax": "2023",
|
|
186
|
-
"AvailableForSaleEquitySecuritiesAccumulatedGrossUnrealizedLossBeforeTax": "2023",
|
|
187
|
-
"AvailableForSaleEquitySecuritiesAmortizedCostBasis": "2023",
|
|
188
|
-
"AvailableForSaleEquitySecuritiesAmortizedCostBasisAbstract": "2018-01-31",
|
|
189
|
-
"AvailableForSaleEquitySecuritiesGrossUnrealizedGain": "2023",
|
|
190
|
-
"AvailableForSaleEquitySecuritiesGrossUnrealizedLoss": "2023",
|
|
191
|
-
"AvailableForSaleSecurities": "2023",
|
|
192
|
-
"AvailableForSaleSecuritiesAccumulatedGrossUnrealizedGainBeforeTax": "2023",
|
|
193
|
-
"AvailableForSaleSecuritiesAccumulatedGrossUnrealizedGainBeforeTaxAbstract": "2018-01-31",
|
|
194
|
-
"AvailableForSaleSecuritiesAccumulatedGrossUnrealizedGainLossBeforeTax": "2023",
|
|
195
|
-
"AvailableForSaleSecuritiesAccumulatedGrossUnrealizedLossBeforeTax": "2023",
|
|
196
|
-
"AvailableForSaleSecuritiesAccumulatedGrossUnrealizedLossBeforeTaxAbstract": "2018-01-31",
|
|
197
|
-
"AvailableForSaleSecuritiesAmortizedCost": "2023",
|
|
198
|
-
"AvailableForSaleSecuritiesAmortizedCostBasisAbstract": "2018-01-31",
|
|
199
|
-
"AvailableForSaleSecuritiesAndHeldToMaturitySecurities": "2023",
|
|
200
|
-
"AvailableForSaleSecuritiesAndHeldToMaturitySecuritiesAbstract": "2018-01-31",
|
|
201
|
-
"AvailableForSaleSecuritiesBalanceSheetReportedAmountsAbstract": "2018-01-31",
|
|
202
|
-
"AvailableForSaleSecuritiesBasisForValuationOtherThanEquitySecurities": "2016-01-31",
|
|
203
|
-
"AvailableForSaleSecuritiesChangeInNetUnrealizedHoldingGainLoss": "2018-01-31",
|
|
204
|
-
"AvailableForSaleSecuritiesChangeInNetUnrealizedHoldingGainLossNetOfTax": "2018-01-31",
|
|
205
|
-
"AvailableForSaleSecuritiesChangeInNetUnrealizedHoldingGainLossNetOfTaxAbstract": "2018-01-31",
|
|
206
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPosition12MonthsOrLongerAccumulatedLoss": "2023",
|
|
207
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPosition12MonthsOrLongerAggregateLosses": "2018-01-31",
|
|
208
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionAbstract": "2019-01-31",
|
|
209
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionAccumulatedLoss": "2023",
|
|
210
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionAggregateLosses": "2018-01-31",
|
|
211
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionAggregateLossesAbstract": "2018-01-31",
|
|
212
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionFairValue": "2023",
|
|
213
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionFairValueTableTextBlock": "2023",
|
|
214
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionLessThan12MonthsAccumulatedLoss": "2023",
|
|
215
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionLessThan12MonthsAggregateLosses": "2018-01-31",
|
|
216
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionLessThanTwelveMonthsFairValue": "2023",
|
|
217
|
-
"AvailableForSaleSecuritiesContinuousUnrealizedLossPositionTwelveMonthsOrLongerFairValue": "2023",
|
|
218
|
-
"AvailableForSaleSecuritiesContractsToAcquireSecuritiesToBeAccountedForAsAvailableForSaleAbstract": "2018-01-31",
|
|
219
|
-
"AvailableForSaleSecuritiesCurrent": "2023",
|
|
220
|
-
"AvailableForSaleSecuritiesCurrentAbstract": "2018-01-31",
|
|
221
|
-
"AvailableForSaleSecuritiesDebtMaturitiesBasisOfAllocation": "2018-01-31",
|
|
222
|
-
"AvailableForSaleSecuritiesEquitySecurities": "2023",
|
|
223
|
-
"AvailableForSaleSecuritiesEquitySecuritiesCurrent": "2023",
|
|
224
|
-
"AvailableForSaleSecuritiesEquitySecuritiesNoncurrent": "2023",
|
|
225
|
-
"AvailableForSaleSecuritiesGrossGainsDerivatives": "2018-01-31",
|
|
226
|
-
"AvailableForSaleSecuritiesGrossGainsLossesNetDerivatives": "2018-01-31",
|
|
227
|
-
"AvailableForSaleSecuritiesGrossGainsLossesNetDerivativesAbstract": "2018-01-31",
|
|
228
|
-
"AvailableForSaleSecuritiesGrossLossesDerivatives": "2018-01-31",
|
|
229
|
-
"AvailableForSaleSecuritiesGrossRealizedGainLossNet": "2023",
|
|
230
|
-
"AvailableForSaleSecuritiesGrossRealizedGainLossNetAbstract": "2018-01-31",
|
|
231
|
-
"AvailableForSaleSecuritiesGrossRealizedGains": "2023",
|
|
232
|
-
"AvailableForSaleSecuritiesGrossRealizedGainsLossesCostBasisMethodologyOfSecuritiesSold": "2016-01-31",
|
|
233
|
-
"AvailableForSaleSecuritiesGrossRealizedGainsLossesSaleProceeds": "2018-01-31",
|
|
234
|
-
"AvailableForSaleSecuritiesGrossRealizedLosses": "2023",
|
|
235
|
-
"AvailableForSaleSecuritiesGrossUnrealizedGainAbstract": "2018-01-31",
|
|
236
|
-
"AvailableForSaleSecuritiesGrossUnrealizedGains": "2023",
|
|
237
|
-
"AvailableForSaleSecuritiesGrossUnrealizedLoss": "2023",
|
|
238
|
-
"AvailableForSaleSecuritiesGrossUnrealizedLossAbstract": "2018-01-31",
|
|
239
|
-
"AvailableForSaleSecuritiesInUnrealizedLossPositionsQualitativeDisclosureNumberOfPositionsLessThanOneYear": "2023",
|
|
240
|
-
"AvailableForSaleSecuritiesIncomeTaxExpenseOnChangeInUnrealizedHoldingGainOrLoss": "2018-01-31",
|
|
241
|
-
"AvailableForSaleSecuritiesNoncurrent": "2023",
|
|
242
|
-
"AvailableForSaleSecuritiesNoncurrentAbstract": "2018-01-31",
|
|
243
|
-
"AvailableForSaleSecuritiesPledgedAsCollateral": "2018-01-31",
|
|
244
|
-
"AvailableForSaleSecuritiesPledgedAsCollateralForParentheticalDisclosureAbstract": "2018-01-31",
|
|
245
|
-
"AvailableForSaleSecuritiesRestricted": "2023",
|
|
246
|
-
"AvailableForSaleSecuritiesRestrictedAbstract": "2018-01-31",
|
|
247
|
-
"AvailableForSaleSecuritiesRestrictionsAdditionalInformation": "2018-01-31",
|
|
248
|
-
"AvailableForSaleSecuritiesShortTermInvestmentsAmortizedCost": "2018-01-31",
|
|
249
|
-
"AvailableForSaleSecuritiesTextBlock": "2023",
|
|
250
|
-
"AvailableForSaleSecuritiesTransfersToTradingAbstract": "2016-01-31",
|
|
251
|
-
"AvailableForSaleSecuritiesTransfersToTradingGainsLossesBasisMethodologyOfAmountReclassified": "2016-01-31",
|
|
252
|
-
"AvailableForSaleSecuritiesTransfersToTradingGainsLossesNet": "2023",
|
|
253
|
-
"AvailableForSaleSecuritiesTransfersToTradingGrossGains": "2023",
|
|
254
|
-
"AvailableForSaleSecuritiesTransfersToTradingGrossLosses": "2023",
|
|
255
|
-
"AvailableforsaleSecuritiesDebtMaturitiesDate": "2019-01-31",
|
|
256
|
-
"AvailableforsaleSecuritiesGrossRealizedGainLossExcludingOtherThanTemporaryImpairments": "2023",
|
|
257
|
-
"AvailableforsaleSecuritiesGrossRealizedLossesExcludingOtherThanTemporaryImpairments": "2023",
|
|
258
|
-
"AvailableforsaleSecuritiesGrossUnrealizedGainLoss1": "2018-01-31",
|
|
259
|
-
"AvailableforsaleSecuritiesInUnrealizedLossPositionsQualitativeDisclosureNumberOfPositions1": "2023",
|
|
260
|
-
"AvailableforsaleSecuritiesInUnrealizedLossPositionsQualitativeDisclosureNumberOfPositionsGreaterThanOrEqualToOneYear": "2023",
|
|
261
|
-
"AvailableforsaleSecuritiesInUnrealizedLossPositionsQualitativeDisclosureOtherGeographicConcentration": "2019-01-31",
|
|
262
|
-
"AvailableforsaleSecuritiesInUnrealizedLossPositionsQualitativeDisclosureOtherThirdPartyGuaranteesAbstract": "2019-01-31",
|
|
263
|
-
"AvailableforsaleSecuritiesInUnrealizedLossPositionsQualitativeDisclosureOtherThirdPartyGuaranteesDescription": "2019-01-31",
|
|
264
|
-
"AvailableforsaleSecuritiesOtherDisclosureItemsAbstract": "2018-01-31",
|
|
265
|
-
"AvailableforsaleSecuritiesRestrictedCurrent": "2018-01-31",
|
|
266
|
-
"AvailableforsaleSecuritiesRestrictedDisclosureAbstract": "2018-01-31",
|
|
267
|
-
"AvailableforsaleSecuritiesRestrictedNoncurrent": "2018-01-31",
|
|
268
|
-
"AverageProductionCostInformation": "2016-01-31",
|
|
269
|
-
"AverageProductionCostsPerBarrelOfOilEquivalentsBOE": "2019-01-31",
|
|
270
|
-
"AverageSalesPriceAndProductionCostsPerUnitOfProductionLineItems": "2019-01-31",
|
|
271
|
-
"AverageSalesPriceAndProductionCostsPerUnitOfProductionProductionTypeAxis": "2019-01-31",
|
|
272
|
-
"BankingAndThriftAbstract": "2020",
|
|
273
|
-
"BankingFeesAndCommissions": "2018-01-31",
|
|
274
|
-
"BankingFeesAndCommissionsAbstract": "2018-01-31",
|
|
275
|
-
"BankruptcyClaimsAmountOfClaimsOnMaterialContractsRejected": "2016-01-31",
|
|
276
|
-
"BankruptcyClaimsDescriptionOfClaims": "2016-01-31",
|
|
277
|
-
"BasisForExemptionFromSegregationRequirementsDescription": "2019-01-31",
|
|
278
|
-
"BasisOfProvisionForRefundsUnderGovernmentContracts": "2023",
|
|
279
|
-
"BasisOnWhichEstimateIsMadeForValueOfLeaseholdAcreage": "2018-01-31",
|
|
280
|
-
"BenefitClaimsInExcessOfRelatedPolicyholderBalances": "2016-01-31",
|
|
281
|
-
"BinderCosts": "2016-01-31",
|
|
282
|
-
"BinderSalesRevenue": "2016-01-31",
|
|
283
|
-
"BrokerDealerSecuritiesOwnedNotReadilyMarketableAtEstimatedFairValue": "2016-01-31",
|
|
284
|
-
"BrokeredNaturalGasMarginCosts": "2018-01-31",
|
|
285
|
-
"BrokeredNaturalGasMarginRevenue": "2018-01-31",
|
|
286
|
-
"BusinessAcquisitionStandardIndustrialClassificationSICCodeForAcquiredEntity": "2016-01-31",
|
|
287
|
-
"BusinessAcquisitionsPurchasePriceAllocationSubsequentYearsNetEffectOnIncome": "2016-01-31",
|
|
288
|
-
"BusinessCombinationContingentConsiderationArrangementsChangeInTheRangeOfOutcomesContingentConsiderationLiabilitySignificantInputs": "2018-01-31",
|
|
289
|
-
"BusinessCombinationContingentConsiderationArrangementsChangeInTheRangeOfOutcomesContingentConsiderationLiabilityValuationTechnique": "2018-01-31",
|
|
290
|
-
"BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedDeferredTaxAssetsCurrent": "2022",
|
|
291
|
-
"BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedDeferredTaxAssetsNoncurrent": "2022",
|
|
292
|
-
"BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedDeferredTaxLiabilitiesCurrent": "2022",
|
|
293
|
-
"BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedDeferredTaxLiabilitiesNoncurrent": "2022",
|
|
294
|
-
"CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member": "2022",
|
|
295
|
-
"CapitalAndAllowableSubordinatedBorrowings": "2019-01-31",
|
|
296
|
-
"CapitalAndAllowableSubordinatedBorrowingsAbstract": "2019-01-31",
|
|
297
|
-
"CapitalLeasesFutureMinimumPaymentsDueInRollingYearFourAndFive": "2016-01-31",
|
|
298
|
-
"CapitalLeasesFutureMinimumPaymentsDueInRollingYearFourAndFiveAbstract": "2016-01-31",
|
|
299
|
-
"CapitalLeasesFutureMinimumPaymentsDueInRollingYearTwoAndThree": "2016-01-31",
|
|
300
|
-
"CapitalLeasesFutureMinimumPaymentsDueInRollingYearTwoAndThreeAbstract": "2016-01-31",
|
|
301
|
-
"CapitalizedComputerSoftwareAmortization": "2016-01-31",
|
|
302
|
-
"CapitalizedComputerSoftwareImpairments": "2016-01-31",
|
|
303
|
-
"CapitalizedExploratoryWellCostChargedToExpense": "2016-01-31",
|
|
304
|
-
"CargoAndFreightRevenue": "2018-01-31",
|
|
305
|
-
"CashAndCashEquivalentsPeriodIncreaseDecrease": "2022",
|
|
306
|
-
"CashAndCashEquivalentsPeriodIncreaseDecreaseAbstract": "2022",
|
|
307
|
-
"CashAndCashEquivalentsPeriodIncreaseDecreaseExcludingExchangeRateEffect": "2022",
|
|
308
|
-
"CashAndCashEquivalentsPeriodIncreaseDecreaseExcludingExchangeRateEffectAbstract": "2022",
|
|
309
|
-
"CashAndSecuritiesSegregatedUnderCommodityExchangeActAbstract": "2022",
|
|
310
|
-
"CashAndSecuritiesSegregatedUnderCommodityExchangeActDescription": "2019-01-31",
|
|
311
|
-
"CashAndSecuritiesSegregatedUnderFederalAndOtherRegulationsDescription": "2019-01-31",
|
|
312
|
-
"CashAndSecuritiesSegregatedUnderOtherRegulations": "2019-01-31",
|
|
313
|
-
"CashAndSecuritiesSegregatedUnderOtherRegulationsDisclosuresAbstract": "2022",
|
|
314
|
-
"CashAndSecuritiesSegregatedUnderSECRegulationBalanceSheetDisclosuresAbstract": "2022",
|
|
315
|
-
"CashPeriodIncreaseDecrease": "2022",
|
|
316
|
-
"CashPeriodIncreaseDecreaseExcludingExchangeRateEffect": "2022",
|
|
317
|
-
"CashPeriodIncreaseDecreaseExcludingExchangeRateEffectAbstract": "2022",
|
|
318
|
-
"CashUninsuredAmountCommentary": "2016-01-31",
|
|
319
|
-
"CasinoExpenses": "2018-01-31",
|
|
320
|
-
"CasinoRevenue": "2018-01-31",
|
|
321
|
-
"CertainLoansAcquiredInTransferAccountedForAsHeldToMaturityDebtSecuritiesNotAccountedForUsingIncomeRecognitionModelAbstract": "2018-01-31",
|
|
322
|
-
"CertainMethaneGasReservesProvedReservesCarryingAmount": "2018-01-31",
|
|
323
|
-
"CertainMethaneGasReservesProvedReservesQuantity": "2018-01-31",
|
|
324
|
-
"ChangeInAccountingEstimateFinancialEffect": "2016-01-31",
|
|
325
|
-
"ChangeInAccountingPrincipleAccountingStandardsUpdateTransitionOptionElectedFixedList": "2020",
|
|
326
|
-
"ChangeInReportingEntity": "2022",
|
|
327
|
-
"ChemicalsRevenue": "2016-01-31",
|
|
328
|
-
"ClassOfWarrantOrRightTitleOfSecurityWarrantsOrRightsOutstanding": "2020",
|
|
329
|
-
"ClassificationOfVariableInterestEntityDomain": "2020",
|
|
330
|
-
"ClearingFeesRevenue": "2018-01-31",
|
|
331
|
-
"ClosedBlockDividendObligationEffectOfOperatingResults": "2016-01-31",
|
|
332
|
-
"CoalProductsAndServicesRevenue": "2018-01-31",
|
|
333
|
-
"CoalSupplyAgreementObligationNoncurrent": "2016-01-31",
|
|
334
|
-
"CollaborativeArrangementCopromotionMember": "2019-01-31",
|
|
335
|
-
"CollaborativeArrangementIncomeStatementClassification": "2019-01-31",
|
|
336
|
-
"CollaborativeArrangementProductAgreementMember": "2019-01-31",
|
|
337
|
-
"CollateralHeldOnReverseRepurchaseAgreementsSegregatedUnderCommodityExchangeActRegulation": "2019-01-31",
|
|
338
|
-
"CollateralHeldOnReverseRepurchaseAgreementsSegregatedUnderCommodityExchangeActRegulationDescription": "2019-01-31",
|
|
339
|
-
"CollateralHeldOnReverseRepurchaseAgreementsSegregatedUnderOtherRegulations": "2019-01-31",
|
|
340
|
-
"CollateralHeldOnReverseRepurchaseAgreementsSegregatedUnderOtherRegulationsDescription": "2019-01-31",
|
|
341
|
-
"CollateralHeldOnReverseRepurchaseAgreementsSegregatedUnderSecuritiesExchangeCommissionRegulation": "2019-01-31",
|
|
342
|
-
"CollateralHeldOnReverseRepurchaseAgreementsSegregatedUnderSecuritiesExchangeCommissionRegulationDescription": "2019-01-31",
|
|
343
|
-
"CommitteeForUniformSecuritiesIdentificationProceduresCUSIP": "2019-01-31",
|
|
344
|
-
"CommodityFuturesContractsAndSpotCommoditiesProprietaryCapitalCharges": "2019-01-31",
|
|
345
|
-
"CompensatingBalanceAgreement": "2020",
|
|
346
|
-
"CompensationCostItemsAbstract": "2019-01-31",
|
|
347
|
-
"CompetitiveEnergyRevenue": "2018-01-31",
|
|
348
|
-
"CompetitiveTransitionChargeNoncurrent": "2016-01-31",
|
|
349
|
-
"ComputationOfNetCapitalRequirementAggregateIndebtednessStandardAbstract": "2019-01-31",
|
|
350
|
-
"ConcessionsCosts": "2018-01-31",
|
|
351
|
-
"ConcessionsRevenue": "2018-01-31",
|
|
352
|
-
"ConsolidatedOilAndGasProductionCostsUnitOfMeasure": "2019-01-31",
|
|
353
|
-
"ConstructionAndDevelopmentCosts": "2018-01-31",
|
|
354
|
-
"ConstructionAndDevelopmentCostsAbstract": "2018-01-31",
|
|
355
|
-
"ConstructionContractorsMethodOfReportingAffiliatedEntitiesPolicyPolicyTextBlock": "2020",
|
|
356
|
-
"ConstructionMaterialsRevenue": "2018-01-31",
|
|
357
|
-
"ConstructionRevenue": "2018-01-31",
|
|
358
|
-
"ConstructionRevenueAbstract": "2018-01-31",
|
|
359
|
-
"ContingentConsiderationClassifiedAsEquityMember": "2019-01-31",
|
|
360
|
-
"ContinuingCareRetirementCommunitiesObligationsPolicyPolicyTextBlock": "2018-01-31",
|
|
361
|
-
"ContractAdministrationExpense": "2016-01-31",
|
|
362
|
-
"ContractClaimsDescription": "2023",
|
|
363
|
-
"ContractReceivableDueAfterNextRollingTwelveMonths": "2020",
|
|
364
|
-
"ContractReceivableDueAfterNextRollingTwelveMonthsAbstract": "2020",
|
|
365
|
-
"ContractReceivableDueAfterOneYearHighestInterestRate": "2020",
|
|
366
|
-
"ContractReceivableDueAfterOneYearLowestInterestRate": "2020",
|
|
367
|
-
"ContractReceivableDueAfterOneYearWeightedAverageInterestRate": "2020",
|
|
368
|
-
"ContractReceivableDueAfterRollingYearFive": "2020",
|
|
369
|
-
"ContractReceivableDueInNextRollingTwelveMonths": "2020",
|
|
370
|
-
"ContractReceivableDueInRollingYearFive": "2020",
|
|
371
|
-
"ContractReceivableDueInRollingYearFour": "2020",
|
|
372
|
-
"ContractReceivableDueInRollingYearThree": "2020",
|
|
373
|
-
"ContractReceivableDueInRollingYearTwo": "2020",
|
|
374
|
-
"ContractReceivableRetainageDescription": "2020",
|
|
375
|
-
"ContractReceivableRetainageDueAfterNextRollingTwelveMonths": "2020",
|
|
376
|
-
"ContractReceivableRetainageDueAfterNextRollingTwelveMonthsAbstract": "2020",
|
|
377
|
-
"ContractReceivableRetainageDueAfterRollingYearFive": "2020",
|
|
378
|
-
"ContractReceivableRetainageDueInNextRollingTwelveMonths": "2020",
|
|
379
|
-
"ContractReceivableRetainageDueInRollingYearFive": "2020",
|
|
380
|
-
"ContractReceivableRetainageDueInRollingYearFour": "2020",
|
|
381
|
-
"ContractReceivableRetainageDueInRollingYearThree": "2020",
|
|
382
|
-
"ContractReceivableRetainageDueInRollingYearTwo": "2020",
|
|
383
|
-
"ContractReceivableRetainageRollingMaturityAbstract": "2020",
|
|
384
|
-
"ContractReceivableRollingMaturityAbstract": "2020",
|
|
385
|
-
"ContractRevenueCost": "2018-01-31",
|
|
386
|
-
"ContractWithCustomerAssetBeforeAllowanceForCreditLossAbstract": "2021",
|
|
387
|
-
"ContractWithCustomerAssetNotPastDue": "2021",
|
|
388
|
-
"ContractWithCustomerAssetPastDue": "2021",
|
|
389
|
-
"ContractsReceivableClaimsAndUncertainAmountsExpectedToBeCollectedAfterNextRollingTwelveMonths": "2020",
|
|
390
|
-
"ContractsReceivableClaimsAndUncertainAmountsExpectedToBeCollectedInNextRollingTwelveMonths": "2020",
|
|
391
|
-
"ContractsReceivableClaimsAndUncertainAmountsRollingMaturityAbstract": "2020",
|
|
392
|
-
"ContractsRevenue": "2018-01-31",
|
|
393
|
-
"ContractualMaturitiesOfTimeDeposits100000OrMoreDescription": "2019-01-31",
|
|
394
|
-
"CooperativeAdvertisingPolicy": "2022",
|
|
395
|
-
"CorporateLifeInsuranceGuaranteedRate": "2016-01-31",
|
|
396
|
-
"CorporateLifeInsuranceInterestRateAssumptions": "2016-01-31",
|
|
397
|
-
"CorporateLifeInsuranceWeightedAverageCreditRate": "2016-01-31",
|
|
398
|
-
"CostAndEquityMethodInvestmentsDisclosureTextBlock": "2021",
|
|
399
|
-
"CostMethodInvestments": "2023",
|
|
400
|
-
"CostMethodInvestmentsAdditionalInformation": "2023",
|
|
401
|
-
"CostMethodInvestmentsAggregateCarryingAmountNotEvaluatedForImpairment": "2023",
|
|
402
|
-
"CostMethodInvestmentsDescriptionTextBlock": "2021",
|
|
403
|
-
"CostMethodInvestmentsFairValueDisclosure": "2023",
|
|
404
|
-
"CostMethodInvestmentsOriginalCost": "2023",
|
|
405
|
-
"CostMethodInvestmentsPolicy": "2021",
|
|
406
|
-
"CostMethodInvestmentsRealizedGainLoss": "2023",
|
|
407
|
-
"CostMethodInvestmentsRealizedGainLossAbstract": "2018-01-31",
|
|
408
|
-
"CostMethodInvestmentsRealizedGains": "2023",
|
|
409
|
-
"CostMethodInvestmentsRealizedLosses": "2023",
|
|
410
|
-
"CostMethodInvestmentsStatementThatFairValueWasNotEstimated": "2023",
|
|
411
|
-
"CostOfChemicals": "2016-01-31",
|
|
412
|
-
"CostOfCoalProductsAndServices": "2018-01-31",
|
|
413
|
-
"CostOfDomesticRegulatedElectric": "2018-01-31",
|
|
414
|
-
"CostOfDomesticRegulatedGasRevenue": "2019-01-31",
|
|
415
|
-
"CostOfGoldProductsAndServices": "2018-01-31",
|
|
416
|
-
"CostOfGoodsAndServicesEnergyCommoditiesAndServices": "2018-01-31",
|
|
417
|
-
"CostOfGoodsSold": "2018-01-31",
|
|
418
|
-
"CostOfGoodsSoldAbstract": "2018-01-31",
|
|
419
|
-
"CostOfGoodsSoldAmortization": "2018-01-31",
|
|
420
|
-
"CostOfGoodsSoldDepletion": "2018-01-31",
|
|
421
|
-
"CostOfGoodsSoldDepreciation": "2018-01-31",
|
|
422
|
-
"CostOfGoodsSoldDepreciationAndAmortization": "2018-01-31",
|
|
423
|
-
"CostOfGoodsSoldDepreciationAndAmortizationAbstract": "2018-01-31",
|
|
424
|
-
"CostOfGoodsSoldDepreciationDepletionAndAmortization": "2018-01-31",
|
|
425
|
-
"CostOfGoodsSoldDepreciationDepletionAndAmortizationAbstract": "2018-01-31",
|
|
426
|
-
"CostOfGoodsSoldDirectLabor": "2018-01-31",
|
|
427
|
-
"CostOfGoodsSoldDirectMaterials": "2018-01-31",
|
|
428
|
-
"CostOfGoodsSoldDirectTaxesAndLicensesCosts": "2016-01-31",
|
|
429
|
-
"CostOfGoodsSoldElectric": "2018-01-31",
|
|
430
|
-
"CostOfGoodsSoldElectricAbstract": "2018-01-31",
|
|
431
|
-
"CostOfGoodsSoldExcludingDepreciationDepletionAndAmortization": "2019-01-31",
|
|
432
|
-
"CostOfGoodsSoldMaintenanceCosts": "2018-01-31",
|
|
433
|
-
"CostOfGoodsSoldOilAndGas": "2018-01-31",
|
|
434
|
-
"CostOfGoodsSoldOilAndGasAbstract": "2018-01-31",
|
|
435
|
-
"CostOfGoodsSoldOverhead": "2018-01-31",
|
|
436
|
-
"CostOfGoodsSoldSubscription": "2018-01-31",
|
|
437
|
-
"CostOfMerchandiseSalesBuyingAndOccupancyCosts": "2019-01-31",
|
|
438
|
-
"CostOfNaturalGasPurchases": "2018-01-31",
|
|
439
|
-
"CostOfOilAndGasProspects": "2016-01-31",
|
|
440
|
-
"CostOfOtherAlternativeEnergy": "2018-01-31",
|
|
441
|
-
"CostOfOtherManufacturedProducts": "2018-01-31",
|
|
442
|
-
"CostOfPurchasedOilAndGas": "2018-01-31",
|
|
443
|
-
"CostOfPurchasedPower": "2018-01-31",
|
|
444
|
-
"CostOfRealEstateRevenue": "2018-01-31",
|
|
445
|
-
"CostOfRealEstateRevenueAbstract": "2018-01-31",
|
|
446
|
-
"CostOfRealEstateSales": "2018-01-31",
|
|
447
|
-
"CostOfRealEstateSalesAbstract": "2018-01-31",
|
|
448
|
-
"CostOfRealEstateSalesExcludingInterest": "2018-01-31",
|
|
449
|
-
"CostOfRealEstateSalesInterest": "2018-01-31",
|
|
450
|
-
"CostOfReimbursableExpense": "2018-01-31",
|
|
451
|
-
"CostOfSecondaryProcessing": "2016-01-31",
|
|
452
|
-
"CostOfServices": "2018-01-31",
|
|
453
|
-
"CostOfServicesAbstract": "2018-01-31",
|
|
454
|
-
"CostOfServicesAmortization": "2018-01-31",
|
|
455
|
-
"CostOfServicesDepreciation": "2018-01-31",
|
|
456
|
-
"CostOfServicesDepreciationAndAmortization": "2018-01-31",
|
|
457
|
-
"CostOfServicesDepreciationAndAmortizationAbstract": "2018-01-31",
|
|
458
|
-
"CostOfServicesDirectLabor": "2018-01-31",
|
|
459
|
-
"CostOfServicesDirectMaterials": "2018-01-31",
|
|
460
|
-
"CostOfServicesDirectTaxesAndLicensesCosts": "2018-01-31",
|
|
461
|
-
"CostOfServicesEnergyServices": "2018-01-31",
|
|
462
|
-
"CostOfServicesEnvironmentalRemediation": "2018-01-31",
|
|
463
|
-
"CostOfServicesExcludingDepreciationDepletionAndAmortization": "2019-01-31",
|
|
464
|
-
"CostOfServicesLicensesAndMaintenanceAgreements": "2018-01-31",
|
|
465
|
-
"CostOfServicesLicensesAndServices": "2018-01-31",
|
|
466
|
-
"CostOfServicesMaintenanceCosts": "2018-01-31",
|
|
467
|
-
"CostOfServicesOilAndGas": "2019-01-31",
|
|
468
|
-
"CostOfServicesOverhead": "2018-01-31",
|
|
469
|
-
"CostOfTransmission": "2018-01-31",
|
|
470
|
-
"CostOfTransmissionAbstract": "2016-01-31",
|
|
471
|
-
"CostOfTransmissionAffiliates": "2016-01-31",
|
|
472
|
-
"CostOfTransmissionOther": "2016-01-31",
|
|
473
|
-
"CostOfUtilities": "2018-01-31",
|
|
474
|
-
"CostOfWorldwideUnregulatedElectric": "2018-01-31",
|
|
475
|
-
"CostmethodInvestmentsMember": "2023",
|
|
476
|
-
"CostmethodInvestmentsOtherThanTemporaryImpairment": "2023",
|
|
477
|
-
"CostmethodInvestmentsRealizedGainLossAlternativeAbstract": "2018-01-31",
|
|
478
|
-
"CostmethodInvestmentsRealizedGainLossExcludingOtherThanTemporaryImpairments": "2023",
|
|
479
|
-
"CostmethodInvestmentsRealizedLossesExcludingOtherThanTemporaryImpairments": "2023",
|
|
480
|
-
"CostsOfMetalsSold": "2018-01-31",
|
|
481
|
-
"CostsOfRealEstateServicesAndLandSales": "2018-01-31",
|
|
482
|
-
"CreationDateAxis": "2019-01-31",
|
|
483
|
-
"CumulativeEffectAdjustmentConsolidationOfVariableInterestEntityMember": "2023",
|
|
484
|
-
"CumulativeEffectAdjustmentDeconsolidationOfVariableInterestEntityMember": "2023",
|
|
485
|
-
"CumulativeEffectOfNewAccountingPrincipleInPeriodOfAdoption": "2020",
|
|
486
|
-
"CumulativeEffectOnRetainedEarningsBeforeTax1": "2020",
|
|
487
|
-
"CumulativeEffectOnRetainedEarningsNetOfTax1": "2020",
|
|
488
|
-
"CumulativeEffectOnRetainedEarningsNetOfTaxAbstract": "2020",
|
|
489
|
-
"CumulativeEffectOnRetainedEarningsTax1": "2020",
|
|
490
|
-
"CustomerRefundableFeesCashReceived": "2016-01-31",
|
|
491
|
-
"CustomerRefundableFeesRefundPayments": "2016-01-31",
|
|
492
|
-
"CustomerRefundableFeesRevenueRecognized": "2016-01-31",
|
|
493
|
-
"CustomerSecuritiesForWhichEntityHasRightToSellOrRepledgeAbstract": "2022",
|
|
494
|
-
"DebtInstrumentConvertibleThresholdConsecutiveTradingDays": "2017-01-31",
|
|
495
|
-
"DebtInstrumentInterestRateEffectivePercentageRateRangeMaximum": "2016-01-31",
|
|
496
|
-
"DebtInstrumentInterestRateEffectivePercentageRateRangeMinimum": "2016-01-31",
|
|
497
|
-
"DebtInstrumentInterestRateStatedPercentageRateRangeMaximum": "2016-01-31",
|
|
498
|
-
"DebtInstrumentInterestRateStatedPercentageRateRangeMinimum": "2016-01-31",
|
|
499
|
-
"DebtInstrumentTaxStatus": "2016-01-31",
|
|
500
|
-
"DebtIssuanceCosts": "2016-01-31",
|
|
501
|
-
"DebtSecuritiesAvailableForSaleChangeInPresentValueExpenseReversal": "2022",
|
|
502
|
-
"DebtSecuritiesAvailableForSaleSaleAbstract": "2021",
|
|
503
|
-
"DebtSecuritiesHeldToMaturityChangeInPresentValueExpenseReversal": "2022",
|
|
504
|
-
"DebtSecuritiesHeldToMaturityNotPastDue": "2021",
|
|
505
|
-
"DebtSecuritiesHeldToMaturityPastDue": "2021",
|
|
506
|
-
"DebtSecuritiesHeldToMaturityReferenceRateReformSaleOrTransferElection": "2023",
|
|
507
|
-
"DebtSecurityAxis": "2018-01-31",
|
|
508
|
-
"DebtorInPossessionFinancingAmendmentsToArrangementDescription": "2016-01-31",
|
|
509
|
-
"DebtorInPossessionFinancingDescriptionOfArrangement": "2016-01-31",
|
|
510
|
-
"DebtorInPossessionFinancingUnusedBorrowings": "2016-01-31",
|
|
511
|
-
"DebtorReorganizationItemsRevaluationOfCustomerRelatedObligations": "2016-01-31",
|
|
512
|
-
"DeclineInInitialFranchiseFeesDescription": "2023",
|
|
513
|
-
"DecommissioningTrustAssetsDescription": "2023",
|
|
514
|
-
"DecreaseInRestrictedCash": "2022",
|
|
515
|
-
"DeductionsCharges": "2019-01-31",
|
|
516
|
-
"DeductionsChargesAbstract": "2019-01-31",
|
|
517
|
-
"DefaultFinancialStatementsDateMember": "2019-01-31",
|
|
518
|
-
"DeferredCompensationArrangementWithIndividualDistributionsPaid": "2017-01-31",
|
|
519
|
-
"DeferredCompensationArrangementWithIndividualEmployerContribution": "2017-01-31",
|
|
520
|
-
"DeferredElectricCost": "2016-01-31",
|
|
521
|
-
"DeferredFinanceCostsAbstract": "2016-01-31",
|
|
522
|
-
"DeferredFinanceCostsDescriptionOfSignificantAdditionsOrDeletions": "2016-01-31",
|
|
523
|
-
"DeferredFinanceCostsDisclosures": "2016-01-31",
|
|
524
|
-
"DeferredFinanceCostsOwnshareLendingArrangementIssuanceCostsAmortizationExpense": "2016-01-31",
|
|
525
|
-
"DeferredFuelCostAbstract": "2016-01-31",
|
|
526
|
-
"DeferredGainLossOnDiscontinuationOfForeignCurrencyFairValueHedge": "2016-01-31",
|
|
527
|
-
"DeferredGainLossOnDiscontinuationOfPriceRiskFairValueHedge": "2016-01-31",
|
|
528
|
-
"DeferredPolicyAcquisitionCostAmortizationExpenseEffectOfAdjustmentsToEstimatedGrossProfit": "2016-01-31",
|
|
529
|
-
"DeferredPolicyAcquisitionCostAmortizationExpenseUnrealizedInvestmentGainsLosses": "2016-01-31",
|
|
530
|
-
"DeferredPolicyAcquisitionCostForeignCurrencyTranslationAdjustment": "2016-01-31",
|
|
531
|
-
"DeferredPolicyAcquisitionCostsDisclosure": "2019-01-31",
|
|
532
|
-
"DeferredRevenueRefundPayments": "2016-01-31",
|
|
533
|
-
"DeferredRevenueRevenueRecognized": "2016-01-31",
|
|
534
|
-
"DeferredRevenueSignificantChangesInBalances": "2016-01-31",
|
|
535
|
-
"DeferredSalesInducementsDescription": "2019-01-31",
|
|
536
|
-
"DeferredTaxAssetsGrossCurrent": "2022",
|
|
537
|
-
"DeferredTaxAssetsGrossNoncurrent": "2022",
|
|
538
|
-
"DeferredTaxAssetsLiabilitiesNetAbstract": "2022",
|
|
539
|
-
"DeferredTaxAssetsLiabilitiesNetCurrent": "2022",
|
|
540
|
-
"DeferredTaxAssetsLiabilitiesNetNoncurrent": "2022",
|
|
541
|
-
"DeferredTaxAssetsNetClassificationAbstract": "2022",
|
|
542
|
-
"DeferredTaxAssetsNetCurrent": "2022",
|
|
543
|
-
"DeferredTaxAssetsNetCurrentClassificationAbstract": "2022",
|
|
544
|
-
"DeferredTaxAssetsNetNoncurrent": "2022",
|
|
545
|
-
"DeferredTaxAssetsNetNoncurrentClassificationAbstract": "2022",
|
|
546
|
-
"DeferredTaxAssetsValuationAllowanceCurrent": "2022",
|
|
547
|
-
"DeferredTaxAssetsValuationAllowanceNoncurrent": "2022",
|
|
548
|
-
"DeferredTaxLiabilitiesClassificationAbstract": "2022",
|
|
549
|
-
"DeferredTaxLiabilitiesCurrent": "2022",
|
|
550
|
-
"DeferredTaxLiabilitiesGrossClassificationAbstract": "2022",
|
|
551
|
-
"DeferredTaxLiabilitiesGrossCurrent": "2022",
|
|
552
|
-
"DeferredTaxLiabilitiesGrossNoncurrent": "2022",
|
|
553
|
-
"DeferredTaxLiabilitiesNoncurrent": "2022",
|
|
554
|
-
"DeferredTaxesBusinessCombinationValuationAllowanceAvailableToReduceGoodwillOrIntangibleAssetsDescription": "2016-01-31",
|
|
555
|
-
"DefinedBenefitPensionPlansAndDefinedBenefitPostretirementPlansDisclosureAbstract": "2020",
|
|
556
|
-
"DefinedBenefitPlanAccumulatedOtherComprehensiveIncomeMinimumPensionLiabilityAfterTax": "2017-01-31",
|
|
557
|
-
"DefinedBenefitPlanAccumulatedOtherComprehensiveIncomeMinimumPensionLiabilityBeforeTax": "2017-01-31",
|
|
558
|
-
"DefinedBenefitPlanAdditionalDisclosuresAboutPlanAssets": "2018-01-31",
|
|
559
|
-
"DefinedBenefitPlanAmortizationOfNetTransitionAssetObligation": "2017-01-31",
|
|
560
|
-
"DefinedBenefitPlanAmortizationOfTransitionObligationsAssets": "2017-01-31",
|
|
561
|
-
"DefinedBenefitPlanAmountAndTimingOfAssetsExpectedToBeReturnedToEmployerDuringFollowing12MonthPeriod": "2018-01-31",
|
|
562
|
-
"DefinedBenefitPlanAmountToBeAmortizedFromAccumulatedOtherComprehensiveIncomeLossNextFiscalYear": "2017-01-31",
|
|
563
|
-
"DefinedBenefitPlanAssetsExpectedToBeReturnedToEmployerAmount": "2023",
|
|
564
|
-
"DefinedBenefitPlanAssetsForPlanBenefitsAbstract": "2017-01-31",
|
|
565
|
-
"DefinedBenefitPlanAssetsForPlanBenefitsCurrentAndNoncurrent": "2017-01-31",
|
|
566
|
-
"DefinedBenefitPlanAssumptionsUsedCalculatingBenefitObligationDiscountRateSupportBondIndices": "2017-01-31",
|
|
567
|
-
"DefinedBenefitPlanAssumptionsUsedCalculatingBenefitObligationDiscountRateSupportMethodologyAndSourceData": "2017-01-31",
|
|
568
|
-
"DefinedBenefitPlanAssumptionsUsedCalculatingNetPeriodicBenefitCostChangeDueToSubsequentInterimMeasurement": "2017-01-31",
|
|
569
|
-
"DefinedBenefitPlanAssumptionsUsedCalculatingNetPeriodicBenefitCostDiscountRateSupportBondIndices": "2017-01-31",
|
|
570
|
-
"DefinedBenefitPlanAssumptionsUsedCalculatingNetPeriodicBenefitCostDiscountRateSupportMethodologyAndSourceData": "2017-01-31",
|
|
571
|
-
"DefinedBenefitPlanBeforeAdoptionOfSFAS158RecognitionProvisionsDisclosuresAbstract": "2017-01-31",
|
|
572
|
-
"DefinedBenefitPlanBeforeAdoptionOfSFAS158RecognitionProvisionsNetAmountRecognizedAbstract": "2017-01-31",
|
|
573
|
-
"DefinedBenefitPlanBeforeAdoptionOfSFAS158RecognitionProvisionsNetGainsLossesNotYetRecognized": "2017-01-31",
|
|
574
|
-
"DefinedBenefitPlanBeforeAdoptionOfSFAS158RecognitionProvisionsNetPriorServiceCostsCreditsNotYetRecognized": "2017-01-31",
|
|
575
|
-
"DefinedBenefitPlanBeforeAdoptionOfSFAS158RecognitionProvisionsNetTransitionObligationsAssetsNotYetRecognized": "2017-01-31",
|
|
576
|
-
"DefinedBenefitPlanBenefitsPaid": "2017-01-31",
|
|
577
|
-
"DefinedBenefitPlanContributionsByPlanParticipants": "2017-01-31",
|
|
578
|
-
"DefinedBenefitPlanCurrentAssets": "2017-01-31",
|
|
579
|
-
"DefinedBenefitPlanDerivativesUse": "2018-01-31",
|
|
580
|
-
"DefinedBenefitPlanDescriptionOfPlanAmendment": "2017-01-31",
|
|
581
|
-
"DefinedBenefitPlanDescriptionOfSettlementsAndCurtailments": "2017-01-31",
|
|
582
|
-
"DefinedBenefitPlanDiversification": "2018-01-31",
|
|
583
|
-
"DefinedBenefitPlanEffectOfPlanAmendmentOnAccumulatedBenefitObligation": "2017-01-31",
|
|
584
|
-
"DefinedBenefitPlanEffectOfPlanAmendmentOnNetPeriodicBenefitCost": "2017-01-31",
|
|
585
|
-
"DefinedBenefitPlanEffectOfSettlementsAndCurtailmentsOnAccumulatedBenefitObligation": "2017-01-31",
|
|
586
|
-
"DefinedBenefitPlanEstimatedAmountOfPlanParticipantsFutureBenefitsCoveredByInsuranceContractsIssuedByEmployerOrRelatedParties": "2023",
|
|
587
|
-
"DefinedBenefitPlanExpectedContributionsInCurrentFiscalYear": "2017-01-31",
|
|
588
|
-
"DefinedBenefitPlanExpectedContributionsInCurrentFiscalYearAbstract": "2017-01-31",
|
|
589
|
-
"DefinedBenefitPlanExpectedFutureBenefitPaymentsFiveRollingYearsThereafter": "2017-01-31",
|
|
590
|
-
"DefinedBenefitPlanExpectedFutureBenefitPaymentsNextRollingTwelveMonths": "2017-01-31",
|
|
591
|
-
"DefinedBenefitPlanExpectedFutureBenefitPaymentsRollingMaturityAbstract": "2017-01-31",
|
|
592
|
-
"DefinedBenefitPlanExpectedFutureBenefitPaymentsRollingYearFive": "2017-01-31",
|
|
593
|
-
"DefinedBenefitPlanExpectedFutureBenefitPaymentsRollingYearFour": "2017-01-31",
|
|
594
|
-
"DefinedBenefitPlanExpectedFutureBenefitPaymentsRollingYearThree": "2017-01-31",
|
|
595
|
-
"DefinedBenefitPlanExpectedFutureBenefitPaymentsRollingYearTwo": "2017-01-31",
|
|
596
|
-
"DefinedBenefitPlanForeignCurrencyExchangeRateChangesPlanAssets": "2017-01-31",
|
|
597
|
-
"DefinedBenefitPlanFutureAmortizationOfGainLoss": "2017-01-31",
|
|
598
|
-
"DefinedBenefitPlanFutureAmortizationOfPriorServiceCostCredit": "2017-01-31",
|
|
599
|
-
"DefinedBenefitPlanGrossPrescriptionDrugSubsidyReceiptsReceived": "2017-01-31",
|
|
600
|
-
"DefinedBenefitPlanHealthCareCostTrendRateAssumedForNextFiscalYear": "2017-01-31",
|
|
601
|
-
"DefinedBenefitPlanInvestmentGoals": "2018-01-31",
|
|
602
|
-
"DefinedBenefitPlanInvestmentStrategiesInvestmentFundCategory": "2018-01-31",
|
|
603
|
-
"DefinedBenefitPlanMeasurementDate": "2016-01-31",
|
|
604
|
-
"DefinedBenefitPlanNetPeriodicBenefitCostPracticalExpedientComparativePeriodDisclosure": "2021",
|
|
605
|
-
"DefinedBenefitPlanOtherInformation": "2017-01-31",
|
|
606
|
-
"DefinedBenefitPlanPermittedInvestments": "2018-01-31",
|
|
607
|
-
"DefinedBenefitPlanPlanAssetsAtFairValueValuationInputs": "2018-01-31",
|
|
608
|
-
"DefinedBenefitPlanPlanAssetsAtFairValueValuationTechniques": "2018-01-31",
|
|
609
|
-
"DefinedBenefitPlanPlanAssetsAtFairValueValuationTechniquesAndInputs": "2018-01-31",
|
|
610
|
-
"DefinedBenefitPlanPlanName": "2020",
|
|
611
|
-
"DefinedBenefitPlanPlansWithBenefitObligationsInExcessOfPlanAssetsAggregateBenefitObligation": "2018-01-31",
|
|
612
|
-
"DefinedBenefitPlanPlansWithBenefitObligationsInExcessOfPlanAssetsAggregateFairValueOfPlanAssets": "2018-01-31",
|
|
613
|
-
"DefinedBenefitPlanProhibitedInvestments": "2018-01-31",
|
|
614
|
-
"DefinedBenefitPlanRelationshipBetweenPlanAssetsAndBenefitObligations": "2018-01-31",
|
|
615
|
-
"DefinedBenefitPlanRiskManagementPractices": "2018-01-31",
|
|
616
|
-
"DefinedBenefitPlanSignificantConcentrationsOfRisk": "2018-01-31",
|
|
617
|
-
"DefinedBenefitPlanSignificantTransactionsBetweenEmployerOrRelatedPartiesAndPlanDuringYear": "2023",
|
|
618
|
-
"DefinedBenefitPlanTargetAllocationPercentage": "2018-01-31",
|
|
619
|
-
"DefinedBenefitPlanTargetPlanAssetAllocations": "2017-01-31",
|
|
620
|
-
"DefinedBenefitPlanTargetPlanAssetAllocationsRangeMaximum": "2017-01-31",
|
|
621
|
-
"DefinedBenefitPlanTargetPlanAssetAllocationsRangeMinimum": "2017-01-31",
|
|
622
|
-
"DefinedBenefitPlanTypeOfEmployerAndRelatedPartySecuritiesIncludedInPlanAssets": "2018-01-31",
|
|
623
|
-
"DefinedBenefitPlanUltimateHealthCareCostTrendRate": "2017-01-31",
|
|
624
|
-
"DefinedBenefitPlanYearThatRateReachesUltimateTrendRate": "2017-01-31",
|
|
625
|
-
"DefinedBenefitPlansDisclosuresDefinedBenefitPlansAxis": "2017-01-31",
|
|
626
|
-
"DefinedBenefitPlansDomain": "2017-01-31",
|
|
627
|
-
"DefinedBenefitPlansEstimatedFutureEmployerContributionsInCurrentFiscalYear": "2017-01-31",
|
|
628
|
-
"DefinedBenefitPlansEstimatedFutureEmployerContributionsInNextFiscalYear": "2017-01-31",
|
|
629
|
-
"DefinedContributionPensionAndOtherPostretirementPlansDisclosureAbstract": "2020",
|
|
630
|
-
"DefinedContributionPlanNameAxis": "2017-01-31",
|
|
631
|
-
"DefinedContributionPlanNameDomain": "2017-01-31",
|
|
632
|
-
"DefinedContributionPlanNumberOfEmployeesCovered": "2017-01-31",
|
|
633
|
-
"DefinedContributionPlanPlanName": "2020",
|
|
634
|
-
"DefinedContributionPlanTypeAxis": "2017-01-31",
|
|
635
|
-
"DefinedContributionPlanTypeDomain": "2017-01-31",
|
|
636
|
-
"DemutualizationByInsuranceEntityDescriptionOfSecuritiesIssued": "2016-01-31",
|
|
637
|
-
"DepletionNonproduction": "2016-01-31",
|
|
638
|
-
"DepositAssetsOrLiabilitiesChangeInAmountsBasedOnChangeInAssumptionsSupportingExpectedRecoveryAmounts": "2020",
|
|
639
|
-
"DepositLiabilitiesReclassifiedAsLoansReceivableDescription": "2016-01-31",
|
|
640
|
-
"DerecognizedAssetsInformationAboutAssetQualityOfSecuritizedOrAssetbackedFinancingArrangementAssetsAndAnyOtherFinancialAssetsManagedTogetherTextBlock": "2016-01-31",
|
|
641
|
-
"DerivativeAssetFairValueOffsetAgainstCollateralNetOfNotSubjectToMasterNettingArrangementPolicyElectionAbstract": "2022",
|
|
642
|
-
"DerivativeAssetSecuritiesPurchasedUnderAgreementsToResellSecuritiesBorrowedOffsetAgainstCollateralNetOfNotSubjectToMasterNettingArrangementPolicyElectionAbstract": "2022",
|
|
643
|
-
"DerivativeByNatureAxis": "2016-01-31",
|
|
644
|
-
"DerivativeCreditRisk": "2016-01-31",
|
|
645
|
-
"DerivativeHigherFixedInterestRateRange": "2016-01-31",
|
|
646
|
-
"DerivativeHigherRangeOfBasisSpreadOnVariableRate": "2016-01-31",
|
|
647
|
-
"DerivativeHigherRemainingMaturityRange1": "2016-01-31",
|
|
648
|
-
"DerivativeHigherVariableInterestRateRange": "2016-01-31",
|
|
649
|
-
"DerivativeInstrumentsGainLossRecognizedInOtherComprehensiveIncomeEffectivePortionNet": "2018-01-31",
|
|
650
|
-
"DerivativeInstrumentsGainLossRecognizedInOtherComprehensiveIncomeEffectivePortionNetAbstract": "2018-01-31",
|
|
651
|
-
"DerivativeInstrumentsGainRecognizedInOtherComprehensiveIncomeEffectivePortion": "2018-01-31",
|
|
652
|
-
"DerivativeInstrumentsLossRecognizedInOtherComprehensiveIncomeEffectivePortion": "2018-01-31",
|
|
653
|
-
"DerivativeInstrumentsNotDesignatedAsHedgingInstrumentsDescriptionOfTerms": "2016-01-31",
|
|
654
|
-
"DerivativeInstrumentsNotDesignatedAsHedgingInstrumentsLineItemOnIncomeStatementForGainLoss": "2018-01-31",
|
|
655
|
-
"DerivativeLiabilityFairValueOffsetAgainstCollateralNetOfNotSubjectToMasterNettingArrangementPolicyElectionAbstract": "2022",
|
|
656
|
-
"DerivativeLiabilitySecuritiesSoldUnderAgreementsToResellSecuritiesLoanedOffsetAgainstCollateralNetOfNotSubjectToMasterNettingArrangementPolicyElectionAbstract": "2022",
|
|
657
|
-
"DerivativeLowerFixedInterestRateRange": "2016-01-31",
|
|
658
|
-
"DerivativeLowerRangeOfBasisSpreadOnVariableRate": "2016-01-31",
|
|
659
|
-
"DerivativeLowerRemainingMaturityRange1": "2016-01-31",
|
|
660
|
-
"DerivativeLowerVariableInterestRateRange": "2016-01-31",
|
|
661
|
-
"DerivativeNameDomain": "2016-01-31",
|
|
662
|
-
"DerivativesHedgeDiscontinuances": "2020",
|
|
663
|
-
"DerivativesHedgeDiscontinuancesAnticipatedTransactions": "2020",
|
|
664
|
-
"DerivativesHedgeDiscontinuancesTerminationOfHedgingInstrumentOrHedgedItem": "2020",
|
|
665
|
-
"DerivativesMethodsOfAccounting": "2020",
|
|
666
|
-
"DerivativesMethodsOfAccountingDerivativeTypes": "2020",
|
|
667
|
-
"DescriptionOfAccountingForDiscontinuationOfForeignCurrencyFairValueHedge": "2020",
|
|
668
|
-
"DescriptionOfAccountingForDiscontinuationOfInterestRateFairValueHedge": "2020",
|
|
669
|
-
"DescriptionOfAccountingForDiscontinuationOfPriceRiskFairValueHedge": "2020",
|
|
670
|
-
"DescriptionOfAccountingMethodForForeignCurrencyDerivativeInstrumentsNotDesignatedAsHedgingInstruments": "2020",
|
|
671
|
-
"DescriptionOfAccountingMethodForInterestRateDerivativeInstrumentsNotDesignatedAsHedgingInstruments": "2020",
|
|
672
|
-
"DescriptionOfAccountingMethodForPriceRiskDerivativeInstrumentsNotDesignatedAsHedgingInstruments": "2020",
|
|
673
|
-
"DescriptionOfAccountingMethodUsedForForeignCurrencyDerivatives": "2020",
|
|
674
|
-
"DescriptionOfAccountingMethodUsedForInterestRateDerivatives": "2018-01-31",
|
|
675
|
-
"DescriptionOfAccountingMethodUsedForPriceRiskDerivatives": "2020",
|
|
676
|
-
"DescriptionOfActivitiesOfParentCompany": "2016-01-31",
|
|
677
|
-
"DescriptionOfAmountsOffsettingGainLossOnForeignCurrencyDerivativeInstrumentsNotDesignatedAsHedgingInstruments": "2016-01-31",
|
|
678
|
-
"DescriptionOfAmountsOffsettingGainLossOnForeignCurrencyDerivatives": "2016-01-31",
|
|
679
|
-
"DescriptionOfAmountsOffsettingGainLossOnPriceRiskDerivativeInstrumentsNotDesignatedAsHedgingInstruments": "2016-01-31",
|
|
680
|
-
"DescriptionOfCashFlowHedgeAccountingMethod": "2020",
|
|
681
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfCashFlowHedgeEffectiveness": "2016-01-31",
|
|
682
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfCreditRiskHedgeEffectiveness": "2016-01-31",
|
|
683
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfFairValueHedgeEffectiveness": "2016-01-31",
|
|
684
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfForeignCurrencyCashFlowHedgeEffectiveness": "2016-01-31",
|
|
685
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfForeignCurrencyFairValueHedgeEffectiveness": "2016-01-31",
|
|
686
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfInterestRateCashFlowHedgeEffectiveness": "2016-01-31",
|
|
687
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfInterestRateFairValueHedgeEffectiveness": "2016-01-31",
|
|
688
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfNetInvestmentHedgeIneffectiveness": "2016-01-31",
|
|
689
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfPriceRiskCashFlowHedgeEffectiveness": "2016-01-31",
|
|
690
|
-
"DescriptionOfComponentsOfGainLossExcludedFromAssessmentOfPriceRiskFairValueHedgeEffectiveness": "2016-01-31",
|
|
691
|
-
"DescriptionOfDiscontinuationOfFairValueHedge": "2020",
|
|
692
|
-
"DescriptionOfDiscontinuationOfForeignCurrencyFairValueHedge": "2020",
|
|
693
|
-
"DescriptionOfDiscontinuationOfInterestRateFairValueHedge": "2020",
|
|
694
|
-
"DescriptionOfDiscontinuationOfPriceRiskFairValueHedge": "2020",
|
|
695
|
-
"DescriptionOfEffectOfSubsequentForeignCurrencyExchangeRateChange": "2020",
|
|
696
|
-
"DescriptionOfEmbeddedRegulatoryLiability": "2016-01-31",
|
|
697
|
-
"DescriptionOfFairValueHedgeAccountingMethod": "2020",
|
|
698
|
-
"DescriptionOfFairValueHedgeRiskManagementPolicy": "2016-01-31",
|
|
699
|
-
"DescriptionOfForeignCurrencyCashFlowHedgeAccountingMethod": "2020",
|
|
700
|
-
"DescriptionOfForeignCurrencyFairValueHedgeAccountingMethod": "2020",
|
|
701
|
-
"DescriptionOfImpairmentToCarryingAmountOfRegulatoryAssets": "2016-01-31",
|
|
702
|
-
"DescriptionOfInterestRateCashFlowHedgeAccountingMethod": "2020",
|
|
703
|
-
"DescriptionOfInterestRateFairValueHedgeAccountingMethod": "2020",
|
|
704
|
-
"DescriptionOfLocationOfForeignCurrencyCashFlowHedgeDerivativesOnBalanceSheet": "2022",
|
|
705
|
-
"DescriptionOfLocationOfForeignCurrencyDerivativeInstrumentsNotDesignatedAsHedgingInstrumentsOnBalanceSheet": "2022",
|
|
706
|
-
"DescriptionOfLocationOfForeignCurrencyDerivativesOnBalanceSheet": "2022",
|
|
707
|
-
"DescriptionOfLocationOfGainLossOnForeignCurrencyCashFlowHedgeDerivativesInFinancialStatements": "2020",
|
|
708
|
-
"DescriptionOfLocationOfGainLossOnForeignCurrencyDerivativeInFinancialStatements": "2020",
|
|
709
|
-
"DescriptionOfLocationOfGainLossOnForeignCurrencyDerivativeInstrumentsNotDesignatedAsHedgingInstrumentsInFinancialStatements": "2022",
|
|
710
|
-
"DescriptionOfLocationOfGainLossOnInterestRateCashFlowHedgeDerivativeInFinancialStatements": "2020",
|
|
711
|
-
"DescriptionOfLocationOfGainLossOnInterestRateDerivativeOnIncomeStatement": "2020",
|
|
712
|
-
"DescriptionOfLocationOfGainLossOnInterestRateFairValueHedgeDerivativeInFinancialStatements": "2020",
|
|
713
|
-
"DescriptionOfLocationOfInterestRateCashFlowHedgeDerivativeOnBalanceSheet": "2022",
|
|
714
|
-
"DescriptionOfLocationOfInterestRateDerivativeInstrumentsNotDesignatedAsHedgingInstrumentsOnBalanceSheet": "2022",
|
|
715
|
-
"DescriptionOfLocationOfInterestRateDerivativesOnBalanceSheet": "2022",
|
|
716
|
-
"DescriptionOfLocationOfInterestRateFairValueHedgeDerivativeOnBalanceSheet": "2022",
|
|
717
|
-
"DescriptionOfNetInvestmentHedgeAccountingMethod": "2020",
|
|
718
|
-
"DescriptionOfNewAccountingPronouncementsNotYetAdopted": "2021",
|
|
719
|
-
"DescriptionOfPriceRiskCashFlowHedgeAccountingMethod": "2020",
|
|
720
|
-
"DescriptionOfPriceRiskFairValueHedgeAccountingMethod": "2020",
|
|
721
|
-
"DescriptionOfRelatedPartyLeasingArrangements": "2017-01-31",
|
|
722
|
-
"DescriptionOfSignificantServicingCovenantsForServicersWithNetWorthRequirementsFromMultipleSources": "2021",
|
|
723
|
-
"DescriptionOfTypesOfCashFlowHedgingInstrumentsUsed": "2020",
|
|
724
|
-
"DescriptionOfTypesOfFairValueHedgingInstrumentsUsed": "2020",
|
|
725
|
-
"DescriptionOfTypesOfForeignCurrencyCashFlowHedgingInstrumentsUsed": "2020",
|
|
726
|
-
"DescriptionOfTypesOfForeignCurrencyDerivativesNotDesignatedAsHedgingInstrumentsHeld": "2020",
|
|
727
|
-
"DescriptionOfTypesOfForeignCurrencyFairValueHedgingInstrumentsUsed": "2020",
|
|
728
|
-
"DescriptionOfTypesOfInterestRateCashFlowHedgingInstrumentsUsed": "2020",
|
|
729
|
-
"DescriptionOfTypesOfInterestRateDerivativesNotDesignatedAsHedgingInstrumentsHeld": "2020",
|
|
730
|
-
"DescriptionOfTypesOfInterestRateFairValueHedgingInstrumentsUsed": "2020",
|
|
731
|
-
"DescriptionOfTypesOfNetInvestmentHedgingInstrumentsUsed": "2020",
|
|
732
|
-
"DescriptionOfTypesOfPriceRiskCashFlowHedgingInstrumentsUsed": "2020",
|
|
733
|
-
"DescriptionOfTypesOfPriceRiskDerivativesNotDesignatedAsHedgingInstruments": "2020",
|
|
734
|
-
"DescriptionOfTypesOfPriceRiskFairValueHedgingInstrumentsUsed": "2020",
|
|
735
|
-
"DescriptionOfUnassumedDebtOfSubsidiary": "2016-01-31",
|
|
736
|
-
"DetailsOfNonmonetaryTransactionsTableTextBlock": "2016-01-31",
|
|
737
|
-
"DeterioratedLoansTransferredInDebtSecuritiesAccreditableYieldNetIncreaseDecreaseAbstract": "2022",
|
|
738
|
-
"DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member": "2022",
|
|
739
|
-
"DirectCostsOfHotels": "2018-01-31",
|
|
740
|
-
"DirectCostsOfHotelsAbstract": "2018-01-31",
|
|
741
|
-
"DirectCostsOfLeasedHotels": "2016-01-31",
|
|
742
|
-
"DirectCostsOfOwnedHotels": "2018-01-31",
|
|
743
|
-
"DirectFinancingLeaseNetInvestmentInLeaseChangeInPresentValueExpenseReversal": "2022",
|
|
744
|
-
"DirectFinancingLeaseNetInvestmentInLeaseNotPastDue": "2021",
|
|
745
|
-
"DirectFinancingLeaseNetInvestmentInLeasePastDue": "2021",
|
|
746
|
-
"DirectOperatingCostRoyaltyExpense": "2018-01-31",
|
|
747
|
-
"DisallowedCostsForRecentlyCompletedPlantPolicy": "2016-01-31",
|
|
748
|
-
"DisclosureOfAlternativePressureBaseForCalculatingNaturalGasReservesAndOtherProductionData": "2018-01-31",
|
|
749
|
-
"DisclosureOfCertainMethaneGasReserves": "2018-01-31",
|
|
750
|
-
"DiscontinuationOfCashFlowHedge": "2020",
|
|
751
|
-
"DiscontinuationOfForeignCurrencyCashFlowHedge": "2020",
|
|
752
|
-
"DiscontinuationOfInterestRateCashFlowHedge": "2020",
|
|
753
|
-
"DiscontinuationOfPriceRiskCashFlowHedge": "2020",
|
|
754
|
-
"DiscontinuedOperationGainLossOnDisposalOfDiscontinuedOperationNetOfTaxPerBasicAndDilutedShare": "2022",
|
|
755
|
-
"DiscontinuedOperationIncomeLossFromDiscontinuedOperationNetOfTaxPerBasicAndDilutedShare": "2022",
|
|
756
|
-
"DiscussionOfCashFlowHedgeEffectivenessAssessmentAndMeasurement": "2020",
|
|
757
|
-
"DiscussionOfEffectOfCashFlowHedgesOnResultsOfOperations": "2016-01-31",
|
|
758
|
-
"DiscussionOfEffectOfFairValueHedgesOnResultsOfOperations": "2016-01-31",
|
|
759
|
-
"DiscussionOfFairValueHedgeEffectivenessAssessmentAndMeasurement": "2020",
|
|
760
|
-
"DiscussionOfForeignCurrencyCashFlowHedgeEffectivenessAssessmentAndMeasurement": "2020",
|
|
761
|
-
"DiscussionOfForeignCurrencyFairValueHedgeEffectivenessAssessmentAndMeasurement": "2020",
|
|
762
|
-
"DiscussionOfInterestRateCashFlowHedgeEffectivenessAssessmentAndMeasurement": "2020",
|
|
763
|
-
"DiscussionOfInterestRateFairValueHedgeEffectivenessAssessmentAndMeasurement": "2020",
|
|
764
|
-
"DiscussionOfNetInvestmentHedgeEffectivenessAssessmentAndMeasurement": "2020",
|
|
765
|
-
"DiscussionOfPriceRiskCashFlowHedgeEffectivenessAssessmentAndMeasurement": "2020",
|
|
766
|
-
"DiscussionOfPriceRiskFairValueHedgeEffectivenessAssessmentAndMeasurement": "2020",
|
|
767
|
-
"DisposalGroupIncludingDiscontinuedOperationDeferredTaxAssetCurrent": "2022",
|
|
768
|
-
"DisposalGroupIncludingDiscontinuedOperationDeferredTaxAssetsNoncurrent": "2022",
|
|
769
|
-
"DisposalGroupIncludingDiscontinuedOperationDeferredTaxLiabilitiesCurrent": "2022",
|
|
770
|
-
"DisposalGroupIncludingDiscontinuedOperationDeferredTaxLiabilitiesNoncurrent": "2022",
|
|
771
|
-
"DistributionAndServicingFees": "2018-01-31",
|
|
772
|
-
"DistributionAndServicingFeesAbstract": "2018-01-31",
|
|
773
|
-
"DistributionFees": "2018-01-31",
|
|
774
|
-
"DistributionPaymentMadeToLimitedLiabilityCompanyLLCMemberFormsOtherThanCashOrStockDescription": "2020",
|
|
775
|
-
"DomesticPensionPlansOfForeignEntityDefinedBenefitMember": "2017-01-31",
|
|
776
|
-
"DomesticPostretirementBenefitPlansOfForeignEntityDefinedBenefitMember": "2017-01-31",
|
|
777
|
-
"DueFromAffiliateCurrent": "2023",
|
|
778
|
-
"DueFromAffiliateNoncurrent": "2023",
|
|
779
|
-
"DueFromAffiliates": "2023",
|
|
780
|
-
"DueFromEmployees": "2023",
|
|
781
|
-
"DueFromEmployeesCurrent": "2023",
|
|
782
|
-
"DueFromEmployeesNoncurrent": "2023",
|
|
783
|
-
"DueFromJointVentures": "2023",
|
|
784
|
-
"DueFromJointVenturesCurrent": "2023",
|
|
785
|
-
"DueFromJointVenturesNoncurrent": "2023",
|
|
786
|
-
"DueFromOfficersOrStockholders": "2023",
|
|
787
|
-
"DueFromOfficersOrStockholdersCurrent": "2023",
|
|
788
|
-
"DueFromOfficersOrStockholdersNoncurrent": "2023",
|
|
789
|
-
"DueFromOtherRelatedParties": "2023",
|
|
790
|
-
"DueFromOtherRelatedPartiesCurrent": "2023",
|
|
791
|
-
"DueFromOtherRelatedPartiesNoncurrent": "2023",
|
|
792
|
-
"DueFromRelatedParties": "2023",
|
|
793
|
-
"DueFromRelatedPartiesCurrent": "2023",
|
|
794
|
-
"DueFromRelatedPartiesCurrentAbstract": "2023",
|
|
795
|
-
"DueFromRelatedPartiesNoncurrent": "2023",
|
|
796
|
-
"DueFromRelatedPartiesNoncurrentAbstract": "2023",
|
|
797
|
-
"DueFromRelatedPartiesUnclassifiedAbstract": "2023",
|
|
798
|
-
"DueToAffiliateCurrent": "2023",
|
|
799
|
-
"DueToAffiliateCurrentAndNoncurrent": "2023",
|
|
800
|
-
"DueToAffiliateNoncurrent": "2023",
|
|
801
|
-
"DueToEmployeesCurrent": "2023",
|
|
802
|
-
"DueToEmployeesCurrentAndNoncurrent": "2023",
|
|
803
|
-
"DueToEmployeesNoncurrent": "2023",
|
|
804
|
-
"DueToOfficersOrStockholdersCurrent": "2023",
|
|
805
|
-
"DueToOfficersOrStockholdersCurrentAndNoncurrent": "2023",
|
|
806
|
-
"DueToOfficersOrStockholdersNoncurrent": "2023",
|
|
807
|
-
"DueToOtherRelatedPartiesClassifiedCurrent": "2023",
|
|
808
|
-
"DueToOtherRelatedPartiesCurrentAndNoncurrent": "2023",
|
|
809
|
-
"DueToOtherRelatedPartiesNoncurrent": "2023",
|
|
810
|
-
"DueToRelatedPartiesCurrent": "2023",
|
|
811
|
-
"DueToRelatedPartiesCurrentAbstract": "2023",
|
|
812
|
-
"DueToRelatedPartiesCurrentAndNoncurrent": "2023",
|
|
813
|
-
"DueToRelatedPartiesCurrentAndNoncurrentAbstract": "2023",
|
|
814
|
-
"DueToRelatedPartiesNoncurrent": "2023",
|
|
815
|
-
"DueToRelatedPartiesNoncurrentAbstract": "2023",
|
|
816
|
-
"EarningsLossesOfMinorityInterestAndEquityMethodInvestmentsAbstract": "2016-01-31",
|
|
817
|
-
"EarningsPerShareBasicAndDiluted": "2022",
|
|
818
|
-
"EarningsPerShareBasicAndDilutedAbstract": "2022",
|
|
819
|
-
"EarningsPerShareBasicAndDilutedOtherDisclosuresAbstract": "2022",
|
|
820
|
-
"EarningsPerSharePolicyBasic": "2020",
|
|
821
|
-
"EarningsPerSharePolicyDiluted": "2020",
|
|
822
|
-
"EffectOfExchangeRateOnCash": "2022",
|
|
823
|
-
"EffectOfExchangeRateOnCashAbstract": "2022",
|
|
824
|
-
"EffectOfExchangeRateOnCashAndCashEquivalents": "2022",
|
|
825
|
-
"EffectOfExchangeRateOnCashAndCashEquivalentsAbstract": "2022",
|
|
826
|
-
"EffectOfExchangeRateOnCashAndCashEquivalentsContinuingOperations": "2022",
|
|
827
|
-
"EffectOfExchangeRateOnCashAndCashEquivalentsDiscontinuedOperations": "2022",
|
|
828
|
-
"EffectOfExchangeRateOnCashContinuingOperations": "2022",
|
|
829
|
-
"EffectOfExchangeRateOnCashDiscontinuedOperations": "2022",
|
|
830
|
-
"EffectOfFourthQuarterEventsAmount": "2016-01-31",
|
|
831
|
-
"EffectOfTaxCutsAndJobsActOf2017Abstract": "2022",
|
|
832
|
-
"EffectOfTaxCutsAndJobsActOf2017AccountingIncompleteNoEstimateAbstract": "2020",
|
|
833
|
-
"EffectOfTaxCutsAndJobsActOf2017IncompleteAccountingProvisionalAbstract": "2020",
|
|
834
|
-
"EffectOnAccumulatedOtherComprehensiveIncomeLossDueToChangeInMeasurementDateBeforeTax": "2016-01-31",
|
|
835
|
-
"EffectOnAccumulatedOtherComprehensiveIncomeLossDueToChangeInMeasurementDateNetOfTax": "2016-01-31",
|
|
836
|
-
"EffectOnAccumulatedOtherComprehensiveIncomeLossDueToChangeInMeasurementDateNetOfTaxAbstract": "2016-01-31",
|
|
837
|
-
"EffectOnAccumulatedOtherComprehensiveIncomeLossDueToChangeInMeasurementDateTax": "2016-01-31",
|
|
838
|
-
"EffectOnRetainedEarningsAccumulatedDeficitDueToChangeInMeasurementDateBeforeTax": "2016-01-31",
|
|
839
|
-
"EffectOnRetainedEarningsAccumulatedDeficitDueToChangeInMeasurementDateNetOfTax": "2016-01-31",
|
|
840
|
-
"EffectOnRetainedEarningsAccumulatedDeficitDueToChangeInMeasurementDateNetOfTaxAbstract": "2016-01-31",
|
|
841
|
-
"EffectOnRetainedEarningsAccumulatedDeficitDueToChangeInMeasurementDateTax": "2016-01-31",
|
|
842
|
-
"EffectiveIncomeTaxRateReconciliationDeductionsQualifiedProductionActivities": "2022",
|
|
843
|
-
"EffectiveIncomeTaxRateReconciliationTaxCutsAndJobsActOf2017Amount": "2023",
|
|
844
|
-
"EffectiveIncomeTaxRateReconciliationTaxCutsAndJobsActOf2017Percent": "2022",
|
|
845
|
-
"EffectiveIncomeTaxRateReconciliationTaxCutsAndJobsActOf2017TransitionTaxOnAccumulatedForeignEarningsAmount": "2023",
|
|
846
|
-
"EffectiveIncomeTaxRateReconciliationTaxCutsAndJobsActOf2017TransitionTaxOnAccumulatedForeignEarningsPercent": "2022",
|
|
847
|
-
"ElectricBundledRevenue": "2016-01-31",
|
|
848
|
-
"ElectricDomesticRegulatedRevenue": "2018-01-31",
|
|
849
|
-
"ElectricProductionExpense": "2018-01-31",
|
|
850
|
-
"ElectricUtilityRevenue": "2018-01-31",
|
|
851
|
-
"ElectricUtilityRevenueAbstract": "2018-01-31",
|
|
852
|
-
"ElectricWorldwideUnregulatedRevenue": "2018-01-31",
|
|
853
|
-
"ElectricalDistributionRevenue": "2018-01-31",
|
|
854
|
-
"ElectricalGenerationRevenue": "2018-01-31",
|
|
855
|
-
"ElectricalTransmissionAndDistributionRevenue": "2018-01-31",
|
|
856
|
-
"ElectricalTransmissionAndDistributionRevenueAbstract": "2018-01-31",
|
|
857
|
-
"ElectricalTransmissionRevenue": "2018-01-31",
|
|
858
|
-
"EligibleItemOrGroupForFairValueOptionAxis": "2016-01-31",
|
|
859
|
-
"EmbeddedDerivativeAccountingMethod": "2020",
|
|
860
|
-
"EmbeddedServiceCosts": "2016-01-31",
|
|
861
|
-
"EmployeeServiceShareBasedCompensationCashReceivedFromExerciseOfStockOptions": "2017-01-31",
|
|
862
|
-
"EmployeeServiceShareBasedCompensationEstimatedQuantityOfSharesToBeRepurchasedInFollowingPeriodMaximum": "2019-01-31",
|
|
863
|
-
"EmployeeServiceShareBasedCompensationEstimatedQuantityOfSharesToBeRepurchasedInFollowingPeriodMinimum": "2019-01-31",
|
|
864
|
-
"EmployeeServiceShareBasedCompensationTaxBenefitRealizedFromExerciseOfStockOptions": "2017-01-31",
|
|
865
|
-
"EmployeeStockOwnershipPlanESOPChangeInFairValueMeasurementFromPriorValuations": "2019-01-31",
|
|
866
|
-
"EmployeeStockOwnershipPlanESOPEffectOfChangeinFairValueMeasurement": "2019-01-31",
|
|
867
|
-
"EntertainmentAbstract": "2022",
|
|
868
|
-
"EnvironmentalCostRecognizedCaption": "2023",
|
|
869
|
-
"EnvironmentalExitCostsReasonablyPossibleAdditionalLossesHighEstimate": "2016-01-31",
|
|
870
|
-
"EnvironmentalExitCostsReasonablyPossibleAdditionalLossesLowEstimate": "2016-01-31",
|
|
871
|
-
"EquipmentLeasedToOtherPartyMember": "2021",
|
|
872
|
-
"EquityAndCostMethodInvestmentsPolicy": "2021",
|
|
873
|
-
"EquityIssuedInBusinessCombinationMember": "2019-01-31",
|
|
874
|
-
"EquityMethodInvestmentNetSalesProceeds": "2016-01-31",
|
|
875
|
-
"EquityMethodInvestmentSummarizedFinancialInformationAssets": "2020",
|
|
876
|
-
"EquityMethodInvestmentSummarizedFinancialInformationAssetsAbstract": "2020",
|
|
877
|
-
"EquityMethodInvestmentSummarizedFinancialInformationCostOfSales": "2020",
|
|
878
|
-
"EquityMethodInvestmentSummarizedFinancialInformationCurrentAssets": "2020",
|
|
879
|
-
"EquityMethodInvestmentSummarizedFinancialInformationCurrentLiabilities": "2020",
|
|
880
|
-
"EquityMethodInvestmentSummarizedFinancialInformationEquity": "2020",
|
|
881
|
-
"EquityMethodInvestmentSummarizedFinancialInformationEquityAbstract": "2020",
|
|
882
|
-
"EquityMethodInvestmentSummarizedFinancialInformationEquityOrCapital": "2020",
|
|
883
|
-
"EquityMethodInvestmentSummarizedFinancialInformationGrossProfitLoss": "2020",
|
|
884
|
-
"EquityMethodInvestmentSummarizedFinancialInformationGrossProfitLossAbstract": "2020",
|
|
885
|
-
"EquityMethodInvestmentSummarizedFinancialInformationIncomeLossFromContinuingOperationsBeforeExtraordinaryItems": "2020",
|
|
886
|
-
"EquityMethodInvestmentSummarizedFinancialInformationIncomeStatementAbstract": "2020",
|
|
887
|
-
"EquityMethodInvestmentSummarizedFinancialInformationLiabilities": "2020",
|
|
888
|
-
"EquityMethodInvestmentSummarizedFinancialInformationLiabilitiesAbstract": "2020",
|
|
889
|
-
"EquityMethodInvestmentSummarizedFinancialInformationLiabilitiesAndEquity": "2020",
|
|
890
|
-
"EquityMethodInvestmentSummarizedFinancialInformationLiabilitiesAndEquityAbstract": "2020",
|
|
891
|
-
"EquityMethodInvestmentSummarizedFinancialInformationMinorityInterest": "2020",
|
|
892
|
-
"EquityMethodInvestmentSummarizedFinancialInformationNetIncomeLoss": "2020",
|
|
893
|
-
"EquityMethodInvestmentSummarizedFinancialInformationNoncurrentAssets": "2020",
|
|
894
|
-
"EquityMethodInvestmentSummarizedFinancialInformationNoncurrentLiabilities": "2020",
|
|
895
|
-
"EquityMethodInvestmentSummarizedFinancialInformationRedeemablePreferredStock": "2020",
|
|
896
|
-
"EquityMethodInvestmentSummarizedFinancialInformationRevenue": "2020",
|
|
897
|
-
"EquityMethodInvestmentUnrealizedIntercompanyProfitLossNotEliminatedAbstract": "2019-01-31",
|
|
898
|
-
"EquityMethodInvestmentUnrealizedIntercompanyProfitLossNotEliminatedAmount": "2020",
|
|
899
|
-
"EquityMethodInvestmentUnrealizedIntercompanyProfitLossNotEliminatedDescription": "2019-01-31",
|
|
900
|
-
"EquitySecuritiesByEntitySizeAxis": "2018-01-31",
|
|
901
|
-
"EquitySecuritiesEntitySizeMember": "2018-01-31",
|
|
902
|
-
"ErrorCorrectionsAndPriorPeriodAdjustmentsInterimPeriodsOfFiscalYear": "2016-01-31",
|
|
903
|
-
"ExcessNetCapitalAt1000Percent": "2019-01-31",
|
|
904
|
-
"ExcessTaxBenefitFromShareBasedCompensationFinancingActivities": "2022",
|
|
905
|
-
"ExcessTaxBenefitFromShareBasedCompensationOperatingActivities": "2022",
|
|
906
|
-
"ExchangeFeesPolicy": "2016-01-31",
|
|
907
|
-
"ExchangeMembershipContributedPolicy": "2016-01-31",
|
|
908
|
-
"ExchangeMembershipWithRightToConductBusinessPolicy": "2016-01-31",
|
|
909
|
-
"ExchangeMembershipWithRightsOfOwnershipAndToConductBusinessPolicy": "2016-01-31",
|
|
910
|
-
"ExpectedAmortizationExpenseOfEndingPresentValueOfFutureInsuranceProfitsYearFive": "2017-01-31",
|
|
911
|
-
"ExpectedAmortizationExpenseOfEndingPresentValueOfFutureInsuranceProfitsYearFour": "2017-01-31",
|
|
912
|
-
"ExpectedAmortizationExpenseOfEndingPresentValueOfFutureInsuranceProfitsYearOne": "2017-01-31",
|
|
913
|
-
"ExpectedAmortizationExpenseOfEndingPresentValueOfFutureInsuranceProfitsYearThree": "2017-01-31",
|
|
914
|
-
"ExpectedAmortizationExpenseOfEndingPresentValueOfFutureInsuranceProfitsYearTwo": "2017-01-31",
|
|
915
|
-
"ExplorationAndProductionCosts": "2018-01-31",
|
|
916
|
-
"ExplorationAndProductionRevenue": "2018-01-31",
|
|
917
|
-
"ExplorationExpenseMining": "2018-01-31",
|
|
918
|
-
"ExtendedProductWarrantyAccrualCurrencyTranslationIncreaseDecrease": "2016-01-31",
|
|
919
|
-
"ExtraordinaryItemAxis": "2019-01-31",
|
|
920
|
-
"ExtraordinaryItemChangeInPriorPeriodEstimateYearOfOrigin": "2019-01-31",
|
|
921
|
-
"ExtraordinaryItemDescriptionOfEventOrTransaction": "2019-01-31",
|
|
922
|
-
"ExtraordinaryItemDomain": "2019-01-31",
|
|
923
|
-
"ExtraordinaryItemEarningsPerShareImpactGross": "2019-01-31",
|
|
924
|
-
"ExtraordinaryItemEarningsPerShareImpactNet": "2019-01-31",
|
|
925
|
-
"ExtraordinaryItemFourthQuarter": "2019-01-31",
|
|
926
|
-
"ExtraordinaryItemGainOrLossNetOfTaxAttributableToNoncontrollingInterest": "2019-01-31",
|
|
927
|
-
"ExtraordinaryItemGainOrLossNetOfTaxAttributableToReportingEntity": "2019-01-31",
|
|
928
|
-
"ExtraordinaryItemGainOrLossNetOfTaxAttributableToReportingEntityAbstract": "2016-01-31",
|
|
929
|
-
"ExtraordinaryItemLineItems": "2019-01-31",
|
|
930
|
-
"ExtraordinaryItemMember": "2019-01-31",
|
|
931
|
-
"ExtraordinaryItemNetOfTax": "2019-01-31",
|
|
932
|
-
"ExtraordinaryItemNetOfTaxAbstract": "2016-01-31",
|
|
933
|
-
"ExtraordinaryItemOfInvestee": "2019-01-31",
|
|
934
|
-
"ExtraordinaryItemsAdjustmentIncludedInIncomeFromContinuingOperationsNature": "2019-01-31",
|
|
935
|
-
"ExtraordinaryItemsAdjustmentIncludedInIncomeFromOperationsGainLossAmount": "2019-01-31",
|
|
936
|
-
"ExtraordinaryItemsDisclosureTextBlock": "2019-01-31",
|
|
937
|
-
"ExtraordinaryItemsGross": "2019-01-31",
|
|
938
|
-
"ExtraordinaryItemsGrossAbstract": "2016-01-31",
|
|
939
|
-
"ExtraordinaryItemsTable": "2019-01-31",
|
|
940
|
-
"FIN48Member": "2016-01-31",
|
|
941
|
-
"FacilityMembershipAndOperationsCosts": "2018-01-31",
|
|
942
|
-
"FacilityMembershipAndOperationsRevenue": "2018-01-31",
|
|
943
|
-
"FairValueAssetsAndLiabilitiesMeasuredOnRecurringAndNonrecurringBasisAlternativeAbstract": "2018-01-31",
|
|
944
|
-
"FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAbstract": "2018-01-31",
|
|
945
|
-
"FairValueAssetsLevel1ToLevel2TransfersAmount": "2022",
|
|
946
|
-
"FairValueAssetsLevel1ToLevel2TransfersDescription": "2022",
|
|
947
|
-
"FairValueAssetsLevel2ToLevel1TransfersAmount": "2022",
|
|
948
|
-
"FairValueAssetsLevel2ToLevel1TransfersDescription": "2022",
|
|
949
|
-
"FairValueAssumptionsAndMethodologyForAssetsAndLiabilitiesAbstract": "2018-01-31",
|
|
950
|
-
"FairValueAssumptionsExercisePrice": "2018-01-31",
|
|
951
|
-
"FairValueAssumptionsExpectedDividendPayments": "2018-01-31",
|
|
952
|
-
"FairValueAssumptionsExpectedDividendRate": "2018-01-31",
|
|
953
|
-
"FairValueAssumptionsExpectedTerm": "2018-01-31",
|
|
954
|
-
"FairValueAssumptionsExpectedTermSimplifiedMethod": "2018-01-31",
|
|
955
|
-
"FairValueAssumptionsExpectedVolatilityRate": "2018-01-31",
|
|
956
|
-
"FairValueAssumptionsRiskFreeInterestRate": "2018-01-31",
|
|
957
|
-
"FairValueAssumptionsWeightedAverageExpectedDividend": "2018-01-31",
|
|
958
|
-
"FairValueAssumptionsWeightedAverageVolatilityRate": "2018-01-31",
|
|
959
|
-
"FairValueByShareholdersEquityClassDomain": "2019-01-31",
|
|
960
|
-
"FairValueConcentrationOfRiskCostMethodInvestments": "2018-01-31",
|
|
961
|
-
"FairValueEquityLevel1ToLevel2TransfersAmount": "2022",
|
|
962
|
-
"FairValueEquityLevel1ToLevel2TransfersDescription": "2022",
|
|
963
|
-
"FairValueEquityLevel2ToLevel1TransfersAmount": "2022",
|
|
964
|
-
"FairValueEquityLevel2ToLevel1TransfersDescription": "2022",
|
|
965
|
-
"FairValueEstimateNotPracticableAccountsPayable": "2018-01-31",
|
|
966
|
-
"FairValueEstimateNotPracticableAccountsReceivable": "2018-01-31",
|
|
967
|
-
"FairValueEstimateNotPracticableAccruedLiabilities": "2018-01-31",
|
|
968
|
-
"FairValueEstimateNotPracticableBorrowings": "2018-01-31",
|
|
969
|
-
"FairValueEstimateNotPracticableCarryingReportedAmountMember": "2018-01-31",
|
|
970
|
-
"FairValueEstimateNotPracticableCashAndCashEquivalents": "2018-01-31",
|
|
971
|
-
"FairValueEstimateNotPracticableCommitments": "2018-01-31",
|
|
972
|
-
"FairValueEstimateNotPracticableCostMethodInvestments": "2018-01-31",
|
|
973
|
-
"FairValueEstimateNotPracticableDebtInstrument": "2018-01-31",
|
|
974
|
-
"FairValueEstimateNotPracticableDeposits": "2018-01-31",
|
|
975
|
-
"FairValueEstimateNotPracticableDisclosureItemsAxis": "2018-01-31",
|
|
976
|
-
"FairValueEstimateNotPracticableDisclosureItemsDomain": "2018-01-31",
|
|
977
|
-
"FairValueEstimateNotPracticableEffectiveInterestRateMember": "2018-01-31",
|
|
978
|
-
"FairValueEstimateNotPracticableEquityMethodInvestments": "2018-01-31",
|
|
979
|
-
"FairValueEstimateNotPracticableFederalFundsPurchased": "2018-01-31",
|
|
980
|
-
"FairValueEstimateNotPracticableFederalFundsSoldAndSecuritiesBorrowedOrPurchasedUnderAgreementsToResell": "2018-01-31",
|
|
981
|
-
"FairValueEstimateNotPracticableFederalHomeLoanBankBorrowings": "2018-01-31",
|
|
982
|
-
"FairValueEstimateNotPracticableFinancialAssetsBalanceSheetGroupingsAbstract": "2018-01-31",
|
|
983
|
-
"FairValueEstimateNotPracticableFinancialLiabilitiesBalanceSheetGroupingsAbstract": "2018-01-31",
|
|
984
|
-
"FairValueEstimateNotPracticableFinancialStatementCaptionsLineItems": "2018-01-31",
|
|
985
|
-
"FairValueEstimateNotPracticableGuarantees": "2018-01-31",
|
|
986
|
-
"FairValueEstimateNotPracticableInvestmentInFederalHomeLoanBankStock": "2018-01-31",
|
|
987
|
-
"FairValueEstimateNotPracticableInvestments": "2018-01-31",
|
|
988
|
-
"FairValueEstimateNotPracticableLiabilitiesRelatedToInvestmentContracts": "2018-01-31",
|
|
989
|
-
"FairValueEstimateNotPracticableLoansReceivable": "2018-01-31",
|
|
990
|
-
"FairValueEstimateNotPracticableMandatorilyRedeemablePreferredStock": "2018-01-31",
|
|
991
|
-
"FairValueEstimateNotPracticableMaturityDateMember": "2018-01-31",
|
|
992
|
-
"FairValueEstimateNotPracticableMortgageBackedSecuritiesHeldToMaturity": "2018-01-31",
|
|
993
|
-
"FairValueEstimateNotPracticableNotesReceivable": "2018-01-31",
|
|
994
|
-
"FairValueEstimateNotPracticablePremiumsReceivable": "2018-01-31",
|
|
995
|
-
"FairValueEstimateNotPracticableSecuritiesLoanedOrSoldUnderAgreementsToRepurchase": "2018-01-31",
|
|
996
|
-
"FairValueEstimateNotPracticableSecuritiesSoldNotYetPurchased": "2018-01-31",
|
|
997
|
-
"FairValueEstimateNotPracticableSeniorDebtObligations": "2018-01-31",
|
|
998
|
-
"FairValueEstimateNotPracticableSubordinatedDebtObligations": "2018-01-31",
|
|
999
|
-
"FairValueEstimateNotPracticableTable": "2018-01-31",
|
|
1000
|
-
"FairValueEstimateNotPracticableTextBlock": "2018-01-31",
|
|
1001
|
-
"FairValueEstimateNotPracticableTradingAccountAssets": "2018-01-31",
|
|
1002
|
-
"FairValueEstimateNotPracticableTradingLiabilities": "2018-01-31",
|
|
1003
|
-
"FairValueInputsAbstract": "2018-01-31",
|
|
1004
|
-
"FairValueInputsAssetsQuantitativeInformationLineItems": "2018-01-31",
|
|
1005
|
-
"FairValueInputsAssetsQuantitativeInformationTable": "2018-01-31",
|
|
1006
|
-
"FairValueInputsAssetsQuantitativeInformationTableTextBlock": "2018-01-31",
|
|
1007
|
-
"FairValueInputsCapRate": "2018-01-31",
|
|
1008
|
-
"FairValueInputsComparabilityAdjustments": "2018-01-31",
|
|
1009
|
-
"FairValueInputsControlPremium": "2018-01-31",
|
|
1010
|
-
"FairValueInputsCounterpartyCreditRisk": "2018-01-31",
|
|
1011
|
-
"FairValueInputsDiscountForLackOfMarketability": "2018-01-31",
|
|
1012
|
-
"FairValueInputsDiscountRate": "2018-01-31",
|
|
1013
|
-
"FairValueInputsEarningsBeforeInterestTaxesDepreciationAndAmortizationMultiple": "2018-01-31",
|
|
1014
|
-
"FairValueInputsEntityCreditRisk": "2018-01-31",
|
|
1015
|
-
"FairValueInputsEquityQuantitativeInformationLineItems": "2018-01-31",
|
|
1016
|
-
"FairValueInputsInstrumentsClassifiedInShareholdersEquityQuantitativeInformationTable": "2018-01-31",
|
|
1017
|
-
"FairValueInputsInstrumentsClassifiedInShareholdersEquityQuantitativeInformationTableTextBlock": "2018-01-31",
|
|
1018
|
-
"FairValueInputsLiabilitiesQuantitativeInformationLineItems": "2018-01-31",
|
|
1019
|
-
"FairValueInputsLiabilitiesQuantitativeInformationTable": "2018-01-31",
|
|
1020
|
-
"FairValueInputsLiabilitiesQuantitativeInformationTableTextBlock": "2018-01-31",
|
|
1021
|
-
"FairValueInputsLongTermNetOfTaxOperatingIncomeMarginPercent": "2018-01-31",
|
|
1022
|
-
"FairValueInputsLongTermRevenueGrowthRate": "2018-01-31",
|
|
1023
|
-
"FairValueInputsLongtermPreTaxOperatingMarginPercent": "2018-01-31",
|
|
1024
|
-
"FairValueInputsLossSeverity": "2018-01-31",
|
|
1025
|
-
"FairValueInputsOfferedQuotes": "2018-01-31",
|
|
1026
|
-
"FairValueInputsPrepaymentRate": "2018-01-31",
|
|
1027
|
-
"FairValueInputsPriceEarningsRatioMultiple": "2018-01-31",
|
|
1028
|
-
"FairValueInputsPricePerSquareFoot": "2018-01-31",
|
|
1029
|
-
"FairValueInputsPricePerSquareMeter": "2018-01-31",
|
|
1030
|
-
"FairValueInputsProbabilityOfDefault": "2018-01-31",
|
|
1031
|
-
"FairValueInputsRevenueMultiple": "2018-01-31",
|
|
1032
|
-
"FairValueInstrumentsClassifiedInShareholdersEquityMeasuredOnRecurringBasisChangeInUnrealizedGainLoss": "2019-01-31",
|
|
1033
|
-
"FairValueInstrumentsClassifiedInShareholdersEquityMeasuredOnRecurringBasisUnobservableInputReconciliationCalculationRollForward": "2019-01-31",
|
|
1034
|
-
"FairValueInstrumentsClassifiedInShareholdersEquityMeasuredOnRecurringBasisUnobservableInputReconciliationLineItems": "2019-01-31",
|
|
1035
|
-
"FairValueInstrumentsClassifiedInShareholdersEquityMeasuredOnRecurringBasisUnobservableInputReconciliationTable": "2019-01-31",
|
|
1036
|
-
"FairValueInstrumentsClassifiedInShareholdersEquityMeasuredOnRecurringBasisUnobservableInputReconciliationTableTextBlock": "2019-01-31",
|
|
1037
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareReasonsForMeasurements": "2016-01-31",
|
|
1038
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareSaleForOtherThanNAVAbstract": "2016-01-31",
|
|
1039
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareSaleForOtherThanNAVAmount": "2016-01-31",
|
|
1040
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareSaleForOtherThanNAVDescription": "2016-01-31",
|
|
1041
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputGainsLossesIncludedInEarningsAssetsAndLiabilitiesContinuedToBeHeldAbstract": "2016-01-31",
|
|
1042
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputGainsLossesIncludedInEarningsAssetsAndLiabilitiesContinuedToBeHeldAmount": "2016-01-31",
|
|
1043
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputGainsLossesIncludedInEarningsAssetsAndLiabilitiesContinuedToBeHeldDescription": "2016-01-31",
|
|
1044
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputGainsLossesIncludedInEarningsNet": "2016-01-31",
|
|
1045
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputGainsLossesIncludedInEarningsNetAbstract": "2016-01-31",
|
|
1046
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputGainsLossesIncludedInEarningsNetAlternativeAbstract": "2016-01-31",
|
|
1047
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputGainsLossesIncludedInEarningsNetDescription": "2016-01-31",
|
|
1048
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputGainsLossesNet": "2016-01-31",
|
|
1049
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputGainsLossesNetAbstract": "2016-01-31",
|
|
1050
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputInvestmentHoldingsMovementsIssuances": "2016-01-31",
|
|
1051
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputInvestmentHoldingsMovementsNet": "2016-01-31",
|
|
1052
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputInvestmentHoldingsMovementsNetAbstract": "2016-01-31",
|
|
1053
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputInvestmentHoldingsMovementsPurchases": "2016-01-31",
|
|
1054
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputInvestmentHoldingsMovementsSales": "2016-01-31",
|
|
1055
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputInvestmentHoldingsMovementsSettlements": "2016-01-31",
|
|
1056
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputPeriodIncreaseDecrease": "2016-01-31",
|
|
1057
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputRealizedAndUnrealizedGainsIncludedInEarnings": "2016-01-31",
|
|
1058
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputRealizedAndUnrealizedGainsIncludedInEarningsAbstract": "2016-01-31",
|
|
1059
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputRealizedAndUnrealizedLossesIncludedInEarnings": "2016-01-31",
|
|
1060
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputRealizedAndUnrealizedLossesIncludedInEarningsAbstract": "2016-01-31",
|
|
1061
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputRealizedGains": "2016-01-31",
|
|
1062
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputRealizedGainsLossesNet": "2016-01-31",
|
|
1063
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputRealizedGainsLossesNetAbstract": "2016-01-31",
|
|
1064
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputRealizedLosses": "2016-01-31",
|
|
1065
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputRollForward": "2016-01-31",
|
|
1066
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputTranserfsIn": "2016-01-31",
|
|
1067
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputTranserfsNet": "2016-01-31",
|
|
1068
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputTranserfsNetAbstract": "2016-01-31",
|
|
1069
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputTranserfsOut": "2016-01-31",
|
|
1070
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsChangesInAssetsAndLiabilities": "2016-01-31",
|
|
1071
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsIncludedInEarnings": "2016-01-31",
|
|
1072
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsLossesChangesInAssetsAndLiabilitiesAbstract": "2016-01-31",
|
|
1073
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsLossesChangesInAssetsAndLiabilitiesContinuedToBeHeldAbstract": "2016-01-31",
|
|
1074
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsLossesChangesInAssetsAndLiabilitiesContinuedToBeHeldAmount": "2016-01-31",
|
|
1075
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsLossesChangesInAssetsAndLiabilitiesContinuedToBeHeldDescription": "2016-01-31",
|
|
1076
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsLossesChangesInAssetsAndLiabilitiesNet": "2016-01-31",
|
|
1077
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsLossesChangesInAssetsAndLiabilitiesNetDescription": "2016-01-31",
|
|
1078
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsLossesIncludedInEarningsNet": "2016-01-31",
|
|
1079
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedGainsLossesIncludedInEarningsNetAbstract": "2016-01-31",
|
|
1080
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedLossesChangesInAssetsAndLiabilities": "2016-01-31",
|
|
1081
|
-
"FairValueInvestmentsEntitiesThatCalculateNetAssetValuePerShareUnobservableInputUnrealizedLossesIncludedInEarnings": "2016-01-31",
|
|
1082
|
-
"FairValueLevel3TransfersInDescription": "2019-01-31",
|
|
1083
|
-
"FairValueLevel3TransfersOutDescription": "2019-01-31",
|
|
1084
|
-
"FairValueLiabilitiesLevel1ToLevel2TransfersAmount": "2022",
|
|
1085
|
-
"FairValueLiabilitiesLevel1ToLevel2TransfersDescription": "2022",
|
|
1086
|
-
"FairValueLiabilitiesLevel2ToLevel1TransfersAmount": "2022",
|
|
1087
|
-
"FairValueLiabilitiesLevel2ToLevel1TransfersDescription": "2022",
|
|
1088
|
-
"FairValueLiabilitiesMeasuredOnRecurringAndNonrecurringBasisAlternativeAbstract": "2018-01-31",
|
|
1089
|
-
"FairValueMeasuredOnRecurringBasisGainLossIncludedInEarnings": "2019-01-31",
|
|
1090
|
-
"FairValueMeasuredOnRecurringBasisGainLossIncludedInEarningsDescription": "2019-01-31",
|
|
1091
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetAndLiabilityGainLossIncludedInOtherComprehensiveIncomeLossDescription": "2019-01-31",
|
|
1092
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetGainLossIncludedInEarningsDescription": "2019-01-31",
|
|
1093
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisGainLossIncludedInOtherComprehensiveIncomeLoss": "2019-01-31",
|
|
1094
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityGainLossIncludedInEarnings": "2019-01-31",
|
|
1095
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityGainLossIncludedInEarningsDescription": "2019-01-31",
|
|
1096
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityGainLossIncludedInOtherComprehensiveIncomeLoss": "2019-01-31",
|
|
1097
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityGainLossIncludedInOtherComprehensiveIncomeLossDescription": "2019-01-31",
|
|
1098
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityIssues": "2019-01-31",
|
|
1099
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityPeriodIncreaseDecrease": "2019-01-31",
|
|
1100
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityPurchases": "2019-01-31",
|
|
1101
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityPurchasesSalesIssuesSettlements": "2019-01-31",
|
|
1102
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityPurchasesSalesIssuesSettlementsAbstract": "2019-01-31",
|
|
1103
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquitySales": "2019-01-31",
|
|
1104
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquitySettlements": "2019-01-31",
|
|
1105
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityTransfersIntoLevel3": "2019-01-31",
|
|
1106
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityTransfersNet": "2019-01-31",
|
|
1107
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityTransfersNetAbstract": "2019-01-31",
|
|
1108
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisInstrumentsClassifiedInShareholdersEquityTransfersOutOfLevel3": "2019-01-31",
|
|
1109
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisLiabilityGainLossIncludedInEarningsDescription": "2019-01-31",
|
|
1110
|
-
"FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisValueOfInstrumentsClassifiedInShareholdersEquity": "2019-01-31",
|
|
1111
|
-
"FairValueMeasurementsChangesInSignificantAssumptions": "2018-01-31",
|
|
1112
|
-
"FairValueMeasurementsChangesInValuationTechniques": "2018-01-31",
|
|
1113
|
-
"FairValueMeasurementsSignificantAssumptions": "2018-01-31",
|
|
1114
|
-
"FairValueMeasurementsValuationProcessesDescription": "2022",
|
|
1115
|
-
"FairValueMeasurementsValuationTechniques": "2018-01-31",
|
|
1116
|
-
"FairValueNotPracticableReasons": "2018-01-31",
|
|
1117
|
-
"FairValueOptionChangesInInstrumentSpecificCreditRiskGainsLossesOnLiabilitiesReasons": "2023",
|
|
1118
|
-
"FairValueOptionCreditRiskGainsLossesOnLiabilities": "2018-01-31",
|
|
1119
|
-
"FairValueOptionElectionForVariableInterestEntityMember": "2023",
|
|
1120
|
-
"FairValueOptionElectionForVariableInterestEntityReason": "2023",
|
|
1121
|
-
"FairValueOptionEligibleItemOrGroupDomain": "2016-01-31",
|
|
1122
|
-
"FairValueOptionEventsTriggeringElectionReasons": "2023",
|
|
1123
|
-
"FairValueOptionMethodologyAndAssumptions": "2018-01-31",
|
|
1124
|
-
"FairValueOptionQualitativeDisclosuresRelatedToElectionTable": "2018-01-31",
|
|
1125
|
-
"FairValueOptionQualitativeDisclosuresRelatedToElectionTextBlock": "2018-01-31",
|
|
1126
|
-
"FairValueTransfersBetweenLevel1AndLevel2DescriptionAndPolicyAbstract": "2022",
|
|
1127
|
-
"FederalHomeLoanBankAdvancesBranchOfFHLBBankInterestRateRangeFrom": "2016-01-31",
|
|
1128
|
-
"FederalHomeLoanBankAdvancesBranchOfFHLBBankInterestRateRangeTo": "2016-01-31",
|
|
1129
|
-
"FederalHomeLoanBankAdvancesBranchOfFHLBBankWeightedAverageInterestRate": "2016-01-31",
|
|
1130
|
-
"FederalHomeLoanBankAdvancesGeneralDebtObligationsDisclosuresInterestRateRangeFrom": "2016-01-31",
|
|
1131
|
-
"FederalHomeLoanBankAdvancesGeneralDebtObligationsDisclosuresInterestRateRangeTo": "2016-01-31",
|
|
1132
|
-
"FederalHomeLoanBankAdvancesGeneralDebtObligationsDisclosuresWeightedAverageInterestRate": "2016-01-31",
|
|
1133
|
-
"FederalHomeLoanBankAdvancesMaturitiesSummaryByInterestRateTypeAfterFiveYearsInterestRateRange": "2016-01-31",
|
|
1134
|
-
"FederalHomeLoanBankAdvancesMaturitiesSummaryByInterestRateTypeInterestRateRange": "2016-01-31",
|
|
1135
|
-
"FederalHomeLoanBankAdvancesMaturitiesSummaryByInterestRateTypeInterestRateRangeAbstract": "2016-01-31",
|
|
1136
|
-
"FederalHomeLoanBankAdvancesMaturitiesSummaryByInterestRateTypeOneToFiveYearsInterestRateRange": "2016-01-31",
|
|
1137
|
-
"FederalHomeLoanBankAdvancesMaturitiesSummaryByInterestRateTypeUnderOneYearInterestRateRange": "2016-01-31",
|
|
1138
|
-
"FederalHomeLoanBankLeverageRatioActual": "2016-01-31",
|
|
1139
|
-
"FeesAndCommissions": "2018-01-31",
|
|
1140
|
-
"FeesAndCommissionsAbstract": "2018-01-31",
|
|
1141
|
-
"FeesAndCommissionsCorrespondentClearing": "2018-01-31",
|
|
1142
|
-
"FeesAndCommissionsCreditAndDebitCards": "2018-01-31",
|
|
1143
|
-
"FeesAndCommissionsCreditAndDebitCardsAbstract": "2018-01-31",
|
|
1144
|
-
"FeesAndCommissionsCreditCards": "2018-01-31",
|
|
1145
|
-
"FeesAndCommissionsDebitCards": "2018-01-31",
|
|
1146
|
-
"FeesAndCommissionsDepositorAccounts": "2018-01-31",
|
|
1147
|
-
"FeesAndCommissionsFiduciaryAndTrustActivities": "2018-01-31",
|
|
1148
|
-
"FeesAndCommissionsMortgageBanking": "2018-01-31",
|
|
1149
|
-
"FeesAndCommissionsOther": "2018-01-31",
|
|
1150
|
-
"FeesAndCommissionsTransferAgent": "2018-01-31",
|
|
1151
|
-
"FilmsRevenueRecognitionPolicyPolicyTextBlock": "2023",
|
|
1152
|
-
"FinanceLeaseCostAbstract": "2019-01-31",
|
|
1153
|
-
"FinanceLeaseWeightedAverageRemainingLeaseTerm": "2018-01-31",
|
|
1154
|
-
"FinanceLoanAndLeaseReceivablesHeldForInvestmentAllowanceAndNonperformingLoansAllowancePolicy": "2019-01-31",
|
|
1155
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedFourthRollingQuarter": "2016-01-31",
|
|
1156
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedNextRollingQuarter": "2016-01-31",
|
|
1157
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedNextRollingTwelveMonths": "2016-01-31",
|
|
1158
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedNextRollingTwelveMonthsAbstract": "2016-01-31",
|
|
1159
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYear11Through15": "2016-01-31",
|
|
1160
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYear16Through20": "2016-01-31",
|
|
1161
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYear21Through25": "2016-01-31",
|
|
1162
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYear26Through30": "2016-01-31",
|
|
1163
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYear31Through35": "2016-01-31",
|
|
1164
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYear36Through40": "2016-01-31",
|
|
1165
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYearFive": "2016-01-31",
|
|
1166
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYearFour": "2016-01-31",
|
|
1167
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYearSixThroughTen": "2016-01-31",
|
|
1168
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYearThree": "2016-01-31",
|
|
1169
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedRollingYearTwo": "2016-01-31",
|
|
1170
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedSecondRollingQuarter": "2016-01-31",
|
|
1171
|
-
"FinancialGuaranteeInsuranceContractsFutureExpectedPremiumRevenueToBeRecognizedThirdRollingQuarter": "2016-01-31",
|
|
1172
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedFourthRollingQuarter": "2016-01-31",
|
|
1173
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedNextRollingQuarter": "2016-01-31",
|
|
1174
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedNextRollingTwelveMonths": "2016-01-31",
|
|
1175
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedNextRollingTwelveMonthsAbstract": "2016-01-31",
|
|
1176
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRemainderOfFiscalYear": "2016-01-31",
|
|
1177
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYear11Through15": "2016-01-31",
|
|
1178
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYear16Through20": "2016-01-31",
|
|
1179
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYear21Through25": "2016-01-31",
|
|
1180
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYear26Through30": "2016-01-31",
|
|
1181
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYear31Through35": "2016-01-31",
|
|
1182
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYear36Through40": "2016-01-31",
|
|
1183
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYearFive": "2016-01-31",
|
|
1184
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYearFour": "2016-01-31",
|
|
1185
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYearSixThroughTen": "2016-01-31",
|
|
1186
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYearThree": "2016-01-31",
|
|
1187
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedRollingYearTwo": "2016-01-31",
|
|
1188
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedSecondRollingQuarter": "2016-01-31",
|
|
1189
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumExpectedToBeCollectedThirdRollingQuarter": "2016-01-31",
|
|
1190
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivablePremiumPaymentsReceived": "2016-01-31",
|
|
1191
|
-
"FinancialGuaranteeInsuranceContractsPremiumReceivableRollingMaturityAbstract": "2016-01-31",
|
|
1192
|
-
"FinancialGuaranteeInsuranceContractsPremiumsReceivableAdjustmentAccretionOfDiscountOnPremiumReceivable": "2016-01-31",
|
|
1193
|
-
"FinancialGuaranteeInsuranceContractsPremiumsReceivableAdjustmentChangeInPeriodOfContractAbstract": "2022",
|
|
1194
|
-
"FinancialGuaranteeInsuranceContractsPremiumsReceivableAdjustmentOtherAdjustmentsAbstract": "2022",
|
|
1195
|
-
"FinancialGuaranteeInsuranceContractsUnearnedPremiumRevenueRollingMaturityAbstract": "2016-01-31",
|
|
1196
|
-
"FinancialInstrumentsOwnedAndNotPledgedAtFairValue": "2022",
|
|
1197
|
-
"FinancialInstrumentsOwnedAndPledgedAsCollateralAmountEligibleToBeRepledgedByCounterparty": "2022",
|
|
1198
|
-
"FinancialInstrumentsOwnedAndPledgedAsCollateralAmountNotEligibleToBeRepledgedByCounterparty": "2022",
|
|
1199
|
-
"FinancialInstrumentsOwnedAndPledgedAsCollateralAssetsAndAssociatedLiabilitiesQualitativeInformation": "2016-01-31",
|
|
1200
|
-
"FinancialInstrumentsOwnedAndPledgedAsCollateralAssetsNotSeparatelyReportedClassification": "2020",
|
|
1201
|
-
"FinancialInstrumentsOwnedAndPledgedAsCollateralAtFairValue": "2022",
|
|
1202
|
-
"FinancialInstrumentsOwnedAndPledgedAsCollateralAxis": "2018-01-31",
|
|
1203
|
-
"FinancialInstrumentsOwnedAndPledgedAsCollateralTypeDomain": "2018-01-31",
|
|
1204
|
-
"FinancialInstrumentsOwnedAtFairValueAbstract": "2022",
|
|
1205
|
-
"FinancialInstrumentsOwnedAtFairValueByPledgeAbstract": "2022",
|
|
1206
|
-
"FinancialInstrumentsSubjectToMandatoryRedemptionNumberOfStockholders": "2016-01-31",
|
|
1207
|
-
"FinancialServicesCosts": "2018-01-31",
|
|
1208
|
-
"FinancialServicesRevenue": "2018-01-31",
|
|
1209
|
-
"FinancialServicesRevenueAbstract": "2018-01-31",
|
|
1210
|
-
"FinancialStatementLineItemsWithDifferencesInReportedAmountAndReportingCurrencyDenominatedAmountsDomain": "2016-01-31",
|
|
1211
|
-
"FinancingReceivableAdditionalDisclosuresAbstract": "2019-01-31",
|
|
1212
|
-
"FinancingReceivableAfterDeferredIncomeOffset": "2020",
|
|
1213
|
-
"FinancingReceivableAfterDeferredIncomeOffsetAbstract": "2020",
|
|
1214
|
-
"FinancingReceivableAllowanceForCreditLossesFactorsThatInfluencedManagementsJudgment": "2019-01-31",
|
|
1215
|
-
"FinancingReceivableAllowanceForCreditLossesRiskCharacteristics": "2019-01-31",
|
|
1216
|
-
"FinancingReceivableChangeInPresentValueExpenseReversal": "2022",
|
|
1217
|
-
"FinancingReceivableModificationsDeterminationOfAllowanceForCreditLosses1": "2019-01-31",
|
|
1218
|
-
"FinancingReceivableModificationsNatureAndExtentOfTransaction1": "2019-01-31",
|
|
1219
|
-
"FinancingReceivableModificationsSubsequentDefaultDeterminationOfAllowanceForCreditLosses": "2019-01-31",
|
|
1220
|
-
"FinancingReceivableModificationsSubsequentDefaultNatureAndExtentOfTransaction": "2019-01-31",
|
|
1221
|
-
"FinancingReceivableNonaccrualPercentPastDue": "2017-01-31",
|
|
1222
|
-
"FinancingReceivablePastDueAndNotPastDueAbstract": "2021",
|
|
1223
|
-
"FinancingReceivablePercentPastDue": "2017-01-31",
|
|
1224
|
-
"FinancingReceivableRecordedInvestmentAgingAbstract": "2021",
|
|
1225
|
-
"FinancingReceivableRecordedInvestmentCurrent": "2021",
|
|
1226
|
-
"FinancingReceivableRecordedInvestmentPastDue": "2021",
|
|
1227
|
-
"FinancingReceivableTroubledDebtRestructuringAbstract": "2021",
|
|
1228
|
-
"FiniteLivedIntangibleAssetsTranslationAdjustments": "2016-01-31",
|
|
1229
|
-
"FlightEquipmentOwnedAccumulatedDepreciation": "2016-01-31",
|
|
1230
|
-
"FlightEquipmentOwnedGross": "2016-01-31",
|
|
1231
|
-
"FlightEquipmentOwnedNet": "2016-01-31",
|
|
1232
|
-
"FlightEquipmentOwnedNetAbstract": "2016-01-31",
|
|
1233
|
-
"FoodAndBeverageCostOfSales": "2018-01-31",
|
|
1234
|
-
"FoodAndBeverageRevenue": "2018-01-31",
|
|
1235
|
-
"ForeignPensionPlansDefinedBenefitMember": "2017-01-31",
|
|
1236
|
-
"ForeignPostretirementBenefitPlansDefinedBenefitMember": "2017-01-31",
|
|
1237
|
-
"FractionationRevenue": "2016-01-31",
|
|
1238
|
-
"FranchiseCosts": "2018-01-31",
|
|
1239
|
-
"FranchiseRevenue": "2018-01-31",
|
|
1240
|
-
"FranchisorRevenue": "2018-01-31",
|
|
1241
|
-
"FranchisorRevenueAbstract": "2018-01-31",
|
|
1242
|
-
"FranchisorRevenueAndCostsAbstract": "2018-01-31",
|
|
1243
|
-
"FreightCosts": "2018-01-31",
|
|
1244
|
-
"FreshStartAdjustmentDescription": "2021",
|
|
1245
|
-
"FreshStartAdjustmentIncreaseDecreaseAccountsPayable": "2021",
|
|
1246
|
-
"FreshStartAdjustmentIncreaseDecreaseAccruedLiabilities": "2021",
|
|
1247
|
-
"FreshStartAdjustmentIncreaseDecreaseAccumulatedDepreciationAndAmortization": "2021",
|
|
1248
|
-
"FreshStartAdjustmentIncreaseDecreaseAccumulatedOtherComprehensiveIncomeLoss": "2021",
|
|
1249
|
-
"FreshStartAdjustmentIncreaseDecreaseAdditionalPaidInCapital": "2021",
|
|
1250
|
-
"FreshStartAdjustmentIncreaseDecreaseAmortizableIntangibleAssets": "2021",
|
|
1251
|
-
"FreshStartAdjustmentIncreaseDecreaseAssets": "2021",
|
|
1252
|
-
"FreshStartAdjustmentIncreaseDecreaseAssetsAbstract": "2021",
|
|
1253
|
-
"FreshStartAdjustmentIncreaseDecreaseBuildingsAndImprovements": "2021",
|
|
1254
|
-
"FreshStartAdjustmentIncreaseDecreaseCapitalLeaseObligationsNoncurrent": "2021",
|
|
1255
|
-
"FreshStartAdjustmentIncreaseDecreaseCashAndCashEquivalents": "2021",
|
|
1256
|
-
"FreshStartAdjustmentIncreaseDecreaseCommonStock": "2021",
|
|
1257
|
-
"FreshStartAdjustmentIncreaseDecreaseCurrentAssets": "2021",
|
|
1258
|
-
"FreshStartAdjustmentIncreaseDecreaseCurrentAssetsAbstract": "2021",
|
|
1259
|
-
"FreshStartAdjustmentIncreaseDecreaseCurrentLiabilities": "2021",
|
|
1260
|
-
"FreshStartAdjustmentIncreaseDecreaseCurrentLiabilitiesAbstract": "2021",
|
|
1261
|
-
"FreshStartAdjustmentIncreaseDecreaseCurrentMaturitiesOfCapitalLeaseObligations": "2021",
|
|
1262
|
-
"FreshStartAdjustmentIncreaseDecreaseCurrentMaturitiesOfLongTermDebt": "2021",
|
|
1263
|
-
"FreshStartAdjustmentIncreaseDecreaseDebtorInPossessionFinancing": "2021",
|
|
1264
|
-
"FreshStartAdjustmentIncreaseDecreaseDeferredFinancingCosts": "2021",
|
|
1265
|
-
"FreshStartAdjustmentIncreaseDecreaseDeferredIncomeTaxAssetsCurrent": "2021",
|
|
1266
|
-
"FreshStartAdjustmentIncreaseDecreaseDeferredIncomeTaxAssetsNoncurrent": "2021",
|
|
1267
|
-
"FreshStartAdjustmentIncreaseDecreaseDeferredIncomeTaxLiabilitiesCurrent": "2021",
|
|
1268
|
-
"FreshStartAdjustmentIncreaseDecreaseDeferredIncomeTaxLiabilitiesNoncurrent": "2021",
|
|
1269
|
-
"FreshStartAdjustmentIncreaseDecreaseEquipment": "2021",
|
|
1270
|
-
"FreshStartAdjustmentIncreaseDecreaseFurnitureAndFixtures": "2021",
|
|
1271
|
-
"FreshStartAdjustmentIncreaseDecreaseGoodwill": "2021",
|
|
1272
|
-
"FreshStartAdjustmentIncreaseDecreaseInventories": "2021",
|
|
1273
|
-
"FreshStartAdjustmentIncreaseDecreaseInvestments": "2021",
|
|
1274
|
-
"FreshStartAdjustmentIncreaseDecreaseLand": "2021",
|
|
1275
|
-
"FreshStartAdjustmentIncreaseDecreaseLeaseholdImprovements": "2021",
|
|
1276
|
-
"FreshStartAdjustmentIncreaseDecreaseLiabilities": "2021",
|
|
1277
|
-
"FreshStartAdjustmentIncreaseDecreaseLiabilitiesAbstract": "2021",
|
|
1278
|
-
"FreshStartAdjustmentIncreaseDecreaseLiabilitiesAndStockholdersEquity": "2021",
|
|
1279
|
-
"FreshStartAdjustmentIncreaseDecreaseLiabilitiesAndStockholdersEquityAbstract": "2021",
|
|
1280
|
-
"FreshStartAdjustmentIncreaseDecreaseLiabilitiesSubjectToCompromise": "2021",
|
|
1281
|
-
"FreshStartAdjustmentIncreaseDecreaseLongTermDebt": "2021",
|
|
1282
|
-
"FreshStartAdjustmentIncreaseDecreaseLongTermDebtAbstract": "2021",
|
|
1283
|
-
"FreshStartAdjustmentIncreaseDecreaseNonamortizableIntangibleAssets": "2021",
|
|
1284
|
-
"FreshStartAdjustmentIncreaseDecreaseNoncurrentOtherObligations": "2021",
|
|
1285
|
-
"FreshStartAdjustmentIncreaseDecreaseOtherAssets": "2021",
|
|
1286
|
-
"FreshStartAdjustmentIncreaseDecreaseOtherAssetsAbstract": "2021",
|
|
1287
|
-
"FreshStartAdjustmentIncreaseDecreaseOtherAssetsNoncurrent": "2021",
|
|
1288
|
-
"FreshStartAdjustmentIncreaseDecreaseOtherCurrentLiabilities": "2021",
|
|
1289
|
-
"FreshStartAdjustmentIncreaseDecreaseOtherLongTermDebt": "2021",
|
|
1290
|
-
"FreshStartAdjustmentIncreaseDecreaseOtherNoncurrentObligations": "2021",
|
|
1291
|
-
"FreshStartAdjustmentIncreaseDecreaseOtherNoncurrentObligationsAbstract": "2021",
|
|
1292
|
-
"FreshStartAdjustmentIncreaseDecreaseOtherPostretirementObligations": "2021",
|
|
1293
|
-
"FreshStartAdjustmentIncreaseDecreaseOtherPropertyAndEquipment": "2021",
|
|
1294
|
-
"FreshStartAdjustmentIncreaseDecreasePensionObligations": "2021",
|
|
1295
|
-
"FreshStartAdjustmentIncreaseDecreasePostconfirmationCreditFacility": "2021",
|
|
1296
|
-
"FreshStartAdjustmentIncreaseDecreasePreferredAndCommonStockHeldInTreasury": "2021",
|
|
1297
|
-
"FreshStartAdjustmentIncreaseDecreasePreferredStock": "2021",
|
|
1298
|
-
"FreshStartAdjustmentIncreaseDecreasePrepaidAndOtherCurrentAssets": "2021",
|
|
1299
|
-
"FreshStartAdjustmentIncreaseDecreasePropertyAndEquipmentNet": "2021",
|
|
1300
|
-
"FreshStartAdjustmentIncreaseDecreasePropertyAndEquipmentNetAbstract": "2021",
|
|
1301
|
-
"FreshStartAdjustmentIncreaseDecreasePropertyUnderCapitalLeaseArrangements": "2021",
|
|
1302
|
-
"FreshStartAdjustmentIncreaseDecreaseReceivablesNet": "2021",
|
|
1303
|
-
"FreshStartAdjustmentIncreaseDecreaseReorganizationValueInExcessOfAmountsAllocableToIdentifiableAssets": "2021",
|
|
1304
|
-
"FreshStartAdjustmentIncreaseDecreaseRestrictedCashAndCashEquivalentsCurrent": "2021",
|
|
1305
|
-
"FreshStartAdjustmentIncreaseDecreaseRestrictedCashAndCashEquivalentsNoncurrent": "2021",
|
|
1306
|
-
"FreshStartAdjustmentIncreaseDecreaseRetainedEarningsDeficit": "2021",
|
|
1307
|
-
"FreshStartAdjustmentIncreaseDecreaseShortTermBorrowings": "2021",
|
|
1308
|
-
"FreshStartAdjustmentIncreaseDecreaseShortTermInvestments": "2021",
|
|
1309
|
-
"FreshStartAdjustmentIncreaseDecreaseStockholdersEquity": "2021",
|
|
1310
|
-
"FreshStartAdjustmentIncreaseDecreaseStockholdersEquityAbstract": "2021",
|
|
1311
|
-
"FreshStartAdjustmentLineItems": "2021",
|
|
1312
|
-
"FreshStartBalanceSheetDescription": "2016-01-31",
|
|
1313
|
-
"FuturePolicyBenefitsReserveActivityDescription": "2019-01-31",
|
|
1314
|
-
"GainContingencyIncomeStatementCaption": "2016-01-31",
|
|
1315
|
-
"GainLossFromAdjustmentsToPriorPeriodExtraordinaryItems": "2019-01-31",
|
|
1316
|
-
"GainLossOnCashFlowHedgesCaption": "2022",
|
|
1317
|
-
"GainLossOnFairValueHedgesCaption": "2022",
|
|
1318
|
-
"GainLossOnInvestmentsByCategoryAxis": "2018-01-31",
|
|
1319
|
-
"GainLossOnInvestmentsExcludingOtherThanTemporaryImpairments": "2023",
|
|
1320
|
-
"GainLossOnInvestmentsExcludingOtherThanTemporaryImpairmentsRealizedAndUnrealizedAlternativeAbstract": "2018-01-31",
|
|
1321
|
-
"GainLossOnInvestmentsIncludingMarketableSecuritiesAndInvestmentsHeldAtCostCategoriesOfInvestmentsDomain": "2018-01-31",
|
|
1322
|
-
"GainLossOnInvestmentsRealizedAndUnrealizedAlternativeAbstract": "2018-01-31",
|
|
1323
|
-
"GainLossOnNonRecourseDebt": "2022",
|
|
1324
|
-
"GainLossOnSaleOfDebtInvestments": "2023",
|
|
1325
|
-
"GainLossOnSaleOfEquityInvestments": "2023",
|
|
1326
|
-
"GainLossOnSaleOfPropertiesApplicableIncomeTaxes": "2020",
|
|
1327
|
-
"GainLossOnSaleOfPropertiesBeforeApplicableIncomeTaxes": "2020",
|
|
1328
|
-
"GainLossOnSaleOfPropertiesNetOfApplicableIncomeTaxes": "2020",
|
|
1329
|
-
"GainLossOnSaleOfPropertiesNetOfApplicableIncomeTaxesAbstract": "2020",
|
|
1330
|
-
"GainLossOnSaleOfSecuritiesNet": "2018-01-31",
|
|
1331
|
-
"GainLossOnSaleOfSecuritiesNetAbstract": "2018-01-31",
|
|
1332
|
-
"GainsLossesOnRecourseDebt": "2022",
|
|
1333
|
-
"GasDomesticRegulatedRevenue": "2018-01-31",
|
|
1334
|
-
"GasGatheringTransportationMarketingAndProcessingCosts": "2018-01-31",
|
|
1335
|
-
"GasGatheringTransportationMarketingAndProcessingRevenue": "2018-01-31",
|
|
1336
|
-
"GasPurchaseContractNet": "2016-01-31",
|
|
1337
|
-
"GeneralContractorCosts": "2018-01-31",
|
|
1338
|
-
"GeneralContractorRevenue": "2018-01-31",
|
|
1339
|
-
"GeneralFairValueHedgeInformationDollarOffsetThresholdMaximum": "2016-01-31",
|
|
1340
|
-
"GeneralFairValueHedgeInformationDollarOffsetThresholdMinimum": "2016-01-31",
|
|
1341
|
-
"GoldProductsAndServicesRevenue": "2018-01-31",
|
|
1342
|
-
"GoodsAndServicesExchangedForEquityInstrumentMember": "2019-01-31",
|
|
1343
|
-
"GoodwillImpairedAdjustmentToInitialEstimateAmount": "2018-01-31",
|
|
1344
|
-
"GoodwillImpairedChangeInEstimateDescription": "2018-01-31",
|
|
1345
|
-
"GoodwillImpairedReasonsForUseOfEstimate": "2018-01-31",
|
|
1346
|
-
"GoodwillOtherChanges": "2016-01-31",
|
|
1347
|
-
"GoodwillTranslationAdjustments": "2016-01-31",
|
|
1348
|
-
"GovernmentContractorsCombiningAndSegmentingPolicyPolicyTextBlock": "2016-01-31",
|
|
1349
|
-
"GovernmentContractorsCompletedContractPolicyPolicyTextBlock": "2016-01-31",
|
|
1350
|
-
"GovernmentContractorsContractsInProgressPolicyPolicyTextBlock": "2023",
|
|
1351
|
-
"GovernmentContractorsRevenueRecognitionPolicyPolicyTextBlock": "2023",
|
|
1352
|
-
"GovernmentContractorsSubcontractAndSpecialEquipmentCostNatureOfTransaction": "2023",
|
|
1353
|
-
"GovernmentContractorsSubcontractAndSpecialEquipmentCostPolicyPolicyTextBlock": "2016-01-31",
|
|
1354
|
-
"GovernmentRestrictionsOnDisclosureOfEstimatedReservesOrDisclosureOfReservesOtherThanProved": "2018-01-31",
|
|
1355
|
-
"GovernmentalContractsSubjectToRenegotiation": "2023",
|
|
1356
|
-
"GovernmentalContractsSubjectToRenegotiationAbstract": "2023",
|
|
1357
|
-
"GuaranteedInvestmentContractAssumptions": "2016-01-31",
|
|
1358
|
-
"GuaranteedInvestmentContractInterestRateAssumptions": "2016-01-31",
|
|
1359
|
-
"GuaranteedInvestmentContractInterestRateAssumptionsHighEnd": "2016-01-31",
|
|
1360
|
-
"GuaranteedInvestmentContractInterestRateAssumptionsLowEnd": "2016-01-31",
|
|
1361
|
-
"GuarantyFeeIncome": "2018-01-31",
|
|
1362
|
-
"HaircutsOnBankersAcceptancesCertificatesOfDepositAndCommercialPaper": "2019-01-31",
|
|
1363
|
-
"HaircutsOnContractualSecuritiesCommitments": "2019-01-31",
|
|
1364
|
-
"HaircutsOnCorporateObligations": "2019-01-31",
|
|
1365
|
-
"HaircutsOnOptions": "2019-01-31",
|
|
1366
|
-
"HaircutsOnSecurities": "2019-01-31",
|
|
1367
|
-
"HaircutsOnSecuritiesAbstract": "2019-01-31",
|
|
1368
|
-
"HaircutsOnSecuritiesCollateralizingSecuredDemandNotes": "2019-01-31",
|
|
1369
|
-
"HaircutsOnStateAndMunicipalGovernmentObligations": "2019-01-31",
|
|
1370
|
-
"HaircutsOnStocksAndWarrants": "2019-01-31",
|
|
1371
|
-
"HaircutsOnTradingAndInvestmentSecurities": "2019-01-31",
|
|
1372
|
-
"HaircutsOnUSAndCanadianGovernmentObligations": "2019-01-31",
|
|
1373
|
-
"HaircutsOnUndueConcentrations": "2019-01-31",
|
|
1374
|
-
"HaircutsOther": "2019-01-31",
|
|
1375
|
-
"HealthCareOrganizationBadDebtsPolicyPolicyTextBlock": "2022",
|
|
1376
|
-
"HealthCareOrganizationCapitationRevenue": "2018-01-31",
|
|
1377
|
-
"HealthCareOrganizationLossContractsExpense": "2016-01-31",
|
|
1378
|
-
"HealthCareOrganizationMedicalSuppliesAndDrugsExpense": "2018-01-31",
|
|
1379
|
-
"HealthCareOrganizationOtherRevenue": "2018-01-31",
|
|
1380
|
-
"HealthCareOrganizationPatientServiceRevenue": "2018-01-31",
|
|
1381
|
-
"HealthCareOrganizationPremiumRevenue": "2018-01-31",
|
|
1382
|
-
"HealthCareOrganizationQualitativeFactors": "2022",
|
|
1383
|
-
"HealthCareOrganizationResidentServiceRevenue": "2018-01-31",
|
|
1384
|
-
"HealthCareOrganizationRevenue": "2018-01-31",
|
|
1385
|
-
"HealthCareOrganizationRevenueAbstract": "2018-01-31",
|
|
1386
|
-
"HealthCareOrganizationRevenueDescription": "2022",
|
|
1387
|
-
"HealthCareOrganizationRevenueRecognizedPolicyPolicyTextBlock": "2022",
|
|
1388
|
-
"HealthCareOrganizationSignificantChangesInEstimates": "2016-01-31",
|
|
1389
|
-
"HealthCareOrganizationSignificantChangesInUnderlyingAssumptionsforAllowanceforDoubtfulAccounts": "2016-01-31",
|
|
1390
|
-
"HealthCareOrganizationUnusualTransactionsImpactingAllowanceForDoubtfulAccounts": "2016-01-31",
|
|
1391
|
-
"HealthCareOrganizationUnusualTransactionsImpactingAllowanceForDoubtfulAccountsDescription": "2016-01-31",
|
|
1392
|
-
"HealthCareOrganizationsTextBlock": "2016-01-31",
|
|
1393
|
-
"HealthCareTrustFundAdministrativeExpense": "2016-01-31",
|
|
1394
|
-
"HealthCareTrustFundAssetsLimitedAsToUseCurrent": "2021",
|
|
1395
|
-
"HealthCareTrustFundAssetsLimitedAsToUseNoncurrent": "2021",
|
|
1396
|
-
"HealthCareTrustFundAxis": "2021",
|
|
1397
|
-
"HealthCareTrustFundDescription": "2021",
|
|
1398
|
-
"HealthCareTrustFundInterestIncome": "2016-01-31",
|
|
1399
|
-
"HealthCareTrustFundInvestmentGainsLossesNet": "2016-01-31",
|
|
1400
|
-
"HealthCareTrustFundLineItems": "2021",
|
|
1401
|
-
"HealthCareTrustFundNameDomain": "2021",
|
|
1402
|
-
"HealthCareTrustFundTable": "2021",
|
|
1403
|
-
"HedgeDesignationsUsedForInterestRateDerivatives": "2016-01-31",
|
|
1404
|
-
"HeldToMaturitySecuritiesBalanceSheetReportedAmountsAbstract": "2018-01-31",
|
|
1405
|
-
"HeldToMaturitySecuritiesContinuousUnrealizedLossPositionAggregateLossesAbstract": "2018-01-31",
|
|
1406
|
-
"HeldToMaturitySecuritiesDebtMaturitiesBasisOfAllocation": "2018-01-31",
|
|
1407
|
-
"HeldToMaturitySecuritiesGrossGainsDerivatives": "2018-01-31",
|
|
1408
|
-
"HeldToMaturitySecuritiesGrossGainsLossesDerivatives": "2018-01-31",
|
|
1409
|
-
"HeldToMaturitySecuritiesGrossLossesDerivatives": "2018-01-31",
|
|
1410
|
-
"HeldToMaturitySecuritiesPledgedAsCollateral": "2018-01-31",
|
|
1411
|
-
"HeldToMaturitySecuritiesSoldSecurityAtCarryingValue": "2018-01-31",
|
|
1412
|
-
"HeldToMaturitySecuritiesSoldSecurityCostBasisOfSecuritiesSold": "2016-01-31",
|
|
1413
|
-
"HeldToMaturitySecuritiesSoldSecurityDerivativeHedgeGainLoss": "2018-01-31",
|
|
1414
|
-
"HeldToMaturitySecuritiesTransferredSecurityAtCarryingValue": "2018-01-31",
|
|
1415
|
-
"HeldToMaturitySecuritiesTransferredSecurityDerivativeHedgeGainLoss": "2018-01-31",
|
|
1416
|
-
"HeldToMaturitySecuritiesTransferredToAvailableForSaleSecuritiesUnrealizedGainLoss": "2018-01-31",
|
|
1417
|
-
"HeldToMaturitySecuritiesUnclassifiedAbstract": "2018-01-31",
|
|
1418
|
-
"HeldToMaturitySecuritiesUnrecognizedHoldingGains": "2018-01-31",
|
|
1419
|
-
"HeldToMaturitySecuritiesUnrecognizedHoldingLosses": "2018-01-31",
|
|
1420
|
-
"HeldtomaturitySecuritiesContinuousUnrealizedLossPosition12MonthsOrLongerAggregateLoss": "2018-01-31",
|
|
1421
|
-
"HeldtomaturitySecuritiesContinuousUnrealizedLossPositionAggregateLoss": "2018-01-31",
|
|
1422
|
-
"HeldtomaturitySecuritiesContinuousUnrealizedLossPositionLessThan12MonthsAggregateLoss": "2018-01-31",
|
|
1423
|
-
"HeldtomaturitySecuritiesFailedAuctionValue": "2016-01-31",
|
|
1424
|
-
"HeldtomaturitySecuritiesInUnrealizedLossPositionsQualitativeDisclosureOtherThirdPartyGuaranteesAbstract": "2018-01-31",
|
|
1425
|
-
"HeldtomaturitySecuritiesOtherDisclosureItemsAbstract": "2016-01-31",
|
|
1426
|
-
"HeldtomaturitySecuritiesRestrictedCurrent": "2018-01-31",
|
|
1427
|
-
"HeldtomaturitySecuritiesRestrictedNoncurrent": "2018-01-31",
|
|
1428
|
-
"HomeBuildingCosts": "2018-01-31",
|
|
1429
|
-
"HomeBuildingRevenue": "2018-01-31",
|
|
1430
|
-
"HomeCountryProvedReservesDescription": "2018-01-31",
|
|
1431
|
-
"ImmediateTerminalFundingAnnuitiesInterestRate": "2016-01-31",
|
|
1432
|
-
"ImmediateTerminalFundingAnnuitiesInterestRateHighEnd": "2016-01-31",
|
|
1433
|
-
"ImmediateTerminalFundingAnnuitiesInterestRateLowEnd": "2016-01-31",
|
|
1434
|
-
"ImpactOfRestatementOnEarningsPerShareAbstract": "2020",
|
|
1435
|
-
"ImpactOfRestatementOnEarningsPerShareBasic": "2020",
|
|
1436
|
-
"ImpactOfRestatementOnEarningsPerShareDiluted": "2020",
|
|
1437
|
-
"ImpactOfRestatementOnOpeningRetainedEarningsBeforeTax": "2020",
|
|
1438
|
-
"ImpactOfRestatementOnOpeningRetainedEarningsNetOfTax": "2020",
|
|
1439
|
-
"ImpactOnEarningsAndFinancingNeedsResultingFromInabilityToMeetOilAndGasDeliveryCommitments": "2019-01-31",
|
|
1440
|
-
"InclusionOfInvestmentIncomeInAssessmentOfPremiumDeficiencyOnShortDurationContracts": "2017-01-31",
|
|
1441
|
-
"IncomeLossBeforeExtraordinaryItemsAndCumulativeEffectOfChangeInAccountingPrinciple": "2019-01-31",
|
|
1442
|
-
"IncomeLossBeforeExtraordinaryItemsAndCumulativeEffectOfChangeInAccountingPrincipleAbstract": "2016-01-31",
|
|
1443
|
-
"IncomeLossBeforeExtraordinaryItemsAndCumulativeEffectOfChangeInAccountingPrinciplePerBasicShare": "2019-01-31",
|
|
1444
|
-
"IncomeLossBeforeExtraordinaryItemsAndCumulativeEffectOfChangeInAccountingPrinciplePerBasicShareAbstract": "2016-01-31",
|
|
1445
|
-
"IncomeLossBeforeExtraordinaryItemsAndCumulativeEffectOfChangeInAccountingPrinciplePerDilutedShare": "2019-01-31",
|
|
1446
|
-
"IncomeLossBeforeExtraordinaryItemsAndCumulativeEffectOfChangeInAccountingPrinciplePerDilutedShareAbstract": "2016-01-31",
|
|
1447
|
-
"IncomeLossBeforeExtraordinaryItemsAndCumulativeEffectOfChangeInAccountingPrinciplePerOutstandingGeneralPartnershipUnitAbstract": "2016-01-31",
|
|
1448
|
-
"IncomeLossBeforeExtraordinaryItemsAndCumulativeEffectOfChangeInAccountingPrinciplePerOutstandingLimitedPartnershipUnitAbstract": "2016-01-31",
|
|
1449
|
-
"IncomeLossBeforeExtraordinaryItemsAndCumulativeEffectOfChangeInAccountingPrinciplePerOutstandingLimitedPartnershipUnitDilutedAbstract": "2016-01-31",
|
|
1450
|
-
"IncomeLossBeforeGainOrLossOnSaleOfPropertiesExtraordinaryItemsAndCumulativeEffectsOfAccountingChanges": "2020",
|
|
1451
|
-
"IncomeLossBeforeGainOrLossOnSaleOfPropertiesExtraordinaryItemsAndCumulativeEffectsOfAccountingChangesAbstract": "2020",
|
|
1452
|
-
"IncomeLossFromContinuingOperationsPerBasicAndDilutedShare": "2022",
|
|
1453
|
-
"IncomeLossFromDiscontinuedOperationsAndDisposalOfDiscontinuedOperationsNetOfTaxPerBasicAndDilutedShareAbstract": "2022",
|
|
1454
|
-
"IncomeLossFromDiscontinuedOperationsNetOfTaxPerBasicAndDilutedShare": "2022",
|
|
1455
|
-
"IncomeLossFromExtraordinaryItemsBeforeTaxPerBasicShare": "2019-01-31",
|
|
1456
|
-
"IncomeLossFromExtraordinaryItemsBeforeTaxPerDilutedShare": "2019-01-31",
|
|
1457
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerBasicAndDilutedShare": "2019-01-31",
|
|
1458
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerBasicShare": "2019-01-31",
|
|
1459
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerBasicShareAbstract": "2016-01-31",
|
|
1460
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerDilutedShare": "2019-01-31",
|
|
1461
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerDilutedShareAbstract": "2016-01-31",
|
|
1462
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerOutstandingGeneralPartnershipUnit1": "2019-01-31",
|
|
1463
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerOutstandingLimitedPartnershipAndGeneralPartnershipUnitBasic1": "2019-01-31",
|
|
1464
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerOutstandingLimitedPartnershipAndGeneralPartnershipUnitBasicAndDiluted": "2019-01-31",
|
|
1465
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerOutstandingLimitedPartnershipUnitBasic": "2019-01-31",
|
|
1466
|
-
"IncomeLossFromExtraordinaryItemsNetOfTaxPerOutstandingLimitedPartnershipUnitDiluted1": "2019-01-31",
|
|
1467
|
-
"IncomeLossFromExtraordinaryItemsTaxEffectPerBasicShare": "2019-01-31",
|
|
1468
|
-
"IncomeLossFromExtraordinaryItemsTaxEffectPerDilutedShare": "2019-01-31",
|
|
1469
|
-
"IncomeLossFromOperationsBeforeExtraordinaryItemsNetOfTaxPerOutstandingLimitedPartnershipUnitDiluted": "2019-01-31",
|
|
1470
|
-
"IncomeLossFromOperationsBeforeExtraordinaryItemsPerBasicAndDilutedShare": "2019-01-31",
|
|
1471
|
-
"IncomeLossFromOperationsBeforeExtraordinaryItemsPerBasicAndDilutedShareAbstract": "2016-01-31",
|
|
1472
|
-
"IncomeLossFromOperationsBeforeExtraordinaryItemsPerOutstandingGeneralPartnershipUnitNetOfTax": "2019-01-31",
|
|
1473
|
-
"IncomeLossFromOperationsBeforeExtraordinaryItemsPerOutstandingLimitedPartnershipAndGeneralPartnershipUnitBasic": "2019-01-31",
|
|
1474
|
-
"IncomeLossFromOperationsBeforeExtraordinaryItemsPerOutstandingLimitedPartnershipAndGeneralPartnershipUnitBasicAbstract": "2016-01-31",
|
|
1475
|
-
"IncomeLossFromOperationsBeforeExtraordinaryItemsPerOutstandingLimitedPartnershipAndGeneralPartnershipUnitBasicAndDiluted": "2019-01-31",
|
|
1476
|
-
"IncomeLossFromOperationsBeforeExtraordinaryItemsPerOutstandingLimitedPartnershipAndGeneralPartnershipUnitBasicAndDilutedAbstract": "2016-01-31",
|
|
1477
|
-
"IncomeLossFromOperationsBeforeExtraordinaryItemsPerOutstandingLimitedPartnershipUnitBasicNetOfTax": "2019-01-31",
|
|
1478
|
-
"IncomeTaxEffectsAllocatedDirectlyToEquityEmployeeStockOptions": "2022",
|
|
1479
|
-
"IncomeTaxExpenseBenefitExtraordinaryItems": "2019-01-31",
|
|
1480
|
-
"IncomeTaxReconciliationDeductionsQualifiedProductionActivities": "2022",
|
|
1481
|
-
"IncomeTaxReconciliationRepatriationOfForeignEarningsJobsCreationActOf2004": "2016-01-31",
|
|
1482
|
-
"IncreaseDecreaseInDeferredPensionCosts": "2017-01-31",
|
|
1483
|
-
"IncreaseDecreaseInFinancialGuaranteeInsuranceContractLiabilities": "2016-01-31",
|
|
1484
|
-
"IncreaseDecreaseInGiftCardLiability": "2023",
|
|
1485
|
-
"IncreaseDecreaseInPrepaidPensionCosts": "2017-01-31",
|
|
1486
|
-
"IncreaseDecreaseInPrincipalPaymentsOnContractReceivables": "2016-01-31",
|
|
1487
|
-
"IncreaseDecreaseInRestrictedCash": "2022",
|
|
1488
|
-
"IncreaseDecreaseInRestrictedCashAbstract": "2017-01-31",
|
|
1489
|
-
"IncreaseDecreaseInRestrictedCashAndInvestments": "2022",
|
|
1490
|
-
"IncreaseDecreaseInRestrictedCashAndInvestmentsAbstract": "2017-01-31",
|
|
1491
|
-
"IncreaseDecreaseInRestrictedCashForOperatingActivities": "2022",
|
|
1492
|
-
"IncreaseInRestrictedCash": "2022",
|
|
1493
|
-
"IncrementalEffectOnBalanceSheetApplicationOfSFAS158RecognitionProvisionsLineItems": "2017-01-31",
|
|
1494
|
-
"IncrementalEffectOnBalanceSheetAssetLineItemBalanceApplicationOfSFAS158RecognitionProvisions": "2017-01-31",
|
|
1495
|
-
"IncrementalEffectOnBalanceSheetAssetLineItemBalanceBeforeAdditionalMinimumPensionLiabilityAMLAdjustmentAndApplicationOfSFAS158RecognitionProvisions": "2017-01-31",
|
|
1496
|
-
"IncrementalEffectOnBalanceSheetAssetLineItemChangeDueToAdditionalMinimumPensionLiabilityAMLAdjustmentPeriodIncreaseDecrease": "2017-01-31",
|
|
1497
|
-
"IncrementalEffectOnBalanceSheetAssetLineItemChangeDueToApplicationOfSFAS158RecognitionProvisionsPeriodIncreaseDecrease": "2017-01-31",
|
|
1498
|
-
"IncrementalEffectOnBalanceSheetChangeDueToApplicationOfSFAS158RecognitionProvisionsAbstract": "2017-01-31",
|
|
1499
|
-
"IncrementalEffectOnBalanceSheetChangeInAssetLineItemDueToApplicationOfSFAS158RecognitionProvisionsRollForward": "2017-01-31",
|
|
1500
|
-
"IncrementalEffectOnBalanceSheetChangeInLiabilityOrEquityLineItemDueToApplicationOfSFAS158RecognitionProvisionsRollForward": "2017-01-31",
|
|
1501
|
-
"IncrementalEffectOnBalanceSheetChangesDueToAdditionalMinimumPensionLiabilityAMLAdjustmentAndApplicationOfSFAS158RecognitionProvisionsAlternativePresentationAbstract": "2017-01-31",
|
|
1502
|
-
"IncrementalEffectOnBalanceSheetChangesInAssetLineItemDueToAdditionalMinimumPensionLiabilityAMLAdjustmentAndApplicationOfSFAS158RecognitionProvisionsRollForward": "2017-01-31",
|
|
1503
|
-
"IncrementalEffectOnBalanceSheetChangesInLiabilityOrEquityLineItemDueToAMLAdjustmentAndApplicationOfSFAS158RecognitionProvisionsRollForward": "2017-01-31",
|
|
1504
|
-
"IncrementalEffectOnBalanceSheetLiabilityOrEquityLineItemBalanceApplicationOfSFAS158RecognitionProvisions": "2017-01-31",
|
|
1505
|
-
"IncrementalEffectOnBalanceSheetLiabilityOrEquityLineItemBalanceBeforeAMLAdjustmentAndApplicationOfSFAS158RecognitionProvisions": "2017-01-31",
|
|
1506
|
-
"IncrementalEffectOnBalanceSheetLiabilityOrEquityLineItemChangeDueToAdditionalMinimumPensionLiabilityAMLAdjustmentPeriodIncreaseDecrease": "2017-01-31",
|
|
1507
|
-
"IncrementalEffectOnBalanceSheetLiabilityOrEquityLineItemChangeDueToApplicationOfSFAS158RecognitionProvisionsPeriodIncreaseDecrease": "2017-01-31",
|
|
1508
|
-
"IndefiniteLivedIntangibleAssetsTranslationAdjustments": "2016-01-31",
|
|
1509
|
-
"InformationByFinancialStatementLineItemAxis": "2016-01-31",
|
|
1510
|
-
"InitialApplicationPeriodCumulativeEffectTransitionAxis": "2022",
|
|
1511
|
-
"InitialApplicationPeriodCumulativeEffectTransitionDomain": "2022",
|
|
1512
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombination": "2017-01-31",
|
|
1513
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAbstract": "2017-01-31",
|
|
1514
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAdditions": "2017-01-31",
|
|
1515
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseNextRollingTwelveMonths": "2017-01-31",
|
|
1516
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseNextTwelveMonths": "2017-01-31",
|
|
1517
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseRemainderOfFiscalYear": "2017-01-31",
|
|
1518
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseRollingMaturityAbstract": "2017-01-31",
|
|
1519
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseRollingYearFive": "2017-01-31",
|
|
1520
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseRollingYearFour": "2017-01-31",
|
|
1521
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseRollingYearThree": "2017-01-31",
|
|
1522
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseRollingYearTwo": "2017-01-31",
|
|
1523
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseYearFive": "2017-01-31",
|
|
1524
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseYearFour": "2017-01-31",
|
|
1525
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseYearThree": "2017-01-31",
|
|
1526
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpenseYearTwo": "2017-01-31",
|
|
1527
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationDecreases": "2016-01-31",
|
|
1528
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationDecreasesAbstract": "2017-01-31",
|
|
1529
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationDisclosuresTextBlock": "2017-01-31",
|
|
1530
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationDispositions": "2017-01-31",
|
|
1531
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationEstimatedAmountAmortizedDuringNextFiveYearsAbstract": "2017-01-31",
|
|
1532
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationImpairmentWritedown": "2016-01-31",
|
|
1533
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationImpairmentWritedown1": "2017-01-31",
|
|
1534
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationIncreases": "2016-01-31",
|
|
1535
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationIncreasesAbstract": "2017-01-31",
|
|
1536
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationInterestAccrued": "2016-01-31",
|
|
1537
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationPercentageOfAmountAmortizedDuringNextFiveYearsAbstract": "2017-01-31",
|
|
1538
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationPercentageOfAmountAmortizedYearFive": "2017-01-31",
|
|
1539
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationPercentageOfAmountAmortizedYearFour": "2017-01-31",
|
|
1540
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationPercentageOfAmountAmortizedYearOne": "2017-01-31",
|
|
1541
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationPercentageOfAmountAmortizedYearThree": "2017-01-31",
|
|
1542
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationPercentageOfAmountAmortizedYearTwo": "2017-01-31",
|
|
1543
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationPeriodIncreaseDecrease": "2017-01-31",
|
|
1544
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationTableTextBlock": "2017-01-31",
|
|
1545
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationUnrealizedInvestmentGains": "2016-01-31",
|
|
1546
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationUnrealizedInvestmentGains1": "2017-01-31",
|
|
1547
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationUnrealizedInvestmentLosses": "2016-01-31",
|
|
1548
|
-
"IntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationUnrealizedInvestmentLosses1": "2017-01-31",
|
|
1549
|
-
"IntangiblesAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpense": "2016-01-31",
|
|
1550
|
-
"IntangiblesAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationAmortizationExpense1": "2017-01-31",
|
|
1551
|
-
"InterestAndDividendIncomeSecuritiesAvailableForSale": "2023",
|
|
1552
|
-
"InterestAndDividendIncomeSecuritiesTradingOrMeasuredAtFairValue": "2023",
|
|
1553
|
-
"InterestCreditedToPolicyOwnerAccounts": "2017-01-31",
|
|
1554
|
-
"InterestExpenseForeignDepositLiabilities": "2016-01-31",
|
|
1555
|
-
"InterestExpenseForeignDepositLiabilitiesAbstract": "2016-01-31",
|
|
1556
|
-
"InterestExpenseForeignDepositLiabilitiesBrokered": "2016-01-31",
|
|
1557
|
-
"InterestExpenseForeignDepositLiabilitiesCertificatesOfDeposit": "2016-01-31",
|
|
1558
|
-
"InterestExpenseForeignDepositLiabilitiesChecking": "2016-01-31",
|
|
1559
|
-
"InterestExpenseForeignDepositLiabilitiesDemand": "2016-01-31",
|
|
1560
|
-
"InterestExpenseForeignDepositLiabilitiesMoneyMarket": "2016-01-31",
|
|
1561
|
-
"InterestExpenseForeignDepositLiabilitiesNoticeOfWithdrawal": "2016-01-31",
|
|
1562
|
-
"InterestExpenseForeignDepositLiabilitiesOtherTimeDeposit": "2016-01-31",
|
|
1563
|
-
"InterestExpenseForeignDepositLiabilitiesRetail": "2016-01-31",
|
|
1564
|
-
"InterestExpenseForeignDepositLiabilitiesSavings": "2016-01-31",
|
|
1565
|
-
"InterestExpenseForeignDepositLiabilitiesTimeDeposits": "2016-01-31",
|
|
1566
|
-
"InterestExpenseForeignDepositLiabilitiesWithdrawalPenalties": "2016-01-31",
|
|
1567
|
-
"InterestExpenseRelatedParty": "2023",
|
|
1568
|
-
"InterestIncomeRelatedParty": "2023",
|
|
1569
|
-
"InterestRateExclusiveOfImmediateTerminalFundingAnnuities": "2016-01-31",
|
|
1570
|
-
"InterestRateExclusiveOfImmediateTerminalFundingAnnuitiesHighEnd": "2016-01-31",
|
|
1571
|
-
"InterestRateExclusiveOfImmediateTerminalFundingAnnuitiesLowEnd": "2016-01-31",
|
|
1572
|
-
"InterestSensitiveLifeInsuranceAssumptions": "2016-01-31",
|
|
1573
|
-
"InterestSensitiveLifeInterestRateAssumptions": "2016-01-31",
|
|
1574
|
-
"InterestSensitiveLifeInterestRateAssumptionsHighEnd": "2016-01-31",
|
|
1575
|
-
"InterestSensitiveLifeInterestRateAssumptionsLowEnd": "2016-01-31",
|
|
1576
|
-
"InventoryCaptionsCompositionsDescription": "2016-01-31",
|
|
1577
|
-
"InventoryInventoryConsignedToOthersPolicy": "2016-01-31",
|
|
1578
|
-
"InventoryMarkdownsPolicy": "2016-01-31",
|
|
1579
|
-
"InventoryRawMaterialsPolicy": "2016-01-31",
|
|
1580
|
-
"InventoryRealEstateRentalFurnitureNet": "2016-01-31",
|
|
1581
|
-
"InventoryStatedAboveCostPolicy": "2016-01-31",
|
|
1582
|
-
"InvestmentAdvisoryFees": "2018-01-31",
|
|
1583
|
-
"InvestmentAdvisoryManagementAndAdministrativeFees": "2018-01-31",
|
|
1584
|
-
"InvestmentCompanyCapitalShareTransactionsPartnershipAbstract": "2023",
|
|
1585
|
-
"InvestmentCompanyChangeInNetAssetsAbstract": "2022",
|
|
1586
|
-
"InvestmentCompanyDistributableEarnings": "2023",
|
|
1587
|
-
"InvestmentCompanyDistributableEarningsAbstract": "2023",
|
|
1588
|
-
"InvestmentCompanyFairValueDerivativesGreaterThanFivePercentOfNetAssets": "2023",
|
|
1589
|
-
"InvestmentCompanyInvestmentGreaterThanFivePercentOfNetAssets": "2023",
|
|
1590
|
-
"InvestmentCompanyInvestmentsAppreciationDeprecationGreaterThanFivePercentOfNetAssets": "2023",
|
|
1591
|
-
"InvestmentCompanyNetAssetsFromOperationsIncreaseDecrease": "2023",
|
|
1592
|
-
"InvestmentCompanyNetAssetsFromOperationsIncreaseDecreaseAbstract": "2023",
|
|
1593
|
-
"InvestmentCompanyNetAssetsPeriodIncreaseDecrease": "2023",
|
|
1594
|
-
"InvestmentHoldingsAdditionalInformation": "2020",
|
|
1595
|
-
"InvestmentHoldingsLineItems": "2023",
|
|
1596
|
-
"InvestmentHoldingsOtherThanSecuritiesAdditionalInformation": "2020",
|
|
1597
|
-
"InvestmentHoldingsTable": "2023",
|
|
1598
|
-
"InvestmentOwnedInvestmentAdditionalInformation": "2020",
|
|
1599
|
-
"InvestmentOwnedLoanedForShortSalesAtFairValue": "2020",
|
|
1600
|
-
"InvestmentOwnedOnLoanFlag": "2020",
|
|
1601
|
-
"InvestmentOwnedOpenPutOrCallOptionFlag": "2020",
|
|
1602
|
-
"InvestmentOwnedOtherThanSecuritiesInvestmentNotReadilyMarketableFlag": "2020",
|
|
1603
|
-
"InvestmentOwnedRestrictedAcquisitionDate": "2023",
|
|
1604
|
-
"InvestmentOwnedRestrictedCarryingValuePerUnitAtDateOfBalanceSheet": "2020",
|
|
1605
|
-
"InvestmentOwnedRestrictedInvestmentFlag": "2020",
|
|
1606
|
-
"InvestmentOwnedRestrictedInvestmentsNoteAbstract": "2022",
|
|
1607
|
-
"InvestmentOwnedSubjectToOptionBalanceOtherMeasure": "2020",
|
|
1608
|
-
"InvestmentOwnedSubjectToOptionExerciseDates": "2023",
|
|
1609
|
-
"InvestmentOwnedSubjectToOptionFlag": "2020",
|
|
1610
|
-
"InvestmentOwnedSubjectToOptionNatureOfContract": "2020",
|
|
1611
|
-
"InvestmentOwnedSubjectToOptionPrice": "2023",
|
|
1612
|
-
"InvestmentOwnedUnrestrictedCarryingValuePerUnitAtDateOfPurchasePriceAgreement": "2020",
|
|
1613
|
-
"InvestmentOwnedUnrestrictedCarryingValuePerUnitAtDateWhenEnforceableRightToAcquireWasObtained": "2020",
|
|
1614
|
-
"InvestmentSecondaryCategorizationAxis": "2023",
|
|
1615
|
-
"InvestmentSoldNotYetPurchasedAdditionalInformation": "2020",
|
|
1616
|
-
"InvestmentSoldNotYetPurchasedBalanceOtherMeasure": "2020",
|
|
1617
|
-
"InvestmentSoldNotYetPurchasedRestrictedAcquisitionDate": "2020",
|
|
1618
|
-
"InvestmentSoldNotYetPurchasedRestrictedCarryingValuePerUnitAtDateOfBalanceSheet": "2020",
|
|
1619
|
-
"InvestmentSoldNotYetPurchasedRestrictedCost": "2020",
|
|
1620
|
-
"InvestmentSoldNotYetPurchasedRestrictedInvestmentFlag": "2020",
|
|
1621
|
-
"InvestmentSoldNotYetPurchasedUnrestrictedCarryingValuePerUnitAtDateOfPurchasePriceAgreement": "2020",
|
|
1622
|
-
"InvestmentSoldNotYetPurchasedUnrestrictedCarryingValuePerUnitAtDateWhenEnforceableRightToAcquireWasObtained": "2020",
|
|
1623
|
-
"InvestmentTypeMember": "2018-01-31",
|
|
1624
|
-
"InvestmentsByConsolidatedAndNonconsolidatedEntitiesAxis": "2021",
|
|
1625
|
-
"InvestmentsByConsolidatedAndNonconsolidatedEntitiesDomain": "2021",
|
|
1626
|
-
"InvestmentsBySecondaryCategorizationDomain": "2023",
|
|
1627
|
-
"InvestmentsFederalIncomeTaxNoteScheduleOfInvestmentsTextBlock": "2023",
|
|
1628
|
-
"InvestmentsInAndAdvancesToAffiliatesAdditionalInformation": "2023",
|
|
1629
|
-
"InvestmentsInAndAdvancesToAffiliatesAmountOfEquity": "2023",
|
|
1630
|
-
"InvestmentsInAndAdvancesToAffiliatesAtFairValue": "2023",
|
|
1631
|
-
"InvestmentsInAndAdvancesToAffiliatesBalanceContracts1": "2020",
|
|
1632
|
-
"InvestmentsInAndAdvancesToAffiliatesBalanceOtherMeasure": "2020",
|
|
1633
|
-
"InvestmentsInAndAdvancesToAffiliatesBalancePrincipalAmount": "2023",
|
|
1634
|
-
"InvestmentsInAndAdvancesToAffiliatesBalanceShares": "2023",
|
|
1635
|
-
"InvestmentsInAndAdvancesToAffiliatesCategorizationAxis": "2023",
|
|
1636
|
-
"InvestmentsInAndAdvancesToAffiliatesCategorizationDomain": "2023",
|
|
1637
|
-
"InvestmentsInAndAdvancesToAffiliatesDividendOrInterestCreditedToIncome": "2023",
|
|
1638
|
-
"InvestmentsInAndAdvancesToAffiliatesDividendOrInterestOther": "2020",
|
|
1639
|
-
"InvestmentsInAndAdvancesToAffiliatesDividendsOrInterest": "2023",
|
|
1640
|
-
"InvestmentsInAndAdvancesToAffiliatesNoncashDividendsFlag": "2020",
|
|
1641
|
-
"InvestmentsNetAssetValue": "2018-01-31",
|
|
1642
|
-
"InvestmentsSoldNotYetPuchasedScheduleOfInvestmentsTextBlock": "2023",
|
|
1643
|
-
"ItemEffectedLineItems": "2021",
|
|
1644
|
-
"ItemsIncludedInConsolidatedStatementOfFinancialCondition": "2019-01-31",
|
|
1645
|
-
"ItemsNotIncludedInConsolidatedStatementOfFinancialCondition": "2019-01-31",
|
|
1646
|
-
"ItemsNotIncludedInConsolidatedStatementOfFinancialConditionAbstract": "2019-01-31",
|
|
1647
|
-
"ItemsToReconcileNetCapitalToNetCapitalAsReportedInEntitysPartIIUnauditedFOCUSReportNet": "2019-01-31",
|
|
1648
|
-
"JapaneseWelfarePensionInsuranceLawAbstract": "2023",
|
|
1649
|
-
"JapaneseWelfarePensionInsuranceLawGeneralDescription": "2017-01-31",
|
|
1650
|
-
"JapaneseWelfarePensionInsuranceLawGovernmentSubsidies": "2023",
|
|
1651
|
-
"JapaneseWelfarePensionInsuranceLawPreviouslyAccruedSalaryProgressionDerecognition": "2023",
|
|
1652
|
-
"LandSales": "2018-01-31",
|
|
1653
|
-
"LeaseArrangementTypeAxis": "2020",
|
|
1654
|
-
"LeaseArrangementTypeDomain": "2020",
|
|
1655
|
-
"LeaseOperatingExpense": "2018-01-31",
|
|
1656
|
-
"LeasePolicyTextBlock": "2017-01-31",
|
|
1657
|
-
"LeasesReceivableCommercialLeaseFinancing": "2019-01-31",
|
|
1658
|
-
"LesseeFinanceLeaseLeaseNotYetCommencedRenewalTerm": "2018-01-31",
|
|
1659
|
-
"LesseeFinanceLeaseLeaseNotYetCommencedTermOfContract": "2018-01-31",
|
|
1660
|
-
"LesseeFinanceLeaseRenewalTerm": "2018-01-31",
|
|
1661
|
-
"LesseeFinanceLeaseTermOfContract": "2018-01-31",
|
|
1662
|
-
"LesseeLeasingArrangementsOperatingLeasesRenewalTerm": "2018-01-31",
|
|
1663
|
-
"LesseeLeasingArrangementsOperatingLeasesTermOfContract": "2018-01-31",
|
|
1664
|
-
"LesseeOperatingLeaseLeaseNotYetCommencedRenewalTerm": "2018-01-31",
|
|
1665
|
-
"LesseeOperatingLeaseLeaseNotYetCommencedTermOfContract": "2018-01-31",
|
|
1666
|
-
"LessorDirectFinancingLeaseLeaseNotYetCommencedRenewalTerm": "2018-01-31",
|
|
1667
|
-
"LessorDirectFinancingLeaseLeaseNotYetCommencedTermOfContract": "2018-01-31",
|
|
1668
|
-
"LessorDirectFinancingLeaseRenewalTerm": "2018-01-31",
|
|
1669
|
-
"LessorDirectFinancingLeaseTermOfContract": "2018-01-31",
|
|
1670
|
-
"LessorLeasingArrangementsOperatingLeasesRenewalTerm": "2018-01-31",
|
|
1671
|
-
"LessorLeasingArrangementsOperatingLeasesTermOfContract": "2018-01-31",
|
|
1672
|
-
"LessorOperatingLeaseLeaseNotYetCommencedRenewalTerm": "2018-01-31",
|
|
1673
|
-
"LessorOperatingLeaseLeaseNotYetCommencedTermOfContract": "2018-01-31",
|
|
1674
|
-
"LessorSalesTypeLeaseLeaseNotYetCommencedRenewalTerm": "2018-01-31",
|
|
1675
|
-
"LessorSalesTypeLeaseLeaseNotYetCommencedTermOfContract": "2018-01-31",
|
|
1676
|
-
"LessorSalesTypeLeaseRenewalTerm": "2018-01-31",
|
|
1677
|
-
"LessorSalesTypeLeaseTermOfContract": "2018-01-31",
|
|
1678
|
-
"LiabilitiesFairValueDisclosureNonrecurring": "2018-01-31",
|
|
1679
|
-
"LiabilitiesFairValueDisclosureRecurring": "2018-01-31",
|
|
1680
|
-
"LiabilitiesForGuaranteesOnLongDurationContractsBenefitsPaid": "2016-01-31",
|
|
1681
|
-
"LiabilitiesForLongTermContractsOrProgramsAbstract": "2020",
|
|
1682
|
-
"LiabilitiesSubjectToCompromiseAircraftObligationsAndDeferredGains": "2016-01-31",
|
|
1683
|
-
"LiabilitiesSubjectToCompromiseCashDisbursementsAndReclassificationIncreaseDecreaseUnderBankruptcyCourtOrderFreightAndDistributionCosts": "2016-01-31",
|
|
1684
|
-
"LiabilitiesSubjectToCompromiseCashDisbursementsAndReclassificationIncreaseDecreaseUnderBankruptcyCourtOrderIncreaseDecreaseInTradeAccountsPayable": "2016-01-31",
|
|
1685
|
-
"LiabilitiesSubjectToCompromiseCashDisbursementsAndReclassificationIncreaseDecreaseUnderBankruptcyCourtOrderOtherLiabilities": "2016-01-31",
|
|
1686
|
-
"LiabilitiesSubjectToCompromiseCashDisbursementsAndReclassificationIncreaseDecreaseUnderBankruptcyCourtOrderResolutionsOfContingenciesSubjectToChapter11": "2016-01-31",
|
|
1687
|
-
"LiabilitiesSubjectToCompromiseCashDisbursementsAndReclassificationsUnderBankruptcyCourtOrders": "2016-01-31",
|
|
1688
|
-
"LiabilitiesSubjectToCompromiseCashDisbursementsAndReclassificationsUnderBankruptcyCourtOrdersAbstract": "2016-01-31",
|
|
1689
|
-
"LiabilitiesSubjectToCompromiseDescription": "2016-01-31",
|
|
1690
|
-
"LiabilitiesSubjectToCompromiseExpenseIncomeItems": "2016-01-31",
|
|
1691
|
-
"LiabilitiesSubjectToCompromiseExpenseIncomeItemsAbstract": "2016-01-31",
|
|
1692
|
-
"LiabilitiesSubjectToCompromiseIncreaseDecreaseInAsbestosObligations": "2016-01-31",
|
|
1693
|
-
"LiabilitiesSubjectToCompromiseIncreaseDecreaseInEmployeeRelatedAccruals": "2016-01-31",
|
|
1694
|
-
"LiabilitiesSubjectToCompromiseIncreaseDecreaseInEnvironmentalContingencies": "2016-01-31",
|
|
1695
|
-
"LiabilitiesSubjectToCompromiseIncreaseDecreaseInIncomeTaxContingencies": "2016-01-31",
|
|
1696
|
-
"LiabilitiesSubjectToCompromiseIncreaseDecreaseInInterestOnPrepetitionLiabilities": "2016-01-31",
|
|
1697
|
-
"LiabilitiesSubjectToCompromiseIncreaseDecreaseInOtherLiabilities": "2016-01-31",
|
|
1698
|
-
"LiabilityAboveMarketForNonutilityGeneratorContractsNoncurrent": "2016-01-31",
|
|
1699
|
-
"LiabilityForAsbestosAndEnvironmentalClaimsGrossClaimsPaid": "2016-01-31",
|
|
1700
|
-
"LiabilityForAsbestosAndEnvironmentalClaimsGrossIncurredLoss": "2016-01-31",
|
|
1701
|
-
"LiabilityForAsbestosAndEnvironmentalClaimsMethodologyAndAssumptions": "2016-01-31",
|
|
1702
|
-
"LiabilityForAsbestosAndEnvironmentalClaimsNetClaimsPaid": "2016-01-31",
|
|
1703
|
-
"LiabilityForAsbestosAndEnvironmentalClaimsNetIncurredLoss": "2016-01-31",
|
|
1704
|
-
"LiabilityForCatastropheClaimsBusinessSegment": "2016-01-31",
|
|
1705
|
-
"LiabilityForCatastropheClaimsCountry": "2016-01-31",
|
|
1706
|
-
"LiabilityForCatastropheClaimsMethodologyAndAssumptions": "2016-01-31",
|
|
1707
|
-
"LiabilityForFuturePolicyBenefitByProductSegmentCountry": "2016-01-31",
|
|
1708
|
-
"LiabilityForFuturePolicyBenefitByProductSegmentDiscountedLiabilityAmount": "2016-01-31",
|
|
1709
|
-
"LiabilityForFuturePolicyBenefitExpectedFuturePolicyBenefitPeriodIncreaseDecreaseAbstract": "2022",
|
|
1710
|
-
"LiabilityForFuturePolicyBenefitExpectedNetPremiumPeriodIncreaseDecreaseAbstract": "2022",
|
|
1711
|
-
"LiabilityForFuturePolicyBenefitsBenefitsPaid": "2016-01-31",
|
|
1712
|
-
"LiabilityForFuturePolicyBenefitsByProductSegmentPresentValueAssumptions": "2016-01-31",
|
|
1713
|
-
"LiabilityForFuturePolicyBenefitsContractTerminations": "2016-01-31",
|
|
1714
|
-
"LiabilityForFuturePolicyBenefitsDescription": "2019-01-31",
|
|
1715
|
-
"LiabilityForPolicyholderContractDepositsInterestRateAssumptionDeferredAnnuity": "2019-01-31",
|
|
1716
|
-
"LiabilityForPolicyholderContractDepositsInterestRateDeferredAnnuityHighEnd": "2016-01-31",
|
|
1717
|
-
"LiabilityForPolicyholderContractDepositsInterestRateDeferredAnnuityLowEnd": "2016-01-31",
|
|
1718
|
-
"LiabilityForUnpaidClaimsAndClaimsAdjustmentExpenseForeignExchange": "2016-01-31",
|
|
1719
|
-
"LicenseAndMaintenanceRevenue": "2018-01-31",
|
|
1720
|
-
"LicenseAndServicesRevenue": "2018-01-31",
|
|
1721
|
-
"LicenseCosts": "2018-01-31",
|
|
1722
|
-
"LicensesRevenue": "2018-01-31",
|
|
1723
|
-
"LineItemForGainLossOnPriceRiskFairValueHedgeDerivativeInFinancialStatements": "2020",
|
|
1724
|
-
"LineOfCreditFacilityIncreaseDecreaseForPeriodDescription": "2020",
|
|
1725
|
-
"LineOfCreditFacilityRevolvingCreditConversionToTermLoanStatus": "2016-01-31",
|
|
1726
|
-
"LiquidationBasisOfAccountingMember": "2019-01-31",
|
|
1727
|
-
"LitigationSettlementAmount": "2017-01-31",
|
|
1728
|
-
"LoansAndLeasesReceivableAllowanceAbstract": "2016-01-31",
|
|
1729
|
-
"LoansAndLeasesReceivableBeforeFeesGrossAbstract": "2022",
|
|
1730
|
-
"LoansAndLeasesReceivableCollateralForSecuredBorrowings": "2022",
|
|
1731
|
-
"LoansAndLeasesReceivableCommercial": "2016-01-31",
|
|
1732
|
-
"LoansAndLeasesReceivableCommercialAbstract": "2016-01-31",
|
|
1733
|
-
"LoansAndLeasesReceivableCommercialAllowance": "2016-01-31",
|
|
1734
|
-
"LoansAndLeasesReceivableCommercialGovernments": "2019-01-31",
|
|
1735
|
-
"LoansAndLeasesReceivableCommercialLoansInProcess": "2016-01-31",
|
|
1736
|
-
"LoansAndLeasesReceivableCommercialNetOfDeferredIncome": "2016-01-31",
|
|
1737
|
-
"LoansAndLeasesReceivableCommercialNetOfDeferredIncomeAbstract": "2016-01-31",
|
|
1738
|
-
"LoansAndLeasesReceivableCommitmentFeePolicy": "2019-01-31",
|
|
1739
|
-
"LoansAndLeasesReceivableConsumer": "2016-01-31",
|
|
1740
|
-
"LoansAndLeasesReceivableConsumerAbstract": "2016-01-31",
|
|
1741
|
-
"LoansAndLeasesReceivableConsumerAllowance": "2016-01-31",
|
|
1742
|
-
"LoansAndLeasesReceivableConsumerConstruction": "2019-01-31",
|
|
1743
|
-
"LoansAndLeasesReceivableConsumerHomeEquity": "2019-01-31",
|
|
1744
|
-
"LoansAndLeasesReceivableConsumerInstallmentAndRevolving": "2019-01-31",
|
|
1745
|
-
"LoansAndLeasesReceivableConsumerInstallmentAndRevolvingAbstract": "2019-01-31",
|
|
1746
|
-
"LoansAndLeasesReceivableConsumerInstallmentDurableGoods": "2019-01-31",
|
|
1747
|
-
"LoansAndLeasesReceivableConsumerInstallmentOther": "2019-01-31",
|
|
1748
|
-
"LoansAndLeasesReceivableConsumerInstallmentStudent": "2019-01-31",
|
|
1749
|
-
"LoansAndLeasesReceivableConsumerLeaseFinancing": "2019-01-31",
|
|
1750
|
-
"LoansAndLeasesReceivableConsumerLoansInProcess": "2016-01-31",
|
|
1751
|
-
"LoansAndLeasesReceivableConsumerMortgage": "2019-01-31",
|
|
1752
|
-
"LoansAndLeasesReceivableConsumerNetOfDeferredIncome": "2016-01-31",
|
|
1753
|
-
"LoansAndLeasesReceivableConsumerNetOfDeferredIncomeAbstract": "2016-01-31",
|
|
1754
|
-
"LoansAndLeasesReceivableConsumerOther": "2019-01-31",
|
|
1755
|
-
"LoansAndLeasesReceivableConsumerRealEstate": "2019-01-31",
|
|
1756
|
-
"LoansAndLeasesReceivableConsumerRealEstateAbstract": "2019-01-31",
|
|
1757
|
-
"LoansAndLeasesReceivableConsumerRevolvingCreditCard": "2019-01-31",
|
|
1758
|
-
"LoansAndLeasesReceivableConsumerRevolvingOther": "2019-01-31",
|
|
1759
|
-
"LoansAndLeasesReceivableDeferredIncomeAbstract": "2016-01-31",
|
|
1760
|
-
"LoansAndLeasesReceivableDeferredIncomeCommercial": "2016-01-31",
|
|
1761
|
-
"LoansAndLeasesReceivableDeferredIncomeConsumer": "2016-01-31",
|
|
1762
|
-
"LoansAndLeasesReceivableDeferredIncomeForeign": "2016-01-31",
|
|
1763
|
-
"LoansAndLeasesReceivableDeferredIncomeOther": "2016-01-31",
|
|
1764
|
-
"LoansAndLeasesReceivableDescription": "2019-01-31",
|
|
1765
|
-
"LoansAndLeasesReceivableForeign": "2016-01-31",
|
|
1766
|
-
"LoansAndLeasesReceivableForeignAbstract": "2016-01-31",
|
|
1767
|
-
"LoansAndLeasesReceivableForeignAllowance": "2016-01-31",
|
|
1768
|
-
"LoansAndLeasesReceivableForeignCommercial": "2016-01-31",
|
|
1769
|
-
"LoansAndLeasesReceivableForeignCommercialAndConsumerOther": "2016-01-31",
|
|
1770
|
-
"LoansAndLeasesReceivableForeignCommercialAndConsumerRealEstate": "2016-01-31",
|
|
1771
|
-
"LoansAndLeasesReceivableForeignConsumerInstallmentAndRevolving": "2016-01-31",
|
|
1772
|
-
"LoansAndLeasesReceivableForeignFinancialInstitutions": "2016-01-31",
|
|
1773
|
-
"LoansAndLeasesReceivableForeignGovernments": "2016-01-31",
|
|
1774
|
-
"LoansAndLeasesReceivableForeignLeaseFinancing": "2016-01-31",
|
|
1775
|
-
"LoansAndLeasesReceivableForeignLoansInProcess": "2016-01-31",
|
|
1776
|
-
"LoansAndLeasesReceivableForeignNetOfDeferredIncome": "2016-01-31",
|
|
1777
|
-
"LoansAndLeasesReceivableForeignNetOfDeferredIncomeAbstract": "2016-01-31",
|
|
1778
|
-
"LoansAndLeasesReceivableGeographicTerritoriesOfBusiness": "2016-01-31",
|
|
1779
|
-
"LoansAndLeasesReceivableGrossCarryingAmountByCategoryAlternativeAbstract": "2016-01-31",
|
|
1780
|
-
"LoansAndLeasesReceivableGrossCarryingAmountCommercial": "2016-01-31",
|
|
1781
|
-
"LoansAndLeasesReceivableGrossCarryingAmountCommercialAbstract": "2016-01-31",
|
|
1782
|
-
"LoansAndLeasesReceivableGrossCarryingAmountConsumer": "2016-01-31",
|
|
1783
|
-
"LoansAndLeasesReceivableGrossCarryingAmountConsumerAbstract": "2016-01-31",
|
|
1784
|
-
"LoansAndLeasesReceivableGrossCarryingAmountForeign": "2016-01-31",
|
|
1785
|
-
"LoansAndLeasesReceivableGrossCarryingAmountForeignAbstract": "2016-01-31",
|
|
1786
|
-
"LoansAndLeasesReceivableGrossCarryingAmountOther": "2016-01-31",
|
|
1787
|
-
"LoansAndLeasesReceivableGrossCarryingAmountOtherAbstract": "2016-01-31",
|
|
1788
|
-
"LoansAndLeasesReceivableLoansInProcessAbstract": "2016-01-31",
|
|
1789
|
-
"LoansAndLeasesReceivableNetReportedAmountByCategoryAlternativeAbstract": "2016-01-31",
|
|
1790
|
-
"LoansAndLeasesReceivableNetReportedAmountCommercial": "2016-01-31",
|
|
1791
|
-
"LoansAndLeasesReceivableNetReportedAmountCommercialAbstract": "2016-01-31",
|
|
1792
|
-
"LoansAndLeasesReceivableNetReportedAmountComponentsByCategoryAbstract": "2016-01-31",
|
|
1793
|
-
"LoansAndLeasesReceivableNetReportedAmountConsumer": "2016-01-31",
|
|
1794
|
-
"LoansAndLeasesReceivableNetReportedAmountConsumerAbstract": "2016-01-31",
|
|
1795
|
-
"LoansAndLeasesReceivableNetReportedAmountForeign": "2016-01-31",
|
|
1796
|
-
"LoansAndLeasesReceivableNetReportedAmountForeignAbstract": "2016-01-31",
|
|
1797
|
-
"LoansAndLeasesReceivableNetReportedAmountOther": "2016-01-31",
|
|
1798
|
-
"LoansAndLeasesReceivableNetReportedAmountOtherAbstract": "2016-01-31",
|
|
1799
|
-
"LoansAndLeasesReceivableOther": "2016-01-31",
|
|
1800
|
-
"LoansAndLeasesReceivableOtherAllowance": "2016-01-31",
|
|
1801
|
-
"LoansAndLeasesReceivableOtherInformation": "2019-01-31",
|
|
1802
|
-
"LoansAndLeasesReceivableOtherLoansInProcess": "2016-01-31",
|
|
1803
|
-
"LoansAndLeasesReceivableOtherNetOfDeferredIncome": "2016-01-31",
|
|
1804
|
-
"LoansAndLeasesReceivableOtherNetOfDeferredIncomeAbstract": "2016-01-31",
|
|
1805
|
-
"LoansAndLeasesReceivableRelatedPartiesCollections": "2016-01-31",
|
|
1806
|
-
"LoansAndLeasesReceivableValuationPolicy": "2019-01-31",
|
|
1807
|
-
"LoansPledgedAsCollateral": "2022",
|
|
1808
|
-
"LoansReceivableCommercialAcquisition": "2019-01-31",
|
|
1809
|
-
"LoansReceivableCommercialAgricultural": "2019-01-31",
|
|
1810
|
-
"LoansReceivableCommercialAndIndustrial": "2019-01-31",
|
|
1811
|
-
"LoansReceivableCommercialConstruction": "2019-01-31",
|
|
1812
|
-
"LoansReceivableCommercialDevelopment": "2019-01-31",
|
|
1813
|
-
"LoansReceivableCommercialFinancialAndAgricultural": "2019-01-31",
|
|
1814
|
-
"LoansReceivableCommercialFinancialAndAgriculturalAbstract": "2019-01-31",
|
|
1815
|
-
"LoansReceivableCommercialFinancialInstitutions": "2019-01-31",
|
|
1816
|
-
"LoansReceivableCommercialMortgage": "2019-01-31",
|
|
1817
|
-
"LoansReceivableCommercialRealEstate": "2019-01-31",
|
|
1818
|
-
"LoansReceivableCommercialRealEstateAbstract": "2019-01-31",
|
|
1819
|
-
"LoansReceivableCommercialTradeFinancing": "2019-01-31",
|
|
1820
|
-
"LoansReceivableHeldForSaleNetAbstract": "2019-01-31",
|
|
1821
|
-
"LoansReceivableHeldForSaleNetNotPartOfDisposalGroupCommercialAndIndustrial": "2019-01-31",
|
|
1822
|
-
"LoansReceivableHeldForSaleNetNotPartOfDisposalGroupCommercialRealEstate": "2019-01-31",
|
|
1823
|
-
"LoansReceivableHeldForSaleNetNotPartOfDisposalGroupConsumerCreditCard": "2019-01-31",
|
|
1824
|
-
"LoansReceivableHeldForSaleNetNotPartOfDisposalGroupConsumerHomeEquity": "2019-01-31",
|
|
1825
|
-
"LoansReceivableHeldForSaleNetNotPartOfDisposalGroupConsumerStudent": "2019-01-31",
|
|
1826
|
-
"LoansReceivableHeldForSaleNetNotPartOfDisposalGroupMortgage": "2019-01-31",
|
|
1827
|
-
"LoansReceivableHeldForSaleNetNotPartOfDisposalGroupOther": "2019-01-31",
|
|
1828
|
-
"LoansReceivableMortgageWarehouseLending": "2019-01-31",
|
|
1829
|
-
"LoansReceivableNet": "2019-01-31",
|
|
1830
|
-
"LoansReceivableNetAbstract": "2019-01-31",
|
|
1831
|
-
"LondonInterbankOfferedRateLIBORMember": "2023",
|
|
1832
|
-
"LondonInterbankOfferedRateLiborSwapRateMember": "2023",
|
|
1833
|
-
"LongDurationContractsAssumptionsByProductAndGuaranteeDescriptionOfAssumption": "2019-01-31",
|
|
1834
|
-
"LongtermDebtAndCapitalLeaseObligationsNetAlternativeAbstract": "2022",
|
|
1835
|
-
"LongtermDebtExcludingCurrentMaturitiesAbstract": "2016-01-31",
|
|
1836
|
-
"LongtermDebtNetAlternativeAbstract": "2016-01-31",
|
|
1837
|
-
"LossContingencyAccrualCarryingValuePayments": "2016-01-31",
|
|
1838
|
-
"LossContingencyRangeOfPossibleLossMaximum": "2016-01-31",
|
|
1839
|
-
"LossContingencyRangeOfPossibleLossMinimum": "2016-01-31",
|
|
1840
|
-
"LossContingencyRelatedReceivableCarryingValueReceipts": "2016-01-31",
|
|
1841
|
-
"LossContingencySettlementAgreementReportClassification": "2016-01-31",
|
|
1842
|
-
"MaintenanceCosts": "2018-01-31",
|
|
1843
|
-
"MaintenanceRevenue": "2018-01-31",
|
|
1844
|
-
"MajorTypesOfDebtAndEquitySecuritiesAxis": "2018-01-31",
|
|
1845
|
-
"MajorTypesOfDebtAndEquitySecuritiesDomain": "2018-01-31",
|
|
1846
|
-
"MajorTypesOfDebtSecuritiesDomain": "2018-01-31",
|
|
1847
|
-
"MalpracticeInsuranceNameOfCaptiveInsurer": "2021",
|
|
1848
|
-
"MalpracticeLossContingencyAccrualNotRecognizedEstimateOfPossibleLoss": "2016-01-31",
|
|
1849
|
-
"MalpracticeLossContingencyAccrualNotRecognizedHighEndOfLossRange": "2016-01-31",
|
|
1850
|
-
"MalpracticeLossContingencyAccrualNotRecognizedLowEndOfLossRange": "2016-01-31",
|
|
1851
|
-
"MalpracticeLossContingencyBasisForDiscountRate": "2016-01-31",
|
|
1852
|
-
"MalpracticeLossContingencyRestrictedCash": "2016-01-31",
|
|
1853
|
-
"MalpracticeLossContingencySubsequentEvent": "2016-01-31",
|
|
1854
|
-
"MalpracticeLossContingencySubsequentEventAbstract": "2016-01-31",
|
|
1855
|
-
"MalpracticeLossContingencySubsequentEventBestEstimate": "2016-01-31",
|
|
1856
|
-
"MalpracticeLossContingencySubsequentEventHighEndOfLossRange": "2016-01-31",
|
|
1857
|
-
"MalpracticeLossContingencySubsequentEventLowEndOfLossRange": "2016-01-31",
|
|
1858
|
-
"ManagementFeesBaseRevenue": "2018-01-31",
|
|
1859
|
-
"ManagementFeesIncentiveRevenue": "2018-01-31",
|
|
1860
|
-
"ManagementFeesRevenue": "2018-01-31",
|
|
1861
|
-
"ManagementFeesRevenueAbstract": "2018-01-31",
|
|
1862
|
-
"ManagingMemberOrGeneralPartnerRelatedPartyFeesAndOtherArrangements": "2016-01-31",
|
|
1863
|
-
"MarineServicesCosts": "2016-01-31",
|
|
1864
|
-
"MarineServicesRevenue": "2018-01-31",
|
|
1865
|
-
"MarketRiskBenefitPeriodIncreaseDecreaseAbstract": "2022",
|
|
1866
|
-
"MarketValueOfStockDividendsOutstandingOverThirtyDays": "2019-01-31",
|
|
1867
|
-
"MarketableSecuritiesAlternativeAbstract": "2018-01-31",
|
|
1868
|
-
"MarketableSecuritiesAtCostAbstract": "2018-01-31",
|
|
1869
|
-
"MarketableSecuritiesAvailableForSaleSecuritiesPolicy": "2018-01-31",
|
|
1870
|
-
"MarketableSecuritiesCurrentAbstract": "2018-01-31",
|
|
1871
|
-
"MarketableSecuritiesCurrentAlternativeAbstract": "2018-01-31",
|
|
1872
|
-
"MarketableSecuritiesEquitySecurities": "2018-01-31",
|
|
1873
|
-
"MarketableSecuritiesEquitySecuritiesAbstract": "2018-01-31",
|
|
1874
|
-
"MarketableSecuritiesEquitySecuritiesCurrent": "2018-01-31",
|
|
1875
|
-
"MarketableSecuritiesEquitySecuritiesCurrentAlternativeAbstract": "2018-01-31",
|
|
1876
|
-
"MarketableSecuritiesFixedMaturities": "2018-01-31",
|
|
1877
|
-
"MarketableSecuritiesFixedMaturitiesAbstract": "2018-01-31",
|
|
1878
|
-
"MarketableSecuritiesFixedMaturitiesCurrent": "2018-01-31",
|
|
1879
|
-
"MarketableSecuritiesFixedMaturitiesCurrentAlternativeAbstract": "2018-01-31",
|
|
1880
|
-
"MarketableSecuritiesHeldToMaturitySecuritiesPolicy": "2018-01-31",
|
|
1881
|
-
"MarketableSecuritiesNoncurrentAbstract": "2018-01-31",
|
|
1882
|
-
"MarketableSecuritiesRealizedGainLossAbstract": "2018-01-31",
|
|
1883
|
-
"MarketableSecuritiesRealizedGainLossExcludingOtherThanTemporaryImpairmentsAbstract": "2018-01-31",
|
|
1884
|
-
"MarketableSecuritiesRealizedGainLossOtherThanTemporaryImpairmentsAmount": "2018-01-31",
|
|
1885
|
-
"MarketableSecuritiesRealizedGainLossOtherThanTemporaryImpairmentsDescription": "2019-01-31",
|
|
1886
|
-
"MarketableSecuritiesRestricted": "2018-01-31",
|
|
1887
|
-
"MarketableSecuritiesRestrictedAbstract": "2018-01-31",
|
|
1888
|
-
"MarketableSecuritiesRestrictedCurrent": "2018-01-31",
|
|
1889
|
-
"MarketableSecuritiesRestrictedCurrentAbstract": "2018-01-31",
|
|
1890
|
-
"MarketableSecuritiesRestrictedNoncurrent": "2018-01-31",
|
|
1891
|
-
"MarketableSecuritiesRestrictedNoncurrentAbstract": "2018-01-31",
|
|
1892
|
-
"MarketableSecuritiesTradingSecuritiesPolicy": "2018-01-31",
|
|
1893
|
-
"MarketableSecuritiesUnrealizedGainLossAbstract": "2018-01-31",
|
|
1894
|
-
"MarketableSecuritiesUnrealizedGainLossExcludingOtherThanTemporaryImpairmentsAbstract": "2018-01-31",
|
|
1895
|
-
"MaterialNonrecurringReinsuranceTransactions": "2020",
|
|
1896
|
-
"MemberOfGroupFilingConsolidatedReturnPolicy": "2020",
|
|
1897
|
-
"MembershipDuesRevenueOnGoing": "2018-01-31",
|
|
1898
|
-
"MerchantDiscountFees": "2018-01-31",
|
|
1899
|
-
"MineralExtractionProcessingAndMarketingCosts": "2018-01-31",
|
|
1900
|
-
"MineralExtractionProcessingAndMarketingCostsAbstract": "2018-01-31",
|
|
1901
|
-
"MinorityInterestPreferredStockAmount": "2016-01-31",
|
|
1902
|
-
"MinorityInterestPreferredStockDescription": "2016-01-31",
|
|
1903
|
-
"MortgageLoansOnRealEstateCarryingAmountOfMortgages": "2018-01-31",
|
|
1904
|
-
"MortgageLoansOnRealEstateEffectOfNoncashTransactions": "2016-01-31",
|
|
1905
|
-
"MortgageLoansOnRealEstateGeographicLocationOfProperty": "2018-01-31",
|
|
1906
|
-
"MortgageLoansOnRealEstateMaximumInterestRateInRange": "2016-01-31",
|
|
1907
|
-
"MortgageLoansOnRealEstateMinimumInterestRateInRange": "2016-01-31",
|
|
1908
|
-
"MovementInAccrualForEnvironmentalLossContingenciesDisclosures": "2016-01-31",
|
|
1909
|
-
"MovementInIntangibleAssetsArisingFromInsuranceContractsAcquiredInBusinessCombinationRollForward": "2017-01-31",
|
|
1910
|
-
"MovementInLiabilityForUnpaidClaimsAndClaimsAdjustmentExpenseNetRollForward": "2022",
|
|
1911
|
-
"MultiemployerPlanCollectiveBargainingArrangementPercentageOfContributionsRequiredForMultipleCollectiveBargainingArrangements": "2020",
|
|
1912
|
-
"MultiemployerPlanCollectiveBargainingArrangementRequiredPercentageOfContributions": "2020",
|
|
1913
|
-
"MultiemployerPlanContributionsByEmployer": "2020",
|
|
1914
|
-
"MultiemployerPlanIndividuallyInsignificantMultiemployerPlansMember": "2020",
|
|
1915
|
-
"MultiemployerPlanNameAxis": "2020",
|
|
1916
|
-
"MultiemployerPlanNameDomain": "2020",
|
|
1917
|
-
"MultiemployerPlanNumber": "2020",
|
|
1918
|
-
"MultiemployerPlanPeriodContributions": "2017-01-31",
|
|
1919
|
-
"MultiemployerPlanPlanInformationAvailableMember": "2020",
|
|
1920
|
-
"MultiemployerPlanPlanInformationAxis": "2020",
|
|
1921
|
-
"MultiemployerPlanPlanInformationDomain": "2020",
|
|
1922
|
-
"MultiemployerPlanPlanInformationNotAvailableMember": "2020",
|
|
1923
|
-
"MultiemployerPlanTypeAxis": "2020",
|
|
1924
|
-
"MultiemployerPlansAbstract": "2020",
|
|
1925
|
-
"MultiemployerPlansAccumulatedBenefitObligation": "2020",
|
|
1926
|
-
"MultiemployerPlansCertifiedZoneStatus": "2020",
|
|
1927
|
-
"MultiemployerPlansCertifiedZoneStatusDate": "2020",
|
|
1928
|
-
"MultiemployerPlansCertifiedZoneStatusExtendedAmortizationProvisions": "2020",
|
|
1929
|
-
"MultiemployerPlansCollectiveBargainingArrangementExpirationDate": "2020",
|
|
1930
|
-
"MultiemployerPlansCollectiveBargainingArrangementExpirationDateFirst": "2020",
|
|
1931
|
-
"MultiemployerPlansCollectiveBargainingArrangementExpirationDateLast": "2020",
|
|
1932
|
-
"MultiemployerPlansCollectiveBargainingArrangementPercentageOfContributions": "2017-01-31",
|
|
1933
|
-
"MultiemployerPlansCollectiveBargainingArrangementPercentageOfEmployersContributions": "2017-01-31",
|
|
1934
|
-
"MultiemployerPlansCollectiveBargainingArrangementPercentageOfEmployersParticipants": "2020",
|
|
1935
|
-
"MultiemployerPlansCollectiveBargainingArrangementPercentageOfParticipants": "2020",
|
|
1936
|
-
"MultiemployerPlansContributionRateIncreaseDecrease": "2017-01-31",
|
|
1937
|
-
"MultiemployerPlansFundedStatus": "2020",
|
|
1938
|
-
"MultiemployerPlansFundingImprovementPlanAndRehabilitationPlan": "2020",
|
|
1939
|
-
"MultiemployerPlansInformationNotAvailable": "2020",
|
|
1940
|
-
"MultiemployerPlansMinimumContribution": "2020",
|
|
1941
|
-
"MultiemployerPlansPensionMember": "2020",
|
|
1942
|
-
"MultiemployerPlansPeriodContributionsSignificanceOfContributions": "2020",
|
|
1943
|
-
"MultiemployerPlansPlanAssets": "2020",
|
|
1944
|
-
"MultiemployerPlansPlanContributions": "2017-01-31",
|
|
1945
|
-
"MultiemployerPlansPlanContributions1": "2020",
|
|
1946
|
-
"MultiemployerPlansPostretirementBenefitMember": "2020",
|
|
1947
|
-
"MultiemployerPlansReportDate": "2020",
|
|
1948
|
-
"MultiemployerPlansSurcharge": "2020",
|
|
1949
|
-
"MultiemployerPlansTypeDomain": "2020",
|
|
1950
|
-
"NGLReservesNotClearlyAttributableToLeaseholdInterests": "2018-01-31",
|
|
1951
|
-
"NameOfPersonMakingAppraisal": "2018-01-31",
|
|
1952
|
-
"NationalCreditUnionShareInsuranceFundNCUSIFDeposit": "2016-01-31",
|
|
1953
|
-
"NaturalGasLiquidReservesNotClearlyAttributableToLeaseholdInterestsProvedAndUnprovedReserves": "2018-01-31",
|
|
1954
|
-
"NaturalGasMidstreamCosts": "2018-01-31",
|
|
1955
|
-
"NaturalGasMidstreamRevenue": "2018-01-31",
|
|
1956
|
-
"NaturalGasMidstreamRevenueAbstract": "2016-01-31",
|
|
1957
|
-
"NaturalGasProductionRevenue": "2018-01-31",
|
|
1958
|
-
"NaturalGasStorageRevenue": "2018-01-31",
|
|
1959
|
-
"NatureOfDeferredPolicyAcquisitionCosts": "2018-01-31",
|
|
1960
|
-
"NatureOfErrorDomain": "2021",
|
|
1961
|
-
"NatureOfPresentValueOfFutureInsuranceProfits": "2017-01-31",
|
|
1962
|
-
"NaturePurposeAndEffectOfReinsuranceTransactions": "2020",
|
|
1963
|
-
"NetAssetsAdjustedBalance": "2020",
|
|
1964
|
-
"NetAssetsAdjustedBalanceAbstract": "2020",
|
|
1965
|
-
"NetCapitalAbstract": "2019-01-31",
|
|
1966
|
-
"NetCapitalAsReportedInEntitysPartIIUnauditedFOCUSReport": "2019-01-31",
|
|
1967
|
-
"NetCapitalBeforeHaircutsOnSecuritiesPositions": "2019-01-31",
|
|
1968
|
-
"NetCapitalBeforeHaircutsOnSecuritiesPositionsAbstract": "2019-01-31",
|
|
1969
|
-
"NetCapitalInExcessOfFourPercentOfDebitItems": "2019-01-31",
|
|
1970
|
-
"NetCapitalReconciliationWithEntitysComputationAbstract": "2019-01-31",
|
|
1971
|
-
"NetInvestmentInLeaseChangeInPresentValueExpenseReversal": "2022",
|
|
1972
|
-
"NetInvestmentInLeaseNotPastDue": "2021",
|
|
1973
|
-
"NetInvestmentInLeasePastDue": "2021",
|
|
1974
|
-
"NetProductiveAndDryWellsDrilledDisclosureTextBlock": "2019-01-31",
|
|
1975
|
-
"NetRealizedOrUnrealizedGainLossOnTradingSecurities": "2023",
|
|
1976
|
-
"NewAccountingPrinciplesEarlyAdoptionMember": "2021",
|
|
1977
|
-
"NewAccountingPronouncementEarlyAdoptionAxis": "2021",
|
|
1978
|
-
"NewAccountingPronouncementEarlyAdoptionEffectMember": "2021",
|
|
1979
|
-
"NewAccountingPronouncementEarlyAdoptionLineItems": "2021",
|
|
1980
|
-
"NewAccountingPronouncementEarlyAdoptionTable": "2021",
|
|
1981
|
-
"NewAccountingPronouncementEarlyAdoptionTableTextBlock": "2021",
|
|
1982
|
-
"NewAccountingPronouncementMember": "2021",
|
|
1983
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleCumulativeEffectOfChangeOnEquityOrNetAssets1": "2020",
|
|
1984
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleCurrentPeriodDisclosuresAbstract": "2016-01-31",
|
|
1985
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleCurrentPeriodDisclosuresDeferredRevenueAmount": "2016-01-31",
|
|
1986
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleCurrentPeriodDisclosuresRevenueRecognizedAmount": "2016-01-31",
|
|
1987
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleDescriptionOfFinancialStatementLineItemsProspectiveTransition": "2021",
|
|
1988
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleDescriptionOfTransitionMethod": "2019-01-31",
|
|
1989
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleEffectOfAdoptionQuantification": "2020",
|
|
1990
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleEffectOfChangeOnBasicEarningsPerShare": "2020",
|
|
1991
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleEffectOfChangeOnDilutedEarningsPerShare": "2020",
|
|
1992
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleEffectOfChangeOnIncomeFromContinuingOperations": "2016-01-31",
|
|
1993
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleEffectOfChangeOnNetIncome": "2020",
|
|
1994
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleEffectOfChangeOnNetRevenue": "2016-01-31",
|
|
1995
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleEffectOfChangeOnOperatingResults": "2020",
|
|
1996
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleEffectOnFinancialStatementsFlag": "2020",
|
|
1997
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleName": "2016-01-31",
|
|
1998
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleRetrospectiveAdjustmentsAbstract": "2020",
|
|
1999
|
-
"NewAccountingPronouncementOrChangeInAccountingPrincipleRetrospectiveApplicationImpracticable": "2020",
|
|
2000
|
-
"NewAccountingPronouncementTransitionGuidanceNotSignificantOrNotPractical": "2020",
|
|
2001
|
-
"NonRecourseDebt": "2022",
|
|
2002
|
-
"NonallowableAssets": "2019-01-31",
|
|
2003
|
-
"NonallowableAssetsAbstract": "2019-01-31",
|
|
2004
|
-
"NonarrangementTransactionsMember": "2019-01-31",
|
|
2005
|
-
"NoncashCommissionAndClosingCosts": "2016-01-31",
|
|
2006
|
-
"NoncontrollingInterestBalanceSheetLocation": "2016-01-31",
|
|
2007
|
-
"NoninterestBearingDepositLiabilitiesForeignByComponentAbstract": "2016-01-31",
|
|
2008
|
-
"NoninterestBearingForeignDepositBrokered": "2016-01-31",
|
|
2009
|
-
"NoninterestBearingForeignDepositChecking": "2016-01-31",
|
|
2010
|
-
"NoninterestBearingForeignDepositDemand": "2016-01-31",
|
|
2011
|
-
"NoninterestBearingForeignDepositRetail": "2016-01-31",
|
|
2012
|
-
"NoninterestExpenseDistributionAndServicingFees": "2019-01-31",
|
|
2013
|
-
"NonmonetaryTransactionFairValueNotDeterminable": "2023",
|
|
2014
|
-
"NotesPayableRelatedPartiesClassifiedCurrent": "2023",
|
|
2015
|
-
"NotesPayableRelatedPartiesCurrentAndNoncurrent": "2023",
|
|
2016
|
-
"NotesPayableRelatedPartiesNoncurrent": "2023",
|
|
2017
|
-
"NotesReceivableRelatedParties": "2023",
|
|
2018
|
-
"NotesReceivableRelatedPartiesCurrent": "2023",
|
|
2019
|
-
"NotesReceivableRelatedPartiesNoncurrent": "2023",
|
|
2020
|
-
"OccupancyCosts": "2018-01-31",
|
|
2021
|
-
"OccupancyRevenue": "2018-01-31",
|
|
2022
|
-
"OilAndCondensateRevenue": "2018-01-31",
|
|
2023
|
-
"OilAndGasDeliveryCommitmentsAndContractsAdditionalInformationAbstract": "2019-01-31",
|
|
2024
|
-
"OilAndGasDeliveryCommitmentsAndContractsReservesOrSuppliesSubjectToPrioritiesOrCurtailments": "2019-01-31",
|
|
2025
|
-
"OilAndGasProductionExpense": "2018-01-31",
|
|
2026
|
-
"OilAndGasRevenue": "2018-01-31",
|
|
2027
|
-
"OilAndGasRevenueAbstract": "2018-01-31",
|
|
2028
|
-
"OilAndGasSalesRevenue": "2018-01-31",
|
|
2029
|
-
"OpenOptionContractsWrittenAtFairValue": "2023",
|
|
2030
|
-
"OpenOptionContractsWrittenExercisePrice": "2023",
|
|
2031
|
-
"OpenOptionContractsWrittenExpirationDates": "2023",
|
|
2032
|
-
"OpenOptionContractsWrittenNumberOfContracts": "2023",
|
|
2033
|
-
"OpenOptionContractsWrittenNumberOfShares": "2023",
|
|
2034
|
-
"OpenOptionContractsWrittenTextBlock": "2016-01-31",
|
|
2035
|
-
"OpenOptionContractsWrittenTypeAxis": "2023",
|
|
2036
|
-
"OperatingCycle": "2020",
|
|
2037
|
-
"OperatingLeaseWeightedAverageRemainingLeaseTerm": "2018-01-31",
|
|
2038
|
-
"OtherAlternativeEnergySalesRevenue": "2018-01-31",
|
|
2039
|
-
"OtherAssetsNotAllowed": "2019-01-31",
|
|
2040
|
-
"OtherComprehensiveIncomeCumulativeEffectOfChangeInAccountingPrincipleBeforeTaxes": "2016-01-31",
|
|
2041
|
-
"OtherComprehensiveIncomeCumulativeEffectOfChangeInAccountingPrincipleNetOfTaxes": "2016-01-31",
|
|
2042
|
-
"OtherComprehensiveIncomeCumulativeEffectOfChangeInAccountingPrincipleNetOfTaxesAbstract": "2016-01-31",
|
|
2043
|
-
"OtherComprehensiveIncomeCumulativeEffectOfChangeInAccountingPrincipleTaxes": "2016-01-31",
|
|
2044
|
-
"OtherComprehensiveIncomeLossDerivativeExcludedComponentIncreaseDecreaseAfterAdjustmentsAndTaxNoncontrollingInterest": "2019-01-31",
|
|
2045
|
-
"OtherComprehensiveIncomeLossDerivativeExcludedComponentIncreaseDecreaseAfterAdjustmentsBeforeTaxNoncontrollingInterest": "2019-01-31",
|
|
2046
|
-
"OtherComprehensiveIncomeLossDerivativeExcludedComponentIncreaseDecreaseAfterAdjustmentsTaxNoncontrollingInterest": "2019-01-31",
|
|
2047
|
-
"OtherConstructionCosts": "2018-01-31",
|
|
2048
|
-
"OtherConstructionRevenue": "2016-01-31",
|
|
2049
|
-
"OtherCostOfServices": "2018-01-31",
|
|
2050
|
-
"OtherDeductionsAndCharges": "2019-01-31",
|
|
2051
|
-
"OtherDeductionsOrAllowableCredits": "2019-01-31",
|
|
2052
|
-
"OtherDeferredCostsDescriptionOfSignificantAdditionsOrDeletions": "2016-01-31",
|
|
2053
|
-
"OtherDirectCostsOfHotels": "2018-01-31",
|
|
2054
|
-
"OtherExtraordinaryGainLoss": "2019-01-31",
|
|
2055
|
-
"OtherFinancialServicesCosts": "2018-01-31",
|
|
2056
|
-
"OtherHotelOperatingRevenue": "2018-01-31",
|
|
2057
|
-
"OtherIncomeAndOtherExpenseDisclosureNonoperating": "2016-01-31",
|
|
2058
|
-
"OtherMarketableSecuritiesCurrent": "2018-01-31",
|
|
2059
|
-
"OtherMarketableSecuritiesNoncurrent": "2018-01-31",
|
|
2060
|
-
"OtherMarketableSecuritiesRestrictedCurrent": "2016-01-31",
|
|
2061
|
-
"OtherMarketableSecuritiesRestrictedNoncurrent": "2016-01-31",
|
|
2062
|
-
"OtherRealEstateRevenue": "2018-01-31",
|
|
2063
|
-
"OtherSalesRevenueNet": "2018-01-31",
|
|
2064
|
-
"OtherSignificantAspectsOfOilAndGasDeliveryCommitments": "2019-01-31",
|
|
2065
|
-
"OtherThanTemporaryImpairmentLossesInvestmentsAvailableforsaleSecurities": "2023",
|
|
2066
|
-
"OtherThanTemporaryImpairmentLossesInvestmentsAvailableforsaleSecuritiesPortionRecognizedInEarningsNetQualitativeDisclosuresThirdPartyGuaranteesAbstract": "2018-01-31",
|
|
2067
|
-
"OtherThanTemporaryImpairmentLossesInvestmentsHeldtomaturitySecuritiesPortionRecognizedInEarningsNetQualitativeDisclosuresThirdPartyGuaranteesAbstract": "2018-01-31",
|
|
2068
|
-
"OtherThanTemporaryImpairmentLossesInvestmentsPortionRecognizedInEarningsNet": "2023",
|
|
2069
|
-
"OtherThanTemporaryImpairmentLossesInvestmentsPortionRecognizedInEarningsNetAvailableforsaleSecurities": "2023",
|
|
2070
|
-
"OtherUnrecordedAmounts": "2019-01-31",
|
|
2071
|
-
"OtherUtilityCosts": "2018-01-31",
|
|
2072
|
-
"OwnedPropertyManagementCosts": "2018-01-31",
|
|
2073
|
-
"ParkingRevenue": "2018-01-31",
|
|
2074
|
-
"ParticipatingMortgageLoanArrangementsAbstract": "2016-01-31",
|
|
2075
|
-
"ParticipatingMortgageLoanArrangementsDescription": "2016-01-31",
|
|
2076
|
-
"ParticipatingMortgageLoanDescription": "2016-01-31",
|
|
2077
|
-
"ParticipatingSecuritiesDistributedAndUndistributedEarningsAbstract": "2017-01-31",
|
|
2078
|
-
"ParticipatingSecuritiesDistributedAndUndistributedEarningsLossDilutedAbstract": "2017-01-31",
|
|
2079
|
-
"PartnersCapitalAccountDescriptionOfUnitsRedeemed": "2016-01-31",
|
|
2080
|
-
"PartnersCapitalAccountRestatementAdjustment": "2016-01-31",
|
|
2081
|
-
"PartnersCapitalAdjustedBalance1": "2020",
|
|
2082
|
-
"PartnersCapitalDeferredCompensation": "2016-01-31",
|
|
2083
|
-
"PartnersCapitalDeferredCompensationAbstract": "2016-01-31",
|
|
2084
|
-
"PartnersCapitalDeferredCompensationOnRestrictedUnit": "2016-01-31",
|
|
2085
|
-
"PartnersCapitalOtherDeferredCompensation": "2016-01-31",
|
|
2086
|
-
"PassengerRevenue": "2018-01-31",
|
|
2087
|
-
"PassengerRevenueAbstract": "2018-01-31",
|
|
2088
|
-
"PassengerRevenueMainline": "2018-01-31",
|
|
2089
|
-
"PassengerRevenueRegional": "2018-01-31",
|
|
2090
|
-
"PaymentsForDemandSideManagementProgram": "2016-01-31",
|
|
2091
|
-
"PaymentsForExploitationLiabilities": "2016-01-31",
|
|
2092
|
-
"PaymentsForManufacturingCosts": "2016-01-31",
|
|
2093
|
-
"PaymentsToAcquireAvailableForSaleSecurities": "2023",
|
|
2094
|
-
"PaymentsToAcquireAvailableForSaleSecuritiesAbstract": "2018-01-31",
|
|
2095
|
-
"PaymentsToAcquireAvailableForSaleSecuritiesEquity": "2023",
|
|
2096
|
-
"PaymentsToAcquireMarketableSecuritiesAbstract": "2018-01-31",
|
|
2097
|
-
"PaymentsToAcquireUSGovernmentSecuritiesPledgedUnderBondIndenture": "2016-01-31",
|
|
2098
|
-
"PercentageOfAmountAmortizedOfEndingPresentValueOfFutureInsuranceProfitsYearFive": "2017-01-31",
|
|
2099
|
-
"PercentageOfAmountAmortizedOfEndingPresentValueOfFutureInsuranceProfitsYearFour": "2017-01-31",
|
|
2100
|
-
"PercentageOfAmountAmortizedOfEndingPresentValueOfFutureInsuranceProfitsYearOne": "2017-01-31",
|
|
2101
|
-
"PercentageOfAmountAmortizedOfEndingPresentValueOfFutureInsuranceProfitsYearThree": "2017-01-31",
|
|
2102
|
-
"PercentageOfAmountAmortizedOfEndingPresentValueOfFutureInsuranceProfitsYearTwo": "2017-01-31",
|
|
2103
|
-
"PercentageOfParticipatingPoliciesDisclosure": "2017-01-31",
|
|
2104
|
-
"PerformanceFees": "2018-01-31",
|
|
2105
|
-
"PhysicalUnitOfProduction": "2016-01-31",
|
|
2106
|
-
"PledgedAssetsNotSeparatelyReportedFinanceReceivables": "2022",
|
|
2107
|
-
"PledgedAssetsNotSeparatelyReportedNonsecuritizedInvestments": "2022",
|
|
2108
|
-
"PledgedAssetsNotSeparatelyReportedOnStatementOfFinancialPosition": "2022",
|
|
2109
|
-
"PledgedAssetsNotSeparatelyReportedOnStatementOfFinancialPositionAbstract": "2022",
|
|
2110
|
-
"PledgedAssetsNotSeparatelyReportedOtherFinancialInstruments": "2022",
|
|
2111
|
-
"PledgedAssetsNotSeparatelyReportedRealEstate": "2022",
|
|
2112
|
-
"PledgedAssetsSeparatelyReportedFinanceReceivablesPledgedAsCollateralAtFairValue": "2022",
|
|
2113
|
-
"PledgedAssetsSeparatelyReportedLoansPledgedAsCollateralAtFairValue": "2022",
|
|
2114
|
-
"PledgedAssetsSeparatelyReportedLoansPledgedAsCollateralAtFairValueAbstract": "2022",
|
|
2115
|
-
"PledgedAssetsSeparatelyReportedLoansPledgedForFederalHomeLoanBankAtFairValue": "2022",
|
|
2116
|
-
"PledgedAssetsSeparatelyReportedLoansPledgedForOtherDebtObligationsAtFairValue": "2022",
|
|
2117
|
-
"PledgedAssetsSeparatelyReportedLoansPledgedForRepurchaseAgreementsAtFairValue": "2022",
|
|
2118
|
-
"PledgedAssetsSeparatelyReportedMortgageRelatedSecuritiesAvailableForSaleOrHeldForInvestment": "2022",
|
|
2119
|
-
"PledgedAssetsSeparatelyReportedMortgageRelatedSecuritiesHeldToMaturity": "2016-01-31",
|
|
2120
|
-
"PledgedAssetsSeparatelyReportedNonsecuritizedInvestmentsPledgedAsCollateralAtFairValue": "2022",
|
|
2121
|
-
"PledgedAssetsSeparatelyReportedOnStatementOfFinancialPositionAbstract": "2022",
|
|
2122
|
-
"PledgedAssetsSeparatelyReportedOnStatementOfFinancialPositionAtFairValue": "2022",
|
|
2123
|
-
"PledgedAssetsSeparatelyReportedOnStatementOfFinancialPositionAtFairValueAbstract": "2022",
|
|
2124
|
-
"PledgedAssetsSeparatelyReportedOnStatementOfFinancialPositionDescription": "2016-01-31",
|
|
2125
|
-
"PledgedAssetsSeparatelyReportedOtherAssetsPledgedAsCollateralAtFairValue": "2022",
|
|
2126
|
-
"PledgedAssetsSeparatelyReportedOtherDebtSecuritiesAvailableForSaleOrHeldForInvestment": "2022",
|
|
2127
|
-
"PledgedAssetsSeparatelyReportedOtherDebtSecuritiesHeldToMaturity": "2016-01-31",
|
|
2128
|
-
"PledgedAssetsSeparatelyReportedRealEstatePledgedAsCollateralAtFairValue": "2022",
|
|
2129
|
-
"PledgedAssetsSeparatelyReportedSecuritiesPledgedAsCollateralAtFairValue": "2022",
|
|
2130
|
-
"PledgedAssetsSeparatelyReportedSecuritiesPledgedAsCollateralAtFairValueByTypeOfAgreementAbstract": "2022",
|
|
2131
|
-
"PledgedAssetsSeparatelyReportedSecuritiesPledgedForFederalHomeLoanBankAtFairValue": "2022",
|
|
2132
|
-
"PledgedAssetsSeparatelyReportedSecuritiesPledgedForOtherDebtObligationsAtFairValue": "2022",
|
|
2133
|
-
"PledgedAssetsSeparatelyReportedSecuritiesPledgedForRepurchaseAgreementsAtFairValue": "2022",
|
|
2134
|
-
"PledgedAssetsSeparatelyReportedSecuritiesPledgedUnderLetterOfCreditFacilitiesAtFairValue": "2022",
|
|
2135
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedAbstract": "2022",
|
|
2136
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedLoansReceivablePledgedAsCollateral": "2022",
|
|
2137
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedLoansReceivablePledgedAsCollateralAbstract": "2022",
|
|
2138
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedLoansReceivablePledgedForFederalHomeLoanBankDebt": "2022",
|
|
2139
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedLoansReceivablePledgedForOtherArrangements": "2022",
|
|
2140
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedLoansReceivablePledgedForRepurchaseAgreements": "2022",
|
|
2141
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedMortgageRelatedSecuritiesAvailableForSaleOrHeldForInvestment": "2022",
|
|
2142
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedMortgageRelatedSecuritiesHeldToMaturity": "2022",
|
|
2143
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedOnStatementOfFinancialPositionAbstract": "2022",
|
|
2144
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedOtherDebtSecuritiesAvailableForSaleOrHeldForInvestment": "2022",
|
|
2145
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedOtherDebtSecuritiesHeldToMaturity": "2022",
|
|
2146
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedSecuritiesForFederalHomeLoanBank": "2022",
|
|
2147
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedSecuritiesForLetterOfCreditFacilities": "2022",
|
|
2148
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedSecuritiesForOtherDebtFacilities": "2022",
|
|
2149
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedSecuritiesForRepurchaseAgreements": "2022",
|
|
2150
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedSecuritiesPledged": "2022",
|
|
2151
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedSecuritiesPledgedByTypeOfAgreementAbstract": "2022",
|
|
2152
|
-
"PledgedFinancialInstrumentsNotSeparatelyReportedSecuritiesPledgedByTypeOfSecurityAbstract": "2022",
|
|
2153
|
-
"PledgedFinancialInstrumentsSeparatelyReportedSecuritiesPledgedByTypeOfSecurityAbstract": "2022",
|
|
2154
|
-
"PostconfirmationAbstract": "2021",
|
|
2155
|
-
"PostconfirmationAccountsPayable": "2021",
|
|
2156
|
-
"PostconfirmationAccruedLiabilities": "2021",
|
|
2157
|
-
"PostconfirmationAccumulatedDepreciationAndAmortization": "2021",
|
|
2158
|
-
"PostconfirmationAccumulatedOtherComprehensiveIncomeLoss": "2021",
|
|
2159
|
-
"PostconfirmationAdditionalPaidInCapital": "2021",
|
|
2160
|
-
"PostconfirmationAmortizableIntangibleAssets": "2021",
|
|
2161
|
-
"PostconfirmationAssets": "2021",
|
|
2162
|
-
"PostconfirmationAssetsAbstract": "2021",
|
|
2163
|
-
"PostconfirmationBuildingsAndImprovements": "2021",
|
|
2164
|
-
"PostconfirmationCapitalLeaseObligationsNoncurrent": "2021",
|
|
2165
|
-
"PostconfirmationCashAndCashEquivalents": "2021",
|
|
2166
|
-
"PostconfirmationCommonStock": "2021",
|
|
2167
|
-
"PostconfirmationCurrentAssets": "2021",
|
|
2168
|
-
"PostconfirmationCurrentAssetsAbstract": "2021",
|
|
2169
|
-
"PostconfirmationCurrentLiabilities": "2021",
|
|
2170
|
-
"PostconfirmationCurrentLiabilitiesAbstract": "2021",
|
|
2171
|
-
"PostconfirmationCurrentMaturitiesOfCapitalLeaseObligations": "2021",
|
|
2172
|
-
"PostconfirmationCurrentMaturitiesOfLongTermDebt": "2021",
|
|
2173
|
-
"PostconfirmationDebtorInPossessionFinancing": "2021",
|
|
2174
|
-
"PostconfirmationDeferredFinancingCosts": "2021",
|
|
2175
|
-
"PostconfirmationDeferredIncomeTaxAssetsCurrent": "2021",
|
|
2176
|
-
"PostconfirmationDeferredIncomeTaxAssetsNoncurrent": "2021",
|
|
2177
|
-
"PostconfirmationDeferredIncomeTaxLiabilitiesCurrent": "2021",
|
|
2178
|
-
"PostconfirmationDeferredIncomeTaxLiabilitiesNoncurrent": "2021",
|
|
2179
|
-
"PostconfirmationEquipment": "2021",
|
|
2180
|
-
"PostconfirmationFurnitureAndFixtures": "2021",
|
|
2181
|
-
"PostconfirmationGoodwill": "2021",
|
|
2182
|
-
"PostconfirmationInventories": "2021",
|
|
2183
|
-
"PostconfirmationInvestments": "2021",
|
|
2184
|
-
"PostconfirmationLand": "2021",
|
|
2185
|
-
"PostconfirmationLeaseholdImprovements": "2021",
|
|
2186
|
-
"PostconfirmationLiabilities": "2021",
|
|
2187
|
-
"PostconfirmationLiabilitiesAbstract": "2021",
|
|
2188
|
-
"PostconfirmationLiabilitiesAndStockholdersEquity": "2021",
|
|
2189
|
-
"PostconfirmationLiabilitiesAndStockholdersEquityAbstract": "2021",
|
|
2190
|
-
"PostconfirmationLiabilitiesSubjectToCompromise": "2021",
|
|
2191
|
-
"PostconfirmationLongTermDebt": "2021",
|
|
2192
|
-
"PostconfirmationLongTermDebtAbstract": "2021",
|
|
2193
|
-
"PostconfirmationNonamortizableIntangibleAssets": "2021",
|
|
2194
|
-
"PostconfirmationNoncurrentOtherObligations": "2021",
|
|
2195
|
-
"PostconfirmationOtherAssets": "2021",
|
|
2196
|
-
"PostconfirmationOtherAssetsAbstract": "2021",
|
|
2197
|
-
"PostconfirmationOtherAssetsNoncurrent": "2021",
|
|
2198
|
-
"PostconfirmationOtherCurrentLiabilities": "2021",
|
|
2199
|
-
"PostconfirmationOtherLongTermDebt": "2021",
|
|
2200
|
-
"PostconfirmationOtherNoncurrentObligations": "2021",
|
|
2201
|
-
"PostconfirmationOtherNoncurrentObligationsAbstract": "2021",
|
|
2202
|
-
"PostconfirmationOtherPostretirementObligations": "2021",
|
|
2203
|
-
"PostconfirmationOtherPropertyAndEquipment": "2021",
|
|
2204
|
-
"PostconfirmationPensionObligations": "2021",
|
|
2205
|
-
"PostconfirmationPostconfirmationCreditFacility": "2021",
|
|
2206
|
-
"PostconfirmationPreferredAndCommonStockHeldInTreasury": "2021",
|
|
2207
|
-
"PostconfirmationPreferredStock": "2021",
|
|
2208
|
-
"PostconfirmationPrepaidAndOtherCurrentAssets": "2021",
|
|
2209
|
-
"PostconfirmationPropertyAndEquipmentNet": "2021",
|
|
2210
|
-
"PostconfirmationPropertyAndEquipmentNetAbstract": "2021",
|
|
2211
|
-
"PostconfirmationPropertyUnderCapitalLeaseArrangements": "2021",
|
|
2212
|
-
"PostconfirmationReceivablesNet": "2021",
|
|
2213
|
-
"PostconfirmationReorganizationValueInExcessOfAmountsAllocableToIdentifiableAssets": "2021",
|
|
2214
|
-
"PostconfirmationRestrictedCashAndCashEquivalentsCurrent": "2021",
|
|
2215
|
-
"PostconfirmationRestrictedCashAndCashEquivalentsNoncurrent": "2021",
|
|
2216
|
-
"PostconfirmationRetainedEarningsDeficit": "2021",
|
|
2217
|
-
"PostconfirmationShortTermBorrowings": "2021",
|
|
2218
|
-
"PostconfirmationShortTermInvestments": "2021",
|
|
2219
|
-
"PostconfirmationStockholdersEquity": "2021",
|
|
2220
|
-
"PostconfirmationStockholdersEquityAbstract": "2021",
|
|
2221
|
-
"PostretirementMedicalPlansWithPrescriptionDrugBenefitsDescriptionOfOtherSignificantChange": "2017-01-31",
|
|
2222
|
-
"PreconfirmationAbstract": "2021",
|
|
2223
|
-
"PreconfirmationAccountsPayable": "2021",
|
|
2224
|
-
"PreconfirmationAccruedLiabilities": "2021",
|
|
2225
|
-
"PreconfirmationAccumulatedDepreciationAndAmortization": "2021",
|
|
2226
|
-
"PreconfirmationAccumulatedOtherComprehensiveIncomeLoss": "2021",
|
|
2227
|
-
"PreconfirmationAdditionalPaidInCapital": "2021",
|
|
2228
|
-
"PreconfirmationAmortizableIntangibleAssetsNet": "2021",
|
|
2229
|
-
"PreconfirmationAssets": "2021",
|
|
2230
|
-
"PreconfirmationAssetsAbstract": "2021",
|
|
2231
|
-
"PreconfirmationBuildingsAndImprovements": "2021",
|
|
2232
|
-
"PreconfirmationCapitalLeaseObligationsNoncurrent": "2021",
|
|
2233
|
-
"PreconfirmationCashAndCashEquivalents": "2021",
|
|
2234
|
-
"PreconfirmationCommonStock": "2021",
|
|
2235
|
-
"PreconfirmationCurrentAssets": "2021",
|
|
2236
|
-
"PreconfirmationCurrentAssetsAbstract": "2021",
|
|
2237
|
-
"PreconfirmationCurrentLiabilities": "2021",
|
|
2238
|
-
"PreconfirmationCurrentLiabilitiesAbstract": "2021",
|
|
2239
|
-
"PreconfirmationCurrentMaturitiesOfCapitalLeaseObligations": "2021",
|
|
2240
|
-
"PreconfirmationCurrentMaturitiesOfLongTermDebt": "2021",
|
|
2241
|
-
"PreconfirmationDebtorInPossessionFinancing": "2021",
|
|
2242
|
-
"PreconfirmationDeferredFinancingCosts": "2021",
|
|
2243
|
-
"PreconfirmationDeferredIncomeTaxAssetsCurrent": "2021",
|
|
2244
|
-
"PreconfirmationDeferredIncomeTaxAssetsNoncurrent": "2021",
|
|
2245
|
-
"PreconfirmationDeferredIncomeTaxLiabilitiesCurrent": "2021",
|
|
2246
|
-
"PreconfirmationDeferredIncomeTaxLiabilitiesNoncurrent": "2021",
|
|
2247
|
-
"PreconfirmationEquipment": "2021",
|
|
2248
|
-
"PreconfirmationFurnitureAndFixtures": "2021",
|
|
2249
|
-
"PreconfirmationGoodwill": "2021",
|
|
2250
|
-
"PreconfirmationInventories": "2021",
|
|
2251
|
-
"PreconfirmationInvestments": "2021",
|
|
2252
|
-
"PreconfirmationLand": "2021",
|
|
2253
|
-
"PreconfirmationLeaseholdImprovements": "2021",
|
|
2254
|
-
"PreconfirmationLiabilities": "2021",
|
|
2255
|
-
"PreconfirmationLiabilitiesAbstract": "2021",
|
|
2256
|
-
"PreconfirmationLiabilitiesAndStockholdersEquity": "2021",
|
|
2257
|
-
"PreconfirmationLiabilitiesAndStockholdersEquityAbstract": "2021",
|
|
2258
|
-
"PreconfirmationLiabilitiesSubjectToCompromise": "2021",
|
|
2259
|
-
"PreconfirmationLongTermDebt": "2021",
|
|
2260
|
-
"PreconfirmationLongTermDebtAbstract": "2021",
|
|
2261
|
-
"PreconfirmationNonamortizableIntangibleAssets": "2021",
|
|
2262
|
-
"PreconfirmationNoncurrentOtherObligations": "2021",
|
|
2263
|
-
"PreconfirmationOtherAssets": "2021",
|
|
2264
|
-
"PreconfirmationOtherAssetsAbstract": "2021",
|
|
2265
|
-
"PreconfirmationOtherAssetsNoncurrent": "2021",
|
|
2266
|
-
"PreconfirmationOtherCurrentLiabilities": "2021",
|
|
2267
|
-
"PreconfirmationOtherLongTermDebt": "2021",
|
|
2268
|
-
"PreconfirmationOtherNoncurrentObligations": "2021",
|
|
2269
|
-
"PreconfirmationOtherNoncurrentObligationsAbstract": "2021",
|
|
2270
|
-
"PreconfirmationOtherPostretirementObligations": "2021",
|
|
2271
|
-
"PreconfirmationOtherPropertyAndEquipment": "2021",
|
|
2272
|
-
"PreconfirmationPensionObligations": "2021",
|
|
2273
|
-
"PreconfirmationPostconfirmationCreditFacility": "2021",
|
|
2274
|
-
"PreconfirmationPreferredAndCommonStockHeldInTreasury": "2021",
|
|
2275
|
-
"PreconfirmationPreferredStock": "2021",
|
|
2276
|
-
"PreconfirmationPrepaidAndOtherCurrentAssets": "2021",
|
|
2277
|
-
"PreconfirmationPropertyAndEquipmentNet": "2021",
|
|
2278
|
-
"PreconfirmationPropertyAndEquipmentNetAbstract": "2021",
|
|
2279
|
-
"PreconfirmationPropertyUnderCapitalLeaseArrangements": "2021",
|
|
2280
|
-
"PreconfirmationReceivablesNet": "2021",
|
|
2281
|
-
"PreconfirmationReorganizationValueInExcessOfAmountsAllocableToIdentifiableAssets": "2021",
|
|
2282
|
-
"PreconfirmationRestrictedCashAndCashEquivalentsCurrent": "2021",
|
|
2283
|
-
"PreconfirmationRestrictedCashAndCashEquivalentsNoncurrent": "2021",
|
|
2284
|
-
"PreconfirmationRetainedEarningsDeficit": "2021",
|
|
2285
|
-
"PreconfirmationShortTermBorrowings": "2021",
|
|
2286
|
-
"PreconfirmationShortTermInvestments": "2021",
|
|
2287
|
-
"PreconfirmationStockholdersEquity": "2021",
|
|
2288
|
-
"PreconfirmationStockholdersEquityAbstract": "2021",
|
|
2289
|
-
"PredecessorMember": "2019-01-31",
|
|
2290
|
-
"PreferredStockConvertibleDownRoundFeatureIncreaseDecreaseInEquityAmount": "2022",
|
|
2291
|
-
"PremiumsReceivableAllowanceForDoubtfulAccountsAdditionsForChargesToExpense": "2019-01-31",
|
|
2292
|
-
"PremiumsReceivableAllowanceForDoubtfulAccountsProvisionChargedToExpense1": "2016-01-31",
|
|
2293
|
-
"PrepaidPensionCosts": "2017-01-31",
|
|
2294
|
-
"PreproductionCostsRelatedToLongTermSupplyArrangementsDisclosures": "2016-01-31",
|
|
2295
|
-
"PrescriptionDrugBenefitReductionInAccumulatedPostretirementBenefitObligationForSubsidy": "2017-01-31",
|
|
2296
|
-
"PrescriptionDrugSubsidyReceiptsNextRollingTwelveMonths": "2017-01-31",
|
|
2297
|
-
"PrescriptionDrugSubsidyReceiptsRemainderOfFiscalYear": "2017-01-31",
|
|
2298
|
-
"PrescriptionDrugSubsidyReceiptsRollingAfterYearFive": "2017-01-31",
|
|
2299
|
-
"PrescriptionDrugSubsidyReceiptsRollingMaturityAbstract": "2017-01-31",
|
|
2300
|
-
"PrescriptionDrugSubsidyReceiptsRollingYearFive": "2017-01-31",
|
|
2301
|
-
"PrescriptionDrugSubsidyReceiptsRollingYearFour": "2017-01-31",
|
|
2302
|
-
"PrescriptionDrugSubsidyReceiptsRollingYearThree": "2017-01-31",
|
|
2303
|
-
"PrescriptionDrugSubsidyReceiptsRollingYearTwo": "2017-01-31",
|
|
2304
|
-
"PresentValueOfFutureInsuranceProfitsAmortizationMethod": "2017-01-31",
|
|
2305
|
-
"PresentValueOfFutureInsuranceProfitsDisclosures": "2017-01-31",
|
|
2306
|
-
"PresentValueOfFutureInsuranceProfitsInterestAccrued1": "2017-01-31",
|
|
2307
|
-
"PresentationOfUnusedProceedsOfPollutionControlFinancingPolicy": "2016-01-31",
|
|
2308
|
-
"PressureMaintenanceOperations": "2019-01-31",
|
|
2309
|
-
"PreviousAccountingGuidanceMember": "2021",
|
|
2310
|
-
"PrincipalAssumptionsWhereAverageCostPerUnitIsUsed": "2020",
|
|
2311
|
-
"PriorInabilityToDeliverOrMeetOilAndGasDeliveryCommitmentsAndContracts": "2019-01-31",
|
|
2312
|
-
"ProceedsAndExcessTaxBenefitFromSharebasedCompensation": "2022",
|
|
2313
|
-
"ProceedsFromDemandSideManagementProgram": "2016-01-31",
|
|
2314
|
-
"ProceedsFromFinancingRevenueReceivedUnderLeases": "2023",
|
|
2315
|
-
"ProceedsFromRepaymentsOfRestrictedCashFinancingActivities": "2022",
|
|
2316
|
-
"ProceedsFromSaleAndMaturityOfMarketableSecuritiesAbstract": "2018-01-31",
|
|
2317
|
-
"ProceedsFromSaleOfAvailableForSaleSecurities": "2023",
|
|
2318
|
-
"ProceedsFromSaleOfAvailableForSaleSecuritiesAbstract": "2018-01-31",
|
|
2319
|
-
"ProceedsFromSaleOfAvailableForSaleSecuritiesEquity": "2023",
|
|
2320
|
-
"ProceedsFromSaleOfDonorRestrictedAssets": "2018-01-31",
|
|
2321
|
-
"ProductLiabilityContingencyAccrualCaption": "2016-01-31",
|
|
2322
|
-
"ProductLiabilityContingencyGeographicAreas": "2016-01-31",
|
|
2323
|
-
"ProductLiabilityContingencyLossExposureInExcessOfAccrualDescription": "2016-01-31",
|
|
2324
|
-
"ProductLiabilityContingencyLossExposureInExcessOfAccrualHighEstimate": "2016-01-31",
|
|
2325
|
-
"ProductLiabilityContingencyLossExposureInExcessOfAccrualLowEstimate": "2016-01-31",
|
|
2326
|
-
"ProductLiabilityContingencyLossExposureNotAccruedHighEstimate": "2016-01-31",
|
|
2327
|
-
"ProductLiabilityContingencyLossExposureNotAccruedLowEstimate": "2016-01-31",
|
|
2328
|
-
"ProductWarrantyAccrualCurrencyTranslationIncreaseDecrease": "2016-01-31",
|
|
2329
|
-
"ProductionTypeDomain": "2019-01-31",
|
|
2330
|
-
"ProductiveGasWellsNumberOfWellsWithMultipleCompletionsGross": "2019-01-31",
|
|
2331
|
-
"ProductiveGasWellsNumberOfWellsWithMultipleCompletionsNet": "2019-01-31",
|
|
2332
|
-
"ProductiveWellsAndAcreageDisclosureTextBlock": "2019-01-31",
|
|
2333
|
-
"PromotionalAllowances": "2018-01-31",
|
|
2334
|
-
"PropaneCosts": "2018-01-31",
|
|
2335
|
-
"PropaneRevenue": "2018-01-31",
|
|
2336
|
-
"PropertyPlantAndEquipmentDepreciationMethods": "2023",
|
|
2337
|
-
"PropertyPlantAndEquipmentEstimatedUsefulLives": "2023",
|
|
2338
|
-
"ProprietaryAndCustomerSecurityAndCommodityTransactions": "2016-01-31",
|
|
2339
|
-
"ProspectiveAdoptionOfNewAccountingPronouncementsAbstract": "2021",
|
|
2340
|
-
"ProspectiveAdoptionOfNewAccountingPronouncementsAxis": "2021",
|
|
2341
|
-
"ProspectiveAdoptionOfNewAccountingPronouncementsTable": "2021",
|
|
2342
|
-
"ProvisionForLeaseLosses": "2023",
|
|
2343
|
-
"PublicUtilitiesDeregulationActivities": "2016-01-31",
|
|
2344
|
-
"PublicUtilitiesDeregulationOfElectricityPricingActivities": "2016-01-31",
|
|
2345
|
-
"PublicUtilitiesDescriptionOfImpactOnLeasesDueToRegulatoryRateMaking": "2016-01-31",
|
|
2346
|
-
"PublicUtilitiesImpactOfDeregulationActivities": "2016-01-31",
|
|
2347
|
-
"PublicUtilitiesImpactOnLeasesDueToRegulatoryRateMaking": "2016-01-31",
|
|
2348
|
-
"PublicUtilitiesPhaseInPlanModifications": "2016-01-31",
|
|
2349
|
-
"PublicUtilitiesPropertyPlantAndEquipmentCalculationOfPresentValueOfRegulatedAssetForPlantAbandonment": "2016-01-31",
|
|
2350
|
-
"PublicUtilitiesPropertyPlantAndEquipmentDecommissioningObligations": "2016-01-31",
|
|
2351
|
-
"PublicUtilitiesPropertyPlantAndEquipmentDescriptionOfIntangibleUtilityPlants": "2016-01-31",
|
|
2352
|
-
"PublicUtilitiesPropertyPlantAndEquipmentDescriptionOfPlantAbandonment": "2016-01-31",
|
|
2353
|
-
"PublicUtilitiesPropertyPlantAndEquipmentDiscountRateForPresentValueOfRegulatedAssetForPlantAbandonment": "2016-01-31",
|
|
2354
|
-
"PublicUtilitiesPropertyPlantAndEquipmentNuclearFuelUnderCapitalLease": "2016-01-31",
|
|
2355
|
-
"QualitativeAndQuantitativeInformationAssetsOrLiabilitiesForTransferorsContinuingInvolvementInSecuritizationOrAssetbackedFinancingArrangementNaturePurposeAndActivities": "2016-01-31",
|
|
2356
|
-
"QualitativeAndQuantitativeInformationAssetsOrLiabilitiesForTransferorsContinuingInvolvementInSecuritizationOrAssetbackedFinancingArrangementNotPreviouslyRequiredFinancialSupportProvided": "2016-01-31",
|
|
2357
|
-
"QuantifyingMisstatementInCurrentYearFinancialStatementsAmount": "2021",
|
|
2358
|
-
"QuantifyingMisstatementInCurrentYearFinancialStatementsByNatureOfErrorAxis": "2021",
|
|
2359
|
-
"QuantifyingMisstatementInCurrentYearFinancialStatementsLineItems": "2021",
|
|
2360
|
-
"QuantifyingPriorYearMisstatementsCorrectedInCurrentYearFinancialStatementsAbstract": "2021",
|
|
2361
|
-
"QuarterlyFinancialInformationQuarterlyChargesAndCreditsAmountReconcilingToPreviouslyReportedResults": "2020",
|
|
2362
|
-
"RealEstateInventoryCapitalizedInterestCostsCostOfSales": "2016-01-31",
|
|
2363
|
-
"RealEstateInventoryCapitalizedInterestCostsInAcquiredInventory": "2016-01-31",
|
|
2364
|
-
"RealEstateOwnedBasisUsedToDetermineCarryingAmount": "2016-01-31",
|
|
2365
|
-
"RealEstateOwnedNatureAndOrigin": "2016-01-31",
|
|
2366
|
-
"RealEstateRevenueNet": "2018-01-31",
|
|
2367
|
-
"RealEstateRevenueNetAbstract": "2018-01-31",
|
|
2368
|
-
"RealEstateTaxesAndInsuranceAbstract": "2022",
|
|
2369
|
-
"RealizedGainLossOnMarketableSecuritiesAndCostMethodInvestmentsExcludingOtherThanTemporaryImpairmentsAndOtherInvestments": "2018-01-31",
|
|
2370
|
-
"RealizedGainLossOnMarketableSecuritiesAndCostMethodInvestmentsExcludingOtherThanTemporaryImpairmentsAndOtherInvestmentsAbstract": "2018-01-31",
|
|
2371
|
-
"RealizedGainLossOnMarketableSecuritiesCostMethodInvestmentsAndOtherInvestments": "2023",
|
|
2372
|
-
"RealizedGainLossOnMarketableSecuritiesCostMethodInvestmentsAndOtherInvestmentsAbstract": "2018-01-31",
|
|
2373
|
-
"ReasonForChangingPlanToSellAssetsHeldForSale": "2016-01-31",
|
|
2374
|
-
"ReceivableForRecoveryOfImportDutiesNetCurrent": "2016-01-31",
|
|
2375
|
-
"ReceivableForRecoveryOfImportDutiesNetNoncurrent": "2016-01-31",
|
|
2376
|
-
"ReceivablesAcquiredWithDeterioratedCreditQualityAxis": "2018-01-31",
|
|
2377
|
-
"ReceivablesAcquiredWithDeterioratedCreditQualityDomain": "2018-01-31",
|
|
2378
|
-
"ReceivablesAcquiredWithDeterioratedCreditQualityMember": "2018-01-31",
|
|
2379
|
-
"ReceivablesChangeInMethodOfCalculatingImpairmentRecordedInvestment": "2019-01-31",
|
|
2380
|
-
"ReceivablesHeldForSaleDeterminationPolicy": "2019-01-31",
|
|
2381
|
-
"ReceivablesHeldForSaleLowerOfCostOrFairValuePolicy": "2019-01-31",
|
|
2382
|
-
"ReceivablesHeldForSalePolicyAbstract": "2019-01-31",
|
|
2383
|
-
"ReclassificationToUnappropriatedRetainedEarnings": "2019-01-31",
|
|
2384
|
-
"RecordedUnconditionalPurchaseObligationNonfinancialAssetsPledgedAsSecurityDescription": "2016-01-31",
|
|
2385
|
-
"RecyclingOperatingCosts": "2016-01-31",
|
|
2386
|
-
"RecyclingRevenue": "2018-01-31",
|
|
2387
|
-
"RedeemableNoncontrollingInterestEquityRangeOfEstimatedFairValueAbstract": "2016-01-31",
|
|
2388
|
-
"RedeemableNoncontrollingInterestEquityRangeOfEstimatedFairValueHigh": "2016-01-31",
|
|
2389
|
-
"RedeemableNoncontrollingInterestEquityRangeOfEstimatedFairValueLow": "2016-01-31",
|
|
2390
|
-
"RefiningAndMarketingCosts": "2018-01-31",
|
|
2391
|
-
"RefiningAndMarketingRevenue": "2018-01-31",
|
|
2392
|
-
"RefundsDueUnderGovernmentContractsNotReasonablyEstimable": "2023",
|
|
2393
|
-
"RegistrationPaymentArrangementSubjectFinancialInstrument": "2016-01-31",
|
|
2394
|
-
"RegulatedJurisdictionsPolicy": "2016-01-31",
|
|
2395
|
-
"RegulatedOperatingRevenueNuclear": "2016-01-31",
|
|
2396
|
-
"ReimbursementRevenue": "2018-01-31",
|
|
2397
|
-
"ReinsurancePolicyDomain": "2022",
|
|
2398
|
-
"ReinsurancePolicyTypeAxis": "2022",
|
|
2399
|
-
"ReinsurancePremiumsForInsuranceCompaniesByProductSegmentAxis": "2016-01-31",
|
|
2400
|
-
"ReinsurancePremiumsForInsuranceCompaniesByProductSegmentDomain": "2016-01-31",
|
|
2401
|
-
"ReinsuranceReceivablesPaidLossesRecoverable": "2016-01-31",
|
|
2402
|
-
"ReinsuranceRecoverableNotPastDue": "2021",
|
|
2403
|
-
"ReinsuranceRecoverablePastDue": "2021",
|
|
2404
|
-
"ReinsuranceRecoverablesOnUnpaidLosses": "2016-01-31",
|
|
2405
|
-
"ReinsuranceRetentionPolicyAmountRetained": "2022",
|
|
2406
|
-
"ReinsuranceRetentionPolicyDescription": "2022",
|
|
2407
|
-
"ReinsuranceRetentionPolicyExcessRetentionAmountReinsured": "2022",
|
|
2408
|
-
"RelatedPartyCosts": "2023",
|
|
2409
|
-
"RelatedPartyTransactionDueFromToRelatedParty": "2023",
|
|
2410
|
-
"RelatedPartyTransactionDueFromToRelatedPartyAbstract": "2023",
|
|
2411
|
-
"RelatedPartyTransactionDueFromToRelatedPartyCurrent": "2023",
|
|
2412
|
-
"RelatedPartyTransactionDueFromToRelatedPartyCurrentAbstract": "2023",
|
|
2413
|
-
"RelatedPartyTransactionDueFromToRelatedPartyNoncurrent": "2023",
|
|
2414
|
-
"RelatedPartyTransactionDueFromToRelatedPartyNoncurrentAbstract": "2023",
|
|
2415
|
-
"RelatedPartyTransactionExpensesFromTransactionsWithRelatedParty": "2023",
|
|
2416
|
-
"RelatedPartyTransactionOtherRevenuesFromTransactionsWithRelatedParty": "2023",
|
|
2417
|
-
"RelatedPartyTransactionSellingGeneralAndAdministrativeExpensesFromTransactionsWithRelatedParty": "2023",
|
|
2418
|
-
"RepaymentsOfFinancialServicesObligations": "2016-01-31",
|
|
2419
|
-
"RepurchaseAgreementsBusinessPurposes": "2016-01-31",
|
|
2420
|
-
"RepurchaseAgreementsCharacterization": "2016-01-31",
|
|
2421
|
-
"RepurchaseAgreementsPolicyForMonitoringOfMarketValueOfUnderlyingAssets": "2016-01-31",
|
|
2422
|
-
"RepurchaseAgreementsPolicyForReportingTransactionsWithSameCounterparty": "2016-01-31",
|
|
2423
|
-
"ResaleAgreementCounterpartyAxis": "2016-01-31",
|
|
2424
|
-
"ResaleAgreementCounterpartyNameDomain": "2016-01-31",
|
|
2425
|
-
"ResaleAgreementsAdditionalCollateralRequirementsForSecuritiesOrAssetsToBeResold": "2020",
|
|
2426
|
-
"ResaleAgreementsBusinessPurposes": "2016-01-31",
|
|
2427
|
-
"ResaleAgreementsCharacterization": "2016-01-31",
|
|
2428
|
-
"ResaleAgreementsMaturities": "2016-01-31",
|
|
2429
|
-
"ResaleAgreementsPolicyForReportingTransactionsWithSameCounterparty": "2016-01-31",
|
|
2430
|
-
"ResaleAgreementsValuationPolicy": "2016-01-31",
|
|
2431
|
-
"ResearchAndDevelopmentAssetAcquiredOtherThanThroughBusinessCombinationDescription": "2016-01-31",
|
|
2432
|
-
"ResearchAndDevelopmentInProcess": "2023",
|
|
2433
|
-
"ReserveForCashDiscountMember": "2018-01-31",
|
|
2434
|
-
"ReserveForCustomerDeductionsMember": "2018-01-31",
|
|
2435
|
-
"ReservesAttributableToConsolidatedSubsidiaryWithSignificantMinorityInterest": "2018-01-31",
|
|
2436
|
-
"ReservesProportionalInterestOfNetProvedReserveQuantitiesOfProportionatelyConsolidatedInvestees1": "2018-01-31",
|
|
2437
|
-
"ReservesUnitOfMeasure": "2018-01-31",
|
|
2438
|
-
"RestatementOfPriorYearIncomeAbstract": "2020",
|
|
2439
|
-
"RestatementOfPriorYearIncomeGross": "2020",
|
|
2440
|
-
"RestatementOfPriorYearIncomeNetOfTax": "2020",
|
|
2441
|
-
"RestatementOfPriorYearIncomeNetOfTaxAbstract": "2020",
|
|
2442
|
-
"RestatementOfPriorYearIncomeTaxEffects": "2020",
|
|
2443
|
-
"RestatementToPriorYearIncomeTextBlock": "2021",
|
|
2444
|
-
"RestrictedCashAndCashEquivalentItemAgreement": "2020",
|
|
2445
|
-
"RestrictedCashAndCashEquivalentItemPurpose": "2017-01-31",
|
|
2446
|
-
"RestrictedInvestmentsExemptFromRegistrationAtFairValue": "2020",
|
|
2447
|
-
"RestrictedInvestmentsExemptFromRegistrationNoteAbstract": "2020",
|
|
2448
|
-
"RestrictedInvestmentsExemptFromRegistrationPercentOfNetAssets": "2020",
|
|
2449
|
-
"RestrictedInvestmentsNotExemptFromRegistrationAtFairValue": "2020",
|
|
2450
|
-
"RestrictedInvestmentsNotExemptFromRegistrationNoteAbstract": "2020",
|
|
2451
|
-
"RestrictedInvestmentsNotExemptFromRegistrationPercentOfNetAssets": "2020",
|
|
2452
|
-
"RestrictionsOnLoansAndOtherFundTransfers": "2016-01-31",
|
|
2453
|
-
"RestrictionsOnParentCompanysAbilityToPayDividends": "2016-01-31",
|
|
2454
|
-
"RestructuringAndRelatedActivitiesAuthorizedApproval": "2016-01-31",
|
|
2455
|
-
"RestructuringReserveAccrualAdjustment": "2016-01-31",
|
|
2456
|
-
"RestructuringReserveSettledWithoutCash1": "2016-01-31",
|
|
2457
|
-
"RetailExpenses": "2018-01-31",
|
|
2458
|
-
"RetailLandSaleReceivablesWeightedAverageInterestRate": "2016-01-31",
|
|
2459
|
-
"RetailLandSalesDepositMethodDebtAssumedByBuyer": "2016-01-31",
|
|
2460
|
-
"RetailLandSalesDepositMethodSalesValue": "2016-01-31",
|
|
2461
|
-
"RetailLandSalesEstimatedCostOfMajorImprovementsArea": "2021",
|
|
2462
|
-
"RetailLandSalesEstimatedCostOfMajorImprovementsDisclosuresAbstract": "2022",
|
|
2463
|
-
"RetailLandSalesEstimatedCostOfMajorImprovementsExpenditureDates": "2021",
|
|
2464
|
-
"RetailLandSalesImprovementCostsPriorSales": "2016-01-31",
|
|
2465
|
-
"RetailLandSalesImprovementRevenuePriorSales": "2018-01-31",
|
|
2466
|
-
"RetailLandSalesImprovementsAbstract": "2016-01-31",
|
|
2467
|
-
"RetailLandSalesImprovementsIncomeStatementRecognitionPriorSalesAbstract": "2016-01-31",
|
|
2468
|
-
"RetailLandSalesLiabilityForImprovementsInceptionAbstract": "2016-01-31",
|
|
2469
|
-
"RetailLandSalesLiabilityForImprovementsRevenueOffset": "2016-01-31",
|
|
2470
|
-
"RetailLandSalesMaturityOfAccountsReceivableNextRollingTwelveMonths": "2021",
|
|
2471
|
-
"RetailLandSalesMaturityOfAccountsReceivableRemainderOfFiscalYear": "2021",
|
|
2472
|
-
"RetailLandSalesMaturityOfAccountsReceivableRollingMaturityAbstract": "2021",
|
|
2473
|
-
"RetailLandSalesMaturityOfAccountsReceivableRollingYearFive": "2021",
|
|
2474
|
-
"RetailLandSalesMaturityOfAccountsReceivableRollingYearFour": "2021",
|
|
2475
|
-
"RetailLandSalesMaturityOfAccountsReceivableRollingYearThree": "2021",
|
|
2476
|
-
"RetailLandSalesMaturityOfAccountsReceivableRollingYearTwo": "2021",
|
|
2477
|
-
"RetailLandSalesPolicyPolicyTextBlock": "2016-01-31",
|
|
2478
|
-
"RetailLandSalesReceivablesHighEndOfRangeOfStatedInterestRates": "2016-01-31",
|
|
2479
|
-
"RetailLandSalesReceivablesLowEndOfRangeOfStatedInterestRates": "2016-01-31",
|
|
2480
|
-
"RetailRevenue": "2018-01-31",
|
|
2481
|
-
"RetainedEarningsAdjustmentsLineItems": "2020",
|
|
2482
|
-
"RevaluationOfAssetsMember": "2021",
|
|
2483
|
-
"RevaluationOfLiabilitiesMember": "2021",
|
|
2484
|
-
"RevenueCoalServices": "2018-01-31",
|
|
2485
|
-
"RevenueDifferentTransitionMethodPolicyTextBlock": "2022",
|
|
2486
|
-
"RevenueEnvironmentalRemediationServices": "2016-01-31",
|
|
2487
|
-
"RevenueFromContractWithCustomerExcludingAssessedTaxAbstract": "2018-01-31",
|
|
2488
|
-
"RevenueFromEnrollmentAndRegistrationFeesExcludingHospitalityEnterprises": "2018-01-31",
|
|
2489
|
-
"RevenueFromFranchisorOwnedOutlets": "2018-01-31",
|
|
2490
|
-
"RevenueFromGrants": "2018-01-31",
|
|
2491
|
-
"RevenueFromLeasedAndOwnedHotels": "2018-01-31",
|
|
2492
|
-
"RevenueFromLeasedAndOwnedHotelsAbstract": "2018-01-31",
|
|
2493
|
-
"RevenueFromOwnedHotels": "2018-01-31",
|
|
2494
|
-
"RevenueFromPurchasedOilAndGas": "2018-01-31",
|
|
2495
|
-
"RevenueFromRelatedParties": "2023",
|
|
2496
|
-
"RevenueInitialApplicationPeriodCumulativeEffectTransitionAbstract": "2022",
|
|
2497
|
-
"RevenueInitialApplicationPeriodCumulativeEffectTransitionDescription": "2022",
|
|
2498
|
-
"RevenueInitialApplicationPeriodCumulativeEffectTransitionExplanationOfChange": "2022",
|
|
2499
|
-
"RevenueInitialApplicationPeriodCumulativeEffectTransitionLineItems": "2022",
|
|
2500
|
-
"RevenueInitialApplicationPeriodCumulativeEffectTransitionTable": "2022",
|
|
2501
|
-
"RevenueMineralSales": "2018-01-31",
|
|
2502
|
-
"RevenueMineralSalesAbstract": "2018-01-31",
|
|
2503
|
-
"RevenueOilAndGasServices": "2018-01-31",
|
|
2504
|
-
"RevenueOtherFinancialServices": "2018-01-31",
|
|
2505
|
-
"RevenueOtherManufacturedProducts": "2018-01-31",
|
|
2506
|
-
"RevenuePracticalExpedientInitialApplicationAndTransitionCompletedContractSameReportingPeriod": "2022",
|
|
2507
|
-
"RevenuePracticalExpedientInitialApplicationAndTransitionCompletedContractUseOfTransactionPriceAtContractCompletionDate": "2022",
|
|
2508
|
-
"RevenuePracticalExpedientInitialApplicationAndTransitionNondisclosureOfTransactionPriceAllocationToRemainingPerformanceObligation": "2022",
|
|
2509
|
-
"RevenuePracticalExpedientInitialApplicationAndTransitionNonrestatementOfModifiedContract": "2022",
|
|
2510
|
-
"RevenuePracticalExpedientInitialApplicationAndTransitionQualitativeAssessment": "2022",
|
|
2511
|
-
"RevenueRecognitionAdvertisingBarterTransactions": "2023",
|
|
2512
|
-
"RevenueRecognitionBillAndHoldArrangements": "2016-01-31",
|
|
2513
|
-
"RevenueRecognitionCargoAndFreightPolicyPolicyTextBlock": "2022",
|
|
2514
|
-
"RevenueRecognitionCompletedContractMethod": "2023",
|
|
2515
|
-
"RevenueRecognitionDiscounts": "2023",
|
|
2516
|
-
"RevenueRecognitionExciseAndSalesTaxes": "2023",
|
|
2517
|
-
"RevenueRecognitionFromLongTermPowerSalesContractsPolicy": "2016-01-31",
|
|
2518
|
-
"RevenueRecognitionGiftCards": "2017-01-31",
|
|
2519
|
-
"RevenueRecognitionGiftCardsBreakage": "2017-01-31",
|
|
2520
|
-
"RevenueRecognitionLongTermContracts": "2023",
|
|
2521
|
-
"RevenueRecognitionLongTermContractsIncentiveAndAwardFees": "2023",
|
|
2522
|
-
"RevenueRecognitionMilestoneMethodDescription": "2023",
|
|
2523
|
-
"RevenueRecognitionMilestoneMethodFactors": "2023",
|
|
2524
|
-
"RevenueRecognitionMilestoneMethodMilestone": "2023",
|
|
2525
|
-
"RevenueRecognitionMultipleDeliverableArrangementsAllocationToSpecificUnitOfAccountingEffectOfChangesAbstract": "2023",
|
|
2526
|
-
"RevenueRecognitionMultipleDeliverableArrangementsAllocationToSpecificUnitOfAccountingEffectOfChangesAssumptions": "2023",
|
|
2527
|
-
"RevenueRecognitionMultipleDeliverableArrangementsAllocationToSpecificUnitOfAccountingEffectOfChangesMethodology": "2023",
|
|
2528
|
-
"RevenueRecognitionMultipleDeliverableArrangementsAllocationToSpecificUnitOfAccountingEffectOfChangesSellingPrice": "2023",
|
|
2529
|
-
"RevenueRecognitionMultipleDeliverableArrangementsDeterminationOfSellingPriceMethod": "2023",
|
|
2530
|
-
"RevenueRecognitionMultipleDeliverableArrangementsSignificantDeliverablesSeparateUnitsOfAccountingQualificationFlag": "2023",
|
|
2531
|
-
"RevenueRecognitionNewAccountingPronouncementMaterialEffectDescription": "2023",
|
|
2532
|
-
"RevenueRecognitionNewAccountingPronouncementTiming": "2023",
|
|
2533
|
-
"RevenueRecognitionPercentageOfCompletionMethod": "2023",
|
|
2534
|
-
"RevenueRecognitionRegionalCarriersAndPassengersPolicyPolicyTextBlock": "2022",
|
|
2535
|
-
"RevenueRecognitionRetailLandSales": "2023",
|
|
2536
|
-
"RevenueRecognitionRetrospectiveRateSettingSystemsPolicyPolicyTextBlock": "2023",
|
|
2537
|
-
"RevenueRecognitionSalesReturnsChangesInEstimatedReturns": "2023",
|
|
2538
|
-
"RevenueRecognitionServicesFranchiseFees": "2023",
|
|
2539
|
-
"RevenueRecognitionServicesRefundableFeesForServices": "2023",
|
|
2540
|
-
"RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionPeriod": "2018-01-31",
|
|
2541
|
-
"RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionYear": "2018-01-31",
|
|
2542
|
-
"RevenueSteamProductsAndServices": "2018-01-31",
|
|
2543
|
-
"ReverseRepurchaseAgreementsSegregatedUnderCommodityExchangeActRegulation": "2019-01-31",
|
|
2544
|
-
"ReverseRepurchaseAgreementsSegregatedUnderOtherRegulations": "2019-01-31",
|
|
2545
|
-
"ReverseRepurchaseAgreementsSegregatedUnderSecuritiesExchangeCommissionRegulation": "2019-01-31",
|
|
2546
|
-
"RisksInherentInServicingAssetsAndServicingLiabilitiesFairValueOfInstrumentsUsedToManageRisks": "2020",
|
|
2547
|
-
"RoyaltyRevenue": "2018-01-31",
|
|
2548
|
-
"RoyaltyRevenueAbstract": "2018-01-31",
|
|
2549
|
-
"RoyaltyRevenueFromCoal": "2018-01-31",
|
|
2550
|
-
"SaleOfStockNatureOfConsiderationReceivedPerTransaction": "2016-01-31",
|
|
2551
|
-
"SaleOfStockNatureOfOperations": "2016-01-31",
|
|
2552
|
-
"SalesAllowancesGoods": "2018-01-31",
|
|
2553
|
-
"SalesAllowancesPriceProtection": "2018-01-31",
|
|
2554
|
-
"SalesAllowancesServices": "2018-01-31",
|
|
2555
|
-
"SalesDiscountsGoods": "2018-01-31",
|
|
2556
|
-
"SalesDiscountsReturnsAndAllowancesGoods": "2018-01-31",
|
|
2557
|
-
"SalesDiscountsReturnsAndAllowancesGoodsAbstract": "2018-01-31",
|
|
2558
|
-
"SalesDiscountsServices": "2018-01-31",
|
|
2559
|
-
"SalesOfOilAndGasProspects": "2018-01-31",
|
|
2560
|
-
"SalesOfRealEstate": "2018-01-31",
|
|
2561
|
-
"SalesReturnsAndAllowancesGoods": "2018-01-31",
|
|
2562
|
-
"SalesReturnsAndAllowancesGoodsAbstract": "2018-01-31",
|
|
2563
|
-
"SalesReturnsGoods": "2018-01-31",
|
|
2564
|
-
"SalesRevenueEnergyServices": "2018-01-31",
|
|
2565
|
-
"SalesRevenueFromEnergyCommoditiesAndServices": "2018-01-31",
|
|
2566
|
-
"SalesRevenueFromEnergyCommoditiesAndServicesAbstract": "2018-01-31",
|
|
2567
|
-
"SalesRevenueGoodsGross": "2018-01-31",
|
|
2568
|
-
"SalesRevenueGoodsNet": "2018-01-31",
|
|
2569
|
-
"SalesRevenueGoodsNetAbstract": "2018-01-31",
|
|
2570
|
-
"SalesRevenueGoodsNetMember": "2019-01-31",
|
|
2571
|
-
"SalesRevenueNet": "2018-01-31",
|
|
2572
|
-
"SalesRevenueNetAbstract": "2018-01-31",
|
|
2573
|
-
"SalesRevenueServicesGross": "2018-01-31",
|
|
2574
|
-
"SalesRevenueServicesNet": "2018-01-31",
|
|
2575
|
-
"SalesRevenueServicesNetAbstract": "2018-01-31",
|
|
2576
|
-
"SalesRevenueServicesNetMember": "2019-01-31",
|
|
2577
|
-
"SalesTypeLeaseNetInvestmentInLeaseChangeInPresentValueExpenseReversal": "2022",
|
|
2578
|
-
"SalesTypeLeaseNetInvestmentInLeaseNotPastDue": "2021",
|
|
2579
|
-
"SalesTypeLeaseNetInvestmentInLeasePastDue": "2021",
|
|
2580
|
-
"ScenarioActualMember": "2017-01-31",
|
|
2581
|
-
"ScheduleOfAvailableForSaleSecuritiesTable": "2023",
|
|
2582
|
-
"ScheduleOfCashProceedsReceivedFromShareBasedPaymentAwardsTableTextBlock": "2017-01-31",
|
|
2583
|
-
"ScheduleOfCostMethodInvestmentsLineItems": "2018-01-31",
|
|
2584
|
-
"ScheduleOfCostMethodInvestmentsTable": "2023",
|
|
2585
|
-
"ScheduleOfCostMethodInvestmentsTableTextBlock": "2023",
|
|
2586
|
-
"ScheduleOfCreditLossesRelatedToFinancingReceivablesCurrentAndNoncurrentTableTextBlock": "2019-01-31",
|
|
2587
|
-
"ScheduleOfDerivativeFinancialInstrumentsIndexedToAndPotentiallySettledInEntitysOwnStockEquityTextBlock": "2016-01-31",
|
|
2588
|
-
"ScheduleOfExtraordinaryItemsTextBlock": "2019-01-31",
|
|
2589
|
-
"ScheduleOfFairValueOfSeparateAccountsByMajorCategoryOfInvestmentAxis": "2016-01-31",
|
|
2590
|
-
"ScheduleOfFairValueOfSeparateAccountsByMajorCategoryOfInvestmentCategoryDomain": "2016-01-31",
|
|
2591
|
-
"ScheduleOfHealthCareTrustFundAbstract": "2021",
|
|
2592
|
-
"ScheduleOfHealthCareTrustFundTextBlock": "2016-01-31",
|
|
2593
|
-
"ScheduleOfIncrementalEffectsOnBalanceSheetApplicationOfSFAS158RecognitionProvisionsTable": "2017-01-31",
|
|
2594
|
-
"ScheduleOfIncrementalEffectsOnBalanceSheetApplicationOfSFAS158RecognitionProvisionsTextBlock": "2017-01-31",
|
|
2595
|
-
"ScheduleOfProspectiveAdoptionOfNewAccountingPronouncementsTableTextBlock": "2021",
|
|
2596
|
-
"ScheduleOfQuantifyingPriorYearMisstatementCorrectedInCurrentYearFinancialStatementsTable": "2021",
|
|
2597
|
-
"ScheduleOfQuantifyingPriorYearMisstatementsCorrectedInCurrentYearFinancialStatementsTextBlock": "2021",
|
|
2598
|
-
"ScheduleOfRetainedEarningsAdjustmentsTable": "2020",
|
|
2599
|
-
"ScheduleOfRetainedEarningsAdjustmentsTableTextBlock": "2016-01-31",
|
|
2600
|
-
"ScheduleOrDescriptionOfWeightedAverageDiscountRateTextBlock": "2019-01-31",
|
|
2601
|
-
"SecondaryProcessingRevenue": "2016-01-31",
|
|
2602
|
-
"SecuredDemandNoteDeficiency": "2019-01-31",
|
|
2603
|
-
"SecuritiesBorrowedForWhichNoValueIsPaidOrCredited": "2019-01-31",
|
|
2604
|
-
"SecuritiesBorrowedOffsetAgainstCollateralNetOfNotSubjectToMasterNettingArrangementPolicyElectionAbstract": "2022",
|
|
2605
|
-
"SecuritiesLoanedOffsetAgainstCollateralNetOfNotSubjectToMasterNettingArrangementPolicyElectionAbstract": "2022",
|
|
2606
|
-
"SecuritiesOwnedAndOtherInvestmentsNotReadilyMarketableAbstract": "2016-01-31",
|
|
2607
|
-
"SecuritiesOwnedAndPledgedAsCollateralDescription": "2020",
|
|
2608
|
-
"SecuritiesOwnedNotReadilyMarketable": "2019-01-31",
|
|
2609
|
-
"SecuritiesPledgedAsCollateralMember": "2018-01-31",
|
|
2610
|
-
"SecuritiesPurchasedUnderAgreementsToResellOffsetAgainstCollateralNetOfNotSubjectToMasterNettingArrangementPolicyElectionAbstract": "2022",
|
|
2611
|
-
"SecuritiesReceivedAsCollateralSourcesAndUses": "2016-01-31",
|
|
2612
|
-
"SecuritiesSegregatedUnderCommodityExchangeActRegulation": "2019-01-31",
|
|
2613
|
-
"SecuritiesSoldUnderAgreementsToRepurchaseOffsetAgainstCollateralNetOfNotSubjectToMasterNettingArrangementPolicyElectionAbstract": "2022",
|
|
2614
|
-
"SecuritizationFinancialAssetForWhichTransferIsAccountedAsSaleOtherGainLossDisclosuresOnSecuritizations": "2020",
|
|
2615
|
-
"SecurityOwnedAndPledgedAsCollateralFairValue": "2022",
|
|
2616
|
-
"SecurityOwnedAndPledgedAsCollateralFairValueAbstract": "2022",
|
|
2617
|
-
"SegmentReportingInformationUnallocatedExpenseInNoninterestExpense": "2016-01-31",
|
|
2618
|
-
"SensitivityAnalysisOfFairValueOfInterestsContinuedToBeHeldByTransferorServicingAssetsOrLiabilitiesImpactOfAdverseChangeInAssumptionByTypeOfFinancialInstrumentAxis": "2016-01-31",
|
|
2619
|
-
"SeparateAccountsByMajorCategoryOfInvestmentAbstract": "2022",
|
|
2620
|
-
"ServiceConcessionArrangementRetrospectiveApplicationAllContracts": "2022",
|
|
2621
|
-
"ServiceConcessionArrangementRetrospectiveApplicationNotCompletedContracts": "2022",
|
|
2622
|
-
"ServiceManagementCosts": "2018-01-31",
|
|
2623
|
-
"ServicingFees": "2018-01-31",
|
|
2624
|
-
"ServicingFeesNet": "2018-01-31",
|
|
2625
|
-
"ServicingLiabilitiesAtFairValueByTypeOfFinancialInstrumentAxis": "2016-01-31",
|
|
2626
|
-
"SettlementOfAssetRetirementObligationsThroughNoncashPayments": "2016-01-31",
|
|
2627
|
-
"ShareBasedGoodsAndNonemployeeServicesTransactionModificationOfTermsAmountOfChangesAndReportLinesAffected": "2019-01-31",
|
|
2628
|
-
"ShareBasedGoodsAndNonemployeeServicesTransactionModificationOfTermsNumberOfVendorsAffected": "2019-01-31",
|
|
2629
|
-
"ShareBasedGoodsAndNonemployeeServicesTransactionReportLinesAffected": "2019-01-31",
|
|
2630
|
-
"ShareBasedGoodsAndNonemployeeServicesTransactionSecuritiesIssued": "2019-01-31",
|
|
2631
|
-
"ShareholdersEquityClassAxis": "2019-01-31",
|
|
2632
|
-
"ShareholdersEquityFairValueDisclosure": "2018-01-31",
|
|
2633
|
-
"ShareholdersEquityMember": "2019-01-31",
|
|
2634
|
-
"ShippingAndHandlingRevenue": "2018-01-31",
|
|
2635
|
-
"ShippingHandlingAndTransportationCosts": "2018-01-31",
|
|
2636
|
-
"ShortDurationContractsDiscountedLiabilitiesDiscountRateHighEndOfRange": "2016-01-31",
|
|
2637
|
-
"ShortDurationContractsDiscountedLiabilitiesDiscountRateLowEndOfRange": "2016-01-31",
|
|
2638
|
-
"ShortDurationInsuranceContractDiscountedLiabilityInterestAccretionStatementOfFinancialPositionExtensibleEnumeration": "2023",
|
|
2639
|
-
"SignageRevenue": "2018-01-31",
|
|
2640
|
-
"SignificantMattersUnresolvedSinceBankruptcyEmergence": "2016-01-31",
|
|
2641
|
-
"SingleEmployerPlansAccountedForAsMultiemployerPlanContributions": "2017-01-31",
|
|
2642
|
-
"SiteContingencyLossExposureInExcessOfAccrualHighEstimate": "2016-01-31",
|
|
2643
|
-
"SiteContingencyLossExposureInExcessOfAccrualLowEstimate": "2016-01-31",
|
|
2644
|
-
"SiteContingencyLossExposureNotAccruedHighEstimate": "2016-01-31",
|
|
2645
|
-
"SiteContingencyLossExposureNotAccruedLowEstimate": "2016-01-31",
|
|
2646
|
-
"SiteContingencySoldStatus": "2016-01-31",
|
|
2647
|
-
"StandardProductWarrantyAccrualCurrencyTranslationIncreaseDecrease": "2016-01-31",
|
|
2648
|
-
"StepsTakenToEnsureOilAndGasDeliveryCommitments": "2019-01-31",
|
|
2649
|
-
"StockOptionDownRoundFeatureIncreaseDecreaseInEquityAmount": "2022",
|
|
2650
|
-
"StockholdersEquityAttributableToParentNotAllowableForNetCapital": "2019-01-31",
|
|
2651
|
-
"StockholdersEquityChangeInReportingEntity": "2022",
|
|
2652
|
-
"StockholdersEquityIncludingPortionAttributableToNoncontrollingInterestAdjustedBalance1": "2020",
|
|
2653
|
-
"StockholdersEquityQualifiedForNetCapital": "2019-01-31",
|
|
2654
|
-
"StockholdersEquityQualifiedForNetCapitalAbstract": "2019-01-31",
|
|
2655
|
-
"StructuredSettlementAnnuitiesInterestRateHighEnd": "2016-01-31",
|
|
2656
|
-
"StructuredSettlementAnnuitiesInterestRateLowEnd": "2016-01-31",
|
|
2657
|
-
"StructuredSettlementAnnuitiesInterestRates": "2016-01-31",
|
|
2658
|
-
"SubordinatedBorrowingsAllowableInComputationOfNetCapital": "2019-01-31",
|
|
2659
|
-
"SubscriptionRevenue": "2018-01-31",
|
|
2660
|
-
"SubservicingOfFinancialAssetsAgreementsDescription": "2016-01-31",
|
|
2661
|
-
"SubsidiaryOfLimitedLiabilityCompanyOrLimitedPartnershipType": "2016-01-31",
|
|
2662
|
-
"SuccessorMember": "2019-01-31",
|
|
2663
|
-
"SummaryOfInvestmentHoldingsAdditionalInformation": "2020",
|
|
2664
|
-
"SummaryOfInvestmentHoldingsScheduleOfInvestmentsTextBlock": "2023",
|
|
2665
|
-
"SummaryOfInvestmentsByTypeDomain": "2016-01-31",
|
|
2666
|
-
"SummaryOfInvestmentsOtherThanInvestmentsInRelatedPartiesByTypeAxis": "2016-01-31",
|
|
2667
|
-
"SupplementalDeferredTaxLiabilityElementsAbstract": "2022",
|
|
2668
|
-
"SupplementalInformationForPropertyCasualtyInsuranceUnderwritersMaximumInterestRateInRange": "2016-01-31",
|
|
2669
|
-
"SupplementalInformationForPropertyCasualtyInsuranceUnderwritersMinimumInterestRateInRange": "2016-01-31",
|
|
2670
|
-
"SurveyChargesAmount": "2016-01-31",
|
|
2671
|
-
"SyntheticFuelCosts": "2016-01-31",
|
|
2672
|
-
"SyntheticFuelSalesRevenue": "2016-01-31",
|
|
2673
|
-
"TargetedOrTrackingStockBusinessActivity": "2016-01-31",
|
|
2674
|
-
"TargetedOrTrackingStockChangesInMarketValueOnSecurityHolderRights": "2016-01-31",
|
|
2675
|
-
"TargetedOrTrackingStockConflictsOfInterest": "2016-01-31",
|
|
2676
|
-
"TargetedOrTrackingStockCorporateEvents": "2016-01-31",
|
|
2677
|
-
"TargetedOrTrackingStockCostAllocationMethod": "2016-01-31",
|
|
2678
|
-
"TargetedOrTrackingStockDescription": "2016-01-31",
|
|
2679
|
-
"TargetedOrTrackingStockPolicy": "2016-01-31",
|
|
2680
|
-
"TargetedOrTrackingStockPricing": "2016-01-31",
|
|
2681
|
-
"TargetedOrTrackingStockRedemptionPrice": "2016-01-31",
|
|
2682
|
-
"TargetedOrTrackingStockRelatedPartyTransactions": "2016-01-31",
|
|
2683
|
-
"TargetedOrTrackingStockSubsidiary": "2016-01-31",
|
|
2684
|
-
"TargetedOrTrackingStockTermsOfConversion": "2016-01-31",
|
|
2685
|
-
"TargetedOrTrackingStockUseOfNonGenerallyAcceptedAccountingPrinciplesMeasuresOfPerformance": "2016-01-31",
|
|
2686
|
-
"TaxBasisOfInvestmentsAdditionalInformation": "2016-01-31",
|
|
2687
|
-
"TaxCutsAndJobsActOf2017AccountingComplete": "2020",
|
|
2688
|
-
"TaxCutsAndJobsActOf2017AccountingCompleteDate": "2020",
|
|
2689
|
-
"TaxCutsAndJobsActOf2017ChangeInTaxRateDeferredTaxAssetIncomeTaxExpense": "2022",
|
|
2690
|
-
"TaxCutsAndJobsActOf2017ChangeInTaxRateDeferredTaxLiabilityIncomeTaxBenefit": "2022",
|
|
2691
|
-
"TaxCutsAndJobsActOf2017ChangeInTaxRateIncomeTaxExpenseBenefit": "2022",
|
|
2692
|
-
"TaxCutsAndJobsActOf2017ChangeInTaxRateIncomeTaxExpenseBenefitAbstract": "2022",
|
|
2693
|
-
"TaxCutsAndJobsActOf2017DecreaseInDeferredTaxLiabilityDueToTransitionTax": "2020",
|
|
2694
|
-
"TaxCutsAndJobsActOf2017IncomeTaxExpenseBenefit": "2022",
|
|
2695
|
-
"TaxCutsAndJobsActOf2017IncomeTaxExpenseBenefitAbstract": "2022",
|
|
2696
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingChangeInTaxRateDeferredTaxAssetExistingIncomeTaxExpense": "2020",
|
|
2697
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingChangeInTaxRateDeferredTaxAssetProvisionalIncomeTaxExpense": "2020",
|
|
2698
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingChangeInTaxRateDeferredTaxLiabilityExistingIncomeTaxBenefit": "2020",
|
|
2699
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingChangeInTaxRateDeferredTaxLiabilityProvisionalIncomeTaxBenefit": "2020",
|
|
2700
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingChangeInTaxRateExistingIncomeTaxExpenseBenefit": "2020",
|
|
2701
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingChangeInTaxRateExistingIncomeTaxExpenseBenefitAbstract": "2020",
|
|
2702
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingChangeInTaxRateProvisionalIncomeTaxExpenseBenefit": "2020",
|
|
2703
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingChangeInTaxRateProvisionalIncomeTaxExpenseBenefitAbstract": "2020",
|
|
2704
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingDeferredTaxLiabilitiesProvisionalUndistributedForeignEarnings": "2020",
|
|
2705
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingDescription": "2020",
|
|
2706
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingExistingIncomeTaxExpenseBenefit": "2020",
|
|
2707
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingExistingIncomeTaxExpenseBenefitAbstract": "2020",
|
|
2708
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingExistingUndistributedAccumulatedEarningsOfForeignSubsidiary": "2020",
|
|
2709
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingProvisionalCumulativeTemporaryDifference": "2020",
|
|
2710
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingProvisionalIncomeTaxExpenseBenefit": "2020",
|
|
2711
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingProvisionalIncomeTaxExpenseBenefitAbstract": "2020",
|
|
2712
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingProvisionalUndistributedAccumulatedEarningsOfForeignSubsidiary": "2020",
|
|
2713
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingTransitionTaxForAccumulatedForeignEarningsProvisionalIncomeTaxExpense": "2020",
|
|
2714
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingTransitionTaxForAccumulatedForeignEarningsProvisionalLiability": "2020",
|
|
2715
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingTransitionTaxForAccumulatedForeignEarningsProvisionalLiabilityAbstract": "2020",
|
|
2716
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingTransitionTaxForAccumulatedForeignEarningsProvisionalLiabilityCurrent": "2020",
|
|
2717
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingTransitionTaxForAccumulatedForeignEarningsProvisionalLiabilityNoncurrent": "2020",
|
|
2718
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingUndistributedAccumulatedEarningsOfForeignSubsidiaryExistingUnrecognizedDeferredTaxLiability": "2020",
|
|
2719
|
-
"TaxCutsAndJobsActOf2017IncompleteAccountingUndistributedAccumulatedEarningsOfForeignSubsidiaryProvisionalUnrecognizedDeferredTaxLiability": "2020",
|
|
2720
|
-
"TaxCutsAndJobsActOf2017MeasurementPeriodAdjustmentIncomeTaxExpenseBenefit": "2022",
|
|
2721
|
-
"TaxCutsAndJobsActOf2017MeasurementPeriodAdjustmentIncreaseDecreaseInEffectiveTaxRate": "2022",
|
|
2722
|
-
"TaxCutsAndJobsActOf2017OtherTaxEffectDescription": "2022",
|
|
2723
|
-
"TaxCutsAndJobsActOf2017ReclassificationFromAociToRetainedEarningsTaxEffect": "2023",
|
|
2724
|
-
"TaxCutsAndJobsActOf2017ReleaseOfTaxEffectExistenceOfOption": "2022",
|
|
2725
|
-
"TaxCutsAndJobsActOf2017TransitionTaxForAccumulatedForeignEarningsIncomeTaxExpense": "2022",
|
|
2726
|
-
"TaxEffectOfExtraordinaryItem": "2019-01-31",
|
|
2727
|
-
"TechnologyServicesCosts": "2018-01-31",
|
|
2728
|
-
"TechnologyServicesRevenue": "2018-01-31",
|
|
2729
|
-
"TenantReimbursements": "2018-01-31",
|
|
2730
|
-
"TermOfUnrecordedUnconditionalPurchaseObligation": "2016-01-31",
|
|
2731
|
-
"ThresholdPeriodPastDueForWriteoffOfFinancingReceivable": "2019-01-31",
|
|
2732
|
-
"TierTwoRiskBasedCapitalAbstract": "2020",
|
|
2733
|
-
"TimberOperatingCosts": "2018-01-31",
|
|
2734
|
-
"TimberRevenue": "2018-01-31",
|
|
2735
|
-
"TimeDeposits100000OrMoreAbstract": "2016-01-31",
|
|
2736
|
-
"TimeDeposits100000OrMoreDomestic": "2016-01-31",
|
|
2737
|
-
"TimeDeposits100000OrMoreForeign": "2016-01-31",
|
|
2738
|
-
"TimeShareCarryingCharges": "2018-01-31",
|
|
2739
|
-
"TimeShareCosts": "2018-01-31",
|
|
2740
|
-
"TimeShareRevenue": "2018-01-31",
|
|
2741
|
-
"TimeSharingTransactionsAdditionsToAllowanceForCurrentPeriodSales1": "2016-01-31",
|
|
2742
|
-
"TimeSharingTransactionsAdditionsToAllowanceForCurrentPeriodSalesOnReceivablesSoldWithRecourse1": "2016-01-31",
|
|
2743
|
-
"TimeSharingTransactionsAllowanceForUncollectibleAccountsOnReceivablesSoldWithRecourse": "2022",
|
|
2744
|
-
"TimeSharingTransactionsAllowanceForUncollectibleAccountsOnReceivablesSoldWithRecoursePeriodIncreaseDecrease": "2022",
|
|
2745
|
-
"TimeSharingTransactionsAllowanceForUncollectiblesOnReceivablesSoldWithRecourseAdditionsForCurrentPeriodSales": "2022",
|
|
2746
|
-
"TimeSharingTransactionsAllowanceForUncollectiblesOnReceivablesSoldWithRecourseRollForward": "2022",
|
|
2747
|
-
"TimeSharingTransactionsChangesInEstimateAssociatedWithPriorPeriodSalesOnReceivablesSoldWithRecourse": "2022",
|
|
2748
|
-
"TimeSharingTransactionsDescriptionOfActivityInAllowanceForUncollectibles": "2021",
|
|
2749
|
-
"TimeSharingTransactionsDescriptionOfActivityInAllowanceForUncollectiblesOnReceivablesSoldWithRecourse": "2021",
|
|
2750
|
-
"TimeSharingTransactionsDirectWriteOffsChargedAgainstAllowanceOnReceivablesSoldWithRecourse": "2022",
|
|
2751
|
-
"TimeSharingTransactionsDisclosure": "2021",
|
|
2752
|
-
"TimeSharingTransactionsSellersPoliciesWithRespectToMeetingCriteriaForBuyersCommitment": "2023",
|
|
2753
|
-
"TimeSharingTransactionsSellersPoliciesWithRespectToMeetingCriteriaForCollectibilityOfSalesPrice": "2023",
|
|
2754
|
-
"TimeSharingTransactionsStatedInterestRatesForNotesReceivableMaximum": "2016-01-31",
|
|
2755
|
-
"TimeSharingTransactionsStatedInterestRatesForNotesReceivableMinimum": "2016-01-31",
|
|
2756
|
-
"TimeSharingTransactionsWeightedAverageOfStatedInterestRatesForNotesReceivable1": "2016-01-31",
|
|
2757
|
-
"TradeAndLoanReceivablesMethodOfAccountingForReceivablesThatCanBeContractuallyPrepaidPolicyPolicyTextBlock": "2019-01-31",
|
|
2758
|
-
"TradingAccountAssetsMember": "2018-01-31",
|
|
2759
|
-
"TradingSecuritiesAbstract": "2018-01-31",
|
|
2760
|
-
"TradingSecuritiesBalanceSheetReportedAmountsAbstract": "2018-01-31",
|
|
2761
|
-
"TradingSecuritiesBasisForValuationOtherThanEquitySecurities": "2016-01-31",
|
|
2762
|
-
"TradingSecuritiesCost": "2023",
|
|
2763
|
-
"TradingSecuritiesDescription": "2018-01-31",
|
|
2764
|
-
"TradingSecuritiesEquity": "2023",
|
|
2765
|
-
"TradingSecuritiesEquityCost": "2023",
|
|
2766
|
-
"TradingSecuritiesOther": "2018-01-31",
|
|
2767
|
-
"TradingSecuritiesPledgedAsCollateral": "2018-01-31",
|
|
2768
|
-
"TradingSecuritiesPledgedAsCollateralForParentheticalDisclosureAbstract": "2018-01-31",
|
|
2769
|
-
"TradingSecuritiesRealizedGain": "2023",
|
|
2770
|
-
"TradingSecuritiesRealizedGainLoss": "2023",
|
|
2771
|
-
"TradingSecuritiesRealizedLoss": "2023",
|
|
2772
|
-
"TradingSecuritiesRestricted": "2022",
|
|
2773
|
-
"TradingSecuritiesShortTermInvestmentsAmortizedCost": "2018-01-31",
|
|
2774
|
-
"TradingSecuritiesUnrealizedHoldingGain": "2023",
|
|
2775
|
-
"TradingSecuritiesUnrealizedHoldingGainLoss": "2023",
|
|
2776
|
-
"TradingSecuritiesUnrealizedHoldingLoss": "2023",
|
|
2777
|
-
"TraditionalLifeInterestRateAssumptions": "2016-01-31",
|
|
2778
|
-
"TraditionalLifeInterestRateHighEnd": "2016-01-31",
|
|
2779
|
-
"TraditionalLifeInterestRateLowEnd": "2016-01-31",
|
|
2780
|
-
"TransferorsContinuingInvolvementInTransferredFinancialAssetsTransferDescriptionMember": "2018-01-31",
|
|
2781
|
-
"TransitionMethodCarryingValueDescription": "2016-01-31",
|
|
2782
|
-
"TransitionMethodFairValueDescription": "2016-01-31",
|
|
2783
|
-
"TransitionMethodUnpaidPrincipalBalanceDescription": "2016-01-31",
|
|
2784
|
-
"TranslationAdjustmentForNetInvestmentHedgeLossGainOnReclassifiedOfEarningsNetOfTax": "2016-01-31",
|
|
2785
|
-
"TranslationAdjustmentForNetInvestmentHedgeTaxBenefitExpense": "2016-01-31",
|
|
2786
|
-
"TranslationAdjustmentFunctionalToReportingCurrencyLossGainOnReclassifiedOfEarningsNetOfTax": "2016-01-31",
|
|
2787
|
-
"TranslationAdjustmentFunctionalToReportingCurrencyTaxBenefitExpense": "2016-01-31",
|
|
2788
|
-
"TreasuryStockMember": "2023",
|
|
2789
|
-
"TreasuryStockNumberOfSharesHeld": "2016-01-31",
|
|
2790
|
-
"TreasuryStockShares": "2023",
|
|
2791
|
-
"TreasuryStockSharesAbstract": "2023",
|
|
2792
|
-
"TypeOfArrangementDomain": "2019-01-31",
|
|
2793
|
-
"TypeOfDeferredPolicyAcquisitionCosts": "2018-01-31",
|
|
2794
|
-
"TypesOfCommercialAircraftAbstract": "2022",
|
|
2795
|
-
"TypesOfCostsForRecovery": "2016-01-31",
|
|
2796
|
-
"TypesOfForeignCurrencyDerivativesUsed": "2020",
|
|
2797
|
-
"TypesOfInterestRateDerivativesUsed": "2020",
|
|
2798
|
-
"TypesOfPriceRiskDerivativesUsed": "2020",
|
|
2799
|
-
"UnamortizedLoanCommitmentAndOriginationFeesAndUnamortizedDiscountsOrPremiumsAbstract": "2016-01-31",
|
|
2800
|
-
"UnamortizedLoanCommitmentAndOriginationFeesAndUnamortizedDiscountsOrPremiumsCommercial": "2016-01-31",
|
|
2801
|
-
"UnamortizedLoanCommitmentAndOriginationFeesAndUnamortizedDiscountsOrPremiumsConsumer": "2016-01-31",
|
|
2802
|
-
"UnamortizedLoanCommitmentAndOriginationFeesAndUnamortizedDiscountsOrPremiumsForeign": "2016-01-31",
|
|
2803
|
-
"UnamortizedLoanCommitmentAndOriginationFeesAndUnamortizedDiscountsOrPremiumsOther": "2016-01-31",
|
|
2804
|
-
"UnapprovedChangeOrdersDescription": "2020",
|
|
2805
|
-
"UnassumedDebtOfSubsidiaryAbstract": "2016-01-31",
|
|
2806
|
-
"UncertaintiesAbstract": "2016-01-31",
|
|
2807
|
-
"UncertaintyRegulatoryOversight": "2016-01-31",
|
|
2808
|
-
"UndistributedIncomeFromOtherThanGainOrLossOnSaleOfProperties": "2020",
|
|
2809
|
-
"UndistributedIncomeFromOtherThanGainOrLossOnSaleOfPropertiesMember": "2020",
|
|
2810
|
-
"UndistributedNetRealizedGainOrLossOnSaleOfProperties": "2020",
|
|
2811
|
-
"UndistributedNetRealizedGainOrLossOnSaleOfPropertiesMember": "2020",
|
|
2812
|
-
"UnearnedPremiumsLongDurationMember": "2017-01-31",
|
|
2813
|
-
"UnearnedPremiumsShortDurationMember": "2017-01-31",
|
|
2814
|
-
"UnitedStatesPensionPlansOfUSEntityDefinedBenefitMember": "2017-01-31",
|
|
2815
|
-
"UnitedStatesPostretirementBenefitPlansOfUSEntityDefinedBenefitMember": "2017-01-31",
|
|
2816
|
-
"UnrealizedGainLossOnInvestmentsAbstract": "2018-01-31",
|
|
2817
|
-
"UnrealizedGainLossOnMarketableSecuritiesCostMethodInvestmentsAndOtherInvestments": "2023",
|
|
2818
|
-
"UnrealizedGainLossOnMarketableSecuritiesCostMethodInvestmentsAndOtherInvestmentsAbstract": "2018-01-31",
|
|
2819
|
-
"UnrealizedGainLossOnSecurities": "2023",
|
|
2820
|
-
"UnrealizedGainOnSecurities": "2023",
|
|
2821
|
-
"UnrealizedLossOnSecurities": "2023",
|
|
2822
|
-
"UnusualOrInfrequentItemDescriptionOfContingencies": "2016-01-31",
|
|
2823
|
-
"UnusualOrInfrequentItemFourthQuarter": "2016-01-31",
|
|
2824
|
-
"UseOfEstimatesQuarterlyChangesInEstimates": "2016-01-31",
|
|
2825
|
-
"UseOfRestrictedCashForAcquisitionOfOilAndGasProperty": "2017-01-31",
|
|
2826
|
-
"UtilitiesCosts": "2018-01-31",
|
|
2827
|
-
"UtilityRevenue": "2018-01-31",
|
|
2828
|
-
"UtilityRevenueAbstract": "2018-01-31",
|
|
2829
|
-
"ValueOfPropertiesOtherThanThatAttributableToProvedReserves": "2018-01-31",
|
|
2830
|
-
"VariableInterestEntitiesByClassificationOfEntityAxis": "2020",
|
|
2831
|
-
"VariableInterestEntityActivityBetweenVIEAndEntityOtherMeasureOfActivityDescription": "2016-01-31",
|
|
2832
|
-
"VariableInterestEntityClassificationOfCarryingAmountAssets": "2016-01-31",
|
|
2833
|
-
"VariableInterestEntityClassificationOfCarryingAmountAssetsAndLiabilitiesNetAbstract": "2016-01-31",
|
|
2834
|
-
"VariableInterestEntityClassificationOfCarryingAmountLiabilities": "2016-01-31",
|
|
2835
|
-
"VariableInterestEntityConsolidatedAssetsCurrent": "2020",
|
|
2836
|
-
"VariableInterestEntityConsolidatedAssetsCurrentNotPledged": "2020",
|
|
2837
|
-
"VariableInterestEntityConsolidatedAssetsCurrentPledged": "2020",
|
|
2838
|
-
"VariableInterestEntityConsolidatedAssetsNoncurrent": "2020",
|
|
2839
|
-
"VariableInterestEntityConsolidatedAssetsNoncurrentNotPledged": "2020",
|
|
2840
|
-
"VariableInterestEntityConsolidatedAssetsNoncurrentPledged": "2020",
|
|
2841
|
-
"VariableInterestEntityConsolidatedAssetsNotPledged": "2020",
|
|
2842
|
-
"VariableInterestEntityConsolidatedAssetsNotPledgedAbstract": "2020",
|
|
2843
|
-
"VariableInterestEntityConsolidatedAssetsPledged": "2020",
|
|
2844
|
-
"VariableInterestEntityConsolidatedAssetsPledgedAbstract": "2020",
|
|
2845
|
-
"VariableInterestEntityConsolidatedCarryingAmountAssets": "2020",
|
|
2846
|
-
"VariableInterestEntityConsolidatedCarryingAmountAssetsAbstract": "2020",
|
|
2847
|
-
"VariableInterestEntityConsolidatedCarryingAmountAssetsAndLiabilitiesAbstract": "2020",
|
|
2848
|
-
"VariableInterestEntityConsolidatedCarryingAmountAssetsAndLiabilitiesNet": "2020",
|
|
2849
|
-
"VariableInterestEntityConsolidatedCarryingAmountLiabilities": "2020",
|
|
2850
|
-
"VariableInterestEntityConsolidatedCarryingAmountLiabilitiesAbstract": "2020",
|
|
2851
|
-
"VariableInterestEntityConsolidatedLiabilitiesCurrent": "2020",
|
|
2852
|
-
"VariableInterestEntityConsolidatedLiabilitiesCurrentNoRecourse": "2020",
|
|
2853
|
-
"VariableInterestEntityConsolidatedLiabilitiesCurrentRecourse": "2020",
|
|
2854
|
-
"VariableInterestEntityConsolidatedLiabilitiesNoRecourse": "2020",
|
|
2855
|
-
"VariableInterestEntityConsolidatedLiabilitiesNoRecourseAbstract": "2020",
|
|
2856
|
-
"VariableInterestEntityConsolidatedLiabilitiesNoncurrent": "2020",
|
|
2857
|
-
"VariableInterestEntityConsolidatedLiabilitiesNoncurrentNoRecourse": "2020",
|
|
2858
|
-
"VariableInterestEntityConsolidatedLiabilitiesNoncurrentRecourse": "2020",
|
|
2859
|
-
"VariableInterestEntityConsolidatedLiabilitiesRecourse": "2020",
|
|
2860
|
-
"VariableInterestEntityConsolidatedLiabilitiesRecourseAbstract": "2020",
|
|
2861
|
-
"VariableInterestEntityExtentOfOrLackOfRecourseFlag": "2020",
|
|
2862
|
-
"VariableInterestEntityFinancialOrOtherSupport": "2016-01-31",
|
|
2863
|
-
"VariableInterestEntityNonconsolidatedCarryingAmountAssets": "2020",
|
|
2864
|
-
"VariableInterestEntityNonconsolidatedCarryingAmountAssetsAndLiabilitiesAbstract": "2020",
|
|
2865
|
-
"VariableInterestEntityNonconsolidatedCarryingAmountAssetsAndLiabilitiesNet": "2020",
|
|
2866
|
-
"VariableInterestEntityNonconsolidatedCarryingAmountLiabilities": "2020",
|
|
2867
|
-
"VariableInterestEntityNotPrimaryBeneficiaryAggregatedDisclosureMember": "2020",
|
|
2868
|
-
"VariableInterestEntityPrimaryBeneficiaryAggregatedDisclosureMember": "2020",
|
|
2869
|
-
"VariableInterestEntityQualitativeOrQuantitativeInformation": "2016-01-31",
|
|
2870
|
-
"VariableInterestEntityVIEOrPotentialVIEInformationUnavailabilityAggregatedDisclosureMember": "2020",
|
|
2871
|
-
"VariableInterestEntityVIEOrPotentialVIEInformationUnavailabilityMember": "2020",
|
|
2872
|
-
"VehicleTollRevenue": "2016-01-31",
|
|
2873
|
-
"WarrantDownRoundFeatureIncreaseDecreaseInEquityAmount": "2022",
|
|
2874
|
-
"WarrantsNotSettleableInCashMember": "2019-01-31",
|
|
2875
|
-
"WaterFloodsInProcessOfInstallation": "2019-01-31",
|
|
2876
|
-
"WeightedAverageDiscountRateByCountryAxis": "2019-01-31",
|
|
2877
|
-
"WeightedAverageDiscountRateCountryOfOriginDomain": "2019-01-31",
|
|
2878
|
-
"WeightedAverageDiscountRateLineItems": "2019-01-31",
|
|
2879
|
-
"WeightedAverageDiscountRateMethodologyAndAssumptions": "2016-01-31",
|
|
2880
|
-
"WeightedAverageDiscountRatePercent": "2019-01-31",
|
|
2881
|
-
"WeightedAverageDiscountRateTable": "2019-01-31",
|
|
2882
|
-
"WeightedAverageNumberOfShareOutstandingBasicAndDiluted": "2022",
|
|
2883
|
-
"WellServiceExpense": "2018-01-31",
|
|
2884
|
-
"WorkersCompensationDiscountAmount": "2023",
|
|
2885
|
-
"WorkersCompensationDiscountDescription": "2020"
|
|
2886
|
-
}
|