arelle-release 2.36.30__py3-none-any.whl → 2.36.32__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.

Potentially problematic release.


This version of arelle-release might be problematic. Click here for more details.

Files changed (45) hide show
  1. arelle/CntlrCmdLine.py +90 -52
  2. arelle/CntlrWinMain.py +29 -2
  3. arelle/ModelManager.py +2 -0
  4. arelle/ModelValue.py +5 -4
  5. arelle/RuntimeOptions.py +1 -0
  6. arelle/ValidateXbrlDTS.py +83 -27
  7. arelle/ViewFileRelationshipSet.py +4 -2
  8. arelle/ViewFileRenderedGrid.py +1 -1
  9. arelle/ViewFileRenderedLayout.py +0 -1
  10. arelle/ViewWinRelationshipSet.py +4 -3
  11. arelle/ViewWinRenderedGrid.py +1 -1
  12. arelle/XmlUtil.py +1 -1
  13. arelle/_version.py +2 -2
  14. arelle/formula/XPathParser.py +1 -1
  15. arelle/plugin/saveLoadableOIM.py +38 -5
  16. arelle/rendering/RenderingLayout.py +1 -1
  17. arelle/rendering/RenderingResolution.py +2 -2
  18. {arelle_release-2.36.30.dist-info → arelle_release-2.36.32.dist-info}/METADATA +3 -2
  19. {arelle_release-2.36.30.dist-info → arelle_release-2.36.32.dist-info}/RECORD +45 -45
  20. {arelle_release-2.36.30.dist-info → arelle_release-2.36.32.dist-info}/WHEEL +1 -1
  21. tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj +2 -2
  22. tests/integration_tests/validation/conformance_suite_configurations/cipc_current.py +1 -0
  23. tests/integration_tests/validation/conformance_suite_configurations/dba_current.py +1 -0
  24. tests/integration_tests/validation/conformance_suite_configurations/dba_multi_current.py +1 -0
  25. tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2021.py +1 -0
  26. tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2022.py +1 -0
  27. tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2023.py +1 -0
  28. tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2024.py +1 -0
  29. tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2021.py +1 -0
  30. tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2022.py +1 -0
  31. tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2023.py +1 -0
  32. tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2024.py +1 -0
  33. tests/integration_tests/validation/conformance_suite_configurations/hmrc_current.py +1 -0
  34. tests/integration_tests/validation/conformance_suite_configurations/kvk_nt16.py +1 -0
  35. tests/integration_tests/validation/conformance_suite_configurations/kvk_nt17.py +1 -0
  36. tests/integration_tests/validation/conformance_suite_configurations/kvk_nt18.py +1 -0
  37. tests/integration_tests/validation/conformance_suite_configurations/kvk_nt19.py +1 -0
  38. tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py +1 -0
  39. tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py +1 -0
  40. tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py +1 -0
  41. tests/integration_tests/validation/conformance_suite_configurations/nl_nt19.py +1 -0
  42. tests/integration_tests/validation/conformance_suite_configurations/ros_current.py +1 -0
  43. {arelle_release-2.36.30.dist-info → arelle_release-2.36.32.dist-info}/entry_points.txt +0 -0
  44. {arelle_release-2.36.30.dist-info → arelle_release-2.36.32.dist-info/licenses}/LICENSE.md +0 -0
  45. {arelle_release-2.36.30.dist-info → arelle_release-2.36.32.dist-info}/top_level.txt +0 -0
@@ -8,6 +8,7 @@ from arelle.ModelRelationshipSet import ModelRelationshipSet
8
8
  from arelle.ModelDtsObject import ModelRelationship
9
9
  from arelle.ModelFormulaObject import ModelFilter
10
10
  from arelle.ModelObject import ModelObject
11
+ from arelle.ViewFileRelationshipSet import hasCalcArcrole
11
12
  from arelle.ViewUtil import viewReferences, groupRelationshipSet, groupRelationshipLabel
12
13
  from arelle.XbrlConst import conceptNameLabelRole, documentationLabel, widerNarrower
13
14
 
@@ -89,7 +90,7 @@ class ViewRelationshipSet(ViewWinTree.ViewTree):
89
90
  self.treeView.heading("type", text=_("Type"))
90
91
  self.treeView.column("references", width=200, anchor="w", stretch=False)
91
92
  self.treeView.heading("references", text=_("References"))
92
- elif self.arcrole in XbrlConst.summationItems: # extra columns
93
+ elif hasCalcArcrole(self.arcrole):
93
94
  self.treeView.column("#0", width=300, anchor="w")
94
95
  self.treeView["columns"] = ("weight", "balance")
95
96
  self.treeView.column("weight", width=48, anchor="w", stretch=False)
@@ -253,7 +254,7 @@ class ViewRelationshipSet(ViewWinTree.ViewTree):
253
254
  self.treeView.set(childnode, "preferredLabel", preferredLabel)
254
255
  self.treeView.set(childnode, "type", concept.niceType)
255
256
  self.treeView.set(childnode, "references", viewReferences(concept))
256
- elif self.arcrole in XbrlConst.summationItems:
257
+ elif hasCalcArcrole(self.arcrole):
257
258
  if isRelation:
258
259
  self.treeView.set(childnode, "weight", "{:+0g} ".format(modelObject.weight))
259
260
  self.treeView.set(childnode, "balance", concept.balance)
@@ -313,7 +314,7 @@ class ViewRelationshipSet(ViewWinTree.ViewTree):
313
314
  for modelRel in childRelationshipSet.fromModelObject(concept):
314
315
  nestedRelationshipSet = childRelationshipSet
315
316
  targetRole = modelRel.targetRole
316
- if self.arcrole in XbrlConst.summationItems:
317
+ if hasCalcArcrole(self.arcrole):
317
318
  childPrefix = "({:0g}) ".format(modelRel.weight) # format without .0 on integer weights
318
319
  elif targetRole is None or len(targetRole) == 0:
319
320
  targetRole = relationshipSet.linkrole
@@ -8,7 +8,7 @@ from arelle import (ViewWinTkTable, ModelDocument, ModelDtsObject, ModelInstance
8
8
  ModelXbrl, Locale, FunctionXfi,
9
9
  ValidateXbrlDimensions, ViewFileRenderedGrid, ViewFileRenderedLayout, ViewFileRenderedStructure)
10
10
  from arelle.ModelValue import qname, QName
11
- from arelle.rendering.RenderingResolution import resolveTableStructure, RENDER_UNITS_PER_CHAR
11
+ from arelle.rendering.RenderingResolution import RENDER_UNITS_PER_CHAR
12
12
  from arelle.rendering.RenderingLayout import layoutTable
13
13
  from arelle.ModelInstanceObject import ModelDimensionValue
