cacao-accounting 0.0.0.dev20240815__tar.gz

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.
Files changed (2420) hide show
  1. cacao_accounting-0.0.0.dev20240815/LICENSE +201 -0
  2. cacao_accounting-0.0.0.dev20240815/Licencias_de_Terceros.md +597 -0
  3. cacao_accounting-0.0.0.dev20240815/MANIFEST.in +9 -0
  4. cacao_accounting-0.0.0.dev20240815/PKG-INFO +307 -0
  5. cacao_accounting-0.0.0.dev20240815/README.md +65 -0
  6. cacao_accounting-0.0.0.dev20240815/cacao_accounting/I18N.py +27 -0
  7. cacao_accounting-0.0.0.dev20240815/cacao_accounting/__init__.py +210 -0
  8. cacao_accounting-0.0.0.dev20240815/cacao_accounting/__main__.py +31 -0
  9. cacao_accounting-0.0.0.dev20240815/cacao_accounting/admin/__init__.py +53 -0
  10. cacao_accounting-0.0.0.dev20240815/cacao_accounting/admin/registros/__init__.py +15 -0
  11. cacao_accounting-0.0.0.dev20240815/cacao_accounting/admin/templates/admin/modulos.html +10 -0
  12. cacao_accounting-0.0.0.dev20240815/cacao_accounting/admin/templates/admin.html +23 -0
  13. cacao_accounting-0.0.0.dev20240815/cacao_accounting/app/__init__.py +84 -0
  14. cacao_accounting-0.0.0.dev20240815/cacao_accounting/app/templates/app.html +4 -0
  15. cacao_accounting-0.0.0.dev20240815/cacao_accounting/app/templates/development.html +17 -0
  16. cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/__init__.py +130 -0
  17. cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/forms.py +38 -0
  18. cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/permisos.py +811 -0
  19. cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/registros/__init__.py +32 -0
  20. cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/roles.py +192 -0
  21. cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/templates/login.html +54 -0
  22. cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/templates/test_roles.html +226 -0
  23. cacao_accounting-0.0.0.dev20240815/cacao_accounting/bancos/__init__.py +44 -0
  24. cacao_accounting-0.0.0.dev20240815/cacao_accounting/bancos/templates/bancos.html +19 -0
  25. cacao_accounting-0.0.0.dev20240815/cacao_accounting/cli.py +43 -0
  26. cacao_accounting-0.0.0.dev20240815/cacao_accounting/compras/__init__.py +31 -0
  27. cacao_accounting-0.0.0.dev20240815/cacao_accounting/compras/templates/compras.html +19 -0
  28. cacao_accounting-0.0.0.dev20240815/cacao_accounting/config.py +163 -0
  29. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/__init__.py +620 -0
  30. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/auxiliares.py +125 -0
  31. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/ctas/__init__.py +64 -0
  32. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/ctas/catalogos/base.csv +208 -0
  33. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/forms.py +100 -0
  34. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/centro-costo.html +27 -0
  35. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/centro-costo_lista.html +109 -0
  36. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/cuenta.html +27 -0
  37. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/cuenta_lista.html +142 -0
  38. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/entidad.html +62 -0
  39. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/entidad_crear.html +72 -0
  40. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/entidad_editar.html +58 -0
  41. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/entidad_lista.html +81 -0
  42. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/moneda_lista.html +52 -0
  43. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/periodo_lista.html +66 -0
  44. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/proyecto_lista.html +74 -0
  45. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/serie_crear.html +36 -0
  46. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/serie_lista.html +101 -0
  47. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/tc_lista.html +63 -0
  48. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/unidad.html +25 -0
  49. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/unidad_crear.html +36 -0
  50. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/unidad_lista.html +68 -0
  51. cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad.html +37 -0
  52. cacao_accounting-0.0.0.dev20240815/cacao_accounting/database/__init__.py +493 -0
  53. cacao_accounting-0.0.0.dev20240815/cacao_accounting/database/helpers.py +146 -0
  54. cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/__init__.py +23 -0
  55. cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/base/__init__.py +92 -0
  56. cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/base/data.py +27 -0
  57. cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/dev/__init__.py +160 -0
  58. cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/dev/data.py +487 -0
  59. cacao_accounting-0.0.0.dev20240815/cacao_accounting/decorators.py +68 -0
  60. cacao_accounting-0.0.0.dev20240815/cacao_accounting/exceptions/__init__.py +39 -0
  61. cacao_accounting-0.0.0.dev20240815/cacao_accounting/exceptions/mensajes.py +21 -0
  62. cacao_accounting-0.0.0.dev20240815/cacao_accounting/gl/__init__.py +33 -0
  63. cacao_accounting-0.0.0.dev20240815/cacao_accounting/inventario/__init__.py +32 -0
  64. cacao_accounting-0.0.0.dev20240815/cacao_accounting/inventario/templates/inventario.html +19 -0
  65. cacao_accounting-0.0.0.dev20240815/cacao_accounting/logs.py +32 -0
  66. cacao_accounting-0.0.0.dev20240815/cacao_accounting/modulos/__init__.py +180 -0
  67. cacao_accounting-0.0.0.dev20240815/cacao_accounting/server.py +69 -0
  68. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/css/cacaoaccounting.css +3 -0
  69. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/css/dashboard.css +97 -0
  70. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/css/purecss-treeview.css +69 -0
  71. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/css/signin.css +47 -0
  72. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/manifest.json +41 -0
  73. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Cacao Accounting SVG.svg +6341 -0
  74. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Cacao Accounting-01.png +0 -0
  75. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 16px.png +0 -0
  76. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 256px.png +0 -0
  77. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 32px.png +0 -0
  78. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 48px.png +0 -0
  79. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 64px.png +0 -0
  80. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting /303/215cono SVG.svg" +6041 -0
  81. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Web/Cacao Accounting SVG.svg +6341 -0
  82. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Web/Cacao Accounting /303/215cono SVG.svg" +6041 -0
  83. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Web/Cacao Accounting-01.png +0 -0
  84. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Web/Cacao Accounting.png +0 -0
  85. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 16px.ico +0 -0
  86. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 256px.ico +0 -0
  87. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 32px.ico +0 -0
  88. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 48px.ico +0 -0
  89. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 64px.ico +0 -0
  90. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting m/303/272ltilple tama/303/261o.ico +0 -0
  91. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/brand.svg +600 -0
  92. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_accounting _logo.png +0 -0
  93. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_accounting _logo.svg +600 -0
  94. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_accounting.png +0 -0
  95. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_accounting.svg +6041 -0
  96. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_logo.svg +6341 -0
  97. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/circle-solid.svg +1 -0
  98. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-144x144.png +0 -0
  99. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-192x192.png +0 -0
  100. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-36x36.png +0 -0
  101. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-48x48.png +0 -0
  102. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-72x72.png +0 -0
  103. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-96x96.png +0 -0
  104. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-114x114.png +0 -0
  105. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-120x120.png +0 -0
  106. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-144x144.png +0 -0
  107. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-152x152.png +0 -0
  108. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-180x180.png +0 -0
  109. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-57x57.png +0 -0
  110. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-60x60.png +0 -0
  111. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-72x72.png +0 -0
  112. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-76x76.png +0 -0
  113. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-precomposed.png +0 -0
  114. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon.png +0 -0
  115. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/favicon-16x16.png +0 -0
  116. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/favicon-32x32.png +0 -0
  117. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/favicon-96x96.png +0 -0
  118. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/favicon.ico +0 -0
  119. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/ms-icon-144x144.png +0 -0
  120. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/ms-icon-150x150.png +0 -0
  121. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/ms-icon-310x310.png +0 -0
  122. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/ms-icon-70x70.png +0 -0
  123. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon-16x16.png +0 -0
  124. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon-32x32.png +0 -0
  125. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/.package-lock.json +51 -0
  126. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/cjs/enums.js +65 -0
  127. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/cjs/popper-base.js +939 -0
  128. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/cjs/popper-lite.js +1260 -0
  129. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/cjs/popper.js +1819 -0
  130. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/createPopper.js +199 -0
  131. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/contains.js +23 -0
  132. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getBoundingClientRect.js +41 -0
  133. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getClippingRect.js +70 -0
  134. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getCompositeRect.js +58 -0
  135. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getComputedStyle.js +4 -0
  136. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getDocumentElement.js +6 -0
  137. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getDocumentRect.js +29 -0
  138. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getHTMLElementScroll.js +6 -0
  139. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getLayoutRect.js +25 -0
  140. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getNodeName.js +3 -0
  141. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getNodeScroll.js +11 -0
  142. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getOffsetParent.js +69 -0
  143. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getParentNode.js +19 -0
  144. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getScrollParent.js +16 -0
  145. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getViewportRect.js +31 -0
  146. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getWindow.js +12 -0
  147. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getWindowScroll.js +10 -0
  148. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getWindowScrollBarX.js +13 -0
  149. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/instanceOf.js +23 -0
  150. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/isLayoutViewport.js +4 -0
  151. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/isScrollParent.js +10 -0
  152. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/isTableElement.js +4 -0
  153. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/listScrollParents.js +26 -0
  154. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/enums.js +31 -0
  155. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/index.js +8 -0
  156. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/applyStyles.js +84 -0
  157. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/arrow.js +90 -0
  158. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/computeStyles.js +169 -0
  159. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/eventListeners.js +49 -0
  160. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/flip.js +147 -0
  161. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/hide.js +61 -0
  162. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/index.js +9 -0
  163. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/offset.js +54 -0
  164. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/popperOffsets.js +25 -0
  165. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/preventOverflow.js +142 -0
  166. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/popper-base.js +3 -0
  167. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/popper-lite.js +11 -0
  168. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/popper.js +20 -0
  169. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/types.js +0 -0
  170. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/computeAutoPlacement.js +43 -0
  171. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/computeOffsets.js +70 -0
  172. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/debounce.js +15 -0
  173. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/detectOverflow.js +65 -0
  174. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/expandToHashMap.js +6 -0
  175. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getAltAxis.js +3 -0
  176. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getAltLen.js +3 -0
  177. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getBasePlacement.js +4 -0
  178. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getFreshSideObject.js +8 -0
  179. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getMainAxisFromPlacement.js +3 -0
  180. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getOppositePlacement.js +11 -0
  181. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getOppositeVariationPlacement.js +9 -0
  182. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getVariation.js +3 -0
  183. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/math.js +3 -0
  184. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/mergeByName.js +14 -0
  185. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/mergePaddingObject.js +4 -0
  186. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/orderModifiers.js +44 -0
  187. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/rectToClientRect.js +8 -0
  188. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/uniqueBy.js +11 -0
  189. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/userAgent.js +11 -0
  190. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/within.js +8 -0
  191. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/enums.js +71 -0
  192. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/enums.min.js +6 -0
  193. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper-base.js +945 -0
  194. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper-base.min.js +6 -0
  195. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper-lite.js +1266 -0
  196. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper-lite.min.js +6 -0
  197. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper.js +1825 -0
  198. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper.min.js +6 -0
  199. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/createPopper.js +199 -0
  200. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/contains.js +23 -0
  201. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js +41 -0
  202. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js +70 -0
  203. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js +58 -0
  204. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js +4 -0
  205. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js +6 -0
  206. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js +29 -0
  207. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js +6 -0
  208. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js +25 -0
  209. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js +3 -0
  210. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js +11 -0
  211. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js +69 -0
  212. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js +19 -0
  213. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js +16 -0
  214. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js +31 -0
  215. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getWindow.js +12 -0
  216. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js +10 -0
  217. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js +13 -0
  218. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js +23 -0
  219. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js +4 -0
  220. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js +10 -0
  221. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js +4 -0
  222. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js +26 -0
  223. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/enums.js +31 -0
  224. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/index.js +8 -0
  225. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/applyStyles.js +84 -0
  226. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/arrow.js +90 -0
  227. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/computeStyles.js +169 -0
  228. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/eventListeners.js +49 -0
  229. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/flip.js +147 -0
  230. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/hide.js +61 -0
  231. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/index.js +9 -0
  232. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/offset.js +54 -0
  233. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js +25 -0
  234. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js +142 -0
  235. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/popper-base.js +3 -0
  236. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/popper-lite.js +11 -0
  237. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/popper.js +20 -0
  238. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/types.js +0 -0
  239. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js +43 -0
  240. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/computeOffsets.js +70 -0
  241. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/debounce.js +15 -0
  242. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/detectOverflow.js +65 -0
  243. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/expandToHashMap.js +6 -0
  244. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getAltAxis.js +3 -0
  245. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getAltLen.js +3 -0
  246. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getBasePlacement.js +4 -0
  247. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js +8 -0
  248. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js +3 -0
  249. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js +11 -0
  250. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js +9 -0
  251. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getVariation.js +3 -0
  252. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/math.js +3 -0
  253. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/mergeByName.js +14 -0
  254. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js +4 -0
  255. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/orderModifiers.js +44 -0
  256. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/rectToClientRect.js +8 -0
  257. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/uniqueBy.js +11 -0
  258. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/userAgent.js +11 -0
  259. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/within.js +8 -0
  260. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/package.json +119 -0
  261. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-grid.css +4085 -0
  262. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-grid.min.css +6 -0
  263. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.css +4084 -0
  264. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.min.css +6 -0
  265. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-reboot.css +597 -0
  266. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-reboot.min.css +6 -0
  267. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.css +594 -0
  268. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.min.css +6 -0
  269. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-utilities.css +5402 -0
  270. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-utilities.min.css +6 -0
  271. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.css +5393 -0
  272. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.min.css +6 -0
  273. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap.css +12057 -0
  274. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap.min.css +6 -0
  275. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap.rtl.css +12030 -0
  276. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap.rtl.min.css +6 -0
  277. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.bundle.js +6314 -0
  278. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js +7 -0
  279. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.esm.js +4447 -0
  280. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.esm.min.js +7 -0
  281. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.js +4494 -0
  282. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.min.js +7 -0
  283. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/alert.js +90 -0
  284. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/base-component.js +84 -0
  285. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/button.js +79 -0
  286. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/carousel.js +388 -0
  287. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/collapse.js +249 -0
  288. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dom/data.js +63 -0
  289. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dom/event-handler.js +237 -0
  290. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dom/manipulator.js +72 -0
  291. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dom/selector-engine.js +104 -0
  292. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dropdown.js +402 -0
  293. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/modal.js +320 -0
  294. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/offcanvas.js +246 -0
  295. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/popover.js +96 -0
  296. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/scrollspy.js +275 -0
  297. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/tab.js +285 -0
  298. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/toast.js +199 -0
  299. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/tooltip.js +546 -0
  300. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/backdrop.js +139 -0
  301. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/component-functions.js +42 -0
  302. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/config.js +68 -0
  303. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/focustrap.js +113 -0
  304. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/index.js +281 -0
  305. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/sanitizer.js +114 -0
  306. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/scrollbar.js +113 -0
  307. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/swipe.js +135 -0
  308. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/template-factory.js +151 -0
  309. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/index.esm.js +19 -0
  310. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/index.umd.js +34 -0
  311. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/alert.js +87 -0
  312. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/base-component.js +85 -0
  313. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/button.js +72 -0
  314. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/carousel.js +474 -0
  315. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/collapse.js +297 -0
  316. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dom/data.js +55 -0
  317. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dom/event-handler.js +317 -0
  318. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dom/manipulator.js +71 -0
  319. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dom/selector-engine.js +126 -0
  320. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dropdown.js +455 -0
  321. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/modal.js +378 -0
  322. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/offcanvas.js +282 -0
  323. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/popover.js +97 -0
  324. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/scrollspy.js +296 -0
  325. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/tab.js +315 -0
  326. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/toast.js +225 -0
  327. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/tooltip.js +633 -0
  328. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/backdrop.js +151 -0
  329. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/component-functions.js +35 -0
  330. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/config.js +65 -0
  331. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/focustrap.js +115 -0
  332. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/index.js +306 -0
  333. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/sanitizer.js +117 -0
  334. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/scrollbar.js +114 -0
  335. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/swipe.js +146 -0
  336. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/template-factory.js +160 -0
  337. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/package.json +184 -0
  338. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/bootstrap-icons.svg +1 -0
  339. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/bootstrap-icons.css +2078 -0
  340. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/bootstrap-icons.json +2052 -0
  341. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/bootstrap-icons.min.css +5 -0
  342. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff +0 -0
  343. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff2 +0 -0
  344. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/0-circle-fill.svg +4 -0
  345. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/0-circle.svg +4 -0
  346. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/0-square-fill.svg +4 -0
  347. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/0-square.svg +4 -0
  348. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/1-circle-fill.svg +3 -0
  349. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/1-circle.svg +3 -0
  350. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/1-square-fill.svg +3 -0
  351. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/1-square.svg +4 -0
  352. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/123.svg +3 -0
  353. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/2-circle-fill.svg +3 -0
  354. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/2-circle.svg +3 -0
  355. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/2-square-fill.svg +3 -0
  356. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/2-square.svg +4 -0
  357. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/3-circle-fill.svg +3 -0
  358. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/3-circle.svg +4 -0
  359. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/3-square-fill.svg +3 -0
  360. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/3-square.svg +4 -0
  361. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/4-circle-fill.svg +3 -0
  362. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/4-circle.svg +4 -0
  363. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/4-square-fill.svg +4 -0
  364. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/4-square.svg +4 -0
  365. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/5-circle-fill.svg +3 -0
  366. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/5-circle.svg +3 -0
  367. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/5-square-fill.svg +3 -0
  368. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/5-square.svg +4 -0
  369. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/6-circle-fill.svg +3 -0
  370. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/6-circle.svg +3 -0
  371. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/6-square-fill.svg +4 -0
  372. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/6-square.svg +4 -0
  373. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/7-circle-fill.svg +3 -0
  374. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/7-circle.svg +3 -0
  375. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/7-square-fill.svg +3 -0
  376. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/7-square.svg +4 -0
  377. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/8-circle-fill.svg +3 -0
  378. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/8-circle.svg +3 -0
  379. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/8-square-fill.svg +4 -0
  380. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/8-square.svg +4 -0
  381. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/9-circle-fill.svg +3 -0
  382. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/9-circle.svg +3 -0
  383. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/9-square-fill.svg +4 -0
  384. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/9-square.svg +4 -0
  385. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/activity.svg +3 -0
  386. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/airplane-engines-fill.svg +3 -0
  387. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/airplane-engines.svg +3 -0
  388. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/airplane-fill.svg +3 -0
  389. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/airplane.svg +3 -0
  390. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alarm-fill.svg +3 -0
  391. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alarm.svg +4 -0
  392. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alexa.svg +3 -0
  393. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-bottom.svg +4 -0
  394. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-center.svg +3 -0
  395. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-end.svg +4 -0
  396. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-middle.svg +3 -0
  397. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-start.svg +4 -0
  398. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-top.svg +4 -0
  399. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alipay.svg +4 -0
  400. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alphabet-uppercase.svg +3 -0
  401. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alphabet.svg +3 -0
  402. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alt.svg +3 -0
  403. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/amazon.svg +4 -0
  404. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/amd.svg +3 -0
  405. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/android.svg +3 -0
  406. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/android2.svg +3 -0
  407. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/app-indicator.svg +4 -0
  408. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/app.svg +3 -0
  409. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/apple.svg +4 -0
  410. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/archive-fill.svg +3 -0
  411. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/archive.svg +3 -0
  412. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-90deg-down.svg +3 -0
  413. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-90deg-left.svg +3 -0
  414. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-90deg-right.svg +3 -0
  415. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-90deg-up.svg +3 -0
  416. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-bar-down.svg +3 -0
  417. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-bar-left.svg +3 -0
  418. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-bar-right.svg +3 -0
  419. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-bar-up.svg +3 -0
  420. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-clockwise.svg +4 -0
  421. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-counterclockwise.svg +4 -0
  422. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-circle-fill.svg +3 -0
  423. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-circle.svg +3 -0
  424. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left-circle-fill.svg +3 -0
  425. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left-circle.svg +3 -0
  426. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left-square-fill.svg +3 -0
  427. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left-square.svg +3 -0
  428. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left.svg +3 -0
  429. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right-circle-fill.svg +3 -0
  430. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right-circle.svg +3 -0
  431. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right-square-fill.svg +3 -0
  432. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right-square.svg +3 -0
  433. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right.svg +3 -0
  434. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-short.svg +3 -0
  435. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-square-fill.svg +3 -0
  436. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-square.svg +3 -0
  437. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-up.svg +3 -0
  438. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down.svg +3 -0
  439. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-circle-fill.svg +3 -0
  440. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-circle.svg +3 -0
  441. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-right.svg +3 -0
  442. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-short.svg +3 -0
  443. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-square-fill.svg +3 -0
  444. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-square.svg +3 -0
  445. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left.svg +3 -0
  446. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-repeat.svg +4 -0
  447. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-return-left.svg +3 -0
  448. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-return-right.svg +3 -0
  449. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-circle-fill.svg +3 -0
  450. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-circle.svg +3 -0
  451. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-short.svg +3 -0
  452. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-square-fill.svg +3 -0
  453. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-square.svg +3 -0
  454. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right.svg +3 -0
  455. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-through-heart-fill.svg +3 -0
  456. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-through-heart.svg +3 -0
  457. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-circle-fill.svg +3 -0
  458. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-circle.svg +3 -0
  459. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left-circle-fill.svg +3 -0
  460. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left-circle.svg +3 -0
  461. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left-square-fill.svg +3 -0
  462. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left-square.svg +3 -0
  463. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left.svg +3 -0
  464. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right-circle-fill.svg +3 -0
  465. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right-circle.svg +3 -0
  466. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right-square-fill.svg +3 -0
  467. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right-square.svg +3 -0
  468. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right.svg +3 -0
  469. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-short.svg +3 -0
  470. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-square-fill.svg +3 -0
  471. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-square.svg +3 -0
  472. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up.svg +3 -0
  473. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-angle-contract.svg +3 -0
  474. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-angle-expand.svg +3 -0
  475. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-collapse-vertical.svg +3 -0
  476. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-collapse.svg +3 -0
  477. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-expand-vertical.svg +3 -0
  478. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-expand.svg +3 -0
  479. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-fullscreen.svg +3 -0
  480. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-move.svg +3 -0
  481. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-vertical.svg +3 -0
  482. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows.svg +3 -0
  483. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/aspect-ratio-fill.svg +3 -0
  484. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/aspect-ratio.svg +4 -0
  485. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/asterisk.svg +3 -0
  486. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/at.svg +3 -0
  487. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/award-fill.svg +4 -0
  488. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/award.svg +4 -0
  489. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/back.svg +3 -0
  490. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack-fill.svg +4 -0
  491. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack.svg +4 -0
  492. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack2-fill.svg +4 -0
  493. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack2.svg +5 -0
  494. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack3-fill.svg +4 -0
  495. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack3.svg +4 -0
  496. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack4-fill.svg +4 -0
  497. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack4.svg +4 -0
  498. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backspace-fill.svg +3 -0
  499. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backspace-reverse-fill.svg +3 -0
  500. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backspace-reverse.svg +4 -0
  501. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backspace.svg +4 -0
  502. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-3d-fill.svg +4 -0
  503. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-3d.svg +4 -0
  504. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-4k-fill.svg +4 -0
  505. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-4k.svg +4 -0
  506. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-8k-fill.svg +4 -0
  507. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-8k.svg +4 -0
  508. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-ad-fill.svg +4 -0
  509. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-ad.svg +4 -0
  510. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-ar-fill.svg +4 -0
  511. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-ar.svg +4 -0
  512. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-cc-fill.svg +3 -0
  513. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-cc.svg +4 -0
  514. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-hd-fill.svg +4 -0
  515. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-hd.svg +4 -0
  516. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-sd-fill.svg +4 -0
  517. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-sd.svg +3 -0
  518. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-tm-fill.svg +3 -0
  519. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-tm.svg +4 -0
  520. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-vo-fill.svg +4 -0
  521. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-vo.svg +4 -0
  522. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-vr-fill.svg +4 -0
  523. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-vr.svg +4 -0
  524. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-wc-fill.svg +3 -0
  525. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-wc.svg +4 -0
  526. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-check-fill.svg +3 -0
  527. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-check.svg +4 -0
  528. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-dash-fill.svg +3 -0
  529. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-dash.svg +4 -0
  530. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-fill.svg +3 -0
  531. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-heart-fill.svg +3 -0
  532. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-heart.svg +3 -0
  533. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-plus-fill.svg +3 -0
  534. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-plus.svg +4 -0
  535. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-x-fill.svg +3 -0
  536. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-x.svg +4 -0
  537. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag.svg +3 -0
  538. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/balloon-fill.svg +3 -0
  539. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/balloon-heart-fill.svg +3 -0
  540. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/balloon-heart.svg +3 -0
  541. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/balloon.svg +3 -0
  542. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ban-fill.svg +3 -0
  543. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ban.svg +3 -0
  544. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bandaid-fill.svg +3 -0
  545. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bandaid.svg +4 -0
  546. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bank.svg +3 -0
  547. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bank2.svg +3 -0
  548. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart-fill.svg +3 -0
  549. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart-line-fill.svg +3 -0
  550. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart-line.svg +3 -0
  551. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart-steps.svg +3 -0
  552. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart.svg +3 -0
  553. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket-fill.svg +3 -0
  554. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket.svg +3 -0
  555. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket2-fill.svg +3 -0
  556. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket2.svg +4 -0
  557. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket3-fill.svg +3 -0
  558. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket3.svg +3 -0
  559. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/battery-charging.svg +6 -0
  560. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/battery-full.svg +4 -0
  561. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/battery-half.svg +4 -0
  562. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/battery.svg +3 -0
  563. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/behance.svg +3 -0
  564. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bell-fill.svg +3 -0
  565. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bell-slash-fill.svg +3 -0
  566. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bell-slash.svg +3 -0
  567. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bell.svg +3 -0
  568. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bezier.svg +4 -0
  569. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bezier2.svg +3 -0
  570. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bicycle.svg +3 -0
  571. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bing.svg +5 -0
  572. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/binoculars-fill.svg +3 -0
  573. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/binoculars.svg +3 -0
  574. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/blockquote-left.svg +3 -0
  575. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/blockquote-right.svg +3 -0
  576. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bluetooth.svg +3 -0
  577. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/body-text.svg +3 -0
  578. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/book-fill.svg +3 -0
  579. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/book-half.svg +3 -0
  580. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/book.svg +3 -0
  581. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-check-fill.svg +3 -0
  582. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-check.svg +4 -0
  583. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-dash-fill.svg +3 -0
  584. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-dash.svg +4 -0
  585. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-fill.svg +3 -0
  586. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-heart-fill.svg +3 -0
  587. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-heart.svg +4 -0
  588. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-plus-fill.svg +3 -0
  589. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-plus.svg +4 -0
  590. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-star-fill.svg +3 -0
  591. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-star.svg +4 -0
  592. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-x-fill.svg +3 -0
  593. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-x.svg +4 -0
  594. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark.svg +3 -0
  595. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmarks-fill.svg +4 -0
  596. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmarks.svg +4 -0
  597. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookshelf.svg +3 -0
  598. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/boombox-fill.svg +4 -0
  599. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/boombox.svg +6 -0
  600. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bootstrap-fill.svg +4 -0
  601. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bootstrap-reboot.svg +4 -0
  602. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bootstrap.svg +4 -0
  603. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-all.svg +3 -0
  604. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-bottom.svg +3 -0
  605. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-center.svg +3 -0
  606. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-inner.svg +5 -0
  607. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-left.svg +3 -0
  608. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-middle.svg +3 -0
  609. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-outer.svg +4 -0
  610. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-right.svg +3 -0
  611. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-style.svg +3 -0
  612. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-top.svg +3 -0
  613. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-width.svg +3 -0
  614. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border.svg +3 -0
  615. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bounding-box-circles.svg +3 -0
  616. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bounding-box.svg +3 -0
  617. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-down-left.svg +4 -0
  618. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-down-right.svg +4 -0
  619. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-down.svg +4 -0
  620. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-down-left.svg +4 -0
  621. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-down-right.svg +4 -0
  622. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-down.svg +4 -0
  623. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-left.svg +4 -0
  624. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-right.svg +4 -0
  625. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-up-left.svg +4 -0
  626. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-up-right.svg +4 -0
  627. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-up.svg +4 -0
  628. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-left.svg +4 -0
  629. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-right.svg +4 -0
  630. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-up-left.svg +4 -0
  631. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-up-right.svg +4 -0
  632. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-up.svg +4 -0
  633. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-fill.svg +3 -0
  634. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-seam-fill.svg +3 -0
  635. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-seam.svg +3 -0
  636. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box.svg +3 -0
  637. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box2-fill.svg +3 -0
  638. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box2-heart-fill.svg +3 -0
  639. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box2-heart.svg +4 -0
  640. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box2.svg +3 -0
  641. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/boxes.svg +3 -0
  642. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/braces-asterisk.svg +3 -0
  643. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/braces.svg +3 -0
  644. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bricks.svg +3 -0
  645. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/briefcase-fill.svg +4 -0
  646. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/briefcase.svg +3 -0
  647. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-alt-high-fill.svg +3 -0
  648. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-alt-high.svg +3 -0
  649. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-alt-low-fill.svg +3 -0
  650. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-alt-low.svg +3 -0
  651. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-high-fill.svg +3 -0
  652. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-high.svg +3 -0
  653. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-low-fill.svg +3 -0
  654. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-low.svg +3 -0
  655. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brilliance.svg +3 -0
  656. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/broadcast-pin.svg +3 -0
  657. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/broadcast.svg +3 -0
  658. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/browser-chrome.svg +3 -0
  659. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/browser-edge.svg +5 -0
  660. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/browser-firefox.svg +3 -0
  661. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/browser-safari.svg +3 -0
  662. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brush-fill.svg +3 -0
  663. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brush.svg +3 -0
  664. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bucket-fill.svg +3 -0
  665. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bucket.svg +3 -0
  666. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bug-fill.svg +4 -0
  667. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bug.svg +3 -0
  668. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-add.svg +5 -0
  669. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-check.svg +5 -0
  670. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-dash.svg +5 -0
  671. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-down.svg +5 -0
  672. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-exclamation.svg +4 -0
  673. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-add.svg +4 -0
  674. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-check.svg +4 -0
  675. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-dash.svg +4 -0
  676. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-down.svg +4 -0
  677. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-exclamation.svg +4 -0
  678. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-gear.svg +4 -0
  679. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-lock.svg +4 -0
  680. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-slash.svg +4 -0
  681. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-up.svg +4 -0
  682. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-x.svg +4 -0
  683. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill.svg +3 -0
  684. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-gear.svg +4 -0
  685. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-lock.svg +4 -0
  686. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-slash.svg +5 -0
  687. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-up.svg +5 -0
  688. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-x.svg +4 -0
  689. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building.svg +4 -0
  690. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/buildings-fill.svg +3 -0
  691. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/buildings.svg +4 -0
  692. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bullseye.svg +6 -0
  693. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bus-front-fill.svg +3 -0
  694. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bus-front.svg +4 -0
  695. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/c-circle-fill.svg +3 -0
  696. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/c-circle.svg +3 -0
  697. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/c-square-fill.svg +3 -0
  698. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/c-square.svg +4 -0
  699. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cake-fill.svg +3 -0
  700. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cake.svg +3 -0
  701. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cake2-fill.svg +4 -0
  702. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cake2.svg +3 -0
  703. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calculator-fill.svg +3 -0
  704. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calculator.svg +4 -0
  705. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-check-fill.svg +3 -0
  706. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-check.svg +4 -0
  707. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-date-fill.svg +4 -0
  708. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-date.svg +4 -0
  709. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-day-fill.svg +3 -0
  710. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-day.svg +4 -0
  711. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-event-fill.svg +3 -0
  712. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-event.svg +4 -0
  713. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-fill.svg +3 -0
  714. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-heart-fill.svg +3 -0
  715. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-heart.svg +3 -0
  716. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-minus-fill.svg +3 -0
  717. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-minus.svg +4 -0
  718. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-month-fill.svg +4 -0
  719. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-month.svg +4 -0
  720. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-plus-fill.svg +3 -0
  721. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-plus.svg +4 -0
  722. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-range-fill.svg +3 -0
  723. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-range.svg +4 -0
  724. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-week-fill.svg +3 -0
  725. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-week.svg +4 -0
  726. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-x-fill.svg +3 -0
  727. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-x.svg +4 -0
  728. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar.svg +3 -0
  729. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-check-fill.svg +3 -0
  730. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-check.svg +5 -0
  731. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-date-fill.svg +4 -0
  732. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-date.svg +5 -0
  733. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-day-fill.svg +3 -0
  734. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-day.svg +5 -0
  735. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-event-fill.svg +3 -0
  736. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-event.svg +5 -0
  737. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-fill.svg +3 -0
  738. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-heart-fill.svg +3 -0
  739. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-heart.svg +3 -0
  740. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-minus-fill.svg +3 -0
  741. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-minus.svg +5 -0
  742. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-month-fill.svg +4 -0
  743. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-month.svg +5 -0
  744. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-plus-fill.svg +3 -0
  745. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-plus.svg +4 -0
  746. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-range-fill.svg +3 -0
  747. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-range.svg +4 -0
  748. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-week-fill.svg +3 -0
  749. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-week.svg +4 -0
  750. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-x-fill.svg +3 -0
  751. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-x.svg +5 -0
  752. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2.svg +4 -0
  753. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-event-fill.svg +3 -0
  754. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-event.svg +4 -0
  755. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-fill.svg +3 -0
  756. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-range-fill.svg +3 -0
  757. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-range.svg +4 -0
  758. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-week-fill.svg +3 -0
  759. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-week.svg +4 -0
  760. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3.svg +4 -0
  761. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar4-event.svg +4 -0
  762. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar4-range.svg +4 -0
  763. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar4-week.svg +4 -0
  764. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar4.svg +3 -0
  765. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-fill.svg +4 -0
  766. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-reels-fill.svg +5 -0
  767. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-reels.svg +5 -0
  768. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-video-fill.svg +3 -0
  769. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-video-off-fill.svg +3 -0
  770. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-video-off.svg +3 -0
  771. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-video.svg +3 -0
  772. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera.svg +4 -0
  773. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera2.svg +4 -0
  774. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/capslock-fill.svg +3 -0
  775. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/capslock.svg +3 -0
  776. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/capsule-pill.svg +3 -0
  777. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/capsule.svg +3 -0
  778. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/car-front-fill.svg +3 -0
  779. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/car-front.svg +4 -0
  780. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-checklist.svg +4 -0
  781. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-heading.svg +4 -0
  782. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-image.svg +4 -0
  783. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-list.svg +4 -0
  784. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-text.svg +4 -0
  785. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-down-fill.svg +3 -0
  786. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-down-square-fill.svg +3 -0
  787. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-down-square.svg +4 -0
  788. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-down.svg +3 -0
  789. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-left-fill.svg +3 -0
  790. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-left-square-fill.svg +3 -0
  791. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-left-square.svg +4 -0
  792. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-left.svg +3 -0
  793. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-right-fill.svg +3 -0
  794. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-right-square-fill.svg +3 -0
  795. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-right-square.svg +4 -0
  796. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-right.svg +3 -0
  797. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-up-fill.svg +3 -0
  798. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-up-square-fill.svg +3 -0
  799. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-up-square.svg +4 -0
  800. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-up.svg +3 -0
  801. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-check-fill.svg +3 -0
  802. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-check.svg +4 -0
  803. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-dash-fill.svg +3 -0
  804. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-dash.svg +4 -0
  805. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-fill.svg +3 -0
  806. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-plus-fill.svg +3 -0
  807. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-plus.svg +4 -0
  808. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-x-fill.svg +3 -0
  809. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-x.svg +4 -0
  810. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart.svg +3 -0
  811. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart2.svg +3 -0
  812. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart3.svg +3 -0
  813. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart4.svg +3 -0
  814. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cash-coin.svg +6 -0
  815. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cash-stack.svg +4 -0
  816. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cash.svg +4 -0
  817. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cassette-fill.svg +4 -0
  818. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cassette.svg +4 -0
  819. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cast.svg +4 -0
  820. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cc-circle-fill.svg +3 -0
  821. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cc-circle.svg +3 -0
  822. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cc-square-fill.svg +3 -0
  823. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cc-square.svg +4 -0
  824. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-dots-fill.svg +3 -0
  825. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-dots.svg +4 -0
  826. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-fill.svg +3 -0
  827. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-heart-fill.svg +3 -0
  828. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-heart.svg +3 -0
  829. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-dots-fill.svg +3 -0
  830. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-dots.svg +4 -0
  831. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-fill.svg +3 -0
  832. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-heart-fill.svg +3 -0
  833. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-heart.svg +4 -0
  834. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-quote-fill.svg +3 -0
  835. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-quote.svg +4 -0
  836. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-text-fill.svg +3 -0
  837. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-text.svg +4 -0
  838. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left.svg +3 -0
  839. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-quote-fill.svg +3 -0
  840. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-quote.svg +4 -0
  841. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-dots-fill.svg +3 -0
  842. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-dots.svg +4 -0
  843. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-fill.svg +3 -0
  844. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-heart-fill.svg +3 -0
  845. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-heart.svg +4 -0
  846. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-quote-fill.svg +3 -0
  847. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-quote.svg +4 -0
  848. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-text-fill.svg +3 -0
  849. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-text.svg +4 -0
  850. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right.svg +3 -0
  851. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-dots-fill.svg +3 -0
  852. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-dots.svg +4 -0
  853. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-fill.svg +3 -0
  854. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-heart-fill.svg +3 -0
  855. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-heart.svg +4 -0
  856. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-quote-fill.svg +3 -0
  857. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-quote.svg +4 -0
  858. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-text-fill.svg +3 -0
  859. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-text.svg +4 -0
  860. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square.svg +3 -0
  861. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-text-fill.svg +3 -0
  862. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-text.svg +4 -0
  863. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat.svg +3 -0
  864. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-all.svg +3 -0
  865. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-circle-fill.svg +3 -0
  866. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-circle.svg +4 -0
  867. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-lg.svg +3 -0
  868. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-square-fill.svg +3 -0
  869. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-square.svg +4 -0
  870. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check.svg +3 -0
  871. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check2-all.svg +4 -0
  872. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check2-circle.svg +4 -0
  873. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check2-square.svg +4 -0
  874. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check2.svg +3 -0
  875. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-contract.svg +3 -0
  876. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-down.svg +3 -0
  877. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-expand.svg +3 -0
  878. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-left.svg +3 -0
  879. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-right.svg +3 -0
  880. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-up.svg +3 -0
  881. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-compact-down.svg +3 -0
  882. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-compact-left.svg +3 -0
  883. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-compact-right.svg +3 -0
  884. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-compact-up.svg +3 -0
  885. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-contract.svg +3 -0
  886. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-double-down.svg +4 -0
  887. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-double-left.svg +4 -0
  888. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-double-right.svg +4 -0
  889. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-double-up.svg +4 -0
  890. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-down.svg +3 -0
  891. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-expand.svg +3 -0
  892. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-left.svg +3 -0
  893. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-right.svg +3 -0
  894. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-up.svg +3 -0
  895. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/circle-fill.svg +3 -0
  896. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/circle-half.svg +3 -0
  897. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/circle-square.svg +4 -0
  898. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/circle.svg +3 -0
  899. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-check-fill.svg +4 -0
  900. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-check.svg +5 -0
  901. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-data-fill.svg +4 -0
  902. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-data.svg +5 -0
  903. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-fill.svg +3 -0
  904. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-heart-fill.svg +4 -0
  905. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-heart.svg +5 -0
  906. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-minus-fill.svg +4 -0
  907. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-minus.svg +5 -0
  908. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-plus-fill.svg +4 -0
  909. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-plus.svg +5 -0
  910. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-pulse.svg +3 -0
  911. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-x-fill.svg +4 -0
  912. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-x.svg +5 -0
  913. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard.svg +4 -0
  914. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-check-fill.svg +4 -0
  915. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-check.svg +5 -0
  916. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-data-fill.svg +4 -0
  917. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-data.svg +5 -0
  918. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-fill.svg +4 -0
  919. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-heart-fill.svg +4 -0
  920. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-heart.svg +5 -0
  921. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-minus-fill.svg +4 -0
  922. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-minus.svg +5 -0
  923. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-plus-fill.svg +4 -0
  924. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-plus.svg +5 -0
  925. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-pulse-fill.svg +4 -0
  926. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-pulse.svg +5 -0
  927. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-x-fill.svg +4 -0
  928. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-x.svg +5 -0
  929. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2.svg +4 -0
  930. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clock-fill.svg +3 -0
  931. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clock-history.svg +5 -0
  932. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clock.svg +4 -0
  933. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-arrow-down-fill.svg +3 -0
  934. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-arrow-down.svg +4 -0
  935. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-arrow-up-fill.svg +3 -0
  936. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-arrow-up.svg +4 -0
  937. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-check-fill.svg +3 -0
  938. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-check.svg +4 -0
  939. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-download-fill.svg +3 -0
  940. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-download.svg +4 -0
  941. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-drizzle-fill.svg +3 -0
  942. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-drizzle.svg +3 -0
  943. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fill.svg +3 -0
  944. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fog-fill.svg +3 -0
  945. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fog.svg +3 -0
  946. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fog2-fill.svg +3 -0
  947. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fog2.svg +3 -0
  948. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-hail-fill.svg +3 -0
  949. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-hail.svg +3 -0
  950. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-haze-fill.svg +3 -0
  951. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-haze.svg +3 -0
  952. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-haze2-fill.svg +3 -0
  953. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-haze2.svg +3 -0
  954. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-lightning-fill.svg +3 -0
  955. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-lightning-rain-fill.svg +3 -0
  956. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-lightning-rain.svg +3 -0
  957. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-lightning.svg +3 -0
  958. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-minus-fill.svg +3 -0
  959. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-minus.svg +4 -0
  960. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-moon-fill.svg +4 -0
  961. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-moon.svg +4 -0
  962. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-plus-fill.svg +3 -0
  963. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-plus.svg +4 -0
  964. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-rain-fill.svg +3 -0
  965. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-rain-heavy-fill.svg +3 -0
  966. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-rain-heavy.svg +3 -0
  967. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-rain.svg +3 -0
  968. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-slash-fill.svg +3 -0
  969. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-slash.svg +4 -0
  970. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-sleet-fill.svg +3 -0
  971. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-sleet.svg +3 -0
  972. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-snow-fill.svg +3 -0
  973. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-snow.svg +3 -0
  974. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-sun-fill.svg +4 -0
  975. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-sun.svg +4 -0
  976. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-upload-fill.svg +3 -0
  977. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-upload.svg +4 -0
  978. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud.svg +3 -0
  979. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clouds-fill.svg +4 -0
  980. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clouds.svg +4 -0
  981. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloudy-fill.svg +3 -0
  982. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloudy.svg +3 -0
  983. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/code-slash.svg +3 -0
  984. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/code-square.svg +4 -0
  985. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/code.svg +3 -0
  986. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/coin.svg +5 -0
  987. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/collection-fill.svg +3 -0
  988. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/collection-play-fill.svg +3 -0
  989. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/collection-play.svg +4 -0
  990. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/collection.svg +3 -0
  991. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/columns-gap.svg +3 -0
  992. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/columns.svg +3 -0
  993. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/command.svg +3 -0
  994. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/compass-fill.svg +3 -0
  995. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/compass.svg +4 -0
  996. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cone-striped.svg +3 -0
  997. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cone.svg +3 -0
  998. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/controller.svg +4 -0
  999. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cookie.svg +4 -0
  1000. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/copy.svg +3 -0
  1001. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cpu-fill.svg +4 -0
  1002. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cpu.svg +3 -0
  1003. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-2-back-fill.svg +3 -0
  1004. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-2-back.svg +4 -0
  1005. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-2-front-fill.svg +3 -0
  1006. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-2-front.svg +4 -0
  1007. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-fill.svg +3 -0
  1008. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card.svg +4 -0
  1009. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/crop.svg +3 -0
  1010. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/crosshair.svg +3 -0
  1011. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/crosshair2.svg +3 -0
  1012. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup-fill.svg +3 -0
  1013. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup-hot-fill.svg +4 -0
  1014. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup-hot.svg +4 -0
  1015. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup-straw.svg +3 -0
  1016. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup.svg +3 -0
  1017. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-bitcoin.svg +3 -0
  1018. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-dollar.svg +3 -0
  1019. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-euro.svg +3 -0
  1020. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-exchange.svg +3 -0
  1021. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-pound.svg +3 -0
  1022. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-rupee.svg +3 -0
  1023. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-yen.svg +3 -0
  1024. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cursor-fill.svg +3 -0
  1025. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cursor-text.svg +3 -0
  1026. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cursor.svg +3 -0
  1027. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-circle-dotted.svg +3 -0
  1028. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-circle-fill.svg +3 -0
  1029. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-circle.svg +4 -0
  1030. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-lg.svg +3 -0
  1031. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-square-dotted.svg +3 -0
  1032. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-square-fill.svg +3 -0
  1033. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-square.svg +4 -0
  1034. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash.svg +3 -0
  1035. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-add.svg +4 -0
  1036. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-check.svg +4 -0
  1037. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-dash.svg +4 -0
  1038. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-down.svg +4 -0
  1039. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-exclamation.svg +4 -0
  1040. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-add.svg +4 -0
  1041. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-check.svg +4 -0
  1042. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-dash.svg +4 -0
  1043. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-down.svg +4 -0
  1044. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-exclamation.svg +5 -0
  1045. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-gear.svg +4 -0
  1046. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-lock.svg +5 -0
  1047. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-slash.svg +4 -0
  1048. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-up.svg +4 -0
  1049. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-x.svg +5 -0
  1050. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill.svg +6 -0
  1051. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-gear.svg +4 -0
  1052. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-lock.svg +4 -0
  1053. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-slash.svg +4 -0
  1054. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-up.svg +4 -0
  1055. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-x.svg +4 -0
  1056. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database.svg +3 -0
  1057. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/device-hdd-fill.svg +4 -0
  1058. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/device-hdd.svg +5 -0
  1059. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/device-ssd-fill.svg +4 -0
  1060. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/device-ssd.svg +4 -0
  1061. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diagram-2-fill.svg +3 -0
  1062. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diagram-2.svg +3 -0
  1063. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diagram-3-fill.svg +3 -0
  1064. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diagram-3.svg +3 -0
  1065. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diamond-fill.svg +3 -0
  1066. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diamond-half.svg +3 -0
  1067. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diamond.svg +3 -0
  1068. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-1-fill.svg +3 -0
  1069. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-1.svg +4 -0
  1070. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-2-fill.svg +3 -0
  1071. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-2.svg +4 -0
  1072. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-3-fill.svg +3 -0
  1073. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-3.svg +4 -0
  1074. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-4-fill.svg +3 -0
  1075. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-4.svg +4 -0
  1076. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-5-fill.svg +3 -0
  1077. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-5.svg +4 -0
  1078. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-6-fill.svg +3 -0
  1079. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-6.svg +4 -0
  1080. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/disc-fill.svg +3 -0
  1081. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/disc.svg +4 -0
  1082. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/discord.svg +3 -0
  1083. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/display-fill.svg +3 -0
  1084. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/display.svg +3 -0
  1085. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/displayport-fill.svg +3 -0
  1086. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/displayport.svg +4 -0
  1087. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/distribute-horizontal.svg +4 -0
  1088. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/distribute-vertical.svg +4 -0
  1089. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/door-closed-fill.svg +3 -0
  1090. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/door-closed.svg +4 -0
  1091. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/door-open-fill.svg +3 -0
  1092. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/door-open.svg +4 -0
  1093. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dot.svg +3 -0
  1094. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/download.svg +4 -0
  1095. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dpad-fill.svg +3 -0
  1096. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dpad.svg +4 -0
  1097. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dribbble.svg +3 -0
  1098. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dropbox.svg +3 -0
  1099. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/droplet-fill.svg +3 -0
  1100. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/droplet-half.svg +4 -0
  1101. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/droplet.svg +4 -0
  1102. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/duffle-fill.svg +3 -0
  1103. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/duffle.svg +4 -0
  1104. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ear-fill.svg +3 -0
  1105. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ear.svg +3 -0
  1106. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/earbuds.svg +3 -0
  1107. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel-fill.svg +3 -0
  1108. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel.svg +3 -0
  1109. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel2-fill.svg +4 -0
  1110. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel2.svg +3 -0
  1111. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel3-fill.svg +3 -0
  1112. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel3.svg +3 -0
  1113. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/egg-fill.svg +3 -0
  1114. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/egg-fried.svg +4 -0
  1115. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/egg.svg +3 -0
  1116. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eject-fill.svg +3 -0
  1117. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eject.svg +3 -0
  1118. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-angry-fill.svg +3 -0
  1119. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-angry.svg +4 -0
  1120. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-astonished-fill.svg +3 -0
  1121. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-astonished.svg +4 -0
  1122. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-dizzy-fill.svg +3 -0
  1123. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-dizzy.svg +4 -0
  1124. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-expressionless-fill.svg +3 -0
  1125. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-expressionless.svg +4 -0
  1126. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-frown-fill.svg +3 -0
  1127. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-frown.svg +4 -0
  1128. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-grimace-fill.svg +3 -0
  1129. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-grimace.svg +4 -0
  1130. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-grin-fill.svg +3 -0
  1131. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-grin.svg +4 -0
  1132. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-heart-eyes-fill.svg +3 -0
  1133. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-heart-eyes.svg +4 -0
  1134. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-kiss-fill.svg +3 -0
  1135. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-kiss.svg +3 -0
  1136. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-laughing-fill.svg +3 -0
  1137. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-laughing.svg +4 -0
  1138. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-neutral-fill.svg +3 -0
  1139. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-neutral.svg +4 -0
  1140. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-smile-fill.svg +3 -0
  1141. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-smile-upside-down-fill.svg +3 -0
  1142. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-smile-upside-down.svg +4 -0
  1143. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-smile.svg +4 -0
  1144. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-sunglasses-fill.svg +3 -0
  1145. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-sunglasses.svg +4 -0
  1146. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-surprise-fill.svg +3 -0
  1147. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-surprise.svg +4 -0
  1148. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-tear-fill.svg +3 -0
  1149. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-tear.svg +4 -0
  1150. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-wink-fill.svg +3 -0
  1151. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-wink.svg +4 -0
  1152. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-arrow-down-fill.svg +4 -0
  1153. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-arrow-down.svg +4 -0
  1154. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-arrow-up-fill.svg +4 -0
  1155. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-arrow-up.svg +4 -0
  1156. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-at-fill.svg +4 -0
  1157. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-at.svg +4 -0
  1158. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-check-fill.svg +4 -0
  1159. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-check.svg +4 -0
  1160. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-dash-fill.svg +4 -0
  1161. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-dash.svg +4 -0
  1162. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-exclamation-fill.svg +4 -0
  1163. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-exclamation.svg +4 -0
  1164. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-fill.svg +3 -0
  1165. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-heart-fill.svg +4 -0
  1166. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-heart.svg +3 -0
  1167. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-open-fill.svg +3 -0
  1168. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-open-heart-fill.svg +4 -0
  1169. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-open-heart.svg +3 -0
  1170. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-open.svg +3 -0
  1171. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-paper-fill.svg +3 -0
  1172. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-paper-heart-fill.svg +3 -0
  1173. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-paper-heart.svg +3 -0
  1174. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-paper.svg +3 -0
  1175. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-plus-fill.svg +4 -0
  1176. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-plus.svg +4 -0
  1177. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-slash-fill.svg +4 -0
  1178. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-slash.svg +4 -0
  1179. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-x-fill.svg +4 -0
  1180. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-x.svg +4 -0
  1181. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope.svg +3 -0
  1182. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eraser-fill.svg +3 -0
  1183. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eraser.svg +3 -0
  1184. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/escape.svg +4 -0
  1185. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ethernet.svg +4 -0
  1186. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ev-front-fill.svg +3 -0
  1187. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ev-front.svg +4 -0
  1188. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ev-station-fill.svg +3 -0
  1189. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ev-station.svg +4 -0
  1190. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-circle-fill.svg +3 -0
  1191. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-circle.svg +4 -0
  1192. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-diamond-fill.svg +3 -0
  1193. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-diamond.svg +4 -0
  1194. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-lg.svg +3 -0
  1195. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-octagon-fill.svg +3 -0
  1196. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-octagon.svg +4 -0
  1197. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-square-fill.svg +3 -0
  1198. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-square.svg +4 -0
  1199. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-triangle-fill.svg +3 -0
  1200. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-triangle.svg +4 -0
  1201. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation.svg +3 -0
  1202. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclude.svg +3 -0
  1203. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/explicit-fill.svg +3 -0
  1204. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/explicit.svg +4 -0
  1205. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exposure.svg +4 -0
  1206. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eye-fill.svg +4 -0
  1207. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eye-slash-fill.svg +4 -0
  1208. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eye-slash.svg +5 -0
  1209. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eye.svg +4 -0
  1210. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eyedropper.svg +3 -0
  1211. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eyeglasses.svg +3 -0
  1212. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/facebook.svg +3 -0
  1213. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fan.svg +4 -0
  1214. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-btn-fill.svg +3 -0
  1215. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-btn.svg +4 -0
  1216. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-circle-fill.svg +3 -0
  1217. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-circle.svg +4 -0
  1218. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-fill.svg +4 -0
  1219. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward.svg +4 -0
  1220. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/feather.svg +3 -0
  1221. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/feather2.svg +3 -0
  1222. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-arrow-down-fill.svg +3 -0
  1223. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-arrow-down.svg +4 -0
  1224. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-arrow-up-fill.svg +3 -0
  1225. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-arrow-up.svg +4 -0
  1226. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-bar-graph-fill.svg +3 -0
  1227. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-bar-graph.svg +4 -0
  1228. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-binary-fill.svg +4 -0
  1229. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-binary.svg +4 -0
  1230. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-break-fill.svg +3 -0
  1231. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-break.svg +3 -0
  1232. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-check-fill.svg +3 -0
  1233. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-check.svg +4 -0
  1234. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-code-fill.svg +3 -0
  1235. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-code.svg +4 -0
  1236. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-diff-fill.svg +3 -0
  1237. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-diff.svg +4 -0
  1238. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-arrow-down-fill.svg +3 -0
  1239. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-arrow-down.svg +4 -0
  1240. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-arrow-up-fill.svg +3 -0
  1241. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-arrow-up.svg +4 -0
  1242. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-bar-graph-fill.svg +3 -0
  1243. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-bar-graph.svg +4 -0
  1244. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-binary-fill.svg +4 -0
  1245. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-binary.svg +4 -0
  1246. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-break-fill.svg +3 -0
  1247. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-break.svg +3 -0
  1248. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-check-fill.svg +3 -0
  1249. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-check.svg +4 -0
  1250. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-code-fill.svg +3 -0
  1251. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-code.svg +4 -0
  1252. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-diff-fill.svg +3 -0
  1253. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-diff.svg +4 -0
  1254. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-easel-fill.svg +4 -0
  1255. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-easel.svg +4 -0
  1256. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-excel-fill.svg +3 -0
  1257. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-excel.svg +4 -0
  1258. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-fill.svg +3 -0
  1259. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-font-fill.svg +3 -0
  1260. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-font.svg +4 -0
  1261. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-image-fill.svg +4 -0
  1262. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-image.svg +4 -0
  1263. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-lock-fill.svg +4 -0
  1264. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-lock.svg +4 -0
  1265. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-lock2-fill.svg +4 -0
  1266. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-lock2.svg +4 -0
  1267. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-medical-fill.svg +3 -0
  1268. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-medical.svg +4 -0
  1269. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-minus-fill.svg +3 -0
  1270. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-minus.svg +4 -0
  1271. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-music-fill.svg +3 -0
  1272. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-music.svg +4 -0
  1273. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-pdf-fill.svg +4 -0
  1274. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-pdf.svg +4 -0
  1275. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-person-fill.svg +3 -0
  1276. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-person.svg +4 -0
  1277. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-play-fill.svg +3 -0
  1278. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-play.svg +4 -0
  1279. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-plus-fill.svg +3 -0
  1280. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-plus.svg +4 -0
  1281. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-post-fill.svg +3 -0
  1282. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-post.svg +4 -0
  1283. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-ppt-fill.svg +4 -0
  1284. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-ppt.svg +4 -0
  1285. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-richtext-fill.svg +3 -0
  1286. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-richtext.svg +4 -0
  1287. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-ruled-fill.svg +3 -0
  1288. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-ruled.svg +3 -0
  1289. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-slides-fill.svg +4 -0
  1290. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-slides.svg +4 -0
  1291. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-spreadsheet-fill.svg +4 -0
  1292. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-spreadsheet.svg +3 -0
  1293. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-text-fill.svg +3 -0
  1294. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-text.svg +4 -0
  1295. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-word-fill.svg +3 -0
  1296. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-word.svg +4 -0
  1297. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-x-fill.svg +3 -0
  1298. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-x.svg +4 -0
  1299. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-zip-fill.svg +4 -0
  1300. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-zip.svg +4 -0
  1301. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark.svg +3 -0
  1302. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-easel-fill.svg +4 -0
  1303. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-easel.svg +4 -0
  1304. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-excel-fill.svg +3 -0
  1305. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-excel.svg +4 -0
  1306. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-fill.svg +3 -0
  1307. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-font-fill.svg +3 -0
  1308. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-font.svg +4 -0
  1309. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-image-fill.svg +4 -0
  1310. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-image.svg +4 -0
  1311. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-lock-fill.svg +4 -0
  1312. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-lock.svg +4 -0
  1313. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-lock2-fill.svg +4 -0
  1314. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-lock2.svg +4 -0
  1315. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-medical-fill.svg +3 -0
  1316. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-medical.svg +4 -0
  1317. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-minus-fill.svg +3 -0
  1318. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-minus.svg +4 -0
  1319. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-music-fill.svg +3 -0
  1320. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-music.svg +4 -0
  1321. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-pdf-fill.svg +4 -0
  1322. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-pdf.svg +4 -0
  1323. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-person-fill.svg +3 -0
  1324. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-person.svg +4 -0
  1325. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-play-fill.svg +3 -0
  1326. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-play.svg +4 -0
  1327. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-plus-fill.svg +3 -0
  1328. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-plus.svg +4 -0
  1329. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-post-fill.svg +3 -0
  1330. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-post.svg +4 -0
  1331. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-ppt-fill.svg +4 -0
  1332. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-ppt.svg +4 -0
  1333. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-richtext-fill.svg +3 -0
  1334. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-richtext.svg +4 -0
  1335. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-ruled-fill.svg +3 -0
  1336. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-ruled.svg +3 -0
  1337. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-slides-fill.svg +4 -0
  1338. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-slides.svg +4 -0
  1339. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-spreadsheet-fill.svg +3 -0
  1340. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-spreadsheet.svg +3 -0
  1341. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-text-fill.svg +3 -0
  1342. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-text.svg +4 -0
  1343. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-word-fill.svg +3 -0
  1344. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-word.svg +4 -0
  1345. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-x-fill.svg +3 -0
  1346. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-x.svg +4 -0
  1347. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-zip-fill.svg +4 -0
  1348. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-zip.svg +4 -0
  1349. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file.svg +3 -0
  1350. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/files-alt.svg +3 -0
  1351. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/files.svg +3 -0
  1352. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-aac.svg +3 -0
  1353. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-ai.svg +3 -0
  1354. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-bmp.svg +3 -0
  1355. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-cs.svg +3 -0
  1356. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-css.svg +3 -0
  1357. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-csv.svg +3 -0
  1358. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-doc.svg +3 -0
  1359. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-docx.svg +3 -0
  1360. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-exe.svg +3 -0
  1361. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-gif.svg +3 -0
  1362. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-heic.svg +3 -0
  1363. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-html.svg +3 -0
  1364. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-java.svg +3 -0
  1365. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-jpg.svg +3 -0
  1366. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-js.svg +3 -0
  1367. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-json.svg +3 -0
  1368. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-jsx.svg +3 -0
  1369. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-key.svg +3 -0
  1370. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-m4p.svg +3 -0
  1371. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-md.svg +3 -0
  1372. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-mdx.svg +3 -0
  1373. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-mov.svg +3 -0
  1374. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-mp3.svg +3 -0
  1375. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-mp4.svg +3 -0
  1376. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-otf.svg +3 -0
  1377. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-pdf.svg +3 -0
  1378. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-php.svg +3 -0
  1379. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-png.svg +3 -0
  1380. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-ppt.svg +3 -0
  1381. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-pptx.svg +3 -0
  1382. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-psd.svg +3 -0
  1383. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-py.svg +3 -0
  1384. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-raw.svg +3 -0
  1385. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-rb.svg +3 -0
  1386. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-sass.svg +3 -0
  1387. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-scss.svg +3 -0
  1388. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-sh.svg +3 -0
  1389. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-sql.svg +3 -0
  1390. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-svg.svg +3 -0
  1391. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-tiff.svg +3 -0
  1392. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-tsx.svg +3 -0
  1393. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-ttf.svg +3 -0
  1394. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-txt.svg +3 -0
  1395. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-wav.svg +3 -0
  1396. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-woff.svg +3 -0
  1397. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-xls.svg +3 -0
  1398. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-xlsx.svg +3 -0
  1399. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-xml.svg +3 -0
  1400. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-yml.svg +3 -0
  1401. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/film.svg +3 -0
  1402. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-circle-fill.svg +3 -0
  1403. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-circle.svg +4 -0
  1404. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-left.svg +3 -0
  1405. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-right.svg +3 -0
  1406. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-square-fill.svg +3 -0
  1407. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-square.svg +4 -0
  1408. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter.svg +3 -0
  1409. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fingerprint.svg +7 -0
  1410. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fire.svg +3 -0
  1411. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flag-fill.svg +3 -0
  1412. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flag.svg +3 -0
  1413. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/floppy-fill.svg +4 -0
  1414. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/floppy.svg +4 -0
  1415. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/floppy2-fill.svg +4 -0
  1416. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/floppy2.svg +3 -0
  1417. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flower1.svg +3 -0
  1418. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flower2.svg +3 -0
  1419. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flower3.svg +3 -0
  1420. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-check.svg +4 -0
  1421. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-fill.svg +3 -0
  1422. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-minus.svg +4 -0
  1423. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-plus.svg +4 -0
  1424. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-symlink-fill.svg +3 -0
  1425. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-symlink.svg +4 -0
  1426. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-x.svg +4 -0
  1427. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder.svg +3 -0
  1428. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder2-open.svg +3 -0
  1429. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder2.svg +3 -0
  1430. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fonts.svg +3 -0
  1431. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/forward-fill.svg +3 -0
  1432. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/forward.svg +3 -0
  1433. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/front.svg +3 -0
  1434. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fuel-pump-diesel-fill.svg +4 -0
  1435. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fuel-pump-diesel.svg +4 -0
  1436. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fuel-pump-fill.svg +3 -0
  1437. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fuel-pump.svg +4 -0
  1438. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fullscreen-exit.svg +3 -0
  1439. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fullscreen.svg +3 -0
  1440. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/funnel-fill.svg +3 -0
  1441. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/funnel.svg +3 -0
  1442. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gear-fill.svg +3 -0
  1443. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gear-wide-connected.svg +3 -0
  1444. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gear-wide.svg +3 -0
  1445. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gear.svg +4 -0
  1446. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gem.svg +3 -0
  1447. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-ambiguous.svg +3 -0
  1448. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-female.svg +3 -0
  1449. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-male.svg +3 -0
  1450. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-neuter.svg +3 -0
  1451. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-trans.svg +3 -0
  1452. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/geo-alt-fill.svg +3 -0
  1453. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/geo-alt.svg +4 -0
  1454. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/geo-fill.svg +3 -0
  1455. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/geo.svg +3 -0
  1456. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gift-fill.svg +3 -0
  1457. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gift.svg +3 -0
  1458. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/git.svg +3 -0
  1459. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/github.svg +3 -0
  1460. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gitlab.svg +3 -0
  1461. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe-americas.svg +3 -0
  1462. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe-asia-australia.svg +4 -0
  1463. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe-central-south-asia.svg +3 -0
  1464. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe-europe-africa.svg +3 -0
  1465. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe.svg +3 -0
  1466. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe2.svg +3 -0
  1467. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/google-play.svg +3 -0
  1468. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/google.svg +3 -0
  1469. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gpu-card.svg +5 -0
  1470. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/graph-down-arrow.svg +3 -0
  1471. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/graph-down.svg +3 -0
  1472. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/graph-up-arrow.svg +3 -0
  1473. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/graph-up.svg +3 -0
  1474. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-1x2-fill.svg +3 -0
  1475. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-1x2.svg +3 -0
  1476. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x2-gap-fill.svg +3 -0
  1477. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x2-gap.svg +3 -0
  1478. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x2.svg +3 -0
  1479. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x3-gap-fill.svg +3 -0
  1480. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x3-gap.svg +3 -0
  1481. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x3.svg +3 -0
  1482. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-fill.svg +3 -0
  1483. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid.svg +3 -0
  1484. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grip-horizontal.svg +3 -0
  1485. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grip-vertical.svg +3 -0
  1486. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/h-circle-fill.svg +3 -0
  1487. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/h-circle.svg +3 -0
  1488. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/h-square-fill.svg +3 -0
  1489. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/h-square.svg +4 -0
  1490. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hammer.svg +3 -0
  1491. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-index-fill.svg +3 -0
  1492. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-index-thumb-fill.svg +3 -0
  1493. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-index-thumb.svg +3 -0
  1494. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-index.svg +3 -0
  1495. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-thumbs-down-fill.svg +3 -0
  1496. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-thumbs-down.svg +3 -0
  1497. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-thumbs-up-fill.svg +3 -0
  1498. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-thumbs-up.svg +3 -0
  1499. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/handbag-fill.svg +3 -0
  1500. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/handbag.svg +3 -0
  1501. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hash.svg +3 -0
  1502. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-fill.svg +3 -0
  1503. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-network-fill.svg +3 -0
  1504. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-network.svg +4 -0
  1505. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-rack-fill.svg +3 -0
  1506. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-rack.svg +4 -0
  1507. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-stack-fill.svg +3 -0
  1508. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-stack.svg +5 -0
  1509. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd.svg +4 -0
  1510. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdmi-fill.svg +3 -0
  1511. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdmi.svg +4 -0
  1512. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/headphones.svg +3 -0
  1513. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/headset-vr.svg +4 -0
  1514. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/headset.svg +3 -0
  1515. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-arrow.svg +3 -0
  1516. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-fill.svg +3 -0
  1517. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-half.svg +3 -0
  1518. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-pulse-fill.svg +4 -0
  1519. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-pulse.svg +4 -0
  1520. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart.svg +3 -0
  1521. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heartbreak-fill.svg +3 -0
  1522. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heartbreak.svg +3 -0
  1523. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hearts.svg +3 -0
  1524. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heptagon-fill.svg +3 -0
  1525. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heptagon-half.svg +3 -0
  1526. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heptagon.svg +3 -0
  1527. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hexagon-fill.svg +3 -0
  1528. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hexagon-half.svg +3 -0
  1529. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hexagon.svg +3 -0
  1530. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/highlighter.svg +3 -0
  1531. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/highlights.svg +3 -0
  1532. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hospital-fill.svg +3 -0
  1533. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hospital.svg +4 -0
  1534. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hourglass-bottom.svg +3 -0
  1535. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hourglass-split.svg +3 -0
  1536. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hourglass-top.svg +3 -0
  1537. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hourglass.svg +3 -0
  1538. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-add-fill.svg +5 -0
  1539. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-add.svg +4 -0
  1540. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-check-fill.svg +5 -0
  1541. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-check.svg +4 -0
  1542. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-dash-fill.svg +5 -0
  1543. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-dash.svg +4 -0
  1544. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-door-fill.svg +3 -0
  1545. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-door.svg +3 -0
  1546. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-down-fill.svg +5 -0
  1547. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-down.svg +4 -0
  1548. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-exclamation-fill.svg +5 -0
  1549. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-exclamation.svg +4 -0
  1550. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-fill.svg +4 -0
  1551. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-gear-fill.svg +5 -0
  1552. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-gear.svg +4 -0
  1553. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-heart-fill.svg +4 -0
  1554. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-heart.svg +4 -0
  1555. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-lock-fill.svg +5 -0
  1556. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-lock.svg +4 -0
  1557. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-slash-fill.svg +5 -0
  1558. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-slash.svg +4 -0
  1559. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-up-fill.svg +5 -0
  1560. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-up.svg +4 -0
  1561. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-x-fill.svg +5 -0
  1562. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-x.svg +4 -0
  1563. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house.svg +3 -0
  1564. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/houses-fill.svg +4 -0
  1565. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/houses.svg +3 -0
  1566. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hr.svg +3 -0
  1567. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hurricane.svg +3 -0
  1568. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hypnotize.svg +4 -0
  1569. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/image-alt.svg +3 -0
  1570. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/image-fill.svg +3 -0
  1571. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/image.svg +4 -0
  1572. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/images.svg +4 -0
  1573. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/inbox-fill.svg +3 -0
  1574. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/inbox.svg +3 -0
  1575. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/inboxes-fill.svg +3 -0
  1576. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/inboxes.svg +3 -0
  1577. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/incognito.svg +3 -0
  1578. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/indent.svg +4 -0
  1579. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/infinity.svg +3 -0
  1580. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-circle-fill.svg +3 -0
  1581. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-circle.svg +4 -0
  1582. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-lg.svg +3 -0
  1583. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-square-fill.svg +3 -0
  1584. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-square.svg +4 -0
  1585. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info.svg +3 -0
  1586. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/input-cursor-text.svg +4 -0
  1587. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/input-cursor.svg +4 -0
  1588. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/instagram.svg +3 -0
  1589. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/intersect.svg +3 -0
  1590. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-album.svg +5 -0
  1591. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-arrow-down.svg +5 -0
  1592. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-arrow-up.svg +5 -0
  1593. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-bookmark-fill.svg +5 -0
  1594. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-bookmark.svg +5 -0
  1595. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-check.svg +5 -0
  1596. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-code.svg +5 -0
  1597. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-medical.svg +5 -0
  1598. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-minus.svg +5 -0
  1599. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-plus.svg +5 -0
  1600. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-richtext.svg +5 -0
  1601. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-text.svg +5 -0
  1602. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-x.svg +5 -0
  1603. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal.svg +4 -0
  1604. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journals.svg +4 -0
  1605. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/joystick.svg +4 -0
  1606. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/justify-left.svg +3 -0
  1607. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/justify-right.svg +3 -0
  1608. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/justify.svg +3 -0
  1609. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/kanban-fill.svg +3 -0
  1610. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/kanban.svg +4 -0
  1611. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/key-fill.svg +3 -0
  1612. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/key.svg +4 -0
  1613. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/keyboard-fill.svg +3 -0
  1614. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/keyboard.svg +4 -0
  1615. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ladder.svg +3 -0
  1616. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lamp-fill.svg +4 -0
  1617. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lamp.svg +4 -0
  1618. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/laptop-fill.svg +3 -0
  1619. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/laptop.svg +3 -0
  1620. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layer-backward.svg +4 -0
  1621. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layer-forward.svg +4 -0
  1622. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layers-fill.svg +4 -0
  1623. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layers-half.svg +3 -0
  1624. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layers.svg +3 -0
  1625. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-sidebar-inset-reverse.svg +4 -0
  1626. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-sidebar-inset.svg +4 -0
  1627. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-sidebar-reverse.svg +3 -0
  1628. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-sidebar.svg +3 -0
  1629. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-split.svg +3 -0
  1630. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-text-sidebar-reverse.svg +4 -0
  1631. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-text-sidebar.svg +4 -0
  1632. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-text-window-reverse.svg +4 -0
  1633. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-text-window.svg +4 -0
  1634. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-three-columns.svg +3 -0
  1635. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-wtf.svg +3 -0
  1636. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/life-preserver.svg +3 -0
  1637. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightbulb-fill.svg +3 -0
  1638. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightbulb-off-fill.svg +3 -0
  1639. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightbulb-off.svg +3 -0
  1640. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightbulb.svg +3 -0
  1641. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightning-charge-fill.svg +3 -0
  1642. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightning-charge.svg +3 -0
  1643. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightning-fill.svg +3 -0
  1644. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightning.svg +3 -0
  1645. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/line.svg +3 -0
  1646. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/link-45deg.svg +4 -0
  1647. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/link.svg +4 -0
  1648. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/linkedin.svg +3 -0
  1649. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-check.svg +3 -0
  1650. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-columns-reverse.svg +3 -0
  1651. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-columns.svg +3 -0
  1652. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-nested.svg +3 -0
  1653. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-ol.svg +4 -0
  1654. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-stars.svg +4 -0
  1655. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-task.svg +5 -0
  1656. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-ul.svg +3 -0
  1657. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list.svg +3 -0
  1658. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lock-fill.svg +3 -0
  1659. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lock.svg +3 -0
  1660. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/luggage-fill.svg +4 -0
  1661. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/luggage.svg +4 -0
  1662. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lungs-fill.svg +3 -0
  1663. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lungs.svg +3 -0
  1664. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/magic.svg +3 -0
  1665. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/magnet-fill.svg +3 -0
  1666. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/magnet.svg +3 -0
  1667. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mailbox-flag.svg +4 -0
  1668. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mailbox.svg +4 -0
  1669. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mailbox2-flag.svg +4 -0
  1670. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mailbox2.svg +4 -0
  1671. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/map-fill.svg +3 -0
  1672. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/map.svg +3 -0
  1673. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/markdown-fill.svg +3 -0
  1674. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/markdown.svg +6 -0
  1675. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/marker-tip.svg +3 -0
  1676. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mask.svg +3 -0
  1677. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mastodon.svg +3 -0
  1678. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/medium.svg +3 -0
  1679. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/megaphone-fill.svg +3 -0
  1680. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/megaphone.svg +3 -0
  1681. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/memory.svg +3 -0
  1682. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-app-fill.svg +3 -0
  1683. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-app.svg +3 -0
  1684. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-button-fill.svg +3 -0
  1685. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-button-wide-fill.svg +3 -0
  1686. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-button-wide.svg +4 -0
  1687. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-button.svg +4 -0
  1688. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-down.svg +3 -0
  1689. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-up.svg +3 -0
  1690. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/messenger.svg +3 -0
  1691. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/meta.svg +3 -0
  1692. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mic-fill.svg +4 -0
  1693. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mic-mute-fill.svg +4 -0
  1694. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mic-mute.svg +4 -0
  1695. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mic.svg +4 -0
  1696. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/microsoft-teams.svg +4 -0
  1697. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/microsoft.svg +3 -0
  1698. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/minecart-loaded.svg +4 -0
  1699. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/minecart.svg +3 -0
  1700. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/modem-fill.svg +3 -0
  1701. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/modem.svg +4 -0
  1702. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moisture.svg +3 -0
  1703. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moon-fill.svg +3 -0
  1704. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moon-stars-fill.svg +4 -0
  1705. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moon-stars.svg +4 -0
  1706. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moon.svg +3 -0
  1707. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mortarboard-fill.svg +4 -0
  1708. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mortarboard.svg +4 -0
  1709. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/motherboard-fill.svg +4 -0
  1710. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/motherboard.svg +4 -0
  1711. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse-fill.svg +3 -0
  1712. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse.svg +3 -0
  1713. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse2-fill.svg +3 -0
  1714. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse2.svg +3 -0
  1715. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse3-fill.svg +3 -0
  1716. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse3.svg +3 -0
  1717. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-note-beamed.svg +5 -0
  1718. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-note-list.svg +6 -0
  1719. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-note.svg +5 -0
  1720. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-player-fill.svg +4 -0
  1721. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-player.svg +5 -0
  1722. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/newspaper.svg +4 -0
  1723. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nintendo-switch.svg +4 -0
  1724. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/node-minus-fill.svg +3 -0
  1725. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/node-minus.svg +3 -0
  1726. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/node-plus-fill.svg +3 -0
  1727. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/node-plus.svg +3 -0
  1728. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/noise-reduction.svg +4 -0
  1729. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nut-fill.svg +3 -0
  1730. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nut.svg +4 -0
  1731. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nvidia.svg +3 -0
  1732. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nvme-fill.svg +4 -0
  1733. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nvme.svg +4 -0
  1734. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/octagon-fill.svg +3 -0
  1735. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/octagon-half.svg +3 -0
  1736. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/octagon.svg +3 -0
  1737. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/opencollective.svg +4 -0
  1738. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/optical-audio-fill.svg +4 -0
  1739. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/optical-audio.svg +5 -0
  1740. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/option.svg +3 -0
  1741. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/outlet.svg +4 -0
  1742. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/p-circle-fill.svg +3 -0
  1743. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/p-circle.svg +3 -0
  1744. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/p-square-fill.svg +4 -0
  1745. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/p-square.svg +4 -0
  1746. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/paint-bucket.svg +3 -0
  1747. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/palette-fill.svg +3 -0
  1748. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/palette.svg +4 -0
  1749. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/palette2.svg +3 -0
  1750. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/paperclip.svg +3 -0
  1751. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/paragraph.svg +3 -0
  1752. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pass-fill.svg +3 -0
  1753. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pass.svg +4 -0
  1754. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/passport-fill.svg +4 -0
  1755. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/passport.svg +4 -0
  1756. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-check-fill.svg +3 -0
  1757. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-check.svg +4 -0
  1758. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-exclamation-fill.svg +3 -0
  1759. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-exclamation.svg +4 -0
  1760. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-minus-fill.svg +3 -0
  1761. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-minus.svg +4 -0
  1762. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-plus-fill.svg +3 -0
  1763. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-plus.svg +4 -0
  1764. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-question-fill.svg +3 -0
  1765. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-question.svg +5 -0
  1766. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-btn-fill.svg +3 -0
  1767. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-btn.svg +4 -0
  1768. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-circle-fill.svg +3 -0
  1769. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-circle.svg +4 -0
  1770. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-fill.svg +3 -0
  1771. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause.svg +3 -0
  1772. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/paypal.svg +3 -0
  1773. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pc-display-horizontal.svg +3 -0
  1774. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pc-display.svg +3 -0
  1775. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pc-horizontal.svg +3 -0
  1776. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pc.svg +3 -0
  1777. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pci-card-network.svg +5 -0
  1778. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pci-card-sound.svg +5 -0
  1779. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pci-card.svg +4 -0
  1780. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/peace-fill.svg +3 -0
  1781. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/peace.svg +3 -0
  1782. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pen-fill.svg +3 -0
  1783. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pen.svg +3 -0
  1784. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pencil-fill.svg +3 -0
  1785. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pencil-square.svg +4 -0
  1786. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pencil.svg +3 -0
  1787. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pentagon-fill.svg +3 -0
  1788. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pentagon-half.svg +3 -0
  1789. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pentagon.svg +3 -0
  1790. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/people-fill.svg +3 -0
  1791. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/people.svg +3 -0
  1792. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/percent.svg +3 -0
  1793. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-add.svg +4 -0
  1794. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-arms-up.svg +4 -0
  1795. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-badge-fill.svg +3 -0
  1796. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-badge.svg +4 -0
  1797. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-bounding-box.svg +4 -0
  1798. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-check-fill.svg +4 -0
  1799. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-check.svg +4 -0
  1800. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-circle.svg +4 -0
  1801. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-dash-fill.svg +4 -0
  1802. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-dash.svg +4 -0
  1803. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-down.svg +4 -0
  1804. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-exclamation.svg +4 -0
  1805. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-add.svg +4 -0
  1806. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-check.svg +4 -0
  1807. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-dash.svg +4 -0
  1808. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-down.svg +4 -0
  1809. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-exclamation.svg +4 -0
  1810. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-gear.svg +3 -0
  1811. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-lock.svg +3 -0
  1812. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-slash.svg +3 -0
  1813. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-up.svg +4 -0
  1814. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-x.svg +4 -0
  1815. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill.svg +3 -0
  1816. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-gear.svg +3 -0
  1817. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-heart.svg +3 -0
  1818. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-hearts.svg +3 -0
  1819. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-lines-fill.svg +3 -0
  1820. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-lock.svg +3 -0
  1821. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-plus-fill.svg +4 -0
  1822. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-plus.svg +4 -0
  1823. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-raised-hand.svg +4 -0
  1824. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-rolodex.svg +4 -0
  1825. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-slash.svg +3 -0
  1826. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-square.svg +4 -0
  1827. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-standing-dress.svg +3 -0
  1828. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-standing.svg +3 -0
  1829. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-up.svg +4 -0
  1830. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-vcard-fill.svg +3 -0
  1831. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-vcard.svg +4 -0
  1832. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-video.svg +4 -0
  1833. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-video2.svg +4 -0
  1834. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-video3.svg +4 -0
  1835. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-walking.svg +4 -0
  1836. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-wheelchair.svg +3 -0
  1837. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-workspace.svg +4 -0
  1838. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-x-fill.svg +3 -0
  1839. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-x.svg +4 -0
  1840. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person.svg +3 -0
  1841. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-fill.svg +3 -0
  1842. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-flip.svg +3 -0
  1843. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-landscape-fill.svg +3 -0
  1844. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-landscape.svg +4 -0
  1845. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-vibrate-fill.svg +3 -0
  1846. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-vibrate.svg +4 -0
  1847. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone.svg +4 -0
  1848. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pie-chart-fill.svg +3 -0
  1849. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pie-chart.svg +3 -0
  1850. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/piggy-bank-fill.svg +3 -0
  1851. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/piggy-bank.svg +4 -0
  1852. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-angle-fill.svg +3 -0
  1853. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-angle.svg +3 -0
  1854. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-fill.svg +3 -0
  1855. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-map-fill.svg +4 -0
  1856. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-map.svg +4 -0
  1857. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin.svg +3 -0
  1858. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pinterest.svg +3 -0
  1859. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pip-fill.svg +3 -0
  1860. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pip.svg +4 -0
  1861. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-btn-fill.svg +3 -0
  1862. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-btn.svg +4 -0
  1863. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-circle-fill.svg +3 -0
  1864. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-circle.svg +4 -0
  1865. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-fill.svg +3 -0
  1866. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play.svg +3 -0
  1867. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/playstation.svg +3 -0
  1868. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plug-fill.svg +3 -0
  1869. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plug.svg +3 -0
  1870. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plugin.svg +3 -0
  1871. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-circle-dotted.svg +3 -0
  1872. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-circle-fill.svg +3 -0
  1873. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-circle.svg +4 -0
  1874. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-lg.svg +3 -0
  1875. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-slash-minus.svg +3 -0
  1876. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-square-dotted.svg +3 -0
  1877. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-square-fill.svg +3 -0
  1878. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-square.svg +4 -0
  1879. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus.svg +3 -0
  1880. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postage-fill.svg +4 -0
  1881. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postage-heart-fill.svg +4 -0
  1882. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postage-heart.svg +4 -0
  1883. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postage.svg +4 -0
  1884. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postcard-fill.svg +4 -0
  1885. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postcard-heart-fill.svg +3 -0
  1886. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postcard-heart.svg +4 -0
  1887. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postcard.svg +3 -0
  1888. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/power.svg +4 -0
  1889. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/prescription.svg +4 -0
  1890. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/prescription2.svg +4 -0
  1891. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/printer-fill.svg +4 -0
  1892. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/printer.svg +4 -0
  1893. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/projector-fill.svg +3 -0
  1894. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/projector.svg +4 -0
  1895. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/puzzle-fill.svg +3 -0
  1896. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/puzzle.svg +3 -0
  1897. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/qr-code-scan.svg +7 -0
  1898. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/qr-code.svg +7 -0
  1899. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-circle-fill.svg +3 -0
  1900. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-circle.svg +4 -0
  1901. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-diamond-fill.svg +3 -0
  1902. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-diamond.svg +4 -0
  1903. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-lg.svg +3 -0
  1904. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-octagon-fill.svg +3 -0
  1905. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-octagon.svg +4 -0
  1906. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-square-fill.svg +3 -0
  1907. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-square.svg +4 -0
  1908. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question.svg +3 -0
  1909. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/quora.svg +3 -0
  1910. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/quote.svg +3 -0
  1911. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/r-circle-fill.svg +3 -0
  1912. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/r-circle.svg +3 -0
  1913. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/r-square-fill.svg +4 -0
  1914. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/r-square.svg +4 -0
  1915. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/radar.svg +3 -0
  1916. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/radioactive.svg +4 -0
  1917. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rainbow.svg +3 -0
  1918. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/receipt-cutoff.svg +4 -0
  1919. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/receipt.svg +4 -0
  1920. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-0.svg +3 -0
  1921. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-1.svg +3 -0
  1922. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-2.svg +3 -0
  1923. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-3.svg +3 -0
  1924. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-4.svg +3 -0
  1925. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-btn-fill.svg +3 -0
  1926. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-btn.svg +4 -0
  1927. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-circle-fill.svg +3 -0
  1928. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-circle.svg +4 -0
  1929. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-fill.svg +3 -0
  1930. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record.svg +3 -0
  1931. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record2-fill.svg +4 -0
  1932. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record2.svg +4 -0
  1933. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/recycle.svg +3 -0
  1934. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reddit.svg +4 -0
  1935. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/regex.svg +3 -0
  1936. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/repeat-1.svg +4 -0
  1937. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/repeat.svg +3 -0
  1938. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reply-all-fill.svg +4 -0
  1939. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reply-all.svg +4 -0
  1940. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reply-fill.svg +3 -0
  1941. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reply.svg +3 -0
  1942. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-btn-fill.svg +3 -0
  1943. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-btn.svg +4 -0
  1944. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-circle-fill.svg +3 -0
  1945. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-circle.svg +4 -0
  1946. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-fill.svg +4 -0
  1947. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind.svg +4 -0
  1948. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/robot.svg +4 -0
  1949. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rocket-fill.svg +4 -0
  1950. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rocket-takeoff-fill.svg +4 -0
  1951. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rocket-takeoff.svg +5 -0
  1952. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rocket.svg +5 -0
  1953. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/router-fill.svg +6 -0
  1954. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/router.svg +6 -0
  1955. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rss-fill.svg +3 -0
  1956. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rss.svg +4 -0
  1957. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rulers.svg +3 -0
  1958. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/safe-fill.svg +4 -0
  1959. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/safe.svg +4 -0
  1960. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/safe2-fill.svg +4 -0
  1961. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/safe2.svg +4 -0
  1962. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/save-fill.svg +3 -0
  1963. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/save.svg +3 -0
  1964. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/save2-fill.svg +3 -0
  1965. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/save2.svg +3 -0
  1966. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/scissors.svg +3 -0
  1967. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/scooter.svg +3 -0
  1968. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/screwdriver.svg +3 -0
  1969. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sd-card-fill.svg +3 -0
  1970. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sd-card.svg +4 -0
  1971. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/search-heart-fill.svg +3 -0
  1972. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/search-heart.svg +4 -0
  1973. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/search.svg +3 -0
  1974. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/segmented-nav.svg +3 -0
  1975. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-arrow-down-fill.svg +4 -0
  1976. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-arrow-down.svg +4 -0
  1977. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-arrow-up-fill.svg +4 -0
  1978. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-arrow-up.svg +4 -0
  1979. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-check-fill.svg +4 -0
  1980. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-check.svg +4 -0
  1981. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-dash-fill.svg +4 -0
  1982. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-dash.svg +4 -0
  1983. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-exclamation-fill.svg +4 -0
  1984. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-exclamation.svg +4 -0
  1985. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-fill.svg +3 -0
  1986. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-plus-fill.svg +4 -0
  1987. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-plus.svg +4 -0
  1988. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-slash-fill.svg +4 -0
  1989. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-slash.svg +4 -0
  1990. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-x-fill.svg +4 -0
  1991. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-x.svg +4 -0
  1992. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send.svg +3 -0
  1993. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/server.svg +5 -0
  1994. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shadows.svg +3 -0
  1995. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/share-fill.svg +3 -0
  1996. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/share.svg +3 -0
  1997. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-check.svg +4 -0
  1998. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-exclamation.svg +4 -0
  1999. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-check.svg +3 -0
  2000. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-exclamation.svg +3 -0
  2001. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-minus.svg +3 -0
  2002. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-plus.svg +3 -0
  2003. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-x.svg +3 -0
  2004. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill.svg +3 -0
  2005. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-lock-fill.svg +3 -0
  2006. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-lock.svg +4 -0
  2007. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-minus.svg +4 -0
  2008. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-plus.svg +4 -0
  2009. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-shaded.svg +3 -0
  2010. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-slash-fill.svg +3 -0
  2011. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-slash.svg +3 -0
  2012. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-x.svg +4 -0
  2013. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield.svg +3 -0
  2014. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shift-fill.svg +3 -0
  2015. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shift.svg +3 -0
  2016. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shop-window.svg +3 -0
  2017. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shop.svg +3 -0
  2018. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shuffle.svg +4 -0
  2019. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-dead-end-fill.svg +4 -0
  2020. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-dead-end.svg +4 -0
  2021. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-do-not-enter-fill.svg +4 -0
  2022. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-do-not-enter.svg +4 -0
  2023. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-fill.svg +3 -0
  2024. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-side-fill.svg +3 -0
  2025. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-side.svg +4 -0
  2026. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-t-fill.svg +3 -0
  2027. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-t.svg +4 -0
  2028. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-y-fill.svg +3 -0
  2029. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-y.svg +4 -0
  2030. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection.svg +4 -0
  2031. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-merge-left-fill.svg +3 -0
  2032. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-merge-left.svg +4 -0
  2033. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-merge-right-fill.svg +3 -0
  2034. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-merge-right.svg +4 -0
  2035. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-left-turn-fill.svg +4 -0
  2036. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-left-turn.svg +3 -0
  2037. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-parking-fill.svg +4 -0
  2038. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-parking.svg +3 -0
  2039. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-right-turn-fill.svg +4 -0
  2040. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-right-turn.svg +3 -0
  2041. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-railroad-fill.svg +5 -0
  2042. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-railroad.svg +4 -0
  2043. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-stop-fill.svg +4 -0
  2044. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-stop-lights-fill.svg +4 -0
  2045. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-stop-lights.svg +4 -0
  2046. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-stop.svg +5 -0
  2047. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-left-fill.svg +3 -0
  2048. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-left.svg +4 -0
  2049. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-right-fill.svg +3 -0
  2050. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-right.svg +4 -0
  2051. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-slight-left-fill.svg +3 -0
  2052. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-slight-left.svg +4 -0
  2053. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-slight-right-fill.svg +3 -0
  2054. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-slight-right.svg +4 -0
  2055. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-yield-fill.svg +4 -0
  2056. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-yield.svg +5 -0
  2057. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signal.svg +3 -0
  2058. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-2-fill.svg +3 -0
  2059. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-2.svg +3 -0
  2060. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-fill.svg +3 -0
  2061. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-split-fill.svg +3 -0
  2062. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-split.svg +3 -0
  2063. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost.svg +3 -0
  2064. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sim-fill.svg +4 -0
  2065. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sim-slash-fill.svg +3 -0
  2066. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sim-slash.svg +3 -0
  2067. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sim.svg +4 -0
  2068. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sina-weibo.svg +4 -0
  2069. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-btn-fill.svg +3 -0
  2070. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-btn.svg +4 -0
  2071. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-circle-fill.svg +3 -0
  2072. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-circle.svg +4 -0
  2073. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-fill.svg +3 -0
  2074. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward.svg +3 -0
  2075. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-btn-fill.svg +3 -0
  2076. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-btn.svg +4 -0
  2077. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-circle-fill.svg +3 -0
  2078. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-circle.svg +4 -0
  2079. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-fill.svg +3 -0
  2080. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end.svg +3 -0
  2081. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-btn-fill.svg +3 -0
  2082. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-btn.svg +4 -0
  2083. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-circle-fill.svg +3 -0
  2084. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-circle.svg +4 -0
  2085. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-fill.svg +3 -0
  2086. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward.svg +3 -0
  2087. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-btn-fill.svg +3 -0
  2088. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-btn.svg +4 -0
  2089. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-circle-fill.svg +3 -0
  2090. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-circle.svg +4 -0
  2091. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-fill.svg +3 -0
  2092. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start.svg +3 -0
  2093. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skype.svg +3 -0
  2094. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slack.svg +3 -0
  2095. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-circle-fill.svg +3 -0
  2096. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-circle.svg +4 -0
  2097. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-lg.svg +3 -0
  2098. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-square-fill.svg +3 -0
  2099. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-square.svg +4 -0
  2100. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash.svg +3 -0
  2101. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sliders.svg +3 -0
  2102. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sliders2-vertical.svg +3 -0
  2103. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sliders2.svg +3 -0
  2104. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/smartwatch.svg +4 -0
  2105. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/snapchat.svg +3 -0
  2106. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/snow.svg +3 -0
  2107. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/snow2.svg +3 -0
  2108. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/snow3.svg +4 -0
  2109. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-alpha-down-alt.svg +5 -0
  2110. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-alpha-down.svg +4 -0
  2111. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-alpha-up-alt.svg +5 -0
  2112. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-alpha-up.svg +4 -0
  2113. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-down-alt.svg +3 -0
  2114. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-down.svg +3 -0
  2115. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-numeric-down-alt.svg +4 -0
  2116. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-numeric-down.svg +5 -0
  2117. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-numeric-up-alt.svg +4 -0
  2118. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-numeric-up.svg +5 -0
  2119. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-up-alt.svg +3 -0
  2120. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-up.svg +3 -0
  2121. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/soundwave.svg +3 -0
  2122. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sourceforge.svg +4 -0
  2123. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/speaker-fill.svg +4 -0
  2124. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/speaker.svg +4 -0
  2125. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/speedometer.svg +4 -0
  2126. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/speedometer2.svg +4 -0
  2127. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/spellcheck.svg +4 -0
  2128. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/spotify.svg +3 -0
  2129. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/square-fill.svg +3 -0
  2130. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/square-half.svg +3 -0
  2131. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/square.svg +3 -0
  2132. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stack-overflow.svg +4 -0
  2133. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stack.svg +4 -0
  2134. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/star-fill.svg +3 -0
  2135. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/star-half.svg +3 -0
  2136. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/star.svg +3 -0
  2137. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stars.svg +3 -0
  2138. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/steam.svg +4 -0
  2139. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stickies-fill.svg +4 -0
  2140. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stickies.svg +4 -0
  2141. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sticky-fill.svg +3 -0
  2142. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sticky.svg +3 -0
  2143. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-btn-fill.svg +3 -0
  2144. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-btn.svg +4 -0
  2145. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-circle-fill.svg +3 -0
  2146. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-circle.svg +4 -0
  2147. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-fill.svg +3 -0
  2148. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop.svg +3 -0
  2149. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stoplights-fill.svg +3 -0
  2150. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stoplights.svg +4 -0
  2151. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stopwatch-fill.svg +3 -0
  2152. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stopwatch.svg +4 -0
  2153. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/strava.svg +3 -0
  2154. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stripe.svg +3 -0
  2155. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/subscript.svg +3 -0
  2156. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/substack.svg +3 -0
  2157. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/subtract.svg +3 -0
  2158. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-club-fill.svg +3 -0
  2159. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-club.svg +3 -0
  2160. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-diamond-fill.svg +3 -0
  2161. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-diamond.svg +3 -0
  2162. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-heart-fill.svg +3 -0
  2163. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-heart.svg +3 -0
  2164. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-spade-fill.svg +3 -0
  2165. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-spade.svg +3 -0
  2166. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase-fill.svg +3 -0
  2167. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase-lg-fill.svg +3 -0
  2168. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase-lg.svg +3 -0
  2169. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase.svg +4 -0
  2170. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase2-fill.svg +3 -0
  2171. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase2.svg +3 -0
  2172. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sun-fill.svg +3 -0
  2173. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sun.svg +3 -0
  2174. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunglasses.svg +3 -0
  2175. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunrise-fill.svg +3 -0
  2176. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunrise.svg +3 -0
  2177. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunset-fill.svg +3 -0
  2178. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunset.svg +3 -0
  2179. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/superscript.svg +3 -0
  2180. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/symmetry-horizontal.svg +3 -0
  2181. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/symmetry-vertical.svg +3 -0
  2182. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/table.svg +3 -0
  2183. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tablet-fill.svg +3 -0
  2184. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tablet-landscape-fill.svg +3 -0
  2185. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tablet-landscape.svg +4 -0
  2186. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tablet.svg +4 -0
  2187. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tag-fill.svg +3 -0
  2188. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tag.svg +4 -0
  2189. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tags-fill.svg +4 -0
  2190. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tags.svg +4 -0
  2191. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/taxi-front-fill.svg +3 -0
  2192. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/taxi-front.svg +4 -0
  2193. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telegram.svg +3 -0
  2194. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-fill.svg +3 -0
  2195. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-forward-fill.svg +3 -0
  2196. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-forward.svg +3 -0
  2197. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-inbound-fill.svg +3 -0
  2198. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-inbound.svg +3 -0
  2199. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-minus-fill.svg +3 -0
  2200. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-minus.svg +4 -0
  2201. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-outbound-fill.svg +3 -0
  2202. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-outbound.svg +3 -0
  2203. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-plus-fill.svg +3 -0
  2204. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-plus.svg +4 -0
  2205. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-x-fill.svg +3 -0
  2206. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-x.svg +4 -0
  2207. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone.svg +3 -0
  2208. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tencent-qq.svg +4 -0
  2209. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-dash.svg +4 -0
  2210. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-fill.svg +3 -0
  2211. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-plus.svg +4 -0
  2212. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-split.svg +4 -0
  2213. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-x.svg +4 -0
  2214. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal.svg +4 -0
  2215. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-center.svg +3 -0
  2216. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-indent-left.svg +3 -0
  2217. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-indent-right.svg +3 -0
  2218. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-left.svg +3 -0
  2219. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-paragraph.svg +3 -0
  2220. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-right.svg +3 -0
  2221. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-wrap.svg +3 -0
  2222. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/textarea-resize.svg +3 -0
  2223. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/textarea-t.svg +4 -0
  2224. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/textarea.svg +3 -0
  2225. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-half.svg +4 -0
  2226. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-high.svg +4 -0
  2227. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-low.svg +4 -0
  2228. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-snow.svg +4 -0
  2229. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-sun.svg +4 -0
  2230. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer.svg +4 -0
  2231. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/threads-fill.svg +4 -0
  2232. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/threads.svg +3 -0
  2233. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/three-dots-vertical.svg +3 -0
  2234. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/three-dots.svg +3 -0
  2235. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thunderbolt-fill.svg +3 -0
  2236. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thunderbolt.svg +4 -0
  2237. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-detailed-fill.svg +3 -0
  2238. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-detailed.svg +4 -0
  2239. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-fill.svg +3 -0
  2240. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-perforated-fill.svg +3 -0
  2241. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-perforated.svg +4 -0
  2242. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket.svg +3 -0
  2243. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tiktok.svg +3 -0
  2244. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggle-off.svg +3 -0
  2245. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggle-on.svg +3 -0
  2246. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggle2-off.svg +4 -0
  2247. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggle2-on.svg +4 -0
  2248. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggles.svg +3 -0
  2249. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggles2.svg +5 -0
  2250. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tools.svg +3 -0
  2251. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tornado.svg +3 -0
  2252. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-freight-front-fill.svg +3 -0
  2253. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-freight-front.svg +3 -0
  2254. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-front-fill.svg +3 -0
  2255. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-front.svg +3 -0
  2256. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-lightrail-front-fill.svg +3 -0
  2257. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-lightrail-front.svg +3 -0
  2258. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/translate.svg +4 -0
  2259. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/transparency.svg +3 -0
  2260. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash-fill.svg +3 -0
  2261. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash.svg +4 -0
  2262. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash2-fill.svg +3 -0
  2263. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash2.svg +3 -0
  2264. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash3-fill.svg +3 -0
  2265. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash3.svg +3 -0
  2266. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tree-fill.svg +3 -0
  2267. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tree.svg +3 -0
  2268. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trello.svg +3 -0
  2269. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/triangle-fill.svg +3 -0
  2270. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/triangle-half.svg +3 -0
  2271. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/triangle.svg +3 -0
  2272. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trophy-fill.svg +3 -0
  2273. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trophy.svg +3 -0
  2274. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tropical-storm.svg +4 -0
  2275. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/truck-flatbed.svg +3 -0
  2276. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/truck-front-fill.svg +3 -0
  2277. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/truck-front.svg +4 -0
  2278. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/truck.svg +3 -0
  2279. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tsunami.svg +3 -0
  2280. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tv-fill.svg +3 -0
  2281. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tv.svg +3 -0
  2282. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/twitch.svg +4 -0
  2283. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/twitter-x.svg +3 -0
  2284. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/twitter.svg +3 -0
  2285. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-bold.svg +3 -0
  2286. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h1.svg +3 -0
  2287. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h2.svg +3 -0
  2288. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h3.svg +3 -0
  2289. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h4.svg +3 -0
  2290. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h5.svg +3 -0
  2291. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h6.svg +3 -0
  2292. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-italic.svg +3 -0
  2293. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-strikethrough.svg +3 -0
  2294. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-underline.svg +3 -0
  2295. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type.svg +3 -0
  2296. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ubuntu.svg +3 -0
  2297. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ui-checks-grid.svg +3 -0
  2298. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ui-checks.svg +3 -0
  2299. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ui-radios-grid.svg +3 -0
  2300. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ui-radios.svg +3 -0
  2301. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/umbrella-fill.svg +3 -0
  2302. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/umbrella.svg +3 -0
  2303. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/unindent.svg +4 -0
  2304. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/union.svg +3 -0
  2305. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/unity.svg +3 -0
  2306. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/universal-access-circle.svg +4 -0
  2307. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/universal-access.svg +3 -0
  2308. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/unlock-fill.svg +3 -0
  2309. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/unlock.svg +3 -0
  2310. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/upc-scan.svg +3 -0
  2311. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/upc.svg +3 -0
  2312. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/upload.svg +4 -0
  2313. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-c-fill.svg +3 -0
  2314. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-c.svg +4 -0
  2315. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-drive-fill.svg +3 -0
  2316. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-drive.svg +3 -0
  2317. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-fill.svg +3 -0
  2318. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-micro-fill.svg +3 -0
  2319. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-micro.svg +4 -0
  2320. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-mini-fill.svg +3 -0
  2321. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-mini.svg +4 -0
  2322. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-plug-fill.svg +3 -0
  2323. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-plug.svg +3 -0
  2324. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-symbol.svg +3 -0
  2325. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb.svg +4 -0
  2326. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/valentine.svg +4 -0
  2327. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/valentine2.svg +4 -0
  2328. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vector-pen.svg +4 -0
  2329. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/view-list.svg +3 -0
  2330. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/view-stacked.svg +3 -0
  2331. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vignette.svg +4 -0
  2332. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vimeo.svg +3 -0
  2333. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vinyl-fill.svg +4 -0
  2334. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vinyl.svg +5 -0
  2335. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/virus.svg +3 -0
  2336. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/virus2.svg +3 -0
  2337. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/voicemail.svg +3 -0
  2338. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-down-fill.svg +3 -0
  2339. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-down.svg +3 -0
  2340. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-mute-fill.svg +3 -0
  2341. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-mute.svg +3 -0
  2342. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-off-fill.svg +3 -0
  2343. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-off.svg +3 -0
  2344. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-up-fill.svg +5 -0
  2345. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-up.svg +5 -0
  2346. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vr.svg +3 -0
  2347. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wallet-fill.svg +4 -0
  2348. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wallet.svg +3 -0
  2349. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wallet2.svg +3 -0
  2350. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/watch.svg +4 -0
  2351. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/water.svg +3 -0
  2352. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/webcam-fill.svg +4 -0
  2353. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/webcam.svg +4 -0
  2354. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wechat.svg +4 -0
  2355. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/whatsapp.svg +3 -0
  2356. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wifi-1.svg +3 -0
  2357. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wifi-2.svg +3 -0
  2358. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wifi-off.svg +3 -0
  2359. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wifi.svg +4 -0
  2360. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wikipedia.svg +3 -0
  2361. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wind.svg +3 -0
  2362. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-dash.svg +5 -0
  2363. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-desktop.svg +4 -0
  2364. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-dock.svg +4 -0
  2365. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-fullscreen.svg +4 -0
  2366. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-plus.svg +5 -0
  2367. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-sidebar.svg +4 -0
  2368. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-split.svg +4 -0
  2369. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-stack.svg +4 -0
  2370. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-x.svg +5 -0
  2371. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window.svg +4 -0
  2372. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/windows.svg +3 -0
  2373. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wordpress.svg +5 -0
  2374. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wrench-adjustable-circle-fill.svg +4 -0
  2375. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wrench-adjustable-circle.svg +4 -0
  2376. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wrench-adjustable.svg +4 -0
  2377. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wrench.svg +3 -0
  2378. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-circle-fill.svg +3 -0
  2379. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-circle.svg +4 -0
  2380. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-diamond-fill.svg +3 -0
  2381. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-diamond.svg +3 -0
  2382. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-lg.svg +3 -0
  2383. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-octagon-fill.svg +3 -0
  2384. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-octagon.svg +4 -0
  2385. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-square-fill.svg +3 -0
  2386. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-square.svg +4 -0
  2387. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x.svg +3 -0
  2388. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/xbox.svg +3 -0
  2389. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/yelp.svg +3 -0
  2390. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/yin-yang.svg +4 -0
  2391. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/youtube.svg +3 -0
  2392. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/zoom-in.svg +5 -0
  2393. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/zoom-out.svg +5 -0
  2394. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/package.json +91 -0
  2395. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/package-lock.json +60 -0
  2396. cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/package.json +18 -0
  2397. cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/400.html +37 -0
  2398. cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/403.html +37 -0
  2399. cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/404.html +37 -0
  2400. cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/base.html +53 -0
  2401. cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/macros.html +213 -0
  2402. cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/setup/setup.html +60 -0
  2403. cacao_accounting-0.0.0.dev20240815/cacao_accounting/validaciones/__init__.py +15 -0
  2404. cacao_accounting-0.0.0.dev20240815/cacao_accounting/ventas/__init__.py +31 -0
  2405. cacao_accounting-0.0.0.dev20240815/cacao_accounting/ventas/templates/ventas.html +19 -0
  2406. cacao_accounting-0.0.0.dev20240815/cacao_accounting/version.py +33 -0
  2407. cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/PKG-INFO +307 -0
  2408. cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/SOURCES.txt +2419 -0
  2409. cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/dependency_links.txt +1 -0
  2410. cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/entry_points.txt +2 -0
  2411. cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/requires.txt +17 -0
  2412. cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/top_level.txt +1 -0
  2413. cacao_accounting-0.0.0.dev20240815/pyproject.toml +50 -0
  2414. cacao_accounting-0.0.0.dev20240815/requirements.txt +18 -0
  2415. cacao_accounting-0.0.0.dev20240815/setup.cfg +14 -0
  2416. cacao_accounting-0.0.0.dev20240815/tests/test_00basicos.py +51 -0
  2417. cacao_accounting-0.0.0.dev20240815/tests/test_01forms.py +71 -0
  2418. cacao_accounting-0.0.0.dev20240815/tests/test_02vistas.py +63 -0
  2419. cacao_accounting-0.0.0.dev20240815/tests/test_03webactions.py +107 -0
  2420. cacao_accounting-0.0.0.dev20240815/wsgi.py +31 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2020 William José Moreno Reyes
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.