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.
- cacao_accounting-0.0.0.dev20240815/LICENSE +201 -0
- cacao_accounting-0.0.0.dev20240815/Licencias_de_Terceros.md +597 -0
- cacao_accounting-0.0.0.dev20240815/MANIFEST.in +9 -0
- cacao_accounting-0.0.0.dev20240815/PKG-INFO +307 -0
- cacao_accounting-0.0.0.dev20240815/README.md +65 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/I18N.py +27 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/__init__.py +210 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/__main__.py +31 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/admin/__init__.py +53 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/admin/registros/__init__.py +15 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/admin/templates/admin/modulos.html +10 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/admin/templates/admin.html +23 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/app/__init__.py +84 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/app/templates/app.html +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/app/templates/development.html +17 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/__init__.py +130 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/forms.py +38 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/permisos.py +811 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/registros/__init__.py +32 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/roles.py +192 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/templates/login.html +54 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/auth/templates/test_roles.html +226 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/bancos/__init__.py +44 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/bancos/templates/bancos.html +19 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/cli.py +43 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/compras/__init__.py +31 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/compras/templates/compras.html +19 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/config.py +163 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/__init__.py +620 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/auxiliares.py +125 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/ctas/__init__.py +64 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/ctas/catalogos/base.csv +208 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/forms.py +100 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/centro-costo.html +27 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/centro-costo_lista.html +109 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/cuenta.html +27 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/cuenta_lista.html +142 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/entidad.html +62 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/entidad_crear.html +72 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/entidad_editar.html +58 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/entidad_lista.html +81 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/moneda_lista.html +52 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/periodo_lista.html +66 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/proyecto_lista.html +74 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/serie_crear.html +36 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/serie_lista.html +101 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/tc_lista.html +63 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/unidad.html +25 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/unidad_crear.html +36 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad/unidad_lista.html +68 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/contabilidad/templates/contabilidad.html +37 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/database/__init__.py +493 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/database/helpers.py +146 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/__init__.py +23 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/base/__init__.py +92 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/base/data.py +27 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/dev/__init__.py +160 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/datos/dev/data.py +487 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/decorators.py +68 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/exceptions/__init__.py +39 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/exceptions/mensajes.py +21 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/gl/__init__.py +33 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/inventario/__init__.py +32 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/inventario/templates/inventario.html +19 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/logs.py +32 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/modulos/__init__.py +180 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/server.py +69 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/css/cacaoaccounting.css +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/css/dashboard.css +97 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/css/purecss-treeview.css +69 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/css/signin.css +47 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/manifest.json +41 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Cacao Accounting SVG.svg +6341 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Cacao Accounting-01.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 16px.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 256px.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 32px.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 48px.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting 64px.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Linux/Cacao Accounting /303/215cono SVG.svg" +6041 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Web/Cacao Accounting SVG.svg +6341 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Web/Cacao Accounting /303/215cono SVG.svg" +6041 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Web/Cacao Accounting-01.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Web/Cacao Accounting.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 16px.ico +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 256px.ico +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 32px.ico +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 48px.ico +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting 64px.ico +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/Windows/Cacao Accounting m/303/272ltilple tama/303/261o.ico +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/brand.svg +600 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_accounting _logo.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_accounting _logo.svg +600 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_accounting.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_accounting.svg +6041 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/cacao_logo.svg +6341 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/circle-solid.svg +1 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-144x144.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-192x192.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-36x36.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-48x48.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-72x72.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/android-icon-96x96.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-114x114.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-120x120.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-144x144.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-152x152.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-180x180.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-57x57.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-60x60.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-72x72.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-76x76.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon-precomposed.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/apple-icon.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/favicon-16x16.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/favicon-32x32.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/favicon-96x96.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/favicon.ico +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/ms-icon-144x144.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/ms-icon-150x150.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/ms-icon-310x310.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon/ms-icon-70x70.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon-16x16.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/media/favicon-32x32.png +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/.package-lock.json +51 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/cjs/enums.js +65 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/cjs/popper-base.js +939 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/cjs/popper-lite.js +1260 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/cjs/popper.js +1819 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/createPopper.js +199 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/contains.js +23 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getBoundingClientRect.js +41 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getClippingRect.js +70 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getCompositeRect.js +58 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getComputedStyle.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getDocumentElement.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getDocumentRect.js +29 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getHTMLElementScroll.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getLayoutRect.js +25 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getNodeName.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getNodeScroll.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getOffsetParent.js +69 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getParentNode.js +19 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getScrollParent.js +16 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getViewportRect.js +31 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getWindow.js +12 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getWindowScroll.js +10 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/getWindowScrollBarX.js +13 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/instanceOf.js +23 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/isLayoutViewport.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/isScrollParent.js +10 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/isTableElement.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/dom-utils/listScrollParents.js +26 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/enums.js +31 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/index.js +8 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/applyStyles.js +84 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/arrow.js +90 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/computeStyles.js +169 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/eventListeners.js +49 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/flip.js +147 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/hide.js +61 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/index.js +9 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/offset.js +54 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/popperOffsets.js +25 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/modifiers/preventOverflow.js +142 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/popper-base.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/popper-lite.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/popper.js +20 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/types.js +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/computeAutoPlacement.js +43 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/computeOffsets.js +70 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/debounce.js +15 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/detectOverflow.js +65 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/expandToHashMap.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getAltAxis.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getAltLen.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getBasePlacement.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getFreshSideObject.js +8 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getMainAxisFromPlacement.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getOppositePlacement.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getOppositeVariationPlacement.js +9 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/getVariation.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/math.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/mergeByName.js +14 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/mergePaddingObject.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/orderModifiers.js +44 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/rectToClientRect.js +8 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/uniqueBy.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/userAgent.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/esm/utils/within.js +8 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/enums.js +71 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/enums.min.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper-base.js +945 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper-base.min.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper-lite.js +1266 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper-lite.min.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper.js +1825 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/dist/umd/popper.min.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/createPopper.js +199 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/contains.js +23 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js +41 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js +70 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js +58 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js +29 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js +25 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js +69 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js +19 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js +16 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js +31 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getWindow.js +12 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js +10 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js +13 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js +23 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js +10 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js +26 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/enums.js +31 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/index.js +8 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/applyStyles.js +84 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/arrow.js +90 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/computeStyles.js +169 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/eventListeners.js +49 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/flip.js +147 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/hide.js +61 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/index.js +9 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/offset.js +54 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js +25 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js +142 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/popper-base.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/popper-lite.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/popper.js +20 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/types.js +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js +43 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/computeOffsets.js +70 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/debounce.js +15 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/detectOverflow.js +65 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/expandToHashMap.js +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getAltAxis.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getAltLen.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getBasePlacement.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js +8 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js +9 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/getVariation.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/math.js +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/mergeByName.js +14 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/orderModifiers.js +44 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/rectToClientRect.js +8 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/uniqueBy.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/userAgent.js +11 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/lib/utils/within.js +8 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/@popperjs/core/package.json +119 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-grid.css +4085 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-grid.min.css +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.css +4084 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.min.css +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-reboot.css +597 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-reboot.min.css +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.css +594 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.min.css +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-utilities.css +5402 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-utilities.min.css +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.css +5393 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.min.css +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap.css +12057 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap.min.css +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap.rtl.css +12030 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/css/bootstrap.rtl.min.css +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.bundle.js +6314 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js +7 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.esm.js +4447 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.esm.min.js +7 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.js +4494 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/dist/js/bootstrap.min.js +7 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/alert.js +90 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/base-component.js +84 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/button.js +79 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/carousel.js +388 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/collapse.js +249 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dom/data.js +63 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dom/event-handler.js +237 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dom/manipulator.js +72 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dom/selector-engine.js +104 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/dropdown.js +402 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/modal.js +320 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/offcanvas.js +246 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/popover.js +96 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/scrollspy.js +275 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/tab.js +285 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/toast.js +199 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/tooltip.js +546 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/backdrop.js +139 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/component-functions.js +42 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/config.js +68 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/focustrap.js +113 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/index.js +281 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/sanitizer.js +114 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/scrollbar.js +113 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/swipe.js +135 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/dist/util/template-factory.js +151 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/index.esm.js +19 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/index.umd.js +34 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/alert.js +87 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/base-component.js +85 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/button.js +72 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/carousel.js +474 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/collapse.js +297 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dom/data.js +55 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dom/event-handler.js +317 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dom/manipulator.js +71 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dom/selector-engine.js +126 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/dropdown.js +455 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/modal.js +378 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/offcanvas.js +282 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/popover.js +97 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/scrollspy.js +296 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/tab.js +315 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/toast.js +225 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/tooltip.js +633 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/backdrop.js +151 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/component-functions.js +35 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/config.js +65 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/focustrap.js +115 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/index.js +306 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/sanitizer.js +117 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/scrollbar.js +114 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/swipe.js +146 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/js/src/util/template-factory.js +160 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap/package.json +184 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/bootstrap-icons.svg +1 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/bootstrap-icons.css +2078 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/bootstrap-icons.json +2052 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/bootstrap-icons.min.css +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff2 +0 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/0-circle-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/0-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/0-square-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/0-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/1-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/1-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/1-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/1-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/123.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/2-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/2-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/2-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/2-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/3-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/3-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/3-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/3-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/4-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/4-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/4-square-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/4-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/5-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/5-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/5-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/5-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/6-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/6-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/6-square-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/6-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/7-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/7-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/7-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/7-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/8-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/8-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/8-square-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/8-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/9-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/9-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/9-square-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/9-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/activity.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/airplane-engines-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/airplane-engines.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/airplane-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/airplane.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alarm-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alarm.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alexa.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-bottom.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-center.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-end.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-middle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-start.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/align-top.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alipay.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alphabet-uppercase.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alphabet.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/alt.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/amazon.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/amd.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/android.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/android2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/app-indicator.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/app.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/apple.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/archive-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/archive.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-90deg-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-90deg-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-90deg-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-90deg-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-bar-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-bar-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-bar-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-bar-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-clockwise.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-counterclockwise.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left-square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right-square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-short.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-short.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left-square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-repeat.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-return-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-return-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-short.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right-square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-through-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-through-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left-square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right-square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-short.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up-square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrow-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-angle-contract.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-angle-expand.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-collapse-vertical.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-collapse.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-expand-vertical.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-expand.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-fullscreen.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-move.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows-vertical.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/arrows.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/aspect-ratio-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/aspect-ratio.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/asterisk.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/at.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/award-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/award.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/back.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack2-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack2.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack3-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack3.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack4-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backpack4.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backspace-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backspace-reverse-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backspace-reverse.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/backspace.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-3d-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-3d.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-4k-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-4k.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-8k-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-8k.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-ad-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-ad.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-ar-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-ar.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-cc-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-cc.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-hd-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-hd.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-sd-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-sd.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-tm-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-tm.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-vo-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-vo.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-vr-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-vr.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-wc-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/badge-wc.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-check-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-dash-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-x-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bag.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/balloon-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/balloon-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/balloon-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/balloon.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ban-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ban.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bandaid-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bandaid.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bank.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bank2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart-line-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart-line.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart-steps.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bar-chart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket3-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/basket3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/battery-charging.svg +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/battery-full.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/battery-half.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/battery.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/behance.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bell-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bell-slash-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bell-slash.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bell.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bezier.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bezier2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bicycle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bing.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/binoculars-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/binoculars.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/blockquote-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/blockquote-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bluetooth.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/body-text.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/book-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/book-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/book.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-check-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-dash-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-heart.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-star-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-star.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-x-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmark.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmarks-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookmarks.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bookshelf.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/boombox-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/boombox.svg +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bootstrap-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bootstrap-reboot.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bootstrap.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-all.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-bottom.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-center.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-inner.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-middle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-outer.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-style.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-top.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border-width.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/border.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bounding-box-circles.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bounding-box.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-down-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-down-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-down-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-down-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-up-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-up-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-in-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-up-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-up-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-arrow-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-seam-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box-seam.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box2-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box2-heart.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/box2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/boxes.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/braces-asterisk.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/braces.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bricks.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/briefcase-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/briefcase.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-alt-high-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-alt-high.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-alt-low-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-alt-low.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-high-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-high.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-low-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brightness-low.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brilliance.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/broadcast-pin.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/broadcast.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/browser-chrome.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/browser-edge.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/browser-firefox.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/browser-safari.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brush-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/brush.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bucket-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bucket.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bug-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bug.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-add.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-check.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-dash.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-down.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-add.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-gear.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-lock.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-slash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-gear.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-lock.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-slash.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-up.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/building.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/buildings-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/buildings.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bullseye.svg +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bus-front-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/bus-front.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/c-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/c-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/c-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/c-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cake-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cake.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cake2-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cake2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calculator-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calculator.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-check-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-date-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-date.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-day-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-day.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-event-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-event.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-minus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-minus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-month-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-month.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-range-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-range.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-week-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-week.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-x-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-check-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-check.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-date-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-date.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-day-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-day.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-event-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-event.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-minus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-minus.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-month-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-month.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-range-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-range.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-week-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-week.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-x-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2-x.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-event-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-event.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-range-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-range.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-week-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3-week.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar3.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar4-event.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar4-range.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar4-week.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/calendar4.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-reels-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-reels.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-video-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-video-off-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-video-off.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera-video.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/camera2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/capslock-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/capslock.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/capsule-pill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/capsule.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/car-front-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/car-front.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-checklist.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-heading.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-image.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-list.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/card-text.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-down-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-down-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-down-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-left-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-left-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-left-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-right-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-right-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-right-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-up-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-up-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-up-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/caret-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-check-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-dash-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-x-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cart4.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cash-coin.svg +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cash-stack.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cassette-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cassette.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cast.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cc-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cc-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cc-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cc-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-dots-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-dots.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-dots-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-dots.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-heart.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-quote-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-quote.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-text-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left-text.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-quote-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-quote.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-dots-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-dots.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-heart.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-quote-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-quote.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-text-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right-text.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-dots-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-dots.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-heart.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-quote-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-quote.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-text-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square-text.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-text-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat-text.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chat.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-all.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-lg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check2-all.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check2-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check2-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/check2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-contract.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-expand.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-bar-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-compact-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-compact-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-compact-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-compact-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-contract.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-double-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-double-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-double-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-double-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-expand.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/chevron-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/circle-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/circle-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-check-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-check.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-data-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-data.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-heart-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-heart.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-minus-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-minus.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-plus-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-plus.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-pulse.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-x-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard-x.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-check-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-check.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-data-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-data.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-heart-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-heart.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-minus-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-minus.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-plus-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-plus.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-pulse-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-pulse.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-x-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2-x.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clipboard2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clock-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clock-history.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clock.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-arrow-down-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-arrow-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-arrow-up-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-arrow-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-check-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-download-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-download.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-drizzle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-drizzle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fog-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fog.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fog2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-fog2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-hail-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-hail.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-haze-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-haze.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-haze2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-haze2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-lightning-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-lightning-rain-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-lightning-rain.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-lightning.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-minus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-minus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-moon-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-moon.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-rain-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-rain-heavy-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-rain-heavy.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-rain.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-slash-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-slash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-sleet-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-sleet.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-snow-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-snow.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-sun-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-sun.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-upload-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud-upload.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloud.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clouds-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/clouds.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloudy-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cloudy.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/code-slash.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/code-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/code.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/coin.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/collection-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/collection-play-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/collection-play.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/collection.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/columns-gap.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/columns.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/command.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/compass-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/compass.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cone-striped.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cone.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/controller.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cookie.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/copy.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cpu-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cpu.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-2-back-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-2-back.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-2-front-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-2-front.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/credit-card.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/crop.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/crosshair.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/crosshair2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup-hot-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup-hot.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup-straw.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cup.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-bitcoin.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-dollar.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-euro.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-exchange.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-pound.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-rupee.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/currency-yen.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cursor-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cursor-text.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/cursor.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-circle-dotted.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-lg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-square-dotted.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dash.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-add.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-add.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-exclamation.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-gear.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-lock.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-slash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill-x.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-fill.svg +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-gear.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-lock.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-slash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/database.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/device-hdd-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/device-hdd.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/device-ssd-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/device-ssd.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diagram-2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diagram-2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diagram-3-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diagram-3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diamond-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diamond-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/diamond.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-1-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-1.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-3-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-3.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-4-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-4.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-5-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-5.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-6-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dice-6.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/disc-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/disc.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/discord.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/display-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/display.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/displayport-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/displayport.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/distribute-horizontal.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/distribute-vertical.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/door-closed-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/door-closed.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/door-open-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/door-open.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dot.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/download.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dpad-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dpad.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dribbble.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/dropbox.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/droplet-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/droplet-half.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/droplet.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/duffle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/duffle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ear-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ear.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/earbuds.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel2-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel3-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/easel3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/egg-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/egg-fried.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/egg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eject-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eject.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-angry-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-angry.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-astonished-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-astonished.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-dizzy-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-dizzy.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-expressionless-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-expressionless.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-frown-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-frown.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-grimace-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-grimace.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-grin-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-grin.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-heart-eyes-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-heart-eyes.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-kiss-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-kiss.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-laughing-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-laughing.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-neutral-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-neutral.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-smile-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-smile-upside-down-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-smile-upside-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-smile.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-sunglasses-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-sunglasses.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-surprise-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-surprise.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-tear-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-tear.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-wink-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/emoji-wink.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-arrow-down-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-arrow-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-arrow-up-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-arrow-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-at-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-at.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-check-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-dash-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-exclamation-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-heart-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-open-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-open-heart-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-open-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-open.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-paper-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-paper-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-paper-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-paper.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-plus-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-slash-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-slash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-x-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/envelope.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eraser-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eraser.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/escape.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ethernet.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ev-front-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ev-front.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ev-station-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ev-station.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-diamond-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-diamond.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-lg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-octagon-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-octagon.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-triangle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation-triangle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclamation.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exclude.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/explicit-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/explicit.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/exposure.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eye-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eye-slash-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eye-slash.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eye.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eyedropper.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/eyeglasses.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/facebook.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fan.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fast-forward.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/feather.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/feather2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-arrow-down-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-arrow-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-arrow-up-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-arrow-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-bar-graph-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-bar-graph.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-binary-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-binary.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-break-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-break.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-check-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-code-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-code.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-diff-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-diff.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-arrow-down-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-arrow-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-arrow-up-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-arrow-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-bar-graph-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-bar-graph.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-binary-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-binary.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-break-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-break.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-check-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-code-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-code.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-diff-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-diff.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-easel-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-easel.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-excel-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-excel.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-font-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-font.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-image-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-image.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-lock-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-lock.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-lock2-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-lock2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-medical-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-medical.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-minus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-minus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-music-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-music.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-pdf-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-pdf.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-person-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-person.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-play-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-play.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-post-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-post.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-ppt-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-ppt.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-richtext-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-richtext.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-ruled-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-ruled.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-slides-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-slides.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-spreadsheet-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-spreadsheet.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-text-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-text.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-word-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-word.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-x-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-zip-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark-zip.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-earmark.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-easel-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-easel.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-excel-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-excel.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-font-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-font.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-image-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-image.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-lock-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-lock.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-lock2-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-lock2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-medical-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-medical.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-minus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-minus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-music-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-music.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-pdf-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-pdf.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-person-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-person.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-play-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-play.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-post-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-post.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-ppt-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-ppt.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-richtext-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-richtext.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-ruled-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-ruled.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-slides-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-slides.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-spreadsheet-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-spreadsheet.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-text-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-text.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-word-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-word.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-x-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-zip-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file-zip.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/file.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/files-alt.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/files.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-aac.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-ai.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-bmp.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-cs.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-css.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-csv.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-doc.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-docx.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-exe.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-gif.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-heic.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-html.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-java.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-jpg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-js.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-json.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-jsx.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-key.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-m4p.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-md.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-mdx.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-mov.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-mp3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-mp4.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-otf.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-pdf.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-php.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-png.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-ppt.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-pptx.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-psd.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-py.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-raw.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-rb.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-sass.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-scss.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-sh.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-sql.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-svg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-tiff.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-tsx.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-ttf.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-txt.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-wav.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-woff.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-xls.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-xlsx.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-xml.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filetype-yml.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/film.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/filter.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fingerprint.svg +7 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fire.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flag-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flag.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/floppy-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/floppy.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/floppy2-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/floppy2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flower1.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flower2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/flower3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-minus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-symlink-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-symlink.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder2-open.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/folder2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fonts.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/forward-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/forward.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/front.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fuel-pump-diesel-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fuel-pump-diesel.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fuel-pump-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fuel-pump.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fullscreen-exit.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/fullscreen.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/funnel-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/funnel.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gear-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gear-wide-connected.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gear-wide.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gear.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gem.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-ambiguous.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-female.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-male.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-neuter.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gender-trans.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/geo-alt-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/geo-alt.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/geo-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/geo.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gift-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gift.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/git.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/github.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gitlab.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe-americas.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe-asia-australia.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe-central-south-asia.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe-europe-africa.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/globe2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/google-play.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/google.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/gpu-card.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/graph-down-arrow.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/graph-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/graph-up-arrow.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/graph-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-1x2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-1x2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x2-gap-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x2-gap.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x3-gap-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x3-gap.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-3x3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grid.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grip-horizontal.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/grip-vertical.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/h-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/h-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/h-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/h-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hammer.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-index-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-index-thumb-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-index-thumb.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-index.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-thumbs-down-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-thumbs-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-thumbs-up-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hand-thumbs-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/handbag-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/handbag.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hash.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-network-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-network.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-rack-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-rack.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-stack-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd-stack.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdd.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdmi-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hdmi.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/headphones.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/headset-vr.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/headset.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-arrow.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-pulse-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart-pulse.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heartbreak-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heartbreak.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hearts.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heptagon-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heptagon-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/heptagon.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hexagon-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hexagon-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hexagon.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/highlighter.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/highlights.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hospital-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hospital.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hourglass-bottom.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hourglass-split.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hourglass-top.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hourglass.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-add-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-add.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-check-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-dash-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-door-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-door.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-down-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-exclamation-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-gear-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-gear.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-heart-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-heart.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-lock-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-lock.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-slash-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-slash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-up-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-x-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/house.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/houses-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/houses.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hr.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hurricane.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/hypnotize.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/image-alt.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/image-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/image.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/images.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/inbox-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/inbox.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/inboxes-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/inboxes.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/incognito.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/indent.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/infinity.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-lg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/info.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/input-cursor-text.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/input-cursor.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/instagram.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/intersect.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-album.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-arrow-down.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-arrow-up.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-bookmark-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-bookmark.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-check.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-code.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-medical.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-minus.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-plus.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-richtext.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-text.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal-x.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journal.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/journals.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/joystick.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/justify-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/justify-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/justify.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/kanban-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/kanban.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/key-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/key.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/keyboard-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/keyboard.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ladder.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lamp-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lamp.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/laptop-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/laptop.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layer-backward.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layer-forward.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layers-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layers-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layers.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-sidebar-inset-reverse.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-sidebar-inset.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-sidebar-reverse.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-sidebar.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-split.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-text-sidebar-reverse.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-text-sidebar.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-text-window-reverse.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-text-window.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-three-columns.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/layout-wtf.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/life-preserver.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightbulb-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightbulb-off-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightbulb-off.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightbulb.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightning-charge-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightning-charge.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightning-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lightning.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/line.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/link-45deg.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/link.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/linkedin.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-check.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-columns-reverse.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-columns.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-nested.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-ol.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-stars.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-task.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list-ul.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/list.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lock-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lock.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/luggage-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/luggage.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lungs-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/lungs.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/magic.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/magnet-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/magnet.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mailbox-flag.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mailbox.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mailbox2-flag.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mailbox2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/map-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/map.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/markdown-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/markdown.svg +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/marker-tip.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mask.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mastodon.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/medium.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/megaphone-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/megaphone.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/memory.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-app-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-app.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-button-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-button-wide-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-button-wide.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-button.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/menu-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/messenger.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/meta.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mic-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mic-mute-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mic-mute.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mic.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/microsoft-teams.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/microsoft.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/minecart-loaded.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/minecart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/modem-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/modem.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moisture.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moon-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moon-stars-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moon-stars.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/moon.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mortarboard-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mortarboard.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/motherboard-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/motherboard.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse3-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/mouse3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-note-beamed.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-note-list.svg +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-note.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-player-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/music-player.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/newspaper.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nintendo-switch.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/node-minus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/node-minus.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/node-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/node-plus.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/noise-reduction.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nut-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nut.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nvidia.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nvme-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/nvme.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/octagon-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/octagon-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/octagon.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/opencollective.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/optical-audio-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/optical-audio.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/option.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/outlet.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/p-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/p-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/p-square-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/p-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/paint-bucket.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/palette-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/palette.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/palette2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/paperclip.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/paragraph.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pass-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pass.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/passport-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/passport.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-check-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-exclamation-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-minus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-minus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-question-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/patch-question.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pause.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/paypal.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pc-display-horizontal.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pc-display.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pc-horizontal.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pc.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pci-card-network.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pci-card-sound.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pci-card.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/peace-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/peace.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pen-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pen.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pencil-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pencil-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pencil.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pentagon-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pentagon-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pentagon.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/people-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/people.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/percent.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-add.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-arms-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-badge-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-badge.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-bounding-box.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-check-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-dash-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-add.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-gear.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-lock.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-slash.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-gear.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-hearts.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-lines-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-lock.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-plus-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-raised-hand.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-rolodex.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-slash.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-standing-dress.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-standing.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-vcard-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-vcard.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-video.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-video2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-video3.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-walking.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-wheelchair.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-workspace.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-x-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/person.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-flip.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-landscape-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-landscape.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-vibrate-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone-vibrate.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/phone.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pie-chart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pie-chart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/piggy-bank-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/piggy-bank.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-angle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-angle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-map-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin-map.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pin.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pinterest.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pip-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/pip.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/play.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/playstation.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plug-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plug.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plugin.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-circle-dotted.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-lg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-slash-minus.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-square-dotted.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/plus.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postage-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postage-heart-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postage-heart.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postage.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postcard-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postcard-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postcard-heart.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/postcard.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/power.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/prescription.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/prescription2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/printer-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/printer.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/projector-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/projector.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/puzzle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/puzzle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/qr-code-scan.svg +7 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/qr-code.svg +7 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-diamond-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-diamond.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-lg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-octagon-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-octagon.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/question.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/quora.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/quote.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/r-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/r-circle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/r-square-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/r-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/radar.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/radioactive.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rainbow.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/receipt-cutoff.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/receipt.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-0.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-1.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reception-4.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record2-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/record2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/recycle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reddit.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/regex.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/repeat-1.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/repeat.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reply-all-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reply-all.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reply-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/reply.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rewind.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/robot.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rocket-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rocket-takeoff-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rocket-takeoff.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rocket.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/router-fill.svg +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/router.svg +6 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rss-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rss.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/rulers.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/safe-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/safe.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/safe2-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/safe2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/save-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/save.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/save2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/save2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/scissors.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/scooter.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/screwdriver.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sd-card-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sd-card.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/search-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/search-heart.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/search.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/segmented-nav.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-arrow-down-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-arrow-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-arrow-up-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-arrow-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-check-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-dash-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-exclamation-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-plus-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-slash-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-slash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-x-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/send.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/server.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shadows.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/share-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/share.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-check.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-exclamation.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-check.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-exclamation.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-minus.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-plus.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill-x.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-lock-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-lock.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-minus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-shaded.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-slash-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-slash.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shield.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shift-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shift.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shop-window.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shop.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/shuffle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-dead-end-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-dead-end.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-do-not-enter-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-do-not-enter.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-side-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-side.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-t-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-t.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-y-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection-y.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-intersection.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-merge-left-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-merge-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-merge-right-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-merge-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-left-turn-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-left-turn.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-parking-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-parking.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-right-turn-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-no-right-turn.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-railroad-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-railroad.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-stop-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-stop-lights-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-stop-lights.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-stop.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-left-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-right-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-slight-left-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-slight-left.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-slight-right-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-turn-slight-right.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-yield-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sign-yield.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signal.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-split-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost-split.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/signpost.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sim-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sim-slash-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sim-slash.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sim.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sina-weibo.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-backward.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-end.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-forward.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skip-start.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/skype.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slack.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-lg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/slash.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sliders.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sliders2-vertical.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sliders2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/smartwatch.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/snapchat.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/snow.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/snow2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/snow3.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-alpha-down-alt.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-alpha-down.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-alpha-up-alt.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-alpha-up.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-down-alt.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-numeric-down-alt.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-numeric-down.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-numeric-up-alt.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-numeric-up.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-up-alt.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sort-up.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/soundwave.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sourceforge.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/speaker-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/speaker.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/speedometer.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/speedometer2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/spellcheck.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/spotify.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/square-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/square.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stack-overflow.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stack.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/star-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/star-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/star.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stars.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/steam.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stickies-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stickies.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sticky-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sticky.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-btn-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-btn.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stop.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stoplights-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stoplights.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stopwatch-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stopwatch.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/strava.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/stripe.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/subscript.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/substack.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/subtract.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-club-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-club.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-diamond-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-diamond.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-heart-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-heart.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-spade-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suit-spade.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase-lg-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase-lg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/suitcase2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sun-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sun.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunglasses.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunrise-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunrise.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunset-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/sunset.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/superscript.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/symmetry-horizontal.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/symmetry-vertical.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/table.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tablet-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tablet-landscape-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tablet-landscape.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tablet.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tag-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tag.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tags-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tags.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/taxi-front-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/taxi-front.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telegram.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-forward-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-forward.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-inbound-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-inbound.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-minus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-minus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-outbound-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-outbound.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-plus-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-x-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/telephone.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tencent-qq.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-dash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-plus.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-split.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal-x.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/terminal.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-center.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-indent-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-indent-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-left.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-paragraph.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-right.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/text-wrap.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/textarea-resize.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/textarea-t.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/textarea.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-half.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-high.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-low.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-snow.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer-sun.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thermometer.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/threads-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/threads.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/three-dots-vertical.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/three-dots.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thunderbolt-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/thunderbolt.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-detailed-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-detailed.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-perforated-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket-perforated.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ticket.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tiktok.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggle-off.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggle-on.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggle2-off.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggle2-on.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggles.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/toggles2.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tools.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tornado.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-freight-front-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-freight-front.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-front-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-front.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-lightrail-front-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/train-lightrail-front.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/translate.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/transparency.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash2-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash3-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trash3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tree-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tree.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trello.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/triangle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/triangle-half.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/triangle.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trophy-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/trophy.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tropical-storm.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/truck-flatbed.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/truck-front-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/truck-front.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/truck.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tsunami.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tv-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/tv.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/twitch.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/twitter-x.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/twitter.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-bold.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h1.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h3.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h4.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h5.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-h6.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-italic.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-strikethrough.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type-underline.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/type.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ubuntu.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ui-checks-grid.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ui-checks.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ui-radios-grid.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/ui-radios.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/umbrella-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/umbrella.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/unindent.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/union.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/unity.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/universal-access-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/universal-access.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/unlock-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/unlock.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/upc-scan.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/upc.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/upload.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-c-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-c.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-drive-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-drive.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-micro-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-micro.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-mini-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-mini.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-plug-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-plug.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb-symbol.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/usb.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/valentine.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/valentine2.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vector-pen.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/view-list.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/view-stacked.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vignette.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vimeo.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vinyl-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vinyl.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/virus.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/virus2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/voicemail.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-down-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-down.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-mute-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-mute.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-off-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-off.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-up-fill.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/volume-up.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/vr.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wallet-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wallet.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wallet2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/watch.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/water.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/webcam-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/webcam.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wechat.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/whatsapp.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wifi-1.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wifi-2.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wifi-off.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wifi.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wikipedia.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wind.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-dash.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-desktop.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-dock.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-fullscreen.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-plus.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-sidebar.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-split.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-stack.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window-x.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/window.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/windows.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wordpress.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wrench-adjustable-circle-fill.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wrench-adjustable-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wrench-adjustable.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/wrench.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-circle-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-circle.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-diamond-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-diamond.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-lg.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-octagon-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-octagon.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-square-fill.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x-square.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/x.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/xbox.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/yelp.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/yin-yang.svg +4 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/youtube.svg +3 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/zoom-in.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/icons/zoom-out.svg +5 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/node_modules/bootstrap-icons/package.json +91 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/package-lock.json +60 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/static/package.json +18 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/400.html +37 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/403.html +37 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/404.html +37 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/base.html +53 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/macros.html +213 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/templates/setup/setup.html +60 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/validaciones/__init__.py +15 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/ventas/__init__.py +31 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/ventas/templates/ventas.html +19 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting/version.py +33 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/PKG-INFO +307 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/SOURCES.txt +2419 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/dependency_links.txt +1 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/entry_points.txt +2 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/requires.txt +17 -0
- cacao_accounting-0.0.0.dev20240815/cacao_accounting.egg-info/top_level.txt +1 -0
- cacao_accounting-0.0.0.dev20240815/pyproject.toml +50 -0
- cacao_accounting-0.0.0.dev20240815/requirements.txt +18 -0
- cacao_accounting-0.0.0.dev20240815/setup.cfg +14 -0
- cacao_accounting-0.0.0.dev20240815/tests/test_00basicos.py +51 -0
- cacao_accounting-0.0.0.dev20240815/tests/test_01forms.py +71 -0
- cacao_accounting-0.0.0.dev20240815/tests/test_02vistas.py +63 -0
- cacao_accounting-0.0.0.dev20240815/tests/test_03webactions.py +107 -0
- 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.
|