14
14
  from arelle.ModelRenderingObject import (StrctMdlBreakdown, DefnMdlDefinitionNode,
arelle/XmlUtil.py CHANGED
@@ -1035,7 +1035,7 @@ def dateunionValue(
1035
1035
  ) -> str:
1036
1036
  if not isinstance(datetimeValue, (datetime.datetime, datetime.date)):
1037
1037
  return "INVALID"
1038
- tz = tzinfoStr(datetimeValue) # type: ignore[arg-type] # ModelValue type hints
1038
+ tz = tzinfoStr(datetimeValue)
1039
1039
  isDate = getattr(
1040
1040
  datetimeValue, 'dateOnly', False) or not hasattr(datetimeValue, 'hour')
1041
1041
  if isDate or (
arelle/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '2.36.30'
21
- __version_tuple__ = version_tuple = (2, 36, 30)
20
+ __version__ = version = '2.36.32'
21
+ __version_tuple__ = version_tuple = (2, 36, 32)
@@ -817,7 +817,7 @@ expr <<= orExpr
817
817
  # doesn't reset the streamlined setting of the Forward expression instance.
818
818
  assert isinstance(expr.expr, ParserElement)
819
819
  expr.streamlined = expr.expr.streamlined
820
- xpathExpr = expr + StringEnd() # type: ignore[no-untyped-call]
820
+ xpathExpr = expr + StringEnd()
821
821
 
822
822
 
823
823
  # map operator symbols to corresponding arithmetic operations
@@ -30,6 +30,17 @@ allowing for efficient data handling in Arelle.
30
30
  python arelleCmdLine.py --plugins saveLoadableOIM --file filing-documents.zip --saveTestcaseOimFileSuffix -savedOim.csv
31
31
  ```
32
32
 
33
+ - **Deduplicate facts**
34
+ To save an OIM instance with duplicate fact removed use the `--deduplicateOimFacts` argument with either `complete`,
35
+ `consistent-pairs`, or `consistent-sets` as the value.
36
+ For details on what eaxctly consitutes a duplicate fact and why there are multiple options read the
37
+ [Fact Deduplication][fact-deduplication] documentation.
38
+ ```bash
39
+ python arelleCmdLine.py --plugins saveLoadableOIM --file filing-documents.zip --saveLoadableOIM example.json --deduplicateOimFacts complete
40
+ ```
41
+
42
+ [fact-deduplication]: project:/user_guides/fact_deduplication.md
43
+
33
44
  ### GUI Usage
34
45
 
35
46
  - **Save Re-Loadable Output**:
@@ -51,6 +62,7 @@ import json
51
62
  import os
52
63
  import threading
53
64
  import zipfile
65
+ from collections.abc import Iterable
54
66
  from dataclasses import dataclass
55
67
  from datetime import datetime
56
68
  from decimal import Decimal
@@ -58,7 +70,7 @@ from math import isinf, isnan
58
70
  from numbers import Number
59
71
  from optparse import OptionParser
60
72
  from pathlib import Path
61
- from typing import TYPE_CHECKING, Any, BinaryIO, Callable, Iterable, Optional, cast
73
+ from typing import TYPE_CHECKING, Any, BinaryIO, Callable, Optional, cast
62
74
 
63
75
  import regex as re
64
76
  from openpyxl import Workbook
@@ -66,7 +78,7 @@ from openpyxl.cell.cell import WriteOnlyCell
66
78
  from openpyxl.styles import Alignment, Color, PatternFill, fills
67
79
  from openpyxl.worksheet.dimensions import ColumnDimension
68
80
 
69
- from arelle import ModelDocument, XbrlConst
81
+ from arelle import ModelDocument, ValidateDuplicateFacts, XbrlConst
70
82
  from arelle.ModelInstanceObject import ModelContext, ModelFact
71
83
  from arelle.ModelRelationshipSet import ModelRelationshipSet
72
84
  from arelle.ModelValue import (
@@ -446,6 +458,16 @@ def saveLoadableOIM(
446
458
  if isJSON:
447
459
  oimFeatures["xbrl:canonicalValues"] = True
448
460
 
461
+ factsToSave = modelXbrl.facts
462
+ pluginData = modelXbrl.modelManager.cntlr.getPluginData(PLUGIN_NAME)
463
+ if isinstance(pluginData, SaveLoadableOIMPluginData) and pluginData.deduplicateFactsType is not None:
464
+ deduplicatedFacts = frozenset(ValidateDuplicateFacts.getDeduplicatedFacts(modelXbrl, pluginData.deduplicateFactsType))
465
+ duplicateFacts = frozenset(f for f in modelXbrl.facts if f not in deduplicatedFacts)
466
+ if duplicateFacts:
467
+ for fact in duplicateFacts:
468
+ ValidateDuplicateFacts.logDeduplicatedFact(modelXbrl, fact)
469
+ factsToSave = [f for f in factsToSave if f not in duplicateFacts]
470
+
449
471
  if isJSON:
450
472
  # save JSON
451
473
  oimReport["facts"] = oimFacts = {}
@@ -465,7 +487,7 @@ def saveLoadableOIM(
465
487
  if fact.modelTupleFacts:
466
488
  saveJsonFacts(fact.modelTupleFacts, oimFacts)
467
489
 
468
- saveJsonFacts(modelXbrl.facts, oimFacts)
490
+ saveJsonFacts(factsToSave, oimFacts)
469
491
 
470
492
  # add footnotes as pseudo facts
471
493
  for ftObj in footnoteFacts:
@@ -651,7 +673,7 @@ def saveLoadableOIM(
651
673
  _writerow(aspectCols(fact))
652
674
  saveCSVfacts(fact.modelTupleFacts)
653
675
 
654
- saveCSVfacts(modelXbrl.facts)
676
+ saveCSVfacts(factsToSave)
655
677
  _close()
656
678
 
657
679
  # save footnotes
@@ -747,6 +769,7 @@ def saveOimFiles(
747
769
 
748
770
  @dataclass
749
771
  class SaveLoadableOIMPluginData(PluginData):
772
+ deduplicateFactsType: ValidateDuplicateFacts.DeduplicationType | None
750
773
  saveTestcaseOimFileSuffix: str | None
751
774
 
752
775
 
@@ -775,6 +798,12 @@ class SaveLoadableOIMPlugin(PluginHooks):
775
798
  dest="saveTestcaseOimFileSuffix",
776
799
  help=_("Save Testcase Variation OIM file (argument file suffix and type, such as -savedOim.csv"),
777
800
  )
801
+ parser.add_option(
802
+ "--deduplicateOimFacts",
803
+ action="store",
804
+ choices=[a.value for a in ValidateDuplicateFacts.DeduplicationType],
805
+ dest="deduplicateOimFacts",
806
+ help=_("Remove duplicate facts when saving the OIM instance"))
778
807
 
779
808
  @staticmethod
780
809
  def cntlrCmdLineUtilityRun(
@@ -783,8 +812,12 @@ class SaveLoadableOIMPlugin(PluginHooks):
783
812
  *args: Any,
784
813
  **kwargs: Any,
785
814
  ) -> None:
815
+ deduplicateOimFacts = cast(Optional[str], getattr(options, "deduplicateOimFacts", None))
786
816
  saveTestcaseOimFileSuffix = cast(Optional[str], getattr(options, "saveTestcaseOimFileSuffix", None))
787
- pluginData = SaveLoadableOIMPluginData(PLUGIN_NAME, saveTestcaseOimFileSuffix)
817
+ deduplicateFactsType = None
818
+ if deduplicateOimFacts is not None:
819
+ deduplicateFactsType = ValidateDuplicateFacts.DeduplicationType(deduplicateOimFacts)
820
+ pluginData = SaveLoadableOIMPluginData(PLUGIN_NAME, deduplicateFactsType, saveTestcaseOimFileSuffix)
788
821
  cntlr.setPluginData(pluginData)
789
822
 
790
823
  @staticmethod
@@ -464,7 +464,7 @@ def bodyCells(view, row, yStrctNodes, xStrctNodes, zAspectStrctNodes, lytMdlYCel
464
464
  if justify is None:
465
465
  justify = "right" if fp.isNumeric else "left"
466
466
  if conceptNotAbstract:
467
- if factsVals or ignoreDimValidity or isFactDimensionallyValid(self, fp) or isEntryPrototype:
467
+ if factsVals or ignoreDimValidity or isFactDimensionallyValid(view, fp) or isEntryPrototype:
468
468
  lytMdlCell = LytMdlBodyCell(lytMdlXCells, isOpenAspectEntrySurrogate)
469
469
  lytMdlCell.facts = factsVals
470
470
  fp.clear() # dereference
@@ -44,11 +44,11 @@ def resolveTableStructure(view, viewTblELR):
44
44
 
45
45
  # find an ELR for this table object
46
46
  defnMdlTable = viewTblELR
47
- strctMdlTable = StrctMdlTable(defnMdlTable)
47
+ strctMdlTableSet = StrctMdlTableSet(defnMdlTable)
48
48
  for rel in view.modelXbrl.relationshipSet((XbrlConst.tableBreakdown, XbrlConst.tableBreakdownMMDD)).fromModelObject(defnMdlTable):
49
49
  # find relationships in table's linkrole
50
50
  view.defnSubtreeRelSet = view.modelXbrl.relationshipSet((XbrlConst.tableBreakdownTree, XbrlConst.tableBreakdownTreeMMDD), rel.linkrole)
51
- return resolveTableAxesStructure(view, strctMdlTable,
51
+ return resolveTableAxesStructure(view, strctMdlTableSet,
52
52
  view.modelXbrl.relationshipSet((XbrlConst.tableBreakdown, XbrlConst.tableBreakdownMMDD), rel.linkrole))
53
53
  # no relationships from table found
54
54
  return None
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: arelle-release
3
- Version: 2.36.30
3
+ Version: 2.36.32
4
4
  Summary: An open source XBRL platform.
5
5
  Author-email: "arelle.org" <support@arelle.org>
6
6
  License: Apache-2.0
@@ -56,6 +56,7 @@ Provides-Extra: webserver
56
56
  Requires-Dist: cheroot<11,>=8; extra == "webserver"
57
57
  Requires-Dist: CherryPy==18.*; extra == "webserver"
58
58
  Requires-Dist: tornado==6.*; extra == "webserver"
59
+ Dynamic: license-file
59
60
 
60
61
  # Arelle
61
62
 
@@ -1,12 +1,12 @@
1
1
  arelle/Aspect.py,sha256=Pn9I91D1os1RTVj6htuxTfRzVMhmVDtrbKvV_zy9xMI,5470
2
2
  arelle/BetaFeatures.py,sha256=T_tPac-FiozHyYLCemt0RoHJ1JahUE71L-0tHmIRKpE,858
3
3
  arelle/Cntlr.py,sha256=sf5Xe19t5E0wKzhdlXl1p5r6gMtCmPhYAi8RVY0jz7Y,30449
4
- arelle/CntlrCmdLine.py,sha256=7ZgI4x4g2dTET6Er2xIWowrSzaQHSOo5IQ8xwyR5BQQ,92901
4
+ arelle/CntlrCmdLine.py,sha256=B4C8ZnfRH67WVkFUFy3G_bTQ_vGc-DbQK6SLc-fcSCg,94266
5
5
  arelle/CntlrComServer.py,sha256=h1KPf31uMbErpxTZn_iklDqUMGFgQnjZkFkFjd8gtLQ,1888
6
6
  arelle/CntlrProfiler.py,sha256=2VQJudiUhxryVypxjODx2ccP1-n60icTiWs5lSEokhQ,972
7
7
  arelle/CntlrQuickBooks.py,sha256=BMqd5nkNQOZyNFPefkTeWUUDCYNS6BQavaG8k1Lepu4,31543
8
8
  arelle/CntlrWebMain.py,sha256=eOzqrp0XA3TrOu7m6Arcvnmdxt7-7zQ8xyaLs-dpDHg,51028
9
- arelle/CntlrWinMain.py,sha256=GuzXetvtwkz8Ly47hRiqd3d6jlgYth7YvyqvSuotego,94914
9
+ arelle/CntlrWinMain.py,sha256=eSdO_PQynuZcE3S7BnZyP-wnn_9oiUOMlF0Qe4Dl8x0,96812
10
10
  arelle/CntlrWinTooltip.py,sha256=6MzoAIfkYnNu_bl_je8n0adhwmKxAIcymkg9Tij9Z4M,7951
11
11
  arelle/DialogAbout.py,sha256=XXzMV0fO4BQ3-l1Puirzmn7EZEdmgJg7JNYdJm1FueM,1987
12
12
  arelle/DialogArcroleGroup.py,sha256=r81OT3LFmMkoROpFenk97oVEyQhibKZ1QgDHvMsyCl0,7547
@@ -38,7 +38,7 @@ arelle/ModelDocument.py,sha256=bP8WbSmBlk3ZxgrQxIfXMfU3Xjo7kgTtWZzxnCZvI88,12921
38
38
  arelle/ModelDtsObject.py,sha256=JXPRiFOsbB5tZjEDc6rECuUtXMbF4oxfnwrQvKo-i5U,88656
39
39
  arelle/ModelFormulaObject.py,sha256=beUSxEFm7aoa9iimmvXLYCHdizAtOmhDqk6wmvbc9Zg,122537
40
40
  arelle/ModelInstanceObject.py,sha256=pAcwQBr85_fQCGT18JSOGGwzAZ3J-oWIU9sj9UUXLOk,73928
41
- arelle/ModelManager.py,sha256=1TflmGhni3ox_yTmZl5JKU_hGlVXmN-2q_Ncgh4h9A4,10926
41
+ arelle/ModelManager.py,sha256=QUNcD2LC_YyyGFU8bFTSuzIGI1qpOK55KBlQ697Ep1I,11075
42
42
  arelle/ModelObject.py,sha256=Rttkhv-PtfneZyDYsG5FDh98BzT97ameTmwNdqFaOv0,18657
43
43
  arelle/ModelObjectFactory.py,sha256=XuNF4Re3p00tODCdyspfar_DNCXfARqCaLEkntgAZ0g,8750
44
44
  arelle/ModelRelationshipSet.py,sha256=_1T3NAS0IRgK8IWFe7nh-qxXZ7htA80i_dueyU8JYaU,24654
@@ -46,7 +46,7 @@ arelle/ModelRenderingObject.py,sha256=iPhSUlSBG-FLzAfIdUW06UZDgTCaZJ4K2mxvAtSe2B
46
46
  arelle/ModelRssItem.py,sha256=GzFkmluOlFsVcrxn9HAyOAcuE7rcHUOGkp4Q6F2IlT8,7713
47
47
  arelle/ModelRssObject.py,sha256=xjuwyJ8pU5sQmNPJFQakDEEnujZg2bMCTaj3zVezHL8,992
48
48
  arelle/ModelTestcaseObject.py,sha256=qWSphg4BX8HMcmEt_IJ8pS_uU1G7XeIldTshEpAi0GY,21873
49
- arelle/ModelValue.py,sha256=DWKeqz558-IDcFJ6fR0s9yiGo8kEkintYQ67_3rlU_g,39360
49
+ arelle/ModelValue.py,sha256=6Vko4aytXg2Ajv7rI6houQb-ZX39-tcjQ4N90ZxZvE8,39430
50
50
  arelle/ModelVersObject.py,sha256=cPD1IzhkCfuV1eMgVFWes88DH_6WkUj5kj7sgGF2M0I,26062
51
51
  arelle/ModelVersReport.py,sha256=bXEA9K3qkH57aABn5l-m3CTY0FAcF1yX6O4fo-URjl8,73326
52
52
  arelle/ModelXbrl.py,sha256=7rz4rxIGopwRDQTD12P0sdqzvPPoMhGgkg5qkMD6TDQ,72109
@@ -56,7 +56,7 @@ arelle/PluginUtils.py,sha256=0vFQ29wVVpU0cTY3YOBL6FhNQhhCTwShBH4qTJGLnvc,2426
56
56
  arelle/PrototypeDtsObject.py,sha256=0lf60VcXR_isx57hBPrc7vEMkFpYkVuK4JVBSmopzkQ,7989
57
57
  arelle/PrototypeInstanceObject.py,sha256=CXUoDllhDqpMvSQjqIYi1Ywp-J8fLhQRV9wVD2YXgVo,13204
58
58
  arelle/PythonUtil.py,sha256=pP59gx2-z3dKLesUqiDVZmbhCOS1kpQzowsQ9ShJi-0,7947
59
- arelle/RuntimeOptions.py,sha256=luxDPPvfVkPc_3sQuCOiCq7huJopabOS6Ibr0HhiKiw,8665
59
+ arelle/RuntimeOptions.py,sha256=89pSw3zFhjHzn75RaHAl4-iPXL8awTZny-frozn9EHQ,8718
60
60
  arelle/SocketUtils.py,sha256=1wa2sA_QhM8F1klHFq90V1AgO1-hY9pJm0554FiF7Lc,677
61
61
  arelle/SystemInfo.py,sha256=6330pNedRkAPlEKl-ZdaZHiGuucEGZMI-Jrdy7B1rrU,2454
62
62
  arelle/TableStructure.py,sha256=PABOHJiTa56cHyF9qRLD7TohmCHyDTrGEltW8toP_rk,29409
@@ -73,7 +73,7 @@ arelle/ValidateUtr.py,sha256=oxOPrOa1XEzBay4miXvx6eRLTnVFYUIJC9ueWUk4EkI,13633
73
73
  arelle/ValidateVersReport.py,sha256=RMe7GlcyZV0HoVFHL0qOGrKm4et-6yPq5dmikkhnvoU,43196
74
74
  arelle/ValidateXbrl.py,sha256=kBiY_q9QmORwC8VxGpRq9mfufknt08nEAeSgNh1ov-M,78005
75
75
  arelle/ValidateXbrlCalcs.py,sha256=vx1LYbu2l6wY88O9vyaThK5gOG59R9ggHX3FapbN3XA,44308
76
- arelle/ValidateXbrlDTS.py,sha256=8WYc6ig8IUgwp9ZRlh55mMGlQkcv43TXajVi9lmlZtg,101297
76
+ arelle/ValidateXbrlDTS.py,sha256=yxvpTpImEbrQuLJ2aJf38FjA-OEznpWWdsDK0GtLXIU,104003
77
77
  arelle/ValidateXbrlDimensions.py,sha256=Qv7_CI65SiUcpgsnEc86XuMjKz81-170wE5dmZqnvHc,38373
78
78
  arelle/Version.py,sha256=Cdl7IhBHOIdfgWtBVAkeG4cXby84g21NOjkECsgaflM,1067
79
79
  arelle/ViewFile.py,sha256=Bvh50RAHDEauAmF0KPHWAZocMyA0UCduJ46e0wbSnPE,19286
@@ -82,9 +82,9 @@ arelle/ViewFileDTS.py,sha256=IlbBTKFT8grC4N4cWdam8UsUaVFeiy7MfL5PdyEefvA,2029
82
82
  arelle/ViewFileFactList.py,sha256=AVYoDJnhUoIkX7fT2D-bOrKP5g1JAwVnmSr4FYhT4iI,7194
83
83
  arelle/ViewFileFactTable.py,sha256=I3U6XomCHE5bnbUN_WMq80LyYnPz0GRgYdRDm8Pu3tg,17013
84
84
  arelle/ViewFileFormulae.py,sha256=753p3pAZsoxx6-3b_xR_CDFReeMBgBZOCV_TIO0FuJE,4740
85
- arelle/ViewFileRelationshipSet.py,sha256=ZNxRQc57FMM1erJk-VcuVMeScMxr7zev17Rb3ng0JK0,16764
86
- arelle/ViewFileRenderedGrid.py,sha256=if0Ch7FBPG6cVylEnk3meFgi6UHmzTP03v239Eg3-pY,14135
87
- arelle/ViewFileRenderedLayout.py,sha256=k0sEd0zBAiFlRTeStJRhTkLt5EF_XuFXf7xVD2NvVsc,12241
85
+ arelle/ViewFileRelationshipSet.py,sha256=beQ6vGHJgpVwB3upofuPG0Rys2yt7GxsO4BcT96_nL8,16814
86
+ arelle/ViewFileRenderedGrid.py,sha256=I0Q6tyhbu1vcZvWiigAGrPK2bHv_ixsZvLr3merYPJo,14112
87
+ arelle/ViewFileRenderedLayout.py,sha256=aCTpOMBUIKYE4Xu1OFPoo_NTqp1NqefpXze6qWcDKw8,12170
88
88
  arelle/ViewFileRenderedStructure.py,sha256=VemGa9HlVHvazPD3-yOrtDWTggNBkHkNtzXHtLUqngA,6192
89
89
  arelle/ViewFileRoleTypes.py,sha256=4rk7D0sd5TP6o_WNm2wkBxB2OeltUrk6InfJHPLwLDQ,2024
90
90
  arelle/ViewFileRssFeed.py,sha256=7ATWTC42QrCPTZxTK8-MH0-mDOGg0GUms7AWdzJfPKc,2726
@@ -102,8 +102,8 @@ arelle/ViewWinGrid.py,sha256=v9Fog-NC5XGdiZchgNQa-bM7BPrBS4Hs8MUlF0PYLi0,2731
102
102
  arelle/ViewWinList.py,sha256=dz7qip9DpvVi96j71MZQoQpaVguO4FRka-_TOnsJtaE,4318
103
103
  arelle/ViewWinPane.py,sha256=ZTz1fL3-QXZLAIMjqAjGoe9IEMVG7s9AzFYamV2PTco,2783
104
104
  arelle/ViewWinProperties.py,sha256=FutWixP6g-_riNsnCxef6dej_kNqH_E2F3anse60aV4,2403
105
- arelle/ViewWinRelationshipSet.py,sha256=7XAmQ0o9orMDFB0Ew_Ph6FYHtsvss2c6drIQajsOnXk,25577
106
- arelle/ViewWinRenderedGrid.py,sha256=C0bD27zKb_DpO3N4_UCeVkYlt1rP1kKEy1kp8-l1riU,84648
105
+ arelle/ViewWinRelationshipSet.py,sha256=rllE_pru2GRpAPQJrXMF_Kxw1vRel2UCqW-kHrNn6hU,25583
106
+ arelle/ViewWinRenderedGrid.py,sha256=OFFypVdoPke6FVa0fPC0TaFAC2nBOIsJOFF62xNsTnQ,84625
107
107
  arelle/ViewWinRoleTypes.py,sha256=hc1pM5Q_LYOxDxMJTvG1O4_pQ0Uni9kpZ6hPuxKNs9w,4794
108
108
  arelle/ViewWinRssFeed.py,sha256=htgZKAxA3ivuE6p-jvtU2HIx78LAtfAkO2Q-KtGYHIk,6057
109
109
  arelle/ViewWinTests.py,sha256=1RNerlovLzyvemNPFjraEVmpVWcWiw_DQ5LxVZm0R4M,9414
@@ -117,13 +117,13 @@ arelle/WebCache.py,sha256=_GDLhkEf1fxe0nTdO5eCKdNcB1f3Dfv2E6H5PPjNeX8,44733
117
117
  arelle/XbrlConst.py,sha256=YDvnf0gQ3IY5v07d8wxAHTxDmvcHIpl2mSMZeTgvKmk,56695
118
118
  arelle/XbrlUtil.py,sha256=s2Vmrh-sZI5TeuqsziKignOc3ao-uUgnCNoelP4dDj0,9212
119
119
  arelle/XhtmlValidate.py,sha256=0gtm7N-kXK0RB5o3c1AQXjfFuRp1w2fKZZAeyruNANw,5727
120
- arelle/XmlUtil.py,sha256=vDk9HbQJWi3E0GLf-kvlvUfn_gnWjkHt7uVaZe6Mu08,58825
120
+ arelle/XmlUtil.py,sha256=1VToOOylF8kbEorEdZLThmq35j9bmuF_DS2q9NthnHU,58774
121
121
  arelle/XmlValidate.py,sha256=TL72yUQA0PqdcFgw7rW8uxUWw6i1pN7q6V42Uk6gMYY,45857
122
122
  arelle/XmlValidateConst.py,sha256=U_wN0Q-nWKwf6dKJtcu_83FXPn9c6P8JjzGA5b0w7P0,338
123
123
  arelle/XmlValidateParticles.py,sha256=Mn6vhFl0ZKC_vag1mBwn1rH_x2jmlusJYqOOuxFPO2k,9231
124
124
  arelle/XmlValidateSchema.py,sha256=6frtZOc1Yrx_5yYF6V6oHbScnglWrVbWr6xW4EHtLQI,7428
125
125
  arelle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
- arelle/_version.py,sha256=7USuSTEr7meBCL_d0f4pHt3zWfhoYI7F4kw9wVttOEo,515
126
+ arelle/_version.py,sha256=iwoXreKktlkWUpfNhCPwNKEJNDoBIKVqadGZyyWfqy4,515
127
127
  arelle/typing.py,sha256=Ct5lrNKRow_o9CraMEXNza8nFsJ_iGIKoUeGfPs2dxI,1084
128
128
  arelle/api/Session.py,sha256=Vd09RAutWX7mxHSsrW7Bl8CsE1UzXpQpAJsZb55mqng,6188
129
129
  arelle/archive/CustomLogger.py,sha256=v_JXOCQLDZcfaFWzxC9FRcEf9tQi4rCI4Sx7jCuAVQI,1231
@@ -231,7 +231,7 @@ arelle/formula/FormulaConsisAsser.py,sha256=hO4GZwozM5cGl1xTU6OwoF3LlaMxAEB5Oy0r
231
231
  arelle/formula/FormulaEvaluator.py,sha256=WKNyJz1Os9gsKedJXLNC9y9u11Ea4_JQ-RAI7gSFmPU,82600
232
232
  arelle/formula/ValidateFormula.py,sha256=b_stG7h8RhaSsPt07_x-GRBHOl2uy-JNSMd6v-jkg_w,95942
233
233
  arelle/formula/XPathContext.py,sha256=JerF1suUL9RcKRFeF6kXZXGkuw6yaMb6gijNacrqugU,49386
234
- arelle/formula/XPathParser.py,sha256=-QMJJZyh8TxmiW2-UuBHBcSEExjRGXTepnGwKJ0MjLc,50377
234
+ arelle/formula/XPathParser.py,sha256=hJkHT4siC8VpSP5JQ4a1qqSYWwHeDprK6aakrhxlcDk,50344
235
235
  arelle/formula/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
236
  arelle/images/arelle-full-word.ico,sha256=jsAzyAJZTtVPafxhgFQtdWJj7r_r0YhX_iWvWnZ4QKg,2430
237
237
  arelle/images/arelle-mac-icon-4.gif,sha256=jTXc1dBEgZuXuZVd1XOuLuXfpjNW_pusn0mPhHhkOtk,2619
@@ -323,7 +323,7 @@ arelle/plugin/saveCHComponentFile.py,sha256=phW-n96P0BWONLqX3wBcuNcDa_IQ8QVfFWKL
323
323
  arelle/plugin/saveDTS.py,sha256=D8hfFiM9Gc9LE7ZV0-pDvOHeU7Y5ebOzZx_nXzoZrl8,3216
324
324
  arelle/plugin/saveHtmlEBAtables.py,sha256=OITN4ftI_atUO5NvrDJDKUc0CAk67GY68Jl16xDBXiI,10961
325
325
  arelle/plugin/saveLoadableExcel.py,sha256=ZPYB6injFabav0dRzgS7adCFzfHkwtftjl3PfBjijuU,20539
326
- arelle/plugin/saveLoadableOIM.py,sha256=19R5mZzIDkPohEdabs22nOhIZoEPe8vR0HczqN3oSI0,36239
326
+ arelle/plugin/saveLoadableOIM.py,sha256=onT61QRygFCMGS7xTZHJz9WSo1V5PyqKQRtoTBf7GDE,38180
327
327
  arelle/plugin/saveSKOS.py,sha256=7Z1Qedf83zMo9EbigKkxNpiMjzkTYQvLEnwWMObLc1Y,12465
328
328
  arelle/plugin/saveSampleInstance.py,sha256=w66Nd4He8yIK4Il_M9qnelpeUJ_6cBBe5q01DanOxEA,23823
329
329
  arelle/plugin/streamingExtensions.py,sha256=gDt3TfkHcDHqnP8jnBWmC3j5i0u53lgUOSKxHJU8HnI,47646
@@ -430,8 +430,8 @@ arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticOracleDB.sql,sha256=4dtR-23PvsOHCC
430
430
  arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticPostgresDB.ddl,sha256=DYBE4m2gSp-2ktziN__TIj_UtJVeLy1NxteYzotxxT4,727913
431
431
  arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticSQLiteDB.ddl,sha256=TRb4zLoXUGKkBU1ZR5KCpMLBpujtNiL_WDdnv4DfBL0,726301
432
432
  arelle/rendering/RenderingEvaluator.py,sha256=suQhQsx5KD1QJMGxIiPXGbUOKQMTwg1oSSJlgl8J8kk,17781
433
- arelle/rendering/RenderingLayout.py,sha256=dIpR0hGyIvYR-Qj61wSb0YkgJdHbtqtlAtFGEbb65JY,31082
434
- arelle/rendering/RenderingResolution.py,sha256=Prpaaz5B4EfK9ak8cb7kgIL0DHB4hSizreAsXkI4r8Y,54544
433
+ arelle/rendering/RenderingLayout.py,sha256=XSrKiHOBZL-z4qvChpepjh3loxz8G84MCBRXozPxGrE,31082
434
+ arelle/rendering/RenderingResolution.py,sha256=W21PdF7UTmL546Hbtycaf2semGWOPNrpETDeQR9elnA,54553
435
435
  arelle/resources/cache/http/www.eurofiling.info/eu/fr/xbrl/ext/filing-indicators.xsd,sha256=BfDzYGRz5zofzjnvVP_ZdTVtddxKdsrYfjZ3dK_hJIQ,1243
436
436
  arelle/resources/cache/http/www.w3.org/2001/XMLSchema.xsd,sha256=52ehWcF5vW5NwrrCpjpi9Qy9An7BnWtcyescLzPgyy4,87677
437
437
  arelle/resources/cache/http/www.w3.org/2001/xml.xsd,sha256=YZYPsxMeOAIsqtU2Di8zozgleKs8gM1YvXQyDt5hsgw,8836
@@ -706,6 +706,7 @@ arelle/utils/validate/ValidationPlugin.py,sha256=_WeRPXZUTCcSN3FLbFwiAe_2pAUTxZZ
706
706
  arelle/utils/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
707
707
  arelle/webserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
708
708
  arelle/webserver/bottle.py,sha256=676nP8SOB42QscV0WIbXoSV9MwdgvbrzeIApxr6mlUI,171255
709
+ arelle_release-2.36.32.dist-info/licenses/LICENSE.md,sha256=rMbWwFLGzPgLoEjEu8LCmkpWDTqsvfOI-wzLSfeJsis,4107
709
710
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
710
711
  tests/integration_tests/download_cache.py,sha256=jVMIVICsZjcVc9DCPPu3fCjF9_cWSS3tqSynhFs3oAM,4097
711
712
  tests/integration_tests/integration_test_util.py,sha256=H7mncbv0T9ZeVyrtk9Hohe3k6jgcYykHkt-LGE-Q9aQ,10270
@@ -727,7 +728,7 @@ tests/integration_tests/scripts/tests/python_api_query_model.py,sha256=Ut87tvE-h
727
728
  tests/integration_tests/scripts/tests/python_api_taxonomy_service.py,sha256=C6j7BB9h7CX_dUmVFkpnqElShffRSmCI-TMJkueztGM,2711
728
729
  tests/integration_tests/scripts/tests/python_api_validate_esef.py,sha256=Qzi2RRGWjkTVhAjBB18DeJ3X_M9hJYH1TAk7j_RVv5Q,2423
729
730
  tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest.sln,sha256=uzzvHUtKpmBPpoxdfHd7cCmAkdvjs7mMehO6YHebdTY,1499
730
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj,sha256=lYyFMaH5STiRA2Es4ThRdVgfXdFYK2PEMHwmd7V7At4,1387
731
+ tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj,sha256=yqezhHX3r0lNY1yVVzD5wPH7qmUQluhlPBQ3RNuXpuQ,1387
731
732
  tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Tests.cs,sha256=_0TvabpERmrfaoDSazN-xQAH0qzO3cAnuFHLGLRJnGU,20334
732
733
  tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Usings.cs,sha256=0IC7tQ27uAqlt8ZGBrJPK7BPj3kjiodPcHWB3v_JT-o,29
733
734
  tests/integration_tests/ui_tests/resources/workiva.zip,sha256=QtZzi1VcKkHhVa8J-I1wVpQFy-p6tsV95Z0HmI6XbXc,223544
@@ -741,30 +742,30 @@ tests/integration_tests/validation/download_assets.py,sha256=muHklbrvYEbxqqAM8mU
741
742
  tests/integration_tests/validation/run_conformance_suites.py,sha256=pDtBUEfT-pggxKEN2cg3vk0_Cko6wgV3x-6cX7y3Y3M,8206
742
743
  tests/integration_tests/validation/test_conformance_suites.py,sha256=VdwY0QtV6g00M9bv1XNs4qBTwxPxCh5-z4XoDdEhgeM,711
743
744
  tests/integration_tests/validation/validation_util.py,sha256=W5_NpjlqVKlmV8LGgzQLIFtmgEFPO4YgSOTymQX_rns,21541
744
- tests/integration_tests/validation/conformance_suite_configurations/cipc_current.py,sha256=qiCU5T4xf9nI0eB9UUOya8z4UF7DEcdmJO9mSJOhIY0,598
745
- tests/integration_tests/validation/conformance_suite_configurations/dba_current.py,sha256=etV7p8ulvZVzgPeCakfgU8sJkkqBemqv8fr7Yy3JvfE,831
746
- tests/integration_tests/validation/conformance_suite_configurations/dba_multi_current.py,sha256=HgedW76v8bsCIuiUJP0j41p5meYnHxClqh1-DQ_1q2w,793
745
+ tests/integration_tests/validation/conformance_suite_configurations/cipc_current.py,sha256=oLXe3xIsEZLz3cv1cDdMQIuS_NgyI9Uimc9hy0NMWqg,642
746
+ tests/integration_tests/validation/conformance_suite_configurations/dba_current.py,sha256=j-7jCpzbGXbOzG8HGEyS0ciCYSPZzZLV44VQGhP3Hmc,875
747
+ tests/integration_tests/validation/conformance_suite_configurations/dba_multi_current.py,sha256=ICkP18Wu7aTDfszfYlrfVnBj9oe7ppXR-8wxQqCPqW0,837
747
748
  tests/integration_tests/validation/conformance_suite_configurations/efm_current.py,sha256=LoAuqV3uMiQSfgQ34c_T70ph3YT7py5nu10podbIFRM,1322
748
749
  tests/integration_tests/validation/conformance_suite_configurations/efm_reg_dqc.py,sha256=HiT8OcRAOVKLsl95Y91L66FeOsIMMMAQCs-DLMG-Lb0,739
749
750
  tests/integration_tests/validation/conformance_suite_configurations/efm_reg_pragmatic.py,sha256=U6dew0sIibjZe4r6na912qyIVAjxljh2HDix-8AwvhM,727
750
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2021.py,sha256=e7GZE8CWPRsD_pSfOJoKa77M_XA6QmqIm2rY3S6P4tM,1102
751
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2022.py,sha256=daTAIihbg1HHDnr-agqds_MDcIEDC5oNQPi0ZQYnypQ,1531
752
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2023.py,sha256=V4e8Zh-qYtdj6HHiJOacJsld3SoMKMJYjwfXitKGNQc,1789
753
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2024.py,sha256=2jRCKR0vI6SK3NEioQGCl10Iq49NGQ2-hWtXFY-uKPA,1566
754
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2021.py,sha256=ythem-_IxhDa_QW8mQy-uh2xZaOiB6omM8OpzLO8-Ig,927
755
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2022.py,sha256=SHTxy0mIz0NjI6isXpaNyVWdl4I1XAl8Zdu3AtQK6hg,904
756
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2023.py,sha256=YmmpKVvqrZ8EpdwHA4IDNzTe7zM0BFcgfTUl8-_VrGY,876
757
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2024.py,sha256=dyX5nzfzCA69DKlSSx7ciUyz4nvPHOOGqj5qDR4iHXI,922
758
- tests/integration_tests/validation/conformance_suite_configurations/hmrc_current.py,sha256=fTX6o2zEZjo_Ay42vbedDf1632d-Zc4uiouq-7wjm0o,1852
759
- tests/integration_tests/validation/conformance_suite_configurations/kvk_nt16.py,sha256=rSdOZHqVawB_brFp_5moXH_NHE1NQDQWLs6-2EkzKDo,1481
760
- tests/integration_tests/validation/conformance_suite_configurations/kvk_nt17.py,sha256=xCw0SCw35O992C3yUaC5DuGr2_jvxE33HA-LdefASHY,1248
761
- tests/integration_tests/validation/conformance_suite_configurations/kvk_nt18.py,sha256=at-cyJSYcUht-mmBNkQMXxNG0EHoKU2iBqhnMLzW0Yo,1161
762
- tests/integration_tests/validation/conformance_suite_configurations/kvk_nt19.py,sha256=uCB7uy-K0lmc7QgQqEAg2cRtQYPJBHQzEkWfiCmP-sM,1155
763
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py,sha256=3guWPl8aqsREYk_L31fcd6I2l3GEGYHh_1xhmR0g4tE,802
764
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py,sha256=Gqzu2HlT3L27HsRMJb37GWSXepjscH0ika0AwzoCwbs,802
765
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py,sha256=D1ZZYKcs-GUi_gsXdhclECsA1wfPQ6J8v3U8oosMOQY,801
766
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt19.py,sha256=11THlh3bB2ck0KVTH7RMkkTvMY0Q6ydDSEw_U-y7qp4,800
767
- tests/integration_tests/validation/conformance_suite_configurations/ros_current.py,sha256=4WhI0TbE52rcgoJfopSkht1vIcB07Fjl00zq0QAUir0,681
751
+ tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2021.py,sha256=KpXpm6kMYAp94K-J7-GZS47iRVE9Kr5cfxPniFFSI3A,1146
752
+ tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2022.py,sha256=tllelZOW7R5udOhEtjnQGAVy0MxAAM03OY_cC4pstgY,1575
753
+ tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2023.py,sha256=Imhckmr7vui2xrWdsWaengly-5e2CUeoqh2ZDTscek8,1833
754
+ tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2024.py,sha256=Eu3I5Tn1ow7fB4y9KMgSe9q4W5NBfME6pHzBBmEwgqM,1610
755
+ tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2021.py,sha256=535hJ9CEPJPT-ciHumkii6xlJXwsV1KfL_Q9a4fjxcc,971
756
+ tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2022.py,sha256=fr5GIUrbKB4_f7YIkSQz9hbpqFWuQyLmo4awtvODfU4,948
757
+ tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2023.py,sha256=hOpfcMcnu_plJB-mpqyTywAncW_iPJGlZsn5hfD9sk0,920
758
+ tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2024.py,sha256=4x8r-B6f4W2J_KFGKi2Q923TxdJxKv6_YxQS8I6Uo1k,966
759
+ tests/integration_tests/validation/conformance_suite_configurations/hmrc_current.py,sha256=0a-RIuA4xoLXyxenXt740wzhV-0JX2aOrlSPF9qQgE0,1896
760
+ tests/integration_tests/validation/conformance_suite_configurations/kvk_nt16.py,sha256=fIGmQ_7yJAnFvA-Si6dGOpdUlJbi8FQ-ODWoAC09SgI,1525
761
+ tests/integration_tests/validation/conformance_suite_configurations/kvk_nt17.py,sha256=lmEZonthFm0YKFmp1dwXtdJ2T7txUeSpL4mbAo8fl4Y,1292
762
+ tests/integration_tests/validation/conformance_suite_configurations/kvk_nt18.py,sha256=EG2RQVkvFENhzUF3fl3QvDnH7ZPYS1n1Fo8bhfmSczM,1205
763
+ tests/integration_tests/validation/conformance_suite_configurations/kvk_nt19.py,sha256=FAzf9RhRmn_8yowpplJho2zEspX9FxJiVq8SjZT3Dsc,1199
764
+ tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py,sha256=O_LFVBZPkjxmbrU7_C7VTLtrdoCUx2bYXOXw6_MlRtQ,846
765
+ tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py,sha256=aTN3Ez6lPsZsuypHZP84DneOtYxUZSjUiGypHy6ofHQ,846
766
+ tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py,sha256=sqHLjrHc95dTu0guTgKkphaKM1zNfKGnN4GKkZDLzeU,845
767
+ tests/integration_tests/validation/conformance_suite_configurations/nl_nt19.py,sha256=_CiNflzz0ItJslvv22CL70yyK3P7hVGYLZ3BIb0y9Ww,844
768
+ tests/integration_tests/validation/conformance_suite_configurations/ros_current.py,sha256=yEt0XHxX6jNpbslQaIeOce07eh3dsdGP-e7ydOiZzog,725
768
769
  tests/integration_tests/validation/conformance_suite_configurations/xbrl_2_1.py,sha256=GFPkzqk2lwDgHEUIRAFS9-htMOS0THmjsXT9eJDfiSc,1494
769
770
  tests/integration_tests/validation/conformance_suite_configurations/xbrl_calculations_1_1.py,sha256=0XV1FXxFiSk5hcsSaEsT7JVGQ3KXV8FrHNmr-tqo3Zg,816
770
771
  tests/integration_tests/validation/conformance_suite_configurations/xbrl_dimensions_1_0.py,sha256=NtliBDgTxKvpC3j75hmJSrcIIkVlA4q_q6OEXf9b28w,1871
@@ -1553,9 +1554,8 @@ tests/unit_tests/arelle/oim/test_load.py,sha256=NxiUauQwJVfWAHbbpsMHGSU2d3Br8Pki
1553
1554
  tests/unit_tests/arelle/plugin/test_plugin_imports.py,sha256=bdhIs9frAnFsdGU113yBk09_jis-z43dwUItMFYuSYM,1064
1554
1555
  tests/unit_tests/arelle/plugin/validate/ESEF/ESEF_Current/test_validate_css_url.py,sha256=XHABmejQt7RlZ0udh7v42f2Xb2STGk_fSaIaJ9i2xo0,878
1555
1556
  tests/unit_tests/arelle/utils/validate/test_decorator.py,sha256=ZS8FqIY1g-2FCbjF4UYm609dwViax6qBMRJSi0vfuhY,2482
1556
- arelle_release-2.36.30.dist-info/LICENSE.md,sha256=rMbWwFLGzPgLoEjEu8LCmkpWDTqsvfOI-wzLSfeJsis,4107
1557
- arelle_release-2.36.30.dist-info/METADATA,sha256=jHU6UnsmJtN_xVSKcvoAFupvFebLftPn3xPYcAVVIAU,9010
1558
- arelle_release-2.36.30.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
1559
- arelle_release-2.36.30.dist-info/entry_points.txt,sha256=Uj5niwfwVsx3vaQ3fYj8hrZ1xpfCJyTUA09tYKWbzpo,111
1560
- arelle_release-2.36.30.dist-info/top_level.txt,sha256=ZYmYGmhW5Jvo3vJ4iXBZPUI29LvYhntom04w90esJvU,13
1561
- arelle_release-2.36.30.dist-info/RECORD,,
1557
+ arelle_release-2.36.32.dist-info/METADATA,sha256=0CF-CdsIfl1M_wkQNqIbOoEw7r3hEeCEqWh8rctCqW0,9032
1558
+ arelle_release-2.36.32.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
1559
+ arelle_release-2.36.32.dist-info/entry_points.txt,sha256=Uj5niwfwVsx3vaQ3fYj8hrZ1xpfCJyTUA09tYKWbzpo,111
1560
+ arelle_release-2.36.32.dist-info/top_level.txt,sha256=ZYmYGmhW5Jvo3vJ4iXBZPUI29LvYhntom04w90esJvU,13
1561
+ arelle_release-2.36.32.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.1.0)
2
+ Generator: setuptools (77.0.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -11,8 +11,8 @@
11
11
  </PropertyGroup>
12
12
 
13
13
  <ItemGroup>
14
- <PackageReference Include="FlaUI.TestUtilities" Version="4.0.0" />
15
- <PackageReference Include="FlaUI.UIA3.Signed" Version="4.0.0" />
14
+ <PackageReference Include="FlaUI.TestUtilities" Version="5.0.0" />
15
+ <PackageReference Include="FlaUI.UIA3.Signed" Version="5.0.0" />
16
16
  <PackageReference Include="JUnitTestLogger" Version="1.1.0" />
17
17
  <PackageReference Include="JunitXml.TestLogger" Version="6.1.0" />
18
18
  <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
@@ -4,6 +4,7 @@ from tests.integration_tests.validation.conformance_suite_config import Conforma
4
4
  config = ConformanceSuiteConfig(
5
5
  args=[
6
6
  '--disclosureSystem', 'cipc',
7
+ '--baseTaxonomyValidation', 'none',
7
8
  ],
8
9
  assets=[
9
10
  ConformanceSuiteAssetConfig.local_conformance_suite(
@@ -4,6 +4,7 @@ from tests.integration_tests.validation.conformance_suite_config import Conforma
4
4
  config = ConformanceSuiteConfig(
5
5
  args=[
6
6
  '--disclosureSystem', 'arl-2022-preview',
7
+ '--baseTaxonomyValidation', 'none',
7
8
  ],
8
9
  assets=[
9
10
  ConformanceSuiteAssetConfig.local_conformance_suite(
@@ -4,6 +4,7 @@ from tests.integration_tests.validation.conformance_suite_config import Conforma
4
4
  config = ConformanceSuiteConfig(
5
5
  args=[
6
6
  '--disclosureSystem', 'arl-2024-multi-target-preview',
7
+ '--baseTaxonomyValidation', 'none',
7
8
  ],
8
9
  assets=[
9
10
  ConformanceSuiteAssetConfig.local_conformance_suite(
@@ -8,6 +8,7 @@ from tests.integration_tests.validation.conformance_suite_config import (
8
8
  config = ConformanceSuiteConfig(
9
9
  args=[
10
10
  '--disclosureSystem', 'esef-2021',
11
+ '--baseTaxonomyValidation', 'none',
11
12
  ],
12
13
  assets=[
13
14
  ConformanceSuiteAssetConfig.conformance_suite(
@@ -7,6 +7,7 @@ from tests.integration_tests.validation.conformance_suite_config import (
7
7
  config = ConformanceSuiteConfig(
8
8
  args=[
9
9
  '--disclosureSystem', 'esef-2022',
10
+ '--baseTaxonomyValidation', 'none',
10
11
  ],
11
12
  assets=[
12
13
  ConformanceSuiteAssetConfig.conformance_suite(
@@ -7,6 +7,7 @@ from tests.integration_tests.validation.conformance_suite_config import (
7
7
  config = ConformanceSuiteConfig(
8
8
  args=[
9
9
  '--disclosureSystem', 'esef-2023',
10
+ '--baseTaxonomyValidation', 'none',
10
11
  ],
11
12
  assets=[
12
13
  ConformanceSuiteAssetConfig.conformance_suite(
@@ -10,6 +10,7 @@ from tests.integration_tests.validation.conformance_suite_config import (
10
10
  config = ConformanceSuiteConfig(
11
11
  args=[
12
12
  '--disclosureSystem', 'esef-2024',
13
+ '--baseTaxonomyValidation', 'none',
13
14
  ],
14
15
  assets=[
15
16
  ConformanceSuiteAssetConfig.conformance_suite(
@@ -4,6 +4,7 @@ from tests.integration_tests.validation.conformance_suite_config import Conforma
4
4
  config = ConformanceSuiteConfig(
5
5
  args=[
6
6
  '--disclosureSystem', 'esef-unconsolidated-2021',
7
+ '--baseTaxonomyValidation', 'none',
7
8
  ],
8
9
  assets=[
9
10
  ConformanceSuiteAssetConfig.conformance_suite(
@@ -4,6 +4,7 @@ from tests.integration_tests.validation.conformance_suite_config import Conforma
4
4
  config = ConformanceSuiteConfig(
5
5
  args=[
6
6
  '--disclosureSystem', 'esef-unconsolidated-2022',
7
+ '--baseTaxonomyValidation', 'none',
7
8
  ],
8
9
  assets=[
9
10
  ConformanceSuiteAssetConfig.conformance_suite(
@@ -4,6 +4,7 @@ from tests.integration_tests.validation.conformance_suite_config import Conforma
4
4
  config = ConformanceSuiteConfig(
5
5
  args=[
6
6
  '--disclosureSystem', 'esef-unconsolidated-2023',
7
+ '--baseTaxonomyValidation', 'none',
7
8
  ],
8
9
  assets=[
9
10
  ConformanceSuiteAssetConfig.conformance_suite(
@@ -9,6 +9,7 @@ from tests.integration_tests.validation.conformance_suite_config import (
9
9
  config = ConformanceSuiteConfig(
10
10
  args=[
11
11
  '--disclosureSystem', 'esef-unconsolidated-2024',
12
+ '--baseTaxonomyValidation', 'none',
12
13
  ],
13
14
  assets=[
14
15
  ConformanceSuiteAssetConfig.conformance_suite(
@@ -4,6 +4,7 @@ from tests.integration_tests.validation.conformance_suite_config import Conforma
4
4
  config = ConformanceSuiteConfig(
5
5
  args=[
6
6
  '--disclosureSystem', 'hmrc',
7
+ '--baseTaxonomyValidation', 'none',
7
8
  ],
8
9
  assets=[
9
10
  ConformanceSuiteAssetConfig.local_conformance_suite(
@@ -9,6 +9,7 @@ EXTRACTED_PATH = Path(ZIP_PATH.stem)
9
9
  config = ConformanceSuiteConfig(
10
10
  args=[
11
11
  '--disclosureSystem', 'NT16',
12
+ '--baseTaxonomyValidation', 'none',
12
13
  ],
13
14
  assets=[
14
15
  ConformanceSuiteAssetConfig.nested_conformance_suite(
@@ -9,6 +9,7 @@ EXTRACTED_PATH = Path(ZIP_PATH.stem)
9
9
  config = ConformanceSuiteConfig(
10
10
  args=[
11
11
  '--disclosureSystem', 'NT17',
12
+ '--baseTaxonomyValidation', 'none',
12
13
  ],
13
14
  assets=[
14
15
  ConformanceSuiteAssetConfig.nested_conformance_suite(
@@ -8,6 +8,7 @@ EXTRACTED_PATH = Path(ZIP_PATH.stem)
8
8
  config = ConformanceSuiteConfig(
9
9
  args=[
10
10
  '--disclosureSystem', 'NT18',
11
+ '--baseTaxonomyValidation', 'none',
11
12
  ],
12
13
  assets=[
13
14
  ConformanceSuiteAssetConfig.nested_conformance_suite(
@@ -8,6 +8,7 @@ EXTRACTED_PATH = Path(ZIP_PATH.stem)
8
8
  config = ConformanceSuiteConfig(
9
9
  args=[
10
10
  '--disclosureSystem', 'NT19',
11
+ '--baseTaxonomyValidation', 'none',
11
12
  ],
12
13
  assets=[
13
14
  ConformanceSuiteAssetConfig.nested_conformance_suite(
@@ -6,6 +6,7 @@ from tests.integration_tests.validation.conformance_suite_config import Conforma
6
6
  config = ConformanceSuiteConfig(
7
7
  args=[
8
8
  '--disclosureSystem', 'NT16',
9
+ '--baseTaxonomyValidation', 'none',
9
10
  ],
10
11
  assets=[
11
12
  ConformanceSuiteAssetConfig.local_conformance_suite(