From 017d7a866dd3e452b4689e57b43b2e3491dd160e Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Wed, 3 Jul 2024 11:58:05 +0200 Subject: [PATCH 01/79] feat: refs #6822 --- src/pages/Entry/Card/EntryDescriptor.vue | 31 +++++++++++++++++++++--- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/src/pages/Entry/Card/EntryDescriptor.vue b/src/pages/Entry/Card/EntryDescriptor.vue index a55ad67cd..c916dbb53 100644 --- a/src/pages/Entry/Card/EntryDescriptor.vue +++ b/src/pages/Entry/Card/EntryDescriptor.vue @@ -1,7 +1,9 @@ <script setup> -import { ref, computed, watch, onMounted } from 'vue'; +import { ref, computed, onMounted } from 'vue'; import { useRoute } from 'vue-router'; import { useI18n } from 'vue-i18n'; +import axios from 'axios'; +import { useQuasar } from 'quasar'; import CardDescriptor from 'components/ui/CardDescriptor.vue'; import VnLv from 'src/components/ui/VnLv.vue'; @@ -11,6 +13,8 @@ import { useState } from 'src/composables/useState'; import { toDate } from 'src/filters'; import { usePrintService } from 'composables/usePrintService'; import { getUrl } from 'src/composables/getUrl'; +import useNotify from 'src/composables/useNotify.js'; +import VnConfirm from 'src/components/ui/VnConfirm.vue'; const $props = defineProps({ id: { @@ -20,12 +24,14 @@ const $props = defineProps({ }, }); +const quasar = useQuasar(); const route = useRoute(); const { t } = useI18n(); const { openReport } = usePrintService(); const state = useState(); const entryDescriptorRef = ref(null); const url = ref(); +const { notify } = useNotify(); const entryFilter = { include: [ @@ -102,7 +108,20 @@ const showEntryReport = () => { openReport(`Entries/${route.params.id}/entry-order-pdf`); }; -watch; +const transferEntry = async () => { + await axios.post(`Entries/${route.params.id}/transfer`); + notify('globals.dataSaved', 'positive'); +} + +const openDialog = () => { + quasar.dialog({ + component: VnConfirm, + componentProps: { + title: t('Se van a transferir las compra al dia siguiente'), + promise: transferEntry, + }, + }); +} </script> <template> @@ -117,10 +136,13 @@ watch; data-key="entry" :summary="$attrs" > - <template #menu="{ entity }"> - <QItem v-ripple clickable @click="showEntryReport(entity)"> + <template #menu> + <QItem v-ripple clickable @click="showEntryReport"> <QItemSection>{{ t('Show entry report') }}</QItemSection> </QItem> + <QItem v-ripple clickable @click="openDialog"> + <QItemSection>{{ t('Transfer Entry') }}</QItemSection> + </QItem> </template> <template #body="{ entity }"> <VnLv @@ -205,4 +227,5 @@ es: Go to module index: Ir al índice del modulo Inventory entry: Es inventario Virtual entry: Es una redada + Transfer Entry: Transferir Entrada </i18n> From 652e5c1838f63c85fe44744d7dc738223d80cd16 Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Wed, 17 Jul 2024 10:26:00 +0200 Subject: [PATCH 02/79] feat: refs #6822 redirection --- src/pages/Entry/Card/EntryDescriptor.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/Entry/Card/EntryDescriptor.vue b/src/pages/Entry/Card/EntryDescriptor.vue index b26f380f1..06b5c8c8f 100644 --- a/src/pages/Entry/Card/EntryDescriptor.vue +++ b/src/pages/Entry/Card/EntryDescriptor.vue @@ -109,8 +109,10 @@ const showEntryReport = () => { }; const transferEntry = async () => { - await axios.post(`Entries/${route.params.id}/transfer`); + let response = await axios.post(`Entries/${route.params.id}/transfer`); notify('globals.dataSaved', 'positive'); + const url = `#/entry/${response.data.newEntryFk[0].newEntryFk}/summary`; + window.open(url, '_blank'); } const openDialog = () => { From 257ec7926e2be3074b5c36a42ef880ce59289e00 Mon Sep 17 00:00:00 2001 From: carlossa <carlossa@verdnatura.es> Date: Tue, 8 Oct 2024 12:18:18 +0200 Subject: [PATCH 03/79] refs #7917 fix routeCard --- src/pages/Route/Card/RouteCard.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/Route/Card/RouteCard.vue b/src/pages/Route/Card/RouteCard.vue index 461f2d95e..fccf0cda6 100644 --- a/src/pages/Route/Card/RouteCard.vue +++ b/src/pages/Route/Card/RouteCard.vue @@ -7,10 +7,12 @@ import RouteSearchbar from 'pages/Route/Card/RouteSearchbar.vue'; <template> <VnCard data-key="Route" - base-url="Routes" :descriptor="RouteDescriptor" :filter-panel="RouteFilter" search-data-key="RouteList" + :searchbar-props="{ + url: 'Routes/filter', + }" > <template #searchbar> <RouteSearchbar /> From f0f6a7e9a305e71be230ce3722f90a272c94df80 Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Fri, 22 Nov 2024 14:10:46 +0100 Subject: [PATCH 04/79] feat: refs #6629 addressObservation --- .../components/CustomerAddressEdit.vue | 46 +++++++++++++++---- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/src/pages/Customer/components/CustomerAddressEdit.vue b/src/pages/Customer/components/CustomerAddressEdit.vue index 0ea8315d6..af15962fa 100644 --- a/src/pages/Customer/components/CustomerAddressEdit.vue +++ b/src/pages/Customer/components/CustomerAddressEdit.vue @@ -2,7 +2,7 @@ import { onBeforeMount, ref } from 'vue'; import { useI18n } from 'vue-i18n'; import { useRoute, useRouter } from 'vue-router'; - +import { useQuasar } from 'quasar'; import axios from 'axios'; import VnLocation from 'src/components/common/VnLocation.vue'; import FetchData from 'components/FetchData.vue'; @@ -12,11 +12,12 @@ import VnInput from 'src/components/common/VnInput.vue'; import VnSelect from 'src/components/common/VnSelect.vue'; import VnSelectDialog from 'src/components/common/VnSelectDialog.vue'; import CustomerNewCustomsAgent from 'src/pages/Customer/components/CustomerNewCustomsAgent.vue'; +import VnConfirm from 'components/ui/VnConfirm.vue'; const { t } = useI18n(); const route = useRoute(); const router = useRouter(); - +const quasar = useQuasar(); const urlUpdate = ref(''); const agencyModes = ref([]); const incoterms = ref([]); @@ -27,7 +28,7 @@ let originalNotes = []; const deletes = ref([]); onBeforeMount(() => { - urlUpdate.value = `Clients/${route.params.id}/updateAddress/${route.params.addressId}`; + updateAddress(); }); const getData = async (observations) => { @@ -82,6 +83,14 @@ const deleteNote = (id, index) => { notes.value.splice(index, 1); }; +const updateAddress = () => { + urlUpdate.value = `Clients/${route.params.id}/updateAddress/${route.params.addressId}`; +}; +const resetAndSend = async (payload) => { + await axios.post('AddressObservations/crud', payload); + notes.value = []; + deletes.value = []; +}; const onDataSaved = async () => { let payload = { creates: notes.value.filter((note) => note.$isNew), @@ -100,11 +109,30 @@ const onDataSaved = async () => { where: { id: note.id }, })), }; - - await axios.post('AddressObservations/crud', payload); - notes.value = []; - deletes.value = []; - toCustomerAddress(); + if (payload.updates.length) { + quasar + .dialog({ + component: VnConfirm, + componentProps: { + title: t( + 'Do you also want to modify the states of all the tickets that are about to be served?' + ), + message: t('confirmDeletionMessage'), + }, + }) + .onOk(async () => { + resetAndSend(payload); + updateAddress(payload); + toCustomerAddress(); + }) + .onCancel(async () => { + resetAndSend(payload); + toCustomerAddress(); + }); + // .hide(toCustomerAddress); + } else { + resetAndSend(payload); + } }; const toCustomerAddress = () => { @@ -142,7 +170,7 @@ function handleLocation(data, location) { :observe-form-changes="false" :url-update="urlUpdate" :url="`Addresses/${route.params.addressId}`" - @on-data-saved="onDataSaved()" + @on-data-saved="onDataSaved" auto-load model="client" > From b07286d43dc013b2ea87d85ef0472e7f364f6e86 Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Tue, 26 Nov 2024 13:06:41 +0100 Subject: [PATCH 05/79] feat: refs #6629 update --- src/components/FormModel.vue | 4 +- .../components/CustomerAddressEdit.vue | 46 +++++++++++++------ 2 files changed, 35 insertions(+), 15 deletions(-) diff --git a/src/components/FormModel.vue b/src/components/FormModel.vue index bfb470c48..75f0648c8 100644 --- a/src/components/FormModel.vue +++ b/src/components/FormModel.vue @@ -207,7 +207,9 @@ async function save() { isLoading.value = true; try { formData.value = trimData(formData.value); - const body = $props.mapper ? $props.mapper(formData.value) : formData.value; + const body = $props.mapper + ? $props.mapper(formData.value, originalData.value) + : formData.value; const method = $props.urlCreate ? 'post' : 'patch'; const url = $props.urlCreate || $props.urlUpdate || $props.url || arrayData.store.url; diff --git a/src/pages/Customer/components/CustomerAddressEdit.vue b/src/pages/Customer/components/CustomerAddressEdit.vue index af15962fa..8e464dd7c 100644 --- a/src/pages/Customer/components/CustomerAddressEdit.vue +++ b/src/pages/Customer/components/CustomerAddressEdit.vue @@ -28,7 +28,7 @@ let originalNotes = []; const deletes = ref([]); onBeforeMount(() => { - updateAddress(); + urlUpdate.value = `Clients/${route.params.id}/updateAddress/${route.params.addressId}`; }); const getData = async (observations) => { @@ -83,16 +83,21 @@ const deleteNote = (id, index) => { notes.value.splice(index, 1); }; -const updateAddress = () => { - urlUpdate.value = `Clients/${route.params.id}/updateAddress/${route.params.addressId}`; +const updateAddress = async () => { + /* await axios.patch( + `Clients/${route.params.id}/updateAddress/${route.params.addressId}?updateObservations=true` + );*/ + urlUpdate.value = `Clients/${route.params.id}/updateAddress/${route.params.addressId}?updateObservations=true`; + + console.log('gg'); }; const resetAndSend = async (payload) => { await axios.post('AddressObservations/crud', payload); notes.value = []; deletes.value = []; }; -const onDataSaved = async () => { - let payload = { +function getPayload() { + return { creates: notes.value.filter((note) => note.$isNew), deletes: deletes.value, updates: notes.value @@ -109,7 +114,17 @@ const onDataSaved = async () => { where: { id: note.id }, })), }; - if (payload.updates.length) { +} +const onDataSaved = async (payload) => { + await axios.post('AddressObservations/crud', payload); + notes.value = []; + deletes.value = []; + toCustomerAddress(); +}; + +async function handleDialog(data) { + console.error(data); + if (getPayload().updates.length) { quasar .dialog({ component: VnConfirm, @@ -121,19 +136,22 @@ const onDataSaved = async () => { }, }) .onOk(async () => { - resetAndSend(payload); - updateAddress(payload); - toCustomerAddress(); + // await resetAndSend(payload); + await updateAddress(); + await onDataSaved(data); }) .onCancel(async () => { - resetAndSend(payload); - toCustomerAddress(); + // await resetAndSend(payload); + await onDataSaved(data); }); // .hide(toCustomerAddress); } else { - resetAndSend(payload); + console.log('sinModificarObservation'); + await onDataSaved(data); + // await resetAndSend(payload); + // toCustomerAddress(); } -}; +} const toCustomerAddress = () => { router.push({ @@ -170,7 +188,7 @@ function handleLocation(data, location) { :observe-form-changes="false" :url-update="urlUpdate" :url="`Addresses/${route.params.addressId}`" - @on-data-saved="onDataSaved" + :save-fn="handleDialog" auto-load model="client" > From 8a0b65998ea2c437a801eb56a88c72fefaa4d7ab Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Tue, 26 Nov 2024 13:41:26 +0100 Subject: [PATCH 06/79] feat: refs #6629 customerAddressEdit --- .../components/CustomerAddressEdit.vue | 46 +++++++++++-------- 1 file changed, 28 insertions(+), 18 deletions(-) diff --git a/src/pages/Customer/components/CustomerAddressEdit.vue b/src/pages/Customer/components/CustomerAddressEdit.vue index 8e464dd7c..b403d1012 100644 --- a/src/pages/Customer/components/CustomerAddressEdit.vue +++ b/src/pages/Customer/components/CustomerAddressEdit.vue @@ -83,19 +83,27 @@ const deleteNote = (id, index) => { notes.value.splice(index, 1); }; -const updateAddress = async () => { - /* await axios.patch( - `Clients/${route.params.id}/updateAddress/${route.params.addressId}?updateObservations=true` - );*/ - urlUpdate.value = `Clients/${route.params.id}/updateAddress/${route.params.addressId}?updateObservations=true`; +const updateAddress = async (data) => { + await axios.patch(urlUpdate.value, data); +}; + +const updateAddressTicket = async () => { + urlUpdate.value += '?updateObservations=true'; console.log('gg'); }; -const resetAndSend = async (payload) => { + +const updateObservations = async (payload) => { await axios.post('AddressObservations/crud', payload); notes.value = []; deletes.value = []; + toCustomerAddress(); }; +async function updateAll({ data, payload }) { + console.log('Si no hay notas modificadas'); + await updateAddress(data); + await updateObservations(payload); +} function getPayload() { return { creates: notes.value.filter((note) => note.$isNew), @@ -115,16 +123,12 @@ function getPayload() { })), }; } -const onDataSaved = async (payload) => { - await axios.post('AddressObservations/crud', payload); - notes.value = []; - deletes.value = []; - toCustomerAddress(); -}; async function handleDialog(data) { console.error(data); - if (getPayload().updates.length) { + const payload = getPayload(); + const body = { data, payload }; + if (payload.updates.length) { quasar .dialog({ component: VnConfirm, @@ -136,24 +140,30 @@ async function handleDialog(data) { }, }) .onOk(async () => { + console.log('Actualiza notas'); // await resetAndSend(payload); - await updateAddress(); - await onDataSaved(data); + await updateAll(body); + await updateAddressTicket(); + toCustomerAddress(); }) .onCancel(async () => { // await resetAndSend(payload); - await onDataSaved(data); + console.log('Actualiza datos'); + await updateAll(body); + toCustomerAddress(); }); // .hide(toCustomerAddress); } else { - console.log('sinModificarObservation'); - await onDataSaved(data); + updateAll(body); + toCustomerAddress(); // await resetAndSend(payload); // toCustomerAddress(); } } const toCustomerAddress = () => { + notes.value = []; + deletes.value = []; router.push({ name: 'CustomerAddress', params: { From 3ee8ff78caecb36180e0df12e13277b45442b43e Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Tue, 24 Dec 2024 12:16:37 +0100 Subject: [PATCH 07/79] fix: change url --- src/pages/Customer/CustomerList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Customer/CustomerList.vue b/src/pages/Customer/CustomerList.vue index 26264941f..a8e5f1714 100644 --- a/src/pages/Customer/CustomerList.vue +++ b/src/pages/Customer/CustomerList.vue @@ -404,7 +404,7 @@ function handleLocation(data, location) { <VnTable ref="tableRef" data-key="CustomerList" - url="Clients/filter" + url="Clients/extendedListFilter" :create="{ urlCreate: 'Clients/createWithUser', title: t('globals.pageTitles.customerCreate'), From 2c86fb17f14ccdb8383198f22cc1f7bbdee97511 Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Tue, 24 Dec 2024 12:16:46 +0100 Subject: [PATCH 08/79] fix: fix some filters --- src/pages/Customer/CustomerList.vue | 45 ++++++++++++++++++++++------- 1 file changed, 34 insertions(+), 11 deletions(-) diff --git a/src/pages/Customer/CustomerList.vue b/src/pages/Customer/CustomerList.vue index a8e5f1714..89a0f5986 100644 --- a/src/pages/Customer/CustomerList.vue +++ b/src/pages/Customer/CustomerList.vue @@ -2,15 +2,16 @@ import { ref, computed, markRaw } from 'vue'; import { useI18n } from 'vue-i18n'; import { useRouter } from 'vue-router'; +import { useSummaryDialog } from 'src/composables/useSummaryDialog'; +import { toDate } from 'src/filters'; + +import RightMenu from 'src/components/common/RightMenu.vue'; +import CustomerSummary from './Card/CustomerSummary.vue'; +import CustomerFilter from './CustomerFilter.vue'; import VnTable from 'components/VnTable/VnTable.vue'; import VnLocation from 'src/components/common/VnLocation.vue'; import VnSearchbar from 'components/ui/VnSearchbar.vue'; -import CustomerSummary from './Card/CustomerSummary.vue'; -import { useSummaryDialog } from 'src/composables/useSummaryDialog'; -import RightMenu from 'src/components/common/RightMenu.vue'; import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue'; -import { toDate } from 'src/filters'; -import CustomerFilter from './CustomerFilter.vue'; import VnSelectWorker from 'src/components/common/VnSelectWorker.vue'; const { t } = useI18n(); @@ -193,6 +194,9 @@ const columns = computed(() => [ name: 'businessTypeFk', create: true, component: 'select', + columnFilter: { + inWhere: true, + }, attrs: { url: 'BusinessTypes', fields: ['code', 'description'], @@ -221,7 +225,7 @@ const columns = computed(() => [ { align: 'left', label: t('customer.extendedList.tableVisibleColumns.sageTaxTypeFk'), - name: 'sageTaxTypeFk', + name: 'CodigoIva', columnFilter: { component: 'select', attrs: { @@ -236,7 +240,7 @@ const columns = computed(() => [ { align: 'left', label: t('customer.extendedList.tableVisibleColumns.sageTransactionTypeFk'), - name: 'sageTransactionTypeFk', + name: 'CodigoTransaccion', columnFilter: { component: 'select', attrs: { @@ -405,6 +409,7 @@ function handleLocation(data, location) { ref="tableRef" data-key="CustomerList" url="Clients/extendedListFilter" + order="id DESC" :create="{ urlCreate: 'Clients/createWithUser', title: t('globals.pageTitles.customerCreate'), @@ -414,10 +419,9 @@ function handleLocation(data, location) { isEqualizated: false, }, }" - order="id DESC" :columns="columns" - redirect="customer" :right-search="false" + redirect="customer" > <template #more-create-dialog="{ data }"> <VnSelectWorker @@ -430,7 +434,26 @@ function handleLocation(data, location) { :id-value="data.salesPersonFk" emit-value auto-load - /> + > + <template #prepend> + <VnAvatar + :worker-id="data.salesPersonFk" + color="primary" + :title="title" + /> + </template> + <template #option="scope"> + <QItem v-bind="scope.itemProps"> + <QItemSection> + <QItemLabel>{{ scope.opt?.name }}</QItemLabel> + <QItemLabel caption + >{{ scope.opt?.nickname }}, + {{ scope.opt?.code }}</QItemLabel + > + </QItemSection> + </QItem> + </template> + </VnSelectWorker> <VnLocation :acls="[{ model: 'Province', props: '*', accessType: 'WRITE' }]" v-model="data.location" @@ -451,7 +474,7 @@ function handleLocation(data, location) { </template> <i18n> es: - Web user: Usuario Web + Web user: Usuario web </i18n> <style lang="scss" scoped> .col-content { From a0b19f8e7947bd9c500cf35a00a63110a75796df Mon Sep 17 00:00:00 2001 From: provira <provira@verdnatura.es> Date: Fri, 27 Dec 2024 13:43:33 +0100 Subject: [PATCH 09/79] refactor: refs #8322 changed Route component to use VnSection/VnCardBeta --- src/pages/Route/Card/RouteCard.vue | 17 +--- src/pages/Route/RouteList.vue | 64 +++++++------- src/pages/Route/locale/en.yml | 2 + src/pages/Route/locale/es.yml | 2 + src/router/modules/route.js | 130 +++++++++++++++-------------- 5 files changed, 109 insertions(+), 106 deletions(-) diff --git a/src/pages/Route/Card/RouteCard.vue b/src/pages/Route/Card/RouteCard.vue index 461f2d95e..4df0278a6 100644 --- a/src/pages/Route/Card/RouteCard.vue +++ b/src/pages/Route/Card/RouteCard.vue @@ -1,19 +1,8 @@ <script setup> -import VnCard from 'components/common/VnCard.vue'; import RouteDescriptor from 'pages/Route/Card/RouteDescriptor.vue'; -import RouteFilter from './RouteFilter.vue'; -import RouteSearchbar from 'pages/Route/Card/RouteSearchbar.vue'; +import VnCardBeta from 'src/components/common/VnCardBeta.vue'; + </script> <template> - <VnCard - data-key="Route" - base-url="Routes" - :descriptor="RouteDescriptor" - :filter-panel="RouteFilter" - search-data-key="RouteList" - > - <template #searchbar> - <RouteSearchbar /> - </template> - </VnCard> + <VnCardBeta data-key="Route" base-url="Routes" :descriptor="RouteDescriptor" /> </template> diff --git a/src/pages/Route/RouteList.vue b/src/pages/Route/RouteList.vue index b82d1468e..259cacd16 100644 --- a/src/pages/Route/RouteList.vue +++ b/src/pages/Route/RouteList.vue @@ -3,17 +3,16 @@ import { computed, ref } from 'vue'; import { useI18n } from 'vue-i18n'; import { useSummaryDialog } from 'src/composables/useSummaryDialog'; import { toHour } from 'src/filters'; - -import RouteSearchbar from 'pages/Route/Card/RouteSearchbar.vue'; import RouteSummary from 'pages/Route/Card/RouteSummary.vue'; -import RightMenu from 'src/components/common/RightMenu.vue'; import RouteFilter from 'pages/Route/Card/RouteFilter.vue'; import VnTable from 'components/VnTable/VnTable.vue'; import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue'; +import VnSection from 'src/components/common/VnSection.vue'; const { t } = useI18n(); const { viewSummary } = useSummaryDialog(); const tableRef = ref([]); +const dataKey = 'RouteList'; const routeFilter = { include: [ { @@ -110,32 +109,41 @@ const columns = computed(() => [ ]); </script> <template> - <RouteSearchbar /> - <RightMenu> - <template #right-panel> + <VnSection + :data-key="dataKey" + :columns="columns" + prefix="route" + :array-data-props="{ + url: 'Routes/filter', + order: 'id DESC', + exprBuilder, + }" + > + <template #rightMenu> <RouteFilter data-key="RouteList" /> </template> - </RightMenu> - <VnTable - data-key="RouteList" - url="Routes/filter" - :columns="columns" - :right-search="false" - :filter="routeFilter" - redirect="route" - :create="{ - urlCreate: 'Routes', - title: t('route.createRoute'), - onDataSaved: ({ id }) => tableRef.redirect(id), - formInitialData: {}, - }" - table-height="85vh" - > - <template #column-workerFk="{ row }"> - <span class="link" @click.stop> - {{ row?.workerUserName }} - <WorkerDescriptorProxy :id="row?.workerFk" v-if="row?.workerFk" /> - </span> + <template #body> + <VnTable + :data-key="dataKey" + :columns="columns" + :right-search="false" + :filter="routeFilter" + redirect="route" + :create="{ + urlCreate: 'Routes/create', + title: t('route.createRoute'), + onDataSaved: ({ id }) => tableRef.redirect(id), + formInitialData: {}, + }" + table-height="85vh" + > + <template #column-workerFk="{ row }"> + <span class="link" @click.stop> + {{ row?.workerUserName }} + <WorkerDescriptorProxy :id="row?.workerFk" v-if="row?.workerFk" /> + </span> + </template> + </VnTable> </template> - </VnTable> + </VnSection> </template> diff --git a/src/pages/Route/locale/en.yml b/src/pages/Route/locale/en.yml index 420d18dfe..57806d0f4 100644 --- a/src/pages/Route/locale/en.yml +++ b/src/pages/Route/locale/en.yml @@ -23,6 +23,8 @@ route: Summary: Summary Route is closed: Route is closed Route is not served: Route is not served + search: Search route + searchInfo: You can search by route reference cmr: list: results: results diff --git a/src/pages/Route/locale/es.yml b/src/pages/Route/locale/es.yml index a6ba4f370..4db28032b 100644 --- a/src/pages/Route/locale/es.yml +++ b/src/pages/Route/locale/es.yml @@ -23,6 +23,8 @@ route: Summary: Resumen Route is closed: La ruta está cerrada Route is not served: La ruta no está servida + search: Buscar rutas + searchInfo: Puedes buscar por referencia de la ruta cmr: list: results: resultados diff --git a/src/router/modules/route.js b/src/router/modules/route.js index a6c4f30a2..9ddea4124 100644 --- a/src/router/modules/route.js +++ b/src/router/modules/route.js @@ -1,41 +1,87 @@ import { RouterView } from 'vue-router'; +const routeCard = { + name: 'RouteCard', + path: ':id', + component: () => import('src/pages/Route/Card/RouteCard.vue'), + redirect: { name: 'RouteSummary' }, + meta: { + menu: ['RouteBasicData', 'RouteTickets', 'RouteLog'], + }, + children: [ + { + name: 'RouteBasicData', + path: 'basic-data', + meta: { + title: 'basicData', + icon: 'vn:settings', + }, + component: () => import('pages/Route/Card/RouteForm.vue'), + }, + { + name: 'RouteSummary', + path: 'summary', + meta: { + title: 'summary', + icon: 'open_in_new', + }, + component: () => import('pages/Route/Card/RouteSummary.vue'), + }, + { + path: 'tickets', + name: 'RouteTickets', + meta: { + title: 'tickets', + icon: 'vn:ticket', + }, + component: () => import('src/pages/Route/RouteTickets.vue'), + }, + { + path: 'log', + name: 'RouteLog', + meta: { + title: 'log', + icon: 'vn:History', + }, + component: () => import('src/pages/Route/RouteLog.vue'), + }, + ] +}; + export default { - path: '/route', name: 'Route', + path: '/route', meta: { title: 'routes', icon: 'vn:delivery', moduleName: 'Route', + menu: ['RouteList', 'RouteExtendedList', 'RouteAutonomous', 'RouteRoadmap', 'CmrList', 'AgencyList'], }, component: RouterView, redirect: { name: 'RouteMain' }, - menus: { - main: [ - 'RouteList', - 'RouteExtendedList', - 'RouteAutonomous', - 'RouteRoadmap', - 'CmrList', - 'AgencyList', - ], - card: ['RouteBasicData', 'RouteTickets', 'RouteLog'], - }, children: [ { - path: '/route', name: 'RouteMain', + path: '', component: () => import('src/components/common/VnModule.vue'), - redirect: { name: 'RouteList' }, + redirect: { name: 'RouteIndexMain' }, children: [ { - path: 'list', - name: 'RouteList', - meta: { - title: 'RouteList', - icon: 'view_list', - }, + path: '', + name: 'RouteIndexMain', + redirect: { name: 'RouteList' }, component: () => import('src/pages/Route/RouteList.vue'), + children: [ + { + name: 'RouteList', + path: 'list', + meta: { + title: 'list', + icon: 'view_list', + }, + }, + routeCard, + ] }, { path: 'extended-list', @@ -100,49 +146,5 @@ export default { }, ], }, - { - name: 'RouteCard', - path: ':id', - component: () => import('src/pages/Route/Card/RouteCard.vue'), - redirect: { name: 'RouteSummary' }, - children: [ - { - name: 'RouteBasicData', - path: 'basic-data', - meta: { - title: 'basicData', - icon: 'vn:settings', - }, - component: () => import('pages/Route/Card/RouteForm.vue'), - }, - { - name: 'RouteSummary', - path: 'summary', - meta: { - title: 'summary', - icon: 'open_in_new', - }, - component: () => import('pages/Route/Card/RouteSummary.vue'), - }, - { - path: 'tickets', - name: 'RouteTickets', - meta: { - title: 'tickets', - icon: 'vn:ticket', - }, - component: () => import('src/pages/Route/RouteTickets.vue'), - }, - { - path: 'log', - name: 'RouteLog', - meta: { - title: 'log', - icon: 'vn:History', - }, - component: () => import('src/pages/Route/RouteLog.vue'), - }, - ], - }, ], }; From de7906bbf357080a03e6d0154f4cf73fc3d0ef6c Mon Sep 17 00:00:00 2001 From: jtubau <jtubau@verdnatura.es> Date: Fri, 27 Dec 2024 14:02:27 +0100 Subject: [PATCH 10/79] refactor: refs #8316 used VnSection and VnCardBeta --- src/pages/InvoiceIn/Card/InvoiceInCard.vue | 54 +---- src/pages/InvoiceIn/InvoiceInList.vue | 139 +++++++------ src/pages/InvoiceIn/locale/en.yml | 2 + src/pages/InvoiceIn/locale/es.yml | 2 + src/router/modules/invoiceIn.js | 217 +++++++++++---------- 5 files changed, 194 insertions(+), 220 deletions(-) diff --git a/src/pages/InvoiceIn/Card/InvoiceInCard.vue b/src/pages/InvoiceIn/Card/InvoiceInCard.vue index b16183e52..05bb1d7d3 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInCard.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInCard.vue @@ -1,58 +1,12 @@ <script setup> -import VnCard from 'components/common/VnCard.vue'; +import VnCardBeta from 'components/common/VnCardBeta.vue'; import InvoiceInDescriptor from './InvoiceInDescriptor.vue'; -import InvoiceInFilter from '../InvoiceInFilter.vue'; -import InvoiceInSearchbar from '../InvoiceInSearchbar.vue'; -import { onBeforeRouteUpdate } from 'vue-router'; -import { setRectificative } from '../composables/setRectificative'; - -const filter = { - include: [ - { - relation: 'supplier', - scope: { - include: { - relation: 'contacts', - scope: { where: { email: { neq: null } } }, - }, - }, - }, - { relation: 'invoiceInDueDay' }, - { relation: 'company' }, - { relation: 'currency' }, - { - relation: 'dms', - scope: { - fields: [ - 'dmsTypeFk', - 'reference', - 'hardCopyNumber', - 'workerFk', - 'description', - 'hasFile', - 'file', - 'created', - 'companyFk', - 'warehouseFk', - ], - }, - }, - ], -}; - -onBeforeRouteUpdate(async (to) => await setRectificative(to)); </script> + <template> - <VnCard + <VnCardBeta data-key="InvoiceIn" base-url="InvoiceIns" - :filter="filter" :descriptor="InvoiceInDescriptor" - :filter-panel="InvoiceInFilter" - search-data-key="InvoiceInList" - > - <template #searchbar> - <InvoiceInSearchbar /> - </template> - </VnCard> + /> </template> diff --git a/src/pages/InvoiceIn/InvoiceInList.vue b/src/pages/InvoiceIn/InvoiceInList.vue index 43b9f2c11..282342504 100644 --- a/src/pages/InvoiceIn/InvoiceInList.vue +++ b/src/pages/InvoiceIn/InvoiceInList.vue @@ -8,17 +8,17 @@ import InvoiceInFilter from './InvoiceInFilter.vue'; import InvoiceInSummary from './Card/InvoiceInSummary.vue'; import { useSummaryDialog } from 'src/composables/useSummaryDialog'; import SupplierDescriptorProxy from 'src/pages/Supplier/Card/SupplierDescriptorProxy.vue'; -import RightMenu from 'src/components/common/RightMenu.vue'; -import InvoiceInSearchbar from 'src/pages/InvoiceIn/InvoiceInSearchbar.vue'; import VnTable from 'src/components/VnTable/VnTable.vue'; import VnSelect from 'src/components/common/VnSelect.vue'; import VnInput from 'src/components/common/VnInput.vue'; import VnInputDate from 'src/components/common/VnInputDate.vue'; import FetchData from 'src/components/FetchData.vue'; +import VnSection from 'src/components/common/VnSection.vue'; const user = useState().getUser(); const { viewSummary } = useSummaryDialog(); const { t } = useI18n(); +const dataKey='InvoiceInList'; const tableRef = ref(); const companies = ref([]); @@ -130,71 +130,84 @@ const cols = computed(() => [ }, ]); </script> + <template> - <FetchData url="Companies" @on-fetch="(data) => (companies = data)" auto-load /> - <InvoiceInSearchbar /> - <RightMenu> - <template #right-panel> + <FetchData + url="Companies" + @on-fetch="(data) => (companies = data)" + auto-load + /> + <VnSection + :data-key="dataKey" + :columns="cols" + prefix="InvoiceIn" + :array-data-props="{ + url: 'InvoiceIns/filter', + order: ['issued DESC', 'id DESC'], + exprBuilder, + }" + > + <template #rightMenu> <InvoiceInFilter data-key="InvoiceInList" /> </template> - </RightMenu> - <VnTable - ref="tableRef" - data-key="InvoiceInList" - url="InvoiceIns/filter" - :order="['issued DESC', 'id DESC']" - :create="{ - urlCreate: 'InvoiceIns', - title: t('globals.createInvoiceIn'), - onDataSaved: ({ id }) => tableRef.redirect(id), - formInitialData: { companyFk: user.companyFk, issued: Date.vnNew() }, - }" - redirect="invoice-in" - :columns="cols" - :right-search="false" - :disable-option="{ card: true }" - :auto-load="!!$route.query.table" - > - <template #column-supplierFk="{ row }"> - <span class="link" @click.stop> - {{ row.supplierName }} - <SupplierDescriptorProxy :id="row.supplierFk" /> - </span> - </template> - <template #more-create-dialog="{ data }"> - <VnSelect - v-model="data.supplierFk" - url="Suppliers" - :fields="['id', 'nickname']" - :label="t('globals.supplier')" - option-value="id" - option-label="nickname" - :filter-options="['id', 'name']" - :required="true" + <template #body> + <VnTable + ref="tableRef" + :data-key="dataKey" + :create="{ + urlCreate: 'InvoiceIns', + title: t('globals.createInvoiceIn'), + onDataSaved: ({ id }) => tableRef.redirect(id), + formInitialData: { companyFk: user.companyFk, issued: Date.vnNew() }, + }" + redirect="invoice-in" + :columns="cols" + :right-search="false" + :disable-option="{ card: true }" + :auto-load="!!$route.query.table" > - <template #option="scope"> - <QItem v-bind="scope.itemProps"> - <QItemSection> - <QItemLabel>{{ scope.opt?.nickname }}</QItemLabel> - <QItemLabel caption> #{{ scope.opt?.id }} </QItemLabel> - </QItemSection> - </QItem> + <template #column-supplierFk="{ row }"> + <span class="link" @click.stop> + {{ row.supplierName }} + <SupplierDescriptorProxy :id="row.supplierFk" /> + </span> </template> - </VnSelect> - <VnInput - :label="t('InvoiceIn.list.supplierRef')" - v-model="data.supplierRef" - /> - <VnSelect - url="Companies" - :label="t('globals.company')" - :fields="['id', 'code']" - v-model="data.companyFk" - option-value="id" - option-label="code" - :required="true" - /> - <VnInputDate :label="t('InvoiceIn.summary.issued')" v-model="data.issued" /> + <template #more-create-dialog="{ data }"> + <VnSelect + v-model="data.supplierFk" + url="Suppliers" + :fields="['id', 'nickname']" + :label="t('globals.supplier')" + option-value="id" + option-label="nickname" + :filter-options="['id', 'name']" + :required="true" + > + <template #option="scope"> + <QItem v-bind="scope.itemProps"> + <QItemSection> + <QItemLabel>{{ scope.opt?.nickname }}</QItemLabel> + <QItemLabel caption> #{{ scope.opt?.id }} </QItemLabel> + </QItemSection> + </QItem> + </template> + </VnSelect> + <VnInput + :label="t('InvoiceIn.list.supplierRef')" + v-model="data.supplierRef" + /> + <VnSelect + url="Companies" + :label="t('globals.company')" + :fields="['id', 'code']" + v-model="data.companyFk" + option-value="id" + option-label="code" + :required="true" + /> + <VnInputDate :label="t('InvoiceIn.summary.issued')" v-model="data.issued" /> + </template> + </VnTable> </template> - </VnTable> + </VnSection> </template> diff --git a/src/pages/InvoiceIn/locale/en.yml b/src/pages/InvoiceIn/locale/en.yml index ef7e31ac3..6adac2c26 100644 --- a/src/pages/InvoiceIn/locale/en.yml +++ b/src/pages/InvoiceIn/locale/en.yml @@ -1,4 +1,6 @@ InvoiceIn: + search: Search invoice + searchInfo: Search incoming invoices by ID or supplier fiscal name serial: Serial isBooked: Is booked list: diff --git a/src/pages/InvoiceIn/locale/es.yml b/src/pages/InvoiceIn/locale/es.yml index ed5943489..eec85f48c 100644 --- a/src/pages/InvoiceIn/locale/es.yml +++ b/src/pages/InvoiceIn/locale/es.yml @@ -1,4 +1,6 @@ InvoiceIn: + search: Buscar factura recibida + searchInfo: Buscar facturas recibidas por ID o nombre fiscal del proveedor serial: Serie isBooked: Contabilizada list: diff --git a/src/router/modules/invoiceIn.js b/src/router/modules/invoiceIn.js index 788b27d37..fe70a1056 100644 --- a/src/router/modules/invoiceIn.js +++ b/src/router/modules/invoiceIn.js @@ -1,18 +1,12 @@ import { RouterView } from 'vue-router'; -import { setRectificative } from 'src/pages/InvoiceIn/composables/setRectificative'; -export default { - path: '/invoice-in', - name: 'InvoiceIn', + +const invoiceInCard = { + name: 'InvoiceInCard', + path: ':id', + component: () => import('src/pages/InvoiceIn/Card/InvoiceInCard.vue'), + redirect: { name: 'InvoiceInSummary' }, meta: { - title: 'invoiceIns', - icon: 'vn:invoice-in', - moduleName: 'InvoiceIn', - }, - component: RouterView, - redirect: { name: 'InvoiceInMain' }, - menus: { - main: ['InvoiceInList', 'InvoiceInSerial'], - card: [ + menu: [ 'InvoiceInBasicData', 'InvoiceInVat', 'InvoiceInDueDay', @@ -23,29 +17,109 @@ export default { }, children: [ { - path: '', + path: 'summary', + name: 'InvoiceInSummary', + meta: { + title: 'summary', + icon: 'view_list', + }, + component: () => import('src/pages/InvoiceIn/Card/InvoiceInSummary.vue'), + }, + { + name: 'InvoiceInBasicData', + path: 'basic-data', + meta: { + title: 'basicData', + icon: 'vn:settings', + }, + component: () => + import('src/pages/InvoiceIn/Card/InvoiceInBasicData.vue'), + }, + { + name: 'InvoiceInVat', + path: 'vat', + meta: { + title: 'vat', + icon: 'vn:tax', + }, + component: () => import('src/pages/InvoiceIn/Card/InvoiceInVat.vue'), + }, + { + name: 'InvoiceInDueDay', + path: 'due-day', + meta: { + title: 'dueDay', + icon: 'vn:calendar', + }, + component: () => + import('src/pages/InvoiceIn/Card/InvoiceInDueDay.vue'), + }, + { + name: 'InvoiceInIntrastat', + path: 'intrastat', + meta: { + title: 'intrastat', + icon: 'vn:lines', + }, + component: () => + import('src/pages/InvoiceIn/Card/InvoiceInIntrastat.vue'), + }, + { + name: 'InvoiceInCorrective', + path: 'corrective', + meta: { + title: 'corrective', + icon: 'attachment', + }, + component: () => + import('src/pages/InvoiceIn/Card/InvoiceInCorrective.vue'), + }, + { + name: 'InvoiceInLog', + path: 'log', + meta: { + title: 'log', + icon: 'history', + }, + component: () => import('src/pages/InvoiceIn/Card/InvoiceInLog.vue'), + }, + ], +}; + +export default { + name: 'InvoiceIn', + path: '/invoice-in', + meta: { + title: 'invoiceIns', + icon: 'vn:invoice-in', + moduleName: 'InvoiceIn', + menu: ['InvoiceInList', 'InvoiceInSerial'], + }, + component: RouterView, + redirect: { name: 'InvoiceInMain' }, + children: [ + { name: 'InvoiceInMain', + path: '', component: () => import('src/components/common/VnModule.vue'), - redirect: { name: 'InvoiceInList' }, + redirect: { name: 'InvoiceInIndexMain' }, children: [ { - path: 'list', - name: 'InvoiceInList', - meta: { - title: 'list', - icon: 'view_list', - }, + path: '', + name: 'InvoiceInIndexMain', + redirect: { name: 'InvoiceInList' }, component: () => import('src/pages/InvoiceIn/InvoiceInList.vue'), - }, - { - path: 'serial', - name: 'InvoiceInSerial', - meta: { - title: 'serial', - icon: 'view_list', - }, - component: () => - import('src/pages/InvoiceIn/Serial/InvoiceInSerial.vue'), + children: [ + { + name: 'InvoiceInList', + path: 'list', + meta: { + title: 'list', + icon: 'view_list', + }, + }, + invoiceInCard, + ], }, { path: 'create', @@ -56,87 +130,16 @@ export default { }, component: () => import('src/pages/InvoiceIn/InvoiceInCreate.vue'), }, - ], - }, - { - name: 'InvoiceInCard', - path: ':id', - component: () => import('src/pages/InvoiceIn/Card/InvoiceInCard.vue'), - redirect: { name: 'InvoiceInSummary' }, - beforeEnter: async (to, from, next) => { - await setRectificative(to); - next(); - }, - children: [ { - name: 'InvoiceInSummary', - path: 'summary', + path: 'serial', + name: 'InvoiceInSerial', meta: { - title: 'summary', + title: 'serial', icon: 'view_list', }, - component: () => - import('src/pages/InvoiceIn/Card/InvoiceInSummary.vue'), - }, - { - name: 'InvoiceInBasicData', - path: 'basic-data', - meta: { - title: 'basicData', - icon: 'vn:settings', - }, - component: () => - import('src/pages/InvoiceIn/Card/InvoiceInBasicData.vue'), - }, - { - name: 'InvoiceInVat', - path: 'vat', - meta: { - title: 'vat', - icon: 'vn:tax', - }, - component: () => import('src/pages/InvoiceIn/Card/InvoiceInVat.vue'), - }, - { - name: 'InvoiceInDueDay', - path: 'due-day', - meta: { - title: 'dueDay', - icon: 'vn:calendar', - }, - component: () => - import('src/pages/InvoiceIn/Card/InvoiceInDueDay.vue'), - }, - { - name: 'InvoiceInIntrastat', - path: 'intrastat', - meta: { - title: 'intrastat', - icon: 'vn:lines', - }, - component: () => - import('src/pages/InvoiceIn/Card/InvoiceInIntrastat.vue'), - }, - { - name: 'InvoiceInLog', - path: 'log', - meta: { - title: 'log', - icon: 'history', - }, - component: () => import('src/pages/InvoiceIn/Card/InvoiceInLog.vue'), - }, - { - name: 'InvoiceInCorrective', - path: 'corrective', - meta: { - title: 'corrective', - icon: 'attachment', - }, - component: () => - import('src/pages/InvoiceIn/Card/InvoiceInCorrective.vue'), + component: () => import('src/pages/InvoiceIn/Serial/InvoiceInSerial.vue'), }, ], }, ], -}; +}; \ No newline at end of file From a53ac3d6cc2fd4447e3eb026b180b0ee33784bf2 Mon Sep 17 00:00:00 2001 From: provira <provira@verdnatura.es> Date: Fri, 3 Jan 2025 07:21:31 +0100 Subject: [PATCH 11/79] fix: refs #8322 fixed route creation url --- src/pages/Route/RouteList.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/Route/RouteList.vue b/src/pages/Route/RouteList.vue index 259cacd16..2b2aa6cba 100644 --- a/src/pages/Route/RouteList.vue +++ b/src/pages/Route/RouteList.vue @@ -115,7 +115,6 @@ const columns = computed(() => [ prefix="route" :array-data-props="{ url: 'Routes/filter', - order: 'id DESC', exprBuilder, }" > @@ -130,7 +129,7 @@ const columns = computed(() => [ :filter="routeFilter" redirect="route" :create="{ - urlCreate: 'Routes/create', + urlCreate: 'Routes', title: t('route.createRoute'), onDataSaved: ({ id }) => tableRef.redirect(id), formInitialData: {}, From 4f2e4e13048fbc2b787a41b1082eb66f6c14a9d2 Mon Sep 17 00:00:00 2001 From: provira <provira@verdnatura.es> Date: Wed, 8 Jan 2025 10:14:15 +0100 Subject: [PATCH 12/79] fix: refs #8322 moved filter inside array-data-props --- src/pages/Route/RouteList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Route/RouteList.vue b/src/pages/Route/RouteList.vue index 2b2aa6cba..0b02e8068 100644 --- a/src/pages/Route/RouteList.vue +++ b/src/pages/Route/RouteList.vue @@ -115,7 +115,7 @@ const columns = computed(() => [ prefix="route" :array-data-props="{ url: 'Routes/filter', - exprBuilder, + filter: routeFilter }" > <template #rightMenu> @@ -126,7 +126,7 @@ const columns = computed(() => [ :data-key="dataKey" :columns="columns" :right-search="false" - :filter="routeFilter" + redirect="route" :create="{ urlCreate: 'Routes', From cceb906d6590769ff02552003ab7d1911d085aaf Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Thu, 9 Jan 2025 13:57:09 +0100 Subject: [PATCH 13/79] fix: refs #8322 use userFilter --- src/pages/Route/RouteList.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/Route/RouteList.vue b/src/pages/Route/RouteList.vue index 0b02e8068..978367a02 100644 --- a/src/pages/Route/RouteList.vue +++ b/src/pages/Route/RouteList.vue @@ -115,7 +115,7 @@ const columns = computed(() => [ prefix="route" :array-data-props="{ url: 'Routes/filter', - filter: routeFilter + userFilter: routeFilter, }" > <template #rightMenu> @@ -126,7 +126,6 @@ const columns = computed(() => [ :data-key="dataKey" :columns="columns" :right-search="false" - redirect="route" :create="{ urlCreate: 'Routes', From 5b10a3e60fcddbb915a1a3e4174f80d84ee4abf7 Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Fri, 10 Jan 2025 11:17:01 +0100 Subject: [PATCH 14/79] feat: refs #6629 delete consolelog --- src/pages/Customer/components/CustomerAddressEdit.vue | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/pages/Customer/components/CustomerAddressEdit.vue b/src/pages/Customer/components/CustomerAddressEdit.vue index b403d1012..8058c8357 100644 --- a/src/pages/Customer/components/CustomerAddressEdit.vue +++ b/src/pages/Customer/components/CustomerAddressEdit.vue @@ -89,8 +89,6 @@ const updateAddress = async (data) => { const updateAddressTicket = async () => { urlUpdate.value += '?updateObservations=true'; - - console.log('gg'); }; const updateObservations = async (payload) => { @@ -100,7 +98,6 @@ const updateObservations = async (payload) => { toCustomerAddress(); }; async function updateAll({ data, payload }) { - console.log('Si no hay notas modificadas'); await updateAddress(data); await updateObservations(payload); } @@ -140,24 +137,17 @@ async function handleDialog(data) { }, }) .onOk(async () => { - console.log('Actualiza notas'); - // await resetAndSend(payload); await updateAll(body); await updateAddressTicket(); toCustomerAddress(); }) .onCancel(async () => { - // await resetAndSend(payload); - console.log('Actualiza datos'); await updateAll(body); toCustomerAddress(); }); - // .hide(toCustomerAddress); } else { updateAll(body); toCustomerAddress(); - // await resetAndSend(payload); - // toCustomerAddress(); } } From 3c87882805ec39c7e1d1bf20af14d2165937b172 Mon Sep 17 00:00:00 2001 From: jtubau <jtubau@verdnatura.es> Date: Mon, 13 Jan 2025 08:41:45 +0100 Subject: [PATCH 15/79] refactor: refs #8316 restore filter for supplier and related entities in InvoiceInCard --- src/pages/InvoiceIn/Card/InvoiceInCard.vue | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/src/pages/InvoiceIn/Card/InvoiceInCard.vue b/src/pages/InvoiceIn/Card/InvoiceInCard.vue index 05bb1d7d3..25d2d0e19 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInCard.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInCard.vue @@ -1,6 +1,40 @@ <script setup> import VnCardBeta from 'components/common/VnCardBeta.vue'; import InvoiceInDescriptor from './InvoiceInDescriptor.vue'; + +const filter = { + include: [ + { + relation: 'supplier', + scope: { + include: { + relation: 'contacts', + scope: { where: { email: { neq: null } } }, + }, + }, + }, + { relation: 'invoiceInDueDay' }, + { relation: 'company' }, + { relation: 'currency' }, + { + relation: 'dms', + scope: { + fields: [ + 'dmsTypeFk', + 'reference', + 'hardCopyNumber', + 'workerFk', + 'description', + 'hasFile', + 'file', + 'created', + 'companyFk', + 'warehouseFk', + ], + }, + }, + ], +}; </script> <template> @@ -8,5 +42,6 @@ import InvoiceInDescriptor from './InvoiceInDescriptor.vue'; data-key="InvoiceIn" base-url="InvoiceIns" :descriptor="InvoiceInDescriptor" + :filter="filter" /> </template> From 2aff1d3d06a73d42b3239e67da1040ad6c261aff Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Mon, 13 Jan 2025 10:20:28 +0100 Subject: [PATCH 16/79] feat: refs #8120 added new style to summary popups --- src/components/common/VnSummaryDialog.vue | 34 +++++++++++++++++++++-- src/css/quasar.variables.scss | 5 ++++ 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/src/components/common/VnSummaryDialog.vue b/src/components/common/VnSummaryDialog.vue index 08fc8870d..57473cb3f 100644 --- a/src/components/common/VnSummaryDialog.vue +++ b/src/components/common/VnSummaryDialog.vue @@ -1,7 +1,8 @@ <script setup> import { useDialogPluginComponent } from 'quasar'; +import { computed } from 'vue'; -defineProps({ +const $props = defineProps({ id: { type: Number, required: true, @@ -15,9 +16,36 @@ defineProps({ defineEmits([...useDialogPluginComponent.emits]); const { dialogRef, onDialogHide } = useDialogPluginComponent(); + +const moduleClass = computed(() => { + const name = $props.summary.__name; + + const classMap = { + CustomerSummary: 'largeSummary', + EntrySummary: 'largeSummary', + InvoiceOutSummary: 'largeSummary', + RouteSummary: 'largeSummary', + TicketrSummary: 'largeSummary', + InvoiceInSummary: 'xlargeSummary', + }; + + return classMap[name] || 'defaultSummary'; +}); </script> <template> - <QDialog ref="dialogRef" @hide="onDialogHide" full-width> - <component :is="summary" :id="id" /> + <QDialog ref="dialogRef" @hide="onDialogHide"> + <component :is="$props.summary" :id="$props.id" :class="moduleClass" /> </QDialog> </template> + +<style lang="scss" scoped> +.defaultSummary { + max-width: $width-md; +} +.largeSummary { + max-width: $width-lg; +} +.xlargeSummary { + max-width: $width-xl; +} +</style> diff --git a/src/css/quasar.variables.scss b/src/css/quasar.variables.scss index 9f7c62848..d6e992437 100644 --- a/src/css/quasar.variables.scss +++ b/src/css/quasar.variables.scss @@ -33,6 +33,11 @@ $dark-shadow-color: black; $layout-shadow-dark: 0 0 10px 2px #00000033, 0 0px 10px #0000003d; $spacing-md: 16px; $color-font-secondary: #777; +$width-xs: 400px; +$width-sm: 544px; +$width-md: 800px; +$width-lg: 1280px; +$width-xl: 1600px; .bg-success { background-color: $positive; } From b48cc55f4beec8bc03f67ff938f4e935fa98642f Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Mon, 13 Jan 2025 11:01:26 +0100 Subject: [PATCH 17/79] refactor: refs #8120 requested changes --- src/components/common/VnSummaryDialog.vue | 22 +++++-------------- src/components/ui/CardDescriptor.vue | 9 ++++++-- src/composables/useSummaryDialog.js | 4 ++-- .../Customer/Card/CustomerDescriptor.vue | 1 + 4 files changed, 15 insertions(+), 21 deletions(-) diff --git a/src/components/common/VnSummaryDialog.vue b/src/components/common/VnSummaryDialog.vue index 57473cb3f..37de68de2 100644 --- a/src/components/common/VnSummaryDialog.vue +++ b/src/components/common/VnSummaryDialog.vue @@ -1,6 +1,5 @@ <script setup> import { useDialogPluginComponent } from 'quasar'; -import { computed } from 'vue'; const $props = defineProps({ id: { @@ -11,30 +10,19 @@ const $props = defineProps({ type: Object, required: true, }, + moduleClass: { + type: String, + default: 'defaultSummary', + }, }); defineEmits([...useDialogPluginComponent.emits]); const { dialogRef, onDialogHide } = useDialogPluginComponent(); - -const moduleClass = computed(() => { - const name = $props.summary.__name; - - const classMap = { - CustomerSummary: 'largeSummary', - EntrySummary: 'largeSummary', - InvoiceOutSummary: 'largeSummary', - RouteSummary: 'largeSummary', - TicketrSummary: 'largeSummary', - InvoiceInSummary: 'xlargeSummary', - }; - - return classMap[name] || 'defaultSummary'; -}); </script> <template> <QDialog ref="dialogRef" @hide="onDialogHide"> - <component :is="$props.summary" :id="$props.id" :class="moduleClass" /> + <component :is="$props.summary" :id="$props.id" :class="$props.moduleClass" /> </QDialog> </template> diff --git a/src/components/ui/CardDescriptor.vue b/src/components/ui/CardDescriptor.vue index f4c0091d2..88c8ae787 100644 --- a/src/components/ui/CardDescriptor.vue +++ b/src/components/ui/CardDescriptor.vue @@ -36,6 +36,10 @@ const $props = defineProps({ type: Object, default: null, }, + moduleClass: { + type: String, + default: 'defaultSummary', + }, }); const state = useState(); @@ -128,9 +132,10 @@ const toModule = computed(() => </QTooltip> </QBtn></slot > - <QBtn - @click.stop="viewSummary(entity.id, $props.summary)" + @click.stop=" + viewSummary(entity.id, $props.summary, $props.moduleClass) + " round flat dense diff --git a/src/composables/useSummaryDialog.js b/src/composables/useSummaryDialog.js index 7d431129b..562a0b5ed 100644 --- a/src/composables/useSummaryDialog.js +++ b/src/composables/useSummaryDialog.js @@ -4,10 +4,10 @@ import { useQuasar } from 'quasar'; export function useSummaryDialog() { const quasar = useQuasar(); - function viewSummary(id, summary) { + function viewSummary(id, summary, moduleClass) { quasar.dialog({ component: VnSummaryDialog, - componentProps: { id, summary }, + componentProps: { id, summary, moduleClass }, }); } diff --git a/src/pages/Customer/Card/CustomerDescriptor.vue b/src/pages/Customer/Card/CustomerDescriptor.vue index dc5f08d37..da65dacbc 100644 --- a/src/pages/Customer/Card/CustomerDescriptor.vue +++ b/src/pages/Customer/Card/CustomerDescriptor.vue @@ -58,6 +58,7 @@ const debtWarning = computed(() => { @on-fetch="setData" :summary="$props.summary" data-key="customer" + :module-class="'largeSummary'" > <template #menu="{ entity }"> <CustomerDescriptorMenu :customer="entity" /> From 19e8b948aeb8833420558c7b8e24d269b463f2f8 Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Mon, 13 Jan 2025 11:04:41 +0100 Subject: [PATCH 18/79] feat: refs #8120 use new prop in the requierd modules --- src/pages/Entry/Card/EntryDescriptor.vue | 1 + src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue | 1 + src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue | 1 + src/pages/Route/Card/RouteDescriptor.vue | 1 + src/pages/Ticket/Card/TicketDescriptor.vue | 1 + 5 files changed, 5 insertions(+) diff --git a/src/pages/Entry/Card/EntryDescriptor.vue b/src/pages/Entry/Card/EntryDescriptor.vue index c54ecc3f0..cb05ba8a0 100644 --- a/src/pages/Entry/Card/EntryDescriptor.vue +++ b/src/pages/Entry/Card/EntryDescriptor.vue @@ -61,6 +61,7 @@ const getEntryRedirectionFilter = (entry) => { :filter="filter" title="supplier.nickname" data-key="Entry" + :module-class="'largeSummary'" > <template #menu="{ entity }"> <EntryDescriptorMenu :id="entity.id" /> diff --git a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue index 9ba0df395..06abf976f 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue @@ -161,6 +161,7 @@ const createInvoiceInCorrection = async () => { :url="`InvoiceIns/${entityId}`" :filter="filter" title="supplierRef" + :module-class="'xlargeSummary'" > <template #menu="{ entity }"> <InvoiceInDescriptorMenu :invoice="entity" /> diff --git a/src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue b/src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue index 2b60948dd..492ae54c4 100644 --- a/src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue +++ b/src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue @@ -62,6 +62,7 @@ const setData = (entity) => (data.value = useCardDescription(entity.ref, entity. :subtitle="data.subtitle" @on-fetch="setData" data-key="invoiceOutData" + :module-class="'largeSummary'" > <template #menu="{ entity, menuRef }"> <InvoiceOutDescriptorMenu :invoice-out-data="entity" :menu-ref="menuRef" /> diff --git a/src/pages/Route/Card/RouteDescriptor.vue b/src/pages/Route/Card/RouteDescriptor.vue index fa621843e..76d23bdb0 100644 --- a/src/pages/Route/Card/RouteDescriptor.vue +++ b/src/pages/Route/Card/RouteDescriptor.vue @@ -76,6 +76,7 @@ const setData = (entity) => (data.value = useCardDescription(entity.code, entity :subtitle="data.subtitle" data-key="routeData" @on-fetch="setData" + :module-class="'largeSummary'" > <template #body="{ entity }"> <VnLv :label="t('Date')" :value="toDate(entity?.dated)" /> diff --git a/src/pages/Ticket/Card/TicketDescriptor.vue b/src/pages/Ticket/Card/TicketDescriptor.vue index 4e77b633f..9b41fa43d 100644 --- a/src/pages/Ticket/Card/TicketDescriptor.vue +++ b/src/pages/Ticket/Card/TicketDescriptor.vue @@ -112,6 +112,7 @@ function ticketFilter(ticket) { :title="data.title" :subtitle="data.subtitle" data-key="ticketData" + :module-class="'largeSummary'" > <template #menu="{ entity }"> <TicketDescriptorMenu :ticket="entity" /> From 22467924041bfae23066127d8c6130bc531c8f11 Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Mon, 13 Jan 2025 11:24:11 +0100 Subject: [PATCH 19/79] feat: refs #6629 change values --- src/pages/Customer/components/CustomerAddressEdit.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Customer/components/CustomerAddressEdit.vue b/src/pages/Customer/components/CustomerAddressEdit.vue index bf117124c..5f74ebc17 100644 --- a/src/pages/Customer/components/CustomerAddressEdit.vue +++ b/src/pages/Customer/components/CustomerAddressEdit.vue @@ -99,8 +99,8 @@ const updateObservations = async (payload) => { toCustomerAddress(); }; async function updateAll({ data, payload }) { - await updateAddress(data); await updateObservations(payload); + await updateAddress(data); } function getPayload() { return { @@ -138,8 +138,8 @@ async function handleDialog(data) { }, }) .onOk(async () => { - await updateAll(body); await updateAddressTicket(); + await updateAll(body); toCustomerAddress(); }) .onCancel(async () => { From 168fe4c5b1153fdfc2cee44767632d93a1d9ad5a Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 13 Jan 2025 13:10:59 +0100 Subject: [PATCH 20/79] fix: refs #8316 user-filter --- src/pages/InvoiceIn/Card/InvoiceInCard.vue | 66 +++++++++++----------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/src/pages/InvoiceIn/Card/InvoiceInCard.vue b/src/pages/InvoiceIn/Card/InvoiceInCard.vue index 25d2d0e19..8aa35f4d8 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInCard.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInCard.vue @@ -2,38 +2,38 @@ import VnCardBeta from 'components/common/VnCardBeta.vue'; import InvoiceInDescriptor from './InvoiceInDescriptor.vue'; -const filter = { - include: [ - { - relation: 'supplier', - scope: { - include: { - relation: 'contacts', - scope: { where: { email: { neq: null } } }, - }, - }, - }, - { relation: 'invoiceInDueDay' }, - { relation: 'company' }, - { relation: 'currency' }, - { - relation: 'dms', - scope: { - fields: [ - 'dmsTypeFk', - 'reference', - 'hardCopyNumber', - 'workerFk', - 'description', - 'hasFile', - 'file', - 'created', - 'companyFk', - 'warehouseFk', - ], - }, - }, - ], +const filter = { + include: [ + { + relation: 'supplier', + scope: { + include: { + relation: 'contacts', + scope: { where: { email: { neq: null } } }, + }, + }, + }, + { relation: 'invoiceInDueDay' }, + { relation: 'company' }, + { relation: 'currency' }, + { + relation: 'dms', + scope: { + fields: [ + 'dmsTypeFk', + 'reference', + 'hardCopyNumber', + 'workerFk', + 'description', + 'hasFile', + 'file', + 'created', + 'companyFk', + 'warehouseFk', + ], + }, + }, + ], }; </script> @@ -42,6 +42,6 @@ const filter = { data-key="InvoiceIn" base-url="InvoiceIns" :descriptor="InvoiceInDescriptor" - :filter="filter" + :user-filter="filter" /> </template> From 06e04e1fb54df16d013829085ddf4eef8cf712ea Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 13 Jan 2025 13:12:55 +0100 Subject: [PATCH 21/79] refactor: refs #8316 remove invoiceInSearchbar --- src/pages/InvoiceIn/InvoiceInList.vue | 18 +++++++++--------- src/pages/InvoiceIn/InvoiceInSearchbar.vue | 18 ------------------ 2 files changed, 9 insertions(+), 27 deletions(-) delete mode 100644 src/pages/InvoiceIn/InvoiceInSearchbar.vue diff --git a/src/pages/InvoiceIn/InvoiceInList.vue b/src/pages/InvoiceIn/InvoiceInList.vue index f9a6a5ae0..f030b4f08 100644 --- a/src/pages/InvoiceIn/InvoiceInList.vue +++ b/src/pages/InvoiceIn/InvoiceInList.vue @@ -18,7 +18,7 @@ import VnSection from 'src/components/common/VnSection.vue'; const user = useState().getUser(); const { viewSummary } = useSummaryDialog(); const { t } = useI18n(); -const dataKey='InvoiceInList'; +const dataKey = 'InvoiceInList'; const tableRef = ref(); const companies = ref([]); @@ -132,11 +132,7 @@ const cols = computed(() => [ </script> <template> - <FetchData - url="Companies" - @on-fetch="(data) => (companies = data)" - auto-load - /> + <FetchData url="Companies" @on-fetch="(data) => (companies = data)" auto-load /> <VnSection :data-key="dataKey" :columns="cols" @@ -144,7 +140,6 @@ const cols = computed(() => [ :array-data-props="{ url: 'InvoiceIns/filter', order: ['issued DESC', 'id DESC'], - exprBuilder, }" > <template #rightMenu> @@ -187,7 +182,9 @@ const cols = computed(() => [ <QItem v-bind="scope.itemProps"> <QItemSection> <QItemLabel>{{ scope.opt?.nickname }}</QItemLabel> - <QItemLabel caption> #{{ scope.opt?.id }}, {{ scope.opt?.name }} </QItemLabel> + <QItemLabel caption> + #{{ scope.opt?.id }}, {{ scope.opt?.name }} + </QItemLabel> </QItemSection> </QItem> </template> @@ -205,7 +202,10 @@ const cols = computed(() => [ option-label="code" :required="true" /> - <VnInputDate :label="t('InvoiceIn.summary.issued')" v-model="data.issued" /> + <VnInputDate + :label="t('InvoiceIn.summary.issued')" + v-model="data.issued" + /> </template> </VnTable> </template> diff --git a/src/pages/InvoiceIn/InvoiceInSearchbar.vue b/src/pages/InvoiceIn/InvoiceInSearchbar.vue deleted file mode 100644 index f2731b005..000000000 --- a/src/pages/InvoiceIn/InvoiceInSearchbar.vue +++ /dev/null @@ -1,18 +0,0 @@ -<script setup> -import VnSearchbar from 'components/ui/VnSearchbar.vue'; -import { useI18n } from 'vue-i18n'; -const { t } = useI18n(); -</script> -<template> - <VnSearchbar - data-key="InvoiceInList" - :label="t('Search invoice')" - :info="t('Search invoices in by id or supplier fiscal name')" - url="InvoiceIns/filter" - /> -</template> -<i18n> -es: - Search invoice: Buscar factura recibida - Search invoices in by id or supplier fiscal name: Buscar facturas recibidas por id o por nombre fiscal del proveedor -</i18n> From 65c2b24b782e020475ef2b9f720e6b871507102f Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Mon, 13 Jan 2025 14:30:58 +0100 Subject: [PATCH 22/79] feat: refs #8387 crudModel --- src/components/CrudModel.vue | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/components/CrudModel.vue b/src/components/CrudModel.vue index 940b72ff0..81276e7b0 100644 --- a/src/components/CrudModel.vue +++ b/src/components/CrudModel.vue @@ -151,14 +151,22 @@ function filter(value, update, filterOptions) { } async function onSubmit() { - if (!hasChanges.value) { - return quasar.notify({ + try { + if (!hasChanges.value) { + return quasar.notify({ + type: 'negative', + message: t('globals.noChanges'), + }); + } + isLoading.value = true; + await saveChanges($props.saveFn ? formData.value : null); + } catch (e) { + const errMessage = e?.response?.data?.error?.message; + quasar.notify({ type: 'negative', - message: t('globals.noChanges'), + message: t(`${errMessage}`), }); } - isLoading.value = true; - await saveChanges($props.saveFn ? formData.value : null); } async function onSubmitAndGo() { From b52956d27df033043f8bc917099182d463fa75de Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Mon, 13 Jan 2025 16:19:24 +0100 Subject: [PATCH 23/79] refactor: refs #8120 use only defineProps --- src/components/common/VnSummaryDialog.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/VnSummaryDialog.vue b/src/components/common/VnSummaryDialog.vue index 37de68de2..bbca1bd98 100644 --- a/src/components/common/VnSummaryDialog.vue +++ b/src/components/common/VnSummaryDialog.vue @@ -1,7 +1,7 @@ <script setup> import { useDialogPluginComponent } from 'quasar'; -const $props = defineProps({ +defineProps({ id: { type: Number, required: true, @@ -22,7 +22,7 @@ const { dialogRef, onDialogHide } = useDialogPluginComponent(); </script> <template> <QDialog ref="dialogRef" @hide="onDialogHide"> - <component :is="$props.summary" :id="$props.id" :class="$props.moduleClass" /> + <component :is="summary" :id="id" :class="moduleClass" /> </QDialog> </template> From bd905ded3a770bdada2dda1952fbec91d5c76390 Mon Sep 17 00:00:00 2001 From: jtubau <jtubau@verdnatura.es> Date: Tue, 14 Jan 2025 10:01:18 +0100 Subject: [PATCH 24/79] refactor: refs #8316 update prefix casing for InvoiceIn component --- src/pages/InvoiceIn/InvoiceInList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/InvoiceIn/InvoiceInList.vue b/src/pages/InvoiceIn/InvoiceInList.vue index c266cf17c..56b6848b0 100644 --- a/src/pages/InvoiceIn/InvoiceInList.vue +++ b/src/pages/InvoiceIn/InvoiceInList.vue @@ -136,7 +136,7 @@ const cols = computed(() => [ <VnSection :data-key="dataKey" :columns="cols" - prefix="InvoiceIn" + prefix="invoicein" :array-data-props="{ url: 'InvoiceIns/filter', order: ['issued DESC', 'id DESC'], From 0b9788d38b0159c277dfc244f5628dbd75cf2f82 Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Wed, 15 Jan 2025 10:33:49 +0100 Subject: [PATCH 25/79] feat: refs #8387 changes --- src/components/CrudModel.vue | 8 ++------ src/pages/Item/Card/ItemTags.vue | 14 +++++++++++++- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/components/CrudModel.vue b/src/components/CrudModel.vue index 81276e7b0..7e8c6a3de 100644 --- a/src/components/CrudModel.vue +++ b/src/components/CrudModel.vue @@ -83,7 +83,7 @@ const saveButtonRef = ref(null); const watchChanges = ref(); const formUrl = computed(() => $props.url); -const emit = defineEmits(['onFetch', 'update:selected', 'saveChanges']); +const emit = defineEmits(['onFetch', 'update:selected', 'saveChanges', 'dataError']); defineExpose({ reload, @@ -161,11 +161,7 @@ async function onSubmit() { isLoading.value = true; await saveChanges($props.saveFn ? formData.value : null); } catch (e) { - const errMessage = e?.response?.data?.error?.message; - quasar.notify({ - type: 'negative', - message: t(`${errMessage}`), - }); + emit('dataError', e); } } diff --git a/src/pages/Item/Card/ItemTags.vue b/src/pages/Item/Card/ItemTags.vue index 992b1042b..d64929f78 100644 --- a/src/pages/Item/Card/ItemTags.vue +++ b/src/pages/Item/Card/ItemTags.vue @@ -9,6 +9,7 @@ import VnInput from 'src/components/common/VnInput.vue'; import FetchData from 'components/FetchData.vue'; import VnSelect from 'src/components/common/VnSelect.vue'; import axios from 'axios'; +import { useQuasar } from 'quasar'; const route = useRoute(); const { t } = useI18n(); @@ -16,7 +17,7 @@ const { t } = useI18n(); const itemTagsRef = ref(null); const tagOptions = ref([]); const valueOptionsMap = ref(new Map()); - +const quasar = useQuasar(); const getSelectedTagValues = async (tag) => { if (!tag.tagFk && tag.tag.isFree) return; const filter = { @@ -63,6 +64,15 @@ const insertTag = (rows) => { const submitTags = async (data) => { itemTagsRef.value.onSubmit(data); }; + +const errMessage = ref(); +function showError(error) { + errMessage.value = error?.response?.data?.error?.message; + quasar.notify({ + type: 'negative', + message: t(`${errMessage.value}`), + }); +} </script> <template> @@ -105,6 +115,7 @@ const submitTags = async (data) => { order="priority" auto-load @on-fetch="onItemTagsFetched" + @data-error="(val) => showError(val)" > <template #body="{ rows, validate }"> <QCard class="q-px-lg q-pt-md q-pb-sm" data-cy="itemTags"> @@ -197,4 +208,5 @@ const submitTags = async (data) => { <i18n> es: Tags can not be repeated: Las etiquetas no pueden repetirse + The value must be a number or a range of numbers: El valor debe ser un número o un rango de números </i18n> From f3f4d03c160b7972a8fc1559b5844fae12ee848b Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Thu, 16 Jan 2025 12:27:24 +0100 Subject: [PATCH 26/79] refactor: refs #6822 transferEntry moved to descriptor menu --- src/pages/Entry/Card/EntryDescriptor.vue | 35 +----------------- src/pages/Entry/Card/EntryDescriptorMenu.vue | 39 ++++++++++++++++++++ 2 files changed, 40 insertions(+), 34 deletions(-) diff --git a/src/pages/Entry/Card/EntryDescriptor.vue b/src/pages/Entry/Card/EntryDescriptor.vue index af5da6a4c..622632108 100644 --- a/src/pages/Entry/Card/EntryDescriptor.vue +++ b/src/pages/Entry/Card/EntryDescriptor.vue @@ -2,17 +2,10 @@ import { ref, computed, onMounted } from 'vue'; import { useRoute } from 'vue-router'; import { useI18n } from 'vue-i18n'; -import axios from 'axios'; -import { useQuasar } from 'quasar'; - import CardDescriptor from 'components/ui/CardDescriptor.vue'; import VnLv from 'src/components/ui/VnLv.vue'; - import { toDate } from 'src/filters'; import { getUrl } from 'src/composables/getUrl'; -import useNotify from 'src/composables/useNotify.js'; -import VnConfirm from 'src/components/ui/VnConfirm.vue'; -import filter from './EntryFilter.js'; import EntryDescriptorMenu from './EntryDescriptorMenu.vue'; const $props = defineProps({ @@ -23,13 +16,10 @@ const $props = defineProps({ }, }); -const quasar = useQuasar(); const route = useRoute(); const { t } = useI18n(); const entryDescriptorRef = ref(null); const url = ref(); -const { notify } = useNotify(); - const entryFilter = { include: [ { @@ -66,7 +56,6 @@ const entryFilter = { }, ], }; - const entityId = computed(() => { return $props.id || route.params.id; }); @@ -94,27 +83,6 @@ const getEntryRedirectionFilter = (entry) => { to, }); }; - -const showEntryReport = () => { - openReport(`Entries/${route.params.id}/entry-order-pdf`); -}; - -const transferEntry = async () => { - let response = await axios.post(`Entries/${route.params.id}/transfer`); - notify('globals.dataSaved', 'positive'); - const url = `#/entry/${response.data.newEntryFk[0].newEntryFk}/summary`; - window.open(url, '_blank'); -}; - -const openDialog = () => { - quasar.dialog({ - component: VnConfirm, - componentProps: { - title: t('Se van a transferir las compra al dia siguiente'), - promise: transferEntry, - }, - }); -}; </script> <template> @@ -122,7 +90,7 @@ const openDialog = () => { ref="entryDescriptorRef" module="Entry" :url="`Entries/${entityId}`" - :filter="filter" + :filter="entryFilter" title="supplier.nickname" data-key="Entry" > @@ -214,5 +182,4 @@ es: Go to module index: Ir al índice del modulo Inventory entry: Es inventario Virtual entry: Es una redada - Transfer Entry: Transferir Entrada </i18n> diff --git a/src/pages/Entry/Card/EntryDescriptorMenu.vue b/src/pages/Entry/Card/EntryDescriptorMenu.vue index a357b46fe..a0d68aa39 100644 --- a/src/pages/Entry/Card/EntryDescriptorMenu.vue +++ b/src/pages/Entry/Card/EntryDescriptorMenu.vue @@ -1,5 +1,11 @@ <script setup> +import { useI18n } from 'vue-i18n'; +import { useRoute } from 'vue-router'; +import { useQuasar } from 'quasar'; +import axios from 'axios'; import { usePrintService } from 'composables/usePrintService'; +import useNotify from 'src/composables/useNotify.js'; +import VnConfirm from 'src/components/ui/VnConfirm.vue'; const { openReport } = usePrintService(); @@ -9,14 +15,47 @@ const $props = defineProps({ required: true, }, }); +const { t } = useI18n(); +const { notify } = useNotify(); +const quasar = useQuasar(); +const route = useRoute(); function showEntryReport() { openReport(`Entries/${$props.id}/entry-order-pdf`); } + +const openDialog = () => { + quasar.dialog({ + component: VnConfirm, + componentProps: { + title: t('transferEntryDialog'), + promise: transferEntry, + }, + }); +}; + +const transferEntry = async () => { + let response = await axios.post(`Entries/${route.params.id}/transfer`); + notify('globals.dataSaved', 'positive'); + const url = `#/entry/${response.data.newEntryFk[0].newEntryFk}/summary`; + window.open(url, '_blank'); +}; </script> <template> <QItem v-ripple clickable @click="showEntryReport"> <QItemSection>{{ $t('entryList.list.showEntryReport') }}</QItemSection> </QItem> + <QItem v-ripple clickable @click="openDialog"> + <QItemSection>{{ t('transferEntry') }}</QItemSection> + </QItem> </template> + +<i18n> +en: + transferEntryDialog: The entries will be transferred to the next day + transferEntry: Transfer Entry +es: + transferEntryDialog: Se van a transferir las compras al dia siguiente + transferEntry: Transferir Entrada +</i18n> From 3729834a86fb02b25fc382ab39c2cca3a31328b2 Mon Sep 17 00:00:00 2001 From: jtubau <jtubau@verdnatura.es> Date: Fri, 17 Jan 2025 10:55:00 +0100 Subject: [PATCH 27/79] refactor: refs #8316 add new localization keys and update existing ones for invoiceIn components --- src/components/common/VnLog.vue | 8 +- src/i18n/locale/en.yml | 96 ++++++++++--------- src/i18n/locale/es.yml | 50 +++++----- .../InvoiceIn/Card/InvoiceInBasicData.vue | 2 +- .../InvoiceIn/Card/InvoiceInDescriptor.vue | 14 +-- .../Card/InvoiceInDescriptorMenu.vue | 26 ++--- src/pages/InvoiceIn/Card/InvoiceInSummary.vue | 68 ++++++------- src/pages/InvoiceIn/InvoiceInCreate.vue | 6 +- src/pages/InvoiceIn/InvoiceInFilter.vue | 2 +- src/pages/InvoiceIn/InvoiceInList.vue | 22 ++--- src/pages/InvoiceIn/locale/en.yml | 2 +- src/pages/InvoiceIn/locale/es.yml | 3 +- src/pages/InvoiceOut/InvoiceOutList.vue | 2 +- 13 files changed, 155 insertions(+), 146 deletions(-) diff --git a/src/components/common/VnLog.vue b/src/components/common/VnLog.vue index 9eca3c711..c6b9f29d1 100644 --- a/src/components/common/VnLog.vue +++ b/src/components/common/VnLog.vue @@ -799,7 +799,7 @@ watch( <QItem class="q-mt-sm"> <QInput class="full-width" - :label="t('to')" + :label="t('globals.to')" @click="dateToDialog = true" @focus="(evt) => evt.target.blur()" @clear="selectFilter('date', 'from')" @@ -1053,9 +1053,9 @@ en: Deletes: Deletes Accesses: Accesses Users: - User: Usuario - All: Todo - System: Sistema + User: User + All: All + System: System properties: id: ID claimFk: Claim ID diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml index bf001c9ba..4a6decf89 100644 --- a/src/i18n/locale/en.yml +++ b/src/i18n/locale/en.yml @@ -1,9 +1,9 @@ globals: lang: es: Spanish - en: English - quantity: Quantity + en: English language: Language + quantity: Quantity entity: Entity user: User details: Details @@ -35,7 +35,6 @@ globals: confirm: Confirm assign: Assign back: Back - downloadPdf: Download PDF yes: 'Yes' no: 'No' noChanges: No changes to save @@ -59,6 +58,7 @@ globals: downloadCSVSuccess: CSV downloaded successfully reference: Reference agency: Agency + entry: Entry warehouseOut: Warehouse Out warehouseIn: Warehouse In landed: Landed @@ -67,11 +67,11 @@ globals: amount: Amount packages: Packages download: Download + downloadPdf: Download PDF selectRows: 'Select all { numberRows } row(s)' allRows: 'All { numberRows } row(s)' markAll: Mark all requiredField: Required field - valueCantBeEmpty: Value cannot be empty class: clase type: Type reason: reason @@ -81,6 +81,9 @@ globals: warehouse: Warehouse company: Company fieldRequired: Field required + valueCantBeEmpty: Value cannot be empty + Value can't be blank: Value cannot be blank + Value can't be null: Value cannot be null allowedFilesText: 'Allowed file types: { allowedContentTypes }' smsSent: SMS sent confirmDeletion: Confirm deletion @@ -130,6 +133,26 @@ globals: medium: Medium big: Big email: Email + supplier: Supplier + ticketList: Ticket List + created: Created + worker: Worker + now: Now + name: Name + new: New + comment: Comment + observations: Observations + goToModuleIndex: Go to module index + createInvoiceIn: Create invoice in + myAccount: My account + noOne: No one + maxTemperature: Max + minTemperature: Min + changePass: Change password + deleteConfirmTitle: Delete selected elements + changeState: Change state + raid: 'Raid {daysInForward} days' + isVies: Vies pageTitles: logIn: Login addressEdit: Update address @@ -151,13 +174,14 @@ globals: subRoles: Subroles inheritedRoles: Inherited Roles customers: Customers + customerCreate: New customer + createCustomer: Create customer + createOrder: New order list: List webPayments: Web Payments extendedList: Extended list notifications: Notifications defaulter: Defaulter - customerCreate: New customer - createOrder: New order fiscalData: Fiscal data billingData: Billing data consignees: Consignees @@ -193,27 +217,28 @@ globals: claims: Claims claimCreate: New claim lines: Lines - photos: Photos development: Development + photos: Photos action: Action invoiceOuts: Invoice out negativeBases: Negative Bases globalInvoicing: Global invoicing invoiceOutCreate: Create invoice out + order: Orders + orderList: List + orderCreate: New order + catalog: Catalog + volume: Volume shelving: Shelving shelvingList: Shelving List shelvingCreate: New shelving invoiceIns: Invoices In invoiceInCreate: Create invoice in vat: VAT + labeler: Labeler dueDay: Due day intrastat: Intrastat corrective: Corrective - order: Orders - orderList: List - orderCreate: New order - catalog: Catalog - volume: Volume workers: Workers workerCreate: New worker department: Department @@ -226,10 +251,10 @@ globals: wagonsList: Wagons List wagonCreate: Create wagon wagonEdit: Edit wagon + wagonCounter: Trolley counter typesList: Types List typeCreate: Create type typeEdit: Edit type - wagonCounter: Trolley counter roadmap: Roadmap stops: Stops routes: Routes @@ -238,21 +263,16 @@ globals: routeCreate: New route RouteRoadmap: Roadmaps RouteRoadmapCreate: Create roadmap + RouteExtendedList: Router autonomous: Autonomous suppliers: Suppliers supplier: Supplier - expedition: Expedition - services: Service - components: Components - pictures: Pictures - packages: Packages - tracking: Tracking - labeler: Labeler supplierCreate: New supplier accounts: Accounts addresses: Addresses agencyTerm: Agency agreement travel: Travels + create: Create extraCommunity: Extra community travelCreate: New travel history: Log @@ -260,14 +280,13 @@ globals: items: Items diary: Diary tags: Tags - create: Create - buyRequest: Buy requests fixedPrice: Fixed prices + buyRequest: Buy requests wasteBreakdown: Waste breakdown itemCreate: New item - barcode: Barcodes tax: Tax botanical: Botanical + barcode: Barcodes itemTypeCreate: New item type family: Item Type lastEntries: Last entries @@ -283,13 +302,20 @@ globals: formation: Formation locations: Locations warehouses: Warehouses - saleTracking: Sale tracking roles: Roles connections: Connections acls: ACLs mailForwarding: Mail forwarding mailAlias: Mail alias privileges: Privileges + observation: Notes + expedition: Expedition + saleTracking: Sale tracking + services: Service + tracking: Tracking + components: Components + pictures: Pictures + packages: Packages ldap: LDAP samba: Samba twoFactor: Two factor @@ -300,27 +326,12 @@ globals: serial: Serial medical: Mutual pit: IRPF - RouteExtendedList: Router wasteRecalc: Waste recaclulate operator: Operator parking: Parking - supplier: Supplier - created: Created - worker: Worker - now: Now - name: Name - new: New - comment: Comment - observations: Observations - goToModuleIndex: Go to module index unsavedPopup: title: Unsaved changes will be lost subtitle: Are you sure exit without saving? - createInvoiceIn: Create invoice in - myAccount: My account - noOne: No one - maxTemperature: Max - minTemperature: Min params: clientFk: Client id salesPersonFk: Sales person @@ -338,18 +349,13 @@ globals: supplierFk: Supplier supplierRef: Supplier ref serial: Serial - amount: Importe + amount: Amount awbCode: AWB correctedFk: Rectified correctingFk: Rectificative daysOnward: Days onward countryFk: Country companyFk: Company - changePass: Change password - deleteConfirmTitle: Delete selected elements - changeState: Change state - raid: 'Raid {daysInForward} days' - isVies: Vies errors: statusUnauthorized: Access denied statusInternalServerError: An internal server error has ocurred diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml index 2c95f936c..ce0b8c992 100644 --- a/src/i18n/locale/es.yml +++ b/src/i18n/locale/es.yml @@ -53,11 +53,12 @@ globals: today: Hoy yesterday: Ayer dateFormat: es-ES - noSelectedRows: No tienes ninguna línea seleccionada microsip: Abrir en MicroSIP + noSelectedRows: No tienes ninguna línea seleccionada downloadCSVSuccess: Descarga de CSV exitosa reference: Referencia agency: Agencia + entry: Entrada warehouseOut: Alm. salida warehouseIn: Alm. entrada landed: F. entrega @@ -132,6 +133,26 @@ globals: medium: Mediano/a big: Grande email: Correo + supplier: Proveedor + ticketList: Listado de tickets + created: Fecha creación + worker: Trabajador + now: Ahora + name: Nombre + new: Nuevo + comment: Comentario + observations: Observaciones + goToModuleIndex: Ir al índice del módulo + createInvoiceIn: Crear factura recibida + myAccount: Mi cuenta + noOne: Nadie + maxTemperature: Máx + minTemperature: Mín + changePass: Cambiar contraseña + deleteConfirmTitle: Eliminar los elementos seleccionados + changeState: Cambiar estado + raid: 'Redada {daysInForward} días' + isVies: Vies pageTitles: logIn: Inicio de sesión addressEdit: Modificar consignatario @@ -154,17 +175,17 @@ globals: inheritedRoles: Roles heredados customers: Clientes customerCreate: Nuevo cliente + createCustomer: Crear cliente createOrder: Nuevo pedido list: Listado webPayments: Pagos Web extendedList: Listado extendido notifications: Notificaciones defaulter: Morosos - createCustomer: Crear cliente fiscalData: Datos fiscales billingData: Forma de pago consignees: Consignatarios - 'address-create': Nuevo consignatario + address-create: Nuevo consignatario notes: Notas credits: Créditos greuges: Greuges @@ -230,10 +251,10 @@ globals: wagonsList: Listado vagones wagonCreate: Crear tipo wagonEdit: Editar tipo + wagonCounter: Contador de carros typesList: Listado tipos typeCreate: Crear tipo typeEdit: Editar tipo - wagonCounter: Contador de carros roadmap: Troncales stops: Paradas routes: Rutas @@ -242,8 +263,8 @@ globals: routeCreate: Nueva ruta RouteRoadmap: Troncales RouteRoadmapCreate: Crear troncal - autonomous: Autónomos RouteExtendedList: Enrutador + autonomous: Autónomos suppliers: Proveedores supplier: Proveedor supplierCreate: Nuevo proveedor @@ -308,23 +329,9 @@ globals: wasteRecalc: Recalcular mermas operator: Operario parking: Parking - supplier: Proveedor - created: Fecha creación - worker: Trabajador - now: Ahora - name: Nombre - new: Nuevo - comment: Comentario - observations: Observaciones - goToModuleIndex: Ir al índice del módulo unsavedPopup: title: Los cambios que no haya guardado se perderán subtitle: ¿Seguro que quiere salir sin guardar? - createInvoiceIn: Crear factura recibida - myAccount: Mi cuenta - noOne: Nadie - maxTemperature: Máx - minTemperature: Mín params: clientFk: Id cliente salesPersonFk: Comercial @@ -347,11 +354,6 @@ globals: packing: ITP countryFk: País companyFk: Empresa - changePass: Cambiar contraseña - deleteConfirmTitle: Eliminar los elementos seleccionados - changeState: Cambiar estado - raid: 'Redada {daysInForward} días' - isVies: Vies errors: statusUnauthorized: Acceso denegado statusInternalServerError: Ha ocurrido un error interno del servidor diff --git a/src/pages/InvoiceIn/Card/InvoiceInBasicData.vue b/src/pages/InvoiceIn/Card/InvoiceInBasicData.vue index 90aa50af7..498e67303 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInBasicData.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInBasicData.vue @@ -268,7 +268,7 @@ function deleteFile(dmsFk) { </VnRow> <VnRow> <VnSelect - :label="t('invoicein.summary.sage')" + :label="t('invoiceIn.summary.sage')" v-model="data.withholdingSageFk" :options="sageWithholdings" option-value="id" diff --git a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue index 4d9e180eb..8782e7c3b 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue @@ -166,10 +166,10 @@ const createInvoiceInCorrection = async () => { <InvoiceInDescriptorMenu :invoice="entity" /> </template> <template #body="{ entity }"> - <VnLv :label="t('invoicein.list.issued')" :value="toDate(entity.issued)" /> - <VnLv :label="t('invoicein.summary.bookedDate')" :value="toDate(entity.booked)" /> - <VnLv :label="t('invoicein.list.amount')" :value="toCurrency(totalAmount)" /> - <VnLv :label="t('invoicein.list.supplier')"> + <VnLv :label="t('invoiceIn.list.issued')" :value="toDate(entity.issued)" /> + <VnLv :label="t('invoiceIn.summary.bookedDate')" :value="toDate(entity.booked)" /> + <VnLv :label="t('invoiceIn.list.amount')" :value="toCurrency(totalAmount)" /> + <VnLv :label="t('invoiceIn.list.supplier')"> <template #value> <span class="link"> {{ entity?.supplier?.nickname }} @@ -186,7 +186,7 @@ const createInvoiceInCorrection = async () => { color="primary" :to="routes.getSupplier(entity.supplierFk)" > - <QTooltip>{{ t('invoicein.list.supplier') }}</QTooltip> + <QTooltip>{{ t('globals.supplier') }}</QTooltip> </QBtn> <QBtn size="md" @@ -194,7 +194,7 @@ const createInvoiceInCorrection = async () => { color="primary" :to="routes.getEntry(entity.entryFk)" > - <QTooltip>{{ t('Entry') }}</QTooltip> + <QTooltip>{{ t('globals.entry') }}</QTooltip> </QBtn> <QBtn size="md" @@ -202,7 +202,7 @@ const createInvoiceInCorrection = async () => { color="primary" :to="routes.getTickets(entity.supplierFk)" > - <QTooltip>{{ t('InvoiceOut.card.ticketList') }}</QTooltip> + <QTooltip>{{ t('globals.ticketList') }}</QTooltip> </QBtn> <QBtn v-if=" diff --git a/src/pages/InvoiceIn/Card/InvoiceInDescriptorMenu.vue b/src/pages/InvoiceIn/Card/InvoiceInDescriptorMenu.vue index 647b68f88..d1c2381d1 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDescriptorMenu.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDescriptorMenu.vue @@ -33,15 +33,15 @@ const entityId = computed(() => $props.invoice.id || +currentRoute.value.params. const invoiceIn = computed(() => arrayData.store.data); const actions = { unbook: { - title: t('assertAction', { action: t('invoicein.descriptorMenu.unbook') }), + title: t('assertAction', { action: t('invoiceIn.descriptorMenu.unbook') }), action: toUnbook, }, delete: { - title: t('assertAction', { action: t('invoicein.descriptorMenu.delete') }), + title: t('assertAction', { action: t('invoiceIn.descriptorMenu.delete') }), action: deleteInvoice, }, clone: { - title: t('assertAction', { action: t('invoicein.descriptorMenu.clone') }), + title: t('assertAction', { action: t('invoiceIn.descriptorMenu.clone') }), action: cloneInvoice, }, showPdf: { cb: showPdfInvoice }, @@ -84,7 +84,7 @@ async function deleteInvoice() { await axios.delete(`InvoiceIns/${entityId.value}`); quasar.notify({ type: 'positive', - message: t('invoicein.descriptorMenu.invoiceDeleted'), + message: t('invoiceIn.descriptorMenu.invoiceDeleted'), }); push({ path: '/invoice-in' }); } @@ -93,7 +93,7 @@ async function cloneInvoice() { const { data } = await axios.post(`InvoiceIns/${entityId.value}/clone`); quasar.notify({ type: 'positive', - message: t('invoicein.descriptorMenu.invoiceCloned'), + message: t('invoiceIn.descriptorMenu.invoiceCloned'), }); push({ path: `/invoice-in/${data.id}/summary` }); } @@ -144,7 +144,7 @@ function sendPdfInvoice({ address }) { clickable @click="book(entityId)" > - <QItemSection>{{ t('invoicein.descriptorMenu.toBook') }}</QItemSection> + <QItemSection>{{ t('invoiceIn.descriptorMenu.toBook') }}</QItemSection> </QItem> </template> </InvoiceInToBook> @@ -155,28 +155,28 @@ function sendPdfInvoice({ address }) { @click="triggerMenu('unbook')" > <QItemSection> - {{ t('invoicein.descriptorMenu.toUnbook') }} + {{ t('invoiceIn.descriptorMenu.toUnbook') }} </QItemSection> </QItem> <QItem v-if="canEditProp('deleteById')" v-ripple clickable - @click="triggerMenu('invoicein.descriptorMenu.delete')" + @click="triggerMenu('invoiceIn.descriptorMenu.delete')" > - <QItemSection>{{ t('invoicein.descriptorMenu.deleteInvoice') }}</QItemSection> + <QItemSection>{{ t('invoiceIn.descriptorMenu.deleteInvoice') }}</QItemSection> </QItem> <QItem v-if="canEditProp('clone')" v-ripple clickable @click="triggerMenu('clone')"> - <QItemSection>{{ t('invoicein.descriptorMenu.cloneInvoice') }}</QItemSection> + <QItemSection>{{ t('invoiceIn.descriptorMenu.cloneInvoice') }}</QItemSection> </QItem> <QItem v-if="isAgricultural()" v-ripple clickable @click="triggerMenu('showPdf')"> <QItemSection>{{ - t('invoicein.descriptorMenu.showAgriculturalPdf') + t('invoiceIn.descriptorMenu.showAgriculturalPdf') }}</QItemSection> </QItem> <QItem v-if="isAgricultural()" v-ripple clickable @click="triggerMenu('sendPdf')"> <QItemSection - >{{ t('invoicein.descriptorMenu.sendAgriculturalPdf') }}...</QItemSection + >{{ t('invoiceIn.descriptorMenu.sendAgriculturalPdf') }}...</QItemSection > </QItem> <QItem @@ -186,7 +186,7 @@ function sendPdfInvoice({ address }) { @click="triggerMenu('correct')" > <QItemSection - >{{ t('invoicein.descriptorMenu.createCorrective') }}...</QItemSection + >{{ t('invoiceIn.descriptorMenu.createCorrective') }}...</QItemSection > </QItem> <QItem v-if="invoice.dmsFk" v-ripple clickable @click="downloadFile(invoice.dmsFk)"> diff --git a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue index eca0c7af1..e546638f2 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue @@ -27,14 +27,14 @@ const intrastatTotals = ref({ amount: 0, net: 0, stems: 0 }); const vatColumns = ref([ { name: 'expense', - label: 'invoicein.summary.expense', + label: 'invoiceIn.summary.expense', field: (row) => row.expenseFk, sortable: true, align: 'left', }, { name: 'landed', - label: 'invoicein.summary.taxableBase', + label: 'invoiceIn.summary.taxableBase', field: (row) => row.taxableBase, format: (value) => toCurrency(value), sortable: true, @@ -42,7 +42,7 @@ const vatColumns = ref([ }, { name: 'vat', - label: 'invoicein.summary.sageVat', + label: 'invoiceIn.summary.sageVat', field: (row) => { if (row.taxTypeSage) return `#${row.taxTypeSage.id} : ${row.taxTypeSage.vat}`; }, @@ -52,7 +52,7 @@ const vatColumns = ref([ }, { name: 'transaction', - label: 'invoicein.summary.sageTransaction', + label: 'invoiceIn.summary.sageTransaction', field: (row) => { if (row.transactionTypeSage) return `#${row.transactionTypeSage.id} : ${row.transactionTypeSage?.transaction}`; @@ -63,7 +63,7 @@ const vatColumns = ref([ }, { name: 'rate', - label: 'invoicein.summary.rate', + label: 'invoiceIn.summary.rate', field: (row) => taxRate(row.taxableBase, row.taxTypeSage?.rate), format: (value) => toCurrency(value), sortable: true, @@ -71,7 +71,7 @@ const vatColumns = ref([ }, { name: 'currency', - label: 'invoicein.summary.currency', + label: 'invoiceIn.summary.currency', field: (row) => row.foreignValue, format: (val) => val && toCurrency(val, currency.value), sortable: true, @@ -82,21 +82,21 @@ const vatColumns = ref([ const dueDayColumns = ref([ { name: 'date', - label: 'invoicein.summary.dueDay', + label: 'invoiceIn.summary.dueDay', field: (row) => toDate(row.dueDated), sortable: true, align: 'left', }, { name: 'bank', - label: 'invoicein.summary.bank', + label: 'invoiceIn.summary.bank', field: (row) => row.bank.bank, sortable: true, align: 'left', }, { name: 'amount', - label: 'invoicein.list.amount', + label: 'invoiceIn.list.amount', field: (row) => row.amount, format: (value) => toCurrency(value), sortable: true, @@ -104,7 +104,7 @@ const dueDayColumns = ref([ }, { name: 'landed', - label: 'invoicein.summary.foreignValue', + label: 'invoiceIn.summary.foreignValue', field: (row) => row.foreignValue, format: (val) => val && toCurrency(val, currency.value), sortable: true, @@ -115,7 +115,7 @@ const dueDayColumns = ref([ const intrastatColumns = ref([ { name: 'code', - label: 'invoicein.summary.code', + label: 'invoiceIn.summary.code', field: (row) => { return `${row.intrastat.id}: ${row.intrastat?.description}`; }, @@ -124,21 +124,21 @@ const intrastatColumns = ref([ }, { name: 'amount', - label: 'invoicein.list.amount', + label: 'invoiceIn.list.amount', field: (row) => toCurrency(row.amount), sortable: true, align: 'left', }, { name: 'net', - label: 'invoicein.summary.net', + label: 'invoiceIn.summary.net', field: (row) => row.net, sortable: true, align: 'left', }, { name: 'stems', - label: 'invoicein.summary.stems', + label: 'invoiceIn.summary.stems', field: (row) => row.stems, format: (value) => value, sortable: true, @@ -146,7 +146,7 @@ const intrastatColumns = ref([ }, { name: 'landed', - label: 'invoicein.summary.country', + label: 'invoiceIn.summary.country', field: (row) => row.country?.code, format: (value) => value, sortable: true, @@ -214,7 +214,7 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; /> </QCardSection> <VnLv - :label="t('invoicein.list.supplier')" + :label="t('invoiceIn.list.supplier')" :value="entity.supplier?.name" > <template #value> @@ -225,14 +225,14 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; </template> </VnLv> <VnLv - :label="t('invoicein.list.supplierRef')" + :label="t('invoiceIn.list.supplierRef')" :value="entity.supplierRef" /> <VnLv - :label="t('invoicein.summary.currency')" + :label="t('invoiceIn.summary.currency')" :value="entity.currency?.code" /> - <VnLv :label="t('invoicein.serial')" :value="`${entity.serial}`" /> + <VnLv :label="t('invoiceIn.serial')" :value="`${entity.serial}`" /> <VnLv :label="t('globals.country')" :value="entity.supplier?.country?.code" @@ -247,19 +247,19 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; </QCardSection> <VnLv :ellipsis-value="false" - :label="t('invoicein.summary.issued')" + :label="t('invoiceIn.summary.issued')" :value="toDate(entity.issued)" /> <VnLv - :label="t('invoicein.summary.operated')" + :label="t('invoiceIn.summary.operated')" :value="toDate(entity.operated)" /> <VnLv - :label="t('invoicein.summary.bookEntried')" + :label="t('invoiceIn.summary.bookEntried')" :value="toDate(entity.bookEntried)" /> <VnLv - :label="t('invoicein.summary.bookedDate')" + :label="t('invoiceIn.summary.bookedDate')" :value="toDate(entity.booked)" /> <VnLv :label="t('globals.isVies')" :value="entity.supplier?.isVies" /> @@ -272,18 +272,18 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; /> </QCardSection> <VnLv - :label="t('invoicein.summary.sage')" + :label="t('invoiceIn.summary.sage')" :value="entity.sageWithholding?.withholding" /> <VnLv - :label="t('invoicein.summary.vat')" + :label="t('invoiceIn.summary.vat')" :value="entity.expenseDeductible?.name" /> <VnLv - :label="t('invoicein.card.company')" + :label="t('invoiceIn.card.company')" :value="entity.company?.code" /> - <VnLv :label="t('invoicein.isBooked')" :value="invoiceIn?.isBooked" /> + <VnLv :label="t('invoiceIn.isBooked')" :value="invoiceIn?.isBooked" /> </QCard> <QCard class="vn-one"> <QCardSection class="q-pa-none"> @@ -294,11 +294,11 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; </QCardSection> <QCardSection class="q-pa-none"> <VnLv - :label="t('invoicein.summary.taxableBase')" + :label="t('invoiceIn.summary.taxableBase')" :value="toCurrency(entity.totals.totalTaxableBase)" /> <VnLv label="Total" :value="toCurrency(entity.totals.totalVat)" /> - <VnLv :label="t('invoicein.summary.dueTotal')"> + <VnLv :label="t('invoiceIn.summary.dueTotal')"> <template #value> <QChip dense @@ -306,8 +306,8 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; :color="amountsNotMatch ? 'negative' : 'transparent'" :title=" amountsNotMatch - ? t('invoicein.summary.noMatch') - : t('invoicein.summary.dueTotal') + ? t('invoiceIn.summary.noMatch') + : t('invoiceIn.summary.dueTotal') " > {{ toCurrency(entity.totals.totalDueDay) }} @@ -318,7 +318,7 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; </QCard> <!--Vat--> <QCard v-if="entity.invoiceInTax.length" class="vat"> - <VnTitle :url="getLink('vat')" :text="t('invoicein.card.vat')" /> + <VnTitle :url="getLink('vat')" :text="t('invoiceIn.card.vat')" /> <QTable :columns="vatColumns" :rows="entity.invoiceInTax" @@ -366,7 +366,7 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; </QCard> <!--Due Day--> <QCard v-if="entity.invoiceInDueDay.length" class="due-day"> - <VnTitle :url="getLink('due-day')" :text="t('invoicein.card.dueDay')" /> + <VnTitle :url="getLink('due-day')" :text="t('invoiceIn.card.dueDay')" /> <QTable :columns="dueDayColumns" :rows="entity.invoiceInDueDay" flat> <template #header="dueDayProps"> <QTr :props="dueDayProps" class="bg"> @@ -404,7 +404,7 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; <QCard v-if="entity.invoiceInIntrastat.length"> <VnTitle :url="getLink('intrastat')" - :text="t('invoicein.card.intrastat')" + :text="t('invoiceIn.card.intrastat')" /> <QTable :columns="intrastatColumns" diff --git a/src/pages/InvoiceIn/InvoiceInCreate.vue b/src/pages/InvoiceIn/InvoiceInCreate.vue index f180410aa..c809e032b 100644 --- a/src/pages/InvoiceIn/InvoiceInCreate.vue +++ b/src/pages/InvoiceIn/InvoiceInCreate.vue @@ -83,7 +83,7 @@ const redirectToInvoiceInBasicData = (__, { id }) => { </template> </VnSelect> <VnInput - :label="t('invoicein.list.supplierRef')" + :label="t('invoiceIn.list.supplierRef')" v-model="data.supplierRef" /> </VnRow> @@ -97,10 +97,10 @@ const redirectToInvoiceInBasicData = (__, { id }) => { map-options hide-selected :required="true" - :rules="validate('invoicein.companyFk')" + :rules="validate('invoiceIn.companyFk')" /> <VnInputDate - :label="t('invoicein.summary.issued')" + :label="t('invoiceIn.summary.issued')" v-model="data.issued" /> </VnRow> diff --git a/src/pages/InvoiceIn/InvoiceInFilter.vue b/src/pages/InvoiceIn/InvoiceInFilter.vue index 31a611936..43b91c93f 100644 --- a/src/pages/InvoiceIn/InvoiceInFilter.vue +++ b/src/pages/InvoiceIn/InvoiceInFilter.vue @@ -164,7 +164,7 @@ function handleDaysAgo(params, daysAgo) { <QItem> <QItemSection> <QCheckbox - :label="$t('invoicein.isBooked')" + :label="$t('invoiceIn.isBooked')" v-model="params.isBooked" @update:model-value="searchFn()" toggle-indeterminate diff --git a/src/pages/InvoiceIn/InvoiceInList.vue b/src/pages/InvoiceIn/InvoiceInList.vue index 56b6848b0..024ac97bb 100644 --- a/src/pages/InvoiceIn/InvoiceInList.vue +++ b/src/pages/InvoiceIn/InvoiceInList.vue @@ -26,7 +26,7 @@ const cols = computed(() => [ { align: 'left', name: 'isBooked', - label: t('invoicein.isBooked'), + label: t('invoiceIn.isBooked'), columnFilter: false, }, { @@ -41,7 +41,7 @@ const cols = computed(() => [ { align: 'left', name: 'supplierFk', - label: t('invoicein.list.supplier'), + label: t('invoiceIn.list.supplier'), columnFilter: { component: 'select', attrs: { @@ -55,16 +55,16 @@ const cols = computed(() => [ { align: 'left', name: 'supplierRef', - label: t('invoicein.list.supplierRef'), + label: t('invoiceIn.list.supplierRef'), }, { align: 'left', name: 'serial', - label: t('invoicein.serial'), + label: t('invoiceIn.serial'), }, { align: 'left', - label: t('invoicein.list.issued'), + label: t('invoiceIn.list.issued'), name: 'issued', component: null, columnFilter: { @@ -74,7 +74,7 @@ const cols = computed(() => [ }, { align: 'left', - label: t('invoicein.list.dueDated'), + label: t('invoiceIn.list.dueDated'), name: 'dueDated', component: null, columnFilter: { @@ -86,12 +86,12 @@ const cols = computed(() => [ { align: 'left', name: 'awbCode', - label: t('invoicein.list.awb'), + label: t('invoiceIn.list.awb'), }, { align: 'left', name: 'amount', - label: t('invoicein.list.amount'), + label: t('invoiceIn.list.amount'), format: ({ amount }) => toCurrency(amount), cardVisible: true, }, @@ -136,7 +136,7 @@ const cols = computed(() => [ <VnSection :data-key="dataKey" :columns="cols" - prefix="invoicein" + prefix="invoiceIn" :array-data-props="{ url: 'InvoiceIns/filter', order: ['issued DESC', 'id DESC'], @@ -190,7 +190,7 @@ const cols = computed(() => [ </template> </VnSelect> <VnInput - :label="t('invoicein.list.supplierRef')" + :label="t('invoiceIn.list.supplierRef')" v-model="data.supplierRef" /> <VnSelect @@ -202,7 +202,7 @@ const cols = computed(() => [ option-label="code" :required="true" /> - <VnInputDate :label="t('invoicein.summary.issued')" v-model="data.issued" /> + <VnInputDate :label="t('invoiceIn.summary.issued')" v-model="data.issued" /> </template> </VnTable> </template> diff --git a/src/pages/InvoiceIn/locale/en.yml b/src/pages/InvoiceIn/locale/en.yml index f9cf3e05d..6b21b316b 100644 --- a/src/pages/InvoiceIn/locale/en.yml +++ b/src/pages/InvoiceIn/locale/en.yml @@ -1,4 +1,4 @@ -invoicein: +invoiceIn: search: Search invoice searchInfo: Search incoming invoices by ID or supplier fiscal name serial: Serial diff --git a/src/pages/InvoiceIn/locale/es.yml b/src/pages/InvoiceIn/locale/es.yml index 2b4b31ec8..3f27c895c 100644 --- a/src/pages/InvoiceIn/locale/es.yml +++ b/src/pages/InvoiceIn/locale/es.yml @@ -1,4 +1,4 @@ -invoicein: +invoiceIn: search: Buscar factura recibida searchInfo: Buscar facturas recibidas por ID o nombre fiscal del proveedor serial: Serie @@ -65,6 +65,7 @@ invoicein: params: search: Id o nombre proveedor correctedFk: Rectificada + isBooked: Contabilizada account: Cuenta contable correctingFk: Rectificativa diff --git a/src/pages/InvoiceOut/InvoiceOutList.vue b/src/pages/InvoiceOut/InvoiceOutList.vue index 09873642d..3b9d3d843 100644 --- a/src/pages/InvoiceOut/InvoiceOutList.vue +++ b/src/pages/InvoiceOut/InvoiceOutList.vue @@ -355,7 +355,7 @@ watchEffect(selectedRows); <VnSelect url="InvoiceOutSerials" v-model="data.serial" - :label="t('invoicein.serial')" + :label="t('invoiceIn.serial')" :options="invoiceOutSerialsOptions" option-label="description" option-value="code" From 2c607ef8d9ff9b0f29173692d67ce1e5e5d038c0 Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Fri, 17 Jan 2025 13:16:04 +0100 Subject: [PATCH 28/79] refactor: refs #8120 change prop and classes' names --- src/components/common/VnSummaryDialog.vue | 12 ++++++------ src/components/ui/CardDescriptor.vue | 8 +++----- src/composables/useSummaryDialog.js | 4 ++-- src/pages/Customer/Card/CustomerDescriptor.vue | 2 +- src/pages/Entry/Card/EntryDescriptor.vue | 2 +- src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue | 7 +++++-- src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue | 2 +- src/pages/Route/Card/RouteDescriptor.vue | 2 +- src/pages/Ticket/Card/TicketDescriptor.vue | 6 +++++- 9 files changed, 25 insertions(+), 20 deletions(-) diff --git a/src/components/common/VnSummaryDialog.vue b/src/components/common/VnSummaryDialog.vue index bbca1bd98..5da941a27 100644 --- a/src/components/common/VnSummaryDialog.vue +++ b/src/components/common/VnSummaryDialog.vue @@ -10,9 +10,9 @@ defineProps({ type: Object, required: true, }, - moduleClass: { + width: { type: String, - default: 'defaultSummary', + default: 'md-width', }, }); @@ -22,18 +22,18 @@ const { dialogRef, onDialogHide } = useDialogPluginComponent(); </script> <template> <QDialog ref="dialogRef" @hide="onDialogHide"> - <component :is="summary" :id="id" :class="moduleClass" /> + <component :is="summary" :id="id" :class="width" /> </QDialog> </template> <style lang="scss" scoped> -.defaultSummary { +.md-width { max-width: $width-md; } -.largeSummary { +.lg-width { max-width: $width-lg; } -.xlargeSummary { +.xlg-width { max-width: $width-xl; } </style> diff --git a/src/components/ui/CardDescriptor.vue b/src/components/ui/CardDescriptor.vue index 31fd13803..43dc15e9b 100644 --- a/src/components/ui/CardDescriptor.vue +++ b/src/components/ui/CardDescriptor.vue @@ -37,9 +37,9 @@ const $props = defineProps({ type: Object, default: null, }, - moduleClass: { + width: { type: String, - default: 'defaultSummary', + default: 'md-width', }, }); @@ -133,9 +133,7 @@ const toModule = computed(() => </QBtn></slot > <QBtn - @click.stop=" - viewSummary(entity.id, $props.summary, $props.moduleClass) - " + @click.stop="viewSummary(entity.id, $props.summary, $props.width)" round flat dense diff --git a/src/composables/useSummaryDialog.js b/src/composables/useSummaryDialog.js index 562a0b5ed..f41662bd7 100644 --- a/src/composables/useSummaryDialog.js +++ b/src/composables/useSummaryDialog.js @@ -4,10 +4,10 @@ import { useQuasar } from 'quasar'; export function useSummaryDialog() { const quasar = useQuasar(); - function viewSummary(id, summary, moduleClass) { + function viewSummary(id, summary, width) { quasar.dialog({ component: VnSummaryDialog, - componentProps: { id, summary, moduleClass }, + componentProps: { id, summary, width }, }); } diff --git a/src/pages/Customer/Card/CustomerDescriptor.vue b/src/pages/Customer/Card/CustomerDescriptor.vue index 25006833d..9abf1a818 100644 --- a/src/pages/Customer/Card/CustomerDescriptor.vue +++ b/src/pages/Customer/Card/CustomerDescriptor.vue @@ -53,7 +53,7 @@ const debtWarning = computed(() => { @on-fetch="setData" :summary="$props.summary" data-key="customer" - :module-class="'largeSummary'" + width="lg-width" > <template #menu="{ entity }"> <CustomerDescriptorMenu :customer="entity" /> diff --git a/src/pages/Entry/Card/EntryDescriptor.vue b/src/pages/Entry/Card/EntryDescriptor.vue index cb05ba8a0..f4bf42f57 100644 --- a/src/pages/Entry/Card/EntryDescriptor.vue +++ b/src/pages/Entry/Card/EntryDescriptor.vue @@ -61,7 +61,7 @@ const getEntryRedirectionFilter = (entry) => { :filter="filter" title="supplier.nickname" data-key="Entry" - :module-class="'largeSummary'" + width="lg-width" > <template #menu="{ entity }"> <EntryDescriptorMenu :id="entity.id" /> diff --git a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue index 82dddeff5..ef4835696 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue @@ -161,14 +161,17 @@ const createInvoiceInCorrection = async () => { :url="`InvoiceIns/${entityId}`" :filter="filter" title="supplierRef" - :module-class="'xlargeSummary'" + width="xlg-width" > <template #menu="{ entity }"> <InvoiceInDescriptorMenu :invoice="entity" /> </template> <template #body="{ entity }"> <VnLv :label="t('invoicein.list.issued')" :value="toDate(entity.issued)" /> - <VnLv :label="t('invoicein.summary.bookedDate')" :value="toDate(entity.booked)" /> + <VnLv + :label="t('invoicein.summary.bookedDate')" + :value="toDate(entity.booked)" + /> <VnLv :label="t('invoicein.list.amount')" :value="toCurrency(totalAmount)" /> <VnLv :label="t('invoicein.list.supplier')"> <template #value> diff --git a/src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue b/src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue index 492ae54c4..209f1531e 100644 --- a/src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue +++ b/src/pages/InvoiceOut/Card/InvoiceOutDescriptor.vue @@ -62,7 +62,7 @@ const setData = (entity) => (data.value = useCardDescription(entity.ref, entity. :subtitle="data.subtitle" @on-fetch="setData" data-key="invoiceOutData" - :module-class="'largeSummary'" + width="lg-width" > <template #menu="{ entity, menuRef }"> <InvoiceOutDescriptorMenu :invoice-out-data="entity" :menu-ref="menuRef" /> diff --git a/src/pages/Route/Card/RouteDescriptor.vue b/src/pages/Route/Card/RouteDescriptor.vue index 76d23bdb0..14d966362 100644 --- a/src/pages/Route/Card/RouteDescriptor.vue +++ b/src/pages/Route/Card/RouteDescriptor.vue @@ -76,7 +76,7 @@ const setData = (entity) => (data.value = useCardDescription(entity.code, entity :subtitle="data.subtitle" data-key="routeData" @on-fetch="setData" - :module-class="'largeSummary'" + width="lg-width" > <template #body="{ entity }"> <VnLv :label="t('Date')" :value="toDate(entity?.dated)" /> diff --git a/src/pages/Ticket/Card/TicketDescriptor.vue b/src/pages/Ticket/Card/TicketDescriptor.vue index 9b41fa43d..1393db3e5 100644 --- a/src/pages/Ticket/Card/TicketDescriptor.vue +++ b/src/pages/Ticket/Card/TicketDescriptor.vue @@ -102,6 +102,10 @@ const data = ref(useCardDescription()); function ticketFilter(ticket) { return JSON.stringify({ clientFk: ticket.clientFk }); } + +const setData = (entity) => { + data.value = useCardDescription(entity.ref, entity.id); +}; </script> <template> @@ -111,8 +115,8 @@ function ticketFilter(ticket) { :filter="filter" :title="data.title" :subtitle="data.subtitle" + @on-fetch="setData" data-key="ticketData" - :module-class="'largeSummary'" > <template #menu="{ entity }"> <TicketDescriptorMenu :ticket="entity" /> From cce31628160f4b910205964289e87b08cdb3267d Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Fri, 17 Jan 2025 13:46:26 +0100 Subject: [PATCH 29/79] fix: deleted duplicate request --- src/components/common/VnInput.vue | 2 +- src/pages/Item/ItemRequest.vue | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/common/VnInput.vue b/src/components/common/VnInput.vue index 4c7445aab..e716093b5 100644 --- a/src/components/common/VnInput.vue +++ b/src/components/common/VnInput.vue @@ -45,7 +45,6 @@ const $props = defineProps({ }); const vnInputRef = ref(null); -const showPassword = ref(false); const value = computed({ get() { return $props.modelValue; @@ -72,6 +71,7 @@ const focus = () => { defineExpose({ focus, + vnInputRef, }); const mixinRules = [ diff --git a/src/pages/Item/ItemRequest.vue b/src/pages/Item/ItemRequest.vue index d96fbca2f..76e4b8083 100644 --- a/src/pages/Item/ItemRequest.vue +++ b/src/pages/Item/ItemRequest.vue @@ -272,11 +272,12 @@ const onDenyAccept = (_, responseData) => { <template #column-achieved="{ row }"> <span> <VnInput + ref="achievedRef" type="number" v-model.number="row.saleQuantity" :disable="!row.itemFk || row.isOk != null" @blur="changeQuantity(row)" - @keyup.enter="changeQuantity(row)" + @keyup.enter="$refs.achievedRef.vnInputRef.blur()" dense /> </span> From 94c0fa2aa7ed875d1898ffa80606f23a04dbaa8a Mon Sep 17 00:00:00 2001 From: jgallego <jgallego@verdnatura.es> Date: Fri, 17 Jan 2025 14:59:52 +0100 Subject: [PATCH 30/79] feat: refs #8381 add carrier field to travel thermographs and update localization --- src/i18n/locale/en.yml | 1 + src/i18n/locale/es.yml | 1 + src/pages/Travel/Card/TravelSummary.vue | 26 +++++++++--- src/pages/Travel/Card/TravelThermographs.vue | 42 +++++++++++++++---- .../Travel/Card/TravelThermographsForm.vue | 31 +++++++++++--- 5 files changed, 82 insertions(+), 19 deletions(-) diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml index e1ec62175..84a79404f 100644 --- a/src/i18n/locale/en.yml +++ b/src/i18n/locale/en.yml @@ -799,6 +799,7 @@ travel: destination: Destination thermograph: Thermograph travelFileDescription: 'Travel id { travelId }' + carrier: Carrier item: descriptor: buyer: Buyer diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml index 4b4f6f552..01396e9ce 100644 --- a/src/i18n/locale/es.yml +++ b/src/i18n/locale/es.yml @@ -795,6 +795,7 @@ travel: destination: Destino thermograph: Termógrafo travelFileDescription: 'Id envío { travelId }' + carrier: Transportista item: descriptor: buyer: Comprador diff --git a/src/pages/Travel/Card/TravelSummary.vue b/src/pages/Travel/Card/TravelSummary.vue index 9deb22808..9a0a66f57 100644 --- a/src/pages/Travel/Card/TravelSummary.vue +++ b/src/pages/Travel/Card/TravelSummary.vue @@ -122,6 +122,12 @@ const thermographsTableColumns = computed(() => { name: 'temperatureFk', align: 'left', }, + { + label: t('travel.thermographs.carrier'), + field: (row) => row.agencyMode?.name, + name: 'agencyModeFk', + align: 'left', + }, { label: t('globals.maxTemperature'), field: 'maxTemperature', @@ -200,17 +206,25 @@ const getTravelEntries = async (id) => { const getTravelThermographs = async (id) => { const filter = { - include: { - relation: 'warehouse', - scope: { - fields: ['id', 'name'], + include: [ + { + relation: 'agencyMode', + scope: { + fields: ['id', 'name'], + }, }, - }, + { + relation: 'warehouse', + scope: { + fields: ['id', 'name'], + }, + }, + ], where: { travelFk: id }, }; const { data } = await axios.get('TravelThermographs', { - params: { filter: JSON.parse(JSON.stringify(filter)) }, + params: { filter }, }); thermographs.value = data; }; diff --git a/src/pages/Travel/Card/TravelThermographs.vue b/src/pages/Travel/Card/TravelThermographs.vue index 2bf3293a6..b78c93334 100644 --- a/src/pages/Travel/Card/TravelThermographs.vue +++ b/src/pages/Travel/Card/TravelThermographs.vue @@ -1,5 +1,5 @@ <script setup> -import { computed, ref } from 'vue'; +import { computed, ref, onMounted } from 'vue'; import { useRoute, useRouter } from 'vue-router'; import { useI18n } from 'vue-i18n'; import { useQuasar } from 'quasar'; @@ -12,23 +12,40 @@ import axios from 'axios'; import useNotify from 'src/composables/useNotify.js'; import { toDate } from 'src/filters'; import { downloadFile } from 'src/composables/downloadFile'; +import { useArrayData } from 'src/composables/useArrayData'; const route = useRoute(); const quasar = useQuasar(); const router = useRouter(); const { t } = useI18n(); const { notify } = useNotify(); - +const { store: travelStore, fetch: fetchTravel } = useArrayData('SingleTravel', { + url: 'Travel', + limit: 1, + filter: { + where: { id: route.params.id }, + }, + // Si quisieras guardar en la URL, podrías usar searchUrl: 'travelSearch' +}); +const travelItem = computed(() => travelStore.data?.[0] ?? null); const thermographPaginateRef = ref(); const warehouses = ref([]); const thermographFilter = { - include: { - relation: 'warehouse', - scope: { - fields: ['id', 'name'], + include: [ + { + relation: 'agencyMode', + scope: { + fields: ['id', 'name'], + }, }, - }, + { + relation: 'warehouse', + scope: { + fields: ['id', 'name'], + }, + }, + ], where: { travelFk: route.params.id }, order: ['created'], }; @@ -47,6 +64,12 @@ const TableColumns = computed(() => { name: 'temperatureFk', align: 'left', }, + { + label: t('travel.thermographs.carrier'), + field: (row) => row.agencyMode?.name, + name: 'agencyModeFk', + align: 'left', + }, { label: t('globals.maxTemperature'), field: 'maxTemperature', @@ -117,6 +140,8 @@ const redirectToThermographForm = (action, id) => { if (action === 'edit' && id) { routeDetails.query = { travelThermographFk: id }; + } else if (action === 'create') { + routeDetails.query = { agencyModeFk: travelItem.value?.agencyModeFk }; } router.push(routeDetails); }; @@ -126,6 +151,9 @@ const removeThermograph = async (id) => { await thermographPaginateRef.value.fetch(); notify(t('Thermograph removed'), 'positive'); }; +onMounted(() => { + fetchTravel(); +}); </script> <template> diff --git a/src/pages/Travel/Card/TravelThermographsForm.vue b/src/pages/Travel/Card/TravelThermographsForm.vue index 9788c9a99..5955ac9f9 100644 --- a/src/pages/Travel/Card/TravelThermographsForm.vue +++ b/src/pages/Travel/Card/TravelThermographsForm.vue @@ -39,6 +39,7 @@ const warehousesOptions = ref([]); const temperaturesOptions = ref([]); const thermographForm = ref({}); const inputFileRef = ref(null); +const agencyModeOptions = ref([]); onBeforeMount(async () => { if (props.viewAction === 'create') { @@ -49,8 +50,8 @@ onBeforeMount(async () => { if (route.query.thermographData) { const thermographData = JSON.parse(route.query.thermographData); - for (let key in thermographForm) { - thermographForm[key] = thermographData[key]; + for (let key in thermographForm.value) { + thermographForm.value[key] = thermographData[key]; } } }); @@ -72,6 +73,7 @@ const setCreateDefaultParams = async () => { thermographForm.value.reference = route.params.id; thermographForm.value.dmsTypeId = dataResponse.id; thermographForm.value.state = 'Ok'; + thermographForm.value.agencyModeFk = +route.query.agencyModeFk; thermographForm.value.description = t('travel.thermographs.travelFileDescription', { travelId: route.params.id, }).toUpperCase(); @@ -98,6 +100,7 @@ const setEditDefaultParams = async () => { thermographForm.value.minTemperature = data.minTemperature; thermographForm.value.temperatureFk = data.temperatureFk; thermographForm.value.travelThermographFk = data.id; + thermographForm.value.agencyModeFk = data.agencyModeFk; } }; @@ -159,6 +162,12 @@ const onThermographCreated = async (data) => { auto-load url="Temperatures" /> + <FetchData + @on-fetch="(data) => (agencyModeOptions = data)" + auto-load + url="AgencyModeIncomings" + /> + <QPage class="column items-center full-width"> <QForm model="travel" @@ -218,10 +227,20 @@ const onThermographCreated = async (data) => { /> </VnRow> <VnRow> + <VnSelect + :label="t('travel.thermographs.carrier')" + v-model="thermographForm.agencyModeFk" + :options="agencyModeOptions" + option-value="id" + option-label="name" + /> + <VnInput v-model="thermographForm.reference" :label="t('globals.reference')" /> + </VnRow> + <VnRow> <VnSelect :label="t('globals.type')" v-model="thermographForm.dmsTypeId" @@ -229,8 +248,6 @@ const onThermographCreated = async (data) => { option-value="id" option-label="name" /> - </VnRow> - <VnRow> <VnSelect :label="t('globals.company')" v-model="thermographForm.companyId" @@ -238,6 +255,8 @@ const onThermographCreated = async (data) => { option-value="id" option-label="code" /> + </VnRow> + <VnRow> <VnSelect :label="t('globals.warehouse')" v-model="thermographForm.warehouseId" @@ -245,8 +264,6 @@ const onThermographCreated = async (data) => { option-value="id" option-label="name" /> - </VnRow> - <VnRow> <VnSelect :label="t('travel.thermographs.temperature')" :options="temperaturesOptions" @@ -256,6 +273,8 @@ const onThermographCreated = async (data) => { v-model="thermographForm.temperatureFk" :required="true" /> + </VnRow> + <VnRow> <VnInputNumber v-model="thermographForm.maxTemperature" :label="t('globals.maxTemperature')" From 9a29e7e2fd84d4713be0a54364f2c92f907edfa5 Mon Sep 17 00:00:00 2001 From: jgallego <jgallego@verdnatura.es> Date: Fri, 17 Jan 2025 15:49:14 +0100 Subject: [PATCH 31/79] fix: refs #8381 update travel data fetching to use correct URL and include necessary fields --- src/pages/Travel/Card/TravelThermographs.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/Travel/Card/TravelThermographs.vue b/src/pages/Travel/Card/TravelThermographs.vue index b78c93334..9773313e1 100644 --- a/src/pages/Travel/Card/TravelThermographs.vue +++ b/src/pages/Travel/Card/TravelThermographs.vue @@ -20,9 +20,10 @@ const router = useRouter(); const { t } = useI18n(); const { notify } = useNotify(); const { store: travelStore, fetch: fetchTravel } = useArrayData('SingleTravel', { - url: 'Travel', + url: 'Travels', limit: 1, filter: { + fields: ['id', 'agencyModeFk'], where: { id: route.params.id }, }, // Si quisieras guardar en la URL, podrías usar searchUrl: 'travelSearch' @@ -152,7 +153,7 @@ const removeThermograph = async (id) => { notify(t('Thermograph removed'), 'positive'); }; onMounted(() => { - fetchTravel(); + fetchTravel({}); }); </script> From 579e675a22b9243cc3781af11fcbe90ea636018c Mon Sep 17 00:00:00 2001 From: jgallego <jgallego@verdnatura.es> Date: Fri, 17 Jan 2025 16:23:07 +0100 Subject: [PATCH 32/79] refactor: refs #8381 update travel data handling in TravelThermographs component --- src/pages/Travel/Card/TravelThermographs.vue | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/src/pages/Travel/Card/TravelThermographs.vue b/src/pages/Travel/Card/TravelThermographs.vue index 9773313e1..4e95dfa22 100644 --- a/src/pages/Travel/Card/TravelThermographs.vue +++ b/src/pages/Travel/Card/TravelThermographs.vue @@ -19,16 +19,8 @@ const quasar = useQuasar(); const router = useRouter(); const { t } = useI18n(); const { notify } = useNotify(); -const { store: travelStore, fetch: fetchTravel } = useArrayData('SingleTravel', { - url: 'Travels', - limit: 1, - filter: { - fields: ['id', 'agencyModeFk'], - where: { id: route.params.id }, - }, - // Si quisieras guardar en la URL, podrías usar searchUrl: 'travelSearch' -}); -const travelItem = computed(() => travelStore.data?.[0] ?? null); + +const travel = computed(() => useArrayData('Travel1').store.data); const thermographPaginateRef = ref(); const warehouses = ref([]); @@ -142,7 +134,7 @@ const redirectToThermographForm = (action, id) => { if (action === 'edit' && id) { routeDetails.query = { travelThermographFk: id }; } else if (action === 'create') { - routeDetails.query = { agencyModeFk: travelItem.value?.agencyModeFk }; + routeDetails.query = { agencyModeFk: travel.value?.agencyModeFk }; } router.push(routeDetails); }; @@ -152,9 +144,6 @@ const removeThermograph = async (id) => { await thermographPaginateRef.value.fetch(); notify(t('Thermograph removed'), 'positive'); }; -onMounted(() => { - fetchTravel({}); -}); </script> <template> From 1e5c56e19b0bf9c19961df774cd91a255bbf1b9c Mon Sep 17 00:00:00 2001 From: jgallego <jgallego@verdnatura.es> Date: Mon, 20 Jan 2025 15:22:41 +0100 Subject: [PATCH 33/79] fix: refs #8381 update travel data reference in TravelThermographs component --- src/pages/Travel/Card/TravelThermographs.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Travel/Card/TravelThermographs.vue b/src/pages/Travel/Card/TravelThermographs.vue index 4e95dfa22..f63c0da6b 100644 --- a/src/pages/Travel/Card/TravelThermographs.vue +++ b/src/pages/Travel/Card/TravelThermographs.vue @@ -1,5 +1,5 @@ <script setup> -import { computed, ref, onMounted } from 'vue'; +import { computed, ref } from 'vue'; import { useRoute, useRouter } from 'vue-router'; import { useI18n } from 'vue-i18n'; import { useQuasar } from 'quasar'; @@ -20,7 +20,7 @@ const router = useRouter(); const { t } = useI18n(); const { notify } = useNotify(); -const travel = computed(() => useArrayData('Travel1').store.data); +const travel = computed(() => useArrayData('Travel').store.data); const thermographPaginateRef = ref(); const warehouses = ref([]); From 627289c58d8d86c57c978156dc97d6f0d27ec43d Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Tue, 21 Jan 2025 13:22:40 +0100 Subject: [PATCH 34/79] feat: refs #7317 deleted warnings in fiscalData and dms --- src/components/common/VnDmsList.vue | 2 +- src/components/common/VnSelectWorker.vue | 4 ++-- src/pages/Supplier/Card/SupplierFiscalData.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/common/VnDmsList.vue b/src/components/common/VnDmsList.vue index a4eb26958..7b916edc4 100644 --- a/src/components/common/VnDmsList.vue +++ b/src/components/common/VnDmsList.vue @@ -102,7 +102,7 @@ const columns = computed(() => [ storage: 'dms', collection: null, resolution: null, - id: prop.row.file.split('.')[0], + id: parseInt(prop.row.file.split('.')[0]), token: token, class: 'rounded', ratio: 1, diff --git a/src/components/common/VnSelectWorker.vue b/src/components/common/VnSelectWorker.vue index 2762d6c02..ca252f022 100644 --- a/src/components/common/VnSelectWorker.vue +++ b/src/components/common/VnSelectWorker.vue @@ -10,8 +10,8 @@ const $props = defineProps({ default: false, }, hasInfo: { - type: Boolean, - default: false, + type: String, + default: '', }, modelValue: { type: [String, Number, Object], diff --git a/src/pages/Supplier/Card/SupplierFiscalData.vue b/src/pages/Supplier/Card/SupplierFiscalData.vue index 1d9f3ab94..e569eb236 100644 --- a/src/pages/Supplier/Card/SupplierFiscalData.vue +++ b/src/pages/Supplier/Card/SupplierFiscalData.vue @@ -94,7 +94,7 @@ function handleLocation(data, location) { <VnInput v-model="data.name" :label="t('supplier.fiscalData.name')" - uppercase="true" + :uppercase="true" clearable /> <VnInput From 4c1631478cacdf4a877e1e2d55ac75361bd81da0 Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Tue, 21 Jan 2025 14:51:45 +0100 Subject: [PATCH 35/79] refactor: refs #7317 requested changes --- src/components/common/VnSelectWorker.vue | 8 ++++---- src/pages/Supplier/Card/SupplierBasicData.vue | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/common/VnSelectWorker.vue b/src/components/common/VnSelectWorker.vue index ca252f022..8d60eb014 100644 --- a/src/components/common/VnSelectWorker.vue +++ b/src/components/common/VnSelectWorker.vue @@ -9,9 +9,9 @@ const $props = defineProps({ type: Boolean, default: false, }, - hasInfo: { + info: { type: String, - default: '', + default: undefined, }, modelValue: { type: [String, Number, Object], @@ -57,9 +57,9 @@ const url = computed(() => { <template #prepend v-if="$props.hasAvatar"> <VnAvatar :worker-id="value" color="primary" v-bind="$attrs" /> </template> - <template #append v-if="$props.hasInfo"> + <template #append v-if="$props.info"> <QIcon name="info" class="cursor-pointer"> - <QTooltip>{{ $t($props.hasInfo) }}</QTooltip> + <QTooltip>{{ $t($props.info) }}</QTooltip> </QIcon> </template> <template #option="scope"> diff --git a/src/pages/Supplier/Card/SupplierBasicData.vue b/src/pages/Supplier/Card/SupplierBasicData.vue index 22a6deaab..f6c13b7af 100644 --- a/src/pages/Supplier/Card/SupplierBasicData.vue +++ b/src/pages/Supplier/Card/SupplierBasicData.vue @@ -36,7 +36,7 @@ const companySizes = [ /> <VnSelectWorker v-model="data.workerFk" - has-info="Responsible for approving invoices" + info="Responsible for approving invoices" :rules="validate('supplier.workerFk')" /> <VnSelect From 9e254a0c33fd1abcd0429323de5d4ddb5df2a62b Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Tue, 21 Jan 2025 15:29:48 +0100 Subject: [PATCH 36/79] feat: refs #8450 added new version --- src/css/fonts/icon.eot | Bin 50788 -> 52044 bytes src/css/fonts/icon.svg | 4 ++++ src/css/fonts/icon.ttf | Bin 50636 -> 51892 bytes src/css/fonts/icon.woff | Bin 50712 -> 51968 bytes src/css/fonts/selection.json | 2 +- src/css/icons.scss | 26 +++++++++++++++++++------- 6 files changed, 24 insertions(+), 8 deletions(-) diff --git a/src/css/fonts/icon.eot b/src/css/fonts/icon.eot index 5e7f0c4051a4a7f8ddf418b61059369c655e322e..c70d70485aea773a0c2f85beda451708cc7496d4 100644 GIT binary patch delta 1745 zcmYjRYfKbZ6uxI>nOPQCc35`Con0QY<L;6L7uea^!3B{B6fCf=Md=o_iVrX<ND98H z>Gol@8cZ=5tENf&!@>_6G-A^qZ4-RdwiZoo)F#GgqSkcvPc>@#fT3r%_HlFPo^!tY zI_G?6?!7^J@(|55e^1EiiwBsHVTZqC{ehZo@rSEMs|f)oA!MMtv%e3e1??e}#_o;V zyMC2!|Bm)yLe5RDTidzD_vGgLgnYdQ=R@ldF!~K2q5UD+v)A<uZ1b(0nL>Ml5GuHF z)9TJ2ZqMu@<eMkSJ9;{|^^ud*bwa+wJ4j(~XODetwCd4K1j=y1s=iJA1BAvYa`E7B z6yB+gp_+pZ(S#yE3KLrsI}>jv_9O;pre|i7>kuP}?TI%MZzuMqFqpY37zA3N1P}=B zgW+<@I=+xP)*3euGBaTy^aLL0B6EmFh$e)zYS2QOmtoDoGOSfVf!&KJ_A*9G2ML}} zx~<Z4{1xT+p$~p;Xv_*bmvubdyKn1`Vvk>(Et_gAd7`VbtgH+&^eylSkUU9h@Op}% z=X9;UI#9N(*bxvGMNPGJXE*h&YJ7K~e@s=4@UTsuTT;2azPr43&fI3d->;8RNAyNl ze!*P3$S>6=+r;^9zT7_kaOqh-jv0C$NCufjB7|5$^Rk@83g~T`i?QYMN+6^LJ+k0p ziour4us)Do9<L`j4}4GzNj0Q}p%T<!NDJ|T6Y?Nw26%yISOV>dSUZ?vu?PCd^fkIJ z(%TbR)Y}_*l`>GZ=_^<OU`!O4o!ObJ34moOnyNLiY$jzX;20(Yz{tQ}edIwb2B!8{ z0@|mqz0ea$9uw)k40UV<E}&?rOJ|IkRJ{?;K-&OyMm&QaKfaNs;`CD_%0@gSK-$SL zRtNe9=$sj33H|qj2GyXbE`|k$SENA53x1Hx>0n3+@E9`2YsJ8mtnw`5VHsC41Aa*M zU`p}u7=3avaI#IxhXRl|Sx`8MQ#3iwNy!3`RGBkl2A?O?t4g;2n-rmpm<JjtNMok& zF=?pKU`EjFFzSyil0-SBLW};`=r9-LWM$<fziOJoJW^o5Z5VV?#}RNNssNnX%)wZE zjy^&gsBBm;C~TgZ*endff@~^{(nsdx@UunHEpT)VC%8p%HlIWNNgMQ%G?oU20m_&L zR}Hk!Y}QNiDk}2eDr%uDt2HarY6Z8o$m&o<2W2#(3)s>OCf<}$Xm*4gPAko2XXi{` zpm!fBp;_9YUntTqL!b!44g*6UnR=Zq%*`#vJ4H4<{Xd<IkM@ebc;>%lsgf$PfGi|S zkh)H?p7fFJ<V~^%N&GwUUQdb_n=EK@F!cip0U;j*<SjLkWQxrPC6Jo)x^05yRb}iP zQliQ>9Nk=g>PO`ijzuINym1uC8u2QejHnlEii+%G<);)kj!3<iO9}d@G0)jnq0L{? z+}tm@>Naeu7iKLAs+D0yX%To{hy;U`TT0~$Wp}i-p>d7fp02MtVc%alrDWM}9F<#q zaLJj?)0s@yB}4|hMI|myk9%vny6n_ABIj8n+nwvve>&=Gk-HR&m<|tXw2C%|(`XXK zuExgJ(b0K9HG<VA2oXi8n5U`{fiLxFN`*^$t*NQC|I&J8>4}|p^jns~c>m{i$<(ip z)C?`OI4$}K1G#eLc)GP|=LQq2cWZEKia21RSpQ<=lF3@XVJpKd{<7cX7Q6IY_p=Ht z<6j-#TI5{c;oq?$yXq;)z^4$~-OrlM|H$F!84dQ2zjr2|8Xh}i86G+Jaokr{JW_JZ zFP0ig50{=Q{iE!+@@91?L_&d3Ur5)khxu?gJXlp!)m;7Ke6eP*=6r3quB5)b!P&5@ z;c?@^g?C;YX!13kYQEEQvPF*!EqWI1itdY^kN&dw>Px+?p4Q7tCYP>h`}E~+V}aPS s4rj;YvWjIlmIsz^TamNk)Jp4(&inZ46SAMWiVt?OQK{Gb?)kUiFGWwD6aWAK delta 482 zcmX>zjrmCrGh50r28J_7C$gEb1S_?;O?0TJ-*>#~AOi!V3<Cqhl=Q^n0w65_<Zl4d z9O*fgX_>rxrUCgo7#Q~5$w*C1(U_KB&cJYB3Q*oG11P|u$1)qpKLg~eWaO4qNG1IL z1LS{TU|>?o$xlwyxEuP0f#I+S&<v5>#EJrjHB8qS7>;NF)hpyB=1Qgp*nGSL6z~8l zNGixLE@5B>N--Q=GdX~<Il2PKlma@4nSqOekwM|5`^%u0VJ~xDmcOid+3>RcWzYY= z|Nn#31LYWAdcF*K8SygjW#!AdmrXA_!E%iMAB(eyGmA5cGm0~a{TKTu_E+o=&^*S; zhNq=BYceef-aIkvfY@fkJVvI?j|zpgHcy;etRdspq7)p@Z}XLbn+0tAqc+hd5CcR{ zRybzP*tt34m>kpOwi65LwOw?aba&`2(l^r&(4S#2&ES=(o@s*VJTo1O9E%ASkF4sf z7TIdp7T7(qmvWro)a1OuwaE3Bn}^#g4-1b|o(*0c-WJ|%J`%olzVG~m{CxZh{A2vT z1*{7U3knH(6Jin?5V|X@E@DY!NaTU2q^Mod3^B7}t>Tj6^MGLj47SeA>rT#N1OSdr BswDsb diff --git a/src/css/fonts/icon.svg b/src/css/fonts/icon.svg index 54804d32d..5b0e16298 100644 --- a/src/css/fonts/icon.svg +++ b/src/css/fonts/icon.svg @@ -79,6 +79,7 @@ <glyph unicode="" glyph-name="headercol" d="M362.667-64h302.933v678.4h-302.933v-678.4zM0-64h302.933v678.4h-302.933v-678.4zM721.067 614.4v-678.4h302.933v678.4h-302.933zM362.667 678.4h302.933v281.6h-302.933v-281.6zM0 678.4h302.933v281.6h-302.933v-281.6zM721.067 960v-281.6h302.933v281.6h-302.933z" /> <glyph unicode="" glyph-name="info" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM563.2 192h-102.4v307.2h102.4v-307.2zM563.2 601.6h-102.4v102.4h102.4v-102.4z" /> <glyph unicode="" glyph-name="inventory" d="M273.067 226.133c4.267 0 8.533 4.267 8.533 8.533v85.333h98.133v-221.867h-217.6v221.867h98.133v-81.067c0-8.533 8.533-12.8 12.8-12.8zM512 226.133c4.267 0 8.533 4.267 8.533 8.533v85.333h98.133v-221.867h-217.6v221.867h98.133v-81.067c0-8.533 8.533-12.8 12.8-12.8zM750.933 226.133c4.267 0 8.533 4.267 8.533 8.533v85.333h98.133v-221.867h-217.6v221.867h98.133v-81.067c4.267-8.533 8.533-12.8 12.8-12.8zM644.267 780.8h98.133v-81.067c0-4.267 4.267-8.533 8.533-8.533s8.533 4.267 8.533 8.533v81.067h98.133v-221.867h-217.6v221.867h4.267zM401.067 780.8h98.133v-81.067c0-4.267 4.267-8.533 8.533-8.533s8.533 4.267 8.533 8.533v81.067h98.133v-221.867h-213.333v221.867zM162.133 780.8h98.133v-81.067c0-4.267 4.267-8.533 8.533-8.533s8.533 4.267 8.533 8.533v81.067h98.133v-221.867h-213.333v221.867zM153.6 537.6h780.8v-38.4h-844.8v38.4zM68.267-42.667h-42.667v981.333h42.667v-908.8zM89.6 38.4v38.4h844.8v-38.4zM998.4-42.667h-42.667v981.333h42.667z" /> +<glyph unicode="" glyph-name="agencia_tributaria" d="M89.173 78.507l51.2-79.36c455.68 25.6 821.333 398.933 856.32 659.627l-57.6 72.107c-74.667-355.413-532.053-630.613-849.92-652.373zM212.48 570.027l42.667-85.76c-50.347-46.507-75.52-77.653-110.507-136.107-47.36-78.507-66.56-129.707-81.067-221.013l-63.573 102.4c20.907 65.707 36.693 101.973 71.253 161.707 44.8 75.947 76.8 116.907 141.227 178.773 0 0-64-61.867 0 0zM478.72 232.107l-393.813 664.747h420.693l256.853-440.32c-77.653-88.32-177.067-165.12-283.733-224.853zM843.947 316.587l180.053-308.053h-412.587l-50.773 86.187c64.427 34.987 125.867 77.227 183.467 125.867 35.84 30.293 69.547 62.72 100.267 96.427z" /> <glyph unicode="" glyph-name="invoice-in" d="M320 358.4h128c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-128c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333zM149.333 149.333c12.8 0 21.333 8.533 21.333 21.333v235.52c-5.547-0.427-11.52-0.853-17.067-0.853-8.533 0-17.067 0.427-25.6 1.707v-236.373c0-12.8 8.533-21.333 21.333-21.333zM917.333 960h-682.667c-59.733 0-106.667-46.933-106.667-106.667v-65.707c8.533 1.28 17.067 1.707 25.6 1.707 5.547 0 11.52-0.427 17.067-0.853v64.853c0 34.133 29.867 64 64 64h597.333c-12.8-17.067-21.333-38.4-21.333-64v-810.667c0-34.133-29.867-64-64-64s-64 29.867-64 64v42.667c0 12.8-8.533 21.333-21.333 21.333h-640c-12.8 0-21.333-8.533-21.333-21.333v-42.667c0-59.733 46.933-106.667 106.667-106.667h640c59.733 0 106.667 46.933 106.667 106.667v810.667c0 34.133 29.867 64 64 64s64-29.867 64-64v-42.667h-64c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h85.333c12.8 0 21.333 8.533 21.333 21.333v64c0 59.733-46.933 106.667-106.667 106.667zM128-21.333h-21.333c-34.133 0-64 29.867-64 64v21.333h597.333v-21.333c0-25.6 8.533-46.933 21.333-64h-533.333zM661.333 618.667h-317.013c0.853-6.827 1.28-14.080 1.28-21.333s-0.427-14.507-1.28-21.333h317.013c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333zM661.333 512h-335.36c-5.973-12.373-13.653-24.32-22.613-35.413 3.84-4.693 9.387-7.253 16.64-7.253h341.333c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333zM720.64 231.68c-3.413-8.533-8.96-16.213-15.36-22.613-6.827-6.4-14.080-11.947-22.613-16.64-8.533-4.267-17.493-7.68-26.88-10.24s-18.773-3.413-28.16-3.413c-12.373 0-24.32 2.133-35.413 6.4s-20.907 9.813-29.867 17.067c-8.96 7.253-16.64 15.36-23.040 25.173-6.4 9.387-11.52 19.627-14.933 30.72h-33.28l9.813 23.467h17.92c-0.427 4.267-0.853 8.96-0.853 14.080v2.133h-22.187l9.387 23.467h15.787c2.56 11.52 6.827 22.613 12.8 32.853 5.973 10.667 13.653 19.627 23.040 27.733s20.053 14.507 32 19.2c12.373 4.693 25.6 7.253 40.533 7.253 20.907 0 38.827-4.693 54.187-13.653s26.453-20.907 34.133-35.84l-33.707-23.467c-2.987 6.4-6.827 11.947-10.667 16.213-4.267 4.267-8.96 7.68-13.653 10.24s-9.813 4.267-15.36 5.547c-5.547 1.28-10.667 1.707-15.787 1.707-8.107 0-15.787-1.28-22.613-3.84s-12.8-5.973-17.92-10.24c-5.12-4.267-9.387-9.387-13.227-15.36s-6.4-11.947-8.107-18.773h81.92l-9.387-23.467h-76.373v-3.413c0-4.267 0.427-8.533 0.853-12.8h74.667l-9.387-23.467h-58.453c5.547-11.947 13.227-21.76 23.467-29.013s21.76-11.093 35.413-11.093c5.12 0 10.24 0.427 15.787 1.707s10.667 3.413 15.787 5.973c5.12 2.987 9.387 6.4 14.080 10.667 4.267 4.267 7.68 9.813 10.24 15.787l35.413-20.053zM153.6 750.933c-85.333 0-153.6-68.267-153.6-153.6s68.267-153.6 153.6-153.6 153.6 68.267 153.6 153.6-68.267 153.6-153.6 153.6zM243.2 580.267h-81.067v-42.667c0-8.533-4.267-12.8-12.8-8.533l-98.133 55.467c-8.533 4.267-8.533 12.8 0 17.067l98.133 55.467c8.533 4.267 12.8 0 12.8-8.533v-42.667h81.067c8.533 0 17.067-8.533 17.067-17.067 0 0-4.267-8.533-17.067-8.533z" /> <glyph unicode="" glyph-name="invoice-in-create" d="M153.6 443.733c-85.333 0-153.6 68.267-153.6 153.6s68.267 153.6 153.6 153.6 153.6-68.267 153.6-153.6-68.267-153.6-153.6-153.6zM243.2 605.867h-81.067v42.667c0 8.533-4.267 12.8-12.8 8.533l-98.133-55.467c-8.533-4.267-8.533-12.8 0-17.067l98.133-55.467c8.533-4.267 12.8 0 12.8 8.533v42.667h81.067c12.8 0 17.067 8.533 17.067 8.533 0 8.533-8.533 17.067-17.067 17.067zM153.6 405.333c5.547 0 11.52 0.427 17.067 0.853v-235.52c0-12.8-8.533-21.333-21.333-21.333s-21.333 8.533-21.333 21.333v236.373c8.533-1.28 17.067-1.707 25.6-1.707zM344.32 576c0.853 6.827 1.28 14.080 1.28 21.333s-0.427 14.507-1.28 21.333h317.013c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-317.013zM917.333 810.667c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h85.333c12.8 0 21.333 8.533 21.333 21.333v64c0 59.733-46.933 106.667-106.667 106.667h-682.667c-59.733 0-106.667-46.933-106.667-106.667v-65.707c8.533 1.28 17.067 1.707 25.6 1.707 5.547 0 11.52-0.427 17.067-0.853v64.853c0 34.133 29.867 64 64 64h597.333c-12.8-17.067-21.333-38.4-21.333-64v-317.44c-29.44 9.387-61.013 14.507-93.867 14.507-53.76 0-104.533-14.080-148.907-38.4h-241.92c-5.973-12.373-13.653-24.32-22.613-35.413 3.84-4.693 9.387-7.253 16.64-7.253h189.013c-21.76-20.053-40.533-43.093-55.893-68.693-1.707 0.427-3.413 0.427-5.12 0.427h-128c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h112.213c-14.507-35.413-22.613-74.24-22.613-115.2 0-49.067 11.52-95.573 32-136.533h-420.267c-12.8 0-21.333-8.533-21.333-21.333v-42.667c0-59.733 46.933-106.667 106.667-106.667h640c15.36 0 29.867 2.987 43.093 8.96 134.4 32.853 234.24 154.027 234.24 298.24 0 120.747-69.547 224.853-170.667 275.2v334.933c0 34.133 29.867 64 64 64s64-29.867 64-64v-42.667h-64zM128-21.333h-21.333c-34.133 0-64 29.867-64 64v21.333h424.533c24.747-34.56 56.747-63.573 93.44-85.333h-432.64zM897.28 287.573v-89.173h-135.68v-135.68h-89.173v136.107h-135.68v89.173h135.68v135.68h89.173v-135.68h92.16l43.52-0.427z" /> <glyph unicode="" glyph-name="invoice-out" d="M320 358.4h128c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-128c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333zM149.333 149.333c12.8 0 21.333 8.533 21.333 21.333v235.52c-5.547-0.427-11.52-0.853-17.067-0.853-8.533 0-17.067 0.427-25.6 1.707v-236.373c0-12.8 8.533-21.333 21.333-21.333zM917.333 960h-682.667c-59.733 0-106.667-46.933-106.667-106.667v-65.707c8.533 1.28 17.067 1.707 25.6 1.707 5.547 0 11.52-0.427 17.067-0.853v64.853c0 34.133 29.867 64 64 64h597.333c-12.8-17.067-21.333-38.4-21.333-64v-810.667c0-34.133-29.867-64-64-64s-64 29.867-64 64v42.667c0 12.8-8.533 21.333-21.333 21.333h-640c-12.8 0-21.333-8.533-21.333-21.333v-42.667c0-59.733 46.933-106.667 106.667-106.667h640c59.733 0 106.667 46.933 106.667 106.667v810.667c0 34.133 29.867 64 64 64s64-29.867 64-64v-42.667h-64c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h85.333c12.8 0 21.333 8.533 21.333 21.333v64c0 59.733-46.933 106.667-106.667 106.667zM128-21.333h-21.333c-34.133 0-64 29.867-64 64v21.333h597.333v-21.333c0-25.6 8.533-46.933 21.333-64h-533.333zM661.333 618.667h-317.013c0.853-6.827 1.28-14.080 1.28-21.333s-0.427-14.507-1.28-21.333h317.013c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333zM661.333 512h-335.36c-5.973-12.373-13.653-24.32-22.613-35.413 3.84-4.693 9.387-7.253 16.64-7.253h341.333c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333zM720.64 231.68c-3.413-8.533-8.96-16.213-15.36-22.613-6.827-6.4-14.080-11.947-22.613-16.64-8.533-4.267-17.493-7.68-26.88-10.24s-18.773-3.413-28.16-3.413c-12.373 0-24.32 2.133-35.413 6.4s-20.907 9.813-29.867 17.067c-8.96 7.253-16.64 15.36-23.040 25.173-6.4 9.387-11.52 19.627-14.933 30.72h-33.28l9.813 23.467h17.92c-0.427 4.267-0.853 8.96-0.853 14.080v2.133h-22.187l9.387 23.467h15.787c2.56 11.52 6.827 22.613 12.8 32.853 5.973 10.667 13.653 19.627 23.040 27.733s20.053 14.507 32 19.2c12.373 4.693 25.6 7.253 40.533 7.253 20.907 0 38.827-4.693 54.187-13.653s26.453-20.907 34.133-35.84l-33.707-23.467c-2.987 6.4-6.827 11.947-10.667 16.213-4.267 4.267-8.96 7.68-13.653 10.24s-9.813 4.267-15.36 5.547c-5.547 1.28-10.667 1.707-15.787 1.707-8.107 0-15.787-1.28-22.613-3.84s-12.8-5.973-17.92-10.24c-5.12-4.267-9.387-9.387-13.227-15.36s-6.4-11.947-8.107-18.773h81.92l-9.387-23.467h-76.373v-3.413c0-4.267 0.427-8.533 0.853-12.8h74.667l-9.387-23.467h-58.453c5.547-11.947 13.227-21.76 23.467-29.013s21.76-11.093 35.413-11.093c5.12 0 10.24 0.427 15.787 1.707s10.667 3.413 15.787 5.973c5.12 2.987 9.387 6.4 14.080 10.667 4.267 4.267 7.68 9.813 10.24 15.787l35.413-20.053zM153.6 750.933c85.333 0 153.6-68.267 153.6-153.6s-68.267-153.6-153.6-153.6-153.6 68.267-153.6 153.6 68.267 153.6 153.6 153.6zM64 580.267h81.067v-42.667c0-8.533 4.267-12.8 12.8-8.533l98.133 55.467c8.533 4.267 8.533 12.8 0 17.067l-98.133 55.467c-8.533 4.267-12.8 0-12.8-8.533v-42.667h-81.067c-8.533 0-17.067-8.533-17.067-17.067 0 0 4.267-8.533 17.067-8.533z" /> @@ -89,9 +90,11 @@ <glyph unicode="" glyph-name="mana" d="M529.067 494.933c0 17.067 12.8 29.867 29.867 29.867s29.867-12.8 29.867-29.867c0-17.067-12.8-29.867-29.867-29.867s-29.867 12.8-29.867 29.867zM614.4 324.267c21.333 0 38.4 17.067 38.4 38.4s-17.067 38.4-38.4 38.4c-21.333 0-38.4-17.067-38.4-38.4 0-17.067 17.067-38.4 38.4-38.4zM473.6 614.4c12.8 0 25.6 12.8 25.6 25.6s-12.8 25.6-25.6 25.6-25.6-12.8-25.6-25.6c0-17.067 12.8-25.6 25.6-25.6zM802.133 302.933v-4.267c-4.267-157.867-132.267-285.867-290.133-285.867s-285.867 128-290.133 285.867v4.267h580.267zM584.533 238.933c0 17.067-12.8 29.867-29.867 29.867s-29.867-12.8-29.867-29.867 12.8-29.867 29.867-29.867c17.067 0 29.867 12.8 29.867 29.867zM401.067 264.533c-25.6 0-46.933-21.333-46.933-46.933s21.333-46.933 46.933-46.933c25.6 0 46.933 21.333 46.933 46.933s-21.333 46.933-46.933 46.933zM456.533 354.133c25.6 0 46.933 21.333 46.933 46.933s-21.333 46.933-46.933 46.933c-25.6 0-46.933-21.333-46.933-46.933s21.333-46.933 46.933-46.933zM878.933 302.933c0-200.533-162.133-366.933-366.933-366.933s-366.933 162.133-366.933 366.933c0 136.533 72.533 260.267 192 324.267v187.733c-21.333 4.267-38.4 21.333-38.4 42.667v59.733c0 25.6 21.333 42.667 42.667 42.667h332.8c25.6 0 42.667-21.333 42.667-42.667v-55.467c0-21.333-17.067-42.667-38.4-42.667v-192c123.733-68.267 200.533-192 200.533-324.267zM840.533 302.933c0 128-76.8 243.2-192 298.667h-4.267v256h34.133c4.267 0 4.267 4.267 4.267 4.267v55.467c0 4.267-4.267 4.267-4.267 4.267h-332.8c-4.267 0-8.533-4.267-8.533-4.267v-55.467c0-4.267 4.267-4.267 4.267-4.267h34.133v-256h-4.267c-115.2-51.2-192-170.667-192-298.667 0-179.2 145.067-328.533 328.533-328.533s332.8 145.067 332.8 328.533z" /> <glyph unicode="" glyph-name="mandatory" d="M981.333 725.333v-618.667c0-93.867-76.8-170.667-170.667-170.667h-311.467c-46.933 0-89.6 17.067-119.467 51.2l-337.067 341.333c0 0 55.467 51.2 55.467 55.467 8.533 8.533 21.333 12.8 34.133 12.8 8.533 0 17.067-4.267 25.6-8.533 0 0 183.467-106.667 183.467-106.667v507.733c0 34.133 29.867 64 64 64s64-29.867 64-64v-298.667h42.667v405.333c0 34.133 29.867 64 64 64s64-29.867 64-64v-405.333h42.667v362.667c0 34.133 29.867 64 64 64s64-29.867 64-64v-362.667h42.667v234.667c0 34.133 29.867 64 64 64s64-29.867 64-64z" /> <glyph unicode="" glyph-name="net" d="M487.253 89.173c-9.387 20.907-18.347 40.96-27.733 61.013-1.28 2.133-3.413 5.12-5.547 5.973-39.68 13.653-80.213 23.467-122.88 14.080-21.333-4.693-40.107-15.36-54.613-32-2.56-2.987-4.267-8.107-4.267-12.373-0.427-15.36 0-30.72 0-46.080 0-5.973 0.427-9.387 6.4-12.8 29.013-16.64 41.387-49.067 31.573-80.213s-39.68-49.92-73.387-46.507c-29.867 2.987-55.467 29.013-58.88 59.307-3.413 32.427 14.933 61.867 46.080 72.533 7.253 2.56 8.96 5.973 9.387 12.8 4.693 65.707-15.787 125.013-50.347 179.2-30.293 47.787-62.72 93.867-93.013 141.653-38.827 61.44-68.693 126.72-82.347 198.827-16.213 83.627-7.68 162.133 43.947 232.107 43.52 59.307 103.68 93.013 174.080 108.8 104.107 23.467 202.667 5.973 296.533-42.667 23.467-12.373 46.080-27.307 68.267-42.24 52.053-34.987 108.8-54.613 171.947-54.187 28.587 0 56.32 5.12 81.493 19.2 11.52 6.4 21.76 14.933 32 23.040 8.96 7.253 11.947 16.213 9.813 29.013-5.973 35.413 21.333 69.973 58.453 75.947 36.267 5.973 71.68-19.2 78.507-56.747 6.827-35.413-16.64-71.68-52.053-80.213-20.907-5.12-40.107 0-58.027 11.52-20.053-18.773-42.24-34.56-53.76-61.013-12.373-29.013-29.013-55.893-40.96-84.907-18.347-43.52-12.8-85.333 15.36-123.733 3.84-5.547 7.68-7.68 14.080-4.693 4.693 2.133 9.387 3.413 14.080 4.693 16.213 4.267 25.173 10.24 25.6 31.147 0 35.413 34.133 61.867 71.253 60.16 35.413-1.707 63.147-32 63.147-68.693 0-36.267-29.013-66.133-64.427-67.413-16.64-0.427-32 3.84-44.8 14.507-5.547 4.693-9.387 3.84-14.933 1.707-12.373-5.12-24.32-9.813-37.12-13.227-8.96-2.56-15.36-7.253-20.907-14.933-51.2-71.253-73.387-151.467-72.533-238.933 0-2.987 0.853-6.4 2.987-8.533 11.947-13.653 24.32-26.88 36.693-40.107 20.48 14.080 39.253 18.347 59.733 12.373 32-9.387 50.773-41.387 43.947-74.667-6.4-31.147-38.4-53.76-69.12-49.493-34.56 5.12-58.453 33.28-55.467 67.413 0.853 8.96-1.28 14.933-7.68 20.48-6.827 5.973-13.227 11.947-18.773 18.773-10.24 12.373-22.187 15.787-38.4 14.933-55.040-3.84-110.507-5.973-163.84-23.467-21.76-7.253-42.24-16.64-59.733-32.427 9.387-22.613 18.347-45.227 27.733-66.987 1.28-2.56 5.973-4.267 9.387-5.12 31.147-7.68 52.053-33.707 52.053-64.853s-20.907-57.6-50.773-64.853c-30.293-7.253-61.44 7.253-75.093 35.413s-6.4 61.013 18.347 81.493c2.133 1.707 4.693 3.413 8.533 6.4zM573.013 733.867c0-0.853-0.853-2.133-0.853-2.987 0-29.013 0-58.027 0.853-87.040 0-3.413 2.56-7.68 5.12-9.387 19.627-15.36 39.68-30.293 60.16-44.8 6.827-5.12 14.507-8.533 21.333-12.8 0 31.573 0 62.293 0 93.013 0 2.133-1.707 4.693-3.413 5.973-27.307 19.2-55.040 38.4-83.2 58.027zM636.16 417.707c-8.107-14.080-16.213-28.587-23.893-42.24 39.253-28.587 76.8-55.893 113.92-82.773 4.267 29.867 8.533 58.88 12.8 87.467-33.707 12.373-67.84 24.747-102.827 37.547zM697.173 264.96c-37.973 26.88-74.24 52.48-110.933 78.080-2.133 1.28-5.547 1.707-7.68 0.853-17.493-7.68-34.987-15.36-50.347-22.613 17.067-23.467 33.707-46.080 50.347-69.12 1.28-1.707 5.12-2.56 7.253-2.133 35.84 4.693 71.68 9.387 110.933 14.933zM561.067 594.347c-11.52-19.2-23.467-39.253-35.84-60.16 32.427-21.333 63.573-41.813 95.573-62.72 12.8 22.187 23.893 41.813 34.133 60.587-31.573 21.333-62.293 41.813-93.867 62.72zM699.307 771.84c0-23.893 0-46.933 0-69.973 0-2.133 2.56-5.547 4.693-5.973 20.48-6.4 41.387-11.947 62.293-17.92 5.547-1.707 7.68 1.28 9.813 6.827 6.827 18.347 14.507 36.267 22.187 54.187 4.693 11.093 11.093 21.333 17.493 33.707-40.107-8.533-78.933-7.68-116.48-0.853zM433.493 843.52c-0.853-0.853-1.707-1.707-2.987-2.56 8.107-30.72 16.213-61.44 24.32-91.733 0.853-3.413 3.84-6.827 6.4-9.387 21.333-19.627 42.667-39.253 64-58.88 1.707-1.707 4.267-2.987 6.827-5.12 0 30.293 0 59.307 0 87.893 0 2.56-1.28 5.973-3.413 7.253-31.573 24.32-63.573 48.213-95.573 72.107zM656.213 453.12c32.427-11.52 63.573-23.040 93.867-33.707 14.507 29.44 27.307 56.32 40.96 84.053-31.573-1.28-62.72 3.413-92.587 12.8-2.133 0.427-6.4-1.28-7.253-2.987-11.52-19.2-22.187-38.827-34.56-60.16zM452.693 692.907c-12.8-20.48-25.173-40.107-37.973-60.587 26.027-23.893 52.053-47.787 78.933-72.107 12.8 21.76 24.747 41.813 37.12 61.867-26.453 23.893-52.053 47.36-78.080 70.827zM284.587 701.867c-9.387-15.787-19.2-32.853-28.587-50.347-1.28-2.133 0-6.827 1.707-8.96 11.947-14.080 24.32-28.16 37.12-41.387 10.667-11.093 21.76-20.907 33.28-32 12.373 19.627 23.893 38.4 35.84 57.173-26.453 25.6-52.48 50.347-78.933 75.52zM766.72 635.733c-22.187 5.12-43.947 9.813-64.427 14.507 0-29.013 0-58.453 0-87.467 0-2.133 2.133-5.547 3.84-6.4 28.587-10.24 57.6-14.933 87.467-12.373-6.4 15.36-14.080 29.867-18.347 44.8-4.693 15.36-5.973 31.147-8.96 46.507zM386.987 663.467c6.827 11.093 14.080 22.187 21.333 33.707 14.507 23.467 14.933 23.893-6.4 41.387s-43.52 34.56-65.707 52.053c-10.24-17.493-19.2-33.28-28.587-49.493 26.88-26.027 52.907-52.053 79.36-77.653zM472.32 524.373c-27.307 24.32-53.333 47.787-79.787 72.107-11.093-17.92-22.187-35.413-33.28-53.76 29.44-20.907 58.027-41.387 87.040-62.293 9.387 15.787 17.92 29.867 26.453 44.373zM475.307 205.653c21.333 11.52 42.24 22.613 64 34.133-13.227 22.613-31.573 41.813-52.053 59.307-1.28 1.28-4.267 1.707-5.547 1.28-18.347-8.107-36.693-16.213-55.040-24.32 17.067-24.32 32.853-47.36 48.213-69.973zM479.573 458.667c32.853-20.907 64.853-41.387 98.133-62.293 8.107 14.080 15.36 26.88 22.613 39.253-32.853 21.333-64.427 41.813-96.427 62.72-7.68-13.227-15.787-26.027-23.893-40.107zM393.387 416.853c32.427-22.613 63.147-44.373 94.293-65.707 1.707-1.28 4.693-1.28 6.827-0.853 15.36 6.827 30.72 13.653 47.787 21.333-32.853 20.907-64 40.96-95.147 60.587-1.707 1.28-4.693 0.853-6.827 0-15.36-5.12-30.293-10.24-46.507-15.36zM164.267 821.76c-0.853-0.853-1.707-1.28-2.56-2.133 15.787-48.213 37.12-93.44 66.133-136.96 10.24 17.493 19.627 34.133 29.867 52.053-31.147 29.44-62.293 58.027-93.013 87.040zM186.027 607.147c14.507-27.307 33.28-50.347 53.76-71.68 1.707-1.707 5.547-2.133 7.68-1.707 14.080 4.693 28.587 9.813 42.24 14.933-21.333 23.893-42.667 46.933-63.573 69.973-1.707 1.707-5.973 2.56-8.107 1.707-10.24-3.84-20.48-8.533-31.573-13.227zM401.067 461.653c-24.747 18.773-48.213 36.693-71.68 54.613-1.28 1.28-4.267 2.133-5.973 1.28-15.36-5.12-30.72-10.667-49.067-17.493 25.6-18.773 49.067-36.267 72.96-53.333 1.707-1.28 5.547-1.707 7.68-0.853 14.933 4.693 29.44 9.813 46.080 15.36zM449.28 329.813c-31.147 20.907-61.013 39.68-89.173 60.587-13.653 10.24-25.173 9.387-38.4 1.28 26.027-27.733 52.48-55.467 78.933-83.627 15.36 6.827 31.147 14.080 49.067 22.187zM657.493 721.493c0 19.2 0 35.413 0 52.053 0 6.827-2.133 9.387-8.533 12.373-23.467 10.667-46.080 22.187-69.12 33.707-2.56 1.28-4.693 2.133-8.107 3.84 0-11.093 0-20.48 0-30.293 0-2.56 1.28-5.973 3.413-7.253 26.88-21.333 53.76-42.24 82.347-64.427zM226.987 375.893c23.467-24.747 45.653-47.787 68.267-71.253 1.28-1.28 2.987-2.987 4.267-2.987 16.64 0 32.853 0 52.053 0-25.173 26.027-48.213 49.92-71.68 73.387-1.707 1.707-5.12 2.987-7.253 2.987-14.933 0-29.867-1.28-45.653-2.133zM74.24 593.92l-3.84-2.56c8.96-22.613 18.347-45.227 27.733-67.84 0.853-2.133 3.84-5.12 5.973-5.12 17.92-1.707 35.84-2.987 54.187-4.267-12.8 23.467-24.747 45.653-36.693 67.84-0.853 1.707-2.987 2.987-5.12 3.413-13.653 2.987-27.733 5.973-41.813 8.96zM264.107 183.040c15.787 8.107 32.427 17.067 50.773 26.027-10.667 15.36-21.333 31.573-32.427 46.933-1.28 2.133-4.267 4.267-6.4 4.693-14.080 0-28.16 0-42.667 0 10.667-26.88 21.333-52.907 31.147-78.080zM131.84 475.733c-0.427-0.853-1.28-2.133-1.707-2.987 17.067-17.92 34.133-36.267 51.2-54.187 1.28-1.28 3.413-2.987 5.547-2.987 16.64 0 33.707 0.853 52.053 1.707-16.213 18.347-30.293 34.56-44.8 50.773-1.707 1.707-3.84 3.413-6.4 3.413-18.773 1.707-37.547 2.987-56.32 4.267zM401.92 792.32c-6.827 25.6-12.8 49.493-19.2 73.387-0.427 1.707-1.28 3.84-2.56 4.267-17.067 6.827-34.56 13.227-52.053 19.627-0.427-0.853-1.28-2.133-1.707-2.987 4.693-16.64 9.387-33.28 14.507-49.92 0-1.28 1.28-2.56 2.56-3.413 19.2-13.227 38.4-26.88 58.88-40.96zM426.24 208.213c-12.8 17.067-25.173 33.28-37.547 49.92-0.853 1.28-2.56 2.987-4.267 2.987-17.92 0-35.84 0-54.613 0 8.533-15.36 16.213-29.013 23.893-42.667 1.28-2.133 3.84-4.267 6.4-4.693 21.333-2.133 42.24-3.84 65.707-5.973zM301.227 810.667c-34.133 19.2-68.693 33.28-108.373 39.68 29.44-27.307 57.173-52.48 85.76-78.933 7.68 12.8 14.933 25.6 22.613 39.253zM531.627 823.040c0 5.547-0.427 10.667 0 15.787 1.28 9.813-1.707 16.213-11.52 20.053-30.293 12.8-60.587 26.027-91.307 38.827-4.267 1.707-8.533 2.133-14.080 3.413 39.253-26.453 77.227-52.053 116.48-78.080zM67.84 636.16c11.52-2.56 22.187-4.693 31.147-6.4-6.4 39.68-12.8 78.933-19.2 115.627-8.96-33.707-13.653-70.4-12.373-109.227zM241.493 303.36c-23.893 23.040-47.36 46.080-71.253 68.267-2.133 2.133-6.4 1.707-12.373 2.987 12.373-18.347 24.32-32.427 32.853-49.067 10.667-21.333 25.6-29.867 50.773-22.187zM197.12 655.36c-15.36 26.453-29.867 51.627-45.227 78.507 1.707-32 6.4-61.44 17.92-90.027 9.813 4.267 18.347 7.68 27.733 11.52zM290.987 862.72c-2.56 9.387-5.12 18.347-7.68 26.88-0.853 2.133-3.84 4.693-5.547 4.693-19.627 0-38.827-1.28-57.6-7.253 23.467-8.107 46.507-16.213 71.253-24.747zM301.227 429.227c-20.48 16.64-40.96 32.853-61.44 49.067 13.227-16.213 27.733-31.147 41.387-46.933 6.827-7.68 12.373-7.68 20.053-2.133z" /> +<glyph unicode="" glyph-name="add_entries" d="M0 392.533l345.6-345.173 233.387 233.387-88.32 88.32-90.027-88.32v266.667h266.667l-88.32-90.453 88.32-87.893 233.387 233.387-345.6 345.6-555.093-555.52zM836.267 322.987c-104.533 0-187.733-83.2-188.587-187.307 0.853-104.107 83.2-187.307 187.733-187.733 104.96 0 188.16 83.2 188.16 187.307s-83.2 187.307-187.733 187.733zM929.707 117.333c-2.56-0.853-5.12-0.853-7.253-0.853h-67.413v-68.693c0-9.387-7.253-17.92-16.213-18.773-0.853 0-1.707 0-2.56 0-8.533 0-15.787 5.547-18.347 13.653-0.853 2.56-0.853 4.693-0.853 6.827v67.413c-18.347 0-37.12 0-57.173 0h-11.52c-9.387 0-17.493 6.827-18.773 15.36-1.28 9.813 4.267 18.773 13.227 21.333 2.56 0.853 4.693 0.853 6.827 0.853h67.84v68.693c0 9.813 6.827 17.493 16.213 18.773s18.347-4.267 20.907-13.227c0.853-2.56 0.853-4.693 0.853-6.827v-67.413c20.48 0 40.96 0 63.147 0h5.973c8.96 0 17.067-6.4 18.347-15.36 1.28-9.813-4.267-18.773-13.227-21.76z" /> <glyph unicode="" glyph-name="newalbaran" d="M819.2 960h-622.933c-55.467 0-102.4-46.933-102.4-102.4v-819.2c0-55.467 46.933-102.4 102.4-102.4h622.933c55.467 0 102.4 46.933 102.4 102.4v819.2c0 55.467-46.933 102.4-102.4 102.4zM358.4 174.933h-102.4v102.4h503.467v-102.4h-401.067zM256 379.733v102.4h503.467v-102.4h-503.467zM759.467 584.533h-503.467v102.4h503.467v-102.4z" /> <glyph unicode="" glyph-name="niche" d="M512 960c-196.267 0-358.4-162.133-358.4-358.4 0-268.8 358.4-665.6 358.4-665.6s358.4 396.8 358.4 665.6c0 196.267-162.133 358.4-358.4 358.4zM512 473.6c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128z" /> <glyph unicode="" glyph-name="no036" d="M39.253 960c-9.813 0-20.053-3.84-27.733-11.52-15.36-15.787-15.36-40.533 0-55.893l945.493-945.067c7.68-7.68 17.493-11.52 27.733-11.52 9.813 0 20.053 3.84 27.733 11.52 15.36 15.787 15.36 40.533 0 55.893l-945.493 945.067c-7.68 7.68-17.493 11.52-27.733 11.52zM555.947 520.107h116.907c19.627 0 35.413-15.787 35.413-35.413s-15.787-35.413-35.413-35.413h-46.080l52.053-52.053c14.933-2.56 26.453-14.080 29.013-29.013l145.92-145.92c4.267 9.813 6.827 20.48 6.827 32v355.413c0 20.48-8.107 40.533-22.613 54.613l-188.16 187.307c-14.933 14.933-34.56 23.040-55.467 23.040h-240.213c-42.24 0-76.373-33.707-77.653-75.52l279.467-279.040zM587.947 816.64l214.613-213.333h-175.36c-21.333 0-38.827 17.493-38.827 38.827v174.507zM353.707 176.64h313.6l-150.187 150.187h-58.027c-19.627 0-35.413 15.787-35.413 35.413 0 15.787 10.24 29.013 24.32 33.707l-171.52 171.52-0.427-313.173c0-43.093 34.987-77.653 77.653-77.653zM627.2 98.987h-389.973c-21.333 0-38.827 17.493-38.827 38.827v465.493c0 21.333-17.493 38.827-38.827 38.827s-38.827-17.493-38.827-38.827v-504.32c0-42.667 34.987-77.653 78.080-77.653h428.373c21.333 0 38.827 17.493 38.827 38.827s-17.493 38.827-38.827 38.827z" /> +<glyph unicode="" glyph-name="hasItemLost" d="M512 762.88c2.987 0 8.96-0.853 12.373-7.253l270.080-467.627c3.413-6.4 1.707-11.52 0-14.507-1.707-2.56-5.12-7.253-12.373-7.253h-540.16c-7.253 0-11.093 4.693-12.373 7.253-1.707 2.56-3.413 8.107 0 14.507l270.080 467.627c3.413 6.4 9.387 7.253 12.373 7.253zM512 805.12c-19.2 0-38.4-9.387-49.493-28.587l-270.080-467.627c-21.76-37.973 5.547-85.333 49.493-85.333h539.733c43.947 0 71.253 47.36 49.493 85.333l-270.080 467.627c-11.093 18.773-30.293 28.587-49.493 28.587v0zM480.853 347.307c0 16.64 13.653 31.573 31.147 31.573s31.147-14.933 31.147-31.573-13.653-31.147-31.147-31.147-31.147 14.507-31.147 31.147zM543.147 628.48c0-26.027-2.987-52.48-5.12-78.507-2.56-35.413-5.547-70.827-8.107-106.24s0-25.6-4.693-36.693-3.413-5.973-6.4-7.68c-2.133-1.28-4.693-1.28-7.253-1.28s-5.12 0.427-7.253 1.707c-3.413 2.133-5.547 5.547-6.827 9.813-3.84 13.227-3.413 29.013-4.267 42.667s-2.987 37.973-4.267 56.747c-2.56 36.267-5.547 72.107-7.68 108.373s-0.427 7.68-0.427 11.52c0 23.040 11.947 32.427 31.147 32.427s31.147-9.813 31.147-32.853zM972.8 57.6v902.4h-44.373v-153.173h-346.453c3.413-3.84 6.4-8.533 8.96-12.8l15.36-26.88h322.133v-314.453h-140.8l23.040-40.107h117.333v-305.493h-832.427v305.493h117.333l23.040 40.107h-140.373v314.453h322.133l15.36 26.88c2.56 4.693 5.973 8.96 8.96 12.8h-346.453v153.173h-44.373v-902.4c-23.893-8.96-40.533-32-40.533-58.88s28.16-62.72 62.72-62.72 62.72 28.16 62.72 62.72-17.067 49.92-40.533 58.88v9.387h832.853v-9.387c-23.893-8.96-40.533-32-40.533-58.88s28.16-62.72 62.72-62.72 62.72 28.16 62.72 62.72-16.64 49.92-40.533 58.88z" /> <glyph unicode="" glyph-name="noPayMethod" d="M957.013-52.48l-945.493 945.067c-15.36 15.36-15.36 40.107 0 55.893 7.68 7.68 17.92 11.52 27.733 11.52 10.24 0 20.053-3.84 27.733-11.52l945.493-945.067c15.36-15.36 15.36-40.107 0-55.893-7.68-7.68-17.92-11.52-27.733-11.52-10.24 0-20.053 3.84-27.733 11.52zM346.88 728.747c17.493 10.24 37.12 15.36 56.747 20.053 63.573 14.507 128.427 16.213 193.28 10.667 34.56-2.987 69.12-8.107 102.4-19.627 13.227-4.693 26.027-11.52 37.973-18.773 7.68-4.693 8.107-8.533 0-13.227-11.947-7.253-24.747-14.080-37.973-18.773-35.84-12.8-73.387-17.92-110.933-20.48-20.053-1.28-40.107-1.707-60.587-2.56-45.653 1.28-90.88 5.12-135.253 17.067l55.893-55.893c29.867-3.413 59.733-4.693 90.027-4.693 70.827 0.427 140.373 7.68 207.36 37.12-1.28-19.627 2.56-38.827-2.987-57.6-0.853-3.413-4.267-6.4-7.253-8.533-13.227-9.813-28.16-15.36-43.947-20.053-37.12-11.093-75.52-16.213-113.92-18.773-18.773-1.28-37.12-1.707-55.893-1.28l43.947-43.947c61.013 2.133 120.747 11.947 179.2 36.267 0-15.36 0-31.147 0-46.933-18.347-1.28-36.267-2.56-54.187-4.693-31.147-3.413-62.293-8.107-91.733-18.347l36.267-36.267c54.187 12.8 109.227 15.36 164.693 13.227 40.96-1.707 81.92-5.973 121.6-17.067 16.64-4.693 33.28-10.24 47.787-20.053 11.093-7.68 11.093-10.667 0-17.92-18.773-12.8-40.107-18.773-61.867-24.32-45.227-10.667-90.88-14.507-147.627-14.507-14.080 0-29.44 0.427-45.653 1.707l46.080-46.080c4.267 0 8.107 0 12.373 0 70.4 0.427 139.52 7.253 205.653 36.267 0-17.067 0-33.707 0-50.347 0-6.827-4.267-11.52-9.813-15.36-16.64-11.52-35.84-17.493-55.040-22.613-28.587-7.253-57.6-11.52-86.613-14.080l40.533-40.533c37.973 5.12 75.52 14.507 111.787 31.147 0-18.773 0.427-37.12-0.427-55.467 0-2.987-2.987-7.253-5.547-9.387-8.96-5.973-18.347-11.52-28.16-15.787-6.827-2.987-14.080-5.12-21.333-7.253l34.987-34.987c14.080 5.547 27.733 12.373 40.107 21.76 16.213 12.373 24.747 28.587 24.747 49.92-0.427 70.4 0 141.227 0 211.627 0 18.773-6.4 35.413-21.76 46.507-11.947 8.96-25.173 16.64-38.827 22.613-39.253 16.213-80.64 23.040-122.453 26.88-16.64 1.707-32.853 2.133-50.347 3.413 0 2.987 0 5.973 0 8.533 0 65.707-0.427 131.413 0 197.12 0 18.347-6.827 33.28-19.627 45.227-8.533 8.107-18.773 14.507-29.44 20.053-30.72 15.36-64.427 23.040-98.133 28.16-69.12 10.667-138.667 11.093-208.213 1.28-33.28-4.693-65.707-11.947-96.427-25.6-8.533-3.84-16.64-8.107-23.893-13.227l32.427-31.573zM754.773 89.6c-3.413 0-6.827 0-10.24 0.427-48.64 1.707-96.427 7.253-142.933 23.040-12.8 4.267-25.6 10.24-37.973 16.64-20.48 11.093-28.587 20.907-37.12 41.387-20.48 1.28-40.96 2.133-61.013 4.267-20.48 2.133-40.533 5.973-61.013 9.387-4.267 0.853-7.253 0-10.24-2.133-54.187-40.533-114.773-56.747-181.76-48.64-96 11.093-178.773 83.627-203.947 177.92-37.547 141.227 52.907 282.027 197.12 306.773 5.973 0.853 11.52 1.707 17.493 2.133l45.227-45.227c-7.68 0.853-15.787 1.28-23.893 1.28-110.507 0-200.107-90.027-200.107-200.533 0-110.933 89.6-200.96 200.533-200.96 110.507-0.427 200.96 90.027 200.96 200.533 0 8.107-0.427 15.787-1.28 23.467l43.947-43.947c-0.427-8.533-0.853-17.067-1.28-25.6 8.96 0 17.92 0 26.88 0l112.64-112.64c-19.2 4.693-37.973 10.667-56.32 18.347 0-13.653 1.28-26.453-0.427-39.253-2.133-17.067 6.4-25.6 20.053-31.573 2.987-1.28 5.547-2.987 8.533-3.84 25.173-10.667 51.627-16.64 78.507-20.48 9.813-1.28 20.053-2.56 29.867-3.84l47.787-46.933zM524.373 284.16c-15.787 0.853-30.72 1.28-45.653 2.56-4.267 0.427-5.547-0.853-7.68-4.267-9.387-17.067-19.2-34.133-28.587-50.773-1.28-2.56-3.413-4.693-6.4-8.96 30.293-2.56 59.307-5.12 88.32-7.68 0 23.893 0 46.080 0 69.12zM184.32 434.347c26.027 37.973 73.387 53.333 116.907 38.4 4.693-1.707 9.387-2.56 14.080-2.133 10.24 1.28 17.493 9.387 18.347 19.2 1.28 10.667-4.267 19.627-15.36 23.893-69.547 27.307-151.893-5.973-183.040-74.24-3.84-8.107-7.253-12.373-17.067-11.947-11.093 0.853-19.627-8.533-20.907-19.2-0.853-11.52 5.547-20.907 16.64-23.893 2.133-0.427 4.267-0.853 6.827-1.28 0-5.973 0-11.52 0-17.493-1.707-0.427-2.987-0.427-4.693-0.853-12.373-2.133-20.053-11.52-19.2-23.893 0.853-11.093 9.813-19.627 21.76-20.053 2.56 0 5.12-0.427 7.68 0 4.267 0.427 6.4-0.853 8.107-5.12 9.813-22.187 24.747-40.96 43.947-55.040 43.093-31.573 89.6-37.973 139.947-20.48 7.68 2.56 12.8 7.68 14.507 15.787 2.133 8.533 0 16.213-6.827 22.187-7.253 6.4-15.36 6.827-24.32 3.84-43.093-13.653-79.787-3.84-110.933 28.587-2.987 2.987-5.12 6.4-8.533 11.093 3.84 0 6.4 0 8.533 0 30.72 0 61.013 0 91.733 0 11.093 0 19.2 5.547 22.187 14.507 5.12 14.933-5.547 29.867-22.187 29.867-36.267 0-72.107 0-108.373 0-2.56 0-5.12 0-8.107 0 0 6.4 0 12.373 0 18.347 3.413 0 5.973 0 8.96 0 39.253 0 78.507 0 117.76 0 11.947 0 20.907 6.827 23.040 17.067 3.413 14.080-7.253 27.307-22.187 27.307-35.84 0-71.253 0-107.093 0-2.133 0-4.267 0-7.253 0 2.987 1.707 3.84 3.413 5.12 5.547z" /> <glyph unicode="" glyph-name="notes" d="M614.4 960h-413.867c-59.733 0-106.667-46.933-106.667-102.4v-819.2c0-55.467 46.933-102.4 102.4-102.4h627.2c55.467 0 102.4 46.933 102.4 102.4v614.4l-311.467 307.2zM563.2 601.6v281.6l290.133-281.6h-290.133z" /> <glyph unicode="" glyph-name="noweb" d="M39.253 960c-9.813 0-20.053-3.84-27.733-11.52-15.36-15.787-15.36-40.533 0-55.893l945.493-945.067c7.68-7.68 17.493-11.52 27.733-11.52 9.813 0 20.053 3.84 27.733 11.52 15.36 15.787 15.36 40.533 0 55.893l-945.493 945.067c-7.68 7.68-17.493 11.52-27.733 11.52zM873.387 202.667c40.107 32.427 65.28 81.92 65.28 138.667 0 92.587-71.253 170.667-163.413 177.92-24.747 120.747-131.413 213.333-263.253 213.333-48.64 0-94.293-12.8-133.547-34.987l494.933-494.933zM256.853 587.093c-98.133-20.907-171.52-106.24-171.52-210.347 0-117.333 96-213.333 213.333-213.333h381.867l-423.68 423.68z" /> @@ -113,6 +116,7 @@ <glyph unicode="" glyph-name="services" d="M951.467 217.6c0 8.533 0 21.333 0 29.867s0 21.333-4.267 29.867l64 51.2c4.267 4.267 8.533 12.8 4.267 21.333l-64 106.667c-4.267 8.533-12.8 8.533-17.067 8.533l-76.8-29.867c-17.067 12.8-34.133 21.333-51.2 29.867l-12.8 81.067c0 8.533-8.533 12.8-17.067 12.8h-123.733c-8.533 0-12.8-4.267-17.067-12.8l-12.8-81.067c-17.067-8.533-38.4-17.067-51.2-29.867l-76.8 29.867c-8.533 4.267-17.067 0-17.067-8.533l-64-106.667c-4.267-8.533-4.267-17.067 4.267-21.333l64-51.2c0-8.533-4.267-21.333-4.267-29.867s0-21.333 4.267-29.867l-55.467-51.2c-4.267-4.267-8.533-12.8-4.267-21.333l64-106.667c4.267-8.533 12.8-8.533 17.067-8.533l76.8 29.867c17.067-12.8 34.133-21.333 51.2-29.867l12.8-81.067c0-8.533 8.533-12.8 17.067-12.8h123.733c8.533 0 12.8 4.267 17.067 12.8l12.8 81.067c17.067 8.533 38.4 17.067 51.2 29.867l76.8-29.867c8.533-4.267 17.067 0 17.067 8.533l64 106.667c4.267 8.533 4.267 17.067-4.267 21.333 0 0-68.267 51.2-68.267 51.2zM721.067 132.267c-64 0-115.2 51.2-115.2 115.2s51.2 115.2 115.2 115.2 115.2-51.2 115.2-115.2c0-64-51.2-115.2-115.2-115.2zM345.6 174.933h-89.6v102.4h81.067c4.267 34.133 8.533 68.267 21.333 102.4h-102.4v102.4h162.133c34.133 42.667 72.533 76.8 119.467 102.4h-281.6v102.4h520.533v-59.733c51.2-8.533 102.4-25.6 145.067-51.2v281.6c0 55.467-46.933 102.4-102.4 102.4h-622.933c-55.467 0-102.4-46.933-102.4-102.4v-819.2c0-55.467 46.933-102.4 102.4-102.4h302.933c-81.067 55.467-136.533 140.8-153.6 238.933z" /> <glyph unicode="" glyph-name="settings" d="M891.733 396.8c0 17.067 4.267 34.133 4.267 51.2s0 34.133-4.267 51.2l106.667 85.333c8.533 8.533 12.8 21.333 4.267 34.133l-102.4 179.2c-4.267 12.8-21.333 17.067-29.867 12.8l-128-51.2c-25.6 21.333-55.467 38.4-85.333 51.2l-17.067 128c0 12.8-12.8 21.333-25.6 21.333h-204.8c-12.8 0-25.6-8.533-25.6-21.333l-17.067-136.533c-34.133-12.8-59.733-29.867-89.6-51.2l-128 51.2c-8.533 4.267-21.333 0-29.867-8.533l-102.4-179.2c-4.267-8.533-4.267-25.6 8.533-29.867l106.667-85.333c-4.267-17.067-4.267-34.133-4.267-51.2s0-34.133 4.267-51.2l-106.667-85.333c-8.533-8.533-12.8-21.333-4.267-34.133l102.4-179.2c4.267-12.8 21.333-17.067 29.867-12.8l128 51.2c25.6-21.333 55.467-38.4 85.333-51.2l17.067-128c0-12.8 12.8-21.333 25.6-21.333h204.8c12.8 0 25.6 8.533 25.6 21.333l21.333 136.533c29.867 12.8 59.733 29.867 85.333 51.2l128-51.2c12.8-4.267 25.6 0 29.867 12.8l102.4 179.2c4.267 12.8 4.267 25.6-4.267 34.133l-110.933 76.8zM512 268.8c-98.133 0-179.2 81.067-179.2 179.2s81.067 179.2 179.2 179.2 179.2-81.067 179.2-179.2-81.067-179.2-179.2-179.2z" /> <glyph unicode="" glyph-name="shipment" d="M725.76 631.893h-23.040c-29.013 0-29.013 40.533 0 40.533h23.040c11.52 0 23.040-11.52 23.040-23.040-5.973-5.973-11.52-17.493-23.040-17.493zM587.52 631.893h-23.040c-29.013 0-29.013 40.533 0 40.533h23.040c11.52 0 23.040-11.52 23.040-23.040 0-5.973-11.52-17.493-23.040-17.493zM454.827 631.893h-23.040c-11.52 0-23.040 11.52-23.040 23.040s11.52 23.040 23.040 23.040h23.040c11.52 0 23.040-11.52 23.040-23.040-5.973-11.52-11.52-23.040-23.040-23.040zM316.587 631.893h-17.493c-11.52 0-23.040 11.52-23.040 23.040s11.52 23.040 23.040 23.040h23.040c11.52 0 23.040-11.52 23.040-23.040-5.547-11.52-17.067-23.040-28.587-23.040zM719.787-42.24c-46.080 23.040-86.613 17.493-126.72 0-52.053-23.040-103.68-29.013-161.28 0-40.533 17.493-80.64 23.040-126.72 0-52.053-23.040-103.68-29.013-161.28 0-17.493 5.973-34.56 17.493-63.573 17.493-11.52 0-23.040 11.52-23.040 23.040 0 34.56 69.12 17.493 103.68 0 40.533-17.493 80.64-23.040 126.72 0 52.053 23.040 103.68 29.013 161.28 0 40.533-17.493 80.64-23.040 126.72 0 52.053 23.040 103.68 29.013 161.28 0 40.533-17.493 80.64-23.040 126.72 0 34.56 17.493 103.68 34.56 103.68 0 0-11.52-11.52-23.040-23.040-23.040-34.56 0-46.080-5.973-63.573-17.493-51.2-29.013-103.253-29.013-160.853 0zM719.787 72.96c-40.533 17.493-80.64 23.040-126.72 0-52.053-23.040-103.68-29.013-161.28 0-40.533 17.493-80.64 23.040-126.72 0-52.053-23.040-103.68-29.013-161.28 0-17.493 5.973-34.56 17.493-63.573 17.493-11.52 0-23.040 11.52-23.040 23.040 0 34.56 69.12 17.493 103.68 0 40.533-17.493 80.64-23.040 126.72 0 52.053 23.040 103.68 29.013 161.28 0 40.533-17.493 80.64-23.040 126.72 0 52.053 23.040 103.68 29.013 161.28 0 40.533-17.493 80.64-23.040 126.72 0 34.56 17.493 103.68 34.56 103.68 0 0-11.52-11.52-23.040-23.040-23.040-34.56 0-46.080-5.973-63.573-17.493-51.2-29.013-103.253-29.013-160.853 0zM875.52 579.84h-34.56v230.4c0 11.52-11.52 23.040-23.040 23.040h-149.76v103.68c0 11.52-11.52 23.040-23.040 23.040h-282.453c-11.52 0-23.040-11.52-23.040-23.040v-103.68h-149.76c-11.52 0-23.040-11.52-23.040-23.040v-230.4h-29.013c-5.973 0-11.52-5.973-17.493-5.973-5.973-5.973-5.973-11.52-5.973-17.493l115.2-391.68c5.973-11.52 17.493-17.493 29.013-11.52 11.52-5.973 17.493 5.973 11.52 17.493l-109.227 368.64h322.56v-374.613c0-29.013 40.533-29.013 40.533 0v374.613h328.533l-109.653-368.64c-5.973-11.52 5.973-23.040 11.52-29.013 11.52-5.973 23.040 5.973 29.013 11.52l115.2 391.68c5.547 23.467-5.973 34.987-23.040 34.987zM385.707 913.92h241.92v-86.187h-241.92v86.187zM800.427 579.84c-69.12 0-512.853 0-587.52 0v213.333h587.52v-213.333z" /> +<glyph unicode="" glyph-name="hasItemDelay" d="M921.6 490.667c-21.333 170.667-157.867 302.933-324.267 324.267-226.133 25.6-418.133-149.333-418.133-371.2h-68.267l106.667-166.4 110.933 166.4h-68.267c0 162.133 132.267 290.133 290.133 285.867 153.6 0 281.6-132.267 281.6-281.6 0-162.133-128-290.133-285.867-290.133s-153.6 34.133-200.533 85.333l-55.467-55.467c68.267-68.267 157.867-106.667 264.533-106.667 221.867 0 392.533 192 366.933 413.867zM507.733 610.133v-204.8l174.933-106.667 25.6 51.2-140.8 85.333v174.933h-59.733zM256 733.867v226.133h-51.2v-290.133c17.067 21.333 34.133 42.667 51.2 64zM460.8 844.8v115.2h-153.6v-183.467c46.933 34.133 98.133 55.467 153.6 68.267zM921.6 960v-345.6c38.4-85.333 51.2-183.467 21.333-281.6-4.267-21.333-12.8-38.4-21.333-59.733v-337.067h102.4v1024h-102.4zM819.2 750.933v209.067h-51.2v-170.667c17.067-12.8 34.133-25.6 51.2-38.4zM665.6 836.267v123.733h-102.4v-106.667c34.133 0 68.267-8.533 102.4-17.067zM76.8 426.667l-38.4 55.467h64v477.867h-102.4v-1024h102.4v448l-25.6 42.667zM768 102.4v-166.4h51.2v204.8c-17.067-12.8-34.133-25.6-51.2-38.4zM584.533 42.667c-8.533 0-12.8 0-21.333 0v-106.667h102.4v119.467c-25.6-8.533-55.467-12.8-81.067-12.8zM307.2 123.733v-187.733h153.6v115.2c-55.467 12.8-106.667 38.4-153.6 72.533zM204.8 226.133v-290.133h51.2v230.4c-21.333 17.067-38.4 38.4-51.2 59.733z" /> <glyph unicode="" glyph-name="sms" d="M896 729.6h-443.733c-29.867 0-55.467-25.6-55.467-55.467v-332.8c0-29.867 25.6-55.467 55.467-55.467h443.733c29.867 0 55.467 25.6 55.467 55.467v332.8c0 29.867-25.6 55.467-55.467 55.467zM896 618.667l-221.867-140.8-221.867 140.8v55.467l221.867-140.8 221.867 140.8v-55.467zM640 221.867v-55.467h-486.4v652.8h486.4v-25.6h85.333v25.6c0 76.8-64 140.8-140.8 140.8h-371.2c-81.067 0-140.8-64-140.8-140.8v-746.667c0-72.533 59.733-136.533 140.8-136.533h371.2c76.8 0 140.8 64 140.8 140.8v145.067h-85.333zM490.667 29.867h-187.733v46.933h187.733v-46.933z" /> <glyph unicode="" glyph-name="solclaim" d="M1024 917.333v-938.667h-938.667v68.267h234.667v51.2h38.4c8.533-4.267 17.067-4.267 29.867-4.267h298.667c42.667 0 76.8 34.133 76.8 76.8 0 0 0 0 0 0 29.867 12.8 46.933 38.4 46.933 72.533 0 0 0 0 0 0 29.867 12.8 46.933 38.4 46.933 72.533s-21.333 59.733-46.933 72.533c0 0 0 0 0 0 0 42.667-34.133 76.8-76.8 76.8h-106.667c21.333 21.333 29.867 55.467 17.067 89.6-12.8 25.6-38.4 42.667-68.267 42.667-12.8 0-21.333-4.267-34.133-8.533l-217.6-98.133v29.867h-238.933v396.8h362.667v-209.067h209.067v209.067h366.933zM0 89.6h281.6v51.2h89.6c4.267-4.267 12.8-4.267 17.067-4.267h298.667c21.333 0 34.133 12.8 34.133 34.133s-12.8 34.133-34.133 34.133h-136.533v12.8h183.467c21.333 0 34.133 12.8 34.133 29.867 0 21.333-12.8 29.867-34.133 29.867h-179.2v12.8h234.667c21.333 0 34.133 8.533 34.133 29.867s-12.8 29.867-34.133 29.867h-230.4v12.8h183.467c21.333 0 29.867 12.8 29.867 34.133s-12.8 34.133-34.133 34.133h-230.4l93.867 64c12.8 8.533 21.333 29.867 12.8 46.933s-29.867 25.6-51.2 17.067l-251.733-119.467c-4.267 0-4.267-4.267-8.533-4.267-4.267-4.267-8.533-8.533-12.8-12.8h-8.533v55.467h-281.6v-388.267z" /> <glyph unicode="" glyph-name="languaje" d="M961.28 575.147c0 212.48-172.373 384.853-384.853 384.853s-384.427-172.373-384.427-384.853c0-26.88 3.413-52.907 7.68-77.653-75.52 0-136.96-61.44-136.96-136.96v-159.573c0-75.52 61.44-136.96 136.96-136.96h23.893c-1.707-17.92-5.973-38.4-14.507-61.013-7.68-19.2-2.133-42.24 14.080-55.040 9.813-7.68 20.48-11.947 32.427-11.947 8.533 0 16.213 2.133 24.747 6.4 55.040 31.147 101.12 81.92 132.693 122.88h55.040c72.107 0 131.413 55.893 136.96 127.147 199.253 14.080 356.267 180.053 356.267 382.72zM855.893 403.627c-26.027 10.667-52.907 20.48-79.787 28.16 7.68 36.693 12.8 75.52 14.080 116.48h113.067c-4.267-53.76-21.333-102.4-47.36-144.64zM855.893 747.52c26.027-43.093 43.093-91.733 47.36-144.64h-113.067c-2.133 40.96-6.4 79.787-14.080 116.48 26.88 8.96 53.76 17.493 79.787 28.16zM820.48 794.88c-19.2-7.68-38.827-14.080-60.16-19.2-11.947 37.547-28.16 71.253-46.507 98.133 40.533-19.627 77.227-46.507 106.667-78.933zM605.867 897.28c37.547-16.213 75.52-63.573 98.987-134.827-32.427-5.547-64.853-8.533-98.987-10.667 0 0 0 145.493 0 145.493zM605.867 695.040c38.827 1.28 77.653 5.547 114.347 11.947 6.4-31.147 11.947-65.707 12.8-103.68h-127.147v91.733zM605.867 546.987h127.147c-1.28-37.547-6.4-72.107-12.8-103.68-36.693 6.4-75.52 10.667-114.347 11.947 0 0.427 0 91.733 0 91.733zM425.813 498.773c-2.133 16.213-3.413 32.427-4.267 49.493h127.147v-74.24c-22.613 16.213-49.493 26.027-79.787 26.027h-43.093v-1.28zM548.693 604.16h-127.147c1.28 37.547 6.4 72.107 12.8 103.68 36.693-6.4 75.52-10.667 114.347-11.947 0 0 0-91.733 0-91.733zM548.693 897.28v-145.493c-34.56 1.28-66.987 5.547-98.987 10.667 24.747 70.4 61.013 119.040 98.987 134.827zM440.747 873.813c-18.347-28.16-34.56-61.44-46.507-98.133-20.48 5.547-40.96 11.947-60.16 19.2 29.013 32.427 65.707 59.307 106.667 78.933zM298.667 747.52c26.027-10.667 52.907-20.48 80.64-28.16-8.533-36.693-12.8-75.52-14.080-116.48h-113.92c4.267 53.333 21.333 102.827 47.36 144.64zM364.373 546.987c1.28-17.067 2.133-33.28 3.413-49.493h-107.947c-4.267 16.213-7.68 32.427-8.533 49.493h113.067zM548.693 202.24c0-44.373-35.413-79.787-79.787-79.787h-69.12c-8.533 0-17.067-4.267-22.613-11.947-20.48-28.16-59.307-75.52-105.813-107.947 10.667 36.693 11.947 69.12 10.667 91.733-1.28 14.933-12.8 26.88-28.16 26.88h-52.48c-44.373 0-79.787 35.413-79.787 79.787v160.427c0 44.373 35.413 79.787 79.787 79.787h267.52c44.373 0 79.787-35.413 79.787-79.787v-159.147zM605.867 253.867v107.947c0 0 0 0 0 1.28v36.693c34.56-1.28 66.987-4.267 98.987-10.667-23.467-70.4-61.44-119.040-98.987-135.253zM713.387 277.76c18.347 28.16 34.56 60.16 46.507 98.133 20.48-5.547 40.96-11.947 60.16-19.2-29.013-32.853-65.707-59.733-106.667-78.933zM442.88 366.080h-215.467c-16.213 0-28.16-12.8-28.16-28.16 0-14.933 12.8-28.16 28.16-28.16h215.467c16.213 0 28.16 12.8 28.16 28.16s-12.8 28.16-28.16 28.16zM442.88 258.133h-215.467c-16.213 0-28.16-12.8-28.16-28.16s12.8-28.16 28.16-28.16h215.467c16.213 0 28.16 12.8 28.16 28.16s-12.8 28.16-28.16 28.16z" /> diff --git a/src/css/fonts/icon.ttf b/src/css/fonts/icon.ttf index a49f90f9cdef2637012b90d1ac23df7a4018ffa9..4a1d2309cbd7ece0079aa1ac2a6980b6ebc33f77 100644 GIT binary patch delta 1672 zcmX|BeN0nV6u;-a@?Kk@^ilereJvlakG7;h!M?T+3nCF1IH2HA)&UMd1f%kifuhr- zCUY7cW-Pc(&9dzehkv;ERhOA;f3S(}BVgvDE-^+Ex0#{;s8O>Ic<dD2Uhcc+oZmV3 z-t%?u^gHzV_vx{m*n_SU<%EEP5Hj4`IW&mWjPe*#eec$tJrAWjf1!MYkc-osHg<M< zpWJ$vkW1aD4{bs~@6&yP@<%A=Zt5G};a$Hlhw>yLRAB4ChR&bvEbJxZyC;b=`Z{+E zk~7o|LVmzANKSuepKW7P*`r$s6r(}c;K0x@p;1MCJpA5;w_H)=($OE9Py|TM?8xly z**&xSXGa(27Zws`h>`I@5Ort*<7Y2f;%DJ_b4*9b!X#poxYkJuiAsnngw%3SL#l^i zO~5j&ML>eXgD8$-Mm2y0FO)8e^a6iPIr+hdzt_~Jh8^u~PY)a%*_H41iMg_|!kj5O zON)z(Az9lFp8?5~q#BPq5BknmY8(8;?fG`U(AZ?Gton9fu&eg%;h|H(pdKEy$jb^! z*H!l}tt?zt@ALVzQ`Awd)|r*P%qH?{wdoddg^OQmi<h=?5btg|YmH$-UPO~jmXHV` z7EnDbC$R#$oaAJz8NA{T1p{tba5DK|&0ttB$WFJ%9as)t$cF?QQo~RR!9Yk2@qz;~ zAtCyCfoE6(t+UZqFh-;IwTb!bbXBCkFVfiGA9<b9QI&=c762F{1tv#Y3Tp&lS&F7A zjVzl&nX@^DNe0j}a6p^5AB}>sH98Be^VeVMizK#*^k0E0HW>{l8mbJ8K832*;~psM zph}N>&~eLFnu^g+v07H*CVtXN#<3aDH$dl1AWP`K4^$`zCFo>WV0cCHhdkf|c_|$T zDSjS9#&|6lc%rmC%eYy_naF?-5+kt4xOt2|VGNvXm9iikBu*9-PT~|*W;iL)1>;64 zJ4O*okI~XVK@v0n8<T_#4JHIlcD?q<EJ>6@$}ww?^>$NsdTMHV;xDHu%oYVYT!x_~ zc$@(jA`8HoOdOml)Fx;hl?E$Eg>7?_+k{bAnMNg1+C*VGpDT(kfuk$9nBWq{Tt1!p zht_EYNh}Qv1C%}quIXs6$)puzmXu_|HRM967E5Z1#R4u%p2Z#%?UY`RF5s7>GxEmd z9Fsj{cUWjHEiHZiGQIC8&C+)5a-Mbt{CN<z>lpgz+?#ApMn*m!DY6Dbf@hx#B%anU zdSfa7H(!vHk(Fc>S%U@YB%8?~*-7@0{aC8!>Gil5vu~9JRSqoPHNh`rfq>OnR3z%b zW`W{g)OlQ1LG=V>92_P-C|hxMaaoIZl2bSqku31UkR&?6qi`~!9<VAwtTFcYBICjt z3+&+*34KhT>1ZiYSFEY8ACjC^TL!9yC5?e#X;@Jj1fCZnfk5f@BDqA_*VJ57+ikNM zw64>(L#1;{s_o`6xxouFjx?T5VR~i|8SNF7m^dHzRP^-Ns5l~1te)-7@M^yt^ESvm zidi(kg9^2z#qQ7>MX{&0w)w<~<$+)XdrS}_ic+#X7>o#fky}+toYEV0b<IOFo0YYv zci+`+n{#4AU)m(&kTy{<w#w`<Yo~SO>eZ75OWp1*Mpo-p;r1M{!(_hp)x?a^QoUt_ zVOD=VWORu=+U<L(+2*+G$Vi@JbDM8hM_Soal8mn&e!qTEZ~BjpUzk+kQ2gO!7Bz1A z#yoDi_-V{roIg=;+$R?4ijEYWEBd?m&!zRju@DLQLxUkry%FZa;qYi#URizl&nv`= z(Tb_ca8*HdYmK93Z_VS{!>jJTJY46kJ6C_V;Y@=T8Ebsj)YEjZX{zau)z@C>Z+16d xSu?%1yXEs&zmNK(&)OVq)9oegH`n>s?dVAFIJe$#v-2Ll<%ArH`=&mIe*xU;hzS4y delta 471 zcmdlomHA9J^8|(ZeaEW~GB7a8FfcGoNlz>;0MY_L{sth;k)BhTmdU$k8j!z(fnndB zjMT&wjcNJi3=9XR0OidxfC3zPEVF_9GeEvdMs7)kRKov1K>h~?1}2r9{NzN9yP<Cw z7!Hd7%@D~=tSDeu!*q>-;fMxMy+U4Mu4HO}&Br@H0S};pq=Nk75(Z|V6vNRq6L&P5 zRsdO2K=&{+a4|44D7<uk8T2yjWzNg;mo+aNUbesN`TzI-e~@yZ9K%b`mmx1BUgk|s zV3gt!`!DuS?624#pjO7o3r`78-f)Tqgf~xQToSzbVH7{(W{&WUqMK*tGBR!UDiqe* z{BusRhKyT_QgA%K%~u9)7O=68+C-Z`3=loJ<ES}f=jH=P<(MYFJHDV^+eODocZc30 zeKY+4{TT++3|^V)nI@RdGt;riv6x`-$g0k2k*$Vpf!!l}DaQ#;P0kx!i(GHHdAPmu zu<$tL+2F<DZQ<SKBjH=;`_50u&&RL8KgR!Cz`DS&ppc+9Ats>#p}WHBB9=skL>`Dr mirN*;5Hl;*DlREL4;U5<4BVYeR~VGQu4DrFaI^8rMn(VxoTMNC diff --git a/src/css/fonts/icon.woff b/src/css/fonts/icon.woff index 14e8469f31772ba358241becee7edfeb6ccacdd3..a04dd7af2629cb4a42c5c9f29e635fb6856c2a44 100644 GIT binary patch delta 1695 zcmX|CT~HHO6uxIS>?Q$1mcXvrgrCilgb5fhn`AK{G6I4H0v4qypa?2BDo6|dI};yl zJ6fFTq+`_w?SsV!JL(uaeP}y_N*!y}sU5X5j)RW1jz2HesZM`j?b&F1=bn4c`R=** zo}YVn50240570TATNf@QK(PHtNV?81pH19@S^G;1;-jdIKJ7bRJ<vNcObFaT-S~#A z1M9c;Blduh3s-ddUAp_%n$^9l2>Jdr+JtrT{c-1$H3%a12=yYJjDEw>HG`vD2)UR+ z2o==Hx8l|G`VA}5?otiz>D1|`yMb4`279;Q!9R54!on1trfv=O4z5OQ2O9P1)K>NE z&hUm2boTPS{nH<3#n3RDSP4xi46HD51cbzQU{6eekeq>I?QsJkuO<wHo<JiPnN3te zR3WTZgBn)73~K?FVQm63>|R8%mousfBzQCFwn=aBca;+dKKreqF*D-q?s~C%&*tqV z9=}*5n`^9jqN}pJyd2WCP4ESfJV|QsdWvE2Y^}C3P~KhQ2nelh=GwaR8;1KDKNuZ3 z844NUX@@+wv~pSfz?|CIbDRBszjl&3q&2$o3+CEIeyMh)L!9sC=h%}+m!9Y2^#6gR zlUXE6hz(RP%So(&-ln;j+#FsBghN4(EV!5w$jxC`AIL6`*AtuvJ}3cQ466~SgitW7 zhIzpWd7!HSUf>y)K<DFFCzxZgC))VTO}Z{RG#G6i8j3Eb3{<VDhXnw}Oo7FjmBE?; zSeBxxS~JULP}TyDVbTGN4D8m%pTuHd?u<Q#&Y7DF2c!Bn(V=Tl$EKqJMMIs5F=kNp zM%)8+1JoID4?5Yio~GjT3oKMF@sI%NBnd1y`UdEn1!M{R_k#-6poClu3k<JFfv^|+ zAkU$LVI{z0$QZ8;1J|p{vy6vjTzUrlp!Z-(@bDPDZVa59E9FB0NSrJvoWv=r%y5!^ z0TLZlL7XC#5u>Gnf;4940h5LT4Hg6~4x{$WDoK=6Dzs|PjSfpec4lU_PSrGp*`mOJ z%P=%u#u0EKiU6F&!okVe+Bj{XvS7iOuyJ}~qc8>wvZypl8=sxc7m1=<;OH7IF1SUp zh|i|}p$%GT8cPGi0A);r8wT2Ev1p}v6%~1K1Ep}L&6b&Avw_=IY;%M}2W2#(3)s>O zX5O4$XmNxcP8-c-Wo6G?q(3}Fv$R9ISgc)xKruud28KQ~y^Sr*$tl4jMb>1}W%ji~ zl3hchFOHA*%_|C#DzbnqB1^D9y<{yJCR@o)@)4Hmb$Y#?RQ7XaL6w84XC?%Md=RiY zsR_LvY(6M~)STCyE2!R(jGe>8hvZxw-CTa^IdTfeB9af@I5Pbvcoj}Y)C;*v2y2Y@ zJ0-Yr!~%P{6r&Ft^PC+O>ii|m%_EYlZrz4@VODD}R2fl}7J=u5XfRm0sZ6d=K5T1m zXk2Bto3y@D_Pv$UN~ZnxVY$TzSDjfrox${9MPzJ1RN~@H(p%HtZ>N%oOtMCHAjhZu za@f}*_bXP>1W#+!iVla<Xcoo(#>V#J$L9q@QM_Y<5LJ|ld7)5L;LAL!QsI)`Z)$2E zxw=+adTPggZOU30ANkrYnMbtonth9`POEmxK(1duVX`&tSZ8Ln0TrgEi327|v~R|* znr-##HZ#oPZ%52-v0s~dm|0*=zISkQv2$&ge|t|>)eDl2A3SWoe${OGk0%W0RM?xW zI+sr+mY=gGIxl=4_m!87mmc$rWrnhYWoOF%F8^~*b7)_fgahH>u%_OM@R3Mltg5)G zx%%h%V$E31WNoCbw7#>!*|4kOdE=*x?!PtK<ZC+9e81&%ix%D2`m(LRZBN@|+oQ!d z-X3cAv|n3tW$CJpFW<Qo3&dV_IlHcOS9ITA7Ff2WC%fm&3e)Z0hp8XY-sHB)Bk(VQ C*oFcC delta 500 zcmZpe#yq2kS)|<G&5ePP0SJysFmQwDqh}_HnAcAMvZm}iUUe`%vABSNf$<NJ&jG~( z={c2Y3=B*x3=I43fN&=7o@p7Wi75;W2Oa>`n1QgywEXf6pdbUoK?xvV1%x^DSY~JB zmQ(=6Y=HWKVoWMh3IG4(<R=5w9Zmq+BLc!2ca1{d<R(@CEk05L)TjW)YnZO(CFZ6A z#ej}uOakEmn~!%2@{56Lj{cbVr`r^0GJ_O@00T1v7tm7*FWp}Ty$pMq^RoP9&C7<D z?Js-&|NZ|Ts0L`{ONN)8FGF5Nyv&=thEYmH?7!GQvA<$}fLg(!0aCO16yx^b&AQS2 zjGIHkH;Qh4n#;(vd0L^c)@Ika#TqhhElR=h{5D@1xPbuy1drN8n_%?hD@V;4J2&$j zlVh4}bz(uiwu_FF?hd_0`eyn8`ZEls8N4#pGfgm^XQpG3V==+vkyV}5B3ljH0=q}{ zQjQaxnw&Sd7P;PX^Kg6RVc~Jgv%!nQ+rqoeN5Z$x_nn`RpO0UGe~kaPfOUakK_NkJ qLQFyfLU)DLMJ$O7i98UM6tydwA!b&rRa{bh9@slTrzD-6#|QvKYoQSU diff --git a/src/css/fonts/selection.json b/src/css/fonts/selection.json index b102e8ad3..5a1a5be66 100644 --- a/src/css/fonts/selection.json +++ b/src/css/fonts/selection.json @@ -1 +1 @@ -{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M859.733 683.093c-90.027 0-162.56 72.533-162.56 162.56h-29.44l47.36 72.533 48.64-72.533h-29.44c0-69.547 56.32-125.867 125.867-125.867s125.867 56.32 125.867 125.867-56.32 125.867-125.867 125.867c-34.133 0-66.56-14.933-87.467-37.12l-25.173 25.173c29.44 29.44 69.547 47.36 115.2 47.36 90.027 0 161.28-72.533 161.28-161.28s-75.52-162.56-164.267-162.56v0zM842.24 773.12v90.027l76.8 45.653 11.947-22.187-62.293-37.12v-76.8l-26.453 0.427z","M0 574.293l346.88 346.453 234.24-234.24-88.747-88.32-90.453 88.32v-267.52h267.52l-88.32 90.453 88.32 88.747 234.24-234.24-346.453-346.88z"],"attrs":[{},{}],"grid":0,"tags":["entry_lastbuys"],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"125525525519595951":[{},{}]}},"attrs":[{},{}],"properties":{"order":420,"id":127,"name":"entry_lastbuys","prevSize":32,"code":59674},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M640 921.6l-17.067 17.067h-213.333v-153.6h-153.6v-102.4h200.533l102.4-102.4h-302.933v-102.4h405.333l102.4-102.4h-507.733v-102.4h520.533v89.6l72.533-72.533c17.067-17.067 42.667-29.867 68.267-29.867 4.267 0 8.533 0 8.533 0v-157.867c0-55.467-46.933-102.4-102.4-102.4h-627.2c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h627.2c55.467 0 102.4-46.933 102.4-102.4v-285.867l-285.867 285.867z","M917.333 324.267c8.533 0 17.067 4.267 21.333 8.533l76.8 76.8c12.8 12.8 12.8 34.133 0 46.933l-64 64-119.467-119.467 64-64c4.267-8.533 12.8-12.8 21.333-12.8z","M797.867 430.933l119.467 123.733-320 320h-123.733v-119.467l324.267-324.267z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["100"],"grid":0},"attrs":[{},{},{}],"properties":{"order":279,"id":0,"name":"100","prevSize":32,"code":59649},"setIdx":0,"setId":2,"iconIdx":1},{"icon":{"paths":["M1135.232 1024v-47.84h-84.352v-927.424l8.576-0.416c3.104-0.192 6.304-0.352 9.472-0.352h23.68c14.208-0.064 28.352-0.064 42.56-0.064v-47.904c-314.72 0.192-629.472 0.224-944.256 0.224h-190.912v47.712h83.168s0 928.064 0 928.064h-83.168v47.712h140.896c331.456 0 662.88 0 994.336 0.256zM821.536 48.736h180.16v926.944h-180.16v-926.944zM591.904 48.256h180.096v926.944h-180.096v-926.88zM362.272 48.256h180.16v926.944h-180.16v-926.944zM132.608 48.736h180.16v926.944h-180.16v-926.944z","M748.128 240.32c4.928 1.088 9.664 2.592 14.272 4.192v-142.144c-7.552-1.728-15.168-3.36-22.976-4.736-16.672-2.816-33.568-4.448-50.368-6.592h-52.64c-2.944 0.48-5.888 1.184-8.8 1.44-8.768 0.704-17.504 1.664-26.144 3.008v144.736c47.776-14.56 97.184-10.72 146.656 0.064z","M878.56 332.384c27.808-34.784 55.936-69.984 84.192-105.28-38.080-44.416-81.664-78.528-131.616-101.44v162.848c16.384 13.6 31.36 28.896 47.424 43.84z","M467.008 676.192c-0.288-0.608 0-1.568 0-3.072h65.888v-101.792h-97.44c-6.528-32.448-3.488-64.704-4.256-97.856h101.696v-101.856h-74.72c0.064-1.44 0-2.048 0.192-2.464 18.112-37.664 42.496-69.44 74.528-93.664v-161.408c-3.296 1.376-6.656 2.816-9.888 4.32-60.48 28.608-111.328 66.016-151.104 113.44v564.608c37.952 46.656 87.008 82.784 147.2 108.352 4.544 1.92 9.184 3.712 13.792 5.472v-153.504c-26.912-20.512-48.448-48.096-65.824-80.704z","M297.92 368.192c-1.92 6.048-4.608 7.808-10.848 7.744-35.072-0.288-70.144-0.192-105.216-0.192h-9.28v93.664h100.8c0.896 33.152 1.792 65.248 2.752 98.144h-103.616v101.76h9.28c36.704 0 73.44 0.352 110.144-0.256 5.28-0.128 8.704 0.832 11.2 3.232v-319.392c-1.792 5.024-3.648 10.080-5.28 15.296z","M736.672 673.12v-101.792h-135.2v101.792h135.2z","M736.8 371.68h-135.328v101.856h135.328v-101.856z","M954.272 796.768c-28.416-34.048-56.544-67.808-84-100.736-13.312 10.976-26.208 21.888-39.168 32.544v169.248c13.504-6.4 26.688-13.792 39.584-22.304 32.256-21.344 59.776-47.712 83.584-78.784z","M615.2 792.512c-4.672-0.832-9.248-1.792-13.728-2.944v138.688c32.032 5.024 64.64 5.824 97.792 3.168 21.536-1.728 42.624-4.928 63.136-9.76v-145.696c-45.44 21.536-95.040 25.792-147.2 16.544z"],"width":1120,"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{}]},"tags":["Client_unpaid"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":280,"id":1,"name":"Client_unpaid","prevSize":32,"code":59788},"setIdx":0,"setId":2,"iconIdx":2},{"icon":{"paths":["M554.667 25.6c-260.267 0-469.333 209.067-469.333 469.333h-85.333l136.533 209.067 140.8-209.067h-85.333c0-200.533 162.133-362.667 362.667-362.667s362.667 162.133 362.667 362.667-162.133 362.667-362.667 362.667c-98.133 0-192-42.667-251.733-106.667l-72.533 72.533c85.333 85.333 200.533 136.533 332.8 136.533 260.267 0 465.067-209.067 465.067-465.067s-217.6-469.333-473.6-469.333zM503.467 285.867v260.267l221.867 132.267 34.133-64-179.2-106.667v-221.867h-76.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["History"],"grid":0},"attrs":[{}],"properties":{"order":281,"id":2,"name":"History","prevSize":32,"code":59650},"setIdx":0,"setId":2,"iconIdx":3},{"icon":{"paths":["M512 0c-140.8 0-256 115.2-256 259.2s115.2 259.2 256 259.2 256-115.2 256-259.2c0-144-115.2-259.2-256-259.2zM512 582.4c-169.6 0-512 86.4-512 259.2v195.2h1024v-195.2c0-172.8-342.4-259.2-512-259.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["Person"],"grid":0},"attrs":[{}],"properties":{"order":282,"id":3,"name":"Person","prevSize":32,"code":59651},"setIdx":0,"setId":2,"iconIdx":4},{"icon":{"paths":["M955.307 27.733h-885.76c-37.973 0-69.547 30.72-69.547 69.547v130.56c0 37.973 30.72 69.547 69.547 69.547h53.333v2.133l81.493 567.040c10.667 75.093 67.413 129.707 133.973 129.707h346.88c67.413 0 123.733-54.613 133.973-129.707l81.92-569.173h53.333c37.973 0 69.547-30.72 69.547-69.547v-131.413c0-37.973-30.72-68.693-68.693-68.693zM843.093 299.947l-80.64 558.080c-6.827 46.507-39.253 80.213-77.227 80.213h-346.027c-37.973 0-70.827-33.707-77.227-80.213l-81.067-561.493h663.040l-0.853 3.413zM966.4 227.84c0 6.4-5.12 11.947-11.947 11.947h-884.907c-6.4 0-11.947-5.12-11.947-11.947v-131.413c0-6.4 5.12-11.947 11.947-11.947h885.76c6.4 0 11.947 5.12 11.947 11.947v131.413h-0.853z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["complementos"],"grid":0},"attrs":[{}],"properties":{"order":283,"id":4,"name":"accessory","prevSize":32,"code":59652},"setIdx":0,"setId":2,"iconIdx":5},{"icon":{"paths":["M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 214.4c73.6 0 137.6 60.8 137.6 137.6s-60.8 137.6-137.6 137.6-137.6-60.8-137.6-137.6c0-76.8 64-137.6 137.6-137.6zM512 896c-134.4 0-252.8-70.4-323.2-176 48-89.6 227.2-131.2 323.2-131.2s272 44.8 323.2 131.2c-70.4 105.6-188.8 176-323.2 176z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[],"125525525519595951":[]},"tags":["account"],"grid":0},"attrs":[],"properties":{"order":284,"id":5,"name":"account","prevSize":32,"code":59653},"setIdx":0,"setId":2,"iconIdx":6},{"icon":{"paths":["M354.133 401.067v-183.467c0-68.267 55.467-123.733 123.733-123.733s119.467 59.733 119.467 123.733v183.467c59.733-38.4 98.133-106.667 98.133-183.467 0-119.467-98.133-217.6-221.867-217.6s-217.6 98.133-217.6 217.6c0 76.8 38.4 145.067 98.133 183.467zM832 627.2l-221.867-110.933c-8.533-4.267-17.067-4.267-25.6-4.267h-38.4v-294.4c0-38.4-34.133-72.533-72.533-72.533s-72.533 34.133-72.533 72.533v524.8l-166.4-34.133c-4.267 0-8.533 0-12.8 0-17.067 0-29.867 4.267-38.4 17.067l-38.4 38.4 238.933 238.933c12.8 12.8 29.867 21.333 51.2 21.333h332.8c38.4 0 64-25.6 68.267-64l38.4-256c0-4.267 0-8.533 0-8.533 4.267-29.867-17.067-55.467-42.667-68.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["actions"],"grid":0},"attrs":[{}],"properties":{"order":285,"id":6,"name":"actions","prevSize":32,"code":59655},"setIdx":0,"setId":2,"iconIdx":7},{"icon":{"paths":["M716.8 409.6c-169.813 0-307.2 137.387-307.2 307.2s137.387 307.2 307.2 307.2 307.2-137.387 307.2-307.2-137.387-307.2-307.2-307.2zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427z","M354.133 716.8c0-96.853 37.547-187.733 105.813-256-20.907-2.133-40.107-2.987-56.747-2.987-134.4 0-403.2 70.4-403.2 204.8v153.6h367.787c-8.96-32-13.653-65.28-13.653-99.413z","M605.013 204.8c0 113.108-90.355 204.8-201.813 204.8s-201.813-91.692-201.813-204.8c0-113.108 90.355-204.8 201.813-204.8s201.813 91.692 201.813 204.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["addperson"],"grid":0},"attrs":[{},{},{}],"properties":{"order":286,"id":7,"name":"addperson","prevSize":32,"code":59656},"setIdx":0,"setId":2,"iconIdx":8},{"icon":{"paths":["M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2-0 25.6-25.6 51.2-51.2 51.2z","M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM725.333 277.333c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["agency"],"grid":0},"attrs":[{},{},{}],"properties":{"order":287,"id":8,"name":"agency","prevSize":32,"code":59690},"setIdx":0,"setId":2,"iconIdx":9},{"icon":{"paths":["M789.333 693.333c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM789.333 846.933c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2 0 25.6-25.6 51.2-51.2 51.2z","M251.733 693.333c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM251.733 846.933c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M1006.933 420.267l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933v0zM725.333 275.2c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067zM509.013 403.627c0 113.92-92.16 206.080-206.080 206.080s-206.080-92.16-206.080-206.080 92.16-206.507 206.080-206.507 206.080 92.587 206.080 206.507zM342.613 465.92h-87.893l-15.36 40.107h-78.933l100.693-230.827h76.373l100.693 230.827h-80.213l-15.36-40.107zM321.28 409.6l-22.613-58.027-22.187 58.027h44.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["agency-term"],"grid":0},"attrs":[{},{},{}],"properties":{"order":288,"id":9,"name":"agency-term","prevSize":32,"code":59657},"setIdx":0,"setId":2,"iconIdx":10},{"icon":{"paths":["M878.933 102.4h-217.6c-25.6-59.733-81.067-102.4-149.333-102.4s-123.733 42.667-145.067 102.4h-221.867c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h729.6c55.467 0 102.4-46.933 102.4-102.4v-716.8c4.267-55.467-42.667-102.4-98.133-102.4zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2zM614.4 819.2h-362.667v-102.4h366.933v102.4zM772.267 614.4h-520.533v-102.4h520.533v102.4zM772.267 409.6h-520.533v-102.4h520.533v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["albaran"],"grid":0},"attrs":[{}],"properties":{"order":289,"id":10,"name":"albaran","prevSize":32,"code":59692},"setIdx":0,"setId":2,"iconIdx":11},{"icon":{"paths":["M230.4 354.133c12.8-46.933 29.867-93.867 46.933-140.8 8.533-34.133 21.333-64 29.867-98.133 4.267-12.8 8.533-12.8 21.333-12.8 38.4 12.8 72.533 21.333 110.933 25.6 12.8 4.267 29.867 0 46.933 0 34.133-4.267 68.267-8.533 102.4-12.8s72.533-12.8 106.667-17.067c4.267 0 8.533 0 12.8 0s8.533 0 12.8 8.533c12.8 46.933 29.867 93.867 42.667 136.533 12.8 38.4 25.6 76.8 34.133 115.2-192-4.267-379.733-4.267-567.467-4.267z","M456.533 712.533c34.133-8.533 64-12.8 98.133-4.267 8.533 0 12.8 0 12.8-8.533 17.067-34.133 42.667-59.733 76.8-72.533 38.4-17.067 76.8-21.333 115.2-8.533 34.133 8.533 59.733 29.867 81.067 55.467 25.6 34.133 38.4 72.533 34.133 119.467-8.533 51.2-34.133 89.6-76.8 115.2-51.2 34.133-132.267 29.867-179.2-12.8-42.667-34.133-59.733-76.8-64-128 0-8.533-4.267-12.8-12.8-17.067-21.333-4.267-42.667-4.267-64 0-8.533 4.267-8.533 4.267-8.533 12.8 0 21.333-4.267 46.933-12.8 68.267-12.8 29.867-34.133 55.467-64 72.533-55.467 38.4-136.533 34.133-183.467-8.533-42.667-34.133-64-76.8-59.733-128 0-59.733 29.867-106.667 85.333-136.533s115.2-25.6 170.667 12.8c12.8 8.533 21.333 17.067 34.133 29.867 0 8.533 8.533 21.333 17.067 38.4zM307.2 657.067c-64 0-115.2 51.2-115.2 110.933 0 64 46.933 115.2 110.933 115.2s115.2-46.933 115.2-110.933c4.267-64-46.933-115.2-110.933-115.2zM712.533 657.067c-64 0-115.2 51.2-115.2 110.933 0 64 46.933 115.2 110.933 115.2 59.733 0 115.2-46.933 115.2-110.933 0-59.733-46.933-115.2-110.933-115.2z","M1024 550.4c-341.333 0-682.667 0-1024 0 0 0 0 0 0 0 17.067-8.533 29.867-17.067 46.933-21.333 42.667-12.8 85.333-29.867 132.267-42.667 34.133-8.533 68.267-17.067 102.4-21.333 89.6-17.067 183.467-21.333 277.333-17.067 55.467 4.267 110.933 8.533 166.4 17.067 38.4 4.267 72.533 12.8 110.933 21.333s72.533 21.333 110.933 34.133c21.333 4.267 51.2 17.067 76.8 29.867 0 0 0 0 0 0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["anonymous"],"grid":0},"attrs":[{},{},{}],"properties":{"order":290,"id":11,"name":"anonymous","prevSize":32,"code":59659},"setIdx":0,"setId":2,"iconIdx":12},{"icon":{"paths":["M0 256h256v-256h-256v256zM384 1024h256v-256h-256v256zM0 1024h256v-256h-256v256zM0 640h256v-256h-256v256zM384 640h256v-256h-256v256zM768 0v256h256v-256h-256zM384 256h256v-256h-256v256zM768 640h256v-256h-256v256zM768 1024h256v-256h-256v256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["apps"],"grid":0},"attrs":[{}],"properties":{"order":291,"id":12,"name":"apps","prevSize":32,"code":59660},"setIdx":0,"setId":2,"iconIdx":13},{"icon":{"paths":["M613.973 397.227c-28.16 0-56.32 0-85.333 0-35.84 0-71.253 0-107.093 0h-13.653c-10.24 0-12.373 1.28-12.373 12.373v207.36c0 4.267 0 5.973 2.133 8.107s4.267 2.133 8.96 2.133h207.36c10.24 0 11.52-2.133 11.52-11.52 0-68.693 0-137.813 0-206.507 0.853-10.667-1.28-11.947-11.52-11.947zM570.027 517.547v52.053h-4.267c-8.96 0-17.92 0-26.88 0h-42.24c-13.227 0-26.88 0-39.68 0h-2.56l-0.853-2.56c0-37.973 0-74.24 0-111.36v-2.56h3.413c43.947 0 78.080 0 109.653 0h2.133l1.28 2.133c0 0 0 0.853 0 1.28 0 21.333 0 40.96 0 61.013z","M834.987 911.787l177.067-306.773c2.133-3.413 4.267-6.827 5.973-11.093l5.547-9.813-124.587-72.107 125.013-72.107-2.56-5.547c-0.853-2.133-2.133-3.413-2.56-5.547l-180.48-314.453c-2.56-5.547-5.547-7.68-7.68-8.107-2.133-0.853-5.547 0.853-10.24 3.413l-31.573 17.92c-26.027 14.933-51.627 29.44-77.653 44.8l-4.693 3.413v-132.693c0-4.693 0-7.68-2.133-9.813s-4.267-2.133-9.813-2.133h-363.52c-0.853 0-2.133 0-3.413 0-3.413 0-5.547 0.853-7.68 2.133-1.28 1.28-2.133 4.267-2.133 6.827 0 1.28 0 2.56 0 4.267v27.307c0 32.853 0 65.707 0 98.987v4.693l-121.173-69.973-3.413-0.853-2.133 2.56c-0.853 0.853-1.28 1.28-2.133 2.133l-183.467 316.587c-6.827 11.52-5.973 13.653 5.547 20.48l112.64 65.707-70.827 39.68c-15.787 8.96-30.72 17.92-46.507 26.88-2.56 1.28-5.547 3.413-5.973 6.827-0.853 2.133 0 4.693 2.133 7.68 0.853 1.28 1.28 2.133 2.133 3.413l177.92 308.907c2.133 4.267 4.693 8.107 8.107 12.373l2.133 2.133 124.16-71.253v17.067c0 11.093 0 21.333 0 31.573l-0.853 83.2c0 10.24 1.28 11.52 11.093 11.52h17.067c11.093 0 21.333 0.853 32.427 0.853h309.76c16.64 0 17.92-1.28 17.92-18.347v-125.44l4.267 2.133c19.2 11.093 38.4 21.76 57.173 32.853l13.227 7.68c14.507 8.107 29.013 16.64 43.093 24.747 1.28 0.853 4.693 2.56 7.68 1.28 1.707-0 3.413-1.28 5.12-5.973zM808.96 843.093l-2.133-1.28-155.733-90.027-1.28 3.413c-2.133 4.267-2.133 7.68-1.28 11.093v2.133c0 43.947 0 87.893 0 132.693v28.16c0 1.28 0 2.56 0 4.693v2.56h-274.773v-4.693c0-12.373 0-24.747 0-36.267l0.853-143.36-4.693 2.133c-13.227 5.547-23.893 12.373-35.84 19.2-5.973 3.413-12.373 6.827-17.92 10.24-11.093 5.973-21.76 12.373-34.133 20.053l-68.693 39.68-136.533-237.653 100.267-57.6 61.867-35.84-44.8-25.6-118.187-68.693 2.133-4.267 131.84-227.413c0.853-1.28 1.28-2.133 2.133-3.413l1.28-2.133 3.413 1.28c8.96 5.547 18.347 11.093 27.307 16.64l119.467 69.547c2.133 1.28 4.693 2.56 8.107 0.853l2.133-1.28c1.28-2.133 1.28-4.693 1.28-8.107 0-5.973 0-11.52 0-17.067s0-10.24 0-15.787l0.853-138.667h4.267c14.507 0 29.013 0 42.667 0.853h2.133c15.787 0.853 29.013 0.853 40.533 0.853 39.68 0 78.080 0 124.16 0h55.040c0.853 0 1.28 0 2.133 0h2.133v186.027l162.133-92.587 136.533 237.653-161.28 92.587 160.853 92.16-1.28 2.133-136.96 235.093z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["artificial"],"grid":0},"attrs":[{},{}],"properties":{"order":292,"id":13,"name":"artificial","prevSize":32,"code":59661},"setIdx":0,"setId":2,"iconIdx":14},{"icon":{"paths":["M960 93.867c-42.667-42.667-98.133-64-157.867-64s-115.2 21.333-157.867 64l-593.067 593.067c-34.133 34.133-55.467 85.333-51.2 136.533 0 42.667 17.067 81.067 46.933 110.933 34.133 38.4 81.067 59.733 132.267 59.733 46.933 0 93.867-17.067 128-51.2l541.867-546.133c25.6-25.6 42.667-64 42.667-98.133s-12.8-68.267-38.4-93.867c-25.6-25.6-59.733-38.4-98.133-38.4-34.133 0-72.533 17.067-98.133 42.667l-354.133 354.133c-4.267-0-4.267 4.267-4.267 12.8s4.267 12.8 8.533 17.067 25.6 8.533 34.133 0l354.133-354.133c12.8-17.067 38.4-25.6 59.733-25.6 25.6 0 51.2 12.8 68.267 34.133 8.533 12.8 17.067 25.6 17.067 42.667 4.267 25.6-4.267 55.467-25.6 72.533l-541.867 541.867c-25.6 25.6-55.467 38.4-93.867 38.4-34.133 0-68.267-12.8-93.867-38.4s-38.4-59.733-38.4-93.867c0-34.133 12.8-68.267 38.4-93.867l588.8-584.533c34.133-34.133 76.8-51.2 123.733-51.2s89.6 17.067 123.733 51.2c34.133 34.133 51.2 76.8 51.2 123.733s-17.067 89.6-51.2 123.733l-401.067 401.067c-4.267 4.267-8.533 12.8-8.533 17.067 0 8.533 4.267 12.8 8.533 17.067 8.533 8.533 25.6 8.533 34.133 0l401.067-401.067c89.6-89.6 89.6-230.4 4.267-320z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["attach"],"grid":0},"attrs":[{}],"properties":{"order":293,"id":14,"name":"attach","prevSize":32,"code":59662},"setIdx":0,"setId":2,"iconIdx":15},{"icon":{"paths":["M0 102.4h102.4v819.2h-102.4v-819.2zM307.2 102.4h153.6v819.2h-153.6v-819.2zM768 102.4h51.2v819.2h-51.2v-819.2zM204.8 102.4h51.2v819.2h-51.2v-819.2zM921.6 102.4h102.4v819.2h-102.4v-819.2zM563.2 102.4h102.4v819.2h-102.4v-819.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["barcode"],"grid":0},"attrs":[{}],"properties":{"order":295,"id":15,"name":"barcode","prevSize":32,"code":59663},"setIdx":0,"setId":2,"iconIdx":16},{"icon":{"paths":["M235.093 920.32l-18.773-321.28c0-18.773 12.8-34.56 31.573-37.973 18.773 0 34.56 12.8 37.973 31.573l15.787 317.867c0 18.773-12.8 34.56-31.573 37.973h-2.987c-16.213 2.987-32-12.8-32-28.16zM389.12 948.48c18.773 0 34.56-15.787 34.56-34.56v-324.267c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v324.267c-0 21.76 15.787 34.56 34.56 34.56zM512 945.493c18.773 0 34.56-15.787 34.56-34.56v-321.28c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v321.28c0 18.773 15.787 34.56 34.56 34.56zM760.747 945.493v0c18.773 0 34.56-15.787 34.56-31.573 6.4-148.053 9.387-311.467 9.387-314.88 0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56c0 6.4-6.4 226.56-9.387 311.467-0 15.787 15.787 34.987 34.56 34.987zM634.88 945.493c18.773 0 34.56-15.787 34.56-34.56v-321.28c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v321.28c-0 18.773 15.36 34.56 34.56 34.56zM1015.893 419.413v78.507c0 18.773-15.787 34.56-34.56 34.56h-28.16l-63.147 462.933c-2.987 15.787-15.787 28.16-34.56 28.16h-686.507c-15.787 0-31.573-12.8-34.56-28.16l-63.147-465.493h-28.16c-18.773 0-34.56-15.787-34.56-34.56v-78.933c0-18.773 15.787-34.56 34.56-34.56h169.813l138.667-286.293c-2.987-9.387-6.4-22.187-6.4-34.56 6.4-37.973 40.96-66.133 78.507-59.733s66.133 40.96 59.733 78.507-40.96 66.133-78.507 59.733v0l-110.080 245.333h431.36l-110.080-245.76c-37.973 6.4-72.533-22.187-78.507-59.733s22.187-72.533 59.733-78.507c37.973-6.4 72.533 22.187 78.507 59.733 2.987 12.8 0 25.173-6.4 34.56l138.667 286.293h169.813c22.187 3.413 37.973 19.2 37.973 37.973zM880.213 529.92h-736.427l53.333 427.947h629.76l53.333-427.947z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["basket"],"grid":0},"attrs":[{}],"properties":{"order":296,"id":16,"name":"basket","prevSize":32,"code":59664},"setIdx":0,"setId":2,"iconIdx":17},{"icon":{"paths":["M197.973 454.827c-15.787 2.987-25.6 15.787-25.6 32l15.787 261.973c0 12.8 12.8 25.6 25.6 22.187h2.987c15.787-2.987 25.6-15.787 25.6-32l-12.8-258.987c-2.56-12.373-18.773-25.173-31.573-25.173z","M284.587 480.427v261.973c0 19.2 12.8 28.587 28.587 28.587s28.587-12.8 28.587-28.587v-261.973c0-15.787-12.8-28.587-28.587-28.587s-28.587 12.8-28.587 28.587z","M359.68 777.813h-203.093l-44.8-348.16h384.427c61.44-47.36 137.813-75.52 220.587-75.52 39.68 0 78.080 6.4 113.92 18.347v-35.84c0-15.787-12.8-28.587-32-32h-140.8l-115.2-226.987c6.4-6.4 6.4-19.2 6.4-28.587-6.4-32-34.987-54.187-64-47.787-32 6.4-54.187 32-47.787 64s34.987 54.187 64 47.787l89.6 197.973h-354.56l89.6-197.973c32 6.4 60.587-19.2 64-47.787 2.987-28.587-19.2-57.6-47.787-64-32-6.4-60.587 19.2-64 47.787 0 9.387 2.987 19.2 6.4 28.587l-115.2 233.387h-140.8c-15.787 0-28.587 12.8-28.587 28.587v64c0 15.787 12.8 28.587 28.587 28.587h22.613l51.2 377.173c2.987 12.8 15.787 22.187 28.587 22.187h242.347c-5.973-17.067-10.667-35.413-13.653-53.76z","M444.16 478.293v-0.853c0-12.8-12.8-25.6-28.587-25.6s-28.587 12.8-28.587 28.587v87.040c14.507-32.853 34.133-62.72 57.173-89.173z","M716.8 409.6c-169.813 0-307.2 137.387-307.2 307.2s137.387 307.2 307.2 307.2c169.813 0 307.2-137.387 307.2-307.2s-137.387-307.2-307.2-307.2zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h135.68v0.427z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{}],"125525525519595951":[{},{},{},{},{}]},"tags":["basketadd"],"grid":0},"attrs":[{},{},{},{},{}],"properties":{"order":297,"id":17,"name":"basketadd","prevSize":32,"code":59665},"setIdx":0,"setId":2,"iconIdx":18},{"icon":{"paths":["M238.933 955.733c0 0 17.067 68.267 93.867 68.267h354.133c76.8 0 93.867-68.267 93.867-68.267l68.267-682.667h-678.4l68.267 682.667zM648.533 375.467c0-17.067 17.067-34.133 34.133-34.133s34.133 17.067 34.133 34.133l-34.133 512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133l34.133-512zM477.867 375.467c0-17.067 17.067-34.133 34.133-34.133s34.133 17.067 34.133 34.133v512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133c0 0 0-512 0-512zM341.333 341.333c17.067 0 34.133 17.067 34.133 34.133l34.133 512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133l-34.133-512c0-17.067 17.067-34.133 34.133-34.133zM832 136.533h-149.333v-68.267c0-51.2-17.067-68.267-68.267-68.267h-204.8c-46.933 0-68.267 21.333-68.267 68.267v68.267h-149.333c-29.867 0-55.467 21.333-55.467 51.2s25.6 51.2 55.467 51.2h640c29.867 0 55.467-21.333 55.467-51.2s-25.6-51.2-55.467-51.2zM614.4 136.533h-204.8v-68.267h204.8l0 68.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["bin"],"grid":0},"attrs":[{}],"properties":{"order":298,"id":18,"name":"bin","prevSize":32,"code":59667},"setIdx":0,"setId":2,"iconIdx":19},{"icon":{"paths":["M819.2 529.067c-12.8-8.533-25.6-12.8-38.4-17.067 12.8-4.267 25.6-12.8 38.4-17.067 89.6-51.2 136.533-140.8 136.533-238.933-81.067-46.933-187.733-51.2-273.067 0-12.8 8.533-25.6 17.067-34.133 25.6 4.267-12.8 4.267-29.867 4.267-42.667 0-102.4-55.467-192-136.533-238.933-81.067 46.933-136.533 136.533-136.533 238.933 0 12.8 0 29.867 4.267 42.667-17.067-8.533-29.867-17.067-42.667-25.6-85.333-51.2-192-46.933-273.067 0 0 93.867 46.933 187.733 136.533 238.933 12.8 8.533 25.6 12.8 38.4 17.067-12.8 4.267-25.6 12.8-38.4 17.067-89.6 51.2-136.533 140.8-136.533 238.933 81.067 46.933 187.733 51.2 273.067 0 12.8-8.533 25.6-17.067 34.133-25.6-4.267 12.8-4.267 29.867-4.267 42.667 0 102.4 55.467 192 136.533 238.933 81.067-46.933 136.533-136.533 136.533-238.933 0-12.8 0-29.867-4.267-42.667 12.8 8.533 21.333 17.067 34.133 25.6 89.6 51.2 192 46.933 273.067 0 8.533-93.867-42.667-187.733-128-238.933zM512 695.467c-102.4 0-183.467-81.067-183.467-183.467s81.067-183.467 183.467-183.467 183.467 81.067 183.467 183.467-81.067 183.467-183.467 183.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["botanical"],"grid":0},"attrs":[{}],"properties":{"order":299,"id":19,"name":"botanical","prevSize":32,"code":59668},"setIdx":0,"setId":2,"iconIdx":20},{"icon":{"paths":["M827.733 746.667l-17.067 140.8v4.267c0 81.067-115.2 132.267-298.667 132.267-217.6 0-320-68.267-320-132.267l-59.733-622.933c81.067 55.467 217.6 93.867 379.733 93.867 157.867 0 294.4-34.133 375.467-89.6l-51.2 401.067-8.533 72.533zM891.733 145.067c0 81.067-170.667 145.067-379.733 145.067s-379.733-68.267-379.733-145.067 170.667-145.067 379.733-145.067 379.733 64 379.733 145.067z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[],"125525525519595951":[]},"tags":["bucket"],"grid":0},"attrs":[],"properties":{"order":300,"id":20,"name":"bucket","prevSize":32,"code":59669},"setIdx":0,"setId":2,"iconIdx":21},{"icon":{"paths":["M774.4 892.8c0 19.2-16 38.4-38.4 38.4s-38.4-16-38.4-38.4 16-38.4 38.4-38.4 38.4 19.2 38.4 38.4zM262.4 857.6c-19.2 0-38.4 16-38.4 38.4s16 38.4 38.4 38.4c19.2 0 38.4-16 38.4-38.4s-16-38.4-38.4-38.4zM809.6 784c0 0 0 0 0 0 35.2 22.4 57.6 64 57.6 108.8 0 70.4-57.6 131.2-131.2 131.2-70.4 0-131.2-57.6-131.2-131.2 0 0 0 3.2 0 3.2-64 3.2-137.6 9.6-214.4 12.8 0 0 0 0 0 0-6.4 64-64 115.2-128 115.2-70.4 0-131.2-57.6-131.2-131.2 0-54.4 32-99.2 80-121.6 0 0 0 0 0 0-3.2-89.6 0-198.4 16-275.2 0 0 73.6-73.6 243.2-86.4 6.4 16 19.2 28.8 38.4 28.8s32-12.8 38.4-28.8c12.8 0 25.6 3.2 38.4 3.2v249.6c0 0 48 60.8 220.8 67.2zM345.6 892.8c0-44.8-35.2-80-80-80s-80 35.2-80 80c0 44.8 35.2 80 80 80 44.8 3.2 80-35.2 80-80zM416 505.6c0-9.6-6.4-16-16-16s-16 6.4-16 16c3.2 48-6.4 80-28.8 99.2-28.8 25.6-73.6 12.8-73.6 12.8-9.6-3.2-16 3.2-19.2 12.8s3.2 16 12.8 19.2c0 0 12.8 3.2 32 3.2s48-3.2 70.4-22.4c25.6-25.6 38.4-67.2 38.4-124.8zM819.2 892.8c0-44.8-35.2-80-80-80s-80 35.2-80 80c0 44.8 35.2 80 80 80 41.6 3.2 80-35.2 80-80zM886.4 153.6c-118.4-102.4-243.2-156.8-377.6-153.6-214.4 3.2-368 150.4-374.4 156.8-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 140.8-137.6 332.8-137.6 115.2 0 230.4 44.8 336 140.8 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 12.8-12.8 12.8-32 0-44.8zM806.4 240c-92.8-83.2-192-121.6-297.6-121.6-169.6 3.2-291.2 118.4-294.4 121.6-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 108.8-102.4 252.8-105.6 0 0 3.2 0 3.2 0 86.4 0 172.8 35.2 252.8 105.6 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 12.8-9.6 12.8-28.8 0-38.4zM732.8 323.2c-70.4-60.8-144-92.8-220.8-89.6-128 0-217.6 89.6-220.8 92.8-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 76.8-73.6 179.2-73.6 64 0 124.8 25.6 182.4 76.8 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 9.6-12.8 9.6-32-3.2-44.8zM512 374.4c-16 0-28.8 12.8-28.8 28.8s12.8 28.8 28.8 28.8c16 0 28.8-12.8 28.8-28.8-3.2-16-16-28.8-28.8-28.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["buscaman"],"grid":0},"attrs":[{}],"properties":{"order":301,"id":21,"name":"buscaman","prevSize":32,"code":59670},"setIdx":0,"setId":2,"iconIdx":22},{"icon":{"paths":["M520.533 81.067c-34.133 0-55.467 25.6-55.467 55.467s25.6 55.467 55.467 55.467 55.467-25.6 55.467-55.467-21.333-55.467-55.467-55.467zM520.533 153.6c-12.8 0-17.067-8.533-17.067-17.067s8.533-17.067 17.067-17.067 17.067 8.533 17.067 17.067-4.267 17.067-17.067 17.067z","M588.8 712.533l-4.267-12.8v-4.267l-17.067-59.733h-273.067v89.6h298.667z","M294.4 273.067h452.267v89.6h-452.267v-89.6z","M571.733 529.067c17.067-12.8 38.4-17.067 59.733-8.533l64 25.6h55.467v-89.6h-456.533v89.6h264.533c4.267-8.533 8.533-12.8 12.8-17.067z","M643.985 703.872l95.27-85.478 202.299 225.473-95.27 85.478-202.299-225.473z","M855.196 944.408l95.283-85.466 22.791 25.409-95.283 85.466-22.791-25.409z","M1015.467 930.133l-34.133-38.4-93.867 85.333 34.133 38.4c4.267 4.267 12.8 8.533 17.067 8.533 8.533 0 12.8 0 17.067-8.533l59.733-51.2c8.533-8.533 12.8-25.6 0-34.133z","M614.4 558.933c-4.267 0-8.533 0-12.8 4.267-4.267 0-4.267 8.533-4.267 12.8l34.133 119.467 93.867-85.333-110.933-51.2z","M729.6 866.133h-524.8c-29.867 0-51.2-25.6-51.2-51.2v-635.733c0-25.6 21.333-51.2 51.2-51.2h213.333l8.533-25.6c12.8-38.4 51.2-64 93.867-64s76.8 25.6 93.867 64l8.533 25.6h213.333c29.867 0 51.2 25.6 51.2 51.2v541.867l38.4 42.667v-584.533c0-46.933-42.667-89.6-89.6-89.6h-187.733c-17.067-51.2-68.267-89.6-128-89.6s-110.933 38.4-128 89.6h-187.733c-46.933 0-89.6 42.667-89.6 89.6v635.733c0 46.933 42.667 89.6 89.6 89.6h554.667l-29.867-38.4z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{}]},"tags":["buyrequest"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":302,"id":22,"name":"buyrequest","prevSize":32,"code":59671},"setIdx":0,"setId":2,"iconIdx":23},{"icon":{"paths":["M830.72 10.667h-727.040c-56.747 0-103.68 46.933-103.68 104.107v727.040c0 57.173 46.933 103.68 103.68 103.68h727.040c57.173 0 103.68-46.933 103.68-103.68v-727.040c0.427-57.173-46.507-104.107-103.68-104.107zM830.72 841.813h-727.040v-727.040h727.040v727.040z","M168.96 256h259.84v78.080h-259.84v-78.080z","M259.84 789.76h77.653v-103.68h104.107v-78.080h-104.107v-103.68h-77.653v103.68h-104.107v78.080h104.107z","M576 423.68l72.96-73.387 73.387 73.387 55.040-55.040-73.387-73.813 73.387-73.387-55.040-55.040-73.387 73.387-72.96-73.387-55.040 55.040 72.96 73.387-72.96 73.813z","M1024 728.32c0 157.409-127.605 285.013-285.013 285.013s-285.013-127.605-285.013-285.013c0-157.409 127.605-285.013 285.013-285.013s285.013 127.605 285.013 285.013z","M925.867 632.32c-1.28-4.267-3.84-7.68-7.68-10.24l-168.107-96.853c-5.12-2.987-11.52-2.987-16.64 0l-168.107 96.853c-5.12 2.987-8.533 8.533-8.533 14.507v194.133c0 5.973 2.987 11.52 8.533 14.507l168.107 96.853c2.56 1.28 5.547 2.133 8.533 2.133 0.853 0 1.707 0 2.56 0 1.28 0 2.56-0.427 3.84-0.853 0.427 0 0.853-0.427 1.28-0.427s0.427 0 0.853-0.427v0c0 0 0 0 0 0l168.107-96.853c5.12-2.987 8.533-8.533 8.533-14.507v-194.133c-0.853-1.707-0.853-2.987-1.28-4.693zM606.72 637.013l134.827-77.653 134.827 77.653-134.4 77.653-126.293-72.96-8.96-4.693zM590.080 665.6l134.827 77.653v155.733l-134.827-77.653v-155.733zM758.187 898.987v-155.733l134.827-77.653v155.733l-134.827 77.653z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":3}],"125525525519595951":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":2}]},"tags":["calc_volum"],"grid":0},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":303,"id":23,"name":"calc_volum","prevSize":32,"codes":[59672,59673,59676,59677,59678,59679],"code":59672},"setIdx":0,"setId":2,"iconIdx":24},{"icon":{"paths":["M883.2 93.867h-46.933v-93.867h-93.867v93.867h-465.067v-93.867h-89.6v93.867h-46.933c-51.2 0-93.867 42.667-93.867 93.867v746.667c0 51.2 42.667 93.867 93.867 93.867h746.667c51.2 0 93.867-42.667 93.867-93.867v-746.667c-4.267-51.2-46.933-93.867-98.133-93.867zM883.2 930.133h-742.4v-605.867h746.667v605.867z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["calendar"],"grid":0},"attrs":[{}],"properties":{"order":304,"id":24,"name":"calendar","prevSize":32,"code":59680},"setIdx":0,"setId":2,"iconIdx":25},{"icon":{"paths":["M60.8 355.2h64v310.4h-64v-310.4zM979.2 0h-873.6c-25.6 0-44.8 19.2-44.8 44.8v176h64v-156.8h835.2v896h-835.2v-156.8h-64v176c0 25.6 19.2 44.8 44.8 44.8h873.6c25.6 0 44.8-19.2 44.8-44.8v-934.4c0-25.6-19.2-44.8-44.8-44.8zM230.4 272c0-9.6-9.6-19.2-19.2-19.2h-192c-9.6 0-19.2 9.6-19.2 19.2v35.2c0 9.6 9.6 19.2 19.2 19.2h195.2c9.6 0 19.2-9.6 19.2-19.2v-35.2zM230.4 720c0-9.6-9.6-19.2-19.2-19.2h-192c-9.6 0-19.2 9.6-19.2 19.2v35.2c0 9.6 9.6 19.2 19.2 19.2h195.2c9.6 0 19.2-9.6 19.2-19.2v-35.2zM876.8 217.6h-275.2v275.2h275.2v-275.2zM876.8 531.2h-275.2v275.2h275.2v-275.2zM528 249.6h-211.2v211.2h211.2v-211.2zM560 217.6v275.2h-275.2v-275.2h275.2zM560 531.2h-275.2v275.2h275.2v-275.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["catalog"],"grid":0},"attrs":[{}],"properties":{"order":305,"id":25,"name":"catalog","prevSize":32,"code":59681},"setIdx":0,"setId":2,"iconIdx":26},{"icon":{"paths":["M694.4 966.4c12.8-28.8 38.4-51.2 73.6-51.2v-57.6c-64 0-118.4 48-131.2 108.8h-54.4c9.6-96 89.6-166.4 185.6-166.4v-57.6c-76.8 0-144 35.2-188.8 92.8v-262.4c57.6-6.4 115.2-35.2 156.8-80 51.2-51.2 76.8-118.4 76.8-192v-28.8h-28.8c-70.4 0-134.4 28.8-185.6 80-6.4 9.6-16 16-22.4 25.6v-204.8c0-48-16-89.6-48-124.8-32-32-73.6-51.2-118.4-51.2-83.2 3.2-153.6 67.2-166.4 150.4-86.4 12.8-153.6 89.6-153.6 185.6v198.4l112-83.2 67.2 67.2 73.6-67.2 108.8 86.4v-201.6c0-92.8-64-169.6-147.2-182.4 12.8-51.2 57.6-89.6 108.8-89.6 28.8 0 57.6 12.8 80 35.2s32 51.2 32 83.2v691.2c-28.8-28.8-70.4-44.8-115.2-44.8v57.6c54.4 0 99.2 38.4 112 89.6h-342.4v51.2h755.2v-57.6h-240zM640 393.6c32-32 70.4-54.4 115.2-60.8-6.4 44.8-28.8 86.4-57.6 118.4-32 32-70.4 54.4-115.2 60.8 3.2-44.8 25.6-86.4 57.6-118.4zM393.6 332.8v83.2l-51.2-41.6-70.4 60.8-60.8-60.8-64 44.8v-86.4c0-70.4 54.4-128 124.8-128 64 0 121.6 57.6 121.6 128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["claims"],"grid":0},"attrs":[{}],"properties":{"order":306,"id":26,"name":"claims","prevSize":32,"code":59682},"setIdx":0,"setId":2,"iconIdx":27},{"icon":{"paths":["M608 204.8c0 113.108-90.259 204.8-201.6 204.8s-201.6-91.692-201.6-204.8c0-113.108 90.259-204.8 201.6-204.8s201.6 91.692 201.6 204.8z","M342.4 633.6c0-67.2 54.4-121.6 121.6-121.6h198.4c-83.2-35.2-185.6-51.2-252.8-51.2-137.6 0-409.6 67.2-409.6 204.8v144h342.4v-176z","M912 969.6c32 0 57.6-25.6 57.6-57.6v-281.6c0-32-25.6-57.6-57.6-57.6h-451.2c-32 0-57.6 25.6-57.6 57.6v281.6c0 32 25.6 57.6 57.6 57.6h-112v57.6h675.2v-57.6h-112zM460.8 633.6h451.2v281.6h-451.2v-281.6z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["client"],"grid":0},"attrs":[{},{},{}],"properties":{"order":307,"id":27,"name":"client","prevSize":32,"code":59683},"setIdx":0,"setId":2,"iconIdx":28},{"icon":{"paths":["M554.667 691.2v-64h-213.333v-115.2h213.333v-136.533l-204.8-204.8h-281.6c-38.4 0-68.267 29.867-68.267 68.267v546.133c0 38.4 29.867 68.267 68.267 68.267h418.133c38.4 0 68.267-29.867 68.267-68.267v0-93.867zM311.467 221.867l192 187.733h-192v-187.733z","M814.933 170.667h-277.333c-29.867 0-55.467 17.067-64 42.667l123.733 119.467 17.067 17.067v162.133h68.267v-85.333l247.467 145.067-247.467 140.8v-85.333h-72.533v153.6c0 25.6-8.533 46.933-21.333 68.267h362.667c38.4 0 68.267-29.867 68.267-68.267v-405.333l-204.8-204.8zM780.8 409.6v-187.733l192 187.733h-192z","M371.2 597.333h341.333v68.267l162.133-93.867-162.133-93.867v64h-341.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["clone"],"grid":0},"attrs":[{},{},{}],"properties":{"order":309,"id":28,"name":"clone","prevSize":32,"code":59684},"setIdx":0,"setId":2,"iconIdx":29},{"icon":{"paths":["M0 0h256v256h-256v-256z","M0 768h256v256h-256v-256z","M0 384h256v256h-256v-256z","M913.067 448v132.267h-204.8v204.8h-136.533v-204.8h-204.8v-132.267h204.8v-204.8h136.533v204.8z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}]},"tags":["columnadd"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":310,"id":29,"name":"columnadd","prevSize":32,"code":59685},"setIdx":0,"setId":2,"iconIdx":30},{"icon":{"paths":["M0 0h256v256h-256v-256z","M0 768h256v256h-256v-256z","M0 384h256v256h-256v-256z","M785.067 273.067l93.867 98.133-140.8 140.8 140.8 145.067-93.867 98.133-145.067-145.067-145.067 145.067-93.867-98.133 140.8-145.067-140.8-140.8 93.867-98.133 145.067 145.067z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}]},"tags":["columndelete"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":311,"id":30,"name":"columndelete","prevSize":32,"code":59686},"setIdx":0,"setId":2,"iconIdx":31},{"icon":{"paths":["M490.667 302.933c-4.267 8.533-4.267 25.6-4.267 42.667v140.8h-140.8c-17.067 0-25.6 0-34.133-4.267v0l17.067-25.6c12.8-12.8 21.333-29.867 17.067-51.2 0-25.6-12.8-51.2-29.867-68.267-17.067-12.8-42.667-21.333-72.533-21.333-25.6 0-51.2 8.533-72.533 25.6s-29.867 42.667-29.867 68.267c0 17.067 4.267 34.133 17.067 51.2l17.067 25.6c-4.267 0-17.067 4.267-34.133 4.267v0h-140.8v-490.667h486.4v145.067c0 21.333 0 34.133 4.267 42.667 0 12.8 8.533 25.6 21.333 29.867 4.267 4.267 12.8 4.267 21.333 4.267v0c4.267 0 17.067 0 25.6-8.533l29.867-21.333c8.533-4.267 17.067-8.533 25.6-8.533 12.8 0 21.333 4.267 29.867 17.067s12.8 25.6 12.8 42.667-4.267 29.867-12.8 42.667c-8.533 8.533-21.333 17.067-29.867 17.067s-17.067-4.267-25.6-8.533l-29.867-21.333c-8.533-4.267-21.333-8.533-25.6-8.533-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 34.133zM1019.733 345.6c0-8.533 0-38.4-8.533-42.667v0c-4.267 0-4.267 0-8.533 0l-29.867 21.333c-12.8 8.533-25.6 17.067-42.667 17.067-46.933 0-85.333-42.667-85.333-93.867s38.4-93.867 85.333-93.867c17.067 0 34.133 4.267 46.933 17.067l29.867 21.333c0 0 4.267 0 8.533 0 8.533-4.267 8.533-34.133 8.533-42.667v-149.333h-494.933v145.067c0 17.067 0 25.6 4.267 34.133v0 0l25.6-17.067c12.8-12.8 34.133-17.067 51.2-17.067 25.6 0 51.2 12.8 68.267 29.867 17.067 21.333 25.6 46.933 25.6 72.533s-8.533 51.2-25.6 72.533-42.667 29.867-68.267 29.867c-17.067 0-34.133-4.267-51.2-17.067l-25.6-17.067c0 4.267-4.267 17.067-4.267 34.133v140.8h145.067c21.333 0 34.133 0 42.667 4.267 12.8 4.267 25.6 12.8 29.867 21.333 4.267 4.267 4.267 12.8 4.267 21.333s0 17.067-8.533 25.6l-21.333 29.867c-4.267 8.533-8.533 17.067-8.533 25.6 0 12.8 4.267 21.333 17.067 29.867s25.6 12.8 42.667 12.8 29.867-4.267 42.667-12.8c8.533-8.533 17.067-21.333 17.067-29.867s-4.267-17.067-8.533-25.6l-12.8-29.867c-8.533-12.8-8.533-21.333-8.533-25.6 0-8.533 0-12.8 4.267-21.333s17.067-17.067 29.867-21.333c8.533-4.267 25.6-4.267 42.667-4.267h140.8v-145.067zM874.667 1019.733c25.6 0 115.2 4.267 149.333 4.267v-490.667h-140.8c-17.067 0-25.6 0-34.133 4.267v0 0l17.067 25.6c12.8 12.8 17.067 34.133 17.067 51.2 0 25.6-12.8 51.2-29.867 68.267-21.333 17.067-46.933 25.6-72.533 25.6s-51.2-8.533-72.533-25.6c-21.333-17.067-29.867-42.667-29.867-68.267 0-17.067 4.267-34.133 17.067-51.2l17.067-29.867c-4.267 0-17.067-4.267-34.133-4.267h-149.333v140.8c0 21.333 0 34.133-4.267 42.667-4.267 12.8-12.8 25.6-21.333 29.867-4.267 4.267-12.8 4.267-21.333 4.267s-17.067 0-25.6-8.533l-29.867-12.8c-8.533-4.267-17.067-8.533-25.6-8.533-12.8 0-21.333 4.267-29.867 17.067s-12.8 25.6-12.8 42.667 4.267 29.867 12.8 42.667c8.533 8.533 21.333 17.067 29.867 17.067s17.067-4.267 25.6-8.533l29.867-21.333c8.533-4.267 17.067-8.533 25.6-8.533v0c8.533 0 12.8 0 21.333 4.267 12.8 4.267 17.067 17.067 21.333 29.867 4.267 8.533 4.267 25.6 4.267 42.667v140.8h140.8c8.533 0 38.4 0 42.667-8.533 0-4.267 0-8.533 0-8.533l-21.333-29.867c-8.533-12.8-17.067-29.867-17.067-46.933 0-46.933 42.667-85.333 93.867-85.333s93.867 38.4 93.867 85.333c0 17.067-4.267 34.133-17.067 46.933l-21.333 29.867c0 0-4.267 4.267 0 8.533 12.8 12.8 42.667 12.8 51.2 12.8zM0 533.333v490.667h486.4v-145.067c0-17.067 0-25.6-4.267-34.133v0 0l-25.6 17.067c-12.8 12.8-34.133 17.067-51.2 17.067-25.6 0-51.2-12.8-68.267-29.867-17.067-21.333-25.6-46.933-25.6-72.533s8.533-51.2 25.6-72.533c17.067-21.333 42.667-29.867 68.267-29.867 17.067 0 34.133 4.267 51.2 17.067l29.867 17.067c0-4.267 4.267-17.067 4.267-34.133v-140.8h-145.067c-21.333 0-34.133 0-42.667-4.267-12.8-4.267-25.6-12.8-29.867-21.333-4.267-4.267-4.267-12.8-4.267-21.333s0-17.067 8.533-25.6l21.333-29.867c0-8.533 4.267-17.067 4.267-25.6 0-12.8-4.267-21.333-17.067-29.867s-25.6-12.8-42.667-12.8v0c-17.067 0-29.867 4.267-42.667 12.8-8.533 8.533-12.8 17.067-12.8 29.867 0 8.533 4.267 17.067 8.533 25.6l17.067 29.867c8.533 12.8 8.533 21.333 8.533 25.6 0 8.533 0 12.8-4.267 21.333-4.267 12.8-17.067 17.067-29.867 21.333-8.533 4.267-25.6 4.267-42.667 4.267 0 0-145.067 0-145.067 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["components"],"grid":0},"attrs":[{}],"properties":{"order":312,"id":31,"name":"components","prevSize":32,"code":59687},"setIdx":0,"setId":2,"iconIdx":32},{"icon":{"paths":["M409.6 1024v-349.867h204.8v349.867h256v-563.2h153.6l-512-460.8-512 460.8h153.6v563.2h256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["consignatarios"],"grid":0},"attrs":[{}],"properties":{"order":313,"id":32,"name":"consignatarios","prevSize":32,"code":59688},"setIdx":0,"setId":2,"iconIdx":33},{"icon":{"paths":["M418.133 644.267l-128 123.733 256 256 469.333-469.333-128-128-341.333 341.333z","M546.133 648.533l34.133-34.133h-68.267z","M230.4 832l-59.733-64 153.6-153.6h-68.267v-102.4h426.667l204.8-204.8 85.333 85.333v-187.733c0-55.467-46.933-102.4-102.4-102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h273.067l-196.267-192zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2c0-29.867 21.333-51.2 51.2-51.2zM256 307.2h512v102.4h-512v-102.4z","M665.6 1024h204.8c55.467 0 102.4-46.933 102.4-102.4v-204.8l-307.2 307.2z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}]},"tags":["control"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":314,"id":33,"name":"control","prevSize":32,"code":59689},"setIdx":0,"setId":2,"iconIdx":34},{"icon":{"paths":["M921.6 110.933h-819.2c-55.467 0-102.4 42.667-102.4 98.133v601.6c0 55.467 46.933 102.4 102.4 102.4h819.2c55.467 0 102.4-42.667 102.4-102.4v-601.6c0-55.467-46.933-98.133-102.4-98.133zM921.6 814.933h-819.2v-302.933h819.2v302.933zM921.6 311.467h-819.2v-102.4h819.2v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["credit"],"grid":0},"attrs":[{}],"properties":{"order":315,"id":34,"name":"credit","prevSize":32,"code":59691},"setIdx":0,"setId":2,"iconIdx":35},{"icon":{"paths":["M677.973 1024c-30.72-35.84-61.867-70.827-91.307-107.52-40.96-51.2-80.64-103.253-121.173-154.88-16.64-21.333-21.76-20.48-30.72 4.693-13.227 36.693-25.6 73.387-40.107 109.653-5.12 12.8-13.227 26.88-24.32 34.56-51.627 34.987-104.107 69.12-157.867 100.693-10.667 6.4-30.72 5.547-41.813-0.853-8.107-4.693-12.373-23.893-11.093-35.84 0.853-8.96 11.093-19.627 19.627-25.6 39.253-26.453 78.933-51.627 119.040-76.8 18.347-11.52 30.293-26.027 35.84-47.787 12.373-48.213 27.307-95.573 39.253-143.36 8.533-33.707 26.88-58.88 56.32-77.227 40.533-25.173 80.64-52.053 120.747-78.507 6.4-4.267 10.24-11.52 15.36-17.493-7.253-2.56-14.933-7.253-22.187-6.827-75.52 6.4-151.467 13.227-226.987 20.48-2.133 0-4.693 0.853-6.827 0.853-22.613 1.707-39.253-10.24-40.96-29.867s12.373-33.707 35.413-35.84c45.227-4.267 90.88-8.96 136.107-12.8 65.707-5.547 131.84-10.667 197.547-15.36 26.027-1.707 53.76 21.76 67.413 55.467 9.813 23.893 5.12 46.080-18.347 65.28-49.92 40.107-100.693 78.933-151.040 118.187-23.040 17.92-23.893 23.467-6.4 46.507 58.453 78.080 116.48 156.587 174.933 234.667 27.307 36.693 25.173 50.773-12.373 75.52-5.12 0-9.813 0-14.080 0zM791.893 310.187c-43.093-1.28-76.373 31.573-77.227 75.52-0.853 44.373 29.44 76.8 72.107 77.653 45.227 1.28 77.653-29.44 78.080-73.813 0.427-45.227-29.44-78.080-72.96-79.36zM671.147 222.293c0 72.107-34.133 136.107-87.467 176.64l-235.52 21.76c-72.107-36.693-122.027-111.787-122.027-198.4 0-122.88 99.84-222.293 222.72-222.293 122.453 0 222.293 99.413 222.293 222.293zM592.213 279.467l-50.347-18.347c-2.133 8.533-5.12 16.213-9.813 22.613-5.12 6.4-10.24 11.947-16.213 17.067-5.973 4.267-12.373 8.107-19.2 11.093s-13.653 4.693-20.053 5.547c-17.92 2.987-33.707 0.427-48.64-6.827s-26.88-18.347-36.693-32.853l76.373-12.373 7.253-32.427-97.28 15.787c-1.28-5.547-2.987-11.093-3.84-16.64l-0.853-4.267 99.413-16.213 7.253-32.427-106.667 17.493c0.853-9.387 2.987-17.493 6.4-26.027 3.84-8.533 8.107-16.213 14.080-23.040 5.547-6.827 12.8-12.373 21.333-17.067s17.92-8.107 28.587-9.813c6.827-1.28 13.227-1.707 20.907-1.28s14.507 1.707 21.333 3.84c6.827 2.133 13.653 5.973 20.053 10.24 5.973 4.693 11.947 11.093 17.493 18.773l38.827-37.973c-13.227-17.92-30.293-31.147-52.053-39.253-21.76-8.533-46.080-10.667-73.387-6.4-19.627 2.987-36.267 9.387-51.2 17.92-14.507 8.533-26.88 19.2-37.547 32-10.667 12.373-18.773 26.027-23.893 40.96-5.547 14.507-8.96 29.867-9.813 45.653l-21.76 3.84-7.253 32.427 29.013-4.693 0.427 2.987c1.28 6.827 2.56 12.8 4.267 18.347l-23.467 3.84-8.107 32.427 43.52-7.253c6.827 13.653 15.787 26.027 26.027 36.693 10.24 11.52 22.187 20.48 35.413 27.733 13.227 7.68 27.307 12.8 42.667 15.787s31.573 3.413 47.36 0.853c12.373-2.133 24.32-5.12 35.84-10.667s22.613-11.52 32.853-19.2c10.24-8.107 18.347-16.64 26.027-26.453 6.827-9.387 12.373-20.48 15.36-32.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["deaulter-01"],"grid":0},"attrs":[{}],"properties":{"order":316,"id":35,"name":"defaulter","prevSize":32,"code":59693},"setIdx":0,"setId":2,"iconIdx":36},{"icon":{"paths":["M160.672 874.304h693.248v-639.776c0 0-2.016-234.528-349.696-234.528s-343.552 234.528-343.552 234.528v639.776zM291.328 307.296h170.976v-152.256h102.336v152.256h171.008v102.336h-171.008v356.96h-102.336v-356.96h-170.976v-102.336zM64 898.944v123.456h899.008v-123.456h-899.008z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["deletedTicketCross"],"grid":0},"attrs":[{}],"properties":{"order":317,"id":36,"name":"deletedTicket","prevSize":32,"code":59694},"setIdx":0,"setId":2,"iconIdx":37},{"icon":{"paths":["M354.133 768l-98.133-98.133 157.867-153.6-157.867-157.867 98.133-102.4 157.867 157.867 157.867-153.6 98.133 98.133-157.867 157.867 157.867 153.6-98.133 98.133-157.867-157.867-157.867 157.867zM780.8 452.267l-64 64 59.733 55.467h247.467v-119.467h-243.2zM307.2 516.267l-64-64h-243.2v119.467h251.733l55.467-55.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["deleteline"],"grid":0},"attrs":[{}],"properties":{"order":318,"id":37,"name":"deleteline","prevSize":32,"code":59695},"setIdx":0,"setId":2,"iconIdx":38},{"icon":{"paths":["M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2-0 25.6-25.6 51.2-51.2 51.2z","M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM725.333 277.333c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067zM311.467 362.667c0-46.933 29.867-85.333 59.733-93.867 4.267 0 4.267 0 8.533 0l98.133-12.8v51.2c0 46.933-29.867 85.333-59.733 93.867-4.267 0-4.267 0-8.533 0l-98.133 17.067v-55.467zM311.467 443.733l46.933-8.533c17.067-4.267 29.867 17.067 29.867 38.4l4.267 29.867-51.2 4.267c-17.067 4.267-29.867-12.8-29.867-38.4v-25.6zM149.333 362.667v-51.2l85.333-12.8c34.133-4.267 55.467 25.6 55.467 72.533v51.2l-85.333 12.8c-34.133 0-59.733-29.867-55.467-72.533zM285.867 448v38.4c0 34.133-21.333 64-42.667 68.267h-4.267l-72.533 8.533v-38.4c0-34.133 21.333-64 42.667-68.267h4.267l72.533-8.533z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["delivery"],"grid":0},"attrs":[{},{},{}],"properties":{"order":319,"id":38,"name":"delivery","prevSize":32,"code":59696},"setIdx":0,"setId":2,"iconIdx":39},{"icon":{"paths":["M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM376.32 345.173v28.16h-166.4c-0.853 6.4-1.707 13.227-1.707 20.48 0 6.827 0.427 14.080 1.707 20.48h166.4v28.16h-159.147c9.387 26.027 25.6 46.933 48.64 62.72s49.92 23.467 80.213 23.467c39.68 0 72.533-14.080 99.413-42.24l32 31.573c-15.787 17.92-34.987 32-58.453 40.96-23.040 9.387-48.213 14.080-75.947 14.080-29.013 0-55.893-5.547-80.64-16.213s-45.653-26.027-62.72-46.080c-17.067-19.627-29.013-42.667-36.267-68.693h-56.747v-28.16h52.053c-0.853-8.533-0.853-15.36-0.853-20.48s0.427-11.947 0.853-20.48h-52.053v-28.16h57.173c6.827-26.027 19.2-49.067 36.267-68.693s37.973-34.987 62.72-46.080c24.747-10.667 51.627-16.213 80.64-16.213 27.733 0 53.333 4.693 75.947 14.080 23.040 9.387 42.24 23.040 58.027 40.533l-32 31.573c-26.453-27.733-59.733-41.813-99.413-41.813-30.293 0-57.173 7.68-80.213 23.467s-39.253 36.693-48.64 62.72h159.147zM921.6 430.933h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["deliveryprices"],"grid":0},"attrs":[{},{},{}],"properties":{"order":320,"id":39,"name":"deliveryprices","prevSize":32,"code":59698},"setIdx":0,"setId":2,"iconIdx":40},{"icon":{"paths":["M908.8 115.2v797.867h-793.6v-797.867h793.6zM972.8 0h-921.6c-29.867 0-51.2 21.333-51.2 51.2v921.6c0 21.333 21.333 51.2 51.2 51.2h921.6c21.333 0 51.2-29.867 51.2-51.2v-921.6c0-29.867-29.867-51.2-51.2-51.2zM456.533 226.133h341.333v115.2h-341.333v-115.2zM456.533 456.533h341.333v115.2h-341.333v-115.2zM456.533 682.667h341.333v115.2h-341.333v-115.2zM226.133 226.133h115.2v115.2h-115.2v-115.2zM226.133 456.533h115.2v115.2h-115.2v-115.2zM226.133 682.667h115.2v115.2h-115.2v-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["details"],"grid":0},"attrs":[{}],"properties":{"order":322,"id":40,"name":"details","prevSize":32,"code":59699},"setIdx":0,"setId":2,"iconIdx":41},{"icon":{"paths":["M140.8 439.467v341.333h149.333v-341.333h-149.333zM439.467 439.467v341.333h149.333v-341.333h-149.333zM38.4 1024h942.933v-145.067h-942.933v145.067zM733.867 439.467v341.333h149.333v-341.333h-149.333zM512 0l-473.6 243.2v98.133h942.933v-98.133l-469.333-243.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["dfiscales"],"grid":0},"attrs":[{}],"properties":{"order":323,"id":41,"name":"dfiscales","prevSize":32,"code":59700},"setIdx":0,"setId":2,"iconIdx":42},{"icon":{"paths":["M1012.48 956.587c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52 10.24 0 20.053 3.84 27.733 11.52l945.493 945.067zM938.667 819.2v-37.973c0-87.467-105.813-148.48-220.16-183.040l220.16 221.013zM608 488.107c69.547-35.84 117.333-107.52 117.333-192.427 0-119.893-96-215.893-213.333-215.893-84.053 0-156.16 49.493-190.72 121.6l286.72 286.72zM449.707 569.173c-149.333 16.213-364.373 87.040-364.373 212.053v162.56h738.987l-374.613-374.613z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["Inactivo"],"grid":0},"attrs":[{}],"properties":{"order":324,"id":42,"name":"disabled","prevSize":32,"code":59701},"setIdx":0,"setId":2,"iconIdx":43},{"icon":{"paths":["M614.4 0h-409.6c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h614.4c55.467 0 102.4-46.933 102.4-102.4v-614.4l-307.2-307.2zM716.8 819.2h-409.6v-102.4h409.6v102.4zM716.8 614.4h-409.6v-102.4h409.6v102.4zM563.2 358.4v-281.6l281.6 281.6h-281.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["doc"],"grid":0},"attrs":[{}],"properties":{"order":325,"id":43,"name":"doc","prevSize":32,"code":59702},"setIdx":0,"setId":2,"iconIdx":44},{"icon":{"paths":["M0 631.118l392.882 392.882 265.404-265.404-100.31-100.31-102.4 100.31v-303.020h303.020l-100.31 102.4 100.31 100.31 265.404-265.404-392.882-392.882z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["entry"],"grid":0},"attrs":[{}],"properties":{"order":327,"id":44,"name":"entry","prevSize":32,"code":59703},"setIdx":0,"setId":2,"iconIdx":45},{"icon":{"paths":["M405.333 716.8l81.067 81.067 281.6-285.867-285.867-285.867-76.8 81.067 145.067 149.333h-550.4v115.2h550.4l-145.067 145.067zM908.8 0h-793.6c-64 0-115.2 51.2-115.2 115.2v226.133h115.2v-226.133h797.867v797.867h-797.867v-230.4h-115.2v226.133c0 64 51.2 115.2 115.2 115.2h797.867c64 0 115.2-51.2 115.2-115.2v-793.6c-4.267-64-55.467-115.2-119.467-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["exit"],"grid":0},"attrs":[{}],"properties":{"order":328,"id":45,"name":"exit","prevSize":32,"code":59704},"setIdx":0,"setId":2,"iconIdx":46},{"icon":{"paths":["M512 162.133c-234.667 0-430.933 145.067-512 349.867 81.067 204.8 277.333 349.867 512 349.867s430.933-145.067 512-349.867c-81.067-204.8-277.333-349.867-512-349.867zM512 746.667c-128 0-234.667-102.4-234.667-234.667s106.667-234.667 234.667-234.667 234.667 106.667 234.667 234.667-106.667 234.667-234.667 234.667zM512 371.2c-76.8 0-140.8 64-140.8 140.8s64 140.8 140.8 140.8 140.8-64 140.8-140.8-64-140.8-140.8-140.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["eye"],"grid":0},"attrs":[{}],"properties":{"order":329,"id":46,"name":"eye","prevSize":32,"code":59705},"setIdx":0,"setId":2,"iconIdx":47},{"icon":{"paths":["M811.947 472.32v-172.8c0-79.787-31.147-154.88-87.893-211.627-57.173-56.747-132.267-87.893-212.053-87.893-165.12 0-299.947 134.4-299.947 299.52v172.373h-78.507v552.107h756.48v-551.68h-78.080zM629.76 873.813c-9.813 8.96-19.627 16.64-32 23.467-11.947 5.973-24.747 10.667-37.973 14.507-13.227 3.413-26.453 4.693-39.68 4.693-17.493 0-34.133-2.987-49.92-8.96s-29.44-13.653-42.24-23.893c-12.8-10.24-23.467-21.76-32.427-35.413-8.96-13.227-16.213-27.733-20.907-43.093h-46.933l13.653-32.853h25.173c-0.427-5.973-1.28-12.8-1.28-19.627v-2.987h-31.147l13.227-32.853h22.187c3.413-16.213 9.813-32 17.92-46.080 8.533-14.933 19.2-27.733 32.427-39.253s28.16-20.48 45.227-26.88c17.493-6.4 35.84-10.24 57.173-10.24 29.44 0 54.613 6.4 76.373 19.2s37.12 29.44 48.213 50.347l-47.36 32.853c-4.267-8.96-9.813-16.64-14.933-23.040-5.973-5.973-12.8-10.667-19.2-14.507-6.4-3.413-13.653-5.973-21.76-7.68-7.68-1.707-14.933-2.56-22.187-2.56-11.52 0-22.187 1.707-32 5.547-9.813 3.413-17.92 8.533-25.173 14.507s-13.227 13.227-18.773 21.76-8.96 16.64-11.52 26.453h115.2l-13.227 32.853h-107.52v4.693c0 5.973 0.427 11.947 1.28 17.92h104.96l-13.227 32.853h-82.347c7.68 16.64 18.773 30.72 32.853 40.96 14.507 10.24 30.72 15.787 49.92 15.787 7.253 0 14.507-0.427 22.187-2.56 7.68-1.707 14.933-4.693 22.187-8.533 7.253-4.267 13.227-8.96 19.627-14.933 5.973-5.973 10.667-13.653 14.507-22.187l49.92 28.16c-3.413 11.52-11.52 22.187-20.48 31.573zM667.307 472.32h-310.613v-165.973c0-85.333 69.547-155.307 154.88-155.307 41.387 0 80.213 16.213 109.653 45.653s45.653 68.267 45.653 109.653v165.973h0.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["fixedPrice"],"grid":0},"attrs":[{}],"properties":{"order":330,"id":47,"name":"fixedPrice","prevSize":32,"code":59706},"setIdx":0,"setId":2,"iconIdx":48},{"icon":{"paths":["M511.147 346.027h-3.84c-44.373 0-86.187 16.64-117.76 47.36-32 31.573-49.493 73.813-49.493 119.040s17.493 87.467 49.067 118.187c30.72 30.72 72.96 47.36 116.053 47.36h4.267c43.093 0 84.907-17.493 116.053-47.36 31.573-30.72 49.067-72.96 49.067-118.187 0-90.88-72.107-163.84-163.413-166.4zM431.36 435.2c19.627-19.627 46.933-30.72 72.96-30.72h2.987c27.733-0.853 55.467 10.24 76.8 30.72s32.853 48.213 32.853 78.933c0 59.733-49.493 108.8-109.653 108.8h-0.853c-58.453 0-107.947-49.493-107.947-108.8-0.853-29.867 11.093-58.453 32.853-78.933z","M928 529.493l-1.28-1.28 1.28-1.28c0.853-0.853 1.28-1.28 2.133-2.133 44.373-47.36 64.853-105.387 59.307-169.387-5.12-57.6-29.867-105.813-72.96-143.787-37.12-32-79.787-49.493-126.293-53.333v0h-2.987c-12.373-0.853-24.747 0-37.973 0.853-5.973 0.853-11.093 0.853-16.213 1.28h-0.853c-0.853-0.853-1.28-2.987-2.987-7.253-12.373-39.253-34.133-72.96-64.853-99.413-49.493-42.24-107.947-59.733-172.373-51.2-47.36 5.547-89.6 26.453-125.013 61.867-21.76 21.76-38.827 48.213-49.493 78.080l-1.28 3.84-2.987-1.28c-32.427-8.533-64.427-8.533-95.573-2.56-48.213 10.24-88.747 32.853-119.467 68.693-47.36 56.32-64 121.173-48.64 194.133 7.253 33.707 21.76 63.573 44.373 90.453l2.133 2.987-2.133 1.28c-19.627 20.48-34.987 43.947-45.227 69.973v0c0 0.853-32.853 70.827-1.28 157.013 0 0.853 0 0.853 0.853 1.28 0 0.853 0.853 1.28 0.853 2.987 2.987 7.253 5.973 14.507 9.387 21.333 2.987 6.4 5.973 11.093 8.107 14.507 23.893 39.253 59.733 68.693 105.387 86.187 36.693 14.507 75.947 18.347 116.907 11.52l2.133-0.853 1.28 3.84c6.4 23.467 16.64 44.373 29.867 62.72 32 45.227 74.667 74.667 127.147 87.467 5.973 1.28 26.453 5.12 53.333 5.12 16.64 0 35.84-1.28 55.467-6.4l2.133-0.853c2.133-0.853 3.84-0.853 5.12-1.28 0.853 0 1.28-0.853 2.987-0.853l1.28-0.853c30.72-10.24 59.307-26.88 84.053-51.2 22.613-21.76 40.107-48.213 51.2-78.080 0.853-1.28 0.853-2.133 1.28-3.84l0.853-1.28h1.28c0.853 0 2.133 0.853 3.84 0.853 21.76 5.12 42.24 6.4 62.72 5.973 31.573-1.28 61.44-9.387 88.32-23.893 43.947-23.467 76.8-57.173 97.28-101.547 21.333-46.933 25.6-95.573 13.227-146.773-9.813-29.44-24.32-58.88-45.653-83.627zM868.267 502.613c-5.973 4.267-11.52 8.96-16.64 12.373l-12.373 8.96 2.987 3.84c5.12 6.4 11.52 11.52 16.64 16.213 2.987 2.133 5.973 4.267 8.107 7.253 33.707 30.72 51.2 66.987 54.187 111.787 2.133 43.093-11.093 81.067-38.827 112.64-34.987 39.253-78.933 57.6-131.413 54.613-19.2-1.28-37.973-6.4-59.307-16.213-4.267-1.28-8.107-3.84-12.373-5.12l-14.080-5.973-8.107 38.827c-14.080 67.84-71.68 119.893-141.653 126.293-5.12 0.853-10.24 0.853-15.36 0.853-36.693 0-72.107-13.227-101.547-37.12-28.587-23.893-48.213-57.6-54.613-94.293-1.28-8.96-2.987-18.347-3.84-26.88l-0.853-6.4c0-2.987-0.853-7.253-3.84-11.093l-2.133-2.133-13.227 4.267c-6.4 2.133-13.227 4.267-19.627 6.4-64.853 22.613-138.667-0.853-179.627-57.173-19.2-26.453-29.013-55.467-29.867-86.187-2.133-57.173 21.333-103.68 68.693-138.667l24.747-19.2-2.987-2.133c-5.12-5.12-11.093-10.24-16.213-14.507-6.4-5.12-12.373-11.093-18.347-16.64-29.013-30.72-44.373-66.56-45.227-107.947-0.853-39.253 11.52-74.667 36.693-104.533 25.6-30.72 58.453-49.493 97.707-56.32 30.72-5.12 61.44-0.853 92.16 13.227 5.973 2.987 11.52 5.12 19.2 8.107 4.267 1.28 6.4 2.987 9.387 1.28 2.987-1.28 3.84-4.267 4.267-8.96 0.853-4.267 1.28-8.96 2.133-13.227v-0.853c1.28-8.96 2.987-16.64 5.973-24.747 20.48-62.293 63.147-100.267 125.867-111.787 54.187-10.24 101.547 5.12 142.507 46.080 25.6 25.6 40.96 58.453 44.373 96.427 0.853 5.973 1.28 11.52 2.133 17.493l1.28 14.507 4.267-0.853c7.253-1.28 14.080-3.84 19.627-5.973l0.853-0.853c2.133-0.853 3.84-1.28 5.973-2.133 58.453-20.48 111.787-11.093 159.147 27.733 33.707 27.733 52.48 64.427 56.32 107.947 4.693 56.747-17.067 104.107-63.147 140.8z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["flor"],"grid":0},"attrs":[{},{}],"properties":{"order":331,"id":48,"name":"flower","prevSize":32,"code":59707},"setIdx":0,"setId":2,"iconIdx":49},{"icon":{"paths":["M1024 460.8h-213.333l166.4-166.4-72.533-72.533-238.933 238.933h-102.4v-102.4l238.933-238.933-72.533-72.533-166.4 166.4v-213.333h-102.4v213.333l-166.4-166.4-72.533 72.533 238.933 238.933v102.4h-102.4l-238.933-238.933-72.533 72.533 166.4 166.4h-213.333v102.4h213.333l-166.4 166.4 72.533 72.533 238.933-238.933h102.4v102.4l-238.933 238.933 72.533 72.533 166.4-166.4v213.333h102.4v-213.333l166.4 166.4 72.533-72.533-238.933-238.933v-102.4h102.4l238.933 238.933 72.533-72.533-166.4-166.4h213.333v-102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["frozen"],"grid":0},"attrs":[{}],"properties":{"order":332,"id":49,"name":"frozen","prevSize":32,"code":59708},"setIdx":0,"setId":2,"iconIdx":50},{"icon":{"paths":["M118.187 821.333c26.453 0 52.48 5.973 76.8 17.067 4.693 2.133 9.813 4.693 14.507 7.253l2.56 1.28c50.773 25.173 108.373 37.547 165.973 37.547 43.093 0 86.187-7.253 126.293-21.76h0.853l1.28 0.853c40.96 14.507 84.053 21.76 127.573 21.76 1.28 0 2.56 0 3.84 0h2.56c0.853 0 0.853 0 1.28 0s1.28 0 2.133 0h0.853c101.973-2.56 196.693-44.8 267.947-117.76s110.507-169.387 111.36-271.36c0-7.253-2.56-14.080-8.107-19.2-5.12-5.12-11.947-8.107-18.347-8.107h-241.493l-0.853-2.56c-7.253-64-30.293-125.867-68.267-177.92-5.973-8.533-13.227-17.92-21.76-27.307l-1.28-1.28 1.28-2.133c39.68-46.933 41.813-80.213 41.813-86.613 0-14.080-10.667-25.173-25.173-25.6v0c-13.227 0-25.6 11.093-27.307 24.32 0 0-2.133 19.2-26.453 49.493l-0.853 0.853-2.133 0.853-1.28-0.853c-73.387-63.147-168.107-94.72-265.387-89.6-101.12 5.12-193.707 50.347-261.547 125.867-102.827 114.773-126.293 279.893-58.027 418.56l1.28 2.56c2.56 4.693 5.12 9.387 8.107 15.36 14.507 31.573 20.053 66.987 15.36 101.12-1.28 8.107 1.28 16.64 7.253 22.613s14.507 8.533 22.613 7.253c7.68-1.707 16.213-2.56 24.747-2.56zM968.96 522.24l2.133 2.133v1.28c-5.973 67.413-31.573 130.987-74.667 183.893l-0.853 0.853h-2.56l-1.28-0.853-133.547-133.547c-9.813-9.813-26.453-11.093-36.267-2.56-5.973 4.693-9.387 11.947-9.387 19.2s2.56 14.507 8.107 20.053l136.107 136.107v2.56l-0.853 0.853c-51.627 44.8-115.2 72.96-182.613 80.213h-1.28l-2.133-1.28v-212.907c0-14.507-10.667-26.453-23.893-27.733-7.253-0.853-14.507 2.133-20.053 6.827-5.12 5.12-8.533 11.947-8.533 19.2v215.893l-2.133 2.133h-0.853c-32.427-2.133-63.573-8.533-93.867-19.2-3.413-2.133-5.973-2.56-8.533-3.413-31.573-12.373-61.013-29.867-87.467-50.773l-0.853-0.853v-2.56l0.853-1.28 142.080-142.080c9.813-9.813 11.093-26.453 2.56-36.267-4.693-5.973-11.947-9.387-19.2-9.387-7.253-0.853-14.507 2.56-20.053 8.107l-145.067 145.067h-2.56l-0.853-0.853c-47.787-54.187-75.947-121.173-82.773-193.28v-2.987l1.28-2.133 668.16-0.427zM85.76 650.667l-0.853-0.853c-57.6-119.040-37.547-259.84 50.773-358.827 58.453-64.427 138.24-102.827 225.28-107.52 86.613-4.693 170.667 24.32 235.52 82.773 3.413 2.56 5.973 5.12 9.387 8.533l4.693 4.693c3.84 3.84 8.107 8.107 11.947 12.373l0.853 0.853c8.107 8.533 15.36 18.347 22.613 27.733 31.147 43.093 50.773 93.867 57.6 146.773v1.28l-1.28 2.133h-431.36c-7.253 0-14.080 2.56-18.347 8.107-5.12 5.12-8.107 11.947-8.107 19.2 0 133.547 67.413 256 180.48 328.96l1.28 0.853-0.853 3.84-2.133 0.853c-15.787 2.133-31.147 3.413-46.933 3.413-49.067 0-96.427-10.667-140.8-32.427h-0.853c-5.973-3.84-13.227-7.253-19.2-9.813-30.293-14.507-62.72-21.76-96-21.76h-2.56v-2.56c0-33.28-8.107-65.707-21.333-95.147-2.56-10.24-5.973-17.067-9.813-23.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["fruit"],"grid":0},"attrs":[{}],"properties":{"order":333,"id":50,"name":"fruit","prevSize":32,"code":59709},"setIdx":0,"setId":2,"iconIdx":51},{"icon":{"paths":["M898.56 419.84c0-206.933-159.573-376.747-362.24-393.387v-18.347c0-4.267-3.84-8.107-8.107-8.107h-42.24c-4.267 0-8.107 3.84-8.107 8.107v17.493c-206.080 13.227-369.493 185.173-369.493 394.24 0 143.36 76.8 269.227 191.573 338.773l-68.693 198.827c-4.267 14.080 2.133 28.587 16.213 32.853l5.973 2.133c14.080 4.267 28.587-2.133 32.853-16.213l66.56-191.573c36.693 15.36 76.8 24.747 118.613 28.587v184.32c0 14.507 11.52 26.453 26.453 26.453h6.4c14.507 0 26.453-11.52 26.453-26.453v-183.467c42.24-2.987 83.2-12.373 120.747-27.733l66.56 192.427c4.267 14.080 19.627 20.48 32.853 16.213l5.973-2.133c14.080-4.267 20.48-19.627 16.213-32.853l-69.12-199.253c116.053-68.693 194.56-196.267 194.56-340.907zM840.107 419.84c0 10.24-0.853 20.48-1.28 30.72-40.96-3.84-79.787-14.080-117.76-27.733v-0.853c0-119.893-97.28-217.173-217.173-217.173-24.32 0-48.213 3.84-70.827 11.52-34.987-36.267-61.867-70.827-81.067-97.28 45.227-22.613 96.427-35.84 151.467-35.84 185.6 0 336.64 151.040 336.64 336.64zM480 264.96c7.253-1.28 15.36-1.28 23.467-1.28 78.933 0 144.213 57.6 156.587 133.12-68.267-36.267-129.707-83.627-180.053-131.84zM301.653 150.613c28.587 38.827 75.52 97.28 136.96 156.587 124.16 118.613 258.133 188.16 389.12 201.813-8.107 29.44-19.627 56.32-34.987 81.92-286.72-5.12-505.6-306.347-553.813-378.88 17.92-23.467 39.253-43.947 62.72-61.44zM350.72 437.333c60.587 58.453 123.733 105.387 187.307 140.373-11.093 2.133-22.613 3.84-34.56 3.84-84.907 0-153.6-66.56-158.72-149.76 2.133 2.133 3.84 3.413 5.973 5.547zM480 755.627c-171.093-11.52-308.053-154.453-313.173-325.547-1.28-59.307 11.52-114.773 37.12-163.84 19.2 26.88 48.213 66.56 87.040 109.653-3.84 15.36-5.12 31.573-5.12 46.933 0 119.893 97.28 217.173 217.173 217.173 37.973 0 74.667-9.387 106.667-27.733 46.933 18.347 94.293 30.72 141.227 34.987-65.28 72.533-163.413 115.627-270.933 108.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["funeral"],"grid":0},"attrs":[{}],"properties":{"order":334,"id":51,"name":"funeral","prevSize":32,"code":59710},"setIdx":0,"setId":2,"iconIdx":52},{"icon":{"paths":["M982.187 451.84c-4.267-45.227-16.64-88.747-36.693-129.28-19.2-38.827-45.227-74.24-76.373-104.533 14.507-57.173-17.493-107.093-17.493-107.093-55.040-3.413-90.027 17.067-103.253 26.453-2.133-0.853-4.267-1.707-6.4-2.56-9.387-3.84-19.2-7.253-29.013-10.667-9.813-2.987-20.053-5.973-30.293-8.533-12.373-2.987-24.747-5.12-37.547-6.827-23.893-76.8-93.013-108.8-93.013-108.8-76.8 48.64-91.733 116.907-91.733 116.907l-0.853 3.84c-4.267 1.28-8.533 2.56-12.8 3.84-5.973 1.707-11.52 3.84-17.493 5.973-5.973 2.56-11.52 4.693-17.493 7.253-23.467 10.24-45.653 22.613-66.56 37.12l-2.56-1.28c-106.667-40.533-201.387 8.533-201.387 8.533-8.533 113.493 42.667 184.747 52.907 197.973-12.8 36.267-21.76 74.24-26.027 112.64-98.56 48.64-127.573 148.053-127.573 148.053 82.347 94.293 177.92 100.267 177.92 100.267s0 0 0 0c11.947 21.76 26.027 42.24 42.24 61.867 6.827 8.107 13.653 15.787 20.907 23.467-29.867 85.76 4.267 157.013 4.267 157.013 91.307 3.413 151.467-40.107 164.267-49.92 43.52 14.507 89.173 21.76 134.827 21.333h5.973s4.693 0 4.693 0h4.267s0 0 0 0c43.093 61.44 119.040 70.4 119.040 70.4 53.76-56.747 57.173-113.067 57.173-125.44v-2.56c0-0.853 0-1.707 0-2.56 11.093-8.107 22.187-16.64 32.427-25.6 23.467-21.333 43.947-45.653 60.587-72.533 61.013 3.413 104.107-37.973 104.107-37.973-10.24-63.573-46.080-94.72-53.76-100.267h-0.853c0-0.427-0.853-1.28-0.853-1.28-0.427 0-0.853-0.427-1.28-0.853 0-3.84 0.853-7.68 0.853-11.52 0.427-6.827 0.853-13.653 0.853-20.48v-14.933s-0.427-5.973-0.427-5.973c0-1.707 0-3.84-0.427-5.547 0-1.707 0-3.413-0.427-5.12l-1.707-10.24c-9.387-61.44-40.107-117.76-86.613-159.147-38.4-34.133-86.613-55.893-137.387-62.293-11.947-1.707-24.32-2.133-36.267-2.133h-4.693s-2.56 0-2.56 0h-1.707s-4.267 0.427-4.267 0.427c-55.467 3.84-106.667 29.867-142.507 72.107-14.080 17.067-25.173 35.84-32.853 55.467-9.813 24.747-14.080 51.2-13.227 77.653v3.84c0 2.56 0.427 4.693 0.853 6.827 2.56 28.16 12.8 55.040 29.867 77.653 19.2 26.027 46.933 45.227 78.080 54.613 14.080 4.267 28.16 5.973 41.387 5.973 1.707 0 3.413 0 4.693 0h2.56c0.853 0 1.707 0 2.56 0 1.28 0 2.56 0 4.267-0.427 0 0 0.853 0 1.28 0h1.28s2.56-0.427 2.56-0.427c1.707 0 3.413-0.427 4.693-0.853 1.707 0 2.987-0.427 4.693-0.853 14.080-3.413 27.307-9.387 38.827-17.92 1.28-0.853 2.56-1.707 3.84-2.987 4.693-3.84 5.547-10.24 1.707-14.933 0 0 0 0 0 0-2.987-3.84-8.96-5.12-13.227-2.56l-3.413 1.707c-3.84 1.707-7.68 3.413-11.947 5.12-6.4 2.133-13.227 3.413-20.48 4.267-1.28 0-2.133 0-3.413 0h-3.413c-1.28 0-2.133 0-3.413 0h-4.267c0 0-0.427 0-0.427 0h-0.853c-0.853 0-1.28 0-1.707 0-1.28 0-2.56 0-3.84-0.427-10.667-1.707-20.907-4.693-30.72-8.96-10.24-4.693-20.053-11.093-28.587-18.773-18.347-16.64-30.293-38.827-34.56-63.147-0.853-6.4-1.28-12.8-1.28-18.773v-5.12c0 0 0-0.853 0-0.853v-1.28c0-0.853 0-1.707 0-2.56 3.84-39.253 25.173-75.093 57.6-97.707 12.373-8.107 25.6-14.507 40.107-18.347 10.667-2.987 21.76-4.267 33.28-4.267h5.547s2.133 0 2.133 0h4.267c24.32 2.133 48.213 9.387 69.547 20.907 29.44 16.213 53.333 40.96 68.267 70.827 9.387 18.773 15.36 39.253 17.067 60.16v3.413s0 2.987 0 2.987c0 1.28 0 2.133 0 2.987s0 2.133 0 2.987v5.973s-0.427 7.253-0.427 7.253c-0.853 8.96-1.707 18.347-3.413 27.307-2.56 13.653-6.4 26.88-11.52 39.68-6.827 17.067-15.787 33.28-26.453 48.213-32.853 45.653-82.773 76.373-138.24 85.76-8.96 1.707-18.347 2.56-27.733 2.987h-1.707s-12.373 0-12.373 0c-24.747-0.427-49.493-4.267-73.387-11.093-57.173-16.64-107.947-50.347-145.067-96.853-12.373-15.36-23.040-31.573-32-49.067-17.493-34.56-28.16-72.107-30.293-110.933v-3.413c0 0 0-0.853 0-0.853v-5.547s0-4.267 0-4.267v-4.267s0-2.987 0-2.987v-6.827c0.427-9.387 1.28-19.2 2.56-29.013 2.56-19.627 6.4-38.827 11.947-57.6s12.373-37.12 20.053-54.613c14.933-33.28 36.267-63.573 62.293-89.6 12.373-12.373 26.027-23.040 40.533-32.427 7.253-4.693 14.507-8.96 22.187-13.227 3.84-2.133 7.68-3.84 11.52-5.973 2.133-0.853 3.84-1.707 5.973-2.56 9.813-4.267 20.053-8.107 30.293-11.52l6.4-2.133c2.133-0.427 4.267-1.28 6.4-1.707 4.267-1.28 8.533-2.133 12.8-3.413 2.133-0.427 4.267-0.853 6.4-1.28l12.8-2.56h3.413c0-0.427 2.987-0.853 2.987-0.853l6.4-0.853c2.56-0.427 4.693-0.427 7.253-0.853l7.253-0.853c1.707 0 2.987 0 4.693-0.427h2.987c0 0 1.707-0.427 1.707-0.427h1.707c2.56 0 4.693 0 7.253-0.427h3.84c0 0 0.853 0 0.853 0h1.707s6.4 0 6.4 0c24.32-0.853 48.64 0.853 72.96 5.12 30.293 5.547 59.733 15.36 87.467 29.013 25.6 12.373 49.493 28.16 71.253 46.507l7.68 6.827c2.56 2.133 4.693 4.693 7.253 6.827s4.693 4.693 7.253 6.827c2.133 2.133 4.693 4.693 6.827 6.827 23.893 25.173 44.373 53.76 60.16 84.48 0.427 1.28 1.28 2.133 1.707 3.413l5.12 10.24c0.853 2.133 2.133 4.267 2.987 6.4l2.987 6.4c8.107 18.347 14.507 37.547 19.2 57.173 0.853 3.84 4.693 6.4 8.533 5.973 4.267 0 7.253-3.84 7.253-7.68 0.427-10.667 0-22.613-0.853-36.693v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["grafana"],"grid":0},"attrs":[{}],"properties":{"order":418,"id":52,"name":"grafana","prevSize":32,"code":59654},"setIdx":0,"setId":2,"iconIdx":53},{"icon":{"paths":["M871.68 540.16c-8.96-111.36-82.773-224.853-219.733-337.493-110.507-90.88-232.107-155.307-279.467-178.347l-0.853-1.28h-0.853l-0.853-0.853c-11.093-5.973-18.347-8.96-20.48-10.24l-27.307-11.947-14.080 26.88c-168.96 333.227-201.387 578.56-96 728.32 93.013 132.267 263.68 152.32 356.267 152.32 14.507 0 28.587-0.853 40.96-1.28h1.28l0.853 1.28c22.613 40.107 44.8 75.52 66.56 104.533 5.12 6.4 12.373 11.093 21.333 11.52 8.96 0.853 17.493-2.133 24.32-7.253l0.853-0.853c12.373-11.093 14.080-29.44 3.84-42.24-19.2-25.6-39.68-56.32-59.307-92.16l-1.28-2.133 2.133-1.28c143.787-103.253 211.2-216.747 201.813-337.493zM575.147 844.373c-1.28 0-2.987 0-5.12 0-190.293 0-273.92-78.507-305.92-125.013-81.067-116.48-59.307-319.573 64.427-587.52l2.987-7.253 2.133 7.253c43.093 165.547 131.84 477.867 243.627 708.267l2.133 3.84-4.267 0.427zM641.707 820.48l-2.987 2.133-1.28-2.987c-109.653-224-199.68-539.307-243.627-706.987l-1.707-5.973 5.973 2.987c67.413 37.12 165.547 97.28 248.747 172.8 101.12 90.027 155.307 178.773 161.707 263.68 7.253 93.44-49.067 186.453-166.827 274.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["verde"],"grid":0},"attrs":[{}],"properties":{"order":335,"id":53,"name":"greenery","prevSize":32,"code":59711},"setIdx":0,"setId":2,"iconIdx":54},{"icon":{"paths":["M921.6 230.4h-204.8v-102.4c0-55.467-46.933-102.4-102.4-102.4h-204.8c-55.467-0-102.4 46.933-102.4 102.4v102.4h-204.8c-55.467 0-102.4 46.933-102.4 102.4v563.2c0 55.467 46.933 102.4 102.4 102.4h819.2c55.467 0 102.4-46.933 102.4-102.4v-563.2c0-55.467-46.933-102.4-102.4-102.4zM614.4 230.4h-204.8v-102.4h204.8c0 0 0 102.4 0 102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["greuge"],"grid":0},"attrs":[{}],"properties":{"order":336,"id":54,"name":"greuge","prevSize":32,"code":59712},"setIdx":0,"setId":2,"iconIdx":55},{"icon":{"paths":["M0 256h256v-256h-256v256zM384 1024h256v-256h-256v256zM0 1024h256v-256h-256v256zM0 640h256v-256h-256v256zM384 640h256v-256h-256v256zM768 0v256h256v-256h-256zM384 256h256v-256h-256v256zM768 640h256v-256h-256v256zM768 1024h256v-256h-256v256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["grid"],"grid":0},"attrs":[{}],"properties":{"order":337,"id":55,"name":"grid","prevSize":32,"code":59713},"setIdx":0,"setId":2,"iconIdx":56},{"icon":{"paths":["M984.32 721.92c11.52-48.213 14.507-93.013 11.093-136.96-4.267-40.96-14.507-75.947-32.853-108.373-30.72-55.040-77.653-93.44-139.093-113.493-7.253-2.133-14.507-4.267-22.613-5.973l-13.227-2.987 14.080-2.133c10.24-1.28 20.48-3.84 29.867-5.12l5.12-0.853c32-5.973 65.28-11.52 97.28-21.333 24.32-7.253 45.227-19.627 64.427-32.853l5.973-4.267-5.12-5.12c-4.267-4.267-9.387-9.387-14.080-14.080-14.507-14.507-29.44-29.44-45.227-42.24-57.173-46.080-109.653-70.4-167.68-77.653-41.813-5.12-81.92-0.853-118.613 14.080-11.52 4.267-22.613 10.24-30.72 14.507l-2.133 1.28-1.28-2.133c-8.96-16.213-20.48-30.72-35.84-43.947-29.867-24.747-65.707-36.693-107.52-33.707h-2.987l-0.853-2.987c-7.253-20.48-19.2-38.827-35.84-55.040-49.493-46.507-123.307-54.187-180.907-17.493-24.32 15.36-42.667 35.84-54.187 62.293l-1.28 3.84-3.84-0.853c-14.080-2.133-27.733-2.133-43.093 0-35.84 4.267-69.547 23.467-93.44 52.48-25.6 31.573-36.693 70.827-31.573 111.787 2.987 24.747 11.52 46.933 25.6 66.56 0 0.853 0.853 0.853 0.853 0.853l0.853 1.28-1.28 2.133c-24.747 30.72-35.84 65.28-32.853 103.68 3.84 49.92 26.88 89.173 70.4 116.48 25.6 16.64 56.32 23.467 90.027 20.48l2.133-0.853 0.853 2.133c8.96 24.747 23.467 45.227 42.24 61.44 24.747 21.333 52.48 32 82.773 34.56 2.133 0 2.987 0.853 5.12 3.84l47.36 64.427c18.347 24.32 36.693 49.92 55.040 74.667 3.84 5.12 3.84 8.107 2.133 11.52-2.987 6.4-4.267 14.080-6.4 19.627v0.853c-0.853 2.987-1.28 5.973-2.133 8.96l-14.507 47.36c-9.387 29.867-18.347 60.16-27.733 89.173-3.84 11.52-2.133 21.76 2.987 29.867 5.973 8.107 15.36 11.52 27.733 11.52h176.213c7.253 0 14.507 0 21.76 0 19.627 0 39.68 0 59.307 0 8.96 0 16.213-2.133 21.76-7.253 12.373-11.093 11.093-24.747 7.253-35.84l-13.227-43.093c-12.373-40.96-24.747-82.773-37.12-125.013-0.853-3.84-0.853-5.973 1.28-9.387 31.573-49.92 62.293-100.267 93.013-149.333l37.973-60.587c1.28-2.133 2.987-5.12 5.12-7.253l2.133-2.987 57.6 66.56c22.613 26.453 46.933 54.187 72.96 78.080 18.347 16.64 40.107 27.733 61.44 37.973l6.4 2.987 5.12-21.333c1.28-8.107 3.413-16.213 5.973-24.747zM610.133 329.813c17.493-25.6 26.453-54.187 25.6-85.76 0-3.84 0.853-5.12 4.267-7.253 37.973-24.32 76.8-33.707 120.747-29.44 39.68 4.267 76.8 19.627 116.907 47.36 5.12 3.84 11.093 7.253 16.64 12.373l4.267 3.84-5.12 1.28c-11.093 2.987-21.76 5.12-31.573 6.4-22.613 4.267-44.8 8.107-66.56 11.52-29.44 5.12-59.307 10.24-89.173 16.64-25.6 5.12-59.307 13.227-93.013 25.6l-8.107 2.987 5.12-5.547zM320.427 603.307c-21.333 0-41.813-8.107-57.6-24.32-16.213-15.36-25.6-34.987-27.733-60.16-0.853-5.12-0.853-9.387-1.28-14.507l-1.28-14.080h-6.4c-8.96 0.853-16.64 4.267-24.32 7.253l-2.987 1.28c-21.76 8.96-46.933 8.107-67.84-2.133-21.76-10.24-39.68-29.867-46.933-53.333-11.52-33.707 0.853-72.533 30.293-94.72l29.44-21.76-3.84-5.12c-4.267-6.4-10.24-11.093-16.213-15.36l-0.853-0.853c-1.28-1.28-3.84-2.987-5.12-3.84-21.76-18.347-32.853-41.813-32-67.84 0.853-38.827 21.76-68.693 58.453-81.92 20.48-7.253 40.96-6.4 62.293 2.133l34.56 14.507 2.133-6.4c2.987-8.107 4.267-16.213 5.12-24.32l1.28-7.253c5.973-32 32.853-67.84 79.787-70.4 30.72-1.28 56.32 10.24 75.52 36.693 10.24 14.080 15.36 30.72 16.64 52.053 0.853 6.4 0.853 13.227 2.987 19.627l1.28 5.973 16.64-5.973c5.973-2.133 11.52-4.267 17.493-5.973 40.107-14.507 84.907 2.987 104.533 40.107 16.213 29.867 14.507 60.587-4.267 91.307-7.253 11.52-18.347 20.48-30.72 28.587l-3.84 2.987c-7.253 5.12-10.24 8.107-10.24 12.373s2.987 8.107 9.387 13.227c11.52 10.24 23.467 20.48 31.573 34.56 14.080 22.613 15.36 52.053 4.267 78.080s-32 44.8-60.587 51.2c-16.64 4.267-34.56 2.133-52.053-5.12-5.12-2.133-10.24-4.267-15.36-6.4l-18.347-8.107-1.28 5.12c-2.987 7.253-3.84 14.080-5.12 20.48l-0.853 5.12c-5.12 29.44-19.627 51.2-44.8 65.28-13.227 7.68-27.733 11.947-41.813 11.947zM657.067 655.787c-28.587 46.080-54.187 87.040-80.64 129.707-5.973 9.387-6.4 19.2-2.987 31.573l32.853 110.507c3.84 11.093 6.4 21.76 9.387 32.853l0.853 3.84h-3.84c-15.36 0-30.72 0-46.080 0h-19.627c-34.56 0-70.827 0-108.373 1.28h-3.413l0.853-3.84c1.28-5.12 2.987-10.24 4.267-15.36 0.853-2.987 2.133-6.4 2.987-9.387 13.227-43.947 24.747-80.64 35.84-114.773 5.12-15.36 2.133-29.44-7.253-42.24-23.467-31.573-47.36-63.573-68.693-93.013l-25.6-34.56 2.987-1.28c24.747-11.52 43.947-27.733 59.307-49.067 5.12-7.253 9.387-15.36 13.227-22.613l1.28-3.84 3.84 0.853c21.76 3.84 43.093 2.133 62.72-3.84 50.347-15.36 84.053-48.213 100.267-98.56l0.853-3.84 3.84 0.853c22.613 3.84 41.813 16.64 60.587 30.72 10.24 7.253 19.2 16.213 28.587 24.32 3.84 3.84 8.107 7.253 12.373 10.24l2.133 1.28-72.533 118.187zM935.68 632.747c-0.853 11.52-1.28 22.613-2.987 33.707l-0.853 5.973-9.387-10.24c-20.48-21.76-40.107-45.227-59.307-67.413-14.507-16.64-30.72-35.84-46.933-53.333-25.6-27.733-53.333-57.6-85.76-83.2-17.493-14.080-34.56-24.747-51.2-32.853l-6.4-2.987 6.4-2.133c5.973-1.28 11.52-2.987 18.347-4.267 46.933-8.107 90.88-2.987 129.707 16.213 52.053 25.6 85.76 67.84 100.267 128 7.68 22.613 9.813 46.933 8.107 72.533z","M328.533 215.467h-2.133c-63.573 0.853-113.493 52.053-113.493 116.48 0 31.573 11.52 60.587 33.707 82.773 21.333 21.333 50.347 33.707 81.92 33.707 64.427 0 115.627-51.2 115.627-115.627 0-31.573-11.52-60.587-33.707-81.92-21.76-23.040-51.2-35.413-81.92-35.413zM327.68 387.413c-14.507 0-28.587-5.973-38.827-16.64-9.813-11.093-15.787-25.173-15.787-39.68 0.853-31.573 24.32-55.467 55.467-55.467 14.507 0 27.733 5.973 37.973 16.213 11.093 11.093 16.64 25.6 16.64 40.107 0.427 30.72-24.747 55.467-55.467 55.467z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["confeccion"],"grid":0},"attrs":[{},{}],"properties":{"order":338,"id":56,"name":"handmade","prevSize":32,"code":59714},"setIdx":0,"setId":2,"iconIdx":57},{"icon":{"paths":["M459.093 418.987c0-1.28 0-2.133 0-2.987v-157.013c0-3.84-0.853-5.973-2.133-6.827-1.28-1.28-3.84-2.133-7.253-2.133-0.853 0-2.133 0-2.987 0h-149.76c-1.28 0-2.987 0-3.84 0-2.987 0-5.12 1.28-5.973 1.28-1.28 1.28-2.133 3.84-2.133 5.973 0 1.28 0 2.133 0 3.84v162.133h172.8l1.28-4.267zM403.627 307.627c0 6.827 0 13.227 0 20.053v17.067c0 6.827 0 13.227 0 20.48v2.987h-2.987c-19.2 0-38.4 0-58.027 0h-2.987v-2.987c0-19.2 0-38.4 0-58.027v-2.987h2.987c19.2 0 37.547 0 58.027 0h1.28l1.707 3.413z","M1008.213 669.013c-0.853-2.987-1.28-5.12-2.987-8.107l-102.4-282.88c-6.827-15.36-16.213-14.080-16.213-14.080l-124.587 29.44 8.96-6.827 70.827-49.493 144.213-101.547-289.28-72.107c-4.267-0.853-8.96-2.133-12.373-2.987-7.253-1.28-10.24 1.28-13.227 6.827-0.853 0.853-0.853 2.133-1.28 2.987v0l-2.987 5.12-66.56-115.627c-2.987-5.973-5.12-8.107-8.107-8.96s-5.973 0.853-11.093 3.84l-20.053 11.093c-14.933 8.96-29.44 17.067-44.373 25.6l-4.267 2.133-0.853-4.267v-17.067c0-10.24 0-20.053 0-30.293 0-3.84 0-7.253 0-11.093 0-8.96 0-17.493-0.853-25.6v-4.267h-262.827c-12.373 0.853-15.36 10.24-15.36 15.36v2.133c0 23.467 0 46.933 0 70.827v4.267l-4.267-2.133c-5.12-2.987-10.24-5.973-15.36-8.96l-12.373-6.827c-13.227-7.253-27.307-15.36-40.533-23.467-2.133-1.28-5.12-2.987-8.107-1.28-2.987 0.853-4.267 4.267-5.12 5.973 0 0.853-0.853 1.28-1.28 2.987l-134.827 230.4 2.987 1.28c12.373 8.107 25.6 15.36 38.827 22.613 1.28 0.853 2.987 1.28 3.84 2.133v0l36.693 18.347-20.48 11.947c0 0-0.853 0-0.853 0.853l-61.013 35.413 1.28 2.987c14.080 27.307 130.987 231.253 138.24 238.507l1.28 2.133 45.653-25.6 34.56-22.187-1.28 49.92c0 11.947 0 22.613 0 33.707 0 2.133 0 5.973 2.133 8.96 2.133 2.133 5.973 2.133 7.253 2.133 3.84 0 8.107 0 12.373 0.853h0.853c4.267 0.853 8.96 0.853 12.373 0.853 5.12 0 10.24 0 15.36 0 6.827 0 13.227 0 20.053 0 0.853 0 0.853 0 1.28 0 5.12 0 8.96 2.133 13.227 6.827 29.44 37.547 61.867 78.080 98.56 122.88 3.84 4.267 4.267 8.107 2.987 13.227-14.080 43.52-28.587 86.187-42.667 129.707l-20.48 58.027c-1.28 4.267-0.853 8.96 1.28 13.227 2.987 3.84 6.827 5.973 11.947 5.973h325.547l-1.28-7.253c-0.853-1.28-0.853-2.987-0.853-4.267l-13.227-44.8c-14.080-48.64-28.587-98.56-43.52-149.333-2.133-7.253-1.28-12.373 2.987-20.053 32.427-51.627 64.853-103.68 97.28-155.307l28.16-44.8c0.853-0.853 1.28-2.133 1.28-2.987l2.133 0.853 0.853-2.987c1.28 0 2.987 0.853 5.973 2.133l223.147 83.2c2.133 0.853 4.267 1.28 7.253 2.133l10.24 3.84-4.693-16.213zM727.893 294.4c3.84-2.133 4.267-5.973 2.987-9.387l-6.827-11.093c-5.12-9.387-11.093-18.347-16.213-28.16l-19.2-29.44 126.72 30.72 42.667 14.080-19.2 12.373-33.707 22.187c-33.707 22.187-67.84 43.52-101.547 65.707-1.28 1.28-2.987 1.28-4.267 1.28s-2.133-0.853-3.84-1.28c-11.093-6.827-22.187-13.227-33.28-20.053l-8.107-4.267 73.813-42.667zM293.547 617.387h-6.827v-133.547l-5.12 2.56c-12.373 5.973-24.32 13.227-36.267 20.053l-0.853 0.853c-6.827 3.84-13.227 8.107-20.053 11.947-13.227 7.253-27.307 15.36-38.827 22.613l-14.933 8.96-4.267-8.107c-4.267-7.253-8.96-14.933-13.227-22.187-22.187-37.547-43.52-75.947-64.853-113.493l-2.133-3.84 3.84-2.133 97.707-56.747c1.28-0.853 2.987-2.133 5.12-2.987l8.107-5.12-103.253-60.16c-5.973-3.84-8.107-11.093-4.267-17.067l72.96-125.867c3.84-5.973 11.093-8.107 17.067-4.267l93.44 53.76c2.133 1.28 4.267 1.28 6.827 0 2.133-1.28 3.84-3.84 3.84-5.973v-5.973c0-8.96 0.853-16.213 0.853-24.32 0-17.493 0-35.413 0-52.907v-38.4h3.84c53.76 0 108.373 0 162.133 0h3.84v121.6c0 2.133 1.28 5.12 3.84 5.973s5.12 1.28 7.253 0l94.293-53.76c5.973-3.84 14.080-1.28 17.067 4.267l49.92 87.467c8.96 14.933 17.067 29.44 25.6 44.8l2.133 4.267-105.387 60.16c-2.133 1.28-2.987 3.84-2.987 5.973s1.28 4.267 3.84 5.973l93.013 55.040c5.973 3.84 8.107 11.093 4.267 17.067l-72.96 125.867c-1.28 2.987-4.267 5.12-7.253 5.973s-6.827 0.853-9.387-1.28l-99.413-58.027-2.133 2.987c-2.987 2.987-2.987 6.827-2.133 10.24v89.173c0 9.387 0 17.493-1.28 26.453l-0.853 2.133h-3.84c-0.853 0-1.28 0-2.133 0-51.627-0-104.107 0.853-156.16-0zM704 584.533l-69.973 111.787c-20.053 30.72-38.827 62.72-58.88 93.44-3.84 5.973-4.267 11.093-2.133 18.347 11.093 38.827 22.613 77.227 33.707 116.48l12.373 43.52h-4.693l-148.907-0.853c-5.12 0-10.24 0-15.36 0h-22.613l9.387-30.293c13.227-41.813 28.16-85.333 41.813-127.147 2.987-8.107 1.28-13.227-3.84-20.053-25.173-30.72-49.493-61.867-78.933-97.707l-14.080-17.493h119.467c5.12 0 7.253 0 8.96-2.133 2.133-2.133 2.133-4.267 2.133-10.24v-81.067l4.267 2.987c1.28 0.853 2.133 1.28 3.84 2.133 11.947 6.827 22.613 13.227 34.56 20.053l28.587 17.067c8.107 4.267 10.24 3.84 14.933-3.84l40.533-69.12c0.853-0.853 0.853-1.28 1.28-2.133l1.28-1.28 4.267 1.28c17.493 6.827 34.56 13.227 52.48 19.2 3.84 1.28 6.827 4.267 7.253 7.253 1.28 2.133 0 5.973-1.707 9.813zM863.147 568.32l-193.707-72.107 2.133-4.267c3.84-6.827 7.253-13.227 11.093-20.053 0.853-1.28 2.133-1.28 5.12-2.133l119.893-28.587c14.933-3.84 28.587-6.827 43.52-10.24l7.253-0.853 7.253 7.253v0.853c11.093 30.293 21.333 59.733 32.427 89.6l26.453 64-61.44-23.467z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["handmadeArtificial"],"grid":0},"attrs":[{},{}],"properties":{"order":339,"id":57,"name":"handmadeArtificial","prevSize":32,"code":59715},"setIdx":0,"setId":2,"iconIdx":58},{"icon":{"paths":["M362.667 1024h302.933v-678.4h-302.933v678.4zM0 1024h302.933v-678.4h-302.933v678.4zM721.067 345.6v678.4h302.933v-678.4h-302.933z","M362.667 281.6h302.933v-281.6h-302.933v281.6zM0 281.6h302.933v-281.6h-302.933v281.6zM721.067 0v281.6h302.933v-281.6h-302.933z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["headercol"],"grid":0},"attrs":[{},{}],"properties":{"order":340,"id":58,"name":"headercol","prevSize":32,"code":59717},"setIdx":0,"setId":2,"iconIdx":59},{"icon":{"paths":["M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM563.2 768h-102.4v-307.2h102.4v307.2zM563.2 358.4h-102.4v-102.4h102.4v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["info"],"grid":0},"attrs":[{}],"properties":{"order":341,"id":59,"name":"info","prevSize":32,"code":59718},"setIdx":0,"setId":2,"iconIdx":60},{"icon":{"paths":["M273.067 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c0 8.533 8.533 12.8 12.8 12.8z","M512 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c0 8.533 8.533 12.8 12.8 12.8z","M750.933 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c4.267 8.533 8.533 12.8 12.8 12.8z","M644.267 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-217.6v-221.867h4.267z","M401.067 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-213.333v-221.867z","M162.133 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-213.333v-221.867z","M153.6 422.4h780.8v38.4h-844.8v-38.4z","M68.267 1002.667h-42.667v-981.333h42.667v908.8z","M89.6 921.6v-38.4h844.8v38.4z","M998.4 1002.667h-42.667v-981.333h42.667z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{},{}]},"tags":["inventory"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":342,"id":60,"name":"inventory","prevSize":32,"code":59719},"setIdx":0,"setId":2,"iconIdx":61},{"icon":{"paths":["M320 384h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-341.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M320 490.667h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-341.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v682.667c0 12.8 8.533 21.333 21.333 21.333s21.333-8.533 21.333-21.333v-682.667c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM42.667 917.333v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-554.667c-34.133 0-64-29.867-64-64z","M657.067 712.533c-12.8 8.533-25.6 12.8-42.667 12.8-12.8 0-25.6-4.267-38.4-12.8-8.533-4.267-12.8-12.8-21.333-21.333h64c4.267 0 8.533-4.267 12.8-4.267 0 0 4.267-4.267 4.267-12.8 0-4.267 0-8.533-4.267-12.8 0 0-4.267-4.267-12.8-4.267h-72.533c0 0 0 0 0-4.267 0 0 0-4.267 0-4.267h89.6c4.267 0 8.533-4.267 12.8-4.267 4.267-4.267 4.267-8.533 4.267-12.8s0-8.533-4.267-12.8c0 0-4.267-4.267-12.8-4.267h-76.8c4.267-8.533 12.8-12.8 17.067-21.333 12.8-8.533 21.333-12.8 34.133-12.8 8.533 0 17.067 0 21.333 4.267s12.8 4.267 17.067 8.533c4.267 4.267 12.8 4.267 17.067 4.267 0 0 4.267-4.267 4.267-4.267s4.267-4.267 4.267-4.267c0-4.267 4.267-4.267 4.267-8.533s0-8.533-4.267-12.8c-8.533-8.533-17.067-12.8-29.867-17.067-17.067 4.267-46.933 4.267-72.533 17.067-12.8 4.267-25.6 12.8-34.133 25.6-8.533 8.533-12.8 21.333-17.067 29.867h-17.067c-4.267 0-8.533 0-12.8 4.267s-4.267 8.533-4.267 12.8c0 4.267 0 8.533 4.267 12.8s8.533 4.267 12.8 4.267h8.533c0 0 0 4.267 0 4.267s0 0 0 4.267h-8.533c-4.267 0-8.533 0-12.8 4.267s-4.267 8.533-4.267 12.8c0 4.267 0 8.533 4.267 12.8s8.533 4.267 12.8 4.267h12.8c4.267 12.8 8.533 21.333 17.067 34.133s21.333 21.333 34.133 25.6c12.8 4.267 25.6 8.533 42.667 8.533 25.6 0 46.933-8.533 64-21.333 8.533-8.533 8.533-12.8 8.533-21.333 0-4.267 0-8.533-4.267-12.8-8.533-4.267-12.8-4.267-21.333 0z"],"attrs":[{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}],"125525525519595951":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}]},"tags":["invoice"],"grid":0},"attrs":[{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"}],"properties":{"order":343,"id":61,"name":"invoice","prevSize":32,"code":59752},"setIdx":0,"setId":2,"iconIdx":62},{"icon":{"paths":["M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M149.333 810.667c12.8 0 21.333-8.533 21.333-21.333v-235.52c-5.547 0.427-11.52 0.853-17.067 0.853-8.533 0-17.067-0.427-25.6-1.707v236.373c0 12.8 8.533 21.333 21.333 21.333z","M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-533.333z","M661.333 341.333h-317.013c0.853 6.827 1.28 14.080 1.28 21.333s-0.427 14.507-1.28 21.333h317.013c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M661.333 448h-335.36c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M720.64 728.32c-3.413 8.533-8.96 16.213-15.36 22.613-6.827 6.4-14.080 11.947-22.613 16.64-8.533 4.267-17.493 7.68-26.88 10.24s-18.773 3.413-28.16 3.413c-12.373 0-24.32-2.133-35.413-6.4s-20.907-9.813-29.867-17.067c-8.96-7.253-16.64-15.36-23.040-25.173-6.4-9.387-11.52-19.627-14.933-30.72h-33.28l9.813-23.467h17.92c-0.427-4.267-0.853-8.96-0.853-14.080v-2.133h-22.187l9.387-23.467h15.787c2.56-11.52 6.827-22.613 12.8-32.853 5.973-10.667 13.653-19.627 23.040-27.733s20.053-14.507 32-19.2c12.373-4.693 25.6-7.253 40.533-7.253 20.907 0 38.827 4.693 54.187 13.653s26.453 20.907 34.133 35.84l-33.707 23.467c-2.987-6.4-6.827-11.947-10.667-16.213-4.267-4.267-8.96-7.68-13.653-10.24s-9.813-4.267-15.36-5.547c-5.547-1.28-10.667-1.707-15.787-1.707-8.107 0-15.787 1.28-22.613 3.84s-12.8 5.973-17.92 10.24c-5.12 4.267-9.387 9.387-13.227 15.36s-6.4 11.947-8.107 18.773h81.92l-9.387 23.467h-76.373v3.413c0 4.267 0.427 8.533 0.853 12.8h74.667l-9.387 23.467h-58.453c5.547 11.947 13.227 21.76 23.467 29.013s21.76 11.093 35.413 11.093c5.12 0 10.24-0.427 15.787-1.707s10.667-3.413 15.787-5.973c5.12-2.987 9.387-6.4 14.080-10.667 4.267-4.267 7.68-9.813 10.24-15.787l35.413 20.053z","M153.6 209.067c-85.333 0-153.6 68.267-153.6 153.6s68.267 153.6 153.6 153.6 153.6-68.267 153.6-153.6-68.267-153.6-153.6-153.6zM243.2 379.733h-81.067v42.667c0 8.533-4.267 12.8-12.8 8.533l-98.133-55.467c-8.533-4.267-8.533-12.8 0-17.067l98.133-55.467c8.533-4.267 12.8 0 12.8 8.533v42.667h81.067c8.533 0 17.067 8.533 17.067 17.067 0 0-4.267 8.533-17.067 8.533z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{}]},"tags":["invoiceIn"],"grid":0},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":344,"id":62,"name":"invoice-in","prevSize":32,"code":59721},"setIdx":0,"setId":2,"iconIdx":63},{"icon":{"paths":["M153.6 516.267c-85.333 0-153.6-68.267-153.6-153.6s68.267-153.6 153.6-153.6 153.6 68.267 153.6 153.6-68.267 153.6-153.6 153.6zM243.2 354.133h-81.067v-42.667c0-8.533-4.267-12.8-12.8-8.533l-98.133 55.467c-8.533 4.267-8.533 12.8 0 17.067l98.133 55.467c8.533 4.267 12.8 0 12.8-8.533v-42.667h81.067c12.8 0 17.067-8.533 17.067-8.533 0-8.533-8.533-17.067-17.067-17.067zM153.6 554.667c5.547 0 11.52-0.427 17.067-0.853v235.52c0 12.8-8.533 21.333-21.333 21.333s-21.333-8.533-21.333-21.333v-236.373c8.533 1.28 17.067 1.707 25.6 1.707zM344.32 384c0.853-6.827 1.28-14.080 1.28-21.333s-0.427-14.507-1.28-21.333h317.013c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-317.013zM917.333 149.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v317.44c-29.44-9.387-61.013-14.507-93.867-14.507-53.76 0-104.533 14.080-148.907 38.4h-241.92c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h189.013c-21.76 20.053-40.533 43.093-55.893 68.693-1.707-0.427-3.413-0.427-5.12-0.427h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h112.213c-14.507 35.413-22.613 74.24-22.613 115.2 0 49.067 11.52 95.573 32 136.533h-420.267c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c15.36 0 29.867-2.987 43.093-8.96 134.4-32.853 234.24-154.027 234.24-298.24 0-120.747-69.547-224.853-170.667-275.2v-334.933c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h424.533c24.747 34.56 56.747 63.573 93.44 85.333h-432.64zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["invoice-in-create"],"grid":0},"attrs":[{}],"properties":{"order":345,"id":63,"name":"invoice-in-create","prevSize":32,"code":59722},"setIdx":0,"setId":2,"iconIdx":64},{"icon":{"paths":["M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M149.333 810.667c12.8 0 21.333-8.533 21.333-21.333v-235.52c-5.547 0.427-11.52 0.853-17.067 0.853-8.533 0-17.067-0.427-25.6-1.707v236.373c0 12.8 8.533 21.333 21.333 21.333z","M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-533.333z","M661.333 341.333h-317.013c0.853 6.827 1.28 14.080 1.28 21.333s-0.427 14.507-1.28 21.333h317.013c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M661.333 448h-335.36c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M720.64 728.32c-3.413 8.533-8.96 16.213-15.36 22.613-6.827 6.4-14.080 11.947-22.613 16.64-8.533 4.267-17.493 7.68-26.88 10.24s-18.773 3.413-28.16 3.413c-12.373 0-24.32-2.133-35.413-6.4s-20.907-9.813-29.867-17.067c-8.96-7.253-16.64-15.36-23.040-25.173-6.4-9.387-11.52-19.627-14.933-30.72h-33.28l9.813-23.467h17.92c-0.427-4.267-0.853-8.96-0.853-14.080v-2.133h-22.187l9.387-23.467h15.787c2.56-11.52 6.827-22.613 12.8-32.853 5.973-10.667 13.653-19.627 23.040-27.733s20.053-14.507 32-19.2c12.373-4.693 25.6-7.253 40.533-7.253 20.907 0 38.827 4.693 54.187 13.653s26.453 20.907 34.133 35.84l-33.707 23.467c-2.987-6.4-6.827-11.947-10.667-16.213-4.267-4.267-8.96-7.68-13.653-10.24s-9.813-4.267-15.36-5.547c-5.547-1.28-10.667-1.707-15.787-1.707-8.107 0-15.787 1.28-22.613 3.84s-12.8 5.973-17.92 10.24c-5.12 4.267-9.387 9.387-13.227 15.36s-6.4 11.947-8.107 18.773h81.92l-9.387 23.467h-76.373v3.413c0 4.267 0.427 8.533 0.853 12.8h74.667l-9.387 23.467h-58.453c5.547 11.947 13.227 21.76 23.467 29.013s21.76 11.093 35.413 11.093c5.12 0 10.24-0.427 15.787-1.707s10.667-3.413 15.787-5.973c5.12-2.987 9.387-6.4 14.080-10.667 4.267-4.267 7.68-9.813 10.24-15.787l35.413 20.053z","M153.6 209.067c85.333 0 153.6 68.267 153.6 153.6s-68.267 153.6-153.6 153.6-153.6-68.267-153.6-153.6 68.267-153.6 153.6-153.6zM64 379.733h81.067v42.667c0 8.533 4.267 12.8 12.8 8.533l98.133-55.467c8.533-4.267 8.533-12.8 0-17.067l-98.133-55.467c-8.533-4.267-12.8 0-12.8 8.533v42.667h-81.067c-8.533 0-17.067 8.533-17.067 17.067 0 0 4.267 8.533 17.067 8.533z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{}]},"tags":["invoiceOut"],"grid":0},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":346,"id":64,"name":"invoice-out","prevSize":32,"code":59723},"setIdx":0,"setId":2,"iconIdx":65},{"icon":{"paths":["M512 4.267c-279.893 0-507.733 227.84-507.733 507.733s227.84 507.733 507.733 507.733 507.733-227.84 507.733-507.733-227.84-507.733-507.733-507.733zM512 975.787c-255.573 0-463.787-207.787-463.787-463.787s208.213-463.787 463.787-463.787c255.573 0 463.787 207.787 463.787 463.787s-208.213 463.787-463.787 463.787z","M833.707 253.867c-95.147-79.36-198.827-120.32-308.053-122.453-167.253-3.413-290.56 88.747-349.013 143.787l-6.827 6.4 185.6 273.92 9.387-7.253c15.787-12.373 31.573-22.187 46.933-29.867l41.387 72.107c-5.973 11.947-8.107 25.6-5.973 39.68 5.547 36.267 39.68 61.013 75.52 55.040 36.267-5.547 61.013-39.68 55.040-75.52-5.547-36.267-39.68-61.013-75.52-55.040-3.413 0.427-6.4 1.28-9.387 2.133l-43.52-53.333c40.107-12.373 69.547-10.667 69.973-10.667 0.853 0 66.133 4.267 131.413 53.333l9.813 7.253 180.907-293.547-7.68-5.973zM540.16 615.68c2.133 14.933-8.107 29.013-23.040 31.573-14.933 2.133-29.013-8.107-31.573-23.040-2.133-14.933 8.107-29.013 23.040-31.573s29.013 7.68 31.573 23.040zM654.080 521.387c-67.413-46.507-130.987-50.347-133.547-50.773-2.133 0-38.4-2.56-86.613 14.507l-137.387-166.4 104.107 180.48c-13.227 6.4-26.453 14.507-40.107 24.32l-161.707-238.933c19.627-17.92 46.080-39.253 78.507-59.307l32 55.040 19.2-11.093-32.427-55.040c53.333-30.72 120.32-56.32 198.4-60.16v74.667h22.187v-75.093c2.987 0 5.547 0 8.533 0 65.28 1.28 128.427 17.493 189.013 47.787l-36.693 68.267 19.627 10.667 36.693-68.267c26.88 14.933 52.907 32.427 78.507 53.333l-158.293 256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["isTooLittle"],"grid":0},"attrs":[{},{}],"properties":{"order":349,"id":65,"name":"isTooLittle","prevSize":32,"code":59724},"setIdx":0,"setId":2,"iconIdx":66},{"icon":{"paths":["M593.067 827.733v-29.867l8.533-12.8c42.667 38.4 102.4 59.733 166.4 59.733 140.8 0 251.733-115.2 251.733-251.733 0-140.8-115.2-251.733-251.733-251.733-140.8 0-251.733 115.2-251.733 251.733 0 64 21.333 119.467 59.733 166.4l-12.8 8.533h-29.867l-192 196.267 59.733 59.733 192-196.267zM772.267 418.133c98.133 0 174.933 76.8 174.933 174.933s-76.8 174.933-174.933 174.933c-98.133 0-174.933-76.8-174.933-174.933-4.267-93.867 76.8-174.933 174.933-174.933z","M460.8 849.067v0-4.267z","M0 0h102.4v849.067h-102.4v-849.067z","M1024 371.2v-371.2h-102.4v290.133c38.4 21.333 72.533 46.933 102.4 81.067z","M456.533 729.6c-17.067-42.667-25.6-85.333-25.6-132.267 0-51.2 12.8-93.867 29.867-136.533v-460.8h-153.6v849.067h29.867l119.467-119.467z","M204.8 0h51.2v849.067h-51.2v-849.067z","M772.267 256c17.067 0 34.133 0 46.933 4.267v-260.267h-51.2l4.267 256c-4.267 0-4.267 0 0 0z","M665.6 273.067v-273.067h-102.4c0 0 0 170.667 0 328.533 29.867-25.6 64-42.667 102.4-55.467z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{}]},"tags":["item"],"grid":0},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":350,"id":66,"name":"item","prevSize":32,"code":59725},"setIdx":0,"setId":2,"iconIdx":67},{"icon":{"paths":["M961.28 384.853c0-212.48-172.373-384.853-384.853-384.853s-384.427 172.373-384.427 384.853c0 26.88 3.413 52.907 7.68 77.653-75.52 0-136.96 61.44-136.96 136.96v159.573c0 75.52 61.44 136.96 136.96 136.96h23.893c-1.707 17.92-5.973 38.4-14.507 61.013-7.68 19.2-2.133 42.24 14.080 55.040 9.813 7.68 20.48 11.947 32.427 11.947 8.533 0 16.213-2.133 24.747-6.4 55.040-31.147 101.12-81.92 132.693-122.88h55.040c72.107 0 131.413-55.893 136.96-127.147 199.253-14.080 356.267-180.053 356.267-382.72zM855.893 556.373c-26.027-10.667-52.907-20.48-79.787-28.16 7.68-36.693 12.8-75.52 14.080-116.48h113.067c-4.267 53.76-21.333 102.4-47.36 144.64zM855.893 212.48c26.027 43.093 43.093 91.733 47.36 144.64h-113.067c-2.133-40.96-6.4-79.787-14.080-116.48 26.88-8.96 53.76-17.493 79.787-28.16zM820.48 165.12c-19.2 7.68-38.827 14.080-60.16 19.2-11.947-37.547-28.16-71.253-46.507-98.133 40.533 19.627 77.227 46.507 106.667 78.933zM605.867 62.72c37.547 16.213 75.52 63.573 98.987 134.827-32.427 5.547-64.853 8.533-98.987 10.667 0 0 0-145.493 0-145.493zM605.867 264.96c38.827-1.28 77.653-5.547 114.347-11.947 6.4 31.147 11.947 65.707 12.8 103.68h-127.147v-91.733zM605.867 413.013h127.147c-1.28 37.547-6.4 72.107-12.8 103.68-36.693-6.4-75.52-10.667-114.347-11.947 0-0.427 0-91.733 0-91.733zM425.813 461.227c-2.133-16.213-3.413-32.427-4.267-49.493h127.147v74.24c-22.613-16.213-49.493-26.027-79.787-26.027h-43.093v1.28zM548.693 355.84h-127.147c1.28-37.547 6.4-72.107 12.8-103.68 36.693 6.4 75.52 10.667 114.347 11.947 0 0 0 91.733 0 91.733zM548.693 62.72v145.493c-34.56-1.28-66.987-5.547-98.987-10.667 24.747-70.4 61.013-119.040 98.987-134.827zM440.747 86.187c-18.347 28.16-34.56 61.44-46.507 98.133-20.48-5.547-40.96-11.947-60.16-19.2 29.013-32.427 65.707-59.307 106.667-78.933zM298.667 212.48c26.027 10.667 52.907 20.48 80.64 28.16-8.533 36.693-12.8 75.52-14.080 116.48h-113.92c4.267-53.333 21.333-102.827 47.36-144.64zM364.373 413.013c1.28 17.067 2.133 33.28 3.413 49.493h-107.947c-4.267-16.213-7.68-32.427-8.533-49.493h113.067zM548.693 757.76c0 44.373-35.413 79.787-79.787 79.787h-69.12c-8.533 0-17.067 4.267-22.613 11.947-20.48 28.16-59.307 75.52-105.813 107.947 10.667-36.693 11.947-69.12 10.667-91.733-1.28-14.933-12.8-26.88-28.16-26.88h-52.48c-44.373 0-79.787-35.413-79.787-79.787v-160.427c0-44.373 35.413-79.787 79.787-79.787h267.52c44.373 0 79.787 35.413 79.787 79.787v159.147zM605.867 706.133v-107.947c0 0 0 0 0-1.28v-36.693c34.56 1.28 66.987 4.267 98.987 10.667-23.467 70.4-61.44 119.040-98.987 135.253zM713.387 682.24c18.347-28.16 34.56-60.16 46.507-98.133 20.48 5.547 40.96 11.947 60.16 19.2-29.013 32.853-65.707 59.733-106.667 78.933z","M442.88 593.92h-215.467c-16.213 0-28.16 12.8-28.16 28.16 0 14.933 12.8 28.16 28.16 28.16h215.467c16.213 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z","M442.88 701.867h-215.467c-16.213 0-28.16 12.8-28.16 28.16s12.8 28.16 28.16 28.16h215.467c16.213 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["languaje"],"grid":0},"attrs":[{},{},{}],"properties":{"order":351,"id":67,"name":"languaje","prevSize":32,"code":59760},"setIdx":0,"setId":2,"iconIdx":68},{"icon":{"paths":["M0 145.067h1024v149.333h-1024v-149.333zM0 435.2h1024v149.333h-1024v-149.333zM0 729.6h1024v149.333h-1024v-149.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["lineas"],"grid":0},"attrs":[{}],"properties":{"order":352,"id":68,"name":"lines","prevSize":32,"code":59726},"setIdx":0,"setId":2,"iconIdx":69},{"icon":{"paths":["M870.4 102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h716.8c55.467 0 102.4-46.933 102.4-102.4v-716.8c0-55.467-46.933-102.4-102.4-102.4zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2 21.333-51.2 51.2-51.2zM614.4 819.2h-358.4v-102.4h358.4v102.4zM768 614.4h-512v-102.4h512v102.4zM768 409.6h-512v-102.4h512v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["linesprepaired"],"grid":0},"attrs":[{}],"properties":{"order":353,"id":69,"name":"linesprepaired","prevSize":32,"code":59727},"setIdx":0,"setId":2,"iconIdx":70},{"icon":{"paths":["M108.8 300.8c0-85.344 69.12-154.464 154.464-154.464h199.264v-94.304h-199.264c-137.376 0-248.736 111.36-248.736 248.736s111.36 248.736 248.736 248.736h199.264v-94.72h-199.264c-85.344 0.416-154.464-69.12-154.464-154.016zM312.736 350.72h398.080v-99.84h-398.080v99.84zM760.736 52.064h-199.264v94.72h199.264c84.896 0 154.464 69.12 154.464 154.464s-69.12 154.464-154.464 154.464h-199.264v94.72h199.264c137.376 0 248.736-111.36 248.736-248.736s-111.36-249.6-248.736-249.6z","M440.736 616.544l49.92 49.92-91.744 92.16h361.824v71.264h-361.376l91.744 91.744-49.92 50.336-177.92-177.504z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["link-to-corrected"],"grid":0},"attrs":[{},{}],"properties":{"order":415,"id":70,"name":"link-to-corrected","prevSize":32,"code":59697},"setIdx":0,"setId":2,"iconIdx":71},{"icon":{"paths":["M108.8 300.8c0-85.344 69.12-154.464 154.464-154.464h199.264v-94.304h-199.264c-137.376 0-248.736 111.36-248.736 248.736s111.36 248.736 248.736 248.736h199.264v-94.72h-199.264c-85.344 0.416-154.464-69.12-154.464-154.016zM312.736 350.72h398.080v-99.84h-398.080v99.84zM760.736 52.064h-199.264v94.72h199.264c84.896 0 154.464 69.12 154.464 154.464s-69.12 154.464-154.464 154.464h-199.264v94.72h199.264c137.376 0 248.736-111.36 248.736-248.736s-111.36-249.6-248.736-249.6z","M583.264 616.544l-49.92 49.92 91.744 92.16h-361.824v71.264h361.376l-91.744 91.744 50.336 50.336 177.504-177.504z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["link-to-correcting"],"grid":0},"attrs":[{},{}],"properties":{"order":416,"id":71,"name":"link-to-correcting","prevSize":32,"code":59716},"setIdx":0,"setId":2,"iconIdx":72},{"icon":{"paths":["M405.333 716.8l81.067 81.067 281.6-285.867-285.867-285.867-76.8 81.067 145.067 149.333h-550.4v115.2h550.4l-145.067 145.067zM908.8 0h-793.6c-64 0-115.2 51.2-115.2 115.2v226.133h115.2v-226.133h797.867v797.867h-797.867v-230.4h-115.2v226.133c0 64 51.2 115.2 115.2 115.2h797.867c64 0 115.2-51.2 115.2-115.2v-793.6c-4.267-64-55.467-115.2-119.467-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["logout"],"grid":0},"attrs":[{}],"properties":{"order":354,"id":72,"name":"logout","prevSize":32,"code":59763},"setIdx":0,"setId":2,"iconIdx":73},{"icon":{"paths":["M529.067 465.067c0-17.067 12.8-29.867 29.867-29.867s29.867 12.8 29.867 29.867c0 17.067-12.8 29.867-29.867 29.867s-29.867-12.8-29.867-29.867zM614.4 635.733c21.333 0 38.4-17.067 38.4-38.4s-17.067-38.4-38.4-38.4c-21.333 0-38.4 17.067-38.4 38.4 0 17.067 17.067 38.4 38.4 38.4zM473.6 345.6c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6-25.6 12.8-25.6 25.6c0 17.067 12.8 25.6 25.6 25.6zM802.133 657.067v4.267c-4.267 157.867-132.267 285.867-290.133 285.867s-285.867-128-290.133-285.867v-4.267h580.267zM584.533 721.067c0-17.067-12.8-29.867-29.867-29.867s-29.867 12.8-29.867 29.867 12.8 29.867 29.867 29.867c17.067 0 29.867-12.8 29.867-29.867zM401.067 695.467c-25.6 0-46.933 21.333-46.933 46.933s21.333 46.933 46.933 46.933c25.6 0 46.933-21.333 46.933-46.933s-21.333-46.933-46.933-46.933zM456.533 605.867c25.6 0 46.933-21.333 46.933-46.933s-21.333-46.933-46.933-46.933c-25.6 0-46.933 21.333-46.933 46.933s21.333 46.933 46.933 46.933zM878.933 657.067c0 200.533-162.133 366.933-366.933 366.933s-366.933-162.133-366.933-366.933c0-136.533 72.533-260.267 192-324.267v-187.733c-21.333-4.267-38.4-21.333-38.4-42.667v-59.733c0-25.6 21.333-42.667 42.667-42.667h332.8c25.6 0 42.667 21.333 42.667 42.667v55.467c0 21.333-17.067 42.667-38.4 42.667v192c123.733 68.267 200.533 192 200.533 324.267zM840.533 657.067c0-128-76.8-243.2-192-298.667h-4.267v-256h34.133c4.267 0 4.267-4.267 4.267-4.267v-55.467c0-4.267-4.267-4.267-4.267-4.267h-332.8c-4.267 0-8.533 4.267-8.533 4.267v55.467c0 4.267 4.267 4.267 4.267 4.267h34.133v256h-4.267c-115.2 51.2-192 170.667-192 298.667 0 179.2 145.067 328.533 328.533 328.533s332.8-145.067 332.8-328.533z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["mana"],"grid":0},"attrs":[{}],"properties":{"order":355,"id":73,"name":"mana","prevSize":32,"code":59728},"setIdx":0,"setId":2,"iconIdx":74},{"icon":{"paths":["M981.333 234.667v618.667c0 93.867-76.8 170.667-170.667 170.667h-311.467c-46.933 0-89.6-17.067-119.467-51.2l-337.067-341.333c0 0 55.467-51.2 55.467-55.467 8.533-8.533 21.333-12.8 34.133-12.8 8.533 0 17.067 4.267 25.6 8.533 0 0 183.467 106.667 183.467 106.667v-507.733c0-34.133 29.867-64 64-64s64 29.867 64 64v298.667h42.667v-405.333c0-34.133 29.867-64 64-64s64 29.867 64 64v405.333h42.667v-362.667c0-34.133 29.867-64 64-64s64 29.867 64 64v362.667h42.667v-234.667c0-34.133 29.867-64 64-64s64 29.867 64 64z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["mandatory"],"grid":0},"attrs":[{}],"properties":{"order":356,"id":74,"name":"mandatory","prevSize":32,"code":59729},"setIdx":0,"setId":2,"iconIdx":75},{"icon":{"paths":["M487.253 870.827c-9.387-20.907-18.347-40.96-27.733-61.013-1.28-2.133-3.413-5.12-5.547-5.973-39.68-13.653-80.213-23.467-122.88-14.080-21.333 4.693-40.107 15.36-54.613 32-2.56 2.987-4.267 8.107-4.267 12.373-0.427 15.36 0 30.72 0 46.080 0 5.973 0.427 9.387 6.4 12.8 29.013 16.64 41.387 49.067 31.573 80.213s-39.68 49.92-73.387 46.507c-29.867-2.987-55.467-29.013-58.88-59.307-3.413-32.427 14.933-61.867 46.080-72.533 7.253-2.56 8.96-5.973 9.387-12.8 4.693-65.707-15.787-125.013-50.347-179.2-30.293-47.787-62.72-93.867-93.013-141.653-38.827-61.44-68.693-126.72-82.347-198.827-16.213-83.627-7.68-162.133 43.947-232.107 43.52-59.307 103.68-93.013 174.080-108.8 104.107-23.467 202.667-5.973 296.533 42.667 23.467 12.373 46.080 27.307 68.267 42.24 52.053 34.987 108.8 54.613 171.947 54.187 28.587 0 56.32-5.12 81.493-19.2 11.52-6.4 21.76-14.933 32-23.040 8.96-7.253 11.947-16.213 9.813-29.013-5.973-35.413 21.333-69.973 58.453-75.947 36.267-5.973 71.68 19.2 78.507 56.747 6.827 35.413-16.64 71.68-52.053 80.213-20.907 5.12-40.107 0-58.027-11.52-20.053 18.773-42.24 34.56-53.76 61.013-12.373 29.013-29.013 55.893-40.96 84.907-18.347 43.52-12.8 85.333 15.36 123.733 3.84 5.547 7.68 7.68 14.080 4.693 4.693-2.133 9.387-3.413 14.080-4.693 16.213-4.267 25.173-10.24 25.6-31.147 0-35.413 34.133-61.867 71.253-60.16 35.413 1.707 63.147 32 63.147 68.693 0 36.267-29.013 66.133-64.427 67.413-16.64 0.427-32-3.84-44.8-14.507-5.547-4.693-9.387-3.84-14.933-1.707-12.373 5.12-24.32 9.813-37.12 13.227-8.96 2.56-15.36 7.253-20.907 14.933-51.2 71.253-73.387 151.467-72.533 238.933 0 2.987 0.853 6.4 2.987 8.533 11.947 13.653 24.32 26.88 36.693 40.107 20.48-14.080 39.253-18.347 59.733-12.373 32 9.387 50.773 41.387 43.947 74.667-6.4 31.147-38.4 53.76-69.12 49.493-34.56-5.12-58.453-33.28-55.467-67.413 0.853-8.96-1.28-14.933-7.68-20.48-6.827-5.973-13.227-11.947-18.773-18.773-10.24-12.373-22.187-15.787-38.4-14.933-55.040 3.84-110.507 5.973-163.84 23.467-21.76 7.253-42.24 16.64-59.733 32.427 9.387 22.613 18.347 45.227 27.733 66.987 1.28 2.56 5.973 4.267 9.387 5.12 31.147 7.68 52.053 33.707 52.053 64.853s-20.907 57.6-50.773 64.853c-30.293 7.253-61.44-7.253-75.093-35.413s-6.4-61.013 18.347-81.493c2.133-1.707 4.693-3.413 8.533-6.4zM573.013 226.133c0 0.853-0.853 2.133-0.853 2.987 0 29.013 0 58.027 0.853 87.040 0 3.413 2.56 7.68 5.12 9.387 19.627 15.36 39.68 30.293 60.16 44.8 6.827 5.12 14.507 8.533 21.333 12.8 0-31.573 0-62.293 0-93.013 0-2.133-1.707-4.693-3.413-5.973-27.307-19.2-55.040-38.4-83.2-58.027zM636.16 542.293c-8.107 14.080-16.213 28.587-23.893 42.24 39.253 28.587 76.8 55.893 113.92 82.773 4.267-29.867 8.533-58.88 12.8-87.467-33.707-12.373-67.84-24.747-102.827-37.547zM697.173 695.040c-37.973-26.88-74.24-52.48-110.933-78.080-2.133-1.28-5.547-1.707-7.68-0.853-17.493 7.68-34.987 15.36-50.347 22.613 17.067 23.467 33.707 46.080 50.347 69.12 1.28 1.707 5.12 2.56 7.253 2.133 35.84-4.693 71.68-9.387 110.933-14.933zM561.067 365.653c-11.52 19.2-23.467 39.253-35.84 60.16 32.427 21.333 63.573 41.813 95.573 62.72 12.8-22.187 23.893-41.813 34.133-60.587-31.573-21.333-62.293-41.813-93.867-62.72zM699.307 188.16c0 23.893 0 46.933 0 69.973 0 2.133 2.56 5.547 4.693 5.973 20.48 6.4 41.387 11.947 62.293 17.92 5.547 1.707 7.68-1.28 9.813-6.827 6.827-18.347 14.507-36.267 22.187-54.187 4.693-11.093 11.093-21.333 17.493-33.707-40.107 8.533-78.933 7.68-116.48 0.853zM433.493 116.48c-0.853 0.853-1.707 1.707-2.987 2.56 8.107 30.72 16.213 61.44 24.32 91.733 0.853 3.413 3.84 6.827 6.4 9.387 21.333 19.627 42.667 39.253 64 58.88 1.707 1.707 4.267 2.987 6.827 5.12 0-30.293 0-59.307 0-87.893 0-2.56-1.28-5.973-3.413-7.253-31.573-24.32-63.573-48.213-95.573-72.107zM656.213 506.88c32.427 11.52 63.573 23.040 93.867 33.707 14.507-29.44 27.307-56.32 40.96-84.053-31.573 1.28-62.72-3.413-92.587-12.8-2.133-0.427-6.4 1.28-7.253 2.987-11.52 19.2-22.187 38.827-34.56 60.16zM452.693 267.093c-12.8 20.48-25.173 40.107-37.973 60.587 26.027 23.893 52.053 47.787 78.933 72.107 12.8-21.76 24.747-41.813 37.12-61.867-26.453-23.893-52.053-47.36-78.080-70.827zM284.587 258.133c-9.387 15.787-19.2 32.853-28.587 50.347-1.28 2.133 0 6.827 1.707 8.96 11.947 14.080 24.32 28.16 37.12 41.387 10.667 11.093 21.76 20.907 33.28 32 12.373-19.627 23.893-38.4 35.84-57.173-26.453-25.6-52.48-50.347-78.933-75.52zM766.72 324.267c-22.187-5.12-43.947-9.813-64.427-14.507 0 29.013 0 58.453 0 87.467 0 2.133 2.133 5.547 3.84 6.4 28.587 10.24 57.6 14.933 87.467 12.373-6.4-15.36-14.080-29.867-18.347-44.8-4.693-15.36-5.973-31.147-8.96-46.507zM386.987 296.533c6.827-11.093 14.080-22.187 21.333-33.707 14.507-23.467 14.933-23.893-6.4-41.387s-43.52-34.56-65.707-52.053c-10.24 17.493-19.2 33.28-28.587 49.493 26.88 26.027 52.907 52.053 79.36 77.653zM472.32 435.627c-27.307-24.32-53.333-47.787-79.787-72.107-11.093 17.92-22.187 35.413-33.28 53.76 29.44 20.907 58.027 41.387 87.040 62.293 9.387-15.787 17.92-29.867 26.453-44.373zM475.307 754.347c21.333-11.52 42.24-22.613 64-34.133-13.227-22.613-31.573-41.813-52.053-59.307-1.28-1.28-4.267-1.707-5.547-1.28-18.347 8.107-36.693 16.213-55.040 24.32 17.067 24.32 32.853 47.36 48.213 69.973zM479.573 501.333c32.853 20.907 64.853 41.387 98.133 62.293 8.107-14.080 15.36-26.88 22.613-39.253-32.853-21.333-64.427-41.813-96.427-62.72-7.68 13.227-15.787 26.027-23.893 40.107zM393.387 543.147c32.427 22.613 63.147 44.373 94.293 65.707 1.707 1.28 4.693 1.28 6.827 0.853 15.36-6.827 30.72-13.653 47.787-21.333-32.853-20.907-64-40.96-95.147-60.587-1.707-1.28-4.693-0.853-6.827 0-15.36 5.12-30.293 10.24-46.507 15.36zM164.267 138.24c-0.853 0.853-1.707 1.28-2.56 2.133 15.787 48.213 37.12 93.44 66.133 136.96 10.24-17.493 19.627-34.133 29.867-52.053-31.147-29.44-62.293-58.027-93.013-87.040zM186.027 352.853c14.507 27.307 33.28 50.347 53.76 71.68 1.707 1.707 5.547 2.133 7.68 1.707 14.080-4.693 28.587-9.813 42.24-14.933-21.333-23.893-42.667-46.933-63.573-69.973-1.707-1.707-5.973-2.56-8.107-1.707-10.24 3.84-20.48 8.533-31.573 13.227zM401.067 498.347c-24.747-18.773-48.213-36.693-71.68-54.613-1.28-1.28-4.267-2.133-5.973-1.28-15.36 5.12-30.72 10.667-49.067 17.493 25.6 18.773 49.067 36.267 72.96 53.333 1.707 1.28 5.547 1.707 7.68 0.853 14.933-4.693 29.44-9.813 46.080-15.36zM449.28 630.187c-31.147-20.907-61.013-39.68-89.173-60.587-13.653-10.24-25.173-9.387-38.4-1.28 26.027 27.733 52.48 55.467 78.933 83.627 15.36-6.827 31.147-14.080 49.067-22.187zM657.493 238.507c0-19.2 0-35.413 0-52.053 0-6.827-2.133-9.387-8.533-12.373-23.467-10.667-46.080-22.187-69.12-33.707-2.56-1.28-4.693-2.133-8.107-3.84 0 11.093 0 20.48 0 30.293 0 2.56 1.28 5.973 3.413 7.253 26.88 21.333 53.76 42.24 82.347 64.427zM226.987 584.107c23.467 24.747 45.653 47.787 68.267 71.253 1.28 1.28 2.987 2.987 4.267 2.987 16.64 0 32.853 0 52.053 0-25.173-26.027-48.213-49.92-71.68-73.387-1.707-1.707-5.12-2.987-7.253-2.987-14.933 0-29.867 1.28-45.653 2.133zM74.24 366.080l-3.84 2.56c8.96 22.613 18.347 45.227 27.733 67.84 0.853 2.133 3.84 5.12 5.973 5.12 17.92 1.707 35.84 2.987 54.187 4.267-12.8-23.467-24.747-45.653-36.693-67.84-0.853-1.707-2.987-2.987-5.12-3.413-13.653-2.987-27.733-5.973-41.813-8.96zM264.107 776.96c15.787-8.107 32.427-17.067 50.773-26.027-10.667-15.36-21.333-31.573-32.427-46.933-1.28-2.133-4.267-4.267-6.4-4.693-14.080 0-28.16 0-42.667 0 10.667 26.88 21.333 52.907 31.147 78.080zM131.84 484.267c-0.427 0.853-1.28 2.133-1.707 2.987 17.067 17.92 34.133 36.267 51.2 54.187 1.28 1.28 3.413 2.987 5.547 2.987 16.64 0 33.707-0.853 52.053-1.707-16.213-18.347-30.293-34.56-44.8-50.773-1.707-1.707-3.84-3.413-6.4-3.413-18.773-1.707-37.547-2.987-56.32-4.267zM401.92 167.68c-6.827-25.6-12.8-49.493-19.2-73.387-0.427-1.707-1.28-3.84-2.56-4.267-17.067-6.827-34.56-13.227-52.053-19.627-0.427 0.853-1.28 2.133-1.707 2.987 4.693 16.64 9.387 33.28 14.507 49.92 0 1.28 1.28 2.56 2.56 3.413 19.2 13.227 38.4 26.88 58.88 40.96zM426.24 751.787c-12.8-17.067-25.173-33.28-37.547-49.92-0.853-1.28-2.56-2.987-4.267-2.987-17.92 0-35.84 0-54.613 0 8.533 15.36 16.213 29.013 23.893 42.667 1.28 2.133 3.84 4.267 6.4 4.693 21.333 2.133 42.24 3.84 65.707 5.973zM301.227 149.333c-34.133-19.2-68.693-33.28-108.373-39.68 29.44 27.307 57.173 52.48 85.76 78.933 7.68-12.8 14.933-25.6 22.613-39.253zM531.627 136.96c0-5.547-0.427-10.667 0-15.787 1.28-9.813-1.707-16.213-11.52-20.053-30.293-12.8-60.587-26.027-91.307-38.827-4.267-1.707-8.533-2.133-14.080-3.413 39.253 26.453 77.227 52.053 116.48 78.080zM67.84 323.84c11.52 2.56 22.187 4.693 31.147 6.4-6.4-39.68-12.8-78.933-19.2-115.627-8.96 33.707-13.653 70.4-12.373 109.227zM241.493 656.64c-23.893-23.040-47.36-46.080-71.253-68.267-2.133-2.133-6.4-1.707-12.373-2.987 12.373 18.347 24.32 32.427 32.853 49.067 10.667 21.333 25.6 29.867 50.773 22.187zM197.12 304.64c-15.36-26.453-29.867-51.627-45.227-78.507 1.707 32 6.4 61.44 17.92 90.027 9.813-4.267 18.347-7.68 27.733-11.52zM290.987 97.28c-2.56-9.387-5.12-18.347-7.68-26.88-0.853-2.133-3.84-4.693-5.547-4.693-19.627 0-38.827 1.28-57.6 7.253 23.467 8.107 46.507 16.213 71.253 24.747zM301.227 530.773c-20.48-16.64-40.96-32.853-61.44-49.067 13.227 16.213 27.733 31.147 41.387 46.933 6.827 7.68 12.373 7.68 20.053 2.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["net"],"grid":0},"attrs":[{}],"properties":{"order":357,"id":75,"name":"net","prevSize":32,"code":59730},"setIdx":0,"setId":2,"iconIdx":76},{"icon":{"paths":["M819.2 0h-622.933c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h622.933c55.467 0 102.4-46.933 102.4-102.4v-819.2c0-55.467-46.933-102.4-102.4-102.4zM358.4 785.067h-102.4v-102.4h503.467v102.4h-401.067zM256 580.267v-102.4h503.467v102.4h-503.467zM759.467 375.467h-503.467v-102.4h503.467v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["newalbaran"],"grid":0},"attrs":[{}],"properties":{"order":358,"id":76,"name":"newalbaran","prevSize":32,"code":59732},"setIdx":0,"setId":2,"iconIdx":77},{"icon":{"paths":["M512 0c-196.267 0-358.4 162.133-358.4 358.4 0 268.8 358.4 665.6 358.4 665.6s358.4-396.8 358.4-665.6c0-196.267-162.133-358.4-358.4-358.4zM512 486.4c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["niche"],"grid":0},"attrs":[{}],"properties":{"order":360,"id":77,"name":"niche","prevSize":32,"code":59733},"setIdx":0,"setId":2,"iconIdx":78},{"icon":{"paths":["M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z","M555.947 439.893h116.907c19.627 0 35.413 15.787 35.413 35.413s-15.787 35.413-35.413 35.413h-46.080l52.053 52.053c14.933 2.56 26.453 14.080 29.013 29.013l145.92 145.92c4.267-9.813 6.827-20.48 6.827-32v-355.413c0-20.48-8.107-40.533-22.613-54.613l-188.16-187.307c-14.933-14.933-34.56-23.040-55.467-23.040h-240.213c-42.24 0-76.373 33.707-77.653 75.52l279.467 279.040zM587.947 143.36l214.613 213.333h-175.36c-21.333 0-38.827-17.493-38.827-38.827v-174.507z","M353.707 783.36h313.6l-150.187-150.187h-58.027c-19.627 0-35.413-15.787-35.413-35.413 0-15.787 10.24-29.013 24.32-33.707l-171.52-171.52-0.427 313.173c0 43.093 34.987 77.653 77.653 77.653z","M627.2 861.013h-389.973c-21.333 0-38.827-17.493-38.827-38.827v-465.493c0-21.333-17.493-38.827-38.827-38.827s-38.827 17.493-38.827 38.827v504.32c0 42.667 34.987 77.653 78.080 77.653h428.373c21.333 0 38.827-17.493 38.827-38.827s-17.493-38.827-38.827-38.827z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}]},"tags":["no036"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":361,"id":78,"name":"no036","prevSize":32,"code":59734},"setIdx":0,"setId":2,"iconIdx":79},{"icon":{"paths":["M957.013 1012.48l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52 10.24 0 20.053 3.84 27.733 11.52l945.493 945.067c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52zM346.88 231.253c17.493-10.24 37.12-15.36 56.747-20.053 63.573-14.507 128.427-16.213 193.28-10.667 34.56 2.987 69.12 8.107 102.4 19.627 13.227 4.693 26.027 11.52 37.973 18.773 7.68 4.693 8.107 8.533 0 13.227-11.947 7.253-24.747 14.080-37.973 18.773-35.84 12.8-73.387 17.92-110.933 20.48-20.053 1.28-40.107 1.707-60.587 2.56-45.653-1.28-90.88-5.12-135.253-17.067l55.893 55.893c29.867 3.413 59.733 4.693 90.027 4.693 70.827-0.427 140.373-7.68 207.36-37.12-1.28 19.627 2.56 38.827-2.987 57.6-0.853 3.413-4.267 6.4-7.253 8.533-13.227 9.813-28.16 15.36-43.947 20.053-37.12 11.093-75.52 16.213-113.92 18.773-18.773 1.28-37.12 1.707-55.893 1.28l43.947 43.947c61.013-2.133 120.747-11.947 179.2-36.267 0 15.36 0 31.147 0 46.933-18.347 1.28-36.267 2.56-54.187 4.693-31.147 3.413-62.293 8.107-91.733 18.347l36.267 36.267c54.187-12.8 109.227-15.36 164.693-13.227 40.96 1.707 81.92 5.973 121.6 17.067 16.64 4.693 33.28 10.24 47.787 20.053 11.093 7.68 11.093 10.667 0 17.92-18.773 12.8-40.107 18.773-61.867 24.32-45.227 10.667-90.88 14.507-147.627 14.507-14.080 0-29.44-0.427-45.653-1.707l46.080 46.080c4.267 0 8.107 0 12.373 0 70.4-0.427 139.52-7.253 205.653-36.267 0 17.067 0 33.707 0 50.347 0 6.827-4.267 11.52-9.813 15.36-16.64 11.52-35.84 17.493-55.040 22.613-28.587 7.253-57.6 11.52-86.613 14.080l40.533 40.533c37.973-5.12 75.52-14.507 111.787-31.147 0 18.773 0.427 37.12-0.427 55.467 0 2.987-2.987 7.253-5.547 9.387-8.96 5.973-18.347 11.52-28.16 15.787-6.827 2.987-14.080 5.12-21.333 7.253l34.987 34.987c14.080-5.547 27.733-12.373 40.107-21.76 16.213-12.373 24.747-28.587 24.747-49.92-0.427-70.4 0-141.227 0-211.627 0-18.773-6.4-35.413-21.76-46.507-11.947-8.96-25.173-16.64-38.827-22.613-39.253-16.213-80.64-23.040-122.453-26.88-16.64-1.707-32.853-2.133-50.347-3.413 0-2.987 0-5.973 0-8.533 0-65.707-0.427-131.413 0-197.12 0-18.347-6.827-33.28-19.627-45.227-8.533-8.107-18.773-14.507-29.44-20.053-30.72-15.36-64.427-23.040-98.133-28.16-69.12-10.667-138.667-11.093-208.213-1.28-33.28 4.693-65.707 11.947-96.427 25.6-8.533 3.84-16.64 8.107-23.893 13.227l32.427 31.573zM754.773 870.4c-3.413 0-6.827 0-10.24-0.427-48.64-1.707-96.427-7.253-142.933-23.040-12.8-4.267-25.6-10.24-37.973-16.64-20.48-11.093-28.587-20.907-37.12-41.387-20.48-1.28-40.96-2.133-61.013-4.267-20.48-2.133-40.533-5.973-61.013-9.387-4.267-0.853-7.253 0-10.24 2.133-54.187 40.533-114.773 56.747-181.76 48.64-96-11.093-178.773-83.627-203.947-177.92-37.547-141.227 52.907-282.027 197.12-306.773 5.973-0.853 11.52-1.707 17.493-2.133l45.227 45.227c-7.68-0.853-15.787-1.28-23.893-1.28-110.507 0-200.107 90.027-200.107 200.533 0 110.933 89.6 200.96 200.533 200.96 110.507 0.427 200.96-90.027 200.96-200.533 0-8.107-0.427-15.787-1.28-23.467l43.947 43.947c-0.427 8.533-0.853 17.067-1.28 25.6 8.96 0 17.92 0 26.88 0l112.64 112.64c-19.2-4.693-37.973-10.667-56.32-18.347 0 13.653 1.28 26.453-0.427 39.253-2.133 17.067 6.4 25.6 20.053 31.573 2.987 1.28 5.547 2.987 8.533 3.84 25.173 10.667 51.627 16.64 78.507 20.48 9.813 1.28 20.053 2.56 29.867 3.84l47.787 46.933zM524.373 675.84c-15.787-0.853-30.72-1.28-45.653-2.56-4.267-0.427-5.547 0.853-7.68 4.267-9.387 17.067-19.2 34.133-28.587 50.773-1.28 2.56-3.413 4.693-6.4 8.96 30.293 2.56 59.307 5.12 88.32 7.68 0-23.893 0-46.080 0-69.12zM184.32 525.653c26.027-37.973 73.387-53.333 116.907-38.4 4.693 1.707 9.387 2.56 14.080 2.133 10.24-1.28 17.493-9.387 18.347-19.2 1.28-10.667-4.267-19.627-15.36-23.893-69.547-27.307-151.893 5.973-183.040 74.24-3.84 8.107-7.253 12.373-17.067 11.947-11.093-0.853-19.627 8.533-20.907 19.2-0.853 11.52 5.547 20.907 16.64 23.893 2.133 0.427 4.267 0.853 6.827 1.28 0 5.973 0 11.52 0 17.493-1.707 0.427-2.987 0.427-4.693 0.853-12.373 2.133-20.053 11.52-19.2 23.893 0.853 11.093 9.813 19.627 21.76 20.053 2.56 0 5.12 0.427 7.68 0 4.267-0.427 6.4 0.853 8.107 5.12 9.813 22.187 24.747 40.96 43.947 55.040 43.093 31.573 89.6 37.973 139.947 20.48 7.68-2.56 12.8-7.68 14.507-15.787 2.133-8.533 0-16.213-6.827-22.187-7.253-6.4-15.36-6.827-24.32-3.84-43.093 13.653-79.787 3.84-110.933-28.587-2.987-2.987-5.12-6.4-8.533-11.093 3.84 0 6.4 0 8.533 0 30.72 0 61.013 0 91.733 0 11.093 0 19.2-5.547 22.187-14.507 5.12-14.933-5.547-29.867-22.187-29.867-36.267 0-72.107 0-108.373 0-2.56 0-5.12 0-8.107 0 0-6.4 0-12.373 0-18.347 3.413 0 5.973 0 8.96 0 39.253 0 78.507 0 117.76 0 11.947 0 20.907-6.827 23.040-17.067 3.413-14.080-7.253-27.307-22.187-27.307-35.84 0-71.253 0-107.093 0-2.133 0-4.267 0-7.253 0 2.987-1.707 3.84-3.413 5.12-5.547z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["noPayMethod"],"grid":0},"attrs":[{}],"properties":{"order":362,"id":79,"name":"noPayMethod","prevSize":32,"code":59736},"setIdx":0,"setId":2,"iconIdx":80},{"icon":{"paths":["M614.4 0h-413.867c-59.733 0-106.667 46.933-106.667 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h627.2c55.467 0 102.4-46.933 102.4-102.4v-614.4l-311.467-307.2zM563.2 358.4v-281.6l290.133 281.6h-290.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["notes"],"grid":0},"attrs":[{}],"properties":{"order":363,"id":80,"name":"notes","prevSize":32,"code":59737},"setIdx":0,"setId":2,"iconIdx":81},{"icon":{"paths":["M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z","M873.387 757.333c40.107-32.427 65.28-81.92 65.28-138.667 0-92.587-71.253-170.667-163.413-177.92-24.747-120.747-131.413-213.333-263.253-213.333-48.64 0-94.293 12.8-133.547 34.987l494.933 494.933z","M256.853 372.907c-98.133 20.907-171.52 106.24-171.52 210.347 0 117.333 96 213.333 213.333 213.333h381.867l-423.68-423.68z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["noweb"],"grid":0},"attrs":[{},{},{}],"properties":{"order":364,"id":81,"name":"noweb","prevSize":32,"code":59738},"setIdx":0,"setId":2,"iconIdx":82},{"icon":{"paths":["M721.067 418.133c-166.4 0-298.667 136.533-298.667 302.933s132.267 302.933 298.667 302.933 298.667-136.533 298.667-302.933c0-170.667-132.267-302.933-298.667-302.933zM773.12 672.427v28.16h-166.4c-0.853 6.4-1.707 13.227-1.707 20.48 0 6.827 0.427 14.080 1.707 20.48h166.4v28.16h-159.147c9.387 26.027 25.6 46.933 48.64 62.72s49.92 23.467 80.213 23.467c39.68 0 72.533-14.080 99.413-42.24l32 31.573c-15.787 17.92-34.987 32-58.453 40.96-23.040 9.387-48.213 14.080-75.947 14.080-29.013 0-55.893-5.547-80.64-16.213s-45.653-26.027-62.72-46.080c-17.067-19.627-29.013-42.667-36.267-68.693h-56.747v-28.16h52.053c-0.853-8.533-0.853-15.36-0.853-20.48s0.427-11.947 0.853-20.48h-52.053v-28.16h57.173c6.827-26.027 19.2-49.067 36.267-68.693s37.973-34.987 62.72-46.080c24.747-10.667 51.627-16.213 80.64-16.213 27.733 0 53.333 4.693 75.947 14.080 23.040 9.387 42.24 23.040 58.027 40.533l-32 31.573c-26.453-27.733-59.733-41.813-99.413-41.813-30.293 0-57.173 7.68-80.213 23.467s-39.253 36.693-48.64 62.72h159.147z","M874.667 149.333c-98.133-98.133-226.133-149.333-362.667-149.333 0 0 0 0-4.267 0-136.533 0-260.267 55.467-358.4 149.333-98.133 98.133-149.333 226.133-149.333 362.667 0 281.6 230.4 512 512 512 8.533 0 12.8 0 21.333 0-21.333-12.8-42.667-29.867-59.733-46.933-68.267-21.333-132.267-98.133-166.4-204.8 21.333-4.267 42.667-8.533 59.733-12.8 0-12.8-4.267-25.6-4.267-38.4-21.333 0-46.933 4.267-68.267 8.533-17.067-59.733-25.6-128-29.867-196.267h153.6c8.533-12.8 17.067-29.867 29.867-42.667h-183.467c0-81.067 12.8-153.6 34.133-221.867 59.733 12.8 123.733 21.333 187.733 21.333v153.6c12.8-12.8 25.6-21.333 42.667-29.867v-119.467c68.267 0 132.267-12.8 192-25.6 8.533 29.867 17.067 64 25.6 93.867 12.8 0 29.867 4.267 42.667 4.267-8.533-38.4-17.067-76.8-25.6-110.933 42.667-12.8 81.067-25.6 110.933-42.667 59.733 72.533 98.133 166.4 106.667 260.267 17.067 17.067 29.867 38.4 42.667 55.467 0-4.267 0-12.8 0-17.067 0-136.533-55.467-264.533-149.333-362.667zM145.067 217.6c34.133 17.067 72.533 29.867 115.2 38.4-21.333 68.267-34.133 149.333-38.4 230.4h-179.2c4.267-93.867 38.4-187.733 102.4-268.8zM132.267 789.333c-51.2-72.533-85.333-162.133-89.6-256h179.2c0 76.8 12.8 145.067 29.867 209.067-42.667 12.8-85.333 29.867-119.467 46.933zM268.8 780.8c21.333 76.8 59.733 136.533 102.4 179.2-81.067-25.6-153.6-72.533-209.067-136.533 29.867-17.067 68.267-29.867 106.667-42.667zM273.067 221.867c-34.133-12.8-68.267-21.333-98.133-34.133 0-4.267 4.267-4.267 4.267-8.533 55.467-55.467 119.467-93.867 192-115.2-25.6 21.333-46.933 55.467-68.267 89.6-8.533 21.333-21.333 42.667-29.867 68.267zM490.667 251.733h-4.267c-55.467 0-115.2-8.533-174.933-21.333 12.8-21.333 21.333-38.4 29.867-55.467 42.667-76.8 93.867-119.467 149.333-132.267v209.067zM529.067 251.733v-209.067c59.733 8.533 110.933 55.467 153.6 132.267 8.533 17.067 17.067 34.133 25.6 51.2-55.467 12.8-115.2 21.333-179.2 25.6zM746.667 217.6c-8.533-21.333-17.067-42.667-29.867-59.733-21.333-38.4-42.667-68.267-68.267-89.6 76.8 17.067 140.8 55.467 196.267 110.933-25.6 12.8-59.733 25.6-98.133 38.4z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["onlinepayment-01"],"grid":0},"attrs":[{},{}],"properties":{"order":366,"id":82,"name":"onlinepayment","prevSize":32,"code":59739},"setIdx":0,"setId":2,"iconIdx":83},{"icon":{"paths":["M512 379.733l-448-204.8 448-174.933 448 174.933-448 204.8zM46.933 204.8l448 204.8v614.4l-448-238.933v-580.267zM977.067 785.067l-448 238.933v-614.4l448-204.8v580.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["package"],"grid":0},"attrs":[{}],"properties":{"order":367,"id":83,"name":"package","prevSize":32,"code":59740},"setIdx":0,"setId":2,"iconIdx":84},{"icon":{"paths":["M790.187 460.373c17.493 1.28 34.133 2.133 50.347 3.413 41.813 3.84 83.627 10.667 122.453 26.88 13.653 5.547 26.88 13.653 38.827 22.613 15.36 11.093 21.76 27.733 21.76 46.507 0 70.4-0.427 141.227 0 211.627 0 21.333-8.107 37.12-24.747 49.92-20.907 15.787-44.8 24.32-69.973 31.147-60.587 16.213-122.453 20.053-185.173 17.92-48.64-1.707-96.427-7.253-142.933-23.040-12.8-4.267-25.6-10.24-37.973-16.64-20.48-11.093-28.587-20.907-37.12-41.387-20.48-1.28-40.96-2.133-61.013-4.267-20.48-2.133-40.533-5.973-61.013-9.387-4.267-0.853-7.253 0-10.24 2.133-54.187 40.533-114.773 56.747-181.76 48.64-95.147-11.52-177.92-84.053-203.093-178.347-37.547-141.227 52.907-282.027 197.12-306.773 27.307-4.693 54.613-3.84 82.347 0.853 0-2.133 0.427-3.84 0.427-5.547-0.853-29.867-1.707-59.733-2.56-90.027-0.427-14.080 5.12-26.027 14.933-36.267 10.667-11.093 23.893-18.773 37.973-25.173 30.72-13.653 63.147-20.907 96.427-25.6 69.547-9.813 138.667-9.387 208.213 1.28 33.707 5.12 67.413 12.373 98.133 28.16 10.667 5.12 20.907 11.947 29.44 20.053 12.8 11.947 19.627 26.88 19.627 45.227-0.427 65.707 0 131.413 0 197.12-0.427 2.987-0.427 5.547-0.427 8.96zM44.373 583.68c0 110.933 89.6 200.96 200.533 200.96 110.507 0.427 200.96-90.027 200.96-200.533 0-110.933-90.027-200.96-200.96-200.96-110.507-0-200.533 90.027-200.533 200.533zM527.787 293.973c20.053-0.853 40.107-1.28 60.587-2.56 37.547-2.987 75.093-8.107 110.933-20.48 13.227-4.693 26.027-11.52 37.973-18.773 7.68-4.693 7.68-8.533 0-13.227-12.373-7.253-24.747-14.080-37.973-18.773-32.853-11.947-67.413-16.64-102.4-19.627-64.853-5.547-129.28-3.413-193.28 10.667-22.187 5.12-44.373 11.52-64 24.32-11.947 8.107-12.373 12.8 0.427 19.627 14.080 7.68 29.013 14.507 43.947 19.2 46.933 14.507 95.147 18.347 143.787 19.627zM760.32 600.32c56.747 0 102.4-3.84 147.627-14.507 21.76-5.12 43.093-11.52 61.867-24.32 11.093-7.253 11.093-10.667 0-17.92-14.507-9.813-31.147-15.36-47.787-20.053-39.68-11.093-80.213-15.787-121.6-17.067-55.467-2.133-110.933 0.427-165.12 13.653-19.627 4.693-38.827 10.667-56.32 20.907-16.213 9.813-16.213 14.507 0 23.467 11.947 6.4 24.747 12.373 37.973 16.213 49.92 15.36 101.547 19.627 143.36 19.627zM979.2 720.213c-65.707 30.293-134.827 36.693-204.8 37.12s-139.093-5.973-204.373-33.28c0 13.653 1.28 26.453-0.427 39.253-2.133 17.067 6.4 25.6 20.053 31.573 2.987 1.28 5.547 2.987 8.533 3.84 25.173 10.667 51.627 16.64 78.507 20.48 54.187 8.107 108.8 8.96 163.413 3.84 35.84-3.413 71.253-9.387 104.533-22.613 9.813-3.84 19.2-9.813 28.16-15.787 2.987-1.707 5.547-5.973 5.547-9.387 1.28-17.92 0.853-36.267 0.853-55.040zM978.773 608.427c-66.133 29.013-135.253 36.267-205.653 36.267-69.973 0.427-139.52-6.4-204.8-34.133 0 17.067 0.427 34.133 0 51.2 0 6.827 2.133 11.52 8.107 14.507 14.507 6.4 28.587 13.653 43.947 18.347 44.373 13.653 90.453 17.92 136.533 18.773 52.907 0.853 105.813-2.56 157.44-16.213 19.2-5.12 38.4-11.093 55.040-22.613 5.547-3.84 9.813-8.533 9.813-15.36-0-17.067-0.427-33.707-0.427-50.773zM745.813 299.947c-66.987 29.44-136.533 36.693-207.36 37.12-70.4 0.427-140.373-6.4-205.653-33.707 0 16.213 0 32.427 0 48.64 0 1.707 2.56 3.84 4.693 4.693 16.213 9.387 33.28 17.92 49.067 27.733 6.827 4.267 13.653 7.68 21.333 8.96 55.893 11.947 112.213 14.507 169.387 11.093 38.827-2.133 76.8-7.253 113.92-18.773 15.36-4.693 30.72-10.24 43.947-20.053 2.987-2.133 5.973-5.12 7.253-8.533 5.973-18.347 2.133-37.547 3.413-57.173zM745.387 413.44c-96 40.533-195.84 40.96-297.813 32.427 14.507 21.76 25.173 43.947 32.427 67.84 0.427 1.28 3.413 2.987 5.12 2.987 15.36 0.853 31.147 1.28 46.507 1.707 2.133 0 4.693-1.28 6.827-2.56 11.52-7.253 22.187-16.213 34.133-21.76 37.547-17.92 78.080-24.747 118.613-29.013 17.92-2.133 35.84-2.987 54.187-4.693 0-15.36 0-31.147 0-46.933zM524.373 745.387c0-24.32 0-46.933 0-69.547-15.787-0.853-30.72-1.28-45.653-2.56-4.267-0.427-5.547 0.853-7.68 4.267-9.387 17.067-19.2 34.133-28.587 50.773-1.28 2.56-3.413 4.693-6.4 8.96 30.293 2.987 58.88 5.547 88.32 8.107zM486.827 630.187c11.947 0 23.893 0 35.413 0 0-22.187 0-44.373 0-67.413-11.52 0-22.187 0-31.573 0-1.28 22.187-2.56 43.947-3.84 67.413z","M189.013 532.48c2.987 0 5.12 0 7.253 0 35.84 0 71.253 0 107.093 0 15.36 0 25.6 13.227 22.187 27.307-2.56 10.24-11.52 17.067-23.040 17.067-39.253 0-78.507 0-117.76 0-2.56 0-5.547 0-8.96 0 0 5.973 0 11.947 0 18.347 2.987 0 5.547 0 8.107 0 36.267 0 72.107 0 108.373 0 16.64 0 27.733 14.507 22.187 29.867-3.413 9.387-11.093 14.507-22.187 14.507-30.72 0-61.013 0-91.733 0-2.133 0-4.693 0-8.533 0 3.413 4.267 5.547 8.107 8.533 11.093 31.147 32 68.267 42.24 110.933 28.587 8.96-2.987 17.067-2.56 24.32 3.84 6.4 5.973 8.533 13.227 6.827 22.187-1.707 7.68-6.827 12.8-14.507 15.787-50.347 17.493-96.853 10.667-139.947-20.48-19.627-14.507-34.133-32.853-43.947-55.040-1.707-4.267-3.84-5.547-8.107-5.12-2.56 0.427-5.12 0-7.68 0-11.947-0.427-20.907-8.96-21.76-20.053-0.853-12.373 6.827-21.76 19.2-23.893 1.28-0.427 2.987-0.427 4.693-0.853 0-5.973 0-11.52 0-17.493-2.56-0.427-4.693-0.853-6.827-1.28-11.093-2.987-17.493-12.373-16.64-23.893 0.853-10.667 9.813-20.053 20.907-19.2 9.813 0.853 13.227-3.413 17.067-11.947 31.573-68.267 113.493-101.547 183.040-74.24 10.667 4.267 16.213 13.227 15.36 23.893-1.28 9.813-8.533 17.92-18.347 19.2-4.693 0.427-9.813-0.427-14.080-2.133-43.52-14.933-90.88 0.427-116.907 38.4-2.56 0.853-3.413 2.56-5.12 5.547z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["payment"],"grid":0},"attrs":[{},{}],"properties":{"order":368,"id":84,"name":"payment","prevSize":32,"code":59741},"setIdx":0,"setId":2,"iconIdx":85},{"icon":{"paths":["M512 0c-230.4 0-418.133 187.733-418.133 418.133v324.267c0 76.8 64 140.8 140.8 140.8h140.8v-371.2h-187.733v-93.867c0-179.2 145.067-324.267 324.267-324.267s324.267 145.067 324.267 324.267v93.867h-187.733v371.2h187.733v46.933h-324.267v93.867h277.333c76.8 0 140.8-64 140.8-140.8v-465.067c0-230.4-187.733-418.133-418.133-418.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["pbx"],"grid":0},"attrs":[{}],"properties":{"order":370,"id":85,"name":"pbx","prevSize":32,"code":59742},"setIdx":0,"setId":2,"iconIdx":86},{"icon":{"paths":["M1024 388.267c-4.267-46.933-25.6-81.067-55.467-110.933-34.133-29.867-72.533-42.667-110.933-38.4 0 0-4.267 0-4.267 0 0-8.533 0-17.067-4.267-29.867-8.533-51.2-29.867-98.133-68.267-128-25.6-21.333-51.2-34.133-72.533-38.4-29.867-4.267-59.733 0-76.8 4.267-42.667 8.533-81.067 34.133-110.933 72.533-21.333-25.6-42.667-46.933-68.267-64-64-38.4-140.8-29.867-196.267 21.333-25.6 21.333-42.667 46.933-51.2 81.067-12.8 29.867-17.067 59.733-17.067 93.867-8.533 0-17.067 0-25.6 0-42.667 0-81.067 17.067-110.933 46.933-29.867 34.133-42.667 76.8-46.933 98.133-4.267 12.8-4.267 25.6-4.267 42.667 4.267 55.467 25.6 110.933 59.733 157.867 29.867 38.4 68.267 64 110.933 76.8-4.267 12.8-8.533 21.333-8.533 34.133 0 4.267-4.267 8.533-4.267 17.067-12.8 42.667-25.6 98.133 4.267 162.133 29.867 59.733 89.6 102.4 157.867 106.667 4.267 0 12.8 0 17.067 0 46.933 0 85.333-17.067 119.467-29.867 4.267 0 8.533-4.267 12.8-4.267 17.067-4.267 34.133-12.8 51.2-12.8 8.533 0 17.067 4.267 34.133 12.8s42.667 21.333 68.267 25.6c29.867 4.267 64 4.267 93.867 0 38.4-8.533 68.267-21.333 89.6-38.4 59.733-46.933 68.267-128 51.2-187.733-8.533-25.6-21.333-55.467-34.133-85.333 29.867-4.267 55.467-12.8 76.8-29.867 81.067-51.2 110.933-128 119.467-187.733 4.267-12.8 4.267-51.2 4.267-68.267zM541.867 285.867c4.267-42.667 21.333-81.067 42.667-115.2 34.133-42.667 93.867-68.267 136.533-25.6 0 0 0 0 0 0 21.333 21.333 34.133 51.2 34.133 81.067 4.267 38.4 0 72.533-17.067 106.667-17.067 38.4-38.4 68.267-76.8 89.6-46.933 25.6-102.4 8.533-119.467-42.667-4.267-29.867-4.267-68.267 0-93.867zM277.333 183.467c8.533-17.067 17.067-34.133 34.133-46.933 29.867-29.867 64-34.133 102.4-8.533 51.2 29.867 81.067 85.333 85.333 145.067 4.267 51.2-12.8 115.2-64 145.067-17.067 4.267-34.133 8.533-51.2 4.267-21.333-4.267-38.4-17.067-51.2-29.867-55.467-46.933-76.8-140.8-55.467-209.067zM123.733 546.133c-34.133-46.933-55.467-110.933-34.133-170.667 12.8-25.6 34.133-42.667 64-46.933 25.6-4.267 51.2 8.533 72.533 25.6 8.533 4.267 12.8 12.8 17.067 17.067 17.067 21.333 29.867 46.933 34.133 72.533 8.533 29.867 12.8 59.733 8.533 85.333-4.267 34.133-29.867 64-64 68.267-38.4 4.267-76.8-21.333-98.133-51.2zM755.2 883.2c-29.867 25.6-81.067 29.867-115.2 21.333-42.667-8.533-72.533-38.4-115.2-42.667-29.867 0-55.467 8.533-85.333 17.067-38.4 12.8-76.8 34.133-115.2 29.867-25.6 0-55.467-12.8-72.533-34.133-42.667-42.667-29.867-110.933-8.533-162.133 17.067-55.467 55.467-102.4 98.133-140.8 17.067-17.067 38.4-34.133 64-42.667 25.6-12.8 55.467-17.067 85.333-17.067 34.133 0 68.267 0 98.133 12.8s55.467 29.867 72.533 55.467c21.333 25.6 42.667 51.2 59.733 81.067 17.067 25.6 34.133 55.467 46.933 85.333 17.067 34.133 21.333 76.8 4.267 110.933 0 12.8-8.533 21.333-17.067 25.6zM942.933 443.733c-8.533 55.467-34.133 106.667-81.067 136.533-17.067 12.8-38.4 17.067-64 17.067-42.667 0-72.533-34.133-81.067-72.533-17.067-76.8 59.733-200.533 140.8-204.8 21.333 0 38.4 4.267 51.2 21.333 21.333 17.067 29.867 42.667 34.133 68.267-0-4.267 4.267 8.533-0 34.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["pets"],"grid":0},"attrs":[{}],"properties":{"order":371,"id":86,"name":"pets","prevSize":32,"code":59743},"setIdx":0,"setId":2,"iconIdx":87},{"icon":{"paths":["M910.080 113.92v796.576h-796.16v-796.576h796.16zM910.080 0h-796.16c-62.72 0-113.92 51.2-113.92 113.92v796.576c0 62.304 51.2 113.504 113.92 113.504h796.576c62.72 0 113.92-51.2 113.92-113.92v-796.16c-0.416-62.72-51.616-113.92-114.336-113.92zM633.6 503.904l-170.656 220.16-121.6-147.2-170.656 219.744h682.656c0 0-219.744-292.704-219.744-292.704z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["photo"],"grid":0},"attrs":[{}],"properties":{"order":372,"id":87,"name":"photo","prevSize":32,"code":59744},"setIdx":0,"setId":2,"iconIdx":88},{"icon":{"paths":["M826.88 229.547l3.413-0.853c17.92-2.987 36.693-6.4 55.040-9.813 21.76-4.267 49.493-9.813 77.227-18.773 22.187-6.827 42.667-20.053 58.453-31.147l2.987-2.987-2.133-3.413c-0.853-1.28-1.28-2.133-2.133-2.133-24.32-25.173-54.187-54.187-87.893-77.227-60.16-40.96-119.467-60.587-180.907-59.307-67.413 1.28-125.867 27.733-175.36 78.080-26.453 27.307-47.36 59.733-60.587 96.853l-2.987 6.827-2.987-6.827c-4.693-14.507-11.947-29.44-20.907-44.373-27.307-47.787-64.853-83.2-111.36-105.387-62.72-29.867-129.28-33.28-199.68-8.96-35.413 12.373-69.547 31.147-103.68 58.453-27.307 20.907-50.347 42.24-70.4 66.133l-2.987 2.56 3.413 2.133c31.147 20.907 40.533 27.307 80.213 37.547 36.267 9.813 72.96 16.213 109.227 21.76 10.24 2.133 21.76 3.413 32 5.547 35.413 6.4 77.227 14.080 116.907 25.173h2.133v5.547h-2.987c-17.92-2.133-36.267-2.133-55.893 0-65.28 6.4-120.32 32-163.413 75.947-27.307 27.733-46.507 60.587-59.733 101.12s-17.493 86.187-12.373 139.093c2.987 32.853 9.813 64 20.053 101.12 0.853 2.133 1.28 4.693 4.693 5.547h1.28l1.28-0.853c11.947-5.547 25.173-11.947 36.693-19.627 25.173-16.213 45.227-38.4 62.72-57.173 17.92-20.053 36.267-40.96 53.76-61.44l25.6-29.867 0.853 5.547c0.853 4.693 1.28 8.96 2.133 14.080l26.453 188.587c9.813 64 20.053 128 30.72 188.16 2.987 17.493 11.093 31.147 25.6 43.093 14.080 11.093 30.72 19.627 54.187 26.453 36.693 11.093 77.227 16.213 123.307 15.36 34.987-0.853 64.853-4.267 92.587-10.24 20.907-4.693 45.227-12.373 67.413-27.733 17.493-12.373 26.453-25.173 28.587-40.96 3.413-20.053 6.4-40.96 8.96-61.44 2.133-12.373 3.413-25.6 5.547-38.4 4.267-26.453 7.68-53.76 11.947-80.213l13.227-89.6c5.547-38.4 11.093-77.227 17.493-115.627 0-2.133 0.853-3.413 0.853-5.547 0-1.28 0.853-3.413 0.853-4.693l0.853-5.547 32.853 38.4c24.32 28.587 49.92 58.453 77.227 85.76 18.773 17.92 40.533 32.853 69.547 46.080l2.133 0.853 3.413-2.987v-1.28c8.96-32.853 19.627-76.373 22.187-122.453 2.133-43.093-2.133-81.493-13.227-117.76-12.373-41.387-32.853-76.8-61.013-105.387-36.267-36.693-82.773-61.44-136.96-71.68-22.187-4.267-46.080-5.547-70.4-4.267-3.413 0-6.4 0.853-9.813 0.853l-0.853-4.693c18.773-4.693 36.693-8.96 50.773-12.373 31.147-8.533 63.147-14.080 93.867-19.627zM487.253 423.68v0 0c0.853 0 68.267 12.373 85.76-27.733 6.827-9.813 15.36-14.507 24.32-15.36v0h0.853c2.133 0 3.413 0.853 5.547 1.28 19.627 4.693 35.413 15.36 48.213 23.467 14.080 9.813 38.4 29.867 49.493 41.813l2.133 2.987-2.987 1.28c-11.947 6.4-24.32 10.24-35.413 14.080-28.587 8.533-59.733 14.080-98.133 17.493-17.92 1.28-36.267 2.133-55.893 2.133-15.36 0-30.72-0.853-46.507-1.28-49.493-2.987-89.173-9.813-124.587-22.187-6.4-2.133-13.227-4.693-19.627-8.533l-2.987-1.28 2.133-2.987c7.68-8.533 16.64-16.213 26.453-24.32 17.92-15.36 38.4-30.72 62.72-39.68 4.693-2.133 11.947-4.267 19.627-5.547 7.68 0 19.627 5.547 34.133 29.44 3.413 8.107 12.373 13.653 24.747 14.933zM211.627 174.933l-25.6-4.267c-28.587-4.693-58.027-9.387-87.040-17.067l-5.12-1.28 4.267-3.413c1.28-0.853 2.987-2.133 4.267-2.987l3.413-2.987c31.147-24.32 62.72-41.813 95.573-52.053 17.493-5.547 34.987-8.96 52.053-9.813 57.173-4.267 107.093 15.36 150.187 57.173 29.867 29.44 49.92 65.28 60.587 108.8l1.28 6.827-5.547-4.267c-35.413-25.173-75.093-37.547-113.493-48.213-44.373-11.093-90.453-18.773-134.827-26.453zM196.267 497.92l-5.547 6.4c-5.547 6.827-11.947 14.080-17.493 20.053-20.053 23.467-40.533 47.36-61.867 68.267l-3.413 3.413-1.28-4.693c-0.853-2.987-0.853-5.547-1.28-8.533l-0.853-4.693c-4.693-38.4-2.987-75.093 6.4-110.080 20.053-78.507 84.053-135.253 166.4-146.347 34.987-4.693 69.12-2.133 101.547 8.96l6.827 2.133-6.4 2.987c-31.147 14.080-57.173 34.133-77.227 52.053-38.827 33.707-72.96 72.533-105.813 110.080zM709.973 516.267v0c-1.28 8.96-2.987 17.92-3.413 26.453l-23.467 159.573c-4.693 29.867-8.96 59.733-13.227 90.453l-2.987 19.627c-4.267 29.867-8.96 59.307-12.373 88.32-0.853 6.827-4.267 11.947-10.24 15.36-14.080 8.533-29.867 14.507-52.053 18.773-17.493 3.413-36.267 5.547-60.587 6.827-6.827 0.853-14.080 0.853-20.907 0.853-33.28 0-66.987-4.693-98.987-14.080-10.24-2.987-20.907-7.68-31.147-14.080-4.693-2.987-6.827-6.827-8.533-12.373-7.68-42.667-15.36-89.173-24.32-145.493-8.533-55.040-16.64-110.507-25.173-165.547l-7.68-51.627c-1.28-7.68-2.133-14.507-3.413-22.187l-0.853-5.547 4.267 1.28c55.893 19.627 116.053 28.587 196.267 28.587h1.28c78.080 0 139.947-9.813 195.413-30.72l4.267-1.28-2.133 6.827zM705.707 320c41.813-1.28 80.64 8.533 114.347 27.733 48.64 29.44 80.64 73.813 93.44 133.12 4.693 23.467 6.827 48.213 6.4 71.68-0.853 11.947-1.28 25.6-4.267 40.533l-0.853 4.693-3.413-3.413c-4.267-4.267-8.96-8.533-13.227-13.227-14.080-16.213-27.733-31.147-40.96-47.36l-2.987-3.413c-23.040-26.453-47.36-54.187-70.827-80.64-22.187-24.32-52.053-56.32-88.32-83.627-13.227-9.813-31.147-22.187-51.627-31.147l-6.4-2.987 6.827-2.133c20.053-5.547 40.96-9.387 61.867-9.813zM660.48 206.507v0c-24.32 6.827-52.053 16.213-78.080 30.72v0c0 0-1.28 0.853-2.987 2.133-3.413 2.133-6.4 3.413-9.813 5.547s-7.68 4.693-11.947 7.68v-2.133c6.827-29.44 17.493-51.627 21.76-59.307 23.040-43.093 57.173-75.093 104.533-96 16.64-7.68 36.267-11.947 58.453-14.080 4.693-0.853 9.813-0.853 14.507-0.853 34.133 0 69.12 8.96 106.667 27.733 20.053 10.24 39.68 23.040 59.733 40.533l4.267 3.413-4.693 1.28c-23.467 6.4-48.213 10.24-74.667 15.36-11.093 2.133-21.76 3.413-32.853 5.547-51.627 9.387-104.533 17.92-154.88 32.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["planta"],"grid":0},"attrs":[{}],"properties":{"order":373,"id":88,"name":"plant","prevSize":32,"code":59745},"setIdx":0,"setId":2,"iconIdx":89},{"icon":{"paths":["M1011.2 503.467l-264.533-106.667 29.867-29.867c4.267-4.267 4.267-12.8 4.267-17.067-4.267-4.267-8.533-8.533-12.8-8.533h-157.867c0-93.867 76.8-157.867 174.933-157.867 4.267 0 8.533-4.267 12.8-8.533s4.267-8.533 0-17.067l-81.067-153.6c-4.267-0-12.8-4.267-17.067-4.267-46.933 0-93.867 17.067-132.267 42.667-25.6 17.067-42.667 38.4-55.467 59.733-12.8-25.6-29.867-42.667-55.467-59.733-38.4-25.6-85.333-42.667-132.267-42.667-4.267 0-12.8 4.267-12.8 8.533l-81.067 153.6c-4.267 4.267-4.267 8.533 0 17.067 4.267 4.267 8.533 8.533 12.8 8.533 98.133 0 174.933 59.733 174.933 153.6v0h-140.8c-4.267 0-12.8 4.267-12.8 8.533-4.267 4.267 0 12.8 4.267 17.067l21.333 21.333-277.333 110.933c-8.533 8.533-12.8 12.8-8.533 21.333 0 8.533 8.533 12.8 17.067 12.8 0 0 0 0 0 0l98.133-4.267-76.8 98.133c0 4.267-4.267 8.533 0 12.8 0 4.267 4.267 8.533 8.533 8.533l85.333 34.133v179.2c0 8.533 4.267 12.8 8.533 12.8l362.667 145.067c0 0 4.267 0 4.267 0s4.267 0 4.267 0l362.667-145.067c4.267-4.267 8.533-8.533 8.533-12.8v-179.2l85.333-34.133c4.267 0 8.533-4.267 8.533-8.533s0-8.533-4.267-12.8l-72.533-98.133 102.4 4.267c8.533 0 12.8-4.267 17.067-12.8 0-8.533-4.267-12.8-12.8-17.067zM110.933 499.2l200.533-81.067 8.533 8.533-170.667 68.267-38.4 4.267zM153.6 665.6v-4.267l-72.533-29.867 72.533-98.133 328.533 132.267-72.533 98.133-256-102.4-0 4.267zM494.933 985.6l-328.533-132.267v-153.6l243.2 98.133c0 0 4.267 0 4.267 0h4.267c0 0 4.267 0 4.267 0v0c0 0 0 0 4.267 0v0c0 0 4.267 0 4.267-4.267l64-85.333v277.333zM494.933 631.467l-302.933-119.467 149.333-59.733 153.6 162.133v17.067zM529.067 614.4l162.133-157.867 140.8 55.467-302.933 119.467v-17.067zM857.6 853.333l-328.533 132.267v-281.6l64 85.333c0 0 0 4.267 4.267 4.267v0c0 0 4.267 0 4.267 0v0c0 0 4.267 0 4.267 0v0 0c0 0 4.267 0 4.267 0l243.2-98.133v157.867zM942.933 631.467l-328.533 132.267-72.533-98.133 328.533-132.267 72.533 98.133zM874.667 494.933l-162.133-64 12.8-8.533 187.733 76.8-38.4-4.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["polizon"],"grid":0},"attrs":[{}],"properties":{"order":374,"id":89,"name":"polizon","prevSize":32,"code":59746},"setIdx":0,"setId":2,"iconIdx":90},{"icon":{"paths":["M512 1024c16.213 0 28.587-13.227 28.587-28.587v-215.040h2.987c73.387-2.133 130.987-25.173 170.667-67.84 68.267-72.107 62.72-177.493 60.16-197.973v0c-1.28-15.36-14.080-28.16-29.44-29.44-7.253-0.853-33.707-2.987-67.84 2.133l-12.373 2.133 11.093-6.827c14.080-8.96 26.453-19.2 37.547-30.72 68.267-72.107 62.72-177.493 60.16-197.973-1.28-15.36-14.080-28.16-29.44-29.44-14.080-1.28-64-4.267-117.76 14.507l-4.267 1.28 0.853-5.12c2.987-15.36 4.267-31.573 4.267-46.933-2.56-98.56-78.933-168.107-93.867-180.48-12.373-10.24-29.44-10.24-41.813 0-15.36 11.947-92.16 81.067-94.72 180.48-0.853 16.213 0.853 31.573 4.267 47.787l0.853 5.12-4.267-1.28c-53.76-19.2-104.533-16.213-118.613-14.507-15.36 1.28-28.16 14.080-29.44 29.44-2.133 20.48-8.107 125.867 60.16 197.973 11.093 11.093 22.613 21.333 36.693 30.293l10.24 6.827-12.373-2.133c-16.213-2.133-30.293-2.987-41.387-2.987s-19.2 0.853-23.467 0.853c-15.36 1.28-28.16 14.080-29.44 29.44-2.133 20.48-8.107 125.013 60.16 197.973 39.68 41.813 97.28 64.853 169.813 67.84h2.987v215.040c0.427 14.933 12.8 28.16 29.013 28.16zM715.093 541.867h2.987v2.987c-0.853 30.72-7.253 87.467-45.653 128-28.587 30.72-71.253 46.933-127.147 49.92h-2.987v-2.987c2.133-58.88 20.053-103.68 51.627-133.12 38.827-37.973 92.587-44.8 121.173-44.8zM713.813 280.747h2.987v2.987c-0.853 30.72-7.253 87.467-45.653 128-28.587 30.293-71.253 46.933-127.147 49.493h-2.987v-2.987c2.133-58.88 20.053-103.68 51.627-133.12 39.253-37.12 93.013-43.52 121.173-44.373zM454.4 189.44c1.28-55.040 35.413-99.413 55.893-120.747l2.133-2.133 2.133 2.133c20.053 21.333 53.76 65.707 55.893 120.747 1.28 43.52-17.493 87.040-55.040 128.853l-2.133 2.133-2.133-2.133c-39.68-41.813-58.027-85.333-56.747-128.853zM351.573 411.733c-37.547-39.68-44.8-97.28-45.653-128v-2.987h2.987c34.56 0.853 84.053 8.96 121.6 43.947v0c31.573 29.44 48.64 74.24 51.627 133.12v2.987h-2.987c-56.32-2.133-98.987-18.773-127.573-49.067zM479.573 722.347c-55.893-2.133-98.56-19.2-127.147-49.493-37.547-39.68-44.8-97.28-45.653-128v-2.987h2.987c28.587 0.853 82.347 7.253 121.6 43.947 31.573 29.44 48.64 74.24 51.627 133.12v2.987h-3.413zM471.467 543.573c-8.96-8.107-18.347-15.36-29.44-22.613l-11.093-6.827 12.373 1.28c21.333 2.987 41.813 3.84 64 2.987 0.853 0 1.28 0 2.133 0h2.56c0.853 0 1.28 0 2.133 0 5.12 0 9.387 0 14.507 0 17.493 0 35.413-1.28 52.053-3.84l13.227-2.133-11.093 7.253c-11.093 6.827-20.48 14.507-29.44 22.613-14.507 14.080-28.16 31.573-38.827 51.627l-2.133 4.267-2.133-4.267c-10.667-18.773-23.893-36.267-38.827-50.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["preserved"],"grid":0},"attrs":[{}],"properties":{"order":376,"id":90,"name":"preserved","prevSize":32,"code":59747},"setIdx":0,"setId":2,"iconIdx":91},{"icon":{"paths":["M746.667 482.133c68.267 0 140.8 21.333 196.267 72.533 110.933 102.4 115.2 277.333 8.533 384s-277.333 115.2-384 8.533c-93.867-85.333-110.933-221.867-51.2-328.533l51.2 46.933c-34.133 76.8-17.067 170.667 46.933 230.4 81.067 76.8 209.067 72.533 290.133-8.533 76.8-81.067 72.533-209.067-8.533-290.133-42.667-38.4-93.867-55.467-145.067-55.467l4.267 153.6-170.667-162.133 162.133-170.667-0 119.467zM337.067 750.933c0 0 0 0 0 0-17.067-8.533-38.4-17.067-55.467-25.6-21.333-8.533-29.867-25.6-29.867-51.2s0-51.2 0-81.067c29.867 17.067 64 29.867 102.4 38.4 4.267-17.067 12.8-34.133 21.333-51.2-17.067-4.267-34.133-8.533-51.2-17.067-21.333-8.533-38.4-21.333-55.467-29.867-12.8-8.533-17.067-17.067-12.8-34.133 0-29.867 0-55.467 0-85.333 68.267 29.867 132.267 46.933 200.533 51.2 17.067-21.333 38.4-38.4 64-55.467 0 0-4.267 0-4.267 0-51.2 0-106.667-4.267-157.867-21.333-34.133 0-59.733-12.8-81.067-29.867-29.867-21.333-29.867-42.667 4.267-64 38.4-25.6 81.067-34.133 128-42.667 55.467-8.533 110.933-8.533 166.4-4.267 51.2 4.267 102.4 17.067 149.333 38.4 12.8 4.267 42.667 29.867 38.4 55.467 55.467 0 106.667 12.8 153.6 34.133 17.067-4.267 29.867-8.533 46.933-12.8 0 12.8 0 25.6 0 38.4 21.333 12.8 38.4 25.6 55.467 42.667 0-98.133 0-200.533 0-298.667 0-42.667-17.067-72.533-51.2-93.867-46.933-29.867-98.133-38.4-149.333-42.667-34.133-8.533-72.533-8.533-110.933-8.533-72.533 4.267-140.8 21.333-200.533 64-4.267 0-8.533-4.267-8.533-4.267-51.2-34.133-110.933-46.933-170.667-51.2-51.2 0-102.4 0-153.6 8.533-46.933 8.533-93.867 17.067-136.533 46.933-25.6 21.333-38.4 42.667-38.4 76.8 0 145.067 0 294.4 0 439.467 0 38.4 17.067 64 46.933 81.067 21.333 12.8 46.933 25.6 72.533 29.867 25.6 8.533 51.2 12.8 81.067 17.067 17.067 46.933 55.467 68.267 102.4 85.333 12.8 4.267 29.867 8.533 42.667 12.8-4.267-17.067-8.533-34.133-8.533-55.467zM964.267 273.067c0 8.533-8.533 21.333-17.067 25.6-34.133 21.333-76.8 34.133-119.467 38.4-4.267-38.4-17.067-68.267-55.467-89.6 68.267 0 128-12.8 192-42.667 4.267 25.6 4.267 46.933 0 68.267zM610.133 76.8c68.267-17.067 136.533-25.6 204.8-17.067 42.667 4.267 85.333 12.8 128 34.133 12.8 8.533 21.333 12.8 25.6 34.133-8.533 8.533-17.067 17.067-25.6 21.333-29.867 17.067-64 29.867-98.133 34.133-38.4 4.267-76.8 8.533-115.2 8.533-46.933 0-89.6-8.533-132.267-25.6-21.333-8.533-42.667-17.067-55.467-42.667 12.8-29.867 38.4-42.667 68.267-46.933zM68.267 115.2c25.6-25.6 64-34.133 98.133-38.4 29.867-4.267 59.733-12.8 85.333-12.8 68.267 0 132.267 4.267 196.267 34.133 8.533 4.267 17.067 8.533 25.6 17.067 12.8 8.533 12.8 21.333 0 34.133-8.533 8.533-17.067 12.8-29.867 21.333-42.667 21.333-85.333 29.867-132.267 34.133-17.067 0-29.867 0-42.667 0-55.467-4.267-110.933-12.8-162.133-29.867-12.8-4.267-29.867-12.8-42.667-21.333-12.8-17.067-8.533-25.6 4.267-38.4zM196.267 652.8c-25.6-8.533-51.2-12.8-72.533-21.333-8.533-4.267-21.333-8.533-29.867-12.8-25.6-12.8-38.4-29.867-34.133-59.733 0-17.067 0-29.867 0-51.2 46.933 25.6 89.6 34.133 136.533 38.4 0 42.667 0 72.533 0 106.667zM55.467 430.933c0-21.333 0-42.667 0-59.733 46.933 12.8 93.867 21.333 140.8 34.133 0 29.867 0 59.733 0 93.867-34.133-4.267-64-12.8-93.867-21.333-8.533-4.267-21.333-12.8-29.867-17.067-12.8-8.533-17.067-17.067-17.067-29.867zM196.267 341.333c-4.267 0-12.8 4.267-17.067 0-34.133 0-68.267-12.8-102.4-29.867-12.8-8.533-21.333-21.333-21.333-38.4s0-38.4 0-59.733c59.733 25.6 115.2 38.4 179.2 42.667-21.333 25.6-42.667 51.2-38.4 85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["recovery"],"grid":0},"attrs":[{}],"properties":{"order":377,"id":91,"name":"recovery","prevSize":32,"code":59748},"setIdx":0,"setId":2,"iconIdx":92},{"icon":{"paths":["M554.667 46.933c-260.267 0-469.333 209.067-469.333 469.333h-85.333l136.533 209.067 140.8-209.067h-85.333c0-200.533 162.133-362.667 362.667-362.667s362.667 162.133 362.667 362.667-162.133 362.667-362.667 362.667c-98.133 0-192-42.667-251.733-106.667l-72.533 72.533c85.333 85.333 200.533 136.533 332.8 136.533 251.733-4.267 460.8-213.333 460.8-473.6s-213.333-460.8-469.333-460.8zM332.8 725.333h430.933v-179.2h-110.933v68.267l-106.667-102.4 102.4-102.4v68.267h110.933v-179.2h-426.667v426.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["regentry"],"grid":0},"attrs":[{}],"properties":{"order":378,"id":92,"name":"regentry","prevSize":32,"code":59749},"setIdx":0,"setId":2,"iconIdx":93},{"icon":{"paths":["M841.6 96c48 0 86.4 38.4 86.4 86.4v662.4c0 48-38.4 86.4-86.4 86.4h-659.2c-48-3.2-86.4-41.6-86.4-89.6v-659.2c0-48 38.4-86.4 86.4-86.4h659.2zM841.6 0h-659.2c-99.2 0-182.4 83.2-182.4 182.4v662.4c0 96 83.2 179.2 182.4 179.2h662.4c99.2 0 182.4-83.2 182.4-182.4v-659.2c-3.2-99.2-86.4-182.4-185.6-182.4v0z","M611.2 768l-99.2-144h-108.8v144h-118.4v-512h220.8c44.8 0 83.2 6.4 118.4 22.4 32 16 57.6 35.2 76.8 64s25.6 60.8 25.6 99.2c0 38.4-9.6 70.4-28.8 99.2s-44.8 48-76.8 64l115.2 163.2h-124.8zM582.4 374.4c-19.2-16-44.8-22.4-80-22.4h-96v179.2h96c35.2 0 64-6.4 80-22.4 19.2-16 28.8-38.4 28.8-67.2-3.2-28.8-9.6-51.2-28.8-67.2z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["reserva"],"grid":0},"attrs":[{},{}],"properties":{"order":380,"id":93,"name":"reserva","prevSize":32,"code":59750},"setIdx":0,"setId":2,"iconIdx":94},{"icon":{"paths":["M358.4 819.2h-102.4v-102.4h81.067c0 0 0-4.267 0-4.267 0-34.133 8.533-68.267 21.333-98.133h-102.4v-102.4h170.667c51.2-51.2 123.733-85.333 200.533-102.4h-371.2v-102.4h512v93.867c76.8 8.533 149.333 34.133 204.8 72.533v-268.8c0-55.467-46.933-102.4-102.4-102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h546.133c-157.867-8.533-290.133-89.6-341.333-204.8zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2c0-29.867 21.333-51.2 51.2-51.2z","M721.067 507.733c-136.533 0-251.733 85.333-302.933 204.8 46.933 119.467 162.133 204.8 302.933 204.8s251.733-85.333 302.933-204.8c-46.933-119.467-162.133-204.8-302.933-204.8zM721.067 849.067c-76.8 0-136.533-59.733-136.533-136.533s64-136.533 136.533-136.533 136.533 64 136.533 136.533-59.733 136.533-136.533 136.533zM721.067 631.467c-46.933 0-81.067 38.4-81.067 81.067s38.4 81.067 81.067 81.067c46.933 0 81.067-38.4 81.067-81.067s-34.133-81.067-81.067-81.067z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["revision"],"grid":0},"attrs":[{},{}],"properties":{"order":381,"id":94,"name":"revision","prevSize":32,"code":59751},"setIdx":0,"setId":2,"iconIdx":95},{"icon":{"paths":["M700.587 816.64c-20.48 3.84-42.24 5.973-64.427 5.973-69.973 0-131.84-17.92-184.747-54.187s-90.453-84.48-112.213-144.213h168.533l-64.853-64.853h-119.467c-2.133-15.36-3.413-31.147-3.413-47.36 0-17.067 1.28-32.853 3.413-47.36h25.173l-114.773-114.773c-6.4 16.213-12.373 32.853-17.067 49.92h-131.413v64.853h119.893c-1.707 20.053-2.133 35.84-2.133 47.36s0.853 27.307 2.133 47.36h-119.893v64.853h131.84c16.213 60.16 43.947 112.64 83.2 158.293 39.253 45.227 87.467 80.64 144.213 105.813s119.040 37.547 186.027 37.547c55.467 0 106.667-8.107 154.453-24.747l-84.48-84.48z","M580.693 464.64h124.587v-64.853h-189.44z","M407.467 291.84c13.227-13.227 27.733-25.173 43.947-35.84 52.907-36.267 114.773-54.187 184.747-54.187 91.733 0 167.68 32 228.693 96l73.813-72.533c-36.267-40.96-80.64-72.107-133.547-93.44s-110.933-32.427-174.933-32.427c-66.987 0-128.853 12.373-186.027 37.547-43.52 18.347-82.347 43.947-115.627 75.52l78.933 79.36z","M39.253 0c10.24 0 20.053 3.84 27.733 11.52l945.493 945.067c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}]},"tags":["riesgo"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":382,"id":95,"name":"risk","prevSize":32,"code":59753},"setIdx":0,"setId":2,"iconIdx":96},{"icon":{"paths":["M485.973 0.853c-258.987 12.8-470.187 222.293-485.12 481.28-5.547 100.693 17.92 195.84 62.72 277.333s0 170.667-13.653 198.4 19.2 61.867 44.373 45.227c14.507-9.813 65.707-32 116.053-45.653 20.907-5.547 42.667-2.987 61.867 7.253 80.64 43.093 174.080 64.853 273.493 58.453 257.28-16.213 465.067-226.56 477.867-484.267 14.933-303.787-234.24-553.387-537.6-538.027zM407.467 653.227c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-271.36c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v274.347zM544.427 734.72c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-439.467c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v442.453zM674.987 617.387c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-195.413c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v198.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["saysimple"],"grid":0},"attrs":[{}],"properties":{"order":419,"id":96,"name":"saysimple","prevSize":32,"code":59666},"setIdx":0,"setId":2,"iconIdx":97},{"icon":{"paths":["M951.467 742.4c0-8.533 0-21.333 0-29.867s0-21.333-4.267-29.867l64-51.2c4.267-4.267 8.533-12.8 4.267-21.333l-64-106.667c-4.267-8.533-12.8-8.533-17.067-8.533l-76.8 29.867c-17.067-12.8-34.133-21.333-51.2-29.867l-12.8-81.067c0-8.533-8.533-12.8-17.067-12.8h-123.733c-8.533 0-12.8 4.267-17.067 12.8l-12.8 81.067c-17.067 8.533-38.4 17.067-51.2 29.867l-76.8-29.867c-8.533-4.267-17.067 0-17.067 8.533l-64 106.667c-4.267 8.533-4.267 17.067 4.267 21.333l64 51.2c0 8.533-4.267 21.333-4.267 29.867s0 21.333 4.267 29.867l-55.467 51.2c-4.267 4.267-8.533 12.8-4.267 21.333l64 106.667c4.267 8.533 12.8 8.533 17.067 8.533l76.8-29.867c17.067 12.8 34.133 21.333 51.2 29.867l12.8 81.067c0 8.533 8.533 12.8 17.067 12.8h123.733c8.533 0 12.8-4.267 17.067-12.8l12.8-81.067c17.067-8.533 38.4-17.067 51.2-29.867l76.8 29.867c8.533 4.267 17.067 0 17.067-8.533l64-106.667c4.267-8.533 4.267-17.067-4.267-21.333 0 0-68.267-51.2-68.267-51.2zM721.067 827.733c-64 0-115.2-51.2-115.2-115.2s51.2-115.2 115.2-115.2 115.2 51.2 115.2 115.2c0 64-51.2 115.2-115.2 115.2z","M345.6 785.067h-89.6v-102.4h81.067c4.267-34.133 8.533-68.267 21.333-102.4h-102.4v-102.4h162.133c34.133-42.667 72.533-76.8 119.467-102.4h-281.6v-102.4h520.533v59.733c51.2 8.533 102.4 25.6 145.067 51.2v-281.6c0-55.467-46.933-102.4-102.4-102.4h-622.933c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h302.933c-81.067-55.467-136.533-140.8-153.6-238.933z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["services"],"grid":0},"attrs":[{},{}],"properties":{"order":383,"id":97,"name":"services","prevSize":32,"code":59754},"setIdx":0,"setId":2,"iconIdx":98},{"icon":{"paths":["M891.733 563.2c0-17.067 4.267-34.133 4.267-51.2s0-34.133-4.267-51.2l106.667-85.333c8.533-8.533 12.8-21.333 4.267-34.133l-102.4-179.2c-4.267-12.8-21.333-17.067-29.867-12.8l-128 51.2c-25.6-21.333-55.467-38.4-85.333-51.2l-17.067-128c0-12.8-12.8-21.333-25.6-21.333h-204.8c-12.8 0-25.6 8.533-25.6 21.333l-17.067 136.533c-34.133 12.8-59.733 29.867-89.6 51.2l-128-51.2c-8.533-4.267-21.333 0-29.867 8.533l-102.4 179.2c-4.267 8.533-4.267 25.6 8.533 29.867l106.667 85.333c-4.267 17.067-4.267 34.133-4.267 51.2s0 34.133 4.267 51.2l-106.667 85.333c-8.533 8.533-12.8 21.333-4.267 34.133l102.4 179.2c4.267 12.8 21.333 17.067 29.867 12.8l128-51.2c25.6 21.333 55.467 38.4 85.333 51.2l17.067 128c0 12.8 12.8 21.333 25.6 21.333h204.8c12.8 0 25.6-8.533 25.6-21.333l21.333-136.533c29.867-12.8 59.733-29.867 85.333-51.2l128 51.2c12.8 4.267 25.6 0 29.867-12.8l102.4-179.2c4.267-12.8 4.267-25.6-4.267-34.133l-110.933-76.8zM512 691.2c-98.133 0-179.2-81.067-179.2-179.2s81.067-179.2 179.2-179.2 179.2 81.067 179.2 179.2-81.067 179.2-179.2 179.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["settings"],"grid":0},"attrs":[{}],"properties":{"order":384,"id":98,"name":"settings","prevSize":32,"code":59755},"setIdx":0,"setId":2,"iconIdx":99},{"icon":{"paths":["M725.76 328.107h-23.040c-29.013 0-29.013-40.533 0-40.533h23.040c11.52 0 23.040 11.52 23.040 23.040-5.973 5.973-11.52 17.493-23.040 17.493zM587.52 328.107h-23.040c-29.013 0-29.013-40.533 0-40.533h23.040c11.52 0 23.040 11.52 23.040 23.040 0 5.973-11.52 17.493-23.040 17.493zM454.827 328.107h-23.040c-11.52 0-23.040-11.52-23.040-23.040s11.52-23.040 23.040-23.040h23.040c11.52 0 23.040 11.52 23.040 23.040-5.973 11.52-11.52 23.040-23.040 23.040zM316.587 328.107h-17.493c-11.52 0-23.040-11.52-23.040-23.040s11.52-23.040 23.040-23.040h23.040c11.52 0 23.040 11.52 23.040 23.040-5.547 11.52-17.067 23.040-28.587 23.040zM719.787 1002.24c-46.080-23.040-86.613-17.493-126.72 0-52.053 23.040-103.68 29.013-161.28 0-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-17.493-5.973-34.56-17.493-63.573-17.493-11.52 0-23.040-11.52-23.040-23.040 0-34.56 69.12-17.493 103.68 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 34.56-17.493 103.68-34.56 103.68 0 0 11.52-11.52 23.040-23.040 23.040-34.56 0-46.080 5.973-63.573 17.493-51.2 29.013-103.253 29.013-160.853 0zM719.787 887.040c-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-17.493-5.973-34.56-17.493-63.573-17.493-11.52 0-23.040-11.52-23.040-23.040 0-34.56 69.12-17.493 103.68 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 34.56-17.493 103.68-34.56 103.68 0 0 11.52-11.52 23.040-23.040 23.040-34.56 0-46.080 5.973-63.573 17.493-51.2 29.013-103.253 29.013-160.853 0zM875.52 380.16h-34.56v-230.4c0-11.52-11.52-23.040-23.040-23.040h-149.76v-103.68c0-11.52-11.52-23.040-23.040-23.040h-282.453c-11.52 0-23.040 11.52-23.040 23.040v103.68h-149.76c-11.52 0-23.040 11.52-23.040 23.040v230.4h-29.013c-5.973 0-11.52 5.973-17.493 5.973-5.973 5.973-5.973 11.52-5.973 17.493l115.2 391.68c5.973 11.52 17.493 17.493 29.013 11.52 11.52 5.973 17.493-5.973 11.52-17.493l-109.227-368.64h322.56v374.613c0 29.013 40.533 29.013 40.533 0v-374.613h328.533l-109.653 368.64c-5.973 11.52 5.973 23.040 11.52 29.013 11.52 5.973 23.040-5.973 29.013-11.52l115.2-391.68c5.547-23.467-5.973-34.987-23.040-34.987zM385.707 46.080h241.92v86.187h-241.92v-86.187zM800.427 380.16c-69.12 0-512.853 0-587.52 0v-213.333h587.52v213.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["shipment-01"],"grid":0},"attrs":[{}],"properties":{"order":386,"id":99,"name":"shipment","prevSize":32,"code":59756},"setIdx":0,"setId":2,"iconIdx":100},{"icon":{"paths":["M725.333 0c72.533 72.533 145.067 145.067 217.6 217.6-4.267 4.267-8.533 12.8-17.067 17.067-179.2 179.2-358.4 362.667-537.6 541.867-8.533 8.533-25.6 17.067-38.4 21.333-81.067 21.333-166.4 42.667-247.467 64-4.267 0-12.8 4.267-21.333 4.267 0-8.533 0-17.067 4.267-21.333 21.333-85.333 42.667-166.4 64-251.733 4.267-8.533 8.533-21.333 17.067-25.6 183.467-187.733 371.2-371.2 554.667-554.667 0-8.533 0-12.8 4.267-12.8z","M849.067 934.4c-25.6 21.333-46.933 42.667-72.533 59.733-29.867 17.067-59.733 25.6-89.6 29.867-21.333 4.267-42.667 0-55.467-12.8-12.8-8.533-25.6-46.933-38.4-51.2-4.267 0-12.8 0-17.067 4.267-68.267 25.6-145.067 55.467-221.867 55.467-106.667 0-209.067 0-315.733 0-4.267 0-8.533 0-12.8 0-4.267-4.267-12.8-8.533-12.8-12.8s8.533-12.8 12.8-17.067c4.267-4.267 12.8 0 21.333 0 102.4 0 204.8 0 307.2-4.267 76.8 0 153.6-25.6 221.867-64 8.533-4.267 12.8-12.8 12.8-21.333 4.267-55.467 12.8-106.667 42.667-153.6 17.067-29.867 42.667-51.2 81.067-55.467 55.467 0 85.333 38.4 64 89.6-17.067 34.133-42.667 64-64 89.6-21.333 21.333-51.2 38.4-72.533 55.467-4.267 4.267-8.533 17.067-8.533 21.333 8.533 34.133 29.867 51.2 59.733 42.667 29.867-4.267 59.733-17.067 81.067-34.133 25.6-17.067 46.933-42.667 72.533-64 8.533-8.533 17.067-21.333 29.867-25.6 8.533-4.267 21.333-8.533 29.867-4.267 4.267 4.267 8.533 21.333 4.267 29.867-8.533 21.333-17.067 42.667-25.6 64-4.267 8.533-8.533 25.6 0 34.133s29.867 4.267 38.4-4.267c25.6-17.067 51.2-34.133 72.533-55.467 8.533-8.533 17.067-17.067 25.6-8.533 4.267 4.267 4.267 21.333 0 29.867-25.6 34.133-59.733 59.733-102.4 72.533-46.933 12.8-76.8-17.067-68.267-64-4.267-12.8-4.267-17.067 0-25.6zM618.667 887.467c0 0 0 4.267 0 4.267s4.267 0 4.267 0c29.867-25.6 59.733-51.2 85.333-81.067 12.8-12.8 21.333-34.133 29.867-51.2 8.533-21.333 0-34.133-21.333-38.4-25.6-4.267-42.667 8.533-55.467 25.6-29.867 46.933-38.4 93.867-42.667 140.8z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["sign"],"grid":0},"attrs":[{},{}],"properties":{"order":387,"id":100,"name":"sign","prevSize":32,"code":59658},"setIdx":0,"setId":2,"iconIdx":101},{"icon":{"paths":["M896 230.4h-443.733c-29.867 0-55.467 25.6-55.467 55.467v332.8c0 29.867 25.6 55.467 55.467 55.467h443.733c29.867 0 55.467-25.6 55.467-55.467v-332.8c0-29.867-25.6-55.467-55.467-55.467zM896 341.333l-221.867 140.8-221.867-140.8v-55.467l221.867 140.8 221.867-140.8v55.467zM640 738.133v55.467h-486.4v-652.8h486.4v25.6h85.333v-25.6c0-76.8-64-140.8-140.8-140.8h-371.2c-81.067 0-140.8 64-140.8 140.8v746.667c0 72.533 59.733 136.533 140.8 136.533h371.2c76.8 0 140.8-64 140.8-140.8v-145.067h-85.333zM490.667 930.133h-187.733v-46.933h187.733v46.933z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["sms"],"grid":0},"attrs":[{}],"properties":{"order":388,"id":101,"name":"sms","prevSize":32,"code":59758},"setIdx":0,"setId":2,"iconIdx":102},{"icon":{"paths":["M1024 42.667v938.667h-938.667v-68.267h234.667v-51.2h38.4c8.533 4.267 17.067 4.267 29.867 4.267h298.667c42.667 0 76.8-34.133 76.8-76.8 0 0 0 0 0 0 29.867-12.8 46.933-38.4 46.933-72.533 0 0 0 0 0 0 29.867-12.8 46.933-38.4 46.933-72.533s-21.333-59.733-46.933-72.533c0 0 0 0 0 0 0-42.667-34.133-76.8-76.8-76.8h-106.667c21.333-21.333 29.867-55.467 17.067-89.6-12.8-25.6-38.4-42.667-68.267-42.667-12.8 0-21.333 4.267-34.133 8.533l-217.6 98.133v-29.867h-238.933v-396.8h362.667v209.067h209.067v-209.067h366.933zM0 870.4h281.6v-51.2h89.6c4.267 4.267 12.8 4.267 17.067 4.267h298.667c21.333 0 34.133-12.8 34.133-34.133s-12.8-34.133-34.133-34.133h-136.533v-12.8h183.467c21.333 0 34.133-12.8 34.133-29.867 0-21.333-12.8-29.867-34.133-29.867h-179.2v-12.8h234.667c21.333 0 34.133-8.533 34.133-29.867s-12.8-29.867-34.133-29.867h-230.4v-12.8h183.467c21.333 0 29.867-12.8 29.867-34.133s-12.8-34.133-34.133-34.133h-230.4l93.867-64c12.8-8.533 21.333-29.867 12.8-46.933s-29.867-25.6-51.2-17.067l-251.733 119.467c-4.267 0-4.267 4.267-8.533 4.267-4.267 4.267-8.533 8.533-12.8 12.8h-8.533v-55.467h-281.6v388.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["solclaim"],"grid":0},"attrs":[{}],"properties":{"order":389,"id":102,"name":"solclaim","prevSize":32,"code":59759},"setIdx":0,"setId":2,"iconIdx":103},{"icon":{"paths":["M759.467 89.6v136.533h-601.6c0 0-128 341.333 106.667 341.333s469.333 0 469.333 0 34.133 0 34.133 34.133-8.533 98.133-8.533 98.133h-541.867c0 0-247.467-29.867-204.8-320 0 0 8.533-140.8 72.533-298.667 0 0 21.333 8.533 85.333 8.533l588.8-0zM853.333 934.4c64 0 85.333 8.533 85.333 8.533 64-153.6 72.533-298.667 72.533-298.667 42.667-290.133-204.8-320-204.8-320h-541.867c0 0-8.533 64-8.533 98.133s34.133 34.133 34.133 34.133 238.933 0 469.333 0 106.667 341.333 106.667 341.333h-601.6v136.533h588.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["solunion"],"grid":0},"attrs":[{}],"properties":{"order":390,"id":103,"name":"solunion","prevSize":32,"code":59761},"setIdx":0,"setId":2,"iconIdx":104},{"icon":{"paths":["M686.933 742.4h-119.467l-268.8-230.4 268.8-230.4h119.467v153.6l337.067-196.267-337.067-238.933v153.6h-153.6l-290.133 251.733h-243.2v213.333h243.2l290.133 251.733h153.6v153.6l337.067-238.933-337.067-196.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["splitline"],"grid":0},"attrs":[{}],"properties":{"order":391,"id":104,"name":"splitline","prevSize":32,"code":59762},"setIdx":0,"setId":2,"iconIdx":105},{"icon":{"paths":["M640 0l145.067 145.067-183.467 183.467 89.6 89.6 183.467-183.467 149.333 149.333v-384h-384zM384 0h-384v384l145.067-145.067 302.933 302.933v482.133h128v-537.6l-337.067-341.333 145.067-145.067z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["splur"],"grid":0},"attrs":[{}],"properties":{"order":392,"id":105,"name":"splur","prevSize":32,"code":59764},"setIdx":0,"setId":2,"iconIdx":106},{"icon":{"paths":["M1006.933 507.733l-260.267-106.667 29.867-29.867c4.267-4.267 4.267-12.8 4.267-17.067-4.267-4.267-8.533-8.533-12.8-8.533h-157.867c0-93.867 76.8-157.867 174.933-157.867 4.267 0 8.533-4.267 12.8-8.533s4.267-8.533 0-17.067l-81.067-153.6c-4.267 0-12.8-4.267-17.067-4.267-46.933 0-93.867 17.067-132.267 42.667-21.333 17.067-42.667 38.4-55.467 59.733-12.8-21.333-29.867-42.667-55.467-59.733-34.133-12.8-81.067-34.133-128-34.133-4.267 0-12.8 4.267-12.8 8.533l-85.333 153.6c-4.267 4.267-4.267 4.267 0 12.8 4.267 4.267 8.533 8.533 12.8 8.533 98.133 0 174.933 59.733 174.933 153.6v0h-140.8c-4.267 0-12.8 4.267-12.8 8.533-8.533 4.267-4.267 17.067 0 21.333l21.333 21.333-277.333 110.933c-8.533 8.533-12.8 12.8-8.533 21.333 0 8.533 8.533 12.8 17.067 12.8v0l98.133-4.267-81.067 85.333c0 4.267-4.267 8.533 0 12.8 0 4.267 4.267 8.533 8.533 8.533l85.333 34.133v179.2c0 8.533 4.267 12.8 8.533 12.8l358.4 145.067h8.533l358.4-145.067c4.267-4.267 8.533-8.533 8.533-12.8v-179.2l85.333-34.133c4.267 0 8.533-4.267 8.533-8.533s0-8.533-4.267-12.8l-68.267-98.133 102.4 4.267c8.533 0 12.8-4.267 17.067-12.8 8.533 0 4.267-4.267-4.267-12.8zM110.933 503.467l196.267-76.8 8.533 8.533-166.4 64-38.4 4.267zM153.6 674.133v0l-68.267-34.133 68.267-98.133 328.533 132.267-68.267 98.133-260.267-98.133zM490.667 989.867l-328.533-132.267v-153.6l243.2 98.133h12.8c0 0 0 0 4.267 0v0c0 0 4.267 0 4.267-4.267l64-85.333c0 4.267 0 277.333 0 277.333zM490.667 635.733l-298.667-115.2 149.333-64 153.6 157.867v17.067h-4.267zM529.067 622.933l157.867-157.867 140.8 55.467-298.667 115.2c-0 0-0-12.8-0-12.8zM849.067 857.6l-328.533 132.267v-281.6l64 85.333c0 0 0 4.267 4.267 4.267v0h17.067l243.2-98.133v157.867zM938.667 635.733l-324.267 132.267-68.267-98.133 328.533-132.267 64 98.133zM870.4 499.2l-157.867-64 12.8-8.533 187.733 76.8-42.667-4.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["stowaway 2"],"grid":0},"attrs":[{}],"properties":{"order":393,"id":106,"name":"stowaway","prevSize":32,"code":59765},"setIdx":0,"setId":2,"iconIdx":107},{"icon":{"paths":["M797.867 554.667l98.133-34.133 21.333 59.733-98.133 34.133-21.333-59.733zM1019.733 618.667c-4.267 8.533-8.533 12.8-17.067 17.067l-332.8 119.467c4.267 4.267 8.533 12.8 12.8 17.067l277.333-102.4 21.333 59.733-277.333 102.4c0 8.533 4.267 12.8 4.267 21.333 0 85.333-68.267 157.867-157.867 157.867-85.333 0-157.867-68.267-157.867-157.867 0-55.467 29.867-106.667 72.533-132.267l-217.6-610.133c-8.533-25.6-38.4-42.667-68.267-29.867l-157.867 55.467-21.333-59.733 157.867-59.733c59.733-17.067 123.733 12.8 149.333 72.533l221.867 614.4c8.533 0 12.8 0 21.333-4.267l-119.467-332.8c-4.267-17.067 4.267-34.133 17.067-38.4l136.533-51.2c0 0 0 0 0 0l115.2-42.667c0 0 0 0 0 0l136.533-51.2c8.533-4.267 17.067-4.267 25.6 0s12.8 8.533 17.067 17.067l145.067 396.8c0 4.267 0 12.8-4.267 21.333zM695.467 302.933l-59.733 21.333 8.533 21.333 59.733-21.333-8.533-21.333zM644.267 853.333c0-51.2-42.667-93.867-93.867-93.867s-93.867 42.667-93.867 93.867c0 51.2 42.667 93.867 93.867 93.867s93.867-38.4 93.867-93.867zM951.467 588.8l-119.467-332.8-76.8 29.867 17.067 51.2c4.267 8.533 4.267 17.067 0 25.6s-8.533 12.8-17.067 17.067l-115.2 42.667c-4.267 0-8.533 0-12.8 0-12.8 0-25.6-8.533-29.867-21.333l-17.067-51.2-76.8 29.867 119.467 332.8 328.533-123.733z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["supplier"],"grid":0},"attrs":[{}],"properties":{"order":394,"id":107,"name":"supplier","prevSize":32,"code":59766},"setIdx":0,"setId":2,"iconIdx":108},{"icon":{"paths":["M198.827 77.227c22.187-0.427 41.813 14.080 48.64 34.133l8.107 22.187 105.813 105.813-54.187-149.333c-25.6-59.733-89.6-89.6-149.333-72.533l-13.653 5.12 54.613 54.613z","M708.693 830.72l-173.653-173.653 15.36 43.093c-8.533 4.267-12.8 4.267-21.333 4.267l-29.867-83.2-108.373-108.373 74.24 208.64c-42.667 25.6-72.533 76.8-72.533 132.267 0 89.6 72.533 157.867 157.867 157.867 89.6 0 157.867-72.533 157.867-157.867 0-8.533-4.267-12.8-4.267-21.333l4.693-1.707zM550.4 947.627c-51.2 0-93.867-42.667-93.867-93.867s42.667-93.867 93.867-93.867 93.867 42.667 93.867 93.867c0 55.467-42.667 93.867-93.867 93.867z","M960 670.293l-122.453 45.227 49.493 49.067 94.293-34.56z","M504.32 382.293l-0.853-2.133 76.8-29.867 17.067 51.2c4.267 12.8 17.067 21.333 29.867 21.333 4.267 0 8.533 0 12.8 0l115.2-42.667c8.533-4.267 12.8-8.533 17.067-17.067s4.267-17.067 0-25.6l-17.067-51.2 76.8-29.867 119.467 332.8-174.507 65.707 45.653 45.653 180.053-64.427c8.533-4.267 12.8-8.533 17.067-17.067s4.267-17.067 4.267-21.333l-145.067-396.8c-4.267-8.533-8.533-12.8-17.067-17.067s-17.067-4.267-25.6 0l-136.533 51.2-115.2 42.667-134.4 50.347 54.187 54.187zM695.467 303.36l8.533 21.333-59.733 21.333-8.533-21.333 59.733-21.333z","M896 520.96l-98.133 34.133 21.333 59.733 98.133-34.133z","M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{}]},"tags":["supplierfalse"],"grid":0},"attrs":[{},{},{},{},{},{}],"properties":{"order":396,"id":108,"name":"supplierfalse","prevSize":32,"code":59767},"setIdx":0,"setId":2,"iconIdx":109},{"icon":{"paths":["M729.6 0c-42.667 0-89.6 0-132.267 0-21.333 0-38.4 8.533-51.2 21.333-140.8 140.8-281.6 281.6-422.4 422.4-25.6 25.6-25.6 51.2 0 76.8 93.867 93.867 187.733 187.733 281.6 281.6 25.6 25.6 51.2 25.6 76.8 0 140.8-140.8 281.6-281.6 422.4-422.4 17.067-12.8 21.333-29.867 21.333-51.2 0-93.867 0-183.467 0-277.333 0-34.133-17.067-51.2-51.2-51.2-51.2-0-98.133-0-145.067-0zM682.667 196.267c0-25.6 17.067-46.933 42.667-46.933s46.933 21.333 46.933 46.933c0 25.6-21.333 46.933-46.933 46.933-21.333 0-42.667-21.333-42.667-46.933zM878.933 477.867c4.267 12.8 0 21.333-8.533 29.867-34.133 51.2-64 98.133-98.133 149.333-76.8 115.2-153.6 234.667-230.4 349.867-12.8 17.067-21.333 21.333-38.4 8.533-115.2-76.8-226.133-149.333-337.067-226.133-17.067-8.533-17.067-21.333-8.533-38.4 12.8-21.333 29.867-46.933 42.667-68.267 8.533-12.8 8.533-12.8 17.067 0 55.467 55.467 115.2 115.2 170.667 170.667 8.533 8.533 17.067 17.067 29.867 21.333 29.867 12.8 55.467 4.267 76.8-21.333 123.733-123.733 247.467-247.467 371.2-371.2 4.267-4.267 4.267-8.533 8.533-12.8 0 8.533 0 8.533 4.267 8.533z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["tags"],"grid":0},"attrs":[{}],"properties":{"order":397,"id":109,"name":"tags","prevSize":32,"code":59769},"setIdx":0,"setId":2,"iconIdx":110},{"icon":{"paths":["M448 768c0-174.933 145.067-320 320-320 76.8 0 145.067 25.6 196.267 68.267v-324.267c4.267-51.2-38.4-98.133-93.867-98.133h-204.8c-21.333-55.467-72.533-93.867-136.533-93.867s-115.2 38.4-136.533 98.133h-209.067c-55.467 0-98.133 42.667-98.133 93.867v674.133c0 51.2 42.667 98.133 98.133 98.133h332.8c-42.667-55.467-68.267-123.733-68.267-196.267zM529.067 98.133c29.867 0 46.933 21.333 46.933 46.933 0 29.867-25.6 46.933-46.933 46.933-29.867 0-46.933-21.333-46.933-46.933-4.267-29.867 17.067-46.933 46.933-46.933zM708.267 712.533c-8.533 0-12.8-4.267-17.067-8.533s-8.533-8.533-8.533-17.067v-17.067c0-8.533 0-12.8 4.267-17.067s8.533-8.533 17.067-8.533c8.533 0 12.8 4.267 17.067 8.533s4.267 12.8 4.267 17.067v12.8c4.267 21.333-4.267 29.867-17.067 29.867zM870.4 827.733c4.267 4.267 4.267 12.8 4.267 17.067v21.333c0 12.8-8.533 21.333-21.333 21.333-8.533 0-12.8-4.267-17.067-8.533s-8.533-12.8-8.533-17.067v-17.067c0-8.533 4.267-12.8 8.533-17.067s8.533-8.533 17.067-8.533c8.533-0 12.8 4.267 17.067 8.533zM768 512c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256zM635.733 686.933v-17.067c0-21.333 4.267-34.133 17.067-46.933s29.867-17.067 51.2-17.067c21.333 0 38.4 4.267 51.2 17.067s17.067 29.867 17.067 46.933v17.067c0 21.333-4.267 34.133-17.067 46.933s-29.867 17.067-51.2 17.067-38.4-4.267-51.2-17.067c-8.533-12.8-17.067-29.867-17.067-46.933zM721.067 900.267l-34.133-17.067 153.6-243.2 34.133 17.067-153.6 243.2zM925.867 861.867c0 21.333-4.267 34.133-17.067 46.933s-29.867 17.067-51.2 17.067-38.4-4.267-51.2-17.067c-12.8-12.8-21.333-25.6-21.333-46.933v-17.067c0-21.333 4.267-34.133 17.067-46.933s29.867-17.067 51.2-17.067 38.4 4.267 51.2 17.067c12.8 12.8 17.067 29.867 17.067 46.933v17.067h4.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["tax"],"grid":0},"attrs":[{}],"properties":{"order":398,"id":110,"name":"tax","prevSize":32,"code":59770},"setIdx":0,"setId":2,"iconIdx":111},{"icon":{"paths":["M641.567 633.208v-35.527h64.784v-25.078h-64.784v-119.118h64.784v-25.078h-64.784v-119.118h64.784v-25.078h-64.784v-121.208h64.784v-25.078h-64.784v-8.359c0-71.053-58.514-129.567-129.567-129.567s-129.567 58.514-129.567 129.567v503.641c-54.335 39.706-87.771 104.49-87.771 173.453 0 119.118 96.131 217.339 217.339 217.339 119.118 0 217.339-96.131 217.339-217.339 0-66.873-33.437-131.657-87.771-173.453zM512 988.473c-100.31 0-179.722-81.502-179.722-179.722 0-64.784 33.437-123.298 87.771-154.645v-524.539c0-50.155 41.796-91.951 91.951-91.951s91.951 41.796 91.951 91.951v522.449c54.335 31.347 87.771 89.861 87.771 154.645 0 100.31-79.412 181.812-179.722 181.812zM652.016 524.539v-25.078h35.527v25.078h-35.527zM652.016 380.343v-25.078h35.527v25.078h-35.527zM652.016 236.147v-25.078h35.527v25.078h-35.527zM568.424 675.004v-543.347c0 0 0 0 0 0s0 0 0 0v0 0c0-31.347-25.078-56.424-56.424-56.424s-56.424 25.078-56.424 56.424v0 543.347c-52.245 20.898-87.771 73.143-87.771 131.657 0 79.412 64.784 144.196 144.196 144.196s144.196-64.784 144.196-144.196c0-58.514-35.527-108.669-87.771-131.657zM470.204 135.837v-4.18c0-22.988 18.808-41.796 41.796-41.796s41.796 18.808 41.796 41.796v219.429h-85.682v-215.249z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["thermometer"],"grid":0},"attrs":[{}],"properties":{"order":399,"id":111,"name":"thermometer","prevSize":32,"code":59771},"setIdx":0,"setId":2,"iconIdx":112},{"icon":{"paths":["M200.533 648.533c12.8-38.4 25.6-76.8 38.4-115.2 8.533-25.6 17.067-55.467 29.867-81.067 29.867-81.067 55.467-166.4 85.333-247.467 21.333-55.467 38.4-110.933 59.733-166.4 4.267-12.8 8.533-21.333 12.8-34.133 0-4.267 4.267-4.267 8.533-4.267 59.733 12.8 115.2 21.333 174.933 34.133 81.067 17.067 157.867 34.133 238.933 46.933 55.467 12.8 110.933 21.333 170.667 34.133 4.267 4.267 4.267 4.267 4.267 12.8-29.867 89.6-59.733 179.2-89.6 264.533-21.333 64-42.667 128-64 187.733-25.6 68.267-46.933 140.8-76.8 209.067-17.067 51.2-38.4 98.133-59.733 145.067-12.8 25.6-25.6 51.2-46.933 68.267-17.067 17.067-34.133 21.333-59.733 12.8-59.733-17.067-93.867-59.733-106.667-119.467-4.267-25.6-8.533-51.2-8.533-76.8 0-12.8 0-25.6 0-38.4s-8.533-21.333-17.067-25.6c-76.8-29.867-153.6-64-234.667-93.867-25.6 0-42.667-4.267-59.733-12.8zM554.667 409.6c-17.067 0-29.867 4.267-29.867 17.067-4.267 12.8 4.267 25.6 17.067 29.867 59.733 21.333 123.733 42.667 183.467 59.733 12.8 4.267 25.6 0 29.867-8.533 8.533-17.067 4.267-29.867-12.8-38.4-46.933-17.067-98.133-34.133-145.067-46.933-17.067-4.267-34.133-8.533-42.667-12.8zM477.867 584.533c-4.267 0-8.533 0-12.8 4.267-8.533 4.267-12.8 12.8-12.8 21.333 0 12.8 8.533 21.333 21.333 25.6 59.733 21.333 119.467 38.4 183.467 59.733 17.067 4.267 29.867 0 34.133-12.8s-4.267-25.6-17.067-29.867c-42.667-12.8-85.333-29.867-132.267-42.667-25.6-12.8-46.933-21.333-64-25.6zM806.4 328.533c21.333 0 29.867-4.267 34.133-21.333 4.267-8.533-8.533-21.333-21.333-25.6-21.333-4.267-42.667-12.8-68.267-17.067-38.4-12.8-76.8-21.333-119.467-34.133-17.067-4.267-34.133 8.533-29.867 25.6 0 12.8 12.8 17.067 25.6 21.333 42.667 12.8 89.6 25.6 132.267 38.4 17.067 4.267 34.133 8.533 46.933 12.8zM516.267 213.333c0-12.8-12.8-25.6-25.6-25.6-17.067 0-25.6 8.533-25.6 21.333s12.8 25.6 29.867 25.6c12.8 4.267 21.333-4.267 21.333-21.333zM426.667 418.133c12.8 0 25.6-8.533 25.6-21.333s-12.8-25.6-25.6-25.6c-17.067 0-29.867 8.533-25.6 21.333-4.267 12.8 4.267 25.6 25.6 25.6zM354.133 537.6c-17.067 0-25.6 8.533-25.6 25.6s12.8 25.6 29.867 25.6c12.8 0 25.6-8.533 25.6-21.333-4.267-17.067-17.067-29.867-29.867-29.867z","M4.267 618.667c25.6 12.8 55.467 21.333 81.067 34.133 59.733 25.6 119.467 46.933 174.933 72.533 51.2 21.333 102.4 42.667 157.867 64 8.533 4.267 17.067 8.533 25.6 12.8s12.8 8.533 12.8 17.067c0 42.667 4.267 89.6 21.333 128 8.533 17.067 17.067 38.4 25.6 55.467-12.8-4.267-29.867-8.533-42.667-17.067-46.933-17.067-93.867-38.4-145.067-55.467-42.667-17.067-85.333-38.4-128-55.467-29.867-12.8-59.733-25.6-89.6-38.4s-55.467-38.4-72.533-64c-21.333-42.667-25.6-85.333-25.6-132.267 0-4.267 4.267-12.8 4.267-21.333z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["ticket"],"grid":0},"attrs":[{},{}],"properties":{"order":400,"id":112,"name":"ticket","prevSize":32,"code":59772},"setIdx":0,"setId":2,"iconIdx":113},{"icon":{"paths":["M714.667 405.333c-170.667 0-309.333 138.667-309.333 309.333s138.667 309.333 309.333 309.333 309.333-138.667 309.333-309.333-138.667-309.333-309.333-309.333zM897.28 761.6h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427v89.173z","M353.707 765.867c-31.573-12.8-62.72-25.6-93.44-38.4-55.467-25.6-115.2-46.933-174.933-72.533-25.6-12.8-55.467-21.333-81.067-34.133v0c0 8.533-4.267 17.067-4.267 21.333 0 46.933 4.267 89.6 25.6 132.267 17.067 25.6 42.667 51.2 72.533 64s59.733 25.6 89.6 38.4c42.667 17.067 85.333 38.4 128 55.467 51.2 17.067 98.133 38.4 145.067 55.467 7.68 5.12 17.493 8.96 26.453 11.947-71.253-56.747-120.32-139.52-133.547-233.813z","M372.907 587.093c-4.267 2.56-9.387 3.84-14.507 3.84-17.067 0-29.867-8.533-29.867-25.6s8.533-25.6 25.6-25.6c11.52 0 23.040 10.24 28.16 24.747 57.173-126.293 184.747-214.613 332.373-214.613 78.933 0 152.32 25.173 212.053 68.267 2.56-7.68 5.12-15.36 7.68-23.467 29.867-85.333 59.733-174.933 89.6-264.533 0-8.533 0-8.533-4.267-12.8-59.733-12.8-115.2-21.333-170.667-34.133-81.067-12.8-157.867-29.867-238.933-46.933-59.733-12.8-115.2-21.333-174.933-34.133-4.267 0-8.533 0-8.533 4.267-4.267 12.8-8.533 21.333-12.8 34.133-21.333 55.467-38.4 110.933-59.733 166.4-29.867 81.067-55.467 166.4-85.333 247.467-12.8 25.6-21.333 55.467-29.867 81.067-12.8 38.4-25.6 76.8-38.4 115.2v0c17.067 8.533 34.133 12.8 59.733 12.8 30.72 11.093 60.587 23.040 90.027 34.987 1.707-38.827 9.387-76.373 22.613-111.36zM631.467 232.533c42.667 12.8 81.067 21.333 119.467 34.133 25.6 4.267 46.933 12.8 68.267 17.067 12.8 4.267 25.6 17.067 21.333 25.6-4.267 17.067-12.8 21.333-34.133 21.333-12.8-4.267-29.867-8.533-46.933-12.8-42.667-12.8-89.6-25.6-132.267-38.4-12.8-4.267-25.6-8.533-25.6-21.333-4.267-17.067 12.8-29.867 29.867-25.6zM490.667 189.867c12.8 0 25.6 12.8 25.6 25.6 0 17.067-8.533 25.6-21.333 21.333-17.067 0-29.867-12.8-29.867-25.6s8.533-21.333 25.6-21.333zM426.667 373.333c12.8 0 25.6 12.8 25.6 25.6s-12.8 21.333-25.6 21.333c-21.333 0-29.867-12.8-25.6-25.6-4.267-12.8 8.533-21.333 25.6-21.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["ticketAdd"],"grid":0},"attrs":[{},{},{}],"properties":{"order":401,"id":113,"name":"ticketAdd","prevSize":32,"code":59774},"setIdx":0,"setId":2,"iconIdx":114},{"icon":{"paths":["M256 128c0 72.533-55.467 128-128 128s-128-55.467-128-128 55.467-128 128-128 128 55.467 128 128zM512 384c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM896 768c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM981.333 85.333h-580.267v-85.333h-68.267v256h68.267v-85.333h537.6v298.667h-226.133v85.333h268.8c25.6 0 42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM563.2 1024v-85.333h-520.533c-25.6 0-42.667-17.067-42.667-42.667v-384c0-25.6 17.067-42.667 42.667-42.667h268.8v85.333h-226.133v298.667h477.867v-85.333l128 128-128 128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["traceability"],"grid":0},"attrs":[{}],"properties":{"order":402,"id":114,"name":"traceability","prevSize":32,"code":59775},"setIdx":0,"setId":2,"iconIdx":115},{"icon":{"paths":["M595.2 380.8c32 0 60.8 12.8 83.2 32l6.4 6.4 51.2-51.2-9.6-6.4c-35.2-35.2-83.2-51.2-134.4-51.2-83.2 0-156.8 51.2-188.8 128h-76.8v60.8h64c0 3.2 0 9.6 0 12.8s0 9.6 0 12.8h-64v60.8h80c32 80 105.6 128 188.8 128 51.2 0 99.2-19.2 134.4-51.2l9.6-6.4-51.2-48-6.4 6.4c-22.4 19.2-54.4 32-83.2 32-44.8 0-83.2-22.4-105.6-57.6h118.4v-60.8h-140.8c0-6.4 0-9.6 0-12.8s0-9.6 0-12.8h140.8v-60.8h-118.4c19.2-38.4 57.6-60.8 102.4-60.8zM553.6 48c-256 0-464 208-464 467.2h-86.4l134.4 208 140.8-208h-86.4c0-198.4 163.2-361.6 361.6-361.6s361.6 163.2 361.6 361.6-163.2 361.6-361.6 361.6c-99.2 0-188.8-41.6-252.8-108.8l-73.6 73.6c86.4 86.4 198.4 134.4 329.6 134.4 256 0 464-208 464-464s-208-464-467.2-464z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["transaction"],"grid":0},"attrs":[{}],"properties":{"order":403,"id":115,"name":"transaction","prevSize":32,"code":59675},"setIdx":0,"setId":2,"iconIdx":116},{"icon":{"paths":["M420.267 131.84c-78.507 22.613-121.173 80.213-121.173 161.707v730.027h443.307c0-0.853 0-1.28 0-2.133 0-64.853 0-129.28 0-194.133 0-177.92 0-362.24-0.853-544.853 0-56.747-27.307-101.973-78.080-133.12v0c-9.387-5.973-20.48-10.24-32.427-14.507h-0.853c-5.12-2.133-10.24-4.267-16.213-6.827l-1.28-0.853v-128h-186.027v129.28l-3.84 1.28c-0.853 1.28-1.707 2.133-2.56 2.133zM682.667 965.12h-324.693v-649.813h324.693c0 0 0 649.813 0 649.813zM486.4 58.027h68.267v69.12h-68.267v-69.12zM454.827 186.027h25.173c35.413 0 71.253-0.853 106.667 0 38.4 0.853 67.84 19.2 86.613 54.187 1.28 2.133 2.133 5.12 3.84 7.253v0.853c0.853 1.28 0 2.133 0 2.987v2.987h-314.88l1.28-3.84c5.12-16.213 14.507-30.293 28.587-41.813 18.773-14.507 40.107-22.613 62.72-22.613z","M613.547 738.133c0.853-22.613 0-45.653 0-68.267v-7.253c0-8.107 0-16.213 0-23.467v-0.853c0-8.107 0-17.067 0-25.173v-1.28c0-22.187 0-44.8 0-66.987 0-10.24-1.28-19.2-2.987-26.453-10.24-40.533-47.787-69.973-89.6-69.973-3.84 0-7.253 0-10.24 0.853-47.787 5.973-83.2 44.8-83.627 91.733-0.853 61.867 0 125.867 0 182.187v14.080c0 6.827 0.853 14.080 2.987 21.333 11.093 44.8 53.76 75.093 99.413 70.4 47.36-4.693 83.627-43.947 84.053-90.88zM555.52 666.88c0 22.187 0 43.947 0 66.133s-14.080 38.4-34.56 38.4c-9.387 0-17.493-3.84-24.32-9.387-7.253-6.827-11.093-17.067-11.093-27.733 0-62.293 0-126.293 0-189.013 0-11.093 3.84-21.333 11.093-27.733 6.827-5.973 14.507-9.387 24.32-9.387 20.48 0 34.56 16.213 34.56 38.4s0 43.947 0 66.133v54.187z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}]},"tags":["treatments"],"grid":0},"attrs":[{},{}],"properties":{"order":405,"id":116,"name":"treatments","prevSize":32,"code":59776},"setIdx":0,"setId":2,"iconIdx":117},{"icon":{"paths":["M972.8 902.4v-902.4h-44.384v153.184h-832.864v-153.184h-44.384v902.4c-23.904 8.96-40.544 32-40.544 58.88 0 34.56 28.16 62.72 62.72 62.72s62.72-28.16 62.72-62.72c0-26.88-17.056-49.92-40.544-58.88v-9.376h832.864v9.376c-23.904 8.96-40.544 32-40.544 58.88 0 34.56 28.16 62.72 62.72 62.72s62.72-28.16 62.72-62.72c0-26.88-16.64-49.92-40.544-58.88zM928.416 192.864v314.464h-832.864v-314.464h832.864zM139.936 852.896h-44.384v-305.504h832.864v305.504h-788.48z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["trolley"],"grid":0},"attrs":[{}],"properties":{"order":417,"id":117,"name":"trolley","prevSize":32,"code":59648},"setIdx":0,"setId":2,"iconIdx":118},{"icon":{"paths":["M696.747 646.827c-0.427 7.253-1.707 14.080-3.413 20.907-5.547 12.373-13.653 22.613-25.173 29.867-20.48 10.24-40.107 9.813-59.733-2.133-9.813-7.253-17.067-16.64-22.187-28.16-1.707-6.827-2.987-13.653-3.413-20.907 0.427-7.253 2.133-14.080 4.267-20.907 0.427-0.427 0.427-0.427 0.427-0.853 3.413-6.4 7.68-12.373 12.8-17.92 2.133-1.707 4.693-3.84 6.827-5.973 6.4-3.84 13.227-6.827 20.907-8.96 6.827-1.28 13.653-0.853 20.907-0.853 7.253 2.133 14.080 3.84 20.48 8.107v0c17.067 11.52 25.6 27.733 27.307 47.787zM897.28 602.88v0c-12.373-8.96-26.027-12.373-40.96-11.52-7.253 1.28-14.080 3.413-20.907 6.4-11.093 6.827-19.627 16.213-25.173 27.733-2.133 6.827-3.84 13.653-4.267 20.907 0 7.253 1.28 14.080 3.413 20.907 1.707 3.84 3.413 7.253 5.547 11.093 2.56 2.987 5.12 6.4 7.68 9.387 4.267 3.413 8.533 6.4 12.8 9.813 4.267 1.707 8.533 3.84 13.227 4.693 17.92 4.693 34.133 0.853 49.067-9.813 1.707-1.707 3.413-2.987 5.547-4.693 10.667-11.947 16.213-25.6 16.64-41.813-0.853-4.693-1.28-9.813-2.133-14.507-4.267-10.667-10.24-20.907-20.48-28.587zM277.76 593.067c-1.28-0.427-2.56-0.853-3.84-1.28-6.827-0.427-13.653-0.427-20.48 0.853-7.253 1.707-14.507 5.12-20.907 8.96-1.707 1.28-3.413 2.56-5.12 3.84-11.947 11.52-18.347 25.173-19.2 41.387 0 6.4 1.28 12.8 2.987 19.2 0.427 1.707 1.28 2.987 1.707 4.693 3.413 6.4 7.253 12.373 11.947 17.92 2.56 2.133 5.12 4.267 7.68 6.4 6.4 3.84 13.653 6.827 20.907 8.96 6.827 0.853 13.653 1.28 20.907 0.427 6.827-1.28 13.227-3.84 19.2-6.827 14.933-9.813 25.173-23.040 27.733-41.387 3.84-29.013-14.507-56.32-43.52-63.147zM190.72 622.080v0c-3.84-5.973-8.107-11.947-13.227-17.067-2.56-1.707-4.693-3.413-7.253-5.547-20.907-11.52-41.813-11.093-62.293 1.28-1.707 1.28-3.413 2.56-5.12 4.267-11.947 11.52-18.773 25.173-19.2 41.813 0 7.253 1.28 14.080 2.987 20.48 0.427 1.28 1.28 2.987 1.707 4.267 2.987 5.547 6.4 10.667 10.24 15.36 2.987 2.56 5.973 5.12 9.387 8.107 6.4 3.84 13.653 6.827 20.907 8.96 6.827 0.853 14.080 1.28 20.907 0.427 6.827-1.707 13.227-3.84 19.2-6.827 11.52-7.253 19.627-17.493 25.173-29.867 2.133-6.827 2.987-13.653 3.413-20.48-0.853-6.827-2.133-14.080-4.267-20.48-1.707-1.707-2.133-3.413-2.56-4.693zM47.787 536.747h686.933c1.28 0 2.56-1.28 2.56-2.56v-212.48c0-1.28-1.28-2.56-2.56-2.56h-686.933c-1.28 0-2.56 1.28-2.56 2.56v212.053c0 1.707 0.853 2.987 2.56 2.987zM981.333 505.6v133.12c-3.84 9.387-11.093 12.8-20.907 12.373-6.827-0.427-13.653-0.427-20.907 0-2.987 0-2.987-2.56-4.267-4.267-1.28-7.253-4.267-14.507-7.68-20.907-10.667-22.187-25.6-39.253-50.347-46.080-6.827-2.133-13.653-2.56-20.907-1.707-18.773 1.28-33.28 11.093-45.227 24.32-5.12 5.547-9.387 11.52-12.8 18.347-1.28 2.56-2.987 3.413-5.547 3.413-27.307 0-54.613 0-81.92 0-3.413 0-5.547-1.28-7.253-4.267-14.507-21.76-33.707-35.84-60.16-39.253-13.227-1.707-26.027 0-37.547 6.827-16.64 8.107-26.88 21.333-32.427 38.4-2.987 6.827-3.84 13.653-4.267 20.907 0 2.133-1.28 3.413-3.413 3.413-6.827 0-14.080 0-20.907 0-1.28-0.427-1.28-2.133-1.707-3.413 1.707-14.507 6.4-28.16 12.373-41.387 4.267-7.253 8.107-14.507 13.227-20.907 3.84-5.12 8.107-9.813 12.8-14.080 15.36-17.067 30.293-17.067 30.293-17.067h180.48v-180.907h0.427v-0.853h137.813c0 0 3.413 2.133 4.693 8.96 2.133 5.973 4.693 11.947 6.827 17.92 2.133 6.4 4.267 13.227 7.253 19.2 4.693 14.080 9.813 27.733 15.36 41.813 2.133 6.827 4.693 14.080 7.68 20.48v0c2.133 8.96 5.12 17.493 8.96 25.6zM949.76 497.067l-34.56-92.587h-16.64c-0.427 0-0.427 0-0.853 0s-0.427 0-0.853 0h-49.493v81.92c0.853 0.427 1.707 0.427 2.987 0.427 1.707 0 3.84 0 5.547 0 6.827 1.28 13.653 2.133 20.907 2.133 6.827 1.28 14.080 2.133 20.907 2.133 6.827 0.853 13.653 1.707 20.907 2.133v0l20.907 2.133c3.413 0.853 6.827 1.28 10.24 1.707zM340.907 597.333v0c-7.253-12.373-15.787-23.467-26.453-31.573-13.227-11.52-25.173-12.8-25.173-12.8h-172.373c0 0-4.267 0.427-8.96 1.707 0 0-0.427 0-0.427 0-0.427 0-0.427 0-0.853 0.427-4.267 1.28-8.533 2.987-11.093 5.12-8.533 4.693-15.36 11.52-22.187 18.773-6.827 8.107-11.947 17.067-17.493 26.027-4.267 9.387-7.68 19.2-10.667 29.013-5.547 15.787 0 15.787 0 15.787l20.907 0.427c2.133 0 3.413-1.28 3.413-3.413 0.427-7.253 1.707-14.080 4.267-20.907 5.547-17.92 16.64-31.147 33.707-39.253 20.48-10.667 41.387-11.947 62.72-2.56 7.68 3.413 14.933 7.253 17.92 15.787 0.427 1.28 1.707 0.853 2.56 1.28 0 0 0 0 0 0h20.48c0.427-0.427 1.28-0.427 1.28-0.853 2.987-8.533 10.667-12.373 18.347-16.213 1.707-0.853 3.413-2.133 5.547-2.56 23.040-6.827 44.373-4.267 64.427 8.96 19.627 12.8 28.587 32.427 30.72 55.040 0.427 3.413 1.28 4.693 5.12 4.693 6.827 0 13.653 0 20.053 0 0.853-0.853 0.853-2.56 0.853-3.413-1.707-14.507-6.4-28.16-12.8-41.387-0.853-2.56-2.133-5.547-3.84-8.107z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["troncales"],"grid":0},"attrs":[{}],"properties":{"order":406,"id":118,"name":"troncales","prevSize":32,"code":59778},"setIdx":0,"setId":2,"iconIdx":119},{"icon":{"paths":["M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z","M469.333 353.28v-267.947h-128v139.947z","M640 85.333h-85.333c0 0 0 142.080 0 273.92 24.747-21.333 53.333-35.413 85.333-46.080v-227.84z","M563.2 447.147l46.933 46.933c26.453-36.267 69.973-60.587 118.613-60.587 81.92 0 145.92 64 145.92 145.92 0 49.493-23.893 92.16-60.587 118.187l43.947 43.947c47.36-38.827 77.227-97.707 77.227-162.133 0-117.333-96-209.92-209.92-209.92-66.133 0.427-124.16 30.72-162.133 77.653z","M938.667 394.667v-309.333h-85.333v241.92c32 17.493 60.587 38.827 85.333 67.413z","M768 302.080v-216.747h-42.667l3.413 213.333c14.507 0 28.587 0 39.253 3.413z","M298.667 182.613v-97.28h-42.667v54.613z","M524.373 640c8.107 28.587 22.187 54.613 40.96 78.080l-10.667 7.253h-24.747l-160 163.413 49.493 49.92 160-163.413v-24.747l7.253-10.667c21.76 19.627 48.64 33.28 78.507 41.387l-140.8-141.227z","M444.587 583.253c0-7.253 0.427-14.507 1.28-21.333l-104.533-104.533v335.36h24.747l99.413-99.413c-14.080-35.413-20.907-71.253-20.907-110.080z","M85.333 201.387v591.36h85.333v-506.027z","M256 372.053v420.693h42.667v-378.027z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}]},"tags":["unavailable"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":407,"id":119,"name":"unavailable","prevSize":32,"code":59779},"setIdx":0,"setId":2,"iconIdx":120},{"icon":{"paths":["M317.013 122.027h-256.853c-33.28 0-60.16 26.88-60.16 60.16v586.24c0 32.853 26.88 60.16 60.16 60.16h257.28c32.853 0 60.16-26.88 60.16-60.16v-586.24c-0.427-32.853-27.307-60.16-60.587-60.16zM307.2 758.613h-237.653v-566.613h237.653v566.613z","M811.093 580.267v-398.080c0-32.853-26.88-60.16-60.16-60.16h-257.28c-32.853 0-59.733 26.88-59.733 60.16v586.24c0 32.853 26.88 60.16 59.733 60.16h110.080v-69.547h-100.267v-567.040h237.653v457.813l69.973-69.547z","M887.040 639.573l-189.44 188.587v73.813h73.813l189.013-189.44z","M903.253 623.36l73.387 72.96 42.667-42.667c2.133-2.133 2.56-3.413 2.987-4.693 1.28-3.413 1.707-6.827 1.707-9.813 0-2.133-0.427-4.267-1.28-6.4v0c-1.28-3.413-2.987-6.4-5.547-9.387l-42.24-41.813c-2.133-2.133-4.267-3.84-6.827-4.693-5.12-2.133-10.24-2.133-16.64 0-1.707 0.427-2.987 1.707-5.12 3.413l-43.093 43.093z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}]},"tags":["visible_columns"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":408,"id":120,"name":"visible_columns","prevSize":32,"code":59780},"setIdx":0,"setId":2,"iconIdx":121},{"icon":{"paths":["M1024 337.067c0 42.667-17.067 72.533-46.933 98.133s-72.533 38.4-123.733 38.4c-17.067 0-34.133-4.267-46.933-4.267v554.667h-174.933v-605.867c0-29.867-4.267-46.933-12.8-64-8.533-12.8-25.6-21.333-51.2-21.333-34.133 0-59.733 17.067-76.8 46.933v644.267h-174.933v-605.867c0-29.867-4.267-51.2-12.8-64-12.8-12.8-29.867-17.067-55.467-17.067-34.133 0-59.733 12.8-76.8 42.667v644.267h-170.667v-810.667h162.133l4.267 64c38.4-51.2 93.867-76.8 157.867-76.8 68.267 0 115.2 29.867 140.8 85.333 38.4-55.467 93.867-85.333 162.133-85.333 93.867 0 145.067 46.933 166.4 136.533v0c0 12.8 4.267 25.6 17.067 38.4 12.8 8.533 25.6 17.067 42.667 17.067s34.133-4.267 46.933-17.067 17.067-25.6 17.067-38.4c0-21.333-4.267-38.4-17.067-51.2-12.8-8.533-25.6-12.8-46.933-12.8h-51.2v-81.067h51.2c38.4 0 59.733-21.333 59.733-59.733 0-17.067-4.267-25.6-12.8-38.4-12.8-8.533-25.6-12.8-46.933-12.8-12.8 0-25.6 4.267-38.4 12.8-8.533 8.533-17.067 17.067-17.067 29.867h-106.667c0-25.6 8.533-46.933 21.333-64s34.133-34.133 55.467-42.667 55.467-17.067 85.333-17.067c51.2 0 93.867 12.8 119.467 34.133 29.867 25.6 42.667 55.467 42.667 98.133 0 21.333-4.267 38.4-17.067 55.467s-29.867 29.867-51.2 42.667c25.6 8.533 42.667 21.333 59.733 38.4 8.533 21.333 17.067 42.667 17.067 68.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["volume"],"grid":0},"attrs":[{}],"properties":{"order":409,"id":121,"name":"volume","prevSize":32,"code":59781},"setIdx":0,"setId":2,"iconIdx":122},{"icon":{"paths":["M829.649 394.971l-18.808 50.155-50.155 18.808 50.155 18.808 18.808 50.155 18.808-50.155 50.155-18.808-50.155-18.808-18.808-50.155zM624.849 89.861l-35.527-89.861-33.437 89.861-89.861 35.527 89.861 33.437 33.437 89.861 33.437-89.861 91.951-33.437-89.861-35.527zM969.665 140.016l-20.898-54.335-20.898 54.335-52.245 20.898 52.245 20.898 20.898 52.245 20.898-52.245 54.335-20.898-54.335-20.898zM783.673 311.38l-71.053-71.053c-4.18-4.18-8.359-4.18-12.539-4.18s-8.359 2.090-12.539 4.18l-681.273 681.273c0 0 0 0 0 0v0c-6.269 6.269-6.269 18.808 0 25.078l71.053 71.053c6.269 6.269 16.718 6.269 22.988 0v0c0 0 0 0 0 0l683.363-683.363c6.269-6.269 6.269-16.718 0-22.988zM626.939 453.486l-56.424-56.424 129.567-129.567 56.424 56.424-129.567 129.567z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["wand"],"grid":0},"attrs":[{}],"properties":{"order":410,"id":122,"name":"wand","prevSize":32,"code":59782},"setIdx":0,"setId":2,"iconIdx":123},{"icon":{"paths":["M827.733 426.667c-29.867-145.067-157.867-256-315.733-256-123.733 0-230.4 68.267-285.867 170.667-128 17.067-226.133 123.733-226.133 256 0 140.8 115.2 256 256 256h554.667c119.467 0 213.333-93.867 213.333-213.333 0-110.933-85.333-204.8-196.267-213.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["web"],"grid":0},"attrs":[{}],"properties":{"order":411,"id":123,"name":"web","prevSize":32,"code":59783},"setIdx":0,"setId":2,"iconIdx":124},{"icon":{"paths":["M793.6 226.133c0 0 4.267 0 4.267 0l76.8-12.8v42.667c0 34.133-21.333 68.267-46.933 72.533 0 0-4.267 0-4.267 0l-76.8 12.8v-42.667c0-34.133 21.333-64 46.933-72.533z","M742.4 362.667l38.4-4.267c12.8 0 25.6 12.8 25.6 29.867v21.333l-38.4 4.267c-12.8 0-25.6-12.8-25.6-29.867v-21.333z","M618.667 260.267l68.267-8.533c25.6-4.267 42.667 21.333 42.667 55.467v38.4l-68.267 8.533c-25.6 4.267-42.667-21.333-42.667-55.467l-0-38.4z","M665.6 371.2c4.267 0 4.267 0 0 0l59.733-4.267v29.867c0 25.6-17.067 46.933-34.133 55.467 0 0-4.267 0-4.267 0l-55.467 8.533v-29.867c4.267-29.867 17.067-51.2 34.133-59.733z","M443.733 311.467c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 4.267-8.533 4.267-12.8 4.267z","M443.733 448c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267-0-8.533 4.267-12.8 4.267z","M443.733 580.267c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 0-8.533 4.267-12.8 4.267z","M443.733 712.533c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 0-8.533 4.267-12.8 4.267z","M588.8 580.267c-4.267 0-4.267 0-8.533-4.267s0-8.533 4.267-12.8c68.267-46.933 140.8-59.733 196.267-59.733s93.867 8.533 98.133 8.533c4.267 0 8.533 8.533 8.533 12.8s-8.533 8.533-12.8 8.533v0c0 0-153.6-38.4-277.333 46.933-4.267-4.267-4.267 0-8.533 0z","M588.8 712.533c-4.267 0-4.267 0-8.533-4.267s0-8.533 4.267-12.8c68.267-46.933 140.8-59.733 196.267-59.733s93.867 8.533 98.133 8.533c4.267 0 8.533 8.533 8.533 12.8s-8.533 8.533-12.8 8.533v0c0 0-153.6-38.4-277.333 46.933-4.267-4.267-4.267 0-8.533 0z","M985.6 221.867v-64l-8.533-4.267c-4.267 0-81.067-29.867-179.2-29.867-106.667 0-200.533 34.133-277.333 98.133-76.8-64-170.667-98.133-277.333-98.133-102.4 0-174.933 29.867-179.2 29.867l-12.8 4.267v59.733c-34.133 4.267-51.2 17.067-51.2 34.133v614.4h452.267c17.067 12.8 38.4 21.333 64 21.333s46.933-8.533 64-21.333h443.733v-614.4c0-17.067-17.067-25.6-38.4-29.867v0zM512 814.933c-38.4-17.067-166.4-64-298.667-64-51.2 0-98.133 8.533-136.533 21.333v-597.333c21.333-8.533 85.333-25.6 162.133-25.6 98.133 0 183.467 29.867 256 89.6v358.4l17.067-17.067v234.667zM955.733 776.533c-42.667-17.067-89.6-25.6-140.8-25.6-128 0-251.733 51.2-290.133 64v-238.933l17.067 17.067v-349.867c68.267-59.733 153.6-89.6 256-89.6 76.8 0 136.533 17.067 162.133 25.6v597.333zM955.733 776.533z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}]},"tags":["wiki"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":412,"id":124,"name":"wiki","prevSize":32,"code":59785},"setIdx":0,"setId":2,"iconIdx":125},{"icon":{"paths":["M297.6 454.4c-44.8 0-80 35.2-80 83.2s35.2 83.2 80 83.2 80-35.2 80-83.2-35.2-83.2-80-83.2zM297.6 640c-54.4 0-163.2 28.8-163.2 83.2v60.8h326.4v-60.8c0-54.4-108.8-83.2-163.2-83.2zM880 515.2h-316.8c-16 0-28.8-12.8-28.8-28.8s12.8-28.8 28.8-28.8h316.8c16 0 25.6 12.8 25.6 28.8s-12.8 28.8-25.6 28.8zM880 784h-316.8c-16 0-28.8-12.8-28.8-25.6s12.8-25.6 28.8-25.6h316.8c16 0 25.6 12.8 25.6 25.6s-12.8 25.6-25.6 25.6zM880 649.6h-316.8c-16 0-28.8-12.8-28.8-25.6s12.8-25.6 28.8-25.6h316.8c16 0 25.6 12.8 25.6 25.6s-12.8 25.6-25.6 25.6zM624 48v236.8c0 25.6-22.4 48-48 48h-131.2c-25.6 0-48-22.4-48-48v-236.8c0-25.6 22.4-48 48-48h131.2c28.8 0 48 22.4 48 48zM1024 294.4v640c0 51.2-41.6 89.6-89.6 89.6h-844.8c-48 0-89.6-41.6-89.6-89.6v-640c0-51.2 41.6-89.6 89.6-89.6h275.2v54.4h-275.2c-19.2 0-35.2 16-35.2 35.2v640c0 19.2 16 35.2 35.2 35.2h841.6c19.2 0 35.2-16 35.2-35.2v-640c0-19.2-16-35.2-35.2-35.2h-275.2v-54.4h275.2c51.2 0 92.8 38.4 92.8 89.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}]},"tags":["worker"],"grid":0},"attrs":[{}],"properties":{"order":413,"id":125,"name":"worker","prevSize":32,"code":59786},"setIdx":0,"setId":2,"iconIdx":126},{"icon":{"paths":["M243.2 512c-12.8-17.067-25.6-34.133-38.4-51.2-34.133-46.933-68.267-98.133-89.6-153.6-17.067-34.133-25.6-72.533-17.067-110.933 8.533-51.2 38.4-89.6 85.333-110.933 59.733-25.6 132.267-8.533 174.933 34.133 34.133 38.4 42.667 81.067 34.133 132.267-8.533 46.933-29.867 85.333-51.2 123.733-29.867 46.933-59.733 89.6-89.6 132.267-4.267 0-4.267 0-8.533 4.267zM247.467 136.533c-46.933 0-89.6 38.4-89.6 89.6 0 46.933 38.4 89.6 85.333 89.6s89.6-38.4 89.6-85.333c0-55.467-38.4-93.867-85.333-93.867z","M490.667 580.267l-17.067-25.6 12.8-8.533-34.133-183.467c0 0 0-8.533-8.533-8.533l-42.667-4.267c0 0-68.267 110.933-157.867 217.6 4.267-4.267-93.867-110.933-132.267-187.733l-110.933 51.2c0 0-4.267 0-4.267 8.533l25.6 145.067 34.133 21.333-8.533 21.333-17.067-8.533 59.733 332.8 213.333-102.4 238.933 21.333-51.2-290.133zM149.333 674.133c-12.8-4.267-29.867-12.8-42.667-17.067 4.267-8.533 4.267-17.067 8.533-21.333 17.067 0 29.867 4.267 42.667 12.8-4.267 8.533-4.267 17.067-8.533 25.6zM256 691.2c-17.067 0-34.133-4.267-46.933-4.267 0-8.533 4.267-17.067 4.267-25.6 12.8 0 29.867 4.267 42.667 4.267 0 8.533 0 17.067 0 25.6zM315.733 682.667c-4.267-8.533-4.267-12.8-8.533-21.333 17.067-8.533 29.867-17.067 42.667-21.333 4.267 8.533 8.533 12.8 8.533 21.333-12.8 8.533-25.6 12.8-42.667 21.333zM405.333 631.467c-4.267-8.533-8.533-12.8-12.8-21.333 12.8-8.533 25.6-17.067 38.4-25.6 4.267 4.267 8.533 12.8 12.8 21.333-8.533 8.533-21.333 17.067-38.4 25.6z","M972.8 499.2l-29.867-25.6 12.8-21.333 12.8 8.533-34.133-187.733c0 0 0-8.533-8.533-8.533l-226.133-17.067-209.067 93.867c0 0-8.533 4.267-4.267 12.8l29.867 170.667 21.333 12.8-17.067 17.067 55.467 307.2 213.333-102.4 234.667 21.333-51.2-281.6zM580.267 494.933c-4.267-4.267-8.533-12.8-12.8-17.067 12.8-12.8 21.333-21.333 29.867-34.133 4.267 4.267 12.8 12.8 17.067 17.067-12.8 8.533-25.6 21.333-34.133 34.133zM657.067 418.133c-4.267-4.267-8.533-12.8-12.8-21.333 12.8-8.533 25.6-17.067 38.4-25.6 8.533 8.533 12.8 17.067 12.8 21.333-12.8 8.533-25.6 17.067-38.4 25.6zM797.867 388.267c-12.8-4.267-25.6-4.267-42.667-4.267 0-8.533 0-17.067 0-25.6 17.067 0 34.133 0 51.2 4.267-4.267 8.533-4.267 17.067-8.533 25.6zM891.733 439.467c-12.8-8.533-25.6-17.067-38.4-25.6 4.267-8.533 8.533-12.8 12.8-21.333 12.8 8.533 25.6 17.067 38.4 25.6-4.267 8.533-8.533 12.8-12.8 21.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}]},"tags":["zone"],"grid":0},"attrs":[{},{},{}],"properties":{"order":414,"id":126,"name":"zone","prevSize":32,"code":59787},"setIdx":0,"setId":2,"iconIdx":127}],"height":1024,"metadata":{"name":"icon"},"preferences":{"showGlyphs":true,"showCodes":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"autoHost":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"name":"SalixFont","classSelector":".icon","height":32,"columns":16,"margin":16},"historySize":50,"quickUsageToken":{"VerdnaturaSalixFont":"N2U2MmMxZTVlYyMxNzE3NTkzMzMyI1NTcU5tNU4yTUFTclRvL0Nud1NYQW44RVdwSE9CZHJpYitGZ2ZhWnhYcEZR"},"gridSize":16}} \ No newline at end of file +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M512 197.12c2.987 0 8.96 0.853 12.373 7.253l270.080 467.627c3.413 6.4 1.707 11.52 0 14.507-1.707 2.56-5.12 7.253-12.373 7.253h-540.16c-7.253 0-11.093-4.693-12.373-7.253-1.707-2.56-3.413-8.107 0-14.507l270.080-467.627c3.413-6.4 9.387-7.253 12.373-7.253zM512 154.88c-19.2 0-38.4 9.387-49.493 28.587l-270.080 467.627c-21.76 37.973 5.547 85.333 49.493 85.333h539.733c43.947 0 71.253-47.36 49.493-85.333l-270.080-467.627c-11.093-18.773-30.293-28.587-49.493-28.587v0z","M480.853 612.693c0-16.64 13.653-31.573 31.147-31.573s31.147 14.933 31.147 31.573-13.653 31.147-31.147 31.147-31.147-14.507-31.147-31.147z","M543.147 331.52c0 26.027-2.987 52.48-5.12 78.507-2.56 35.413-5.547 70.827-8.107 106.24s0 25.6-4.693 36.693-3.413 5.973-6.4 7.68c-2.133 1.28-4.693 1.28-7.253 1.28s-5.12-0.427-7.253-1.707c-3.413-2.133-5.547-5.547-6.827-9.813-3.84-13.227-3.413-29.013-4.267-42.667s-2.987-37.973-4.267-56.747c-2.56-36.267-5.547-72.107-7.68-108.373s-0.427-7.68-0.427-11.52c0-23.040 11.947-32.427 31.147-32.427s31.147 9.813 31.147 32.853z","M972.8 902.4v-902.4h-44.373v153.173h-346.453c3.413 3.84 6.4 8.533 8.96 12.8l15.36 26.88h322.133v314.453h-140.8l23.040 40.107h117.333v305.493h-832.427v-305.493h117.333l23.040-40.107h-140.373v-314.453h322.133l15.36-26.88c2.56-4.693 5.973-8.96 8.96-12.8h-346.453v-153.173h-44.373v902.4c-23.893 8.96-40.533 32-40.533 58.88s28.16 62.72 62.72 62.72 62.72-28.16 62.72-62.72-17.067-49.92-40.533-58.88v-9.387h832.853v9.387c-23.893 8.96-40.533 32-40.533 58.88s28.16 62.72 62.72 62.72 62.72-28.16 62.72-62.72-16.64-49.92-40.533-58.88z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hasItemLost"],"colorPermutations":{"125525525519595951":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":425,"id":131,"name":"hasItemLost","prevSize":32,"code":59735},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M921.6 469.333c-21.333-170.667-157.867-302.933-324.267-324.267-226.133-25.6-418.133 149.333-418.133 371.2h-68.267l106.667 166.4 110.933-166.4h-68.267c0-162.133 132.267-290.133 290.133-285.867 153.6 0 281.6 132.267 281.6 281.6 0 162.133-128 290.133-285.867 290.133s-153.6-34.133-200.533-85.333l-55.467 55.467c68.267 68.267 157.867 106.667 264.533 106.667 221.867 0 392.533-192 366.933-413.867z","M507.733 349.867v204.8l174.933 106.667 25.6-51.2-140.8-85.333v-174.933h-59.733z","M256 226.133v-226.133h-51.2v290.133c17.067-21.333 34.133-42.667 51.2-64z","M460.8 115.2v-115.2h-153.6v183.467c46.933-34.133 98.133-55.467 153.6-68.267z","M921.6 0v345.6c38.4 85.333 51.2 183.467 21.333 281.6-4.267 21.333-12.8 38.4-21.333 59.733v337.067h102.4v-1024h-102.4z","M819.2 209.067v-209.067h-51.2v170.667c17.067 12.8 34.133 25.6 51.2 38.4z","M665.6 123.733v-123.733h-102.4v106.667c34.133 0 68.267 8.533 102.4 17.067z","M76.8 533.333l-38.4-55.467h64v-477.867h-102.4v1024h102.4v-448l-25.6-42.667z","M768 857.6v166.4h51.2v-204.8c-17.067 12.8-34.133 25.6-51.2 38.4z","M584.533 917.333c-8.533 0-12.8 0-21.333 0v106.667h102.4v-119.467c-25.6 8.533-55.467 12.8-81.067 12.8z","M307.2 836.267v187.733h153.6v-115.2c-55.467-12.8-106.667-38.4-153.6-72.533z","M204.8 733.867v290.133h51.2v-230.4c-21.333-17.067-38.4-38.4-51.2-59.733z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hasItemDelay"],"colorPermutations":{"125525525519595951":[{},{},{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":426,"id":130,"name":"hasItemDelay","prevSize":32,"code":59757},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M0 567.467l345.6 345.173 233.387-233.387-88.32-88.32-90.027 88.32v-266.667h266.667l-88.32 90.453 88.32 87.893 233.387-233.387-345.6-345.6-555.093 555.52z","M836.267 637.013c-104.533 0-187.733 83.2-188.587 187.307 0.853 104.107 83.2 187.307 187.733 187.733 104.96 0 188.16-83.2 188.16-187.307s-83.2-187.307-187.733-187.733zM929.707 842.667c-2.56 0.853-5.12 0.853-7.253 0.853h-67.413v68.693c0 9.387-7.253 17.92-16.213 18.773-0.853 0-1.707 0-2.56 0-8.533 0-15.787-5.547-18.347-13.653-0.853-2.56-0.853-4.693-0.853-6.827v-67.413c-18.347 0-37.12 0-57.173 0h-11.52c-9.387 0-17.493-6.827-18.773-15.36-1.28-9.813 4.267-18.773 13.227-21.333 2.56-0.853 4.693-0.853 6.827-0.853h67.84v-68.693c0-9.813 6.827-17.493 16.213-18.773s18.347 4.267 20.907 13.227c0.853 2.56 0.853 4.693 0.853 6.827v67.413c20.48 0 40.96 0 63.147 0h5.973c8.96 0 17.067 6.4 18.347 15.36 1.28 9.813-4.267 18.773-13.227 21.76z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"125525525519595951":[{},{}]},"tags":["add_entries"],"grid":0},"attrs":[{},{}],"properties":{"order":424,"id":0,"name":"add_entries","prevSize":32,"code":59731},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M640 921.6l-17.067 17.067h-213.333v-153.6h-153.6v-102.4h200.533l102.4-102.4h-302.933v-102.4h405.333l102.4-102.4h-507.733v-102.4h520.533v89.6l72.533-72.533c17.067-17.067 42.667-29.867 68.267-29.867 4.267 0 8.533 0 8.533 0v-157.867c0-55.467-46.933-102.4-102.4-102.4h-627.2c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h627.2c55.467 0 102.4-46.933 102.4-102.4v-285.867l-285.867 285.867z","M917.333 324.267c8.533 0 17.067 4.267 21.333 8.533l76.8 76.8c12.8 12.8 12.8 34.133 0 46.933l-64 64-119.467-119.467 64-64c4.267-8.533 12.8-12.8 21.333-12.8z","M797.867 430.933l119.467 123.733-320 320h-123.733v-119.467l324.267-324.267z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["100"],"grid":0},"attrs":[{},{},{}],"properties":{"order":279,"id":1,"name":"100","prevSize":32,"code":59649},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M1135.232 1024v-47.84h-84.352v-927.424l8.576-0.416c3.104-0.192 6.304-0.352 9.472-0.352h23.68c14.208-0.064 28.352-0.064 42.56-0.064v-47.904c-314.72 0.192-629.472 0.224-944.256 0.224h-190.912v47.712h83.168s0 928.064 0 928.064h-83.168v47.712h140.896c331.456 0 662.88 0 994.336 0.256zM821.536 48.736h180.16v926.944h-180.16v-926.944zM591.904 48.256h180.096v926.944h-180.096v-926.88zM362.272 48.256h180.16v926.944h-180.16v-926.944zM132.608 48.736h180.16v926.944h-180.16v-926.944z","M748.128 240.32c4.928 1.088 9.664 2.592 14.272 4.192v-142.144c-7.552-1.728-15.168-3.36-22.976-4.736-16.672-2.816-33.568-4.448-50.368-6.592h-52.64c-2.944 0.48-5.888 1.184-8.8 1.44-8.768 0.704-17.504 1.664-26.144 3.008v144.736c47.776-14.56 97.184-10.72 146.656 0.064z","M878.56 332.384c27.808-34.784 55.936-69.984 84.192-105.28-38.080-44.416-81.664-78.528-131.616-101.44v162.848c16.384 13.6 31.36 28.896 47.424 43.84z","M467.008 676.192c-0.288-0.608 0-1.568 0-3.072h65.888v-101.792h-97.44c-6.528-32.448-3.488-64.704-4.256-97.856h101.696v-101.856h-74.72c0.064-1.44 0-2.048 0.192-2.464 18.112-37.664 42.496-69.44 74.528-93.664v-161.408c-3.296 1.376-6.656 2.816-9.888 4.32-60.48 28.608-111.328 66.016-151.104 113.44v564.608c37.952 46.656 87.008 82.784 147.2 108.352 4.544 1.92 9.184 3.712 13.792 5.472v-153.504c-26.912-20.512-48.448-48.096-65.824-80.704z","M297.92 368.192c-1.92 6.048-4.608 7.808-10.848 7.744-35.072-0.288-70.144-0.192-105.216-0.192h-9.28v93.664h100.8c0.896 33.152 1.792 65.248 2.752 98.144h-103.616v101.76h9.28c36.704 0 73.44 0.352 110.144-0.256 5.28-0.128 8.704 0.832 11.2 3.232v-319.392c-1.792 5.024-3.648 10.080-5.28 15.296z","M736.672 673.12v-101.792h-135.2v101.792h135.2z","M736.8 371.68h-135.328v101.856h135.328v-101.856z","M954.272 796.768c-28.416-34.048-56.544-67.808-84-100.736-13.312 10.976-26.208 21.888-39.168 32.544v169.248c13.504-6.4 26.688-13.792 39.584-22.304 32.256-21.344 59.776-47.712 83.584-78.784z","M615.2 792.512c-4.672-0.832-9.248-1.792-13.728-2.944v138.688c32.032 5.024 64.64 5.824 97.792 3.168 21.536-1.728 42.624-4.928 63.136-9.76v-145.696c-45.44 21.536-95.040 25.792-147.2 16.544z"],"width":1120,"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{}]},"tags":["Client_unpaid"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":280,"id":2,"name":"Client_unpaid","prevSize":32,"code":59788},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M554.667 25.6c-260.267 0-469.333 209.067-469.333 469.333h-85.333l136.533 209.067 140.8-209.067h-85.333c0-200.533 162.133-362.667 362.667-362.667s362.667 162.133 362.667 362.667-162.133 362.667-362.667 362.667c-98.133 0-192-42.667-251.733-106.667l-72.533 72.533c85.333 85.333 200.533 136.533 332.8 136.533 260.267 0 465.067-209.067 465.067-465.067s-217.6-469.333-473.6-469.333zM503.467 285.867v260.267l221.867 132.267 34.133-64-179.2-106.667v-221.867h-76.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["History"],"grid":0},"attrs":[{}],"properties":{"order":281,"id":3,"name":"History","prevSize":32,"code":59650},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M512 0c-140.8 0-256 115.2-256 259.2s115.2 259.2 256 259.2 256-115.2 256-259.2c0-144-115.2-259.2-256-259.2zM512 582.4c-169.6 0-512 86.4-512 259.2v195.2h1024v-195.2c0-172.8-342.4-259.2-512-259.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["Person"],"grid":0},"attrs":[{}],"properties":{"order":282,"id":4,"name":"Person","prevSize":32,"code":59651},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M955.307 27.733h-885.76c-37.973 0-69.547 30.72-69.547 69.547v130.56c0 37.973 30.72 69.547 69.547 69.547h53.333v2.133l81.493 567.040c10.667 75.093 67.413 129.707 133.973 129.707h346.88c67.413 0 123.733-54.613 133.973-129.707l81.92-569.173h53.333c37.973 0 69.547-30.72 69.547-69.547v-131.413c0-37.973-30.72-68.693-68.693-68.693zM843.093 299.947l-80.64 558.080c-6.827 46.507-39.253 80.213-77.227 80.213h-346.027c-37.973 0-70.827-33.707-77.227-80.213l-81.067-561.493h663.040l-0.853 3.413zM966.4 227.84c0 6.4-5.12 11.947-11.947 11.947h-884.907c-6.4 0-11.947-5.12-11.947-11.947v-131.413c0-6.4 5.12-11.947 11.947-11.947h885.76c6.4 0 11.947 5.12 11.947 11.947v131.413h-0.853z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["complementos"],"grid":0},"attrs":[{}],"properties":{"order":283,"id":5,"name":"accessory","prevSize":32,"code":59652},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 214.4c73.6 0 137.6 60.8 137.6 137.6s-60.8 137.6-137.6 137.6-137.6-60.8-137.6-137.6c0-76.8 64-137.6 137.6-137.6zM512 896c-134.4 0-252.8-70.4-323.2-176 48-89.6 227.2-131.2 323.2-131.2s272 44.8 323.2 131.2c-70.4 105.6-188.8 176-323.2 176z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[],"125525525519595951":[],"12043441125524245125525525513111218319595951":[]},"tags":["account"],"grid":0},"attrs":[],"properties":{"order":284,"id":6,"name":"account","prevSize":32,"code":59653},"setIdx":0,"setId":0,"iconIdx":8},{"icon":{"paths":["M354.133 401.067v-183.467c0-68.267 55.467-123.733 123.733-123.733s119.467 59.733 119.467 123.733v183.467c59.733-38.4 98.133-106.667 98.133-183.467 0-119.467-98.133-217.6-221.867-217.6s-217.6 98.133-217.6 217.6c0 76.8 38.4 145.067 98.133 183.467zM832 627.2l-221.867-110.933c-8.533-4.267-17.067-4.267-25.6-4.267h-38.4v-294.4c0-38.4-34.133-72.533-72.533-72.533s-72.533 34.133-72.533 72.533v524.8l-166.4-34.133c-4.267 0-8.533 0-12.8 0-17.067 0-29.867 4.267-38.4 17.067l-38.4 38.4 238.933 238.933c12.8 12.8 29.867 21.333 51.2 21.333h332.8c38.4 0 64-25.6 68.267-64l38.4-256c0-4.267 0-8.533 0-8.533 4.267-29.867-17.067-55.467-42.667-68.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["actions"],"grid":0},"attrs":[{}],"properties":{"order":285,"id":7,"name":"actions","prevSize":32,"code":59655},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M716.8 409.6c-169.813 0-307.2 137.387-307.2 307.2s137.387 307.2 307.2 307.2 307.2-137.387 307.2-307.2-137.387-307.2-307.2-307.2zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427z","M354.133 716.8c0-96.853 37.547-187.733 105.813-256-20.907-2.133-40.107-2.987-56.747-2.987-134.4 0-403.2 70.4-403.2 204.8v153.6h367.787c-8.96-32-13.653-65.28-13.653-99.413z","M605.013 204.8c0 113.108-90.355 204.8-201.813 204.8s-201.813-91.692-201.813-204.8c0-113.108 90.355-204.8 201.813-204.8s201.813 91.692 201.813 204.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["addperson"],"grid":0},"attrs":[{},{},{}],"properties":{"order":286,"id":8,"name":"addperson","prevSize":32,"code":59656},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M89.173 881.493l51.2 79.36c455.68-25.6 821.333-398.933 856.32-659.627l-57.6-72.107c-74.667 355.413-532.053 630.613-849.92 652.373zM212.48 389.973l42.667 85.76c-50.347 46.507-75.52 77.653-110.507 136.107-47.36 78.507-66.56 129.707-81.067 221.013l-63.573-102.4c20.907-65.707 36.693-101.973 71.253-161.707 44.8-75.947 76.8-116.907 141.227-178.773 0 0-64 61.867 0 0zM478.72 727.893l-393.813-664.747h420.693l256.853 440.32c-77.653 88.32-177.067 165.12-283.733 224.853zM843.947 643.413l180.053 308.053h-412.587l-50.773-86.187c64.427-34.987 125.867-77.227 183.467-125.867 35.84-30.293 69.547-62.72 100.267-96.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"12043441125524245125525525513111218319595951":[{}],"125525525519595951":[{}]},"tags":["agencia_tributaria"],"grid":0},"attrs":[{}],"properties":{"order":422,"id":9,"name":"agencia_tributaria","prevSize":32,"code":59720},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2-0 25.6-25.6 51.2-51.2 51.2z","M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM725.333 277.333c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["agency"],"grid":0},"attrs":[{},{},{}],"properties":{"order":287,"id":10,"name":"agency","prevSize":32,"code":59690},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M789.333 693.333c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM789.333 846.933c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2 0 25.6-25.6 51.2-51.2 51.2z","M251.733 693.333c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM251.733 846.933c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M1006.933 420.267l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933v0zM725.333 275.2c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067zM509.013 403.627c0 113.92-92.16 206.080-206.080 206.080s-206.080-92.16-206.080-206.080 92.16-206.507 206.080-206.507 206.080 92.587 206.080 206.507zM342.613 465.92h-87.893l-15.36 40.107h-78.933l100.693-230.827h76.373l100.693 230.827h-80.213l-15.36-40.107zM321.28 409.6l-22.613-58.027-22.187 58.027h44.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["agency-term"],"grid":0},"attrs":[{},{},{}],"properties":{"order":288,"id":11,"name":"agency-term","prevSize":32,"code":59657},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M878.933 102.4h-217.6c-25.6-59.733-81.067-102.4-149.333-102.4s-123.733 42.667-145.067 102.4h-221.867c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h729.6c55.467 0 102.4-46.933 102.4-102.4v-716.8c4.267-55.467-42.667-102.4-98.133-102.4zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2zM614.4 819.2h-362.667v-102.4h366.933v102.4zM772.267 614.4h-520.533v-102.4h520.533v102.4zM772.267 409.6h-520.533v-102.4h520.533v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["albaran"],"grid":0},"attrs":[{}],"properties":{"order":289,"id":12,"name":"albaran","prevSize":32,"code":59692},"setIdx":0,"setId":0,"iconIdx":14},{"icon":{"paths":["M230.4 354.133c12.8-46.933 29.867-93.867 46.933-140.8 8.533-34.133 21.333-64 29.867-98.133 4.267-12.8 8.533-12.8 21.333-12.8 38.4 12.8 72.533 21.333 110.933 25.6 12.8 4.267 29.867 0 46.933 0 34.133-4.267 68.267-8.533 102.4-12.8s72.533-12.8 106.667-17.067c4.267 0 8.533 0 12.8 0s8.533 0 12.8 8.533c12.8 46.933 29.867 93.867 42.667 136.533 12.8 38.4 25.6 76.8 34.133 115.2-192-4.267-379.733-4.267-567.467-4.267z","M456.533 712.533c34.133-8.533 64-12.8 98.133-4.267 8.533 0 12.8 0 12.8-8.533 17.067-34.133 42.667-59.733 76.8-72.533 38.4-17.067 76.8-21.333 115.2-8.533 34.133 8.533 59.733 29.867 81.067 55.467 25.6 34.133 38.4 72.533 34.133 119.467-8.533 51.2-34.133 89.6-76.8 115.2-51.2 34.133-132.267 29.867-179.2-12.8-42.667-34.133-59.733-76.8-64-128 0-8.533-4.267-12.8-12.8-17.067-21.333-4.267-42.667-4.267-64 0-8.533 4.267-8.533 4.267-8.533 12.8 0 21.333-4.267 46.933-12.8 68.267-12.8 29.867-34.133 55.467-64 72.533-55.467 38.4-136.533 34.133-183.467-8.533-42.667-34.133-64-76.8-59.733-128 0-59.733 29.867-106.667 85.333-136.533s115.2-25.6 170.667 12.8c12.8 8.533 21.333 17.067 34.133 29.867 0 8.533 8.533 21.333 17.067 38.4zM307.2 657.067c-64 0-115.2 51.2-115.2 110.933 0 64 46.933 115.2 110.933 115.2s115.2-46.933 115.2-110.933c4.267-64-46.933-115.2-110.933-115.2zM712.533 657.067c-64 0-115.2 51.2-115.2 110.933 0 64 46.933 115.2 110.933 115.2 59.733 0 115.2-46.933 115.2-110.933 0-59.733-46.933-115.2-110.933-115.2z","M1024 550.4c-341.333 0-682.667 0-1024 0 0 0 0 0 0 0 17.067-8.533 29.867-17.067 46.933-21.333 42.667-12.8 85.333-29.867 132.267-42.667 34.133-8.533 68.267-17.067 102.4-21.333 89.6-17.067 183.467-21.333 277.333-17.067 55.467 4.267 110.933 8.533 166.4 17.067 38.4 4.267 72.533 12.8 110.933 21.333s72.533 21.333 110.933 34.133c21.333 4.267 51.2 17.067 76.8 29.867 0 0 0 0 0 0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["anonymous"],"grid":0},"attrs":[{},{},{}],"properties":{"order":290,"id":13,"name":"anonymous","prevSize":32,"code":59659},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M0 256h256v-256h-256v256zM384 1024h256v-256h-256v256zM0 1024h256v-256h-256v256zM0 640h256v-256h-256v256zM384 640h256v-256h-256v256zM768 0v256h256v-256h-256zM384 256h256v-256h-256v256zM768 640h256v-256h-256v256zM768 1024h256v-256h-256v256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["apps"],"grid":0},"attrs":[{}],"properties":{"order":291,"id":14,"name":"apps","prevSize":32,"code":59660},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M613.973 397.227c-28.16 0-56.32 0-85.333 0-35.84 0-71.253 0-107.093 0h-13.653c-10.24 0-12.373 1.28-12.373 12.373v207.36c0 4.267 0 5.973 2.133 8.107s4.267 2.133 8.96 2.133h207.36c10.24 0 11.52-2.133 11.52-11.52 0-68.693 0-137.813 0-206.507 0.853-10.667-1.28-11.947-11.52-11.947zM570.027 517.547v52.053h-4.267c-8.96 0-17.92 0-26.88 0h-42.24c-13.227 0-26.88 0-39.68 0h-2.56l-0.853-2.56c0-37.973 0-74.24 0-111.36v-2.56h3.413c43.947 0 78.080 0 109.653 0h2.133l1.28 2.133c0 0 0 0.853 0 1.28 0 21.333 0 40.96 0 61.013z","M834.987 911.787l177.067-306.773c2.133-3.413 4.267-6.827 5.973-11.093l5.547-9.813-124.587-72.107 125.013-72.107-2.56-5.547c-0.853-2.133-2.133-3.413-2.56-5.547l-180.48-314.453c-2.56-5.547-5.547-7.68-7.68-8.107-2.133-0.853-5.547 0.853-10.24 3.413l-31.573 17.92c-26.027 14.933-51.627 29.44-77.653 44.8l-4.693 3.413v-132.693c0-4.693 0-7.68-2.133-9.813s-4.267-2.133-9.813-2.133h-363.52c-0.853 0-2.133 0-3.413 0-3.413 0-5.547 0.853-7.68 2.133-1.28 1.28-2.133 4.267-2.133 6.827 0 1.28 0 2.56 0 4.267v27.307c0 32.853 0 65.707 0 98.987v4.693l-121.173-69.973-3.413-0.853-2.133 2.56c-0.853 0.853-1.28 1.28-2.133 2.133l-183.467 316.587c-6.827 11.52-5.973 13.653 5.547 20.48l112.64 65.707-70.827 39.68c-15.787 8.96-30.72 17.92-46.507 26.88-2.56 1.28-5.547 3.413-5.973 6.827-0.853 2.133 0 4.693 2.133 7.68 0.853 1.28 1.28 2.133 2.133 3.413l177.92 308.907c2.133 4.267 4.693 8.107 8.107 12.373l2.133 2.133 124.16-71.253v17.067c0 11.093 0 21.333 0 31.573l-0.853 83.2c0 10.24 1.28 11.52 11.093 11.52h17.067c11.093 0 21.333 0.853 32.427 0.853h309.76c16.64 0 17.92-1.28 17.92-18.347v-125.44l4.267 2.133c19.2 11.093 38.4 21.76 57.173 32.853l13.227 7.68c14.507 8.107 29.013 16.64 43.093 24.747 1.28 0.853 4.693 2.56 7.68 1.28 1.707-0 3.413-1.28 5.12-5.973zM808.96 843.093l-2.133-1.28-155.733-90.027-1.28 3.413c-2.133 4.267-2.133 7.68-1.28 11.093v2.133c0 43.947 0 87.893 0 132.693v28.16c0 1.28 0 2.56 0 4.693v2.56h-274.773v-4.693c0-12.373 0-24.747 0-36.267l0.853-143.36-4.693 2.133c-13.227 5.547-23.893 12.373-35.84 19.2-5.973 3.413-12.373 6.827-17.92 10.24-11.093 5.973-21.76 12.373-34.133 20.053l-68.693 39.68-136.533-237.653 100.267-57.6 61.867-35.84-44.8-25.6-118.187-68.693 2.133-4.267 131.84-227.413c0.853-1.28 1.28-2.133 2.133-3.413l1.28-2.133 3.413 1.28c8.96 5.547 18.347 11.093 27.307 16.64l119.467 69.547c2.133 1.28 4.693 2.56 8.107 0.853l2.133-1.28c1.28-2.133 1.28-4.693 1.28-8.107 0-5.973 0-11.52 0-17.067s0-10.24 0-15.787l0.853-138.667h4.267c14.507 0 29.013 0 42.667 0.853h2.133c15.787 0.853 29.013 0.853 40.533 0.853 39.68 0 78.080 0 124.16 0h55.040c0.853 0 1.28 0 2.133 0h2.133v186.027l162.133-92.587 136.533 237.653-161.28 92.587 160.853 92.16-1.28 2.133-136.96 235.093z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["artificial"],"grid":0},"attrs":[{},{}],"properties":{"order":292,"id":15,"name":"artificial","prevSize":32,"code":59661},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M960 93.867c-42.667-42.667-98.133-64-157.867-64s-115.2 21.333-157.867 64l-593.067 593.067c-34.133 34.133-55.467 85.333-51.2 136.533 0 42.667 17.067 81.067 46.933 110.933 34.133 38.4 81.067 59.733 132.267 59.733 46.933 0 93.867-17.067 128-51.2l541.867-546.133c25.6-25.6 42.667-64 42.667-98.133s-12.8-68.267-38.4-93.867c-25.6-25.6-59.733-38.4-98.133-38.4-34.133 0-72.533 17.067-98.133 42.667l-354.133 354.133c-4.267-0-4.267 4.267-4.267 12.8s4.267 12.8 8.533 17.067 25.6 8.533 34.133 0l354.133-354.133c12.8-17.067 38.4-25.6 59.733-25.6 25.6 0 51.2 12.8 68.267 34.133 8.533 12.8 17.067 25.6 17.067 42.667 4.267 25.6-4.267 55.467-25.6 72.533l-541.867 541.867c-25.6 25.6-55.467 38.4-93.867 38.4-34.133 0-68.267-12.8-93.867-38.4s-38.4-59.733-38.4-93.867c0-34.133 12.8-68.267 38.4-93.867l588.8-584.533c34.133-34.133 76.8-51.2 123.733-51.2s89.6 17.067 123.733 51.2c34.133 34.133 51.2 76.8 51.2 123.733s-17.067 89.6-51.2 123.733l-401.067 401.067c-4.267 4.267-8.533 12.8-8.533 17.067 0 8.533 4.267 12.8 8.533 17.067 8.533 8.533 25.6 8.533 34.133 0l401.067-401.067c89.6-89.6 89.6-230.4 4.267-320z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["attach"],"grid":0},"attrs":[{}],"properties":{"order":293,"id":16,"name":"attach","prevSize":32,"code":59662},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M0 102.4h102.4v819.2h-102.4v-819.2zM307.2 102.4h153.6v819.2h-153.6v-819.2zM768 102.4h51.2v819.2h-51.2v-819.2zM204.8 102.4h51.2v819.2h-51.2v-819.2zM921.6 102.4h102.4v819.2h-102.4v-819.2zM563.2 102.4h102.4v819.2h-102.4v-819.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["barcode"],"grid":0},"attrs":[{}],"properties":{"order":295,"id":17,"name":"barcode","prevSize":32,"code":59663},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M235.093 920.32l-18.773-321.28c0-18.773 12.8-34.56 31.573-37.973 18.773 0 34.56 12.8 37.973 31.573l15.787 317.867c0 18.773-12.8 34.56-31.573 37.973h-2.987c-16.213 2.987-32-12.8-32-28.16zM389.12 948.48c18.773 0 34.56-15.787 34.56-34.56v-324.267c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v324.267c-0 21.76 15.787 34.56 34.56 34.56zM512 945.493c18.773 0 34.56-15.787 34.56-34.56v-321.28c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v321.28c0 18.773 15.787 34.56 34.56 34.56zM760.747 945.493v0c18.773 0 34.56-15.787 34.56-31.573 6.4-148.053 9.387-311.467 9.387-314.88 0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56c0 6.4-6.4 226.56-9.387 311.467-0 15.787 15.787 34.987 34.56 34.987zM634.88 945.493c18.773 0 34.56-15.787 34.56-34.56v-321.28c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v321.28c-0 18.773 15.36 34.56 34.56 34.56zM1015.893 419.413v78.507c0 18.773-15.787 34.56-34.56 34.56h-28.16l-63.147 462.933c-2.987 15.787-15.787 28.16-34.56 28.16h-686.507c-15.787 0-31.573-12.8-34.56-28.16l-63.147-465.493h-28.16c-18.773 0-34.56-15.787-34.56-34.56v-78.933c0-18.773 15.787-34.56 34.56-34.56h169.813l138.667-286.293c-2.987-9.387-6.4-22.187-6.4-34.56 6.4-37.973 40.96-66.133 78.507-59.733s66.133 40.96 59.733 78.507-40.96 66.133-78.507 59.733v0l-110.080 245.333h431.36l-110.080-245.76c-37.973 6.4-72.533-22.187-78.507-59.733s22.187-72.533 59.733-78.507c37.973-6.4 72.533 22.187 78.507 59.733 2.987 12.8 0 25.173-6.4 34.56l138.667 286.293h169.813c22.187 3.413 37.973 19.2 37.973 37.973zM880.213 529.92h-736.427l53.333 427.947h629.76l53.333-427.947z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["basket"],"grid":0},"attrs":[{}],"properties":{"order":296,"id":18,"name":"basket","prevSize":32,"code":59664},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M197.973 454.827c-15.787 2.987-25.6 15.787-25.6 32l15.787 261.973c0 12.8 12.8 25.6 25.6 22.187h2.987c15.787-2.987 25.6-15.787 25.6-32l-12.8-258.987c-2.56-12.373-18.773-25.173-31.573-25.173z","M284.587 480.427v261.973c0 19.2 12.8 28.587 28.587 28.587s28.587-12.8 28.587-28.587v-261.973c0-15.787-12.8-28.587-28.587-28.587s-28.587 12.8-28.587 28.587z","M359.68 777.813h-203.093l-44.8-348.16h384.427c61.44-47.36 137.813-75.52 220.587-75.52 39.68 0 78.080 6.4 113.92 18.347v-35.84c0-15.787-12.8-28.587-32-32h-140.8l-115.2-226.987c6.4-6.4 6.4-19.2 6.4-28.587-6.4-32-34.987-54.187-64-47.787-32 6.4-54.187 32-47.787 64s34.987 54.187 64 47.787l89.6 197.973h-354.56l89.6-197.973c32 6.4 60.587-19.2 64-47.787 2.987-28.587-19.2-57.6-47.787-64-32-6.4-60.587 19.2-64 47.787 0 9.387 2.987 19.2 6.4 28.587l-115.2 233.387h-140.8c-15.787 0-28.587 12.8-28.587 28.587v64c0 15.787 12.8 28.587 28.587 28.587h22.613l51.2 377.173c2.987 12.8 15.787 22.187 28.587 22.187h242.347c-5.973-17.067-10.667-35.413-13.653-53.76z","M444.16 478.293v-0.853c0-12.8-12.8-25.6-28.587-25.6s-28.587 12.8-28.587 28.587v87.040c14.507-32.853 34.133-62.72 57.173-89.173z","M716.8 409.6c-169.813 0-307.2 137.387-307.2 307.2s137.387 307.2 307.2 307.2c169.813 0 307.2-137.387 307.2-307.2s-137.387-307.2-307.2-307.2zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h135.68v0.427z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{}],"125525525519595951":[{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{}]},"tags":["basketadd"],"grid":0},"attrs":[{},{},{},{},{}],"properties":{"order":297,"id":19,"name":"basketadd","prevSize":32,"code":59665},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M238.933 955.733c0 0 17.067 68.267 93.867 68.267h354.133c76.8 0 93.867-68.267 93.867-68.267l68.267-682.667h-678.4l68.267 682.667zM648.533 375.467c0-17.067 17.067-34.133 34.133-34.133s34.133 17.067 34.133 34.133l-34.133 512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133l34.133-512zM477.867 375.467c0-17.067 17.067-34.133 34.133-34.133s34.133 17.067 34.133 34.133v512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133c0 0 0-512 0-512zM341.333 341.333c17.067 0 34.133 17.067 34.133 34.133l34.133 512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133l-34.133-512c0-17.067 17.067-34.133 34.133-34.133zM832 136.533h-149.333v-68.267c0-51.2-17.067-68.267-68.267-68.267h-204.8c-46.933 0-68.267 21.333-68.267 68.267v68.267h-149.333c-29.867 0-55.467 21.333-55.467 51.2s25.6 51.2 55.467 51.2h640c29.867 0 55.467-21.333 55.467-51.2s-25.6-51.2-55.467-51.2zM614.4 136.533h-204.8v-68.267h204.8l0 68.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["bin"],"grid":0},"attrs":[{}],"properties":{"order":298,"id":20,"name":"bin","prevSize":32,"code":59667},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M819.2 529.067c-12.8-8.533-25.6-12.8-38.4-17.067 12.8-4.267 25.6-12.8 38.4-17.067 89.6-51.2 136.533-140.8 136.533-238.933-81.067-46.933-187.733-51.2-273.067 0-12.8 8.533-25.6 17.067-34.133 25.6 4.267-12.8 4.267-29.867 4.267-42.667 0-102.4-55.467-192-136.533-238.933-81.067 46.933-136.533 136.533-136.533 238.933 0 12.8 0 29.867 4.267 42.667-17.067-8.533-29.867-17.067-42.667-25.6-85.333-51.2-192-46.933-273.067 0 0 93.867 46.933 187.733 136.533 238.933 12.8 8.533 25.6 12.8 38.4 17.067-12.8 4.267-25.6 12.8-38.4 17.067-89.6 51.2-136.533 140.8-136.533 238.933 81.067 46.933 187.733 51.2 273.067 0 12.8-8.533 25.6-17.067 34.133-25.6-4.267 12.8-4.267 29.867-4.267 42.667 0 102.4 55.467 192 136.533 238.933 81.067-46.933 136.533-136.533 136.533-238.933 0-12.8 0-29.867-4.267-42.667 12.8 8.533 21.333 17.067 34.133 25.6 89.6 51.2 192 46.933 273.067 0 8.533-93.867-42.667-187.733-128-238.933zM512 695.467c-102.4 0-183.467-81.067-183.467-183.467s81.067-183.467 183.467-183.467 183.467 81.067 183.467 183.467-81.067 183.467-183.467 183.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["botanical"],"grid":0},"attrs":[{}],"properties":{"order":299,"id":21,"name":"botanical","prevSize":32,"code":59668},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M827.733 746.667l-17.067 140.8v4.267c0 81.067-115.2 132.267-298.667 132.267-217.6 0-320-68.267-320-132.267l-59.733-622.933c81.067 55.467 217.6 93.867 379.733 93.867 157.867 0 294.4-34.133 375.467-89.6l-51.2 401.067-8.533 72.533zM891.733 145.067c0 81.067-170.667 145.067-379.733 145.067s-379.733-68.267-379.733-145.067 170.667-145.067 379.733-145.067 379.733 64 379.733 145.067z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[],"125525525519595951":[],"12043441125524245125525525513111218319595951":[]},"tags":["bucket"],"grid":0},"attrs":[],"properties":{"order":300,"id":22,"name":"bucket","prevSize":32,"code":59669},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M774.4 892.8c0 19.2-16 38.4-38.4 38.4s-38.4-16-38.4-38.4 16-38.4 38.4-38.4 38.4 19.2 38.4 38.4zM262.4 857.6c-19.2 0-38.4 16-38.4 38.4s16 38.4 38.4 38.4c19.2 0 38.4-16 38.4-38.4s-16-38.4-38.4-38.4zM809.6 784c0 0 0 0 0 0 35.2 22.4 57.6 64 57.6 108.8 0 70.4-57.6 131.2-131.2 131.2-70.4 0-131.2-57.6-131.2-131.2 0 0 0 3.2 0 3.2-64 3.2-137.6 9.6-214.4 12.8 0 0 0 0 0 0-6.4 64-64 115.2-128 115.2-70.4 0-131.2-57.6-131.2-131.2 0-54.4 32-99.2 80-121.6 0 0 0 0 0 0-3.2-89.6 0-198.4 16-275.2 0 0 73.6-73.6 243.2-86.4 6.4 16 19.2 28.8 38.4 28.8s32-12.8 38.4-28.8c12.8 0 25.6 3.2 38.4 3.2v249.6c0 0 48 60.8 220.8 67.2zM345.6 892.8c0-44.8-35.2-80-80-80s-80 35.2-80 80c0 44.8 35.2 80 80 80 44.8 3.2 80-35.2 80-80zM416 505.6c0-9.6-6.4-16-16-16s-16 6.4-16 16c3.2 48-6.4 80-28.8 99.2-28.8 25.6-73.6 12.8-73.6 12.8-9.6-3.2-16 3.2-19.2 12.8s3.2 16 12.8 19.2c0 0 12.8 3.2 32 3.2s48-3.2 70.4-22.4c25.6-25.6 38.4-67.2 38.4-124.8zM819.2 892.8c0-44.8-35.2-80-80-80s-80 35.2-80 80c0 44.8 35.2 80 80 80 41.6 3.2 80-35.2 80-80zM886.4 153.6c-118.4-102.4-243.2-156.8-377.6-153.6-214.4 3.2-368 150.4-374.4 156.8-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 140.8-137.6 332.8-137.6 115.2 0 230.4 44.8 336 140.8 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 12.8-12.8 12.8-32 0-44.8zM806.4 240c-92.8-83.2-192-121.6-297.6-121.6-169.6 3.2-291.2 118.4-294.4 121.6-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 108.8-102.4 252.8-105.6 0 0 3.2 0 3.2 0 86.4 0 172.8 35.2 252.8 105.6 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 12.8-9.6 12.8-28.8 0-38.4zM732.8 323.2c-70.4-60.8-144-92.8-220.8-89.6-128 0-217.6 89.6-220.8 92.8-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 76.8-73.6 179.2-73.6 64 0 124.8 25.6 182.4 76.8 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 9.6-12.8 9.6-32-3.2-44.8zM512 374.4c-16 0-28.8 12.8-28.8 28.8s12.8 28.8 28.8 28.8c16 0 28.8-12.8 28.8-28.8-3.2-16-16-28.8-28.8-28.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["buscaman"],"grid":0},"attrs":[{}],"properties":{"order":301,"id":23,"name":"buscaman","prevSize":32,"code":59670},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M520.533 81.067c-34.133 0-55.467 25.6-55.467 55.467s25.6 55.467 55.467 55.467 55.467-25.6 55.467-55.467-21.333-55.467-55.467-55.467zM520.533 153.6c-12.8 0-17.067-8.533-17.067-17.067s8.533-17.067 17.067-17.067 17.067 8.533 17.067 17.067-4.267 17.067-17.067 17.067z","M588.8 712.533l-4.267-12.8v-4.267l-17.067-59.733h-273.067v89.6h298.667z","M294.4 273.067h452.267v89.6h-452.267v-89.6z","M571.733 529.067c17.067-12.8 38.4-17.067 59.733-8.533l64 25.6h55.467v-89.6h-456.533v89.6h264.533c4.267-8.533 8.533-12.8 12.8-17.067z","M643.985 703.872l95.27-85.478 202.299 225.473-95.27 85.478-202.299-225.473z","M855.196 944.408l95.283-85.466 22.791 25.409-95.283 85.466-22.791-25.409z","M1015.467 930.133l-34.133-38.4-93.867 85.333 34.133 38.4c4.267 4.267 12.8 8.533 17.067 8.533 8.533 0 12.8 0 17.067-8.533l59.733-51.2c8.533-8.533 12.8-25.6 0-34.133z","M614.4 558.933c-4.267 0-8.533 0-12.8 4.267-4.267 0-4.267 8.533-4.267 12.8l34.133 119.467 93.867-85.333-110.933-51.2z","M729.6 866.133h-524.8c-29.867 0-51.2-25.6-51.2-51.2v-635.733c0-25.6 21.333-51.2 51.2-51.2h213.333l8.533-25.6c12.8-38.4 51.2-64 93.867-64s76.8 25.6 93.867 64l8.533 25.6h213.333c29.867 0 51.2 25.6 51.2 51.2v541.867l38.4 42.667v-584.533c0-46.933-42.667-89.6-89.6-89.6h-187.733c-17.067-51.2-68.267-89.6-128-89.6s-110.933 38.4-128 89.6h-187.733c-46.933 0-89.6 42.667-89.6 89.6v635.733c0 46.933 42.667 89.6 89.6 89.6h554.667l-29.867-38.4z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{}]},"tags":["buyrequest"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":302,"id":24,"name":"buyrequest","prevSize":32,"code":59671},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M830.72 10.667h-727.040c-56.747 0-103.68 46.933-103.68 104.107v727.040c0 57.173 46.933 103.68 103.68 103.68h727.040c57.173 0 103.68-46.933 103.68-103.68v-727.040c0.427-57.173-46.507-104.107-103.68-104.107zM830.72 841.813h-727.040v-727.040h727.040v727.040z","M168.96 256h259.84v78.080h-259.84v-78.080z","M259.84 789.76h77.653v-103.68h104.107v-78.080h-104.107v-103.68h-77.653v103.68h-104.107v78.080h104.107z","M576 423.68l72.96-73.387 73.387 73.387 55.040-55.040-73.387-73.813 73.387-73.387-55.040-55.040-73.387 73.387-72.96-73.387-55.040 55.040 72.96 73.387-72.96 73.813z","M1024 728.32c0 157.409-127.605 285.013-285.013 285.013s-285.013-127.605-285.013-285.013c0-157.409 127.605-285.013 285.013-285.013s285.013 127.605 285.013 285.013z","M925.867 632.32c-1.28-4.267-3.84-7.68-7.68-10.24l-168.107-96.853c-5.12-2.987-11.52-2.987-16.64 0l-168.107 96.853c-5.12 2.987-8.533 8.533-8.533 14.507v194.133c0 5.973 2.987 11.52 8.533 14.507l168.107 96.853c2.56 1.28 5.547 2.133 8.533 2.133 0.853 0 1.707 0 2.56 0 1.28 0 2.56-0.427 3.84-0.853 0.427 0 0.853-0.427 1.28-0.427s0.427 0 0.853-0.427v0c0 0 0 0 0 0l168.107-96.853c5.12-2.987 8.533-8.533 8.533-14.507v-194.133c-0.853-1.707-0.853-2.987-1.28-4.693zM606.72 637.013l134.827-77.653 134.827 77.653-134.4 77.653-126.293-72.96-8.96-4.693zM590.080 665.6l134.827 77.653v155.733l-134.827-77.653v-155.733zM758.187 898.987v-155.733l134.827-77.653v155.733l-134.827 77.653z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":3}],"125525525519595951":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":2}],"12043441125524245125525525513111218319595951":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":5}]},"tags":["calc_volum"],"grid":0},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":303,"id":25,"name":"calc_volum","prevSize":32,"codes":[59672,59673,59676,59677,59678,59679],"code":59672},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M883.2 93.867h-46.933v-93.867h-93.867v93.867h-465.067v-93.867h-89.6v93.867h-46.933c-51.2 0-93.867 42.667-93.867 93.867v746.667c0 51.2 42.667 93.867 93.867 93.867h746.667c51.2 0 93.867-42.667 93.867-93.867v-746.667c-4.267-51.2-46.933-93.867-98.133-93.867zM883.2 930.133h-742.4v-605.867h746.667v605.867z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["calendar"],"grid":0},"attrs":[{}],"properties":{"order":304,"id":26,"name":"calendar","prevSize":32,"code":59680},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M60.8 355.2h64v310.4h-64v-310.4zM979.2 0h-873.6c-25.6 0-44.8 19.2-44.8 44.8v176h64v-156.8h835.2v896h-835.2v-156.8h-64v176c0 25.6 19.2 44.8 44.8 44.8h873.6c25.6 0 44.8-19.2 44.8-44.8v-934.4c0-25.6-19.2-44.8-44.8-44.8zM230.4 272c0-9.6-9.6-19.2-19.2-19.2h-192c-9.6 0-19.2 9.6-19.2 19.2v35.2c0 9.6 9.6 19.2 19.2 19.2h195.2c9.6 0 19.2-9.6 19.2-19.2v-35.2zM230.4 720c0-9.6-9.6-19.2-19.2-19.2h-192c-9.6 0-19.2 9.6-19.2 19.2v35.2c0 9.6 9.6 19.2 19.2 19.2h195.2c9.6 0 19.2-9.6 19.2-19.2v-35.2zM876.8 217.6h-275.2v275.2h275.2v-275.2zM876.8 531.2h-275.2v275.2h275.2v-275.2zM528 249.6h-211.2v211.2h211.2v-211.2zM560 217.6v275.2h-275.2v-275.2h275.2zM560 531.2h-275.2v275.2h275.2v-275.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["catalog"],"grid":0},"attrs":[{}],"properties":{"order":305,"id":27,"name":"catalog","prevSize":32,"code":59681},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M694.4 966.4c12.8-28.8 38.4-51.2 73.6-51.2v-57.6c-64 0-118.4 48-131.2 108.8h-54.4c9.6-96 89.6-166.4 185.6-166.4v-57.6c-76.8 0-144 35.2-188.8 92.8v-262.4c57.6-6.4 115.2-35.2 156.8-80 51.2-51.2 76.8-118.4 76.8-192v-28.8h-28.8c-70.4 0-134.4 28.8-185.6 80-6.4 9.6-16 16-22.4 25.6v-204.8c0-48-16-89.6-48-124.8-32-32-73.6-51.2-118.4-51.2-83.2 3.2-153.6 67.2-166.4 150.4-86.4 12.8-153.6 89.6-153.6 185.6v198.4l112-83.2 67.2 67.2 73.6-67.2 108.8 86.4v-201.6c0-92.8-64-169.6-147.2-182.4 12.8-51.2 57.6-89.6 108.8-89.6 28.8 0 57.6 12.8 80 35.2s32 51.2 32 83.2v691.2c-28.8-28.8-70.4-44.8-115.2-44.8v57.6c54.4 0 99.2 38.4 112 89.6h-342.4v51.2h755.2v-57.6h-240zM640 393.6c32-32 70.4-54.4 115.2-60.8-6.4 44.8-28.8 86.4-57.6 118.4-32 32-70.4 54.4-115.2 60.8 3.2-44.8 25.6-86.4 57.6-118.4zM393.6 332.8v83.2l-51.2-41.6-70.4 60.8-60.8-60.8-64 44.8v-86.4c0-70.4 54.4-128 124.8-128 64 0 121.6 57.6 121.6 128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["claims"],"grid":0},"attrs":[{}],"properties":{"order":306,"id":28,"name":"claims","prevSize":32,"code":59682},"setIdx":0,"setId":0,"iconIdx":30},{"icon":{"paths":["M608 204.8c0 113.108-90.259 204.8-201.6 204.8s-201.6-91.692-201.6-204.8c0-113.108 90.259-204.8 201.6-204.8s201.6 91.692 201.6 204.8z","M342.4 633.6c0-67.2 54.4-121.6 121.6-121.6h198.4c-83.2-35.2-185.6-51.2-252.8-51.2-137.6 0-409.6 67.2-409.6 204.8v144h342.4v-176z","M912 969.6c32 0 57.6-25.6 57.6-57.6v-281.6c0-32-25.6-57.6-57.6-57.6h-451.2c-32 0-57.6 25.6-57.6 57.6v281.6c0 32 25.6 57.6 57.6 57.6h-112v57.6h675.2v-57.6h-112zM460.8 633.6h451.2v281.6h-451.2v-281.6z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["client"],"grid":0},"attrs":[{},{},{}],"properties":{"order":307,"id":29,"name":"client","prevSize":32,"code":59683},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M554.667 691.2v-64h-213.333v-115.2h213.333v-136.533l-204.8-204.8h-281.6c-38.4 0-68.267 29.867-68.267 68.267v546.133c0 38.4 29.867 68.267 68.267 68.267h418.133c38.4 0 68.267-29.867 68.267-68.267v0-93.867zM311.467 221.867l192 187.733h-192v-187.733z","M814.933 170.667h-277.333c-29.867 0-55.467 17.067-64 42.667l123.733 119.467 17.067 17.067v162.133h68.267v-85.333l247.467 145.067-247.467 140.8v-85.333h-72.533v153.6c0 25.6-8.533 46.933-21.333 68.267h362.667c38.4 0 68.267-29.867 68.267-68.267v-405.333l-204.8-204.8zM780.8 409.6v-187.733l192 187.733h-192z","M371.2 597.333h341.333v68.267l162.133-93.867-162.133-93.867v64h-341.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["clone"],"grid":0},"attrs":[{},{},{}],"properties":{"order":309,"id":30,"name":"clone","prevSize":32,"code":59684},"setIdx":0,"setId":0,"iconIdx":32},{"icon":{"paths":["M0 0h256v256h-256v-256z","M0 768h256v256h-256v-256z","M0 384h256v256h-256v-256z","M913.067 448v132.267h-204.8v204.8h-136.533v-204.8h-204.8v-132.267h204.8v-204.8h136.533v204.8z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["columnadd"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":310,"id":31,"name":"columnadd","prevSize":32,"code":59685},"setIdx":0,"setId":0,"iconIdx":33},{"icon":{"paths":["M0 0h256v256h-256v-256z","M0 768h256v256h-256v-256z","M0 384h256v256h-256v-256z","M785.067 273.067l93.867 98.133-140.8 140.8 140.8 145.067-93.867 98.133-145.067-145.067-145.067 145.067-93.867-98.133 140.8-145.067-140.8-140.8 93.867-98.133 145.067 145.067z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["columndelete"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":311,"id":32,"name":"columndelete","prevSize":32,"code":59686},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M490.667 302.933c-4.267 8.533-4.267 25.6-4.267 42.667v140.8h-140.8c-17.067 0-25.6 0-34.133-4.267v0l17.067-25.6c12.8-12.8 21.333-29.867 17.067-51.2 0-25.6-12.8-51.2-29.867-68.267-17.067-12.8-42.667-21.333-72.533-21.333-25.6 0-51.2 8.533-72.533 25.6s-29.867 42.667-29.867 68.267c0 17.067 4.267 34.133 17.067 51.2l17.067 25.6c-4.267 0-17.067 4.267-34.133 4.267v0h-140.8v-490.667h486.4v145.067c0 21.333 0 34.133 4.267 42.667 0 12.8 8.533 25.6 21.333 29.867 4.267 4.267 12.8 4.267 21.333 4.267v0c4.267 0 17.067 0 25.6-8.533l29.867-21.333c8.533-4.267 17.067-8.533 25.6-8.533 12.8 0 21.333 4.267 29.867 17.067s12.8 25.6 12.8 42.667-4.267 29.867-12.8 42.667c-8.533 8.533-21.333 17.067-29.867 17.067s-17.067-4.267-25.6-8.533l-29.867-21.333c-8.533-4.267-21.333-8.533-25.6-8.533-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 34.133zM1019.733 345.6c0-8.533 0-38.4-8.533-42.667v0c-4.267 0-4.267 0-8.533 0l-29.867 21.333c-12.8 8.533-25.6 17.067-42.667 17.067-46.933 0-85.333-42.667-85.333-93.867s38.4-93.867 85.333-93.867c17.067 0 34.133 4.267 46.933 17.067l29.867 21.333c0 0 4.267 0 8.533 0 8.533-4.267 8.533-34.133 8.533-42.667v-149.333h-494.933v145.067c0 17.067 0 25.6 4.267 34.133v0 0l25.6-17.067c12.8-12.8 34.133-17.067 51.2-17.067 25.6 0 51.2 12.8 68.267 29.867 17.067 21.333 25.6 46.933 25.6 72.533s-8.533 51.2-25.6 72.533-42.667 29.867-68.267 29.867c-17.067 0-34.133-4.267-51.2-17.067l-25.6-17.067c0 4.267-4.267 17.067-4.267 34.133v140.8h145.067c21.333 0 34.133 0 42.667 4.267 12.8 4.267 25.6 12.8 29.867 21.333 4.267 4.267 4.267 12.8 4.267 21.333s0 17.067-8.533 25.6l-21.333 29.867c-4.267 8.533-8.533 17.067-8.533 25.6 0 12.8 4.267 21.333 17.067 29.867s25.6 12.8 42.667 12.8 29.867-4.267 42.667-12.8c8.533-8.533 17.067-21.333 17.067-29.867s-4.267-17.067-8.533-25.6l-12.8-29.867c-8.533-12.8-8.533-21.333-8.533-25.6 0-8.533 0-12.8 4.267-21.333s17.067-17.067 29.867-21.333c8.533-4.267 25.6-4.267 42.667-4.267h140.8v-145.067zM874.667 1019.733c25.6 0 115.2 4.267 149.333 4.267v-490.667h-140.8c-17.067 0-25.6 0-34.133 4.267v0 0l17.067 25.6c12.8 12.8 17.067 34.133 17.067 51.2 0 25.6-12.8 51.2-29.867 68.267-21.333 17.067-46.933 25.6-72.533 25.6s-51.2-8.533-72.533-25.6c-21.333-17.067-29.867-42.667-29.867-68.267 0-17.067 4.267-34.133 17.067-51.2l17.067-29.867c-4.267 0-17.067-4.267-34.133-4.267h-149.333v140.8c0 21.333 0 34.133-4.267 42.667-4.267 12.8-12.8 25.6-21.333 29.867-4.267 4.267-12.8 4.267-21.333 4.267s-17.067 0-25.6-8.533l-29.867-12.8c-8.533-4.267-17.067-8.533-25.6-8.533-12.8 0-21.333 4.267-29.867 17.067s-12.8 25.6-12.8 42.667 4.267 29.867 12.8 42.667c8.533 8.533 21.333 17.067 29.867 17.067s17.067-4.267 25.6-8.533l29.867-21.333c8.533-4.267 17.067-8.533 25.6-8.533v0c8.533 0 12.8 0 21.333 4.267 12.8 4.267 17.067 17.067 21.333 29.867 4.267 8.533 4.267 25.6 4.267 42.667v140.8h140.8c8.533 0 38.4 0 42.667-8.533 0-4.267 0-8.533 0-8.533l-21.333-29.867c-8.533-12.8-17.067-29.867-17.067-46.933 0-46.933 42.667-85.333 93.867-85.333s93.867 38.4 93.867 85.333c0 17.067-4.267 34.133-17.067 46.933l-21.333 29.867c0 0-4.267 4.267 0 8.533 12.8 12.8 42.667 12.8 51.2 12.8zM0 533.333v490.667h486.4v-145.067c0-17.067 0-25.6-4.267-34.133v0 0l-25.6 17.067c-12.8 12.8-34.133 17.067-51.2 17.067-25.6 0-51.2-12.8-68.267-29.867-17.067-21.333-25.6-46.933-25.6-72.533s8.533-51.2 25.6-72.533c17.067-21.333 42.667-29.867 68.267-29.867 17.067 0 34.133 4.267 51.2 17.067l29.867 17.067c0-4.267 4.267-17.067 4.267-34.133v-140.8h-145.067c-21.333 0-34.133 0-42.667-4.267-12.8-4.267-25.6-12.8-29.867-21.333-4.267-4.267-4.267-12.8-4.267-21.333s0-17.067 8.533-25.6l21.333-29.867c0-8.533 4.267-17.067 4.267-25.6 0-12.8-4.267-21.333-17.067-29.867s-25.6-12.8-42.667-12.8v0c-17.067 0-29.867 4.267-42.667 12.8-8.533 8.533-12.8 17.067-12.8 29.867 0 8.533 4.267 17.067 8.533 25.6l17.067 29.867c8.533 12.8 8.533 21.333 8.533 25.6 0 8.533 0 12.8-4.267 21.333-4.267 12.8-17.067 17.067-29.867 21.333-8.533 4.267-25.6 4.267-42.667 4.267 0 0-145.067 0-145.067 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["components"],"grid":0},"attrs":[{}],"properties":{"order":312,"id":33,"name":"components","prevSize":32,"code":59687},"setIdx":0,"setId":0,"iconIdx":35},{"icon":{"paths":["M409.6 1024v-349.867h204.8v349.867h256v-563.2h153.6l-512-460.8-512 460.8h153.6v563.2h256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["consignatarios"],"grid":0},"attrs":[{}],"properties":{"order":313,"id":34,"name":"consignatarios","prevSize":32,"code":59688},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M418.133 644.267l-128 123.733 256 256 469.333-469.333-128-128-341.333 341.333z","M546.133 648.533l34.133-34.133h-68.267z","M230.4 832l-59.733-64 153.6-153.6h-68.267v-102.4h426.667l204.8-204.8 85.333 85.333v-187.733c0-55.467-46.933-102.4-102.4-102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h273.067l-196.267-192zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2c0-29.867 21.333-51.2 51.2-51.2zM256 307.2h512v102.4h-512v-102.4z","M665.6 1024h204.8c55.467 0 102.4-46.933 102.4-102.4v-204.8l-307.2 307.2z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["control"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":314,"id":35,"name":"control","prevSize":32,"code":59689},"setIdx":0,"setId":0,"iconIdx":37},{"icon":{"paths":["M921.6 110.933h-819.2c-55.467 0-102.4 42.667-102.4 98.133v601.6c0 55.467 46.933 102.4 102.4 102.4h819.2c55.467 0 102.4-42.667 102.4-102.4v-601.6c0-55.467-46.933-98.133-102.4-98.133zM921.6 814.933h-819.2v-302.933h819.2v302.933zM921.6 311.467h-819.2v-102.4h819.2v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["credit"],"grid":0},"attrs":[{}],"properties":{"order":315,"id":36,"name":"credit","prevSize":32,"code":59691},"setIdx":0,"setId":0,"iconIdx":38},{"icon":{"paths":["M677.973 1024c-30.72-35.84-61.867-70.827-91.307-107.52-40.96-51.2-80.64-103.253-121.173-154.88-16.64-21.333-21.76-20.48-30.72 4.693-13.227 36.693-25.6 73.387-40.107 109.653-5.12 12.8-13.227 26.88-24.32 34.56-51.627 34.987-104.107 69.12-157.867 100.693-10.667 6.4-30.72 5.547-41.813-0.853-8.107-4.693-12.373-23.893-11.093-35.84 0.853-8.96 11.093-19.627 19.627-25.6 39.253-26.453 78.933-51.627 119.040-76.8 18.347-11.52 30.293-26.027 35.84-47.787 12.373-48.213 27.307-95.573 39.253-143.36 8.533-33.707 26.88-58.88 56.32-77.227 40.533-25.173 80.64-52.053 120.747-78.507 6.4-4.267 10.24-11.52 15.36-17.493-7.253-2.56-14.933-7.253-22.187-6.827-75.52 6.4-151.467 13.227-226.987 20.48-2.133 0-4.693 0.853-6.827 0.853-22.613 1.707-39.253-10.24-40.96-29.867s12.373-33.707 35.413-35.84c45.227-4.267 90.88-8.96 136.107-12.8 65.707-5.547 131.84-10.667 197.547-15.36 26.027-1.707 53.76 21.76 67.413 55.467 9.813 23.893 5.12 46.080-18.347 65.28-49.92 40.107-100.693 78.933-151.040 118.187-23.040 17.92-23.893 23.467-6.4 46.507 58.453 78.080 116.48 156.587 174.933 234.667 27.307 36.693 25.173 50.773-12.373 75.52-5.12 0-9.813 0-14.080 0zM791.893 310.187c-43.093-1.28-76.373 31.573-77.227 75.52-0.853 44.373 29.44 76.8 72.107 77.653 45.227 1.28 77.653-29.44 78.080-73.813 0.427-45.227-29.44-78.080-72.96-79.36zM671.147 222.293c0 72.107-34.133 136.107-87.467 176.64l-235.52 21.76c-72.107-36.693-122.027-111.787-122.027-198.4 0-122.88 99.84-222.293 222.72-222.293 122.453 0 222.293 99.413 222.293 222.293zM592.213 279.467l-50.347-18.347c-2.133 8.533-5.12 16.213-9.813 22.613-5.12 6.4-10.24 11.947-16.213 17.067-5.973 4.267-12.373 8.107-19.2 11.093s-13.653 4.693-20.053 5.547c-17.92 2.987-33.707 0.427-48.64-6.827s-26.88-18.347-36.693-32.853l76.373-12.373 7.253-32.427-97.28 15.787c-1.28-5.547-2.987-11.093-3.84-16.64l-0.853-4.267 99.413-16.213 7.253-32.427-106.667 17.493c0.853-9.387 2.987-17.493 6.4-26.027 3.84-8.533 8.107-16.213 14.080-23.040 5.547-6.827 12.8-12.373 21.333-17.067s17.92-8.107 28.587-9.813c6.827-1.28 13.227-1.707 20.907-1.28s14.507 1.707 21.333 3.84c6.827 2.133 13.653 5.973 20.053 10.24 5.973 4.693 11.947 11.093 17.493 18.773l38.827-37.973c-13.227-17.92-30.293-31.147-52.053-39.253-21.76-8.533-46.080-10.667-73.387-6.4-19.627 2.987-36.267 9.387-51.2 17.92-14.507 8.533-26.88 19.2-37.547 32-10.667 12.373-18.773 26.027-23.893 40.96-5.547 14.507-8.96 29.867-9.813 45.653l-21.76 3.84-7.253 32.427 29.013-4.693 0.427 2.987c1.28 6.827 2.56 12.8 4.267 18.347l-23.467 3.84-8.107 32.427 43.52-7.253c6.827 13.653 15.787 26.027 26.027 36.693 10.24 11.52 22.187 20.48 35.413 27.733 13.227 7.68 27.307 12.8 42.667 15.787s31.573 3.413 47.36 0.853c12.373-2.133 24.32-5.12 35.84-10.667s22.613-11.52 32.853-19.2c10.24-8.107 18.347-16.64 26.027-26.453 6.827-9.387 12.373-20.48 15.36-32.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["deaulter-01"],"grid":0},"attrs":[{}],"properties":{"order":316,"id":37,"name":"defaulter","prevSize":32,"code":59693},"setIdx":0,"setId":0,"iconIdx":39},{"icon":{"paths":["M160.672 874.304h693.248v-639.776c0 0-2.016-234.528-349.696-234.528s-343.552 234.528-343.552 234.528v639.776zM291.328 307.296h170.976v-152.256h102.336v152.256h171.008v102.336h-171.008v356.96h-102.336v-356.96h-170.976v-102.336zM64 898.944v123.456h899.008v-123.456h-899.008z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["deletedTicketCross"],"grid":0},"attrs":[{}],"properties":{"order":317,"id":38,"name":"deletedTicket","prevSize":32,"code":59694},"setIdx":0,"setId":0,"iconIdx":40},{"icon":{"paths":["M354.133 768l-98.133-98.133 157.867-153.6-157.867-157.867 98.133-102.4 157.867 157.867 157.867-153.6 98.133 98.133-157.867 157.867 157.867 153.6-98.133 98.133-157.867-157.867-157.867 157.867zM780.8 452.267l-64 64 59.733 55.467h247.467v-119.467h-243.2zM307.2 516.267l-64-64h-243.2v119.467h251.733l55.467-55.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["deleteline"],"grid":0},"attrs":[{}],"properties":{"order":318,"id":39,"name":"deleteline","prevSize":32,"code":59695},"setIdx":0,"setId":0,"iconIdx":41},{"icon":{"paths":["M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2-0 25.6-25.6 51.2-51.2 51.2z","M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM725.333 277.333c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067zM311.467 362.667c0-46.933 29.867-85.333 59.733-93.867 4.267 0 4.267 0 8.533 0l98.133-12.8v51.2c0 46.933-29.867 85.333-59.733 93.867-4.267 0-4.267 0-8.533 0l-98.133 17.067v-55.467zM311.467 443.733l46.933-8.533c17.067-4.267 29.867 17.067 29.867 38.4l4.267 29.867-51.2 4.267c-17.067 4.267-29.867-12.8-29.867-38.4v-25.6zM149.333 362.667v-51.2l85.333-12.8c34.133-4.267 55.467 25.6 55.467 72.533v51.2l-85.333 12.8c-34.133 0-59.733-29.867-55.467-72.533zM285.867 448v38.4c0 34.133-21.333 64-42.667 68.267h-4.267l-72.533 8.533v-38.4c0-34.133 21.333-64 42.667-68.267h4.267l72.533-8.533z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["delivery"],"grid":0},"attrs":[{},{},{}],"properties":{"order":319,"id":40,"name":"delivery","prevSize":32,"code":59696},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM376.32 345.173v28.16h-166.4c-0.853 6.4-1.707 13.227-1.707 20.48 0 6.827 0.427 14.080 1.707 20.48h166.4v28.16h-159.147c9.387 26.027 25.6 46.933 48.64 62.72s49.92 23.467 80.213 23.467c39.68 0 72.533-14.080 99.413-42.24l32 31.573c-15.787 17.92-34.987 32-58.453 40.96-23.040 9.387-48.213 14.080-75.947 14.080-29.013 0-55.893-5.547-80.64-16.213s-45.653-26.027-62.72-46.080c-17.067-19.627-29.013-42.667-36.267-68.693h-56.747v-28.16h52.053c-0.853-8.533-0.853-15.36-0.853-20.48s0.427-11.947 0.853-20.48h-52.053v-28.16h57.173c6.827-26.027 19.2-49.067 36.267-68.693s37.973-34.987 62.72-46.080c24.747-10.667 51.627-16.213 80.64-16.213 27.733 0 53.333 4.693 75.947 14.080 23.040 9.387 42.24 23.040 58.027 40.533l-32 31.573c-26.453-27.733-59.733-41.813-99.413-41.813-30.293 0-57.173 7.68-80.213 23.467s-39.253 36.693-48.64 62.72h159.147zM921.6 430.933h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["deliveryprices"],"grid":0},"attrs":[{},{},{}],"properties":{"order":320,"id":41,"name":"deliveryprices","prevSize":32,"code":59698},"setIdx":0,"setId":0,"iconIdx":43},{"icon":{"paths":["M908.8 115.2v797.867h-793.6v-797.867h793.6zM972.8 0h-921.6c-29.867 0-51.2 21.333-51.2 51.2v921.6c0 21.333 21.333 51.2 51.2 51.2h921.6c21.333 0 51.2-29.867 51.2-51.2v-921.6c0-29.867-29.867-51.2-51.2-51.2zM456.533 226.133h341.333v115.2h-341.333v-115.2zM456.533 456.533h341.333v115.2h-341.333v-115.2zM456.533 682.667h341.333v115.2h-341.333v-115.2zM226.133 226.133h115.2v115.2h-115.2v-115.2zM226.133 456.533h115.2v115.2h-115.2v-115.2zM226.133 682.667h115.2v115.2h-115.2v-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["details"],"grid":0},"attrs":[{}],"properties":{"order":322,"id":42,"name":"details","prevSize":32,"code":59699},"setIdx":0,"setId":0,"iconIdx":44},{"icon":{"paths":["M140.8 439.467v341.333h149.333v-341.333h-149.333zM439.467 439.467v341.333h149.333v-341.333h-149.333zM38.4 1024h942.933v-145.067h-942.933v145.067zM733.867 439.467v341.333h149.333v-341.333h-149.333zM512 0l-473.6 243.2v98.133h942.933v-98.133l-469.333-243.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["dfiscales"],"grid":0},"attrs":[{}],"properties":{"order":323,"id":43,"name":"dfiscales","prevSize":32,"code":59700},"setIdx":0,"setId":0,"iconIdx":45},{"icon":{"paths":["M1012.48 956.587c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52 10.24 0 20.053 3.84 27.733 11.52l945.493 945.067zM938.667 819.2v-37.973c0-87.467-105.813-148.48-220.16-183.040l220.16 221.013zM608 488.107c69.547-35.84 117.333-107.52 117.333-192.427 0-119.893-96-215.893-213.333-215.893-84.053 0-156.16 49.493-190.72 121.6l286.72 286.72zM449.707 569.173c-149.333 16.213-364.373 87.040-364.373 212.053v162.56h738.987l-374.613-374.613z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["Inactivo"],"grid":0},"attrs":[{}],"properties":{"order":324,"id":44,"name":"disabled","prevSize":32,"code":59701},"setIdx":0,"setId":0,"iconIdx":46},{"icon":{"paths":["M614.4 0h-409.6c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h614.4c55.467 0 102.4-46.933 102.4-102.4v-614.4l-307.2-307.2zM716.8 819.2h-409.6v-102.4h409.6v102.4zM716.8 614.4h-409.6v-102.4h409.6v102.4zM563.2 358.4v-281.6l281.6 281.6h-281.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["doc"],"grid":0},"attrs":[{}],"properties":{"order":325,"id":45,"name":"doc","prevSize":32,"code":59702},"setIdx":0,"setId":0,"iconIdx":47},{"icon":{"paths":["M0 631.118l392.882 392.882 265.404-265.404-100.31-100.31-102.4 100.31v-303.020h303.020l-100.31 102.4 100.31 100.31 265.404-265.404-392.882-392.882z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["entry"],"grid":0},"attrs":[{}],"properties":{"order":327,"id":46,"name":"entry","prevSize":32,"code":59703},"setIdx":0,"setId":0,"iconIdx":48},{"icon":{"paths":["M859.733 683.093c-90.027 0-162.56 72.533-162.56 162.56h-29.44l47.36 72.533 48.64-72.533h-29.44c0-69.547 56.32-125.867 125.867-125.867s125.867 56.32 125.867 125.867-56.32 125.867-125.867 125.867c-34.133 0-66.56-14.933-87.467-37.12l-25.173 25.173c29.44 29.44 69.547 47.36 115.2 47.36 90.027 0 161.28-72.533 161.28-161.28s-75.52-162.56-164.267-162.56v0zM842.24 773.12v90.027l76.8 45.653 11.947-22.187-62.293-37.12v-76.8l-26.453 0.427z","M0 574.293l346.88 346.453 234.24-234.24-88.747-88.32-90.453 88.32v-267.52h267.52l-88.32 90.453 88.32 88.747 234.24-234.24-346.453-346.88z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["entry_lastbuys"],"grid":0},"attrs":[{},{}],"properties":{"order":420,"id":47,"name":"entry_lastbuys","prevSize":32,"code":59674},"setIdx":0,"setId":0,"iconIdx":49},{"icon":{"paths":["M405.333 716.8l81.067 81.067 281.6-285.867-285.867-285.867-76.8 81.067 145.067 149.333h-550.4v115.2h550.4l-145.067 145.067zM908.8 0h-793.6c-64 0-115.2 51.2-115.2 115.2v226.133h115.2v-226.133h797.867v797.867h-797.867v-230.4h-115.2v226.133c0 64 51.2 115.2 115.2 115.2h797.867c64 0 115.2-51.2 115.2-115.2v-793.6c-4.267-64-55.467-115.2-119.467-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["exit"],"grid":0},"attrs":[{}],"properties":{"order":328,"id":48,"name":"exit","prevSize":32,"code":59704},"setIdx":0,"setId":0,"iconIdx":50},{"icon":{"paths":["M512 162.133c-234.667 0-430.933 145.067-512 349.867 81.067 204.8 277.333 349.867 512 349.867s430.933-145.067 512-349.867c-81.067-204.8-277.333-349.867-512-349.867zM512 746.667c-128 0-234.667-102.4-234.667-234.667s106.667-234.667 234.667-234.667 234.667 106.667 234.667 234.667-106.667 234.667-234.667 234.667zM512 371.2c-76.8 0-140.8 64-140.8 140.8s64 140.8 140.8 140.8 140.8-64 140.8-140.8-64-140.8-140.8-140.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["eye"],"grid":0},"attrs":[{}],"properties":{"order":329,"id":49,"name":"eye","prevSize":32,"code":59705},"setIdx":0,"setId":0,"iconIdx":51},{"icon":{"paths":["M811.947 472.32v-172.8c0-79.787-31.147-154.88-87.893-211.627-57.173-56.747-132.267-87.893-212.053-87.893-165.12 0-299.947 134.4-299.947 299.52v172.373h-78.507v552.107h756.48v-551.68h-78.080zM629.76 873.813c-9.813 8.96-19.627 16.64-32 23.467-11.947 5.973-24.747 10.667-37.973 14.507-13.227 3.413-26.453 4.693-39.68 4.693-17.493 0-34.133-2.987-49.92-8.96s-29.44-13.653-42.24-23.893c-12.8-10.24-23.467-21.76-32.427-35.413-8.96-13.227-16.213-27.733-20.907-43.093h-46.933l13.653-32.853h25.173c-0.427-5.973-1.28-12.8-1.28-19.627v-2.987h-31.147l13.227-32.853h22.187c3.413-16.213 9.813-32 17.92-46.080 8.533-14.933 19.2-27.733 32.427-39.253s28.16-20.48 45.227-26.88c17.493-6.4 35.84-10.24 57.173-10.24 29.44 0 54.613 6.4 76.373 19.2s37.12 29.44 48.213 50.347l-47.36 32.853c-4.267-8.96-9.813-16.64-14.933-23.040-5.973-5.973-12.8-10.667-19.2-14.507-6.4-3.413-13.653-5.973-21.76-7.68-7.68-1.707-14.933-2.56-22.187-2.56-11.52 0-22.187 1.707-32 5.547-9.813 3.413-17.92 8.533-25.173 14.507s-13.227 13.227-18.773 21.76-8.96 16.64-11.52 26.453h115.2l-13.227 32.853h-107.52v4.693c0 5.973 0.427 11.947 1.28 17.92h104.96l-13.227 32.853h-82.347c7.68 16.64 18.773 30.72 32.853 40.96 14.507 10.24 30.72 15.787 49.92 15.787 7.253 0 14.507-0.427 22.187-2.56 7.68-1.707 14.933-4.693 22.187-8.533 7.253-4.267 13.227-8.96 19.627-14.933 5.973-5.973 10.667-13.653 14.507-22.187l49.92 28.16c-3.413 11.52-11.52 22.187-20.48 31.573zM667.307 472.32h-310.613v-165.973c0-85.333 69.547-155.307 154.88-155.307 41.387 0 80.213 16.213 109.653 45.653s45.653 68.267 45.653 109.653v165.973h0.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["fixedPrice"],"grid":0},"attrs":[{}],"properties":{"order":330,"id":50,"name":"fixedPrice","prevSize":32,"code":59706},"setIdx":0,"setId":0,"iconIdx":52},{"icon":{"paths":["M511.147 346.027h-3.84c-44.373 0-86.187 16.64-117.76 47.36-32 31.573-49.493 73.813-49.493 119.040s17.493 87.467 49.067 118.187c30.72 30.72 72.96 47.36 116.053 47.36h4.267c43.093 0 84.907-17.493 116.053-47.36 31.573-30.72 49.067-72.96 49.067-118.187 0-90.88-72.107-163.84-163.413-166.4zM431.36 435.2c19.627-19.627 46.933-30.72 72.96-30.72h2.987c27.733-0.853 55.467 10.24 76.8 30.72s32.853 48.213 32.853 78.933c0 59.733-49.493 108.8-109.653 108.8h-0.853c-58.453 0-107.947-49.493-107.947-108.8-0.853-29.867 11.093-58.453 32.853-78.933z","M928 529.493l-1.28-1.28 1.28-1.28c0.853-0.853 1.28-1.28 2.133-2.133 44.373-47.36 64.853-105.387 59.307-169.387-5.12-57.6-29.867-105.813-72.96-143.787-37.12-32-79.787-49.493-126.293-53.333v0h-2.987c-12.373-0.853-24.747 0-37.973 0.853-5.973 0.853-11.093 0.853-16.213 1.28h-0.853c-0.853-0.853-1.28-2.987-2.987-7.253-12.373-39.253-34.133-72.96-64.853-99.413-49.493-42.24-107.947-59.733-172.373-51.2-47.36 5.547-89.6 26.453-125.013 61.867-21.76 21.76-38.827 48.213-49.493 78.080l-1.28 3.84-2.987-1.28c-32.427-8.533-64.427-8.533-95.573-2.56-48.213 10.24-88.747 32.853-119.467 68.693-47.36 56.32-64 121.173-48.64 194.133 7.253 33.707 21.76 63.573 44.373 90.453l2.133 2.987-2.133 1.28c-19.627 20.48-34.987 43.947-45.227 69.973v0c0 0.853-32.853 70.827-1.28 157.013 0 0.853 0 0.853 0.853 1.28 0 0.853 0.853 1.28 0.853 2.987 2.987 7.253 5.973 14.507 9.387 21.333 2.987 6.4 5.973 11.093 8.107 14.507 23.893 39.253 59.733 68.693 105.387 86.187 36.693 14.507 75.947 18.347 116.907 11.52l2.133-0.853 1.28 3.84c6.4 23.467 16.64 44.373 29.867 62.72 32 45.227 74.667 74.667 127.147 87.467 5.973 1.28 26.453 5.12 53.333 5.12 16.64 0 35.84-1.28 55.467-6.4l2.133-0.853c2.133-0.853 3.84-0.853 5.12-1.28 0.853 0 1.28-0.853 2.987-0.853l1.28-0.853c30.72-10.24 59.307-26.88 84.053-51.2 22.613-21.76 40.107-48.213 51.2-78.080 0.853-1.28 0.853-2.133 1.28-3.84l0.853-1.28h1.28c0.853 0 2.133 0.853 3.84 0.853 21.76 5.12 42.24 6.4 62.72 5.973 31.573-1.28 61.44-9.387 88.32-23.893 43.947-23.467 76.8-57.173 97.28-101.547 21.333-46.933 25.6-95.573 13.227-146.773-9.813-29.44-24.32-58.88-45.653-83.627zM868.267 502.613c-5.973 4.267-11.52 8.96-16.64 12.373l-12.373 8.96 2.987 3.84c5.12 6.4 11.52 11.52 16.64 16.213 2.987 2.133 5.973 4.267 8.107 7.253 33.707 30.72 51.2 66.987 54.187 111.787 2.133 43.093-11.093 81.067-38.827 112.64-34.987 39.253-78.933 57.6-131.413 54.613-19.2-1.28-37.973-6.4-59.307-16.213-4.267-1.28-8.107-3.84-12.373-5.12l-14.080-5.973-8.107 38.827c-14.080 67.84-71.68 119.893-141.653 126.293-5.12 0.853-10.24 0.853-15.36 0.853-36.693 0-72.107-13.227-101.547-37.12-28.587-23.893-48.213-57.6-54.613-94.293-1.28-8.96-2.987-18.347-3.84-26.88l-0.853-6.4c0-2.987-0.853-7.253-3.84-11.093l-2.133-2.133-13.227 4.267c-6.4 2.133-13.227 4.267-19.627 6.4-64.853 22.613-138.667-0.853-179.627-57.173-19.2-26.453-29.013-55.467-29.867-86.187-2.133-57.173 21.333-103.68 68.693-138.667l24.747-19.2-2.987-2.133c-5.12-5.12-11.093-10.24-16.213-14.507-6.4-5.12-12.373-11.093-18.347-16.64-29.013-30.72-44.373-66.56-45.227-107.947-0.853-39.253 11.52-74.667 36.693-104.533 25.6-30.72 58.453-49.493 97.707-56.32 30.72-5.12 61.44-0.853 92.16 13.227 5.973 2.987 11.52 5.12 19.2 8.107 4.267 1.28 6.4 2.987 9.387 1.28 2.987-1.28 3.84-4.267 4.267-8.96 0.853-4.267 1.28-8.96 2.133-13.227v-0.853c1.28-8.96 2.987-16.64 5.973-24.747 20.48-62.293 63.147-100.267 125.867-111.787 54.187-10.24 101.547 5.12 142.507 46.080 25.6 25.6 40.96 58.453 44.373 96.427 0.853 5.973 1.28 11.52 2.133 17.493l1.28 14.507 4.267-0.853c7.253-1.28 14.080-3.84 19.627-5.973l0.853-0.853c2.133-0.853 3.84-1.28 5.973-2.133 58.453-20.48 111.787-11.093 159.147 27.733 33.707 27.733 52.48 64.427 56.32 107.947 4.693 56.747-17.067 104.107-63.147 140.8z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["flor"],"grid":0},"attrs":[{},{}],"properties":{"order":331,"id":51,"name":"flower","prevSize":32,"code":59707},"setIdx":0,"setId":0,"iconIdx":53},{"icon":{"paths":["M1024 460.8h-213.333l166.4-166.4-72.533-72.533-238.933 238.933h-102.4v-102.4l238.933-238.933-72.533-72.533-166.4 166.4v-213.333h-102.4v213.333l-166.4-166.4-72.533 72.533 238.933 238.933v102.4h-102.4l-238.933-238.933-72.533 72.533 166.4 166.4h-213.333v102.4h213.333l-166.4 166.4 72.533 72.533 238.933-238.933h102.4v102.4l-238.933 238.933 72.533 72.533 166.4-166.4v213.333h102.4v-213.333l166.4 166.4 72.533-72.533-238.933-238.933v-102.4h102.4l238.933 238.933 72.533-72.533-166.4-166.4h213.333v-102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["frozen"],"grid":0},"attrs":[{}],"properties":{"order":332,"id":52,"name":"frozen","prevSize":32,"code":59708},"setIdx":0,"setId":0,"iconIdx":54},{"icon":{"paths":["M118.187 821.333c26.453 0 52.48 5.973 76.8 17.067 4.693 2.133 9.813 4.693 14.507 7.253l2.56 1.28c50.773 25.173 108.373 37.547 165.973 37.547 43.093 0 86.187-7.253 126.293-21.76h0.853l1.28 0.853c40.96 14.507 84.053 21.76 127.573 21.76 1.28 0 2.56 0 3.84 0h2.56c0.853 0 0.853 0 1.28 0s1.28 0 2.133 0h0.853c101.973-2.56 196.693-44.8 267.947-117.76s110.507-169.387 111.36-271.36c0-7.253-2.56-14.080-8.107-19.2-5.12-5.12-11.947-8.107-18.347-8.107h-241.493l-0.853-2.56c-7.253-64-30.293-125.867-68.267-177.92-5.973-8.533-13.227-17.92-21.76-27.307l-1.28-1.28 1.28-2.133c39.68-46.933 41.813-80.213 41.813-86.613 0-14.080-10.667-25.173-25.173-25.6v0c-13.227 0-25.6 11.093-27.307 24.32 0 0-2.133 19.2-26.453 49.493l-0.853 0.853-2.133 0.853-1.28-0.853c-73.387-63.147-168.107-94.72-265.387-89.6-101.12 5.12-193.707 50.347-261.547 125.867-102.827 114.773-126.293 279.893-58.027 418.56l1.28 2.56c2.56 4.693 5.12 9.387 8.107 15.36 14.507 31.573 20.053 66.987 15.36 101.12-1.28 8.107 1.28 16.64 7.253 22.613s14.507 8.533 22.613 7.253c7.68-1.707 16.213-2.56 24.747-2.56zM968.96 522.24l2.133 2.133v1.28c-5.973 67.413-31.573 130.987-74.667 183.893l-0.853 0.853h-2.56l-1.28-0.853-133.547-133.547c-9.813-9.813-26.453-11.093-36.267-2.56-5.973 4.693-9.387 11.947-9.387 19.2s2.56 14.507 8.107 20.053l136.107 136.107v2.56l-0.853 0.853c-51.627 44.8-115.2 72.96-182.613 80.213h-1.28l-2.133-1.28v-212.907c0-14.507-10.667-26.453-23.893-27.733-7.253-0.853-14.507 2.133-20.053 6.827-5.12 5.12-8.533 11.947-8.533 19.2v215.893l-2.133 2.133h-0.853c-32.427-2.133-63.573-8.533-93.867-19.2-3.413-2.133-5.973-2.56-8.533-3.413-31.573-12.373-61.013-29.867-87.467-50.773l-0.853-0.853v-2.56l0.853-1.28 142.080-142.080c9.813-9.813 11.093-26.453 2.56-36.267-4.693-5.973-11.947-9.387-19.2-9.387-7.253-0.853-14.507 2.56-20.053 8.107l-145.067 145.067h-2.56l-0.853-0.853c-47.787-54.187-75.947-121.173-82.773-193.28v-2.987l1.28-2.133 668.16-0.427zM85.76 650.667l-0.853-0.853c-57.6-119.040-37.547-259.84 50.773-358.827 58.453-64.427 138.24-102.827 225.28-107.52 86.613-4.693 170.667 24.32 235.52 82.773 3.413 2.56 5.973 5.12 9.387 8.533l4.693 4.693c3.84 3.84 8.107 8.107 11.947 12.373l0.853 0.853c8.107 8.533 15.36 18.347 22.613 27.733 31.147 43.093 50.773 93.867 57.6 146.773v1.28l-1.28 2.133h-431.36c-7.253 0-14.080 2.56-18.347 8.107-5.12 5.12-8.107 11.947-8.107 19.2 0 133.547 67.413 256 180.48 328.96l1.28 0.853-0.853 3.84-2.133 0.853c-15.787 2.133-31.147 3.413-46.933 3.413-49.067 0-96.427-10.667-140.8-32.427h-0.853c-5.973-3.84-13.227-7.253-19.2-9.813-30.293-14.507-62.72-21.76-96-21.76h-2.56v-2.56c0-33.28-8.107-65.707-21.333-95.147-2.56-10.24-5.973-17.067-9.813-23.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["fruit"],"grid":0},"attrs":[{}],"properties":{"order":333,"id":53,"name":"fruit","prevSize":32,"code":59709},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M898.56 419.84c0-206.933-159.573-376.747-362.24-393.387v-18.347c0-4.267-3.84-8.107-8.107-8.107h-42.24c-4.267 0-8.107 3.84-8.107 8.107v17.493c-206.080 13.227-369.493 185.173-369.493 394.24 0 143.36 76.8 269.227 191.573 338.773l-68.693 198.827c-4.267 14.080 2.133 28.587 16.213 32.853l5.973 2.133c14.080 4.267 28.587-2.133 32.853-16.213l66.56-191.573c36.693 15.36 76.8 24.747 118.613 28.587v184.32c0 14.507 11.52 26.453 26.453 26.453h6.4c14.507 0 26.453-11.52 26.453-26.453v-183.467c42.24-2.987 83.2-12.373 120.747-27.733l66.56 192.427c4.267 14.080 19.627 20.48 32.853 16.213l5.973-2.133c14.080-4.267 20.48-19.627 16.213-32.853l-69.12-199.253c116.053-68.693 194.56-196.267 194.56-340.907zM840.107 419.84c0 10.24-0.853 20.48-1.28 30.72-40.96-3.84-79.787-14.080-117.76-27.733v-0.853c0-119.893-97.28-217.173-217.173-217.173-24.32 0-48.213 3.84-70.827 11.52-34.987-36.267-61.867-70.827-81.067-97.28 45.227-22.613 96.427-35.84 151.467-35.84 185.6 0 336.64 151.040 336.64 336.64zM480 264.96c7.253-1.28 15.36-1.28 23.467-1.28 78.933 0 144.213 57.6 156.587 133.12-68.267-36.267-129.707-83.627-180.053-131.84zM301.653 150.613c28.587 38.827 75.52 97.28 136.96 156.587 124.16 118.613 258.133 188.16 389.12 201.813-8.107 29.44-19.627 56.32-34.987 81.92-286.72-5.12-505.6-306.347-553.813-378.88 17.92-23.467 39.253-43.947 62.72-61.44zM350.72 437.333c60.587 58.453 123.733 105.387 187.307 140.373-11.093 2.133-22.613 3.84-34.56 3.84-84.907 0-153.6-66.56-158.72-149.76 2.133 2.133 3.84 3.413 5.973 5.547zM480 755.627c-171.093-11.52-308.053-154.453-313.173-325.547-1.28-59.307 11.52-114.773 37.12-163.84 19.2 26.88 48.213 66.56 87.040 109.653-3.84 15.36-5.12 31.573-5.12 46.933 0 119.893 97.28 217.173 217.173 217.173 37.973 0 74.667-9.387 106.667-27.733 46.933 18.347 94.293 30.72 141.227 34.987-65.28 72.533-163.413 115.627-270.933 108.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["funeral"],"grid":0},"attrs":[{}],"properties":{"order":334,"id":54,"name":"funeral","prevSize":32,"code":59710},"setIdx":0,"setId":0,"iconIdx":56},{"icon":{"paths":["M982.187 451.84c-4.267-45.227-16.64-88.747-36.693-129.28-19.2-38.827-45.227-74.24-76.373-104.533 14.507-57.173-17.493-107.093-17.493-107.093-55.040-3.413-90.027 17.067-103.253 26.453-2.133-0.853-4.267-1.707-6.4-2.56-9.387-3.84-19.2-7.253-29.013-10.667-9.813-2.987-20.053-5.973-30.293-8.533-12.373-2.987-24.747-5.12-37.547-6.827-23.893-76.8-93.013-108.8-93.013-108.8-76.8 48.64-91.733 116.907-91.733 116.907l-0.853 3.84c-4.267 1.28-8.533 2.56-12.8 3.84-5.973 1.707-11.52 3.84-17.493 5.973-5.973 2.56-11.52 4.693-17.493 7.253-23.467 10.24-45.653 22.613-66.56 37.12l-2.56-1.28c-106.667-40.533-201.387 8.533-201.387 8.533-8.533 113.493 42.667 184.747 52.907 197.973-12.8 36.267-21.76 74.24-26.027 112.64-98.56 48.64-127.573 148.053-127.573 148.053 82.347 94.293 177.92 100.267 177.92 100.267s0 0 0 0c11.947 21.76 26.027 42.24 42.24 61.867 6.827 8.107 13.653 15.787 20.907 23.467-29.867 85.76 4.267 157.013 4.267 157.013 91.307 3.413 151.467-40.107 164.267-49.92 43.52 14.507 89.173 21.76 134.827 21.333h5.973s4.693 0 4.693 0h4.267s0 0 0 0c43.093 61.44 119.040 70.4 119.040 70.4 53.76-56.747 57.173-113.067 57.173-125.44v-2.56c0-0.853 0-1.707 0-2.56 11.093-8.107 22.187-16.64 32.427-25.6 23.467-21.333 43.947-45.653 60.587-72.533 61.013 3.413 104.107-37.973 104.107-37.973-10.24-63.573-46.080-94.72-53.76-100.267h-0.853c0-0.427-0.853-1.28-0.853-1.28-0.427 0-0.853-0.427-1.28-0.853 0-3.84 0.853-7.68 0.853-11.52 0.427-6.827 0.853-13.653 0.853-20.48v-14.933s-0.427-5.973-0.427-5.973c0-1.707 0-3.84-0.427-5.547 0-1.707 0-3.413-0.427-5.12l-1.707-10.24c-9.387-61.44-40.107-117.76-86.613-159.147-38.4-34.133-86.613-55.893-137.387-62.293-11.947-1.707-24.32-2.133-36.267-2.133h-4.693s-2.56 0-2.56 0h-1.707s-4.267 0.427-4.267 0.427c-55.467 3.84-106.667 29.867-142.507 72.107-14.080 17.067-25.173 35.84-32.853 55.467-9.813 24.747-14.080 51.2-13.227 77.653v3.84c0 2.56 0.427 4.693 0.853 6.827 2.56 28.16 12.8 55.040 29.867 77.653 19.2 26.027 46.933 45.227 78.080 54.613 14.080 4.267 28.16 5.973 41.387 5.973 1.707 0 3.413 0 4.693 0h2.56c0.853 0 1.707 0 2.56 0 1.28 0 2.56 0 4.267-0.427 0 0 0.853 0 1.28 0h1.28s2.56-0.427 2.56-0.427c1.707 0 3.413-0.427 4.693-0.853 1.707 0 2.987-0.427 4.693-0.853 14.080-3.413 27.307-9.387 38.827-17.92 1.28-0.853 2.56-1.707 3.84-2.987 4.693-3.84 5.547-10.24 1.707-14.933 0 0 0 0 0 0-2.987-3.84-8.96-5.12-13.227-2.56l-3.413 1.707c-3.84 1.707-7.68 3.413-11.947 5.12-6.4 2.133-13.227 3.413-20.48 4.267-1.28 0-2.133 0-3.413 0h-3.413c-1.28 0-2.133 0-3.413 0h-4.267c0 0-0.427 0-0.427 0h-0.853c-0.853 0-1.28 0-1.707 0-1.28 0-2.56 0-3.84-0.427-10.667-1.707-20.907-4.693-30.72-8.96-10.24-4.693-20.053-11.093-28.587-18.773-18.347-16.64-30.293-38.827-34.56-63.147-0.853-6.4-1.28-12.8-1.28-18.773v-5.12c0 0 0-0.853 0-0.853v-1.28c0-0.853 0-1.707 0-2.56 3.84-39.253 25.173-75.093 57.6-97.707 12.373-8.107 25.6-14.507 40.107-18.347 10.667-2.987 21.76-4.267 33.28-4.267h5.547s2.133 0 2.133 0h4.267c24.32 2.133 48.213 9.387 69.547 20.907 29.44 16.213 53.333 40.96 68.267 70.827 9.387 18.773 15.36 39.253 17.067 60.16v3.413s0 2.987 0 2.987c0 1.28 0 2.133 0 2.987s0 2.133 0 2.987v5.973s-0.427 7.253-0.427 7.253c-0.853 8.96-1.707 18.347-3.413 27.307-2.56 13.653-6.4 26.88-11.52 39.68-6.827 17.067-15.787 33.28-26.453 48.213-32.853 45.653-82.773 76.373-138.24 85.76-8.96 1.707-18.347 2.56-27.733 2.987h-1.707s-12.373 0-12.373 0c-24.747-0.427-49.493-4.267-73.387-11.093-57.173-16.64-107.947-50.347-145.067-96.853-12.373-15.36-23.040-31.573-32-49.067-17.493-34.56-28.16-72.107-30.293-110.933v-3.413c0 0 0-0.853 0-0.853v-5.547s0-4.267 0-4.267v-4.267s0-2.987 0-2.987v-6.827c0.427-9.387 1.28-19.2 2.56-29.013 2.56-19.627 6.4-38.827 11.947-57.6s12.373-37.12 20.053-54.613c14.933-33.28 36.267-63.573 62.293-89.6 12.373-12.373 26.027-23.040 40.533-32.427 7.253-4.693 14.507-8.96 22.187-13.227 3.84-2.133 7.68-3.84 11.52-5.973 2.133-0.853 3.84-1.707 5.973-2.56 9.813-4.267 20.053-8.107 30.293-11.52l6.4-2.133c2.133-0.427 4.267-1.28 6.4-1.707 4.267-1.28 8.533-2.133 12.8-3.413 2.133-0.427 4.267-0.853 6.4-1.28l12.8-2.56h3.413c0-0.427 2.987-0.853 2.987-0.853l6.4-0.853c2.56-0.427 4.693-0.427 7.253-0.853l7.253-0.853c1.707 0 2.987 0 4.693-0.427h2.987c0 0 1.707-0.427 1.707-0.427h1.707c2.56 0 4.693 0 7.253-0.427h3.84c0 0 0.853 0 0.853 0h1.707s6.4 0 6.4 0c24.32-0.853 48.64 0.853 72.96 5.12 30.293 5.547 59.733 15.36 87.467 29.013 25.6 12.373 49.493 28.16 71.253 46.507l7.68 6.827c2.56 2.133 4.693 4.693 7.253 6.827s4.693 4.693 7.253 6.827c2.133 2.133 4.693 4.693 6.827 6.827 23.893 25.173 44.373 53.76 60.16 84.48 0.427 1.28 1.28 2.133 1.707 3.413l5.12 10.24c0.853 2.133 2.133 4.267 2.987 6.4l2.987 6.4c8.107 18.347 14.507 37.547 19.2 57.173 0.853 3.84 4.693 6.4 8.533 5.973 4.267 0 7.253-3.84 7.253-7.68 0.427-10.667 0-22.613-0.853-36.693v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["grafana"],"grid":0},"attrs":[{}],"properties":{"order":418,"id":55,"name":"grafana","prevSize":32,"code":59654},"setIdx":0,"setId":0,"iconIdx":57},{"icon":{"paths":["M871.68 540.16c-8.96-111.36-82.773-224.853-219.733-337.493-110.507-90.88-232.107-155.307-279.467-178.347l-0.853-1.28h-0.853l-0.853-0.853c-11.093-5.973-18.347-8.96-20.48-10.24l-27.307-11.947-14.080 26.88c-168.96 333.227-201.387 578.56-96 728.32 93.013 132.267 263.68 152.32 356.267 152.32 14.507 0 28.587-0.853 40.96-1.28h1.28l0.853 1.28c22.613 40.107 44.8 75.52 66.56 104.533 5.12 6.4 12.373 11.093 21.333 11.52 8.96 0.853 17.493-2.133 24.32-7.253l0.853-0.853c12.373-11.093 14.080-29.44 3.84-42.24-19.2-25.6-39.68-56.32-59.307-92.16l-1.28-2.133 2.133-1.28c143.787-103.253 211.2-216.747 201.813-337.493zM575.147 844.373c-1.28 0-2.987 0-5.12 0-190.293 0-273.92-78.507-305.92-125.013-81.067-116.48-59.307-319.573 64.427-587.52l2.987-7.253 2.133 7.253c43.093 165.547 131.84 477.867 243.627 708.267l2.133 3.84-4.267 0.427zM641.707 820.48l-2.987 2.133-1.28-2.987c-109.653-224-199.68-539.307-243.627-706.987l-1.707-5.973 5.973 2.987c67.413 37.12 165.547 97.28 248.747 172.8 101.12 90.027 155.307 178.773 161.707 263.68 7.253 93.44-49.067 186.453-166.827 274.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["verde"],"grid":0},"attrs":[{}],"properties":{"order":335,"id":56,"name":"greenery","prevSize":32,"code":59711},"setIdx":0,"setId":0,"iconIdx":58},{"icon":{"paths":["M921.6 230.4h-204.8v-102.4c0-55.467-46.933-102.4-102.4-102.4h-204.8c-55.467-0-102.4 46.933-102.4 102.4v102.4h-204.8c-55.467 0-102.4 46.933-102.4 102.4v563.2c0 55.467 46.933 102.4 102.4 102.4h819.2c55.467 0 102.4-46.933 102.4-102.4v-563.2c0-55.467-46.933-102.4-102.4-102.4zM614.4 230.4h-204.8v-102.4h204.8c0 0 0 102.4 0 102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["greuge"],"grid":0},"attrs":[{}],"properties":{"order":336,"id":57,"name":"greuge","prevSize":32,"code":59712},"setIdx":0,"setId":0,"iconIdx":59},{"icon":{"paths":["M0 256h256v-256h-256v256zM384 1024h256v-256h-256v256zM0 1024h256v-256h-256v256zM0 640h256v-256h-256v256zM384 640h256v-256h-256v256zM768 0v256h256v-256h-256zM384 256h256v-256h-256v256zM768 640h256v-256h-256v256zM768 1024h256v-256h-256v256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["grid"],"grid":0},"attrs":[{}],"properties":{"order":337,"id":58,"name":"grid","prevSize":32,"code":59713},"setIdx":0,"setId":0,"iconIdx":60},{"icon":{"paths":["M984.32 721.92c11.52-48.213 14.507-93.013 11.093-136.96-4.267-40.96-14.507-75.947-32.853-108.373-30.72-55.040-77.653-93.44-139.093-113.493-7.253-2.133-14.507-4.267-22.613-5.973l-13.227-2.987 14.080-2.133c10.24-1.28 20.48-3.84 29.867-5.12l5.12-0.853c32-5.973 65.28-11.52 97.28-21.333 24.32-7.253 45.227-19.627 64.427-32.853l5.973-4.267-5.12-5.12c-4.267-4.267-9.387-9.387-14.080-14.080-14.507-14.507-29.44-29.44-45.227-42.24-57.173-46.080-109.653-70.4-167.68-77.653-41.813-5.12-81.92-0.853-118.613 14.080-11.52 4.267-22.613 10.24-30.72 14.507l-2.133 1.28-1.28-2.133c-8.96-16.213-20.48-30.72-35.84-43.947-29.867-24.747-65.707-36.693-107.52-33.707h-2.987l-0.853-2.987c-7.253-20.48-19.2-38.827-35.84-55.040-49.493-46.507-123.307-54.187-180.907-17.493-24.32 15.36-42.667 35.84-54.187 62.293l-1.28 3.84-3.84-0.853c-14.080-2.133-27.733-2.133-43.093 0-35.84 4.267-69.547 23.467-93.44 52.48-25.6 31.573-36.693 70.827-31.573 111.787 2.987 24.747 11.52 46.933 25.6 66.56 0 0.853 0.853 0.853 0.853 0.853l0.853 1.28-1.28 2.133c-24.747 30.72-35.84 65.28-32.853 103.68 3.84 49.92 26.88 89.173 70.4 116.48 25.6 16.64 56.32 23.467 90.027 20.48l2.133-0.853 0.853 2.133c8.96 24.747 23.467 45.227 42.24 61.44 24.747 21.333 52.48 32 82.773 34.56 2.133 0 2.987 0.853 5.12 3.84l47.36 64.427c18.347 24.32 36.693 49.92 55.040 74.667 3.84 5.12 3.84 8.107 2.133 11.52-2.987 6.4-4.267 14.080-6.4 19.627v0.853c-0.853 2.987-1.28 5.973-2.133 8.96l-14.507 47.36c-9.387 29.867-18.347 60.16-27.733 89.173-3.84 11.52-2.133 21.76 2.987 29.867 5.973 8.107 15.36 11.52 27.733 11.52h176.213c7.253 0 14.507 0 21.76 0 19.627 0 39.68 0 59.307 0 8.96 0 16.213-2.133 21.76-7.253 12.373-11.093 11.093-24.747 7.253-35.84l-13.227-43.093c-12.373-40.96-24.747-82.773-37.12-125.013-0.853-3.84-0.853-5.973 1.28-9.387 31.573-49.92 62.293-100.267 93.013-149.333l37.973-60.587c1.28-2.133 2.987-5.12 5.12-7.253l2.133-2.987 57.6 66.56c22.613 26.453 46.933 54.187 72.96 78.080 18.347 16.64 40.107 27.733 61.44 37.973l6.4 2.987 5.12-21.333c1.28-8.107 3.413-16.213 5.973-24.747zM610.133 329.813c17.493-25.6 26.453-54.187 25.6-85.76 0-3.84 0.853-5.12 4.267-7.253 37.973-24.32 76.8-33.707 120.747-29.44 39.68 4.267 76.8 19.627 116.907 47.36 5.12 3.84 11.093 7.253 16.64 12.373l4.267 3.84-5.12 1.28c-11.093 2.987-21.76 5.12-31.573 6.4-22.613 4.267-44.8 8.107-66.56 11.52-29.44 5.12-59.307 10.24-89.173 16.64-25.6 5.12-59.307 13.227-93.013 25.6l-8.107 2.987 5.12-5.547zM320.427 603.307c-21.333 0-41.813-8.107-57.6-24.32-16.213-15.36-25.6-34.987-27.733-60.16-0.853-5.12-0.853-9.387-1.28-14.507l-1.28-14.080h-6.4c-8.96 0.853-16.64 4.267-24.32 7.253l-2.987 1.28c-21.76 8.96-46.933 8.107-67.84-2.133-21.76-10.24-39.68-29.867-46.933-53.333-11.52-33.707 0.853-72.533 30.293-94.72l29.44-21.76-3.84-5.12c-4.267-6.4-10.24-11.093-16.213-15.36l-0.853-0.853c-1.28-1.28-3.84-2.987-5.12-3.84-21.76-18.347-32.853-41.813-32-67.84 0.853-38.827 21.76-68.693 58.453-81.92 20.48-7.253 40.96-6.4 62.293 2.133l34.56 14.507 2.133-6.4c2.987-8.107 4.267-16.213 5.12-24.32l1.28-7.253c5.973-32 32.853-67.84 79.787-70.4 30.72-1.28 56.32 10.24 75.52 36.693 10.24 14.080 15.36 30.72 16.64 52.053 0.853 6.4 0.853 13.227 2.987 19.627l1.28 5.973 16.64-5.973c5.973-2.133 11.52-4.267 17.493-5.973 40.107-14.507 84.907 2.987 104.533 40.107 16.213 29.867 14.507 60.587-4.267 91.307-7.253 11.52-18.347 20.48-30.72 28.587l-3.84 2.987c-7.253 5.12-10.24 8.107-10.24 12.373s2.987 8.107 9.387 13.227c11.52 10.24 23.467 20.48 31.573 34.56 14.080 22.613 15.36 52.053 4.267 78.080s-32 44.8-60.587 51.2c-16.64 4.267-34.56 2.133-52.053-5.12-5.12-2.133-10.24-4.267-15.36-6.4l-18.347-8.107-1.28 5.12c-2.987 7.253-3.84 14.080-5.12 20.48l-0.853 5.12c-5.12 29.44-19.627 51.2-44.8 65.28-13.227 7.68-27.733 11.947-41.813 11.947zM657.067 655.787c-28.587 46.080-54.187 87.040-80.64 129.707-5.973 9.387-6.4 19.2-2.987 31.573l32.853 110.507c3.84 11.093 6.4 21.76 9.387 32.853l0.853 3.84h-3.84c-15.36 0-30.72 0-46.080 0h-19.627c-34.56 0-70.827 0-108.373 1.28h-3.413l0.853-3.84c1.28-5.12 2.987-10.24 4.267-15.36 0.853-2.987 2.133-6.4 2.987-9.387 13.227-43.947 24.747-80.64 35.84-114.773 5.12-15.36 2.133-29.44-7.253-42.24-23.467-31.573-47.36-63.573-68.693-93.013l-25.6-34.56 2.987-1.28c24.747-11.52 43.947-27.733 59.307-49.067 5.12-7.253 9.387-15.36 13.227-22.613l1.28-3.84 3.84 0.853c21.76 3.84 43.093 2.133 62.72-3.84 50.347-15.36 84.053-48.213 100.267-98.56l0.853-3.84 3.84 0.853c22.613 3.84 41.813 16.64 60.587 30.72 10.24 7.253 19.2 16.213 28.587 24.32 3.84 3.84 8.107 7.253 12.373 10.24l2.133 1.28-72.533 118.187zM935.68 632.747c-0.853 11.52-1.28 22.613-2.987 33.707l-0.853 5.973-9.387-10.24c-20.48-21.76-40.107-45.227-59.307-67.413-14.507-16.64-30.72-35.84-46.933-53.333-25.6-27.733-53.333-57.6-85.76-83.2-17.493-14.080-34.56-24.747-51.2-32.853l-6.4-2.987 6.4-2.133c5.973-1.28 11.52-2.987 18.347-4.267 46.933-8.107 90.88-2.987 129.707 16.213 52.053 25.6 85.76 67.84 100.267 128 7.68 22.613 9.813 46.933 8.107 72.533z","M328.533 215.467h-2.133c-63.573 0.853-113.493 52.053-113.493 116.48 0 31.573 11.52 60.587 33.707 82.773 21.333 21.333 50.347 33.707 81.92 33.707 64.427 0 115.627-51.2 115.627-115.627 0-31.573-11.52-60.587-33.707-81.92-21.76-23.040-51.2-35.413-81.92-35.413zM327.68 387.413c-14.507 0-28.587-5.973-38.827-16.64-9.813-11.093-15.787-25.173-15.787-39.68 0.853-31.573 24.32-55.467 55.467-55.467 14.507 0 27.733 5.973 37.973 16.213 11.093 11.093 16.64 25.6 16.64 40.107 0.427 30.72-24.747 55.467-55.467 55.467z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["confeccion"],"grid":0},"attrs":[{},{}],"properties":{"order":338,"id":59,"name":"handmade","prevSize":32,"code":59714},"setIdx":0,"setId":0,"iconIdx":61},{"icon":{"paths":["M459.093 418.987c0-1.28 0-2.133 0-2.987v-157.013c0-3.84-0.853-5.973-2.133-6.827-1.28-1.28-3.84-2.133-7.253-2.133-0.853 0-2.133 0-2.987 0h-149.76c-1.28 0-2.987 0-3.84 0-2.987 0-5.12 1.28-5.973 1.28-1.28 1.28-2.133 3.84-2.133 5.973 0 1.28 0 2.133 0 3.84v162.133h172.8l1.28-4.267zM403.627 307.627c0 6.827 0 13.227 0 20.053v17.067c0 6.827 0 13.227 0 20.48v2.987h-2.987c-19.2 0-38.4 0-58.027 0h-2.987v-2.987c0-19.2 0-38.4 0-58.027v-2.987h2.987c19.2 0 37.547 0 58.027 0h1.28l1.707 3.413z","M1008.213 669.013c-0.853-2.987-1.28-5.12-2.987-8.107l-102.4-282.88c-6.827-15.36-16.213-14.080-16.213-14.080l-124.587 29.44 8.96-6.827 70.827-49.493 144.213-101.547-289.28-72.107c-4.267-0.853-8.96-2.133-12.373-2.987-7.253-1.28-10.24 1.28-13.227 6.827-0.853 0.853-0.853 2.133-1.28 2.987v0l-2.987 5.12-66.56-115.627c-2.987-5.973-5.12-8.107-8.107-8.96s-5.973 0.853-11.093 3.84l-20.053 11.093c-14.933 8.96-29.44 17.067-44.373 25.6l-4.267 2.133-0.853-4.267v-17.067c0-10.24 0-20.053 0-30.293 0-3.84 0-7.253 0-11.093 0-8.96 0-17.493-0.853-25.6v-4.267h-262.827c-12.373 0.853-15.36 10.24-15.36 15.36v2.133c0 23.467 0 46.933 0 70.827v4.267l-4.267-2.133c-5.12-2.987-10.24-5.973-15.36-8.96l-12.373-6.827c-13.227-7.253-27.307-15.36-40.533-23.467-2.133-1.28-5.12-2.987-8.107-1.28-2.987 0.853-4.267 4.267-5.12 5.973 0 0.853-0.853 1.28-1.28 2.987l-134.827 230.4 2.987 1.28c12.373 8.107 25.6 15.36 38.827 22.613 1.28 0.853 2.987 1.28 3.84 2.133v0l36.693 18.347-20.48 11.947c0 0-0.853 0-0.853 0.853l-61.013 35.413 1.28 2.987c14.080 27.307 130.987 231.253 138.24 238.507l1.28 2.133 45.653-25.6 34.56-22.187-1.28 49.92c0 11.947 0 22.613 0 33.707 0 2.133 0 5.973 2.133 8.96 2.133 2.133 5.973 2.133 7.253 2.133 3.84 0 8.107 0 12.373 0.853h0.853c4.267 0.853 8.96 0.853 12.373 0.853 5.12 0 10.24 0 15.36 0 6.827 0 13.227 0 20.053 0 0.853 0 0.853 0 1.28 0 5.12 0 8.96 2.133 13.227 6.827 29.44 37.547 61.867 78.080 98.56 122.88 3.84 4.267 4.267 8.107 2.987 13.227-14.080 43.52-28.587 86.187-42.667 129.707l-20.48 58.027c-1.28 4.267-0.853 8.96 1.28 13.227 2.987 3.84 6.827 5.973 11.947 5.973h325.547l-1.28-7.253c-0.853-1.28-0.853-2.987-0.853-4.267l-13.227-44.8c-14.080-48.64-28.587-98.56-43.52-149.333-2.133-7.253-1.28-12.373 2.987-20.053 32.427-51.627 64.853-103.68 97.28-155.307l28.16-44.8c0.853-0.853 1.28-2.133 1.28-2.987l2.133 0.853 0.853-2.987c1.28 0 2.987 0.853 5.973 2.133l223.147 83.2c2.133 0.853 4.267 1.28 7.253 2.133l10.24 3.84-4.693-16.213zM727.893 294.4c3.84-2.133 4.267-5.973 2.987-9.387l-6.827-11.093c-5.12-9.387-11.093-18.347-16.213-28.16l-19.2-29.44 126.72 30.72 42.667 14.080-19.2 12.373-33.707 22.187c-33.707 22.187-67.84 43.52-101.547 65.707-1.28 1.28-2.987 1.28-4.267 1.28s-2.133-0.853-3.84-1.28c-11.093-6.827-22.187-13.227-33.28-20.053l-8.107-4.267 73.813-42.667zM293.547 617.387h-6.827v-133.547l-5.12 2.56c-12.373 5.973-24.32 13.227-36.267 20.053l-0.853 0.853c-6.827 3.84-13.227 8.107-20.053 11.947-13.227 7.253-27.307 15.36-38.827 22.613l-14.933 8.96-4.267-8.107c-4.267-7.253-8.96-14.933-13.227-22.187-22.187-37.547-43.52-75.947-64.853-113.493l-2.133-3.84 3.84-2.133 97.707-56.747c1.28-0.853 2.987-2.133 5.12-2.987l8.107-5.12-103.253-60.16c-5.973-3.84-8.107-11.093-4.267-17.067l72.96-125.867c3.84-5.973 11.093-8.107 17.067-4.267l93.44 53.76c2.133 1.28 4.267 1.28 6.827 0 2.133-1.28 3.84-3.84 3.84-5.973v-5.973c0-8.96 0.853-16.213 0.853-24.32 0-17.493 0-35.413 0-52.907v-38.4h3.84c53.76 0 108.373 0 162.133 0h3.84v121.6c0 2.133 1.28 5.12 3.84 5.973s5.12 1.28 7.253 0l94.293-53.76c5.973-3.84 14.080-1.28 17.067 4.267l49.92 87.467c8.96 14.933 17.067 29.44 25.6 44.8l2.133 4.267-105.387 60.16c-2.133 1.28-2.987 3.84-2.987 5.973s1.28 4.267 3.84 5.973l93.013 55.040c5.973 3.84 8.107 11.093 4.267 17.067l-72.96 125.867c-1.28 2.987-4.267 5.12-7.253 5.973s-6.827 0.853-9.387-1.28l-99.413-58.027-2.133 2.987c-2.987 2.987-2.987 6.827-2.133 10.24v89.173c0 9.387 0 17.493-1.28 26.453l-0.853 2.133h-3.84c-0.853 0-1.28 0-2.133 0-51.627-0-104.107 0.853-156.16-0zM704 584.533l-69.973 111.787c-20.053 30.72-38.827 62.72-58.88 93.44-3.84 5.973-4.267 11.093-2.133 18.347 11.093 38.827 22.613 77.227 33.707 116.48l12.373 43.52h-4.693l-148.907-0.853c-5.12 0-10.24 0-15.36 0h-22.613l9.387-30.293c13.227-41.813 28.16-85.333 41.813-127.147 2.987-8.107 1.28-13.227-3.84-20.053-25.173-30.72-49.493-61.867-78.933-97.707l-14.080-17.493h119.467c5.12 0 7.253 0 8.96-2.133 2.133-2.133 2.133-4.267 2.133-10.24v-81.067l4.267 2.987c1.28 0.853 2.133 1.28 3.84 2.133 11.947 6.827 22.613 13.227 34.56 20.053l28.587 17.067c8.107 4.267 10.24 3.84 14.933-3.84l40.533-69.12c0.853-0.853 0.853-1.28 1.28-2.133l1.28-1.28 4.267 1.28c17.493 6.827 34.56 13.227 52.48 19.2 3.84 1.28 6.827 4.267 7.253 7.253 1.28 2.133 0 5.973-1.707 9.813zM863.147 568.32l-193.707-72.107 2.133-4.267c3.84-6.827 7.253-13.227 11.093-20.053 0.853-1.28 2.133-1.28 5.12-2.133l119.893-28.587c14.933-3.84 28.587-6.827 43.52-10.24l7.253-0.853 7.253 7.253v0.853c11.093 30.293 21.333 59.733 32.427 89.6l26.453 64-61.44-23.467z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["handmadeArtificial"],"grid":0},"attrs":[{},{}],"properties":{"order":339,"id":60,"name":"handmadeArtificial","prevSize":32,"code":59715},"setIdx":0,"setId":0,"iconIdx":62},{"icon":{"paths":["M362.667 1024h302.933v-678.4h-302.933v678.4zM0 1024h302.933v-678.4h-302.933v678.4zM721.067 345.6v678.4h302.933v-678.4h-302.933z","M362.667 281.6h302.933v-281.6h-302.933v281.6zM0 281.6h302.933v-281.6h-302.933v281.6zM721.067 0v281.6h302.933v-281.6h-302.933z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["headercol"],"grid":0},"attrs":[{},{}],"properties":{"order":340,"id":61,"name":"headercol","prevSize":32,"code":59717},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM563.2 768h-102.4v-307.2h102.4v307.2zM563.2 358.4h-102.4v-102.4h102.4v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["info"],"grid":0},"attrs":[{}],"properties":{"order":341,"id":62,"name":"info","prevSize":32,"code":59718},"setIdx":0,"setId":0,"iconIdx":64},{"icon":{"paths":["M273.067 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c0 8.533 8.533 12.8 12.8 12.8z","M512 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c0 8.533 8.533 12.8 12.8 12.8z","M750.933 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c4.267 8.533 8.533 12.8 12.8 12.8z","M644.267 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-217.6v-221.867h4.267z","M401.067 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-213.333v-221.867z","M162.133 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-213.333v-221.867z","M153.6 422.4h780.8v38.4h-844.8v-38.4z","M68.267 1002.667h-42.667v-981.333h42.667v908.8z","M89.6 921.6v-38.4h844.8v38.4z","M998.4 1002.667h-42.667v-981.333h42.667z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{},{}]},"tags":["inventory"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":342,"id":63,"name":"inventory","prevSize":32,"code":59719},"setIdx":0,"setId":0,"iconIdx":65},{"icon":{"paths":["M320 384h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-341.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M320 490.667h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-341.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v682.667c0 12.8 8.533 21.333 21.333 21.333s21.333-8.533 21.333-21.333v-682.667c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM42.667 917.333v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-554.667c-34.133 0-64-29.867-64-64z","M657.067 712.533c-12.8 8.533-25.6 12.8-42.667 12.8-12.8 0-25.6-4.267-38.4-12.8-8.533-4.267-12.8-12.8-21.333-21.333h64c4.267 0 8.533-4.267 12.8-4.267 0 0 4.267-4.267 4.267-12.8 0-4.267 0-8.533-4.267-12.8 0 0-4.267-4.267-12.8-4.267h-72.533c0 0 0 0 0-4.267 0 0 0-4.267 0-4.267h89.6c4.267 0 8.533-4.267 12.8-4.267 4.267-4.267 4.267-8.533 4.267-12.8s0-8.533-4.267-12.8c0 0-4.267-4.267-12.8-4.267h-76.8c4.267-8.533 12.8-12.8 17.067-21.333 12.8-8.533 21.333-12.8 34.133-12.8 8.533 0 17.067 0 21.333 4.267s12.8 4.267 17.067 8.533c4.267 4.267 12.8 4.267 17.067 4.267 0 0 4.267-4.267 4.267-4.267s4.267-4.267 4.267-4.267c0-4.267 4.267-4.267 4.267-8.533s0-8.533-4.267-12.8c-8.533-8.533-17.067-12.8-29.867-17.067-17.067 4.267-46.933 4.267-72.533 17.067-12.8 4.267-25.6 12.8-34.133 25.6-8.533 8.533-12.8 21.333-17.067 29.867h-17.067c-4.267 0-8.533 0-12.8 4.267s-4.267 8.533-4.267 12.8c0 4.267 0 8.533 4.267 12.8s8.533 4.267 12.8 4.267h8.533c0 0 0 4.267 0 4.267s0 0 0 4.267h-8.533c-4.267 0-8.533 0-12.8 4.267s-4.267 8.533-4.267 12.8c0 4.267 0 8.533 4.267 12.8s8.533 4.267 12.8 4.267h12.8c4.267 12.8 8.533 21.333 17.067 34.133s21.333 21.333 34.133 25.6c12.8 4.267 25.6 8.533 42.667 8.533 25.6 0 46.933-8.533 64-21.333 8.533-8.533 8.533-12.8 8.533-21.333 0-4.267 0-8.533-4.267-12.8-8.533-4.267-12.8-4.267-21.333 0z"],"attrs":[{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}],"125525525519595951":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}],"12043441125524245125525525513111218319595951":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}]},"tags":["invoice"],"grid":0},"attrs":[{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"}],"properties":{"order":343,"id":64,"name":"invoice","prevSize":32,"code":59752},"setIdx":0,"setId":0,"iconIdx":66},{"icon":{"paths":["M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M149.333 810.667c12.8 0 21.333-8.533 21.333-21.333v-235.52c-5.547 0.427-11.52 0.853-17.067 0.853-8.533 0-17.067-0.427-25.6-1.707v236.373c0 12.8 8.533 21.333 21.333 21.333z","M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-533.333z","M661.333 341.333h-317.013c0.853 6.827 1.28 14.080 1.28 21.333s-0.427 14.507-1.28 21.333h317.013c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M661.333 448h-335.36c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M720.64 728.32c-3.413 8.533-8.96 16.213-15.36 22.613-6.827 6.4-14.080 11.947-22.613 16.64-8.533 4.267-17.493 7.68-26.88 10.24s-18.773 3.413-28.16 3.413c-12.373 0-24.32-2.133-35.413-6.4s-20.907-9.813-29.867-17.067c-8.96-7.253-16.64-15.36-23.040-25.173-6.4-9.387-11.52-19.627-14.933-30.72h-33.28l9.813-23.467h17.92c-0.427-4.267-0.853-8.96-0.853-14.080v-2.133h-22.187l9.387-23.467h15.787c2.56-11.52 6.827-22.613 12.8-32.853 5.973-10.667 13.653-19.627 23.040-27.733s20.053-14.507 32-19.2c12.373-4.693 25.6-7.253 40.533-7.253 20.907 0 38.827 4.693 54.187 13.653s26.453 20.907 34.133 35.84l-33.707 23.467c-2.987-6.4-6.827-11.947-10.667-16.213-4.267-4.267-8.96-7.68-13.653-10.24s-9.813-4.267-15.36-5.547c-5.547-1.28-10.667-1.707-15.787-1.707-8.107 0-15.787 1.28-22.613 3.84s-12.8 5.973-17.92 10.24c-5.12 4.267-9.387 9.387-13.227 15.36s-6.4 11.947-8.107 18.773h81.92l-9.387 23.467h-76.373v3.413c0 4.267 0.427 8.533 0.853 12.8h74.667l-9.387 23.467h-58.453c5.547 11.947 13.227 21.76 23.467 29.013s21.76 11.093 35.413 11.093c5.12 0 10.24-0.427 15.787-1.707s10.667-3.413 15.787-5.973c5.12-2.987 9.387-6.4 14.080-10.667 4.267-4.267 7.68-9.813 10.24-15.787l35.413 20.053z","M153.6 209.067c-85.333 0-153.6 68.267-153.6 153.6s68.267 153.6 153.6 153.6 153.6-68.267 153.6-153.6-68.267-153.6-153.6-153.6zM243.2 379.733h-81.067v42.667c0 8.533-4.267 12.8-12.8 8.533l-98.133-55.467c-8.533-4.267-8.533-12.8 0-17.067l98.133-55.467c8.533-4.267 12.8 0 12.8 8.533v42.667h81.067c8.533 0 17.067 8.533 17.067 17.067 0 0-4.267 8.533-17.067 8.533z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{}]},"tags":["invoiceIn"],"grid":0},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":344,"id":65,"name":"invoice-in","prevSize":32,"code":59721},"setIdx":0,"setId":0,"iconIdx":67},{"icon":{"paths":["M153.6 516.267c-85.333 0-153.6-68.267-153.6-153.6s68.267-153.6 153.6-153.6 153.6 68.267 153.6 153.6-68.267 153.6-153.6 153.6zM243.2 354.133h-81.067v-42.667c0-8.533-4.267-12.8-12.8-8.533l-98.133 55.467c-8.533 4.267-8.533 12.8 0 17.067l98.133 55.467c8.533 4.267 12.8 0 12.8-8.533v-42.667h81.067c12.8 0 17.067-8.533 17.067-8.533 0-8.533-8.533-17.067-17.067-17.067zM153.6 554.667c5.547 0 11.52-0.427 17.067-0.853v235.52c0 12.8-8.533 21.333-21.333 21.333s-21.333-8.533-21.333-21.333v-236.373c8.533 1.28 17.067 1.707 25.6 1.707zM344.32 384c0.853-6.827 1.28-14.080 1.28-21.333s-0.427-14.507-1.28-21.333h317.013c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-317.013zM917.333 149.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v317.44c-29.44-9.387-61.013-14.507-93.867-14.507-53.76 0-104.533 14.080-148.907 38.4h-241.92c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h189.013c-21.76 20.053-40.533 43.093-55.893 68.693-1.707-0.427-3.413-0.427-5.12-0.427h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h112.213c-14.507 35.413-22.613 74.24-22.613 115.2 0 49.067 11.52 95.573 32 136.533h-420.267c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c15.36 0 29.867-2.987 43.093-8.96 134.4-32.853 234.24-154.027 234.24-298.24 0-120.747-69.547-224.853-170.667-275.2v-334.933c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h424.533c24.747 34.56 56.747 63.573 93.44 85.333h-432.64zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["invoice-in-create"],"grid":0},"attrs":[{}],"properties":{"order":345,"id":66,"name":"invoice-in-create","prevSize":32,"code":59722},"setIdx":0,"setId":0,"iconIdx":68},{"icon":{"paths":["M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M149.333 810.667c12.8 0 21.333-8.533 21.333-21.333v-235.52c-5.547 0.427-11.52 0.853-17.067 0.853-8.533 0-17.067-0.427-25.6-1.707v236.373c0 12.8 8.533 21.333 21.333 21.333z","M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-533.333z","M661.333 341.333h-317.013c0.853 6.827 1.28 14.080 1.28 21.333s-0.427 14.507-1.28 21.333h317.013c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M661.333 448h-335.36c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M720.64 728.32c-3.413 8.533-8.96 16.213-15.36 22.613-6.827 6.4-14.080 11.947-22.613 16.64-8.533 4.267-17.493 7.68-26.88 10.24s-18.773 3.413-28.16 3.413c-12.373 0-24.32-2.133-35.413-6.4s-20.907-9.813-29.867-17.067c-8.96-7.253-16.64-15.36-23.040-25.173-6.4-9.387-11.52-19.627-14.933-30.72h-33.28l9.813-23.467h17.92c-0.427-4.267-0.853-8.96-0.853-14.080v-2.133h-22.187l9.387-23.467h15.787c2.56-11.52 6.827-22.613 12.8-32.853 5.973-10.667 13.653-19.627 23.040-27.733s20.053-14.507 32-19.2c12.373-4.693 25.6-7.253 40.533-7.253 20.907 0 38.827 4.693 54.187 13.653s26.453 20.907 34.133 35.84l-33.707 23.467c-2.987-6.4-6.827-11.947-10.667-16.213-4.267-4.267-8.96-7.68-13.653-10.24s-9.813-4.267-15.36-5.547c-5.547-1.28-10.667-1.707-15.787-1.707-8.107 0-15.787 1.28-22.613 3.84s-12.8 5.973-17.92 10.24c-5.12 4.267-9.387 9.387-13.227 15.36s-6.4 11.947-8.107 18.773h81.92l-9.387 23.467h-76.373v3.413c0 4.267 0.427 8.533 0.853 12.8h74.667l-9.387 23.467h-58.453c5.547 11.947 13.227 21.76 23.467 29.013s21.76 11.093 35.413 11.093c5.12 0 10.24-0.427 15.787-1.707s10.667-3.413 15.787-5.973c5.12-2.987 9.387-6.4 14.080-10.667 4.267-4.267 7.68-9.813 10.24-15.787l35.413 20.053z","M153.6 209.067c85.333 0 153.6 68.267 153.6 153.6s-68.267 153.6-153.6 153.6-153.6-68.267-153.6-153.6 68.267-153.6 153.6-153.6zM64 379.733h81.067v42.667c0 8.533 4.267 12.8 12.8 8.533l98.133-55.467c8.533-4.267 8.533-12.8 0-17.067l-98.133-55.467c-8.533-4.267-12.8 0-12.8 8.533v42.667h-81.067c-8.533 0-17.067 8.533-17.067 17.067 0 0 4.267 8.533 17.067 8.533z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{}]},"tags":["invoiceOut"],"grid":0},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":346,"id":67,"name":"invoice-out","prevSize":32,"code":59723},"setIdx":0,"setId":0,"iconIdx":69},{"icon":{"paths":["M512 4.267c-279.893 0-507.733 227.84-507.733 507.733s227.84 507.733 507.733 507.733 507.733-227.84 507.733-507.733-227.84-507.733-507.733-507.733zM512 975.787c-255.573 0-463.787-207.787-463.787-463.787s208.213-463.787 463.787-463.787c255.573 0 463.787 207.787 463.787 463.787s-208.213 463.787-463.787 463.787z","M833.707 253.867c-95.147-79.36-198.827-120.32-308.053-122.453-167.253-3.413-290.56 88.747-349.013 143.787l-6.827 6.4 185.6 273.92 9.387-7.253c15.787-12.373 31.573-22.187 46.933-29.867l41.387 72.107c-5.973 11.947-8.107 25.6-5.973 39.68 5.547 36.267 39.68 61.013 75.52 55.040 36.267-5.547 61.013-39.68 55.040-75.52-5.547-36.267-39.68-61.013-75.52-55.040-3.413 0.427-6.4 1.28-9.387 2.133l-43.52-53.333c40.107-12.373 69.547-10.667 69.973-10.667 0.853 0 66.133 4.267 131.413 53.333l9.813 7.253 180.907-293.547-7.68-5.973zM540.16 615.68c2.133 14.933-8.107 29.013-23.040 31.573-14.933 2.133-29.013-8.107-31.573-23.040-2.133-14.933 8.107-29.013 23.040-31.573s29.013 7.68 31.573 23.040zM654.080 521.387c-67.413-46.507-130.987-50.347-133.547-50.773-2.133 0-38.4-2.56-86.613 14.507l-137.387-166.4 104.107 180.48c-13.227 6.4-26.453 14.507-40.107 24.32l-161.707-238.933c19.627-17.92 46.080-39.253 78.507-59.307l32 55.040 19.2-11.093-32.427-55.040c53.333-30.72 120.32-56.32 198.4-60.16v74.667h22.187v-75.093c2.987 0 5.547 0 8.533 0 65.28 1.28 128.427 17.493 189.013 47.787l-36.693 68.267 19.627 10.667 36.693-68.267c26.88 14.933 52.907 32.427 78.507 53.333l-158.293 256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["isTooLittle"],"grid":0},"attrs":[{},{}],"properties":{"order":349,"id":68,"name":"isTooLittle","prevSize":32,"code":59724},"setIdx":0,"setId":0,"iconIdx":70},{"icon":{"paths":["M593.067 827.733v-29.867l8.533-12.8c42.667 38.4 102.4 59.733 166.4 59.733 140.8 0 251.733-115.2 251.733-251.733 0-140.8-115.2-251.733-251.733-251.733-140.8 0-251.733 115.2-251.733 251.733 0 64 21.333 119.467 59.733 166.4l-12.8 8.533h-29.867l-192 196.267 59.733 59.733 192-196.267zM772.267 418.133c98.133 0 174.933 76.8 174.933 174.933s-76.8 174.933-174.933 174.933c-98.133 0-174.933-76.8-174.933-174.933-4.267-93.867 76.8-174.933 174.933-174.933z","M460.8 849.067v0-4.267z","M0 0h102.4v849.067h-102.4v-849.067z","M1024 371.2v-371.2h-102.4v290.133c38.4 21.333 72.533 46.933 102.4 81.067z","M456.533 729.6c-17.067-42.667-25.6-85.333-25.6-132.267 0-51.2 12.8-93.867 29.867-136.533v-460.8h-153.6v849.067h29.867l119.467-119.467z","M204.8 0h51.2v849.067h-51.2v-849.067z","M772.267 256c17.067 0 34.133 0 46.933 4.267v-260.267h-51.2l4.267 256c-4.267 0-4.267 0 0 0z","M665.6 273.067v-273.067h-102.4c0 0 0 170.667 0 328.533 29.867-25.6 64-42.667 102.4-55.467z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{}]},"tags":["item"],"grid":0},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":350,"id":69,"name":"item","prevSize":32,"code":59725},"setIdx":0,"setId":0,"iconIdx":71},{"icon":{"paths":["M961.28 384.853c0-212.48-172.373-384.853-384.853-384.853s-384.427 172.373-384.427 384.853c0 26.88 3.413 52.907 7.68 77.653-75.52 0-136.96 61.44-136.96 136.96v159.573c0 75.52 61.44 136.96 136.96 136.96h23.893c-1.707 17.92-5.973 38.4-14.507 61.013-7.68 19.2-2.133 42.24 14.080 55.040 9.813 7.68 20.48 11.947 32.427 11.947 8.533 0 16.213-2.133 24.747-6.4 55.040-31.147 101.12-81.92 132.693-122.88h55.040c72.107 0 131.413-55.893 136.96-127.147 199.253-14.080 356.267-180.053 356.267-382.72zM855.893 556.373c-26.027-10.667-52.907-20.48-79.787-28.16 7.68-36.693 12.8-75.52 14.080-116.48h113.067c-4.267 53.76-21.333 102.4-47.36 144.64zM855.893 212.48c26.027 43.093 43.093 91.733 47.36 144.64h-113.067c-2.133-40.96-6.4-79.787-14.080-116.48 26.88-8.96 53.76-17.493 79.787-28.16zM820.48 165.12c-19.2 7.68-38.827 14.080-60.16 19.2-11.947-37.547-28.16-71.253-46.507-98.133 40.533 19.627 77.227 46.507 106.667 78.933zM605.867 62.72c37.547 16.213 75.52 63.573 98.987 134.827-32.427 5.547-64.853 8.533-98.987 10.667 0 0 0-145.493 0-145.493zM605.867 264.96c38.827-1.28 77.653-5.547 114.347-11.947 6.4 31.147 11.947 65.707 12.8 103.68h-127.147v-91.733zM605.867 413.013h127.147c-1.28 37.547-6.4 72.107-12.8 103.68-36.693-6.4-75.52-10.667-114.347-11.947 0-0.427 0-91.733 0-91.733zM425.813 461.227c-2.133-16.213-3.413-32.427-4.267-49.493h127.147v74.24c-22.613-16.213-49.493-26.027-79.787-26.027h-43.093v1.28zM548.693 355.84h-127.147c1.28-37.547 6.4-72.107 12.8-103.68 36.693 6.4 75.52 10.667 114.347 11.947 0 0 0 91.733 0 91.733zM548.693 62.72v145.493c-34.56-1.28-66.987-5.547-98.987-10.667 24.747-70.4 61.013-119.040 98.987-134.827zM440.747 86.187c-18.347 28.16-34.56 61.44-46.507 98.133-20.48-5.547-40.96-11.947-60.16-19.2 29.013-32.427 65.707-59.307 106.667-78.933zM298.667 212.48c26.027 10.667 52.907 20.48 80.64 28.16-8.533 36.693-12.8 75.52-14.080 116.48h-113.92c4.267-53.333 21.333-102.827 47.36-144.64zM364.373 413.013c1.28 17.067 2.133 33.28 3.413 49.493h-107.947c-4.267-16.213-7.68-32.427-8.533-49.493h113.067zM548.693 757.76c0 44.373-35.413 79.787-79.787 79.787h-69.12c-8.533 0-17.067 4.267-22.613 11.947-20.48 28.16-59.307 75.52-105.813 107.947 10.667-36.693 11.947-69.12 10.667-91.733-1.28-14.933-12.8-26.88-28.16-26.88h-52.48c-44.373 0-79.787-35.413-79.787-79.787v-160.427c0-44.373 35.413-79.787 79.787-79.787h267.52c44.373 0 79.787 35.413 79.787 79.787v159.147zM605.867 706.133v-107.947c0 0 0 0 0-1.28v-36.693c34.56 1.28 66.987 4.267 98.987 10.667-23.467 70.4-61.44 119.040-98.987 135.253zM713.387 682.24c18.347-28.16 34.56-60.16 46.507-98.133 20.48 5.547 40.96 11.947 60.16 19.2-29.013 32.853-65.707 59.733-106.667 78.933z","M442.88 593.92h-215.467c-16.213 0-28.16 12.8-28.16 28.16 0 14.933 12.8 28.16 28.16 28.16h215.467c16.213 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z","M442.88 701.867h-215.467c-16.213 0-28.16 12.8-28.16 28.16s12.8 28.16 28.16 28.16h215.467c16.213 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["languaje"],"grid":0},"attrs":[{},{},{}],"properties":{"order":351,"id":70,"name":"languaje","prevSize":32,"code":59760},"setIdx":0,"setId":0,"iconIdx":72},{"icon":{"paths":["M0 145.067h1024v149.333h-1024v-149.333zM0 435.2h1024v149.333h-1024v-149.333zM0 729.6h1024v149.333h-1024v-149.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["lineas"],"grid":0},"attrs":[{}],"properties":{"order":352,"id":71,"name":"lines","prevSize":32,"code":59726},"setIdx":0,"setId":0,"iconIdx":73},{"icon":{"paths":["M870.4 102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h716.8c55.467 0 102.4-46.933 102.4-102.4v-716.8c0-55.467-46.933-102.4-102.4-102.4zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2 21.333-51.2 51.2-51.2zM614.4 819.2h-358.4v-102.4h358.4v102.4zM768 614.4h-512v-102.4h512v102.4zM768 409.6h-512v-102.4h512v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["linesprepaired"],"grid":0},"attrs":[{}],"properties":{"order":353,"id":72,"name":"linesprepaired","prevSize":32,"code":59727},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M108.8 300.8c0-85.344 69.12-154.464 154.464-154.464h199.264v-94.304h-199.264c-137.376 0-248.736 111.36-248.736 248.736s111.36 248.736 248.736 248.736h199.264v-94.72h-199.264c-85.344 0.416-154.464-69.12-154.464-154.016zM312.736 350.72h398.080v-99.84h-398.080v99.84zM760.736 52.064h-199.264v94.72h199.264c84.896 0 154.464 69.12 154.464 154.464s-69.12 154.464-154.464 154.464h-199.264v94.72h199.264c137.376 0 248.736-111.36 248.736-248.736s-111.36-249.6-248.736-249.6z","M440.736 616.544l49.92 49.92-91.744 92.16h361.824v71.264h-361.376l91.744 91.744-49.92 50.336-177.92-177.504z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["link-to-corrected"],"grid":0},"attrs":[{},{}],"properties":{"order":415,"id":73,"name":"link-to-corrected","prevSize":32,"code":59697},"setIdx":0,"setId":0,"iconIdx":75},{"icon":{"paths":["M108.8 300.8c0-85.344 69.12-154.464 154.464-154.464h199.264v-94.304h-199.264c-137.376 0-248.736 111.36-248.736 248.736s111.36 248.736 248.736 248.736h199.264v-94.72h-199.264c-85.344 0.416-154.464-69.12-154.464-154.016zM312.736 350.72h398.080v-99.84h-398.080v99.84zM760.736 52.064h-199.264v94.72h199.264c84.896 0 154.464 69.12 154.464 154.464s-69.12 154.464-154.464 154.464h-199.264v94.72h199.264c137.376 0 248.736-111.36 248.736-248.736s-111.36-249.6-248.736-249.6z","M583.264 616.544l-49.92 49.92 91.744 92.16h-361.824v71.264h361.376l-91.744 91.744 50.336 50.336 177.504-177.504z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["link-to-correcting"],"grid":0},"attrs":[{},{}],"properties":{"order":416,"id":74,"name":"link-to-correcting","prevSize":32,"code":59716},"setIdx":0,"setId":0,"iconIdx":76},{"icon":{"paths":["M405.333 716.8l81.067 81.067 281.6-285.867-285.867-285.867-76.8 81.067 145.067 149.333h-550.4v115.2h550.4l-145.067 145.067zM908.8 0h-793.6c-64 0-115.2 51.2-115.2 115.2v226.133h115.2v-226.133h797.867v797.867h-797.867v-230.4h-115.2v226.133c0 64 51.2 115.2 115.2 115.2h797.867c64 0 115.2-51.2 115.2-115.2v-793.6c-4.267-64-55.467-115.2-119.467-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["logout"],"grid":0},"attrs":[{}],"properties":{"order":354,"id":75,"name":"logout","prevSize":32,"code":59763},"setIdx":0,"setId":0,"iconIdx":77},{"icon":{"paths":["M529.067 465.067c0-17.067 12.8-29.867 29.867-29.867s29.867 12.8 29.867 29.867c0 17.067-12.8 29.867-29.867 29.867s-29.867-12.8-29.867-29.867zM614.4 635.733c21.333 0 38.4-17.067 38.4-38.4s-17.067-38.4-38.4-38.4c-21.333 0-38.4 17.067-38.4 38.4 0 17.067 17.067 38.4 38.4 38.4zM473.6 345.6c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6-25.6 12.8-25.6 25.6c0 17.067 12.8 25.6 25.6 25.6zM802.133 657.067v4.267c-4.267 157.867-132.267 285.867-290.133 285.867s-285.867-128-290.133-285.867v-4.267h580.267zM584.533 721.067c0-17.067-12.8-29.867-29.867-29.867s-29.867 12.8-29.867 29.867 12.8 29.867 29.867 29.867c17.067 0 29.867-12.8 29.867-29.867zM401.067 695.467c-25.6 0-46.933 21.333-46.933 46.933s21.333 46.933 46.933 46.933c25.6 0 46.933-21.333 46.933-46.933s-21.333-46.933-46.933-46.933zM456.533 605.867c25.6 0 46.933-21.333 46.933-46.933s-21.333-46.933-46.933-46.933c-25.6 0-46.933 21.333-46.933 46.933s21.333 46.933 46.933 46.933zM878.933 657.067c0 200.533-162.133 366.933-366.933 366.933s-366.933-162.133-366.933-366.933c0-136.533 72.533-260.267 192-324.267v-187.733c-21.333-4.267-38.4-21.333-38.4-42.667v-59.733c0-25.6 21.333-42.667 42.667-42.667h332.8c25.6 0 42.667 21.333 42.667 42.667v55.467c0 21.333-17.067 42.667-38.4 42.667v192c123.733 68.267 200.533 192 200.533 324.267zM840.533 657.067c0-128-76.8-243.2-192-298.667h-4.267v-256h34.133c4.267 0 4.267-4.267 4.267-4.267v-55.467c0-4.267-4.267-4.267-4.267-4.267h-332.8c-4.267 0-8.533 4.267-8.533 4.267v55.467c0 4.267 4.267 4.267 4.267 4.267h34.133v256h-4.267c-115.2 51.2-192 170.667-192 298.667 0 179.2 145.067 328.533 328.533 328.533s332.8-145.067 332.8-328.533z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["mana"],"grid":0},"attrs":[{}],"properties":{"order":355,"id":76,"name":"mana","prevSize":32,"code":59728},"setIdx":0,"setId":0,"iconIdx":78},{"icon":{"paths":["M981.333 234.667v618.667c0 93.867-76.8 170.667-170.667 170.667h-311.467c-46.933 0-89.6-17.067-119.467-51.2l-337.067-341.333c0 0 55.467-51.2 55.467-55.467 8.533-8.533 21.333-12.8 34.133-12.8 8.533 0 17.067 4.267 25.6 8.533 0 0 183.467 106.667 183.467 106.667v-507.733c0-34.133 29.867-64 64-64s64 29.867 64 64v298.667h42.667v-405.333c0-34.133 29.867-64 64-64s64 29.867 64 64v405.333h42.667v-362.667c0-34.133 29.867-64 64-64s64 29.867 64 64v362.667h42.667v-234.667c0-34.133 29.867-64 64-64s64 29.867 64 64z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["mandatory"],"grid":0},"attrs":[{}],"properties":{"order":356,"id":77,"name":"mandatory","prevSize":32,"code":59729},"setIdx":0,"setId":0,"iconIdx":79},{"icon":{"paths":["M487.253 870.827c-9.387-20.907-18.347-40.96-27.733-61.013-1.28-2.133-3.413-5.12-5.547-5.973-39.68-13.653-80.213-23.467-122.88-14.080-21.333 4.693-40.107 15.36-54.613 32-2.56 2.987-4.267 8.107-4.267 12.373-0.427 15.36 0 30.72 0 46.080 0 5.973 0.427 9.387 6.4 12.8 29.013 16.64 41.387 49.067 31.573 80.213s-39.68 49.92-73.387 46.507c-29.867-2.987-55.467-29.013-58.88-59.307-3.413-32.427 14.933-61.867 46.080-72.533 7.253-2.56 8.96-5.973 9.387-12.8 4.693-65.707-15.787-125.013-50.347-179.2-30.293-47.787-62.72-93.867-93.013-141.653-38.827-61.44-68.693-126.72-82.347-198.827-16.213-83.627-7.68-162.133 43.947-232.107 43.52-59.307 103.68-93.013 174.080-108.8 104.107-23.467 202.667-5.973 296.533 42.667 23.467 12.373 46.080 27.307 68.267 42.24 52.053 34.987 108.8 54.613 171.947 54.187 28.587 0 56.32-5.12 81.493-19.2 11.52-6.4 21.76-14.933 32-23.040 8.96-7.253 11.947-16.213 9.813-29.013-5.973-35.413 21.333-69.973 58.453-75.947 36.267-5.973 71.68 19.2 78.507 56.747 6.827 35.413-16.64 71.68-52.053 80.213-20.907 5.12-40.107 0-58.027-11.52-20.053 18.773-42.24 34.56-53.76 61.013-12.373 29.013-29.013 55.893-40.96 84.907-18.347 43.52-12.8 85.333 15.36 123.733 3.84 5.547 7.68 7.68 14.080 4.693 4.693-2.133 9.387-3.413 14.080-4.693 16.213-4.267 25.173-10.24 25.6-31.147 0-35.413 34.133-61.867 71.253-60.16 35.413 1.707 63.147 32 63.147 68.693 0 36.267-29.013 66.133-64.427 67.413-16.64 0.427-32-3.84-44.8-14.507-5.547-4.693-9.387-3.84-14.933-1.707-12.373 5.12-24.32 9.813-37.12 13.227-8.96 2.56-15.36 7.253-20.907 14.933-51.2 71.253-73.387 151.467-72.533 238.933 0 2.987 0.853 6.4 2.987 8.533 11.947 13.653 24.32 26.88 36.693 40.107 20.48-14.080 39.253-18.347 59.733-12.373 32 9.387 50.773 41.387 43.947 74.667-6.4 31.147-38.4 53.76-69.12 49.493-34.56-5.12-58.453-33.28-55.467-67.413 0.853-8.96-1.28-14.933-7.68-20.48-6.827-5.973-13.227-11.947-18.773-18.773-10.24-12.373-22.187-15.787-38.4-14.933-55.040 3.84-110.507 5.973-163.84 23.467-21.76 7.253-42.24 16.64-59.733 32.427 9.387 22.613 18.347 45.227 27.733 66.987 1.28 2.56 5.973 4.267 9.387 5.12 31.147 7.68 52.053 33.707 52.053 64.853s-20.907 57.6-50.773 64.853c-30.293 7.253-61.44-7.253-75.093-35.413s-6.4-61.013 18.347-81.493c2.133-1.707 4.693-3.413 8.533-6.4zM573.013 226.133c0 0.853-0.853 2.133-0.853 2.987 0 29.013 0 58.027 0.853 87.040 0 3.413 2.56 7.68 5.12 9.387 19.627 15.36 39.68 30.293 60.16 44.8 6.827 5.12 14.507 8.533 21.333 12.8 0-31.573 0-62.293 0-93.013 0-2.133-1.707-4.693-3.413-5.973-27.307-19.2-55.040-38.4-83.2-58.027zM636.16 542.293c-8.107 14.080-16.213 28.587-23.893 42.24 39.253 28.587 76.8 55.893 113.92 82.773 4.267-29.867 8.533-58.88 12.8-87.467-33.707-12.373-67.84-24.747-102.827-37.547zM697.173 695.040c-37.973-26.88-74.24-52.48-110.933-78.080-2.133-1.28-5.547-1.707-7.68-0.853-17.493 7.68-34.987 15.36-50.347 22.613 17.067 23.467 33.707 46.080 50.347 69.12 1.28 1.707 5.12 2.56 7.253 2.133 35.84-4.693 71.68-9.387 110.933-14.933zM561.067 365.653c-11.52 19.2-23.467 39.253-35.84 60.16 32.427 21.333 63.573 41.813 95.573 62.72 12.8-22.187 23.893-41.813 34.133-60.587-31.573-21.333-62.293-41.813-93.867-62.72zM699.307 188.16c0 23.893 0 46.933 0 69.973 0 2.133 2.56 5.547 4.693 5.973 20.48 6.4 41.387 11.947 62.293 17.92 5.547 1.707 7.68-1.28 9.813-6.827 6.827-18.347 14.507-36.267 22.187-54.187 4.693-11.093 11.093-21.333 17.493-33.707-40.107 8.533-78.933 7.68-116.48 0.853zM433.493 116.48c-0.853 0.853-1.707 1.707-2.987 2.56 8.107 30.72 16.213 61.44 24.32 91.733 0.853 3.413 3.84 6.827 6.4 9.387 21.333 19.627 42.667 39.253 64 58.88 1.707 1.707 4.267 2.987 6.827 5.12 0-30.293 0-59.307 0-87.893 0-2.56-1.28-5.973-3.413-7.253-31.573-24.32-63.573-48.213-95.573-72.107zM656.213 506.88c32.427 11.52 63.573 23.040 93.867 33.707 14.507-29.44 27.307-56.32 40.96-84.053-31.573 1.28-62.72-3.413-92.587-12.8-2.133-0.427-6.4 1.28-7.253 2.987-11.52 19.2-22.187 38.827-34.56 60.16zM452.693 267.093c-12.8 20.48-25.173 40.107-37.973 60.587 26.027 23.893 52.053 47.787 78.933 72.107 12.8-21.76 24.747-41.813 37.12-61.867-26.453-23.893-52.053-47.36-78.080-70.827zM284.587 258.133c-9.387 15.787-19.2 32.853-28.587 50.347-1.28 2.133 0 6.827 1.707 8.96 11.947 14.080 24.32 28.16 37.12 41.387 10.667 11.093 21.76 20.907 33.28 32 12.373-19.627 23.893-38.4 35.84-57.173-26.453-25.6-52.48-50.347-78.933-75.52zM766.72 324.267c-22.187-5.12-43.947-9.813-64.427-14.507 0 29.013 0 58.453 0 87.467 0 2.133 2.133 5.547 3.84 6.4 28.587 10.24 57.6 14.933 87.467 12.373-6.4-15.36-14.080-29.867-18.347-44.8-4.693-15.36-5.973-31.147-8.96-46.507zM386.987 296.533c6.827-11.093 14.080-22.187 21.333-33.707 14.507-23.467 14.933-23.893-6.4-41.387s-43.52-34.56-65.707-52.053c-10.24 17.493-19.2 33.28-28.587 49.493 26.88 26.027 52.907 52.053 79.36 77.653zM472.32 435.627c-27.307-24.32-53.333-47.787-79.787-72.107-11.093 17.92-22.187 35.413-33.28 53.76 29.44 20.907 58.027 41.387 87.040 62.293 9.387-15.787 17.92-29.867 26.453-44.373zM475.307 754.347c21.333-11.52 42.24-22.613 64-34.133-13.227-22.613-31.573-41.813-52.053-59.307-1.28-1.28-4.267-1.707-5.547-1.28-18.347 8.107-36.693 16.213-55.040 24.32 17.067 24.32 32.853 47.36 48.213 69.973zM479.573 501.333c32.853 20.907 64.853 41.387 98.133 62.293 8.107-14.080 15.36-26.88 22.613-39.253-32.853-21.333-64.427-41.813-96.427-62.72-7.68 13.227-15.787 26.027-23.893 40.107zM393.387 543.147c32.427 22.613 63.147 44.373 94.293 65.707 1.707 1.28 4.693 1.28 6.827 0.853 15.36-6.827 30.72-13.653 47.787-21.333-32.853-20.907-64-40.96-95.147-60.587-1.707-1.28-4.693-0.853-6.827 0-15.36 5.12-30.293 10.24-46.507 15.36zM164.267 138.24c-0.853 0.853-1.707 1.28-2.56 2.133 15.787 48.213 37.12 93.44 66.133 136.96 10.24-17.493 19.627-34.133 29.867-52.053-31.147-29.44-62.293-58.027-93.013-87.040zM186.027 352.853c14.507 27.307 33.28 50.347 53.76 71.68 1.707 1.707 5.547 2.133 7.68 1.707 14.080-4.693 28.587-9.813 42.24-14.933-21.333-23.893-42.667-46.933-63.573-69.973-1.707-1.707-5.973-2.56-8.107-1.707-10.24 3.84-20.48 8.533-31.573 13.227zM401.067 498.347c-24.747-18.773-48.213-36.693-71.68-54.613-1.28-1.28-4.267-2.133-5.973-1.28-15.36 5.12-30.72 10.667-49.067 17.493 25.6 18.773 49.067 36.267 72.96 53.333 1.707 1.28 5.547 1.707 7.68 0.853 14.933-4.693 29.44-9.813 46.080-15.36zM449.28 630.187c-31.147-20.907-61.013-39.68-89.173-60.587-13.653-10.24-25.173-9.387-38.4-1.28 26.027 27.733 52.48 55.467 78.933 83.627 15.36-6.827 31.147-14.080 49.067-22.187zM657.493 238.507c0-19.2 0-35.413 0-52.053 0-6.827-2.133-9.387-8.533-12.373-23.467-10.667-46.080-22.187-69.12-33.707-2.56-1.28-4.693-2.133-8.107-3.84 0 11.093 0 20.48 0 30.293 0 2.56 1.28 5.973 3.413 7.253 26.88 21.333 53.76 42.24 82.347 64.427zM226.987 584.107c23.467 24.747 45.653 47.787 68.267 71.253 1.28 1.28 2.987 2.987 4.267 2.987 16.64 0 32.853 0 52.053 0-25.173-26.027-48.213-49.92-71.68-73.387-1.707-1.707-5.12-2.987-7.253-2.987-14.933 0-29.867 1.28-45.653 2.133zM74.24 366.080l-3.84 2.56c8.96 22.613 18.347 45.227 27.733 67.84 0.853 2.133 3.84 5.12 5.973 5.12 17.92 1.707 35.84 2.987 54.187 4.267-12.8-23.467-24.747-45.653-36.693-67.84-0.853-1.707-2.987-2.987-5.12-3.413-13.653-2.987-27.733-5.973-41.813-8.96zM264.107 776.96c15.787-8.107 32.427-17.067 50.773-26.027-10.667-15.36-21.333-31.573-32.427-46.933-1.28-2.133-4.267-4.267-6.4-4.693-14.080 0-28.16 0-42.667 0 10.667 26.88 21.333 52.907 31.147 78.080zM131.84 484.267c-0.427 0.853-1.28 2.133-1.707 2.987 17.067 17.92 34.133 36.267 51.2 54.187 1.28 1.28 3.413 2.987 5.547 2.987 16.64 0 33.707-0.853 52.053-1.707-16.213-18.347-30.293-34.56-44.8-50.773-1.707-1.707-3.84-3.413-6.4-3.413-18.773-1.707-37.547-2.987-56.32-4.267zM401.92 167.68c-6.827-25.6-12.8-49.493-19.2-73.387-0.427-1.707-1.28-3.84-2.56-4.267-17.067-6.827-34.56-13.227-52.053-19.627-0.427 0.853-1.28 2.133-1.707 2.987 4.693 16.64 9.387 33.28 14.507 49.92 0 1.28 1.28 2.56 2.56 3.413 19.2 13.227 38.4 26.88 58.88 40.96zM426.24 751.787c-12.8-17.067-25.173-33.28-37.547-49.92-0.853-1.28-2.56-2.987-4.267-2.987-17.92 0-35.84 0-54.613 0 8.533 15.36 16.213 29.013 23.893 42.667 1.28 2.133 3.84 4.267 6.4 4.693 21.333 2.133 42.24 3.84 65.707 5.973zM301.227 149.333c-34.133-19.2-68.693-33.28-108.373-39.68 29.44 27.307 57.173 52.48 85.76 78.933 7.68-12.8 14.933-25.6 22.613-39.253zM531.627 136.96c0-5.547-0.427-10.667 0-15.787 1.28-9.813-1.707-16.213-11.52-20.053-30.293-12.8-60.587-26.027-91.307-38.827-4.267-1.707-8.533-2.133-14.080-3.413 39.253 26.453 77.227 52.053 116.48 78.080zM67.84 323.84c11.52 2.56 22.187 4.693 31.147 6.4-6.4-39.68-12.8-78.933-19.2-115.627-8.96 33.707-13.653 70.4-12.373 109.227zM241.493 656.64c-23.893-23.040-47.36-46.080-71.253-68.267-2.133-2.133-6.4-1.707-12.373-2.987 12.373 18.347 24.32 32.427 32.853 49.067 10.667 21.333 25.6 29.867 50.773 22.187zM197.12 304.64c-15.36-26.453-29.867-51.627-45.227-78.507 1.707 32 6.4 61.44 17.92 90.027 9.813-4.267 18.347-7.68 27.733-11.52zM290.987 97.28c-2.56-9.387-5.12-18.347-7.68-26.88-0.853-2.133-3.84-4.693-5.547-4.693-19.627 0-38.827 1.28-57.6 7.253 23.467 8.107 46.507 16.213 71.253 24.747zM301.227 530.773c-20.48-16.64-40.96-32.853-61.44-49.067 13.227 16.213 27.733 31.147 41.387 46.933 6.827 7.68 12.373 7.68 20.053 2.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["net"],"grid":0},"attrs":[{}],"properties":{"order":357,"id":78,"name":"net","prevSize":32,"code":59730},"setIdx":0,"setId":0,"iconIdx":80},{"icon":{"paths":["M819.2 0h-622.933c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h622.933c55.467 0 102.4-46.933 102.4-102.4v-819.2c0-55.467-46.933-102.4-102.4-102.4zM358.4 785.067h-102.4v-102.4h503.467v102.4h-401.067zM256 580.267v-102.4h503.467v102.4h-503.467zM759.467 375.467h-503.467v-102.4h503.467v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["newalbaran"],"grid":0},"attrs":[{}],"properties":{"order":358,"id":79,"name":"newalbaran","prevSize":32,"code":59732},"setIdx":0,"setId":0,"iconIdx":81},{"icon":{"paths":["M512 0c-196.267 0-358.4 162.133-358.4 358.4 0 268.8 358.4 665.6 358.4 665.6s358.4-396.8 358.4-665.6c0-196.267-162.133-358.4-358.4-358.4zM512 486.4c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["niche"],"grid":0},"attrs":[{}],"properties":{"order":360,"id":80,"name":"niche","prevSize":32,"code":59733},"setIdx":0,"setId":0,"iconIdx":82},{"icon":{"paths":["M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z","M555.947 439.893h116.907c19.627 0 35.413 15.787 35.413 35.413s-15.787 35.413-35.413 35.413h-46.080l52.053 52.053c14.933 2.56 26.453 14.080 29.013 29.013l145.92 145.92c4.267-9.813 6.827-20.48 6.827-32v-355.413c0-20.48-8.107-40.533-22.613-54.613l-188.16-187.307c-14.933-14.933-34.56-23.040-55.467-23.040h-240.213c-42.24 0-76.373 33.707-77.653 75.52l279.467 279.040zM587.947 143.36l214.613 213.333h-175.36c-21.333 0-38.827-17.493-38.827-38.827v-174.507z","M353.707 783.36h313.6l-150.187-150.187h-58.027c-19.627 0-35.413-15.787-35.413-35.413 0-15.787 10.24-29.013 24.32-33.707l-171.52-171.52-0.427 313.173c0 43.093 34.987 77.653 77.653 77.653z","M627.2 861.013h-389.973c-21.333 0-38.827-17.493-38.827-38.827v-465.493c0-21.333-17.493-38.827-38.827-38.827s-38.827 17.493-38.827 38.827v504.32c0 42.667 34.987 77.653 78.080 77.653h428.373c21.333 0 38.827-17.493 38.827-38.827s-17.493-38.827-38.827-38.827z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["no036"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":361,"id":81,"name":"no036","prevSize":32,"code":59734},"setIdx":0,"setId":0,"iconIdx":83},{"icon":{"paths":["M957.013 1012.48l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52 10.24 0 20.053 3.84 27.733 11.52l945.493 945.067c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52zM346.88 231.253c17.493-10.24 37.12-15.36 56.747-20.053 63.573-14.507 128.427-16.213 193.28-10.667 34.56 2.987 69.12 8.107 102.4 19.627 13.227 4.693 26.027 11.52 37.973 18.773 7.68 4.693 8.107 8.533 0 13.227-11.947 7.253-24.747 14.080-37.973 18.773-35.84 12.8-73.387 17.92-110.933 20.48-20.053 1.28-40.107 1.707-60.587 2.56-45.653-1.28-90.88-5.12-135.253-17.067l55.893 55.893c29.867 3.413 59.733 4.693 90.027 4.693 70.827-0.427 140.373-7.68 207.36-37.12-1.28 19.627 2.56 38.827-2.987 57.6-0.853 3.413-4.267 6.4-7.253 8.533-13.227 9.813-28.16 15.36-43.947 20.053-37.12 11.093-75.52 16.213-113.92 18.773-18.773 1.28-37.12 1.707-55.893 1.28l43.947 43.947c61.013-2.133 120.747-11.947 179.2-36.267 0 15.36 0 31.147 0 46.933-18.347 1.28-36.267 2.56-54.187 4.693-31.147 3.413-62.293 8.107-91.733 18.347l36.267 36.267c54.187-12.8 109.227-15.36 164.693-13.227 40.96 1.707 81.92 5.973 121.6 17.067 16.64 4.693 33.28 10.24 47.787 20.053 11.093 7.68 11.093 10.667 0 17.92-18.773 12.8-40.107 18.773-61.867 24.32-45.227 10.667-90.88 14.507-147.627 14.507-14.080 0-29.44-0.427-45.653-1.707l46.080 46.080c4.267 0 8.107 0 12.373 0 70.4-0.427 139.52-7.253 205.653-36.267 0 17.067 0 33.707 0 50.347 0 6.827-4.267 11.52-9.813 15.36-16.64 11.52-35.84 17.493-55.040 22.613-28.587 7.253-57.6 11.52-86.613 14.080l40.533 40.533c37.973-5.12 75.52-14.507 111.787-31.147 0 18.773 0.427 37.12-0.427 55.467 0 2.987-2.987 7.253-5.547 9.387-8.96 5.973-18.347 11.52-28.16 15.787-6.827 2.987-14.080 5.12-21.333 7.253l34.987 34.987c14.080-5.547 27.733-12.373 40.107-21.76 16.213-12.373 24.747-28.587 24.747-49.92-0.427-70.4 0-141.227 0-211.627 0-18.773-6.4-35.413-21.76-46.507-11.947-8.96-25.173-16.64-38.827-22.613-39.253-16.213-80.64-23.040-122.453-26.88-16.64-1.707-32.853-2.133-50.347-3.413 0-2.987 0-5.973 0-8.533 0-65.707-0.427-131.413 0-197.12 0-18.347-6.827-33.28-19.627-45.227-8.533-8.107-18.773-14.507-29.44-20.053-30.72-15.36-64.427-23.040-98.133-28.16-69.12-10.667-138.667-11.093-208.213-1.28-33.28 4.693-65.707 11.947-96.427 25.6-8.533 3.84-16.64 8.107-23.893 13.227l32.427 31.573zM754.773 870.4c-3.413 0-6.827 0-10.24-0.427-48.64-1.707-96.427-7.253-142.933-23.040-12.8-4.267-25.6-10.24-37.973-16.64-20.48-11.093-28.587-20.907-37.12-41.387-20.48-1.28-40.96-2.133-61.013-4.267-20.48-2.133-40.533-5.973-61.013-9.387-4.267-0.853-7.253 0-10.24 2.133-54.187 40.533-114.773 56.747-181.76 48.64-96-11.093-178.773-83.627-203.947-177.92-37.547-141.227 52.907-282.027 197.12-306.773 5.973-0.853 11.52-1.707 17.493-2.133l45.227 45.227c-7.68-0.853-15.787-1.28-23.893-1.28-110.507 0-200.107 90.027-200.107 200.533 0 110.933 89.6 200.96 200.533 200.96 110.507 0.427 200.96-90.027 200.96-200.533 0-8.107-0.427-15.787-1.28-23.467l43.947 43.947c-0.427 8.533-0.853 17.067-1.28 25.6 8.96 0 17.92 0 26.88 0l112.64 112.64c-19.2-4.693-37.973-10.667-56.32-18.347 0 13.653 1.28 26.453-0.427 39.253-2.133 17.067 6.4 25.6 20.053 31.573 2.987 1.28 5.547 2.987 8.533 3.84 25.173 10.667 51.627 16.64 78.507 20.48 9.813 1.28 20.053 2.56 29.867 3.84l47.787 46.933zM524.373 675.84c-15.787-0.853-30.72-1.28-45.653-2.56-4.267-0.427-5.547 0.853-7.68 4.267-9.387 17.067-19.2 34.133-28.587 50.773-1.28 2.56-3.413 4.693-6.4 8.96 30.293 2.56 59.307 5.12 88.32 7.68 0-23.893 0-46.080 0-69.12zM184.32 525.653c26.027-37.973 73.387-53.333 116.907-38.4 4.693 1.707 9.387 2.56 14.080 2.133 10.24-1.28 17.493-9.387 18.347-19.2 1.28-10.667-4.267-19.627-15.36-23.893-69.547-27.307-151.893 5.973-183.040 74.24-3.84 8.107-7.253 12.373-17.067 11.947-11.093-0.853-19.627 8.533-20.907 19.2-0.853 11.52 5.547 20.907 16.64 23.893 2.133 0.427 4.267 0.853 6.827 1.28 0 5.973 0 11.52 0 17.493-1.707 0.427-2.987 0.427-4.693 0.853-12.373 2.133-20.053 11.52-19.2 23.893 0.853 11.093 9.813 19.627 21.76 20.053 2.56 0 5.12 0.427 7.68 0 4.267-0.427 6.4 0.853 8.107 5.12 9.813 22.187 24.747 40.96 43.947 55.040 43.093 31.573 89.6 37.973 139.947 20.48 7.68-2.56 12.8-7.68 14.507-15.787 2.133-8.533 0-16.213-6.827-22.187-7.253-6.4-15.36-6.827-24.32-3.84-43.093 13.653-79.787 3.84-110.933-28.587-2.987-2.987-5.12-6.4-8.533-11.093 3.84 0 6.4 0 8.533 0 30.72 0 61.013 0 91.733 0 11.093 0 19.2-5.547 22.187-14.507 5.12-14.933-5.547-29.867-22.187-29.867-36.267 0-72.107 0-108.373 0-2.56 0-5.12 0-8.107 0 0-6.4 0-12.373 0-18.347 3.413 0 5.973 0 8.96 0 39.253 0 78.507 0 117.76 0 11.947 0 20.907-6.827 23.040-17.067 3.413-14.080-7.253-27.307-22.187-27.307-35.84 0-71.253 0-107.093 0-2.133 0-4.267 0-7.253 0 2.987-1.707 3.84-3.413 5.12-5.547z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["noPayMethod"],"grid":0},"attrs":[{}],"properties":{"order":362,"id":82,"name":"noPayMethod","prevSize":32,"code":59736},"setIdx":0,"setId":0,"iconIdx":84},{"icon":{"paths":["M614.4 0h-413.867c-59.733 0-106.667 46.933-106.667 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h627.2c55.467 0 102.4-46.933 102.4-102.4v-614.4l-311.467-307.2zM563.2 358.4v-281.6l290.133 281.6h-290.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["notes"],"grid":0},"attrs":[{}],"properties":{"order":363,"id":83,"name":"notes","prevSize":32,"code":59737},"setIdx":0,"setId":0,"iconIdx":85},{"icon":{"paths":["M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z","M873.387 757.333c40.107-32.427 65.28-81.92 65.28-138.667 0-92.587-71.253-170.667-163.413-177.92-24.747-120.747-131.413-213.333-263.253-213.333-48.64 0-94.293 12.8-133.547 34.987l494.933 494.933z","M256.853 372.907c-98.133 20.907-171.52 106.24-171.52 210.347 0 117.333 96 213.333 213.333 213.333h381.867l-423.68-423.68z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["noweb"],"grid":0},"attrs":[{},{},{}],"properties":{"order":364,"id":84,"name":"noweb","prevSize":32,"code":59738},"setIdx":0,"setId":0,"iconIdx":86},{"icon":{"paths":["M721.067 418.133c-166.4 0-298.667 136.533-298.667 302.933s132.267 302.933 298.667 302.933 298.667-136.533 298.667-302.933c0-170.667-132.267-302.933-298.667-302.933zM773.12 672.427v28.16h-166.4c-0.853 6.4-1.707 13.227-1.707 20.48 0 6.827 0.427 14.080 1.707 20.48h166.4v28.16h-159.147c9.387 26.027 25.6 46.933 48.64 62.72s49.92 23.467 80.213 23.467c39.68 0 72.533-14.080 99.413-42.24l32 31.573c-15.787 17.92-34.987 32-58.453 40.96-23.040 9.387-48.213 14.080-75.947 14.080-29.013 0-55.893-5.547-80.64-16.213s-45.653-26.027-62.72-46.080c-17.067-19.627-29.013-42.667-36.267-68.693h-56.747v-28.16h52.053c-0.853-8.533-0.853-15.36-0.853-20.48s0.427-11.947 0.853-20.48h-52.053v-28.16h57.173c6.827-26.027 19.2-49.067 36.267-68.693s37.973-34.987 62.72-46.080c24.747-10.667 51.627-16.213 80.64-16.213 27.733 0 53.333 4.693 75.947 14.080 23.040 9.387 42.24 23.040 58.027 40.533l-32 31.573c-26.453-27.733-59.733-41.813-99.413-41.813-30.293 0-57.173 7.68-80.213 23.467s-39.253 36.693-48.64 62.72h159.147z","M874.667 149.333c-98.133-98.133-226.133-149.333-362.667-149.333 0 0 0 0-4.267 0-136.533 0-260.267 55.467-358.4 149.333-98.133 98.133-149.333 226.133-149.333 362.667 0 281.6 230.4 512 512 512 8.533 0 12.8 0 21.333 0-21.333-12.8-42.667-29.867-59.733-46.933-68.267-21.333-132.267-98.133-166.4-204.8 21.333-4.267 42.667-8.533 59.733-12.8 0-12.8-4.267-25.6-4.267-38.4-21.333 0-46.933 4.267-68.267 8.533-17.067-59.733-25.6-128-29.867-196.267h153.6c8.533-12.8 17.067-29.867 29.867-42.667h-183.467c0-81.067 12.8-153.6 34.133-221.867 59.733 12.8 123.733 21.333 187.733 21.333v153.6c12.8-12.8 25.6-21.333 42.667-29.867v-119.467c68.267 0 132.267-12.8 192-25.6 8.533 29.867 17.067 64 25.6 93.867 12.8 0 29.867 4.267 42.667 4.267-8.533-38.4-17.067-76.8-25.6-110.933 42.667-12.8 81.067-25.6 110.933-42.667 59.733 72.533 98.133 166.4 106.667 260.267 17.067 17.067 29.867 38.4 42.667 55.467 0-4.267 0-12.8 0-17.067 0-136.533-55.467-264.533-149.333-362.667zM145.067 217.6c34.133 17.067 72.533 29.867 115.2 38.4-21.333 68.267-34.133 149.333-38.4 230.4h-179.2c4.267-93.867 38.4-187.733 102.4-268.8zM132.267 789.333c-51.2-72.533-85.333-162.133-89.6-256h179.2c0 76.8 12.8 145.067 29.867 209.067-42.667 12.8-85.333 29.867-119.467 46.933zM268.8 780.8c21.333 76.8 59.733 136.533 102.4 179.2-81.067-25.6-153.6-72.533-209.067-136.533 29.867-17.067 68.267-29.867 106.667-42.667zM273.067 221.867c-34.133-12.8-68.267-21.333-98.133-34.133 0-4.267 4.267-4.267 4.267-8.533 55.467-55.467 119.467-93.867 192-115.2-25.6 21.333-46.933 55.467-68.267 89.6-8.533 21.333-21.333 42.667-29.867 68.267zM490.667 251.733h-4.267c-55.467 0-115.2-8.533-174.933-21.333 12.8-21.333 21.333-38.4 29.867-55.467 42.667-76.8 93.867-119.467 149.333-132.267v209.067zM529.067 251.733v-209.067c59.733 8.533 110.933 55.467 153.6 132.267 8.533 17.067 17.067 34.133 25.6 51.2-55.467 12.8-115.2 21.333-179.2 25.6zM746.667 217.6c-8.533-21.333-17.067-42.667-29.867-59.733-21.333-38.4-42.667-68.267-68.267-89.6 76.8 17.067 140.8 55.467 196.267 110.933-25.6 12.8-59.733 25.6-98.133 38.4z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["onlinepayment-01"],"grid":0},"attrs":[{},{}],"properties":{"order":366,"id":85,"name":"onlinepayment","prevSize":32,"code":59739},"setIdx":0,"setId":0,"iconIdx":87},{"icon":{"paths":["M512 379.733l-448-204.8 448-174.933 448 174.933-448 204.8zM46.933 204.8l448 204.8v614.4l-448-238.933v-580.267zM977.067 785.067l-448 238.933v-614.4l448-204.8v580.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["package"],"grid":0},"attrs":[{}],"properties":{"order":367,"id":86,"name":"package","prevSize":32,"code":59740},"setIdx":0,"setId":0,"iconIdx":88},{"icon":{"paths":["M790.187 460.373c17.493 1.28 34.133 2.133 50.347 3.413 41.813 3.84 83.627 10.667 122.453 26.88 13.653 5.547 26.88 13.653 38.827 22.613 15.36 11.093 21.76 27.733 21.76 46.507 0 70.4-0.427 141.227 0 211.627 0 21.333-8.107 37.12-24.747 49.92-20.907 15.787-44.8 24.32-69.973 31.147-60.587 16.213-122.453 20.053-185.173 17.92-48.64-1.707-96.427-7.253-142.933-23.040-12.8-4.267-25.6-10.24-37.973-16.64-20.48-11.093-28.587-20.907-37.12-41.387-20.48-1.28-40.96-2.133-61.013-4.267-20.48-2.133-40.533-5.973-61.013-9.387-4.267-0.853-7.253 0-10.24 2.133-54.187 40.533-114.773 56.747-181.76 48.64-95.147-11.52-177.92-84.053-203.093-178.347-37.547-141.227 52.907-282.027 197.12-306.773 27.307-4.693 54.613-3.84 82.347 0.853 0-2.133 0.427-3.84 0.427-5.547-0.853-29.867-1.707-59.733-2.56-90.027-0.427-14.080 5.12-26.027 14.933-36.267 10.667-11.093 23.893-18.773 37.973-25.173 30.72-13.653 63.147-20.907 96.427-25.6 69.547-9.813 138.667-9.387 208.213 1.28 33.707 5.12 67.413 12.373 98.133 28.16 10.667 5.12 20.907 11.947 29.44 20.053 12.8 11.947 19.627 26.88 19.627 45.227-0.427 65.707 0 131.413 0 197.12-0.427 2.987-0.427 5.547-0.427 8.96zM44.373 583.68c0 110.933 89.6 200.96 200.533 200.96 110.507 0.427 200.96-90.027 200.96-200.533 0-110.933-90.027-200.96-200.96-200.96-110.507-0-200.533 90.027-200.533 200.533zM527.787 293.973c20.053-0.853 40.107-1.28 60.587-2.56 37.547-2.987 75.093-8.107 110.933-20.48 13.227-4.693 26.027-11.52 37.973-18.773 7.68-4.693 7.68-8.533 0-13.227-12.373-7.253-24.747-14.080-37.973-18.773-32.853-11.947-67.413-16.64-102.4-19.627-64.853-5.547-129.28-3.413-193.28 10.667-22.187 5.12-44.373 11.52-64 24.32-11.947 8.107-12.373 12.8 0.427 19.627 14.080 7.68 29.013 14.507 43.947 19.2 46.933 14.507 95.147 18.347 143.787 19.627zM760.32 600.32c56.747 0 102.4-3.84 147.627-14.507 21.76-5.12 43.093-11.52 61.867-24.32 11.093-7.253 11.093-10.667 0-17.92-14.507-9.813-31.147-15.36-47.787-20.053-39.68-11.093-80.213-15.787-121.6-17.067-55.467-2.133-110.933 0.427-165.12 13.653-19.627 4.693-38.827 10.667-56.32 20.907-16.213 9.813-16.213 14.507 0 23.467 11.947 6.4 24.747 12.373 37.973 16.213 49.92 15.36 101.547 19.627 143.36 19.627zM979.2 720.213c-65.707 30.293-134.827 36.693-204.8 37.12s-139.093-5.973-204.373-33.28c0 13.653 1.28 26.453-0.427 39.253-2.133 17.067 6.4 25.6 20.053 31.573 2.987 1.28 5.547 2.987 8.533 3.84 25.173 10.667 51.627 16.64 78.507 20.48 54.187 8.107 108.8 8.96 163.413 3.84 35.84-3.413 71.253-9.387 104.533-22.613 9.813-3.84 19.2-9.813 28.16-15.787 2.987-1.707 5.547-5.973 5.547-9.387 1.28-17.92 0.853-36.267 0.853-55.040zM978.773 608.427c-66.133 29.013-135.253 36.267-205.653 36.267-69.973 0.427-139.52-6.4-204.8-34.133 0 17.067 0.427 34.133 0 51.2 0 6.827 2.133 11.52 8.107 14.507 14.507 6.4 28.587 13.653 43.947 18.347 44.373 13.653 90.453 17.92 136.533 18.773 52.907 0.853 105.813-2.56 157.44-16.213 19.2-5.12 38.4-11.093 55.040-22.613 5.547-3.84 9.813-8.533 9.813-15.36-0-17.067-0.427-33.707-0.427-50.773zM745.813 299.947c-66.987 29.44-136.533 36.693-207.36 37.12-70.4 0.427-140.373-6.4-205.653-33.707 0 16.213 0 32.427 0 48.64 0 1.707 2.56 3.84 4.693 4.693 16.213 9.387 33.28 17.92 49.067 27.733 6.827 4.267 13.653 7.68 21.333 8.96 55.893 11.947 112.213 14.507 169.387 11.093 38.827-2.133 76.8-7.253 113.92-18.773 15.36-4.693 30.72-10.24 43.947-20.053 2.987-2.133 5.973-5.12 7.253-8.533 5.973-18.347 2.133-37.547 3.413-57.173zM745.387 413.44c-96 40.533-195.84 40.96-297.813 32.427 14.507 21.76 25.173 43.947 32.427 67.84 0.427 1.28 3.413 2.987 5.12 2.987 15.36 0.853 31.147 1.28 46.507 1.707 2.133 0 4.693-1.28 6.827-2.56 11.52-7.253 22.187-16.213 34.133-21.76 37.547-17.92 78.080-24.747 118.613-29.013 17.92-2.133 35.84-2.987 54.187-4.693 0-15.36 0-31.147 0-46.933zM524.373 745.387c0-24.32 0-46.933 0-69.547-15.787-0.853-30.72-1.28-45.653-2.56-4.267-0.427-5.547 0.853-7.68 4.267-9.387 17.067-19.2 34.133-28.587 50.773-1.28 2.56-3.413 4.693-6.4 8.96 30.293 2.987 58.88 5.547 88.32 8.107zM486.827 630.187c11.947 0 23.893 0 35.413 0 0-22.187 0-44.373 0-67.413-11.52 0-22.187 0-31.573 0-1.28 22.187-2.56 43.947-3.84 67.413z","M189.013 532.48c2.987 0 5.12 0 7.253 0 35.84 0 71.253 0 107.093 0 15.36 0 25.6 13.227 22.187 27.307-2.56 10.24-11.52 17.067-23.040 17.067-39.253 0-78.507 0-117.76 0-2.56 0-5.547 0-8.96 0 0 5.973 0 11.947 0 18.347 2.987 0 5.547 0 8.107 0 36.267 0 72.107 0 108.373 0 16.64 0 27.733 14.507 22.187 29.867-3.413 9.387-11.093 14.507-22.187 14.507-30.72 0-61.013 0-91.733 0-2.133 0-4.693 0-8.533 0 3.413 4.267 5.547 8.107 8.533 11.093 31.147 32 68.267 42.24 110.933 28.587 8.96-2.987 17.067-2.56 24.32 3.84 6.4 5.973 8.533 13.227 6.827 22.187-1.707 7.68-6.827 12.8-14.507 15.787-50.347 17.493-96.853 10.667-139.947-20.48-19.627-14.507-34.133-32.853-43.947-55.040-1.707-4.267-3.84-5.547-8.107-5.12-2.56 0.427-5.12 0-7.68 0-11.947-0.427-20.907-8.96-21.76-20.053-0.853-12.373 6.827-21.76 19.2-23.893 1.28-0.427 2.987-0.427 4.693-0.853 0-5.973 0-11.52 0-17.493-2.56-0.427-4.693-0.853-6.827-1.28-11.093-2.987-17.493-12.373-16.64-23.893 0.853-10.667 9.813-20.053 20.907-19.2 9.813 0.853 13.227-3.413 17.067-11.947 31.573-68.267 113.493-101.547 183.040-74.24 10.667 4.267 16.213 13.227 15.36 23.893-1.28 9.813-8.533 17.92-18.347 19.2-4.693 0.427-9.813-0.427-14.080-2.133-43.52-14.933-90.88 0.427-116.907 38.4-2.56 0.853-3.413 2.56-5.12 5.547z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["payment"],"grid":0},"attrs":[{},{}],"properties":{"order":368,"id":87,"name":"payment","prevSize":32,"code":59741},"setIdx":0,"setId":0,"iconIdx":89},{"icon":{"paths":["M512 0c-230.4 0-418.133 187.733-418.133 418.133v324.267c0 76.8 64 140.8 140.8 140.8h140.8v-371.2h-187.733v-93.867c0-179.2 145.067-324.267 324.267-324.267s324.267 145.067 324.267 324.267v93.867h-187.733v371.2h187.733v46.933h-324.267v93.867h277.333c76.8 0 140.8-64 140.8-140.8v-465.067c0-230.4-187.733-418.133-418.133-418.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["pbx"],"grid":0},"attrs":[{}],"properties":{"order":370,"id":88,"name":"pbx","prevSize":32,"code":59742},"setIdx":0,"setId":0,"iconIdx":90},{"icon":{"paths":["M1024 388.267c-4.267-46.933-25.6-81.067-55.467-110.933-34.133-29.867-72.533-42.667-110.933-38.4 0 0-4.267 0-4.267 0 0-8.533 0-17.067-4.267-29.867-8.533-51.2-29.867-98.133-68.267-128-25.6-21.333-51.2-34.133-72.533-38.4-29.867-4.267-59.733 0-76.8 4.267-42.667 8.533-81.067 34.133-110.933 72.533-21.333-25.6-42.667-46.933-68.267-64-64-38.4-140.8-29.867-196.267 21.333-25.6 21.333-42.667 46.933-51.2 81.067-12.8 29.867-17.067 59.733-17.067 93.867-8.533 0-17.067 0-25.6 0-42.667 0-81.067 17.067-110.933 46.933-29.867 34.133-42.667 76.8-46.933 98.133-4.267 12.8-4.267 25.6-4.267 42.667 4.267 55.467 25.6 110.933 59.733 157.867 29.867 38.4 68.267 64 110.933 76.8-4.267 12.8-8.533 21.333-8.533 34.133 0 4.267-4.267 8.533-4.267 17.067-12.8 42.667-25.6 98.133 4.267 162.133 29.867 59.733 89.6 102.4 157.867 106.667 4.267 0 12.8 0 17.067 0 46.933 0 85.333-17.067 119.467-29.867 4.267 0 8.533-4.267 12.8-4.267 17.067-4.267 34.133-12.8 51.2-12.8 8.533 0 17.067 4.267 34.133 12.8s42.667 21.333 68.267 25.6c29.867 4.267 64 4.267 93.867 0 38.4-8.533 68.267-21.333 89.6-38.4 59.733-46.933 68.267-128 51.2-187.733-8.533-25.6-21.333-55.467-34.133-85.333 29.867-4.267 55.467-12.8 76.8-29.867 81.067-51.2 110.933-128 119.467-187.733 4.267-12.8 4.267-51.2 4.267-68.267zM541.867 285.867c4.267-42.667 21.333-81.067 42.667-115.2 34.133-42.667 93.867-68.267 136.533-25.6 0 0 0 0 0 0 21.333 21.333 34.133 51.2 34.133 81.067 4.267 38.4 0 72.533-17.067 106.667-17.067 38.4-38.4 68.267-76.8 89.6-46.933 25.6-102.4 8.533-119.467-42.667-4.267-29.867-4.267-68.267 0-93.867zM277.333 183.467c8.533-17.067 17.067-34.133 34.133-46.933 29.867-29.867 64-34.133 102.4-8.533 51.2 29.867 81.067 85.333 85.333 145.067 4.267 51.2-12.8 115.2-64 145.067-17.067 4.267-34.133 8.533-51.2 4.267-21.333-4.267-38.4-17.067-51.2-29.867-55.467-46.933-76.8-140.8-55.467-209.067zM123.733 546.133c-34.133-46.933-55.467-110.933-34.133-170.667 12.8-25.6 34.133-42.667 64-46.933 25.6-4.267 51.2 8.533 72.533 25.6 8.533 4.267 12.8 12.8 17.067 17.067 17.067 21.333 29.867 46.933 34.133 72.533 8.533 29.867 12.8 59.733 8.533 85.333-4.267 34.133-29.867 64-64 68.267-38.4 4.267-76.8-21.333-98.133-51.2zM755.2 883.2c-29.867 25.6-81.067 29.867-115.2 21.333-42.667-8.533-72.533-38.4-115.2-42.667-29.867 0-55.467 8.533-85.333 17.067-38.4 12.8-76.8 34.133-115.2 29.867-25.6 0-55.467-12.8-72.533-34.133-42.667-42.667-29.867-110.933-8.533-162.133 17.067-55.467 55.467-102.4 98.133-140.8 17.067-17.067 38.4-34.133 64-42.667 25.6-12.8 55.467-17.067 85.333-17.067 34.133 0 68.267 0 98.133 12.8s55.467 29.867 72.533 55.467c21.333 25.6 42.667 51.2 59.733 81.067 17.067 25.6 34.133 55.467 46.933 85.333 17.067 34.133 21.333 76.8 4.267 110.933 0 12.8-8.533 21.333-17.067 25.6zM942.933 443.733c-8.533 55.467-34.133 106.667-81.067 136.533-17.067 12.8-38.4 17.067-64 17.067-42.667 0-72.533-34.133-81.067-72.533-17.067-76.8 59.733-200.533 140.8-204.8 21.333 0 38.4 4.267 51.2 21.333 21.333 17.067 29.867 42.667 34.133 68.267-0-4.267 4.267 8.533-0 34.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["pets"],"grid":0},"attrs":[{}],"properties":{"order":371,"id":89,"name":"pets","prevSize":32,"code":59743},"setIdx":0,"setId":0,"iconIdx":91},{"icon":{"paths":["M910.080 113.92v796.576h-796.16v-796.576h796.16zM910.080 0h-796.16c-62.72 0-113.92 51.2-113.92 113.92v796.576c0 62.304 51.2 113.504 113.92 113.504h796.576c62.72 0 113.92-51.2 113.92-113.92v-796.16c-0.416-62.72-51.616-113.92-114.336-113.92zM633.6 503.904l-170.656 220.16-121.6-147.2-170.656 219.744h682.656c0 0-219.744-292.704-219.744-292.704z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["photo"],"grid":0},"attrs":[{}],"properties":{"order":372,"id":90,"name":"photo","prevSize":32,"code":59744},"setIdx":0,"setId":0,"iconIdx":92},{"icon":{"paths":["M826.88 229.547l3.413-0.853c17.92-2.987 36.693-6.4 55.040-9.813 21.76-4.267 49.493-9.813 77.227-18.773 22.187-6.827 42.667-20.053 58.453-31.147l2.987-2.987-2.133-3.413c-0.853-1.28-1.28-2.133-2.133-2.133-24.32-25.173-54.187-54.187-87.893-77.227-60.16-40.96-119.467-60.587-180.907-59.307-67.413 1.28-125.867 27.733-175.36 78.080-26.453 27.307-47.36 59.733-60.587 96.853l-2.987 6.827-2.987-6.827c-4.693-14.507-11.947-29.44-20.907-44.373-27.307-47.787-64.853-83.2-111.36-105.387-62.72-29.867-129.28-33.28-199.68-8.96-35.413 12.373-69.547 31.147-103.68 58.453-27.307 20.907-50.347 42.24-70.4 66.133l-2.987 2.56 3.413 2.133c31.147 20.907 40.533 27.307 80.213 37.547 36.267 9.813 72.96 16.213 109.227 21.76 10.24 2.133 21.76 3.413 32 5.547 35.413 6.4 77.227 14.080 116.907 25.173h2.133v5.547h-2.987c-17.92-2.133-36.267-2.133-55.893 0-65.28 6.4-120.32 32-163.413 75.947-27.307 27.733-46.507 60.587-59.733 101.12s-17.493 86.187-12.373 139.093c2.987 32.853 9.813 64 20.053 101.12 0.853 2.133 1.28 4.693 4.693 5.547h1.28l1.28-0.853c11.947-5.547 25.173-11.947 36.693-19.627 25.173-16.213 45.227-38.4 62.72-57.173 17.92-20.053 36.267-40.96 53.76-61.44l25.6-29.867 0.853 5.547c0.853 4.693 1.28 8.96 2.133 14.080l26.453 188.587c9.813 64 20.053 128 30.72 188.16 2.987 17.493 11.093 31.147 25.6 43.093 14.080 11.093 30.72 19.627 54.187 26.453 36.693 11.093 77.227 16.213 123.307 15.36 34.987-0.853 64.853-4.267 92.587-10.24 20.907-4.693 45.227-12.373 67.413-27.733 17.493-12.373 26.453-25.173 28.587-40.96 3.413-20.053 6.4-40.96 8.96-61.44 2.133-12.373 3.413-25.6 5.547-38.4 4.267-26.453 7.68-53.76 11.947-80.213l13.227-89.6c5.547-38.4 11.093-77.227 17.493-115.627 0-2.133 0.853-3.413 0.853-5.547 0-1.28 0.853-3.413 0.853-4.693l0.853-5.547 32.853 38.4c24.32 28.587 49.92 58.453 77.227 85.76 18.773 17.92 40.533 32.853 69.547 46.080l2.133 0.853 3.413-2.987v-1.28c8.96-32.853 19.627-76.373 22.187-122.453 2.133-43.093-2.133-81.493-13.227-117.76-12.373-41.387-32.853-76.8-61.013-105.387-36.267-36.693-82.773-61.44-136.96-71.68-22.187-4.267-46.080-5.547-70.4-4.267-3.413 0-6.4 0.853-9.813 0.853l-0.853-4.693c18.773-4.693 36.693-8.96 50.773-12.373 31.147-8.533 63.147-14.080 93.867-19.627zM487.253 423.68v0 0c0.853 0 68.267 12.373 85.76-27.733 6.827-9.813 15.36-14.507 24.32-15.36v0h0.853c2.133 0 3.413 0.853 5.547 1.28 19.627 4.693 35.413 15.36 48.213 23.467 14.080 9.813 38.4 29.867 49.493 41.813l2.133 2.987-2.987 1.28c-11.947 6.4-24.32 10.24-35.413 14.080-28.587 8.533-59.733 14.080-98.133 17.493-17.92 1.28-36.267 2.133-55.893 2.133-15.36 0-30.72-0.853-46.507-1.28-49.493-2.987-89.173-9.813-124.587-22.187-6.4-2.133-13.227-4.693-19.627-8.533l-2.987-1.28 2.133-2.987c7.68-8.533 16.64-16.213 26.453-24.32 17.92-15.36 38.4-30.72 62.72-39.68 4.693-2.133 11.947-4.267 19.627-5.547 7.68 0 19.627 5.547 34.133 29.44 3.413 8.107 12.373 13.653 24.747 14.933zM211.627 174.933l-25.6-4.267c-28.587-4.693-58.027-9.387-87.040-17.067l-5.12-1.28 4.267-3.413c1.28-0.853 2.987-2.133 4.267-2.987l3.413-2.987c31.147-24.32 62.72-41.813 95.573-52.053 17.493-5.547 34.987-8.96 52.053-9.813 57.173-4.267 107.093 15.36 150.187 57.173 29.867 29.44 49.92 65.28 60.587 108.8l1.28 6.827-5.547-4.267c-35.413-25.173-75.093-37.547-113.493-48.213-44.373-11.093-90.453-18.773-134.827-26.453zM196.267 497.92l-5.547 6.4c-5.547 6.827-11.947 14.080-17.493 20.053-20.053 23.467-40.533 47.36-61.867 68.267l-3.413 3.413-1.28-4.693c-0.853-2.987-0.853-5.547-1.28-8.533l-0.853-4.693c-4.693-38.4-2.987-75.093 6.4-110.080 20.053-78.507 84.053-135.253 166.4-146.347 34.987-4.693 69.12-2.133 101.547 8.96l6.827 2.133-6.4 2.987c-31.147 14.080-57.173 34.133-77.227 52.053-38.827 33.707-72.96 72.533-105.813 110.080zM709.973 516.267v0c-1.28 8.96-2.987 17.92-3.413 26.453l-23.467 159.573c-4.693 29.867-8.96 59.733-13.227 90.453l-2.987 19.627c-4.267 29.867-8.96 59.307-12.373 88.32-0.853 6.827-4.267 11.947-10.24 15.36-14.080 8.533-29.867 14.507-52.053 18.773-17.493 3.413-36.267 5.547-60.587 6.827-6.827 0.853-14.080 0.853-20.907 0.853-33.28 0-66.987-4.693-98.987-14.080-10.24-2.987-20.907-7.68-31.147-14.080-4.693-2.987-6.827-6.827-8.533-12.373-7.68-42.667-15.36-89.173-24.32-145.493-8.533-55.040-16.64-110.507-25.173-165.547l-7.68-51.627c-1.28-7.68-2.133-14.507-3.413-22.187l-0.853-5.547 4.267 1.28c55.893 19.627 116.053 28.587 196.267 28.587h1.28c78.080 0 139.947-9.813 195.413-30.72l4.267-1.28-2.133 6.827zM705.707 320c41.813-1.28 80.64 8.533 114.347 27.733 48.64 29.44 80.64 73.813 93.44 133.12 4.693 23.467 6.827 48.213 6.4 71.68-0.853 11.947-1.28 25.6-4.267 40.533l-0.853 4.693-3.413-3.413c-4.267-4.267-8.96-8.533-13.227-13.227-14.080-16.213-27.733-31.147-40.96-47.36l-2.987-3.413c-23.040-26.453-47.36-54.187-70.827-80.64-22.187-24.32-52.053-56.32-88.32-83.627-13.227-9.813-31.147-22.187-51.627-31.147l-6.4-2.987 6.827-2.133c20.053-5.547 40.96-9.387 61.867-9.813zM660.48 206.507v0c-24.32 6.827-52.053 16.213-78.080 30.72v0c0 0-1.28 0.853-2.987 2.133-3.413 2.133-6.4 3.413-9.813 5.547s-7.68 4.693-11.947 7.68v-2.133c6.827-29.44 17.493-51.627 21.76-59.307 23.040-43.093 57.173-75.093 104.533-96 16.64-7.68 36.267-11.947 58.453-14.080 4.693-0.853 9.813-0.853 14.507-0.853 34.133 0 69.12 8.96 106.667 27.733 20.053 10.24 39.68 23.040 59.733 40.533l4.267 3.413-4.693 1.28c-23.467 6.4-48.213 10.24-74.667 15.36-11.093 2.133-21.76 3.413-32.853 5.547-51.627 9.387-104.533 17.92-154.88 32.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["planta"],"grid":0},"attrs":[{}],"properties":{"order":373,"id":91,"name":"plant","prevSize":32,"code":59745},"setIdx":0,"setId":0,"iconIdx":93},{"icon":{"paths":["M1011.2 503.467l-264.533-106.667 29.867-29.867c4.267-4.267 4.267-12.8 4.267-17.067-4.267-4.267-8.533-8.533-12.8-8.533h-157.867c0-93.867 76.8-157.867 174.933-157.867 4.267 0 8.533-4.267 12.8-8.533s4.267-8.533 0-17.067l-81.067-153.6c-4.267-0-12.8-4.267-17.067-4.267-46.933 0-93.867 17.067-132.267 42.667-25.6 17.067-42.667 38.4-55.467 59.733-12.8-25.6-29.867-42.667-55.467-59.733-38.4-25.6-85.333-42.667-132.267-42.667-4.267 0-12.8 4.267-12.8 8.533l-81.067 153.6c-4.267 4.267-4.267 8.533 0 17.067 4.267 4.267 8.533 8.533 12.8 8.533 98.133 0 174.933 59.733 174.933 153.6v0h-140.8c-4.267 0-12.8 4.267-12.8 8.533-4.267 4.267 0 12.8 4.267 17.067l21.333 21.333-277.333 110.933c-8.533 8.533-12.8 12.8-8.533 21.333 0 8.533 8.533 12.8 17.067 12.8 0 0 0 0 0 0l98.133-4.267-76.8 98.133c0 4.267-4.267 8.533 0 12.8 0 4.267 4.267 8.533 8.533 8.533l85.333 34.133v179.2c0 8.533 4.267 12.8 8.533 12.8l362.667 145.067c0 0 4.267 0 4.267 0s4.267 0 4.267 0l362.667-145.067c4.267-4.267 8.533-8.533 8.533-12.8v-179.2l85.333-34.133c4.267 0 8.533-4.267 8.533-8.533s0-8.533-4.267-12.8l-72.533-98.133 102.4 4.267c8.533 0 12.8-4.267 17.067-12.8 0-8.533-4.267-12.8-12.8-17.067zM110.933 499.2l200.533-81.067 8.533 8.533-170.667 68.267-38.4 4.267zM153.6 665.6v-4.267l-72.533-29.867 72.533-98.133 328.533 132.267-72.533 98.133-256-102.4-0 4.267zM494.933 985.6l-328.533-132.267v-153.6l243.2 98.133c0 0 4.267 0 4.267 0h4.267c0 0 4.267 0 4.267 0v0c0 0 0 0 4.267 0v0c0 0 4.267 0 4.267-4.267l64-85.333v277.333zM494.933 631.467l-302.933-119.467 149.333-59.733 153.6 162.133v17.067zM529.067 614.4l162.133-157.867 140.8 55.467-302.933 119.467v-17.067zM857.6 853.333l-328.533 132.267v-281.6l64 85.333c0 0 0 4.267 4.267 4.267v0c0 0 4.267 0 4.267 0v0c0 0 4.267 0 4.267 0v0 0c0 0 4.267 0 4.267 0l243.2-98.133v157.867zM942.933 631.467l-328.533 132.267-72.533-98.133 328.533-132.267 72.533 98.133zM874.667 494.933l-162.133-64 12.8-8.533 187.733 76.8-38.4-4.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["polizon"],"grid":0},"attrs":[{}],"properties":{"order":374,"id":92,"name":"polizon","prevSize":32,"code":59746},"setIdx":0,"setId":0,"iconIdx":94},{"icon":{"paths":["M512 1024c16.213 0 28.587-13.227 28.587-28.587v-215.040h2.987c73.387-2.133 130.987-25.173 170.667-67.84 68.267-72.107 62.72-177.493 60.16-197.973v0c-1.28-15.36-14.080-28.16-29.44-29.44-7.253-0.853-33.707-2.987-67.84 2.133l-12.373 2.133 11.093-6.827c14.080-8.96 26.453-19.2 37.547-30.72 68.267-72.107 62.72-177.493 60.16-197.973-1.28-15.36-14.080-28.16-29.44-29.44-14.080-1.28-64-4.267-117.76 14.507l-4.267 1.28 0.853-5.12c2.987-15.36 4.267-31.573 4.267-46.933-2.56-98.56-78.933-168.107-93.867-180.48-12.373-10.24-29.44-10.24-41.813 0-15.36 11.947-92.16 81.067-94.72 180.48-0.853 16.213 0.853 31.573 4.267 47.787l0.853 5.12-4.267-1.28c-53.76-19.2-104.533-16.213-118.613-14.507-15.36 1.28-28.16 14.080-29.44 29.44-2.133 20.48-8.107 125.867 60.16 197.973 11.093 11.093 22.613 21.333 36.693 30.293l10.24 6.827-12.373-2.133c-16.213-2.133-30.293-2.987-41.387-2.987s-19.2 0.853-23.467 0.853c-15.36 1.28-28.16 14.080-29.44 29.44-2.133 20.48-8.107 125.013 60.16 197.973 39.68 41.813 97.28 64.853 169.813 67.84h2.987v215.040c0.427 14.933 12.8 28.16 29.013 28.16zM715.093 541.867h2.987v2.987c-0.853 30.72-7.253 87.467-45.653 128-28.587 30.72-71.253 46.933-127.147 49.92h-2.987v-2.987c2.133-58.88 20.053-103.68 51.627-133.12 38.827-37.973 92.587-44.8 121.173-44.8zM713.813 280.747h2.987v2.987c-0.853 30.72-7.253 87.467-45.653 128-28.587 30.293-71.253 46.933-127.147 49.493h-2.987v-2.987c2.133-58.88 20.053-103.68 51.627-133.12 39.253-37.12 93.013-43.52 121.173-44.373zM454.4 189.44c1.28-55.040 35.413-99.413 55.893-120.747l2.133-2.133 2.133 2.133c20.053 21.333 53.76 65.707 55.893 120.747 1.28 43.52-17.493 87.040-55.040 128.853l-2.133 2.133-2.133-2.133c-39.68-41.813-58.027-85.333-56.747-128.853zM351.573 411.733c-37.547-39.68-44.8-97.28-45.653-128v-2.987h2.987c34.56 0.853 84.053 8.96 121.6 43.947v0c31.573 29.44 48.64 74.24 51.627 133.12v2.987h-2.987c-56.32-2.133-98.987-18.773-127.573-49.067zM479.573 722.347c-55.893-2.133-98.56-19.2-127.147-49.493-37.547-39.68-44.8-97.28-45.653-128v-2.987h2.987c28.587 0.853 82.347 7.253 121.6 43.947 31.573 29.44 48.64 74.24 51.627 133.12v2.987h-3.413zM471.467 543.573c-8.96-8.107-18.347-15.36-29.44-22.613l-11.093-6.827 12.373 1.28c21.333 2.987 41.813 3.84 64 2.987 0.853 0 1.28 0 2.133 0h2.56c0.853 0 1.28 0 2.133 0 5.12 0 9.387 0 14.507 0 17.493 0 35.413-1.28 52.053-3.84l13.227-2.133-11.093 7.253c-11.093 6.827-20.48 14.507-29.44 22.613-14.507 14.080-28.16 31.573-38.827 51.627l-2.133 4.267-2.133-4.267c-10.667-18.773-23.893-36.267-38.827-50.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["preserved"],"grid":0},"attrs":[{}],"properties":{"order":376,"id":93,"name":"preserved","prevSize":32,"code":59747},"setIdx":0,"setId":0,"iconIdx":95},{"icon":{"paths":["M746.667 482.133c68.267 0 140.8 21.333 196.267 72.533 110.933 102.4 115.2 277.333 8.533 384s-277.333 115.2-384 8.533c-93.867-85.333-110.933-221.867-51.2-328.533l51.2 46.933c-34.133 76.8-17.067 170.667 46.933 230.4 81.067 76.8 209.067 72.533 290.133-8.533 76.8-81.067 72.533-209.067-8.533-290.133-42.667-38.4-93.867-55.467-145.067-55.467l4.267 153.6-170.667-162.133 162.133-170.667-0 119.467zM337.067 750.933c0 0 0 0 0 0-17.067-8.533-38.4-17.067-55.467-25.6-21.333-8.533-29.867-25.6-29.867-51.2s0-51.2 0-81.067c29.867 17.067 64 29.867 102.4 38.4 4.267-17.067 12.8-34.133 21.333-51.2-17.067-4.267-34.133-8.533-51.2-17.067-21.333-8.533-38.4-21.333-55.467-29.867-12.8-8.533-17.067-17.067-12.8-34.133 0-29.867 0-55.467 0-85.333 68.267 29.867 132.267 46.933 200.533 51.2 17.067-21.333 38.4-38.4 64-55.467 0 0-4.267 0-4.267 0-51.2 0-106.667-4.267-157.867-21.333-34.133 0-59.733-12.8-81.067-29.867-29.867-21.333-29.867-42.667 4.267-64 38.4-25.6 81.067-34.133 128-42.667 55.467-8.533 110.933-8.533 166.4-4.267 51.2 4.267 102.4 17.067 149.333 38.4 12.8 4.267 42.667 29.867 38.4 55.467 55.467 0 106.667 12.8 153.6 34.133 17.067-4.267 29.867-8.533 46.933-12.8 0 12.8 0 25.6 0 38.4 21.333 12.8 38.4 25.6 55.467 42.667 0-98.133 0-200.533 0-298.667 0-42.667-17.067-72.533-51.2-93.867-46.933-29.867-98.133-38.4-149.333-42.667-34.133-8.533-72.533-8.533-110.933-8.533-72.533 4.267-140.8 21.333-200.533 64-4.267 0-8.533-4.267-8.533-4.267-51.2-34.133-110.933-46.933-170.667-51.2-51.2 0-102.4 0-153.6 8.533-46.933 8.533-93.867 17.067-136.533 46.933-25.6 21.333-38.4 42.667-38.4 76.8 0 145.067 0 294.4 0 439.467 0 38.4 17.067 64 46.933 81.067 21.333 12.8 46.933 25.6 72.533 29.867 25.6 8.533 51.2 12.8 81.067 17.067 17.067 46.933 55.467 68.267 102.4 85.333 12.8 4.267 29.867 8.533 42.667 12.8-4.267-17.067-8.533-34.133-8.533-55.467zM964.267 273.067c0 8.533-8.533 21.333-17.067 25.6-34.133 21.333-76.8 34.133-119.467 38.4-4.267-38.4-17.067-68.267-55.467-89.6 68.267 0 128-12.8 192-42.667 4.267 25.6 4.267 46.933 0 68.267zM610.133 76.8c68.267-17.067 136.533-25.6 204.8-17.067 42.667 4.267 85.333 12.8 128 34.133 12.8 8.533 21.333 12.8 25.6 34.133-8.533 8.533-17.067 17.067-25.6 21.333-29.867 17.067-64 29.867-98.133 34.133-38.4 4.267-76.8 8.533-115.2 8.533-46.933 0-89.6-8.533-132.267-25.6-21.333-8.533-42.667-17.067-55.467-42.667 12.8-29.867 38.4-42.667 68.267-46.933zM68.267 115.2c25.6-25.6 64-34.133 98.133-38.4 29.867-4.267 59.733-12.8 85.333-12.8 68.267 0 132.267 4.267 196.267 34.133 8.533 4.267 17.067 8.533 25.6 17.067 12.8 8.533 12.8 21.333 0 34.133-8.533 8.533-17.067 12.8-29.867 21.333-42.667 21.333-85.333 29.867-132.267 34.133-17.067 0-29.867 0-42.667 0-55.467-4.267-110.933-12.8-162.133-29.867-12.8-4.267-29.867-12.8-42.667-21.333-12.8-17.067-8.533-25.6 4.267-38.4zM196.267 652.8c-25.6-8.533-51.2-12.8-72.533-21.333-8.533-4.267-21.333-8.533-29.867-12.8-25.6-12.8-38.4-29.867-34.133-59.733 0-17.067 0-29.867 0-51.2 46.933 25.6 89.6 34.133 136.533 38.4 0 42.667 0 72.533 0 106.667zM55.467 430.933c0-21.333 0-42.667 0-59.733 46.933 12.8 93.867 21.333 140.8 34.133 0 29.867 0 59.733 0 93.867-34.133-4.267-64-12.8-93.867-21.333-8.533-4.267-21.333-12.8-29.867-17.067-12.8-8.533-17.067-17.067-17.067-29.867zM196.267 341.333c-4.267 0-12.8 4.267-17.067 0-34.133 0-68.267-12.8-102.4-29.867-12.8-8.533-21.333-21.333-21.333-38.4s0-38.4 0-59.733c59.733 25.6 115.2 38.4 179.2 42.667-21.333 25.6-42.667 51.2-38.4 85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["recovery"],"grid":0},"attrs":[{}],"properties":{"order":377,"id":94,"name":"recovery","prevSize":32,"code":59748},"setIdx":0,"setId":0,"iconIdx":96},{"icon":{"paths":["M554.667 46.933c-260.267 0-469.333 209.067-469.333 469.333h-85.333l136.533 209.067 140.8-209.067h-85.333c0-200.533 162.133-362.667 362.667-362.667s362.667 162.133 362.667 362.667-162.133 362.667-362.667 362.667c-98.133 0-192-42.667-251.733-106.667l-72.533 72.533c85.333 85.333 200.533 136.533 332.8 136.533 251.733-4.267 460.8-213.333 460.8-473.6s-213.333-460.8-469.333-460.8zM332.8 725.333h430.933v-179.2h-110.933v68.267l-106.667-102.4 102.4-102.4v68.267h110.933v-179.2h-426.667v426.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["regentry"],"grid":0},"attrs":[{}],"properties":{"order":378,"id":95,"name":"regentry","prevSize":32,"code":59749},"setIdx":0,"setId":0,"iconIdx":97},{"icon":{"paths":["M841.6 96c48 0 86.4 38.4 86.4 86.4v662.4c0 48-38.4 86.4-86.4 86.4h-659.2c-48-3.2-86.4-41.6-86.4-89.6v-659.2c0-48 38.4-86.4 86.4-86.4h659.2zM841.6 0h-659.2c-99.2 0-182.4 83.2-182.4 182.4v662.4c0 96 83.2 179.2 182.4 179.2h662.4c99.2 0 182.4-83.2 182.4-182.4v-659.2c-3.2-99.2-86.4-182.4-185.6-182.4v0z","M611.2 768l-99.2-144h-108.8v144h-118.4v-512h220.8c44.8 0 83.2 6.4 118.4 22.4 32 16 57.6 35.2 76.8 64s25.6 60.8 25.6 99.2c0 38.4-9.6 70.4-28.8 99.2s-44.8 48-76.8 64l115.2 163.2h-124.8zM582.4 374.4c-19.2-16-44.8-22.4-80-22.4h-96v179.2h96c35.2 0 64-6.4 80-22.4 19.2-16 28.8-38.4 28.8-67.2-3.2-28.8-9.6-51.2-28.8-67.2z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["reserva"],"grid":0},"attrs":[{},{}],"properties":{"order":380,"id":96,"name":"reserva","prevSize":32,"code":59750},"setIdx":0,"setId":0,"iconIdx":98},{"icon":{"paths":["M358.4 819.2h-102.4v-102.4h81.067c0 0 0-4.267 0-4.267 0-34.133 8.533-68.267 21.333-98.133h-102.4v-102.4h170.667c51.2-51.2 123.733-85.333 200.533-102.4h-371.2v-102.4h512v93.867c76.8 8.533 149.333 34.133 204.8 72.533v-268.8c0-55.467-46.933-102.4-102.4-102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h546.133c-157.867-8.533-290.133-89.6-341.333-204.8zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2c0-29.867 21.333-51.2 51.2-51.2z","M721.067 507.733c-136.533 0-251.733 85.333-302.933 204.8 46.933 119.467 162.133 204.8 302.933 204.8s251.733-85.333 302.933-204.8c-46.933-119.467-162.133-204.8-302.933-204.8zM721.067 849.067c-76.8 0-136.533-59.733-136.533-136.533s64-136.533 136.533-136.533 136.533 64 136.533 136.533-59.733 136.533-136.533 136.533zM721.067 631.467c-46.933 0-81.067 38.4-81.067 81.067s38.4 81.067 81.067 81.067c46.933 0 81.067-38.4 81.067-81.067s-34.133-81.067-81.067-81.067z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["revision"],"grid":0},"attrs":[{},{}],"properties":{"order":381,"id":97,"name":"revision","prevSize":32,"code":59751},"setIdx":0,"setId":0,"iconIdx":99},{"icon":{"paths":["M700.587 816.64c-20.48 3.84-42.24 5.973-64.427 5.973-69.973 0-131.84-17.92-184.747-54.187s-90.453-84.48-112.213-144.213h168.533l-64.853-64.853h-119.467c-2.133-15.36-3.413-31.147-3.413-47.36 0-17.067 1.28-32.853 3.413-47.36h25.173l-114.773-114.773c-6.4 16.213-12.373 32.853-17.067 49.92h-131.413v64.853h119.893c-1.707 20.053-2.133 35.84-2.133 47.36s0.853 27.307 2.133 47.36h-119.893v64.853h131.84c16.213 60.16 43.947 112.64 83.2 158.293 39.253 45.227 87.467 80.64 144.213 105.813s119.040 37.547 186.027 37.547c55.467 0 106.667-8.107 154.453-24.747l-84.48-84.48z","M580.693 464.64h124.587v-64.853h-189.44z","M407.467 291.84c13.227-13.227 27.733-25.173 43.947-35.84 52.907-36.267 114.773-54.187 184.747-54.187 91.733 0 167.68 32 228.693 96l73.813-72.533c-36.267-40.96-80.64-72.107-133.547-93.44s-110.933-32.427-174.933-32.427c-66.987 0-128.853 12.373-186.027 37.547-43.52 18.347-82.347 43.947-115.627 75.52l78.933 79.36z","M39.253 0c10.24 0 20.053 3.84 27.733 11.52l945.493 945.067c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["riesgo"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":382,"id":98,"name":"risk","prevSize":32,"code":59753},"setIdx":0,"setId":0,"iconIdx":100},{"icon":{"paths":["M485.973 0.853c-258.987 12.8-470.187 222.293-485.12 481.28-5.547 100.693 17.92 195.84 62.72 277.333s0 170.667-13.653 198.4 19.2 61.867 44.373 45.227c14.507-9.813 65.707-32 116.053-45.653 20.907-5.547 42.667-2.987 61.867 7.253 80.64 43.093 174.080 64.853 273.493 58.453 257.28-16.213 465.067-226.56 477.867-484.267 14.933-303.787-234.24-553.387-537.6-538.027zM407.467 653.227c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-271.36c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v274.347zM544.427 734.72c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-439.467c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v442.453zM674.987 617.387c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-195.413c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v198.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["saysimple"],"grid":0},"attrs":[{}],"properties":{"order":419,"id":99,"name":"saysimple","prevSize":32,"code":59666},"setIdx":0,"setId":0,"iconIdx":101},{"icon":{"paths":["M951.467 742.4c0-8.533 0-21.333 0-29.867s0-21.333-4.267-29.867l64-51.2c4.267-4.267 8.533-12.8 4.267-21.333l-64-106.667c-4.267-8.533-12.8-8.533-17.067-8.533l-76.8 29.867c-17.067-12.8-34.133-21.333-51.2-29.867l-12.8-81.067c0-8.533-8.533-12.8-17.067-12.8h-123.733c-8.533 0-12.8 4.267-17.067 12.8l-12.8 81.067c-17.067 8.533-38.4 17.067-51.2 29.867l-76.8-29.867c-8.533-4.267-17.067 0-17.067 8.533l-64 106.667c-4.267 8.533-4.267 17.067 4.267 21.333l64 51.2c0 8.533-4.267 21.333-4.267 29.867s0 21.333 4.267 29.867l-55.467 51.2c-4.267 4.267-8.533 12.8-4.267 21.333l64 106.667c4.267 8.533 12.8 8.533 17.067 8.533l76.8-29.867c17.067 12.8 34.133 21.333 51.2 29.867l12.8 81.067c0 8.533 8.533 12.8 17.067 12.8h123.733c8.533 0 12.8-4.267 17.067-12.8l12.8-81.067c17.067-8.533 38.4-17.067 51.2-29.867l76.8 29.867c8.533 4.267 17.067 0 17.067-8.533l64-106.667c4.267-8.533 4.267-17.067-4.267-21.333 0 0-68.267-51.2-68.267-51.2zM721.067 827.733c-64 0-115.2-51.2-115.2-115.2s51.2-115.2 115.2-115.2 115.2 51.2 115.2 115.2c0 64-51.2 115.2-115.2 115.2z","M345.6 785.067h-89.6v-102.4h81.067c4.267-34.133 8.533-68.267 21.333-102.4h-102.4v-102.4h162.133c34.133-42.667 72.533-76.8 119.467-102.4h-281.6v-102.4h520.533v59.733c51.2 8.533 102.4 25.6 145.067 51.2v-281.6c0-55.467-46.933-102.4-102.4-102.4h-622.933c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h302.933c-81.067-55.467-136.533-140.8-153.6-238.933z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["services"],"grid":0},"attrs":[{},{}],"properties":{"order":383,"id":100,"name":"services","prevSize":32,"code":59754},"setIdx":0,"setId":0,"iconIdx":102},{"icon":{"paths":["M891.733 563.2c0-17.067 4.267-34.133 4.267-51.2s0-34.133-4.267-51.2l106.667-85.333c8.533-8.533 12.8-21.333 4.267-34.133l-102.4-179.2c-4.267-12.8-21.333-17.067-29.867-12.8l-128 51.2c-25.6-21.333-55.467-38.4-85.333-51.2l-17.067-128c0-12.8-12.8-21.333-25.6-21.333h-204.8c-12.8 0-25.6 8.533-25.6 21.333l-17.067 136.533c-34.133 12.8-59.733 29.867-89.6 51.2l-128-51.2c-8.533-4.267-21.333 0-29.867 8.533l-102.4 179.2c-4.267 8.533-4.267 25.6 8.533 29.867l106.667 85.333c-4.267 17.067-4.267 34.133-4.267 51.2s0 34.133 4.267 51.2l-106.667 85.333c-8.533 8.533-12.8 21.333-4.267 34.133l102.4 179.2c4.267 12.8 21.333 17.067 29.867 12.8l128-51.2c25.6 21.333 55.467 38.4 85.333 51.2l17.067 128c0 12.8 12.8 21.333 25.6 21.333h204.8c12.8 0 25.6-8.533 25.6-21.333l21.333-136.533c29.867-12.8 59.733-29.867 85.333-51.2l128 51.2c12.8 4.267 25.6 0 29.867-12.8l102.4-179.2c4.267-12.8 4.267-25.6-4.267-34.133l-110.933-76.8zM512 691.2c-98.133 0-179.2-81.067-179.2-179.2s81.067-179.2 179.2-179.2 179.2 81.067 179.2 179.2-81.067 179.2-179.2 179.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["settings"],"grid":0},"attrs":[{}],"properties":{"order":384,"id":101,"name":"settings","prevSize":32,"code":59755},"setIdx":0,"setId":0,"iconIdx":103},{"icon":{"paths":["M725.76 328.107h-23.040c-29.013 0-29.013-40.533 0-40.533h23.040c11.52 0 23.040 11.52 23.040 23.040-5.973 5.973-11.52 17.493-23.040 17.493zM587.52 328.107h-23.040c-29.013 0-29.013-40.533 0-40.533h23.040c11.52 0 23.040 11.52 23.040 23.040 0 5.973-11.52 17.493-23.040 17.493zM454.827 328.107h-23.040c-11.52 0-23.040-11.52-23.040-23.040s11.52-23.040 23.040-23.040h23.040c11.52 0 23.040 11.52 23.040 23.040-5.973 11.52-11.52 23.040-23.040 23.040zM316.587 328.107h-17.493c-11.52 0-23.040-11.52-23.040-23.040s11.52-23.040 23.040-23.040h23.040c11.52 0 23.040 11.52 23.040 23.040-5.547 11.52-17.067 23.040-28.587 23.040zM719.787 1002.24c-46.080-23.040-86.613-17.493-126.72 0-52.053 23.040-103.68 29.013-161.28 0-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-17.493-5.973-34.56-17.493-63.573-17.493-11.52 0-23.040-11.52-23.040-23.040 0-34.56 69.12-17.493 103.68 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 34.56-17.493 103.68-34.56 103.68 0 0 11.52-11.52 23.040-23.040 23.040-34.56 0-46.080 5.973-63.573 17.493-51.2 29.013-103.253 29.013-160.853 0zM719.787 887.040c-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-17.493-5.973-34.56-17.493-63.573-17.493-11.52 0-23.040-11.52-23.040-23.040 0-34.56 69.12-17.493 103.68 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 34.56-17.493 103.68-34.56 103.68 0 0 11.52-11.52 23.040-23.040 23.040-34.56 0-46.080 5.973-63.573 17.493-51.2 29.013-103.253 29.013-160.853 0zM875.52 380.16h-34.56v-230.4c0-11.52-11.52-23.040-23.040-23.040h-149.76v-103.68c0-11.52-11.52-23.040-23.040-23.040h-282.453c-11.52 0-23.040 11.52-23.040 23.040v103.68h-149.76c-11.52 0-23.040 11.52-23.040 23.040v230.4h-29.013c-5.973 0-11.52 5.973-17.493 5.973-5.973 5.973-5.973 11.52-5.973 17.493l115.2 391.68c5.973 11.52 17.493 17.493 29.013 11.52 11.52 5.973 17.493-5.973 11.52-17.493l-109.227-368.64h322.56v374.613c0 29.013 40.533 29.013 40.533 0v-374.613h328.533l-109.653 368.64c-5.973 11.52 5.973 23.040 11.52 29.013 11.52 5.973 23.040-5.973 29.013-11.52l115.2-391.68c5.547-23.467-5.973-34.987-23.040-34.987zM385.707 46.080h241.92v86.187h-241.92v-86.187zM800.427 380.16c-69.12 0-512.853 0-587.52 0v-213.333h587.52v213.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["shipment-01"],"grid":0},"attrs":[{}],"properties":{"order":386,"id":102,"name":"shipment","prevSize":32,"code":59756},"setIdx":0,"setId":0,"iconIdx":104},{"icon":{"paths":["M725.333 0c72.533 72.533 145.067 145.067 217.6 217.6-4.267 4.267-8.533 12.8-17.067 17.067-179.2 179.2-358.4 362.667-537.6 541.867-8.533 8.533-25.6 17.067-38.4 21.333-81.067 21.333-166.4 42.667-247.467 64-4.267 0-12.8 4.267-21.333 4.267 0-8.533 0-17.067 4.267-21.333 21.333-85.333 42.667-166.4 64-251.733 4.267-8.533 8.533-21.333 17.067-25.6 183.467-187.733 371.2-371.2 554.667-554.667 0-8.533 0-12.8 4.267-12.8z","M849.067 934.4c-25.6 21.333-46.933 42.667-72.533 59.733-29.867 17.067-59.733 25.6-89.6 29.867-21.333 4.267-42.667 0-55.467-12.8-12.8-8.533-25.6-46.933-38.4-51.2-4.267 0-12.8 0-17.067 4.267-68.267 25.6-145.067 55.467-221.867 55.467-106.667 0-209.067 0-315.733 0-4.267 0-8.533 0-12.8 0-4.267-4.267-12.8-8.533-12.8-12.8s8.533-12.8 12.8-17.067c4.267-4.267 12.8 0 21.333 0 102.4 0 204.8 0 307.2-4.267 76.8 0 153.6-25.6 221.867-64 8.533-4.267 12.8-12.8 12.8-21.333 4.267-55.467 12.8-106.667 42.667-153.6 17.067-29.867 42.667-51.2 81.067-55.467 55.467 0 85.333 38.4 64 89.6-17.067 34.133-42.667 64-64 89.6-21.333 21.333-51.2 38.4-72.533 55.467-4.267 4.267-8.533 17.067-8.533 21.333 8.533 34.133 29.867 51.2 59.733 42.667 29.867-4.267 59.733-17.067 81.067-34.133 25.6-17.067 46.933-42.667 72.533-64 8.533-8.533 17.067-21.333 29.867-25.6 8.533-4.267 21.333-8.533 29.867-4.267 4.267 4.267 8.533 21.333 4.267 29.867-8.533 21.333-17.067 42.667-25.6 64-4.267 8.533-8.533 25.6 0 34.133s29.867 4.267 38.4-4.267c25.6-17.067 51.2-34.133 72.533-55.467 8.533-8.533 17.067-17.067 25.6-8.533 4.267 4.267 4.267 21.333 0 29.867-25.6 34.133-59.733 59.733-102.4 72.533-46.933 12.8-76.8-17.067-68.267-64-4.267-12.8-4.267-17.067 0-25.6zM618.667 887.467c0 0 0 4.267 0 4.267s4.267 0 4.267 0c29.867-25.6 59.733-51.2 85.333-81.067 12.8-12.8 21.333-34.133 29.867-51.2 8.533-21.333 0-34.133-21.333-38.4-25.6-4.267-42.667 8.533-55.467 25.6-29.867 46.933-38.4 93.867-42.667 140.8z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["sign"],"grid":0},"attrs":[{},{}],"properties":{"order":387,"id":103,"name":"sign","prevSize":32,"code":59658},"setIdx":0,"setId":0,"iconIdx":105},{"icon":{"paths":["M896 230.4h-443.733c-29.867 0-55.467 25.6-55.467 55.467v332.8c0 29.867 25.6 55.467 55.467 55.467h443.733c29.867 0 55.467-25.6 55.467-55.467v-332.8c0-29.867-25.6-55.467-55.467-55.467zM896 341.333l-221.867 140.8-221.867-140.8v-55.467l221.867 140.8 221.867-140.8v55.467zM640 738.133v55.467h-486.4v-652.8h486.4v25.6h85.333v-25.6c0-76.8-64-140.8-140.8-140.8h-371.2c-81.067 0-140.8 64-140.8 140.8v746.667c0 72.533 59.733 136.533 140.8 136.533h371.2c76.8 0 140.8-64 140.8-140.8v-145.067h-85.333zM490.667 930.133h-187.733v-46.933h187.733v46.933z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["sms"],"grid":0},"attrs":[{}],"properties":{"order":388,"id":104,"name":"sms","prevSize":32,"code":59758},"setIdx":0,"setId":0,"iconIdx":106},{"icon":{"paths":["M1024 42.667v938.667h-938.667v-68.267h234.667v-51.2h38.4c8.533 4.267 17.067 4.267 29.867 4.267h298.667c42.667 0 76.8-34.133 76.8-76.8 0 0 0 0 0 0 29.867-12.8 46.933-38.4 46.933-72.533 0 0 0 0 0 0 29.867-12.8 46.933-38.4 46.933-72.533s-21.333-59.733-46.933-72.533c0 0 0 0 0 0 0-42.667-34.133-76.8-76.8-76.8h-106.667c21.333-21.333 29.867-55.467 17.067-89.6-12.8-25.6-38.4-42.667-68.267-42.667-12.8 0-21.333 4.267-34.133 8.533l-217.6 98.133v-29.867h-238.933v-396.8h362.667v209.067h209.067v-209.067h366.933zM0 870.4h281.6v-51.2h89.6c4.267 4.267 12.8 4.267 17.067 4.267h298.667c21.333 0 34.133-12.8 34.133-34.133s-12.8-34.133-34.133-34.133h-136.533v-12.8h183.467c21.333 0 34.133-12.8 34.133-29.867 0-21.333-12.8-29.867-34.133-29.867h-179.2v-12.8h234.667c21.333 0 34.133-8.533 34.133-29.867s-12.8-29.867-34.133-29.867h-230.4v-12.8h183.467c21.333 0 29.867-12.8 29.867-34.133s-12.8-34.133-34.133-34.133h-230.4l93.867-64c12.8-8.533 21.333-29.867 12.8-46.933s-29.867-25.6-51.2-17.067l-251.733 119.467c-4.267 0-4.267 4.267-8.533 4.267-4.267 4.267-8.533 8.533-12.8 12.8h-8.533v-55.467h-281.6v388.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["solclaim"],"grid":0},"attrs":[{}],"properties":{"order":389,"id":105,"name":"solclaim","prevSize":32,"code":59759},"setIdx":0,"setId":0,"iconIdx":107},{"icon":{"paths":["M759.467 89.6v136.533h-601.6c0 0-128 341.333 106.667 341.333s469.333 0 469.333 0 34.133 0 34.133 34.133-8.533 98.133-8.533 98.133h-541.867c0 0-247.467-29.867-204.8-320 0 0 8.533-140.8 72.533-298.667 0 0 21.333 8.533 85.333 8.533l588.8-0zM853.333 934.4c64 0 85.333 8.533 85.333 8.533 64-153.6 72.533-298.667 72.533-298.667 42.667-290.133-204.8-320-204.8-320h-541.867c0 0-8.533 64-8.533 98.133s34.133 34.133 34.133 34.133 238.933 0 469.333 0 106.667 341.333 106.667 341.333h-601.6v136.533h588.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["solunion"],"grid":0},"attrs":[{}],"properties":{"order":390,"id":106,"name":"solunion","prevSize":32,"code":59761},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M686.933 742.4h-119.467l-268.8-230.4 268.8-230.4h119.467v153.6l337.067-196.267-337.067-238.933v153.6h-153.6l-290.133 251.733h-243.2v213.333h243.2l290.133 251.733h153.6v153.6l337.067-238.933-337.067-196.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["splitline"],"grid":0},"attrs":[{}],"properties":{"order":391,"id":107,"name":"splitline","prevSize":32,"code":59762},"setIdx":0,"setId":0,"iconIdx":109},{"icon":{"paths":["M640 0l145.067 145.067-183.467 183.467 89.6 89.6 183.467-183.467 149.333 149.333v-384h-384zM384 0h-384v384l145.067-145.067 302.933 302.933v482.133h128v-537.6l-337.067-341.333 145.067-145.067z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["splur"],"grid":0},"attrs":[{}],"properties":{"order":392,"id":108,"name":"splur","prevSize":32,"code":59764},"setIdx":0,"setId":0,"iconIdx":110},{"icon":{"paths":["M1006.933 507.733l-260.267-106.667 29.867-29.867c4.267-4.267 4.267-12.8 4.267-17.067-4.267-4.267-8.533-8.533-12.8-8.533h-157.867c0-93.867 76.8-157.867 174.933-157.867 4.267 0 8.533-4.267 12.8-8.533s4.267-8.533 0-17.067l-81.067-153.6c-4.267 0-12.8-4.267-17.067-4.267-46.933 0-93.867 17.067-132.267 42.667-21.333 17.067-42.667 38.4-55.467 59.733-12.8-21.333-29.867-42.667-55.467-59.733-34.133-12.8-81.067-34.133-128-34.133-4.267 0-12.8 4.267-12.8 8.533l-85.333 153.6c-4.267 4.267-4.267 4.267 0 12.8 4.267 4.267 8.533 8.533 12.8 8.533 98.133 0 174.933 59.733 174.933 153.6v0h-140.8c-4.267 0-12.8 4.267-12.8 8.533-8.533 4.267-4.267 17.067 0 21.333l21.333 21.333-277.333 110.933c-8.533 8.533-12.8 12.8-8.533 21.333 0 8.533 8.533 12.8 17.067 12.8v0l98.133-4.267-81.067 85.333c0 4.267-4.267 8.533 0 12.8 0 4.267 4.267 8.533 8.533 8.533l85.333 34.133v179.2c0 8.533 4.267 12.8 8.533 12.8l358.4 145.067h8.533l358.4-145.067c4.267-4.267 8.533-8.533 8.533-12.8v-179.2l85.333-34.133c4.267 0 8.533-4.267 8.533-8.533s0-8.533-4.267-12.8l-68.267-98.133 102.4 4.267c8.533 0 12.8-4.267 17.067-12.8 8.533 0 4.267-4.267-4.267-12.8zM110.933 503.467l196.267-76.8 8.533 8.533-166.4 64-38.4 4.267zM153.6 674.133v0l-68.267-34.133 68.267-98.133 328.533 132.267-68.267 98.133-260.267-98.133zM490.667 989.867l-328.533-132.267v-153.6l243.2 98.133h12.8c0 0 0 0 4.267 0v0c0 0 4.267 0 4.267-4.267l64-85.333c0 4.267 0 277.333 0 277.333zM490.667 635.733l-298.667-115.2 149.333-64 153.6 157.867v17.067h-4.267zM529.067 622.933l157.867-157.867 140.8 55.467-298.667 115.2c-0 0-0-12.8-0-12.8zM849.067 857.6l-328.533 132.267v-281.6l64 85.333c0 0 0 4.267 4.267 4.267v0h17.067l243.2-98.133v157.867zM938.667 635.733l-324.267 132.267-68.267-98.133 328.533-132.267 64 98.133zM870.4 499.2l-157.867-64 12.8-8.533 187.733 76.8-42.667-4.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["stowaway 2"],"grid":0},"attrs":[{}],"properties":{"order":393,"id":109,"name":"stowaway","prevSize":32,"code":59765},"setIdx":0,"setId":0,"iconIdx":111},{"icon":{"paths":["M797.867 554.667l98.133-34.133 21.333 59.733-98.133 34.133-21.333-59.733zM1019.733 618.667c-4.267 8.533-8.533 12.8-17.067 17.067l-332.8 119.467c4.267 4.267 8.533 12.8 12.8 17.067l277.333-102.4 21.333 59.733-277.333 102.4c0 8.533 4.267 12.8 4.267 21.333 0 85.333-68.267 157.867-157.867 157.867-85.333 0-157.867-68.267-157.867-157.867 0-55.467 29.867-106.667 72.533-132.267l-217.6-610.133c-8.533-25.6-38.4-42.667-68.267-29.867l-157.867 55.467-21.333-59.733 157.867-59.733c59.733-17.067 123.733 12.8 149.333 72.533l221.867 614.4c8.533 0 12.8 0 21.333-4.267l-119.467-332.8c-4.267-17.067 4.267-34.133 17.067-38.4l136.533-51.2c0 0 0 0 0 0l115.2-42.667c0 0 0 0 0 0l136.533-51.2c8.533-4.267 17.067-4.267 25.6 0s12.8 8.533 17.067 17.067l145.067 396.8c0 4.267 0 12.8-4.267 21.333zM695.467 302.933l-59.733 21.333 8.533 21.333 59.733-21.333-8.533-21.333zM644.267 853.333c0-51.2-42.667-93.867-93.867-93.867s-93.867 42.667-93.867 93.867c0 51.2 42.667 93.867 93.867 93.867s93.867-38.4 93.867-93.867zM951.467 588.8l-119.467-332.8-76.8 29.867 17.067 51.2c4.267 8.533 4.267 17.067 0 25.6s-8.533 12.8-17.067 17.067l-115.2 42.667c-4.267 0-8.533 0-12.8 0-12.8 0-25.6-8.533-29.867-21.333l-17.067-51.2-76.8 29.867 119.467 332.8 328.533-123.733z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["supplier"],"grid":0},"attrs":[{}],"properties":{"order":394,"id":110,"name":"supplier","prevSize":32,"code":59766},"setIdx":0,"setId":0,"iconIdx":112},{"icon":{"paths":["M198.827 77.227c22.187-0.427 41.813 14.080 48.64 34.133l8.107 22.187 105.813 105.813-54.187-149.333c-25.6-59.733-89.6-89.6-149.333-72.533l-13.653 5.12 54.613 54.613z","M708.693 830.72l-173.653-173.653 15.36 43.093c-8.533 4.267-12.8 4.267-21.333 4.267l-29.867-83.2-108.373-108.373 74.24 208.64c-42.667 25.6-72.533 76.8-72.533 132.267 0 89.6 72.533 157.867 157.867 157.867 89.6 0 157.867-72.533 157.867-157.867 0-8.533-4.267-12.8-4.267-21.333l4.693-1.707zM550.4 947.627c-51.2 0-93.867-42.667-93.867-93.867s42.667-93.867 93.867-93.867 93.867 42.667 93.867 93.867c0 55.467-42.667 93.867-93.867 93.867z","M960 670.293l-122.453 45.227 49.493 49.067 94.293-34.56z","M504.32 382.293l-0.853-2.133 76.8-29.867 17.067 51.2c4.267 12.8 17.067 21.333 29.867 21.333 4.267 0 8.533 0 12.8 0l115.2-42.667c8.533-4.267 12.8-8.533 17.067-17.067s4.267-17.067 0-25.6l-17.067-51.2 76.8-29.867 119.467 332.8-174.507 65.707 45.653 45.653 180.053-64.427c8.533-4.267 12.8-8.533 17.067-17.067s4.267-17.067 4.267-21.333l-145.067-396.8c-4.267-8.533-8.533-12.8-17.067-17.067s-17.067-4.267-25.6 0l-136.533 51.2-115.2 42.667-134.4 50.347 54.187 54.187zM695.467 303.36l8.533 21.333-59.733 21.333-8.533-21.333 59.733-21.333z","M896 520.96l-98.133 34.133 21.333 59.733 98.133-34.133z","M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{}]},"tags":["supplierfalse"],"grid":0},"attrs":[{},{},{},{},{},{}],"properties":{"order":396,"id":111,"name":"supplierfalse","prevSize":32,"code":59767},"setIdx":0,"setId":0,"iconIdx":113},{"icon":{"paths":["M729.6 0c-42.667 0-89.6 0-132.267 0-21.333 0-38.4 8.533-51.2 21.333-140.8 140.8-281.6 281.6-422.4 422.4-25.6 25.6-25.6 51.2 0 76.8 93.867 93.867 187.733 187.733 281.6 281.6 25.6 25.6 51.2 25.6 76.8 0 140.8-140.8 281.6-281.6 422.4-422.4 17.067-12.8 21.333-29.867 21.333-51.2 0-93.867 0-183.467 0-277.333 0-34.133-17.067-51.2-51.2-51.2-51.2-0-98.133-0-145.067-0zM682.667 196.267c0-25.6 17.067-46.933 42.667-46.933s46.933 21.333 46.933 46.933c0 25.6-21.333 46.933-46.933 46.933-21.333 0-42.667-21.333-42.667-46.933zM878.933 477.867c4.267 12.8 0 21.333-8.533 29.867-34.133 51.2-64 98.133-98.133 149.333-76.8 115.2-153.6 234.667-230.4 349.867-12.8 17.067-21.333 21.333-38.4 8.533-115.2-76.8-226.133-149.333-337.067-226.133-17.067-8.533-17.067-21.333-8.533-38.4 12.8-21.333 29.867-46.933 42.667-68.267 8.533-12.8 8.533-12.8 17.067 0 55.467 55.467 115.2 115.2 170.667 170.667 8.533 8.533 17.067 17.067 29.867 21.333 29.867 12.8 55.467 4.267 76.8-21.333 123.733-123.733 247.467-247.467 371.2-371.2 4.267-4.267 4.267-8.533 8.533-12.8 0 8.533 0 8.533 4.267 8.533z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["tags"],"grid":0},"attrs":[{}],"properties":{"order":397,"id":112,"name":"tags","prevSize":32,"code":59769},"setIdx":0,"setId":0,"iconIdx":114},{"icon":{"paths":["M448 768c0-174.933 145.067-320 320-320 76.8 0 145.067 25.6 196.267 68.267v-324.267c4.267-51.2-38.4-98.133-93.867-98.133h-204.8c-21.333-55.467-72.533-93.867-136.533-93.867s-115.2 38.4-136.533 98.133h-209.067c-55.467 0-98.133 42.667-98.133 93.867v674.133c0 51.2 42.667 98.133 98.133 98.133h332.8c-42.667-55.467-68.267-123.733-68.267-196.267zM529.067 98.133c29.867 0 46.933 21.333 46.933 46.933 0 29.867-25.6 46.933-46.933 46.933-29.867 0-46.933-21.333-46.933-46.933-4.267-29.867 17.067-46.933 46.933-46.933zM708.267 712.533c-8.533 0-12.8-4.267-17.067-8.533s-8.533-8.533-8.533-17.067v-17.067c0-8.533 0-12.8 4.267-17.067s8.533-8.533 17.067-8.533c8.533 0 12.8 4.267 17.067 8.533s4.267 12.8 4.267 17.067v12.8c4.267 21.333-4.267 29.867-17.067 29.867zM870.4 827.733c4.267 4.267 4.267 12.8 4.267 17.067v21.333c0 12.8-8.533 21.333-21.333 21.333-8.533 0-12.8-4.267-17.067-8.533s-8.533-12.8-8.533-17.067v-17.067c0-8.533 4.267-12.8 8.533-17.067s8.533-8.533 17.067-8.533c8.533-0 12.8 4.267 17.067 8.533zM768 512c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256zM635.733 686.933v-17.067c0-21.333 4.267-34.133 17.067-46.933s29.867-17.067 51.2-17.067c21.333 0 38.4 4.267 51.2 17.067s17.067 29.867 17.067 46.933v17.067c0 21.333-4.267 34.133-17.067 46.933s-29.867 17.067-51.2 17.067-38.4-4.267-51.2-17.067c-8.533-12.8-17.067-29.867-17.067-46.933zM721.067 900.267l-34.133-17.067 153.6-243.2 34.133 17.067-153.6 243.2zM925.867 861.867c0 21.333-4.267 34.133-17.067 46.933s-29.867 17.067-51.2 17.067-38.4-4.267-51.2-17.067c-12.8-12.8-21.333-25.6-21.333-46.933v-17.067c0-21.333 4.267-34.133 17.067-46.933s29.867-17.067 51.2-17.067 38.4 4.267 51.2 17.067c12.8 12.8 17.067 29.867 17.067 46.933v17.067h4.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["tax"],"grid":0},"attrs":[{}],"properties":{"order":398,"id":113,"name":"tax","prevSize":32,"code":59770},"setIdx":0,"setId":0,"iconIdx":115},{"icon":{"paths":["M641.567 633.208v-35.527h64.784v-25.078h-64.784v-119.118h64.784v-25.078h-64.784v-119.118h64.784v-25.078h-64.784v-121.208h64.784v-25.078h-64.784v-8.359c0-71.053-58.514-129.567-129.567-129.567s-129.567 58.514-129.567 129.567v503.641c-54.335 39.706-87.771 104.49-87.771 173.453 0 119.118 96.131 217.339 217.339 217.339 119.118 0 217.339-96.131 217.339-217.339 0-66.873-33.437-131.657-87.771-173.453zM512 988.473c-100.31 0-179.722-81.502-179.722-179.722 0-64.784 33.437-123.298 87.771-154.645v-524.539c0-50.155 41.796-91.951 91.951-91.951s91.951 41.796 91.951 91.951v522.449c54.335 31.347 87.771 89.861 87.771 154.645 0 100.31-79.412 181.812-179.722 181.812zM652.016 524.539v-25.078h35.527v25.078h-35.527zM652.016 380.343v-25.078h35.527v25.078h-35.527zM652.016 236.147v-25.078h35.527v25.078h-35.527zM568.424 675.004v-543.347c0 0 0 0 0 0s0 0 0 0v0 0c0-31.347-25.078-56.424-56.424-56.424s-56.424 25.078-56.424 56.424v0 543.347c-52.245 20.898-87.771 73.143-87.771 131.657 0 79.412 64.784 144.196 144.196 144.196s144.196-64.784 144.196-144.196c0-58.514-35.527-108.669-87.771-131.657zM470.204 135.837v-4.18c0-22.988 18.808-41.796 41.796-41.796s41.796 18.808 41.796 41.796v219.429h-85.682v-215.249z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["thermometer"],"grid":0},"attrs":[{}],"properties":{"order":399,"id":114,"name":"thermometer","prevSize":32,"code":59771},"setIdx":0,"setId":0,"iconIdx":116},{"icon":{"paths":["M200.533 648.533c12.8-38.4 25.6-76.8 38.4-115.2 8.533-25.6 17.067-55.467 29.867-81.067 29.867-81.067 55.467-166.4 85.333-247.467 21.333-55.467 38.4-110.933 59.733-166.4 4.267-12.8 8.533-21.333 12.8-34.133 0-4.267 4.267-4.267 8.533-4.267 59.733 12.8 115.2 21.333 174.933 34.133 81.067 17.067 157.867 34.133 238.933 46.933 55.467 12.8 110.933 21.333 170.667 34.133 4.267 4.267 4.267 4.267 4.267 12.8-29.867 89.6-59.733 179.2-89.6 264.533-21.333 64-42.667 128-64 187.733-25.6 68.267-46.933 140.8-76.8 209.067-17.067 51.2-38.4 98.133-59.733 145.067-12.8 25.6-25.6 51.2-46.933 68.267-17.067 17.067-34.133 21.333-59.733 12.8-59.733-17.067-93.867-59.733-106.667-119.467-4.267-25.6-8.533-51.2-8.533-76.8 0-12.8 0-25.6 0-38.4s-8.533-21.333-17.067-25.6c-76.8-29.867-153.6-64-234.667-93.867-25.6 0-42.667-4.267-59.733-12.8zM554.667 409.6c-17.067 0-29.867 4.267-29.867 17.067-4.267 12.8 4.267 25.6 17.067 29.867 59.733 21.333 123.733 42.667 183.467 59.733 12.8 4.267 25.6 0 29.867-8.533 8.533-17.067 4.267-29.867-12.8-38.4-46.933-17.067-98.133-34.133-145.067-46.933-17.067-4.267-34.133-8.533-42.667-12.8zM477.867 584.533c-4.267 0-8.533 0-12.8 4.267-8.533 4.267-12.8 12.8-12.8 21.333 0 12.8 8.533 21.333 21.333 25.6 59.733 21.333 119.467 38.4 183.467 59.733 17.067 4.267 29.867 0 34.133-12.8s-4.267-25.6-17.067-29.867c-42.667-12.8-85.333-29.867-132.267-42.667-25.6-12.8-46.933-21.333-64-25.6zM806.4 328.533c21.333 0 29.867-4.267 34.133-21.333 4.267-8.533-8.533-21.333-21.333-25.6-21.333-4.267-42.667-12.8-68.267-17.067-38.4-12.8-76.8-21.333-119.467-34.133-17.067-4.267-34.133 8.533-29.867 25.6 0 12.8 12.8 17.067 25.6 21.333 42.667 12.8 89.6 25.6 132.267 38.4 17.067 4.267 34.133 8.533 46.933 12.8zM516.267 213.333c0-12.8-12.8-25.6-25.6-25.6-17.067 0-25.6 8.533-25.6 21.333s12.8 25.6 29.867 25.6c12.8 4.267 21.333-4.267 21.333-21.333zM426.667 418.133c12.8 0 25.6-8.533 25.6-21.333s-12.8-25.6-25.6-25.6c-17.067 0-29.867 8.533-25.6 21.333-4.267 12.8 4.267 25.6 25.6 25.6zM354.133 537.6c-17.067 0-25.6 8.533-25.6 25.6s12.8 25.6 29.867 25.6c12.8 0 25.6-8.533 25.6-21.333-4.267-17.067-17.067-29.867-29.867-29.867z","M4.267 618.667c25.6 12.8 55.467 21.333 81.067 34.133 59.733 25.6 119.467 46.933 174.933 72.533 51.2 21.333 102.4 42.667 157.867 64 8.533 4.267 17.067 8.533 25.6 12.8s12.8 8.533 12.8 17.067c0 42.667 4.267 89.6 21.333 128 8.533 17.067 17.067 38.4 25.6 55.467-12.8-4.267-29.867-8.533-42.667-17.067-46.933-17.067-93.867-38.4-145.067-55.467-42.667-17.067-85.333-38.4-128-55.467-29.867-12.8-59.733-25.6-89.6-38.4s-55.467-38.4-72.533-64c-21.333-42.667-25.6-85.333-25.6-132.267 0-4.267 4.267-12.8 4.267-21.333z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["ticket"],"grid":0},"attrs":[{},{}],"properties":{"order":400,"id":115,"name":"ticket","prevSize":32,"code":59772},"setIdx":0,"setId":0,"iconIdx":117},{"icon":{"paths":["M714.667 405.333c-170.667 0-309.333 138.667-309.333 309.333s138.667 309.333 309.333 309.333 309.333-138.667 309.333-309.333-138.667-309.333-309.333-309.333zM897.28 761.6h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427v89.173z","M353.707 765.867c-31.573-12.8-62.72-25.6-93.44-38.4-55.467-25.6-115.2-46.933-174.933-72.533-25.6-12.8-55.467-21.333-81.067-34.133v0c0 8.533-4.267 17.067-4.267 21.333 0 46.933 4.267 89.6 25.6 132.267 17.067 25.6 42.667 51.2 72.533 64s59.733 25.6 89.6 38.4c42.667 17.067 85.333 38.4 128 55.467 51.2 17.067 98.133 38.4 145.067 55.467 7.68 5.12 17.493 8.96 26.453 11.947-71.253-56.747-120.32-139.52-133.547-233.813z","M372.907 587.093c-4.267 2.56-9.387 3.84-14.507 3.84-17.067 0-29.867-8.533-29.867-25.6s8.533-25.6 25.6-25.6c11.52 0 23.040 10.24 28.16 24.747 57.173-126.293 184.747-214.613 332.373-214.613 78.933 0 152.32 25.173 212.053 68.267 2.56-7.68 5.12-15.36 7.68-23.467 29.867-85.333 59.733-174.933 89.6-264.533 0-8.533 0-8.533-4.267-12.8-59.733-12.8-115.2-21.333-170.667-34.133-81.067-12.8-157.867-29.867-238.933-46.933-59.733-12.8-115.2-21.333-174.933-34.133-4.267 0-8.533 0-8.533 4.267-4.267 12.8-8.533 21.333-12.8 34.133-21.333 55.467-38.4 110.933-59.733 166.4-29.867 81.067-55.467 166.4-85.333 247.467-12.8 25.6-21.333 55.467-29.867 81.067-12.8 38.4-25.6 76.8-38.4 115.2v0c17.067 8.533 34.133 12.8 59.733 12.8 30.72 11.093 60.587 23.040 90.027 34.987 1.707-38.827 9.387-76.373 22.613-111.36zM631.467 232.533c42.667 12.8 81.067 21.333 119.467 34.133 25.6 4.267 46.933 12.8 68.267 17.067 12.8 4.267 25.6 17.067 21.333 25.6-4.267 17.067-12.8 21.333-34.133 21.333-12.8-4.267-29.867-8.533-46.933-12.8-42.667-12.8-89.6-25.6-132.267-38.4-12.8-4.267-25.6-8.533-25.6-21.333-4.267-17.067 12.8-29.867 29.867-25.6zM490.667 189.867c12.8 0 25.6 12.8 25.6 25.6 0 17.067-8.533 25.6-21.333 21.333-17.067 0-29.867-12.8-29.867-25.6s8.533-21.333 25.6-21.333zM426.667 373.333c12.8 0 25.6 12.8 25.6 25.6s-12.8 21.333-25.6 21.333c-21.333 0-29.867-12.8-25.6-25.6-4.267-12.8 8.533-21.333 25.6-21.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["ticketAdd"],"grid":0},"attrs":[{},{},{}],"properties":{"order":401,"id":116,"name":"ticketAdd","prevSize":32,"code":59774},"setIdx":0,"setId":0,"iconIdx":118},{"icon":{"paths":["M256 128c0 72.533-55.467 128-128 128s-128-55.467-128-128 55.467-128 128-128 128 55.467 128 128zM512 384c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM896 768c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM981.333 85.333h-580.267v-85.333h-68.267v256h68.267v-85.333h537.6v298.667h-226.133v85.333h268.8c25.6 0 42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM563.2 1024v-85.333h-520.533c-25.6 0-42.667-17.067-42.667-42.667v-384c0-25.6 17.067-42.667 42.667-42.667h268.8v85.333h-226.133v298.667h477.867v-85.333l128 128-128 128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["traceability"],"grid":0},"attrs":[{}],"properties":{"order":402,"id":117,"name":"traceability","prevSize":32,"code":59775},"setIdx":0,"setId":0,"iconIdx":119},{"icon":{"paths":["M595.2 380.8c32 0 60.8 12.8 83.2 32l6.4 6.4 51.2-51.2-9.6-6.4c-35.2-35.2-83.2-51.2-134.4-51.2-83.2 0-156.8 51.2-188.8 128h-76.8v60.8h64c0 3.2 0 9.6 0 12.8s0 9.6 0 12.8h-64v60.8h80c32 80 105.6 128 188.8 128 51.2 0 99.2-19.2 134.4-51.2l9.6-6.4-51.2-48-6.4 6.4c-22.4 19.2-54.4 32-83.2 32-44.8 0-83.2-22.4-105.6-57.6h118.4v-60.8h-140.8c0-6.4 0-9.6 0-12.8s0-9.6 0-12.8h140.8v-60.8h-118.4c19.2-38.4 57.6-60.8 102.4-60.8zM553.6 48c-256 0-464 208-464 467.2h-86.4l134.4 208 140.8-208h-86.4c0-198.4 163.2-361.6 361.6-361.6s361.6 163.2 361.6 361.6-163.2 361.6-361.6 361.6c-99.2 0-188.8-41.6-252.8-108.8l-73.6 73.6c86.4 86.4 198.4 134.4 329.6 134.4 256 0 464-208 464-464s-208-464-467.2-464z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["transaction"],"grid":0},"attrs":[{}],"properties":{"order":403,"id":118,"name":"transaction","prevSize":32,"code":59675},"setIdx":0,"setId":0,"iconIdx":120},{"icon":{"paths":["M420.267 131.84c-78.507 22.613-121.173 80.213-121.173 161.707v730.027h443.307c0-0.853 0-1.28 0-2.133 0-64.853 0-129.28 0-194.133 0-177.92 0-362.24-0.853-544.853 0-56.747-27.307-101.973-78.080-133.12v0c-9.387-5.973-20.48-10.24-32.427-14.507h-0.853c-5.12-2.133-10.24-4.267-16.213-6.827l-1.28-0.853v-128h-186.027v129.28l-3.84 1.28c-0.853 1.28-1.707 2.133-2.56 2.133zM682.667 965.12h-324.693v-649.813h324.693c0 0 0 649.813 0 649.813zM486.4 58.027h68.267v69.12h-68.267v-69.12zM454.827 186.027h25.173c35.413 0 71.253-0.853 106.667 0 38.4 0.853 67.84 19.2 86.613 54.187 1.28 2.133 2.133 5.12 3.84 7.253v0.853c0.853 1.28 0 2.133 0 2.987v2.987h-314.88l1.28-3.84c5.12-16.213 14.507-30.293 28.587-41.813 18.773-14.507 40.107-22.613 62.72-22.613z","M613.547 738.133c0.853-22.613 0-45.653 0-68.267v-7.253c0-8.107 0-16.213 0-23.467v-0.853c0-8.107 0-17.067 0-25.173v-1.28c0-22.187 0-44.8 0-66.987 0-10.24-1.28-19.2-2.987-26.453-10.24-40.533-47.787-69.973-89.6-69.973-3.84 0-7.253 0-10.24 0.853-47.787 5.973-83.2 44.8-83.627 91.733-0.853 61.867 0 125.867 0 182.187v14.080c0 6.827 0.853 14.080 2.987 21.333 11.093 44.8 53.76 75.093 99.413 70.4 47.36-4.693 83.627-43.947 84.053-90.88zM555.52 666.88c0 22.187 0 43.947 0 66.133s-14.080 38.4-34.56 38.4c-9.387 0-17.493-3.84-24.32-9.387-7.253-6.827-11.093-17.067-11.093-27.733 0-62.293 0-126.293 0-189.013 0-11.093 3.84-21.333 11.093-27.733 6.827-5.973 14.507-9.387 24.32-9.387 20.48 0 34.56 16.213 34.56 38.4s0 43.947 0 66.133v54.187z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["treatments"],"grid":0},"attrs":[{},{}],"properties":{"order":405,"id":119,"name":"treatments","prevSize":32,"code":59776},"setIdx":0,"setId":0,"iconIdx":121},{"icon":{"paths":["M972.8 902.4v-902.4h-44.384v153.184h-832.864v-153.184h-44.384v902.4c-23.904 8.96-40.544 32-40.544 58.88 0 34.56 28.16 62.72 62.72 62.72s62.72-28.16 62.72-62.72c0-26.88-17.056-49.92-40.544-58.88v-9.376h832.864v9.376c-23.904 8.96-40.544 32-40.544 58.88 0 34.56 28.16 62.72 62.72 62.72s62.72-28.16 62.72-62.72c0-26.88-16.64-49.92-40.544-58.88zM928.416 192.864v314.464h-832.864v-314.464h832.864zM139.936 852.896h-44.384v-305.504h832.864v305.504h-788.48z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["trolley"],"grid":0},"attrs":[{}],"properties":{"order":417,"id":120,"name":"trolley","prevSize":32,"code":59648},"setIdx":0,"setId":0,"iconIdx":122},{"icon":{"paths":["M696.747 646.827c-0.427 7.253-1.707 14.080-3.413 20.907-5.547 12.373-13.653 22.613-25.173 29.867-20.48 10.24-40.107 9.813-59.733-2.133-9.813-7.253-17.067-16.64-22.187-28.16-1.707-6.827-2.987-13.653-3.413-20.907 0.427-7.253 2.133-14.080 4.267-20.907 0.427-0.427 0.427-0.427 0.427-0.853 3.413-6.4 7.68-12.373 12.8-17.92 2.133-1.707 4.693-3.84 6.827-5.973 6.4-3.84 13.227-6.827 20.907-8.96 6.827-1.28 13.653-0.853 20.907-0.853 7.253 2.133 14.080 3.84 20.48 8.107v0c17.067 11.52 25.6 27.733 27.307 47.787zM897.28 602.88v0c-12.373-8.96-26.027-12.373-40.96-11.52-7.253 1.28-14.080 3.413-20.907 6.4-11.093 6.827-19.627 16.213-25.173 27.733-2.133 6.827-3.84 13.653-4.267 20.907 0 7.253 1.28 14.080 3.413 20.907 1.707 3.84 3.413 7.253 5.547 11.093 2.56 2.987 5.12 6.4 7.68 9.387 4.267 3.413 8.533 6.4 12.8 9.813 4.267 1.707 8.533 3.84 13.227 4.693 17.92 4.693 34.133 0.853 49.067-9.813 1.707-1.707 3.413-2.987 5.547-4.693 10.667-11.947 16.213-25.6 16.64-41.813-0.853-4.693-1.28-9.813-2.133-14.507-4.267-10.667-10.24-20.907-20.48-28.587zM277.76 593.067c-1.28-0.427-2.56-0.853-3.84-1.28-6.827-0.427-13.653-0.427-20.48 0.853-7.253 1.707-14.507 5.12-20.907 8.96-1.707 1.28-3.413 2.56-5.12 3.84-11.947 11.52-18.347 25.173-19.2 41.387 0 6.4 1.28 12.8 2.987 19.2 0.427 1.707 1.28 2.987 1.707 4.693 3.413 6.4 7.253 12.373 11.947 17.92 2.56 2.133 5.12 4.267 7.68 6.4 6.4 3.84 13.653 6.827 20.907 8.96 6.827 0.853 13.653 1.28 20.907 0.427 6.827-1.28 13.227-3.84 19.2-6.827 14.933-9.813 25.173-23.040 27.733-41.387 3.84-29.013-14.507-56.32-43.52-63.147zM190.72 622.080v0c-3.84-5.973-8.107-11.947-13.227-17.067-2.56-1.707-4.693-3.413-7.253-5.547-20.907-11.52-41.813-11.093-62.293 1.28-1.707 1.28-3.413 2.56-5.12 4.267-11.947 11.52-18.773 25.173-19.2 41.813 0 7.253 1.28 14.080 2.987 20.48 0.427 1.28 1.28 2.987 1.707 4.267 2.987 5.547 6.4 10.667 10.24 15.36 2.987 2.56 5.973 5.12 9.387 8.107 6.4 3.84 13.653 6.827 20.907 8.96 6.827 0.853 14.080 1.28 20.907 0.427 6.827-1.707 13.227-3.84 19.2-6.827 11.52-7.253 19.627-17.493 25.173-29.867 2.133-6.827 2.987-13.653 3.413-20.48-0.853-6.827-2.133-14.080-4.267-20.48-1.707-1.707-2.133-3.413-2.56-4.693zM47.787 536.747h686.933c1.28 0 2.56-1.28 2.56-2.56v-212.48c0-1.28-1.28-2.56-2.56-2.56h-686.933c-1.28 0-2.56 1.28-2.56 2.56v212.053c0 1.707 0.853 2.987 2.56 2.987zM981.333 505.6v133.12c-3.84 9.387-11.093 12.8-20.907 12.373-6.827-0.427-13.653-0.427-20.907 0-2.987 0-2.987-2.56-4.267-4.267-1.28-7.253-4.267-14.507-7.68-20.907-10.667-22.187-25.6-39.253-50.347-46.080-6.827-2.133-13.653-2.56-20.907-1.707-18.773 1.28-33.28 11.093-45.227 24.32-5.12 5.547-9.387 11.52-12.8 18.347-1.28 2.56-2.987 3.413-5.547 3.413-27.307 0-54.613 0-81.92 0-3.413 0-5.547-1.28-7.253-4.267-14.507-21.76-33.707-35.84-60.16-39.253-13.227-1.707-26.027 0-37.547 6.827-16.64 8.107-26.88 21.333-32.427 38.4-2.987 6.827-3.84 13.653-4.267 20.907 0 2.133-1.28 3.413-3.413 3.413-6.827 0-14.080 0-20.907 0-1.28-0.427-1.28-2.133-1.707-3.413 1.707-14.507 6.4-28.16 12.373-41.387 4.267-7.253 8.107-14.507 13.227-20.907 3.84-5.12 8.107-9.813 12.8-14.080 15.36-17.067 30.293-17.067 30.293-17.067h180.48v-180.907h0.427v-0.853h137.813c0 0 3.413 2.133 4.693 8.96 2.133 5.973 4.693 11.947 6.827 17.92 2.133 6.4 4.267 13.227 7.253 19.2 4.693 14.080 9.813 27.733 15.36 41.813 2.133 6.827 4.693 14.080 7.68 20.48v0c2.133 8.96 5.12 17.493 8.96 25.6zM949.76 497.067l-34.56-92.587h-16.64c-0.427 0-0.427 0-0.853 0s-0.427 0-0.853 0h-49.493v81.92c0.853 0.427 1.707 0.427 2.987 0.427 1.707 0 3.84 0 5.547 0 6.827 1.28 13.653 2.133 20.907 2.133 6.827 1.28 14.080 2.133 20.907 2.133 6.827 0.853 13.653 1.707 20.907 2.133v0l20.907 2.133c3.413 0.853 6.827 1.28 10.24 1.707zM340.907 597.333v0c-7.253-12.373-15.787-23.467-26.453-31.573-13.227-11.52-25.173-12.8-25.173-12.8h-172.373c0 0-4.267 0.427-8.96 1.707 0 0-0.427 0-0.427 0-0.427 0-0.427 0-0.853 0.427-4.267 1.28-8.533 2.987-11.093 5.12-8.533 4.693-15.36 11.52-22.187 18.773-6.827 8.107-11.947 17.067-17.493 26.027-4.267 9.387-7.68 19.2-10.667 29.013-5.547 15.787 0 15.787 0 15.787l20.907 0.427c2.133 0 3.413-1.28 3.413-3.413 0.427-7.253 1.707-14.080 4.267-20.907 5.547-17.92 16.64-31.147 33.707-39.253 20.48-10.667 41.387-11.947 62.72-2.56 7.68 3.413 14.933 7.253 17.92 15.787 0.427 1.28 1.707 0.853 2.56 1.28 0 0 0 0 0 0h20.48c0.427-0.427 1.28-0.427 1.28-0.853 2.987-8.533 10.667-12.373 18.347-16.213 1.707-0.853 3.413-2.133 5.547-2.56 23.040-6.827 44.373-4.267 64.427 8.96 19.627 12.8 28.587 32.427 30.72 55.040 0.427 3.413 1.28 4.693 5.12 4.693 6.827 0 13.653 0 20.053 0 0.853-0.853 0.853-2.56 0.853-3.413-1.707-14.507-6.4-28.16-12.8-41.387-0.853-2.56-2.133-5.547-3.84-8.107z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["troncales"],"grid":0},"attrs":[{}],"properties":{"order":406,"id":121,"name":"troncales","prevSize":32,"code":59778},"setIdx":0,"setId":0,"iconIdx":123},{"icon":{"paths":["M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z","M469.333 353.28v-267.947h-128v139.947z","M640 85.333h-85.333c0 0 0 142.080 0 273.92 24.747-21.333 53.333-35.413 85.333-46.080v-227.84z","M563.2 447.147l46.933 46.933c26.453-36.267 69.973-60.587 118.613-60.587 81.92 0 145.92 64 145.92 145.92 0 49.493-23.893 92.16-60.587 118.187l43.947 43.947c47.36-38.827 77.227-97.707 77.227-162.133 0-117.333-96-209.92-209.92-209.92-66.133 0.427-124.16 30.72-162.133 77.653z","M938.667 394.667v-309.333h-85.333v241.92c32 17.493 60.587 38.827 85.333 67.413z","M768 302.080v-216.747h-42.667l3.413 213.333c14.507 0 28.587 0 39.253 3.413z","M298.667 182.613v-97.28h-42.667v54.613z","M524.373 640c8.107 28.587 22.187 54.613 40.96 78.080l-10.667 7.253h-24.747l-160 163.413 49.493 49.92 160-163.413v-24.747l7.253-10.667c21.76 19.627 48.64 33.28 78.507 41.387l-140.8-141.227z","M444.587 583.253c0-7.253 0.427-14.507 1.28-21.333l-104.533-104.533v335.36h24.747l99.413-99.413c-14.080-35.413-20.907-71.253-20.907-110.080z","M85.333 201.387v591.36h85.333v-506.027z","M256 372.053v420.693h42.667v-378.027z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{},{},{}]},"tags":["unavailable"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":407,"id":122,"name":"unavailable","prevSize":32,"code":59779},"setIdx":0,"setId":0,"iconIdx":124},{"icon":{"paths":["M317.013 122.027h-256.853c-33.28 0-60.16 26.88-60.16 60.16v586.24c0 32.853 26.88 60.16 60.16 60.16h257.28c32.853 0 60.16-26.88 60.16-60.16v-586.24c-0.427-32.853-27.307-60.16-60.587-60.16zM307.2 758.613h-237.653v-566.613h237.653v566.613z","M811.093 580.267v-398.080c0-32.853-26.88-60.16-60.16-60.16h-257.28c-32.853 0-59.733 26.88-59.733 60.16v586.24c0 32.853 26.88 60.16 59.733 60.16h110.080v-69.547h-100.267v-567.040h237.653v457.813l69.973-69.547z","M887.040 639.573l-189.44 188.587v73.813h73.813l189.013-189.44z","M903.253 623.36l73.387 72.96 42.667-42.667c2.133-2.133 2.56-3.413 2.987-4.693 1.28-3.413 1.707-6.827 1.707-9.813 0-2.133-0.427-4.267-1.28-6.4v0c-1.28-3.413-2.987-6.4-5.547-9.387l-42.24-41.813c-2.133-2.133-4.267-3.84-6.827-4.693-5.12-2.133-10.24-2.133-16.64 0-1.707 0.427-2.987 1.707-5.12 3.413l-43.093 43.093z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["visible_columns"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":408,"id":123,"name":"visible_columns","prevSize":32,"code":59780},"setIdx":0,"setId":0,"iconIdx":125},{"icon":{"paths":["M1024 337.067c0 42.667-17.067 72.533-46.933 98.133s-72.533 38.4-123.733 38.4c-17.067 0-34.133-4.267-46.933-4.267v554.667h-174.933v-605.867c0-29.867-4.267-46.933-12.8-64-8.533-12.8-25.6-21.333-51.2-21.333-34.133 0-59.733 17.067-76.8 46.933v644.267h-174.933v-605.867c0-29.867-4.267-51.2-12.8-64-12.8-12.8-29.867-17.067-55.467-17.067-34.133 0-59.733 12.8-76.8 42.667v644.267h-170.667v-810.667h162.133l4.267 64c38.4-51.2 93.867-76.8 157.867-76.8 68.267 0 115.2 29.867 140.8 85.333 38.4-55.467 93.867-85.333 162.133-85.333 93.867 0 145.067 46.933 166.4 136.533v0c0 12.8 4.267 25.6 17.067 38.4 12.8 8.533 25.6 17.067 42.667 17.067s34.133-4.267 46.933-17.067 17.067-25.6 17.067-38.4c0-21.333-4.267-38.4-17.067-51.2-12.8-8.533-25.6-12.8-46.933-12.8h-51.2v-81.067h51.2c38.4 0 59.733-21.333 59.733-59.733 0-17.067-4.267-25.6-12.8-38.4-12.8-8.533-25.6-12.8-46.933-12.8-12.8 0-25.6 4.267-38.4 12.8-8.533 8.533-17.067 17.067-17.067 29.867h-106.667c0-25.6 8.533-46.933 21.333-64s34.133-34.133 55.467-42.667 55.467-17.067 85.333-17.067c51.2 0 93.867 12.8 119.467 34.133 29.867 25.6 42.667 55.467 42.667 98.133 0 21.333-4.267 38.4-17.067 55.467s-29.867 29.867-51.2 42.667c25.6 8.533 42.667 21.333 59.733 38.4 8.533 21.333 17.067 42.667 17.067 68.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["volume"],"grid":0},"attrs":[{}],"properties":{"order":409,"id":124,"name":"volume","prevSize":32,"code":59781},"setIdx":0,"setId":0,"iconIdx":126},{"icon":{"paths":["M829.649 394.971l-18.808 50.155-50.155 18.808 50.155 18.808 18.808 50.155 18.808-50.155 50.155-18.808-50.155-18.808-18.808-50.155zM624.849 89.861l-35.527-89.861-33.437 89.861-89.861 35.527 89.861 33.437 33.437 89.861 33.437-89.861 91.951-33.437-89.861-35.527zM969.665 140.016l-20.898-54.335-20.898 54.335-52.245 20.898 52.245 20.898 20.898 52.245 20.898-52.245 54.335-20.898-54.335-20.898zM783.673 311.38l-71.053-71.053c-4.18-4.18-8.359-4.18-12.539-4.18s-8.359 2.090-12.539 4.18l-681.273 681.273c0 0 0 0 0 0v0c-6.269 6.269-6.269 18.808 0 25.078l71.053 71.053c6.269 6.269 16.718 6.269 22.988 0v0c0 0 0 0 0 0l683.363-683.363c6.269-6.269 6.269-16.718 0-22.988zM626.939 453.486l-56.424-56.424 129.567-129.567 56.424 56.424-129.567 129.567z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["wand"],"grid":0},"attrs":[{}],"properties":{"order":410,"id":125,"name":"wand","prevSize":32,"code":59782},"setIdx":0,"setId":0,"iconIdx":127},{"icon":{"paths":["M827.733 426.667c-29.867-145.067-157.867-256-315.733-256-123.733 0-230.4 68.267-285.867 170.667-128 17.067-226.133 123.733-226.133 256 0 140.8 115.2 256 256 256h554.667c119.467 0 213.333-93.867 213.333-213.333 0-110.933-85.333-204.8-196.267-213.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["web"],"grid":0},"attrs":[{}],"properties":{"order":411,"id":126,"name":"web","prevSize":32,"code":59783},"setIdx":0,"setId":0,"iconIdx":128},{"icon":{"paths":["M793.6 226.133c0 0 4.267 0 4.267 0l76.8-12.8v42.667c0 34.133-21.333 68.267-46.933 72.533 0 0-4.267 0-4.267 0l-76.8 12.8v-42.667c0-34.133 21.333-64 46.933-72.533z","M742.4 362.667l38.4-4.267c12.8 0 25.6 12.8 25.6 29.867v21.333l-38.4 4.267c-12.8 0-25.6-12.8-25.6-29.867v-21.333z","M618.667 260.267l68.267-8.533c25.6-4.267 42.667 21.333 42.667 55.467v38.4l-68.267 8.533c-25.6 4.267-42.667-21.333-42.667-55.467l-0-38.4z","M665.6 371.2c4.267 0 4.267 0 0 0l59.733-4.267v29.867c0 25.6-17.067 46.933-34.133 55.467 0 0-4.267 0-4.267 0l-55.467 8.533v-29.867c4.267-29.867 17.067-51.2 34.133-59.733z","M443.733 311.467c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 4.267-8.533 4.267-12.8 4.267z","M443.733 448c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267-0-8.533 4.267-12.8 4.267z","M443.733 580.267c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 0-8.533 4.267-12.8 4.267z","M443.733 712.533c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 0-8.533 4.267-12.8 4.267z","M588.8 580.267c-4.267 0-4.267 0-8.533-4.267s0-8.533 4.267-12.8c68.267-46.933 140.8-59.733 196.267-59.733s93.867 8.533 98.133 8.533c4.267 0 8.533 8.533 8.533 12.8s-8.533 8.533-12.8 8.533v0c0 0-153.6-38.4-277.333 46.933-4.267-4.267-4.267 0-8.533 0z","M588.8 712.533c-4.267 0-4.267 0-8.533-4.267s0-8.533 4.267-12.8c68.267-46.933 140.8-59.733 196.267-59.733s93.867 8.533 98.133 8.533c4.267 0 8.533 8.533 8.533 12.8s-8.533 8.533-12.8 8.533v0c0 0-153.6-38.4-277.333 46.933-4.267-4.267-4.267 0-8.533 0z","M985.6 221.867v-64l-8.533-4.267c-4.267 0-81.067-29.867-179.2-29.867-106.667 0-200.533 34.133-277.333 98.133-76.8-64-170.667-98.133-277.333-98.133-102.4 0-174.933 29.867-179.2 29.867l-12.8 4.267v59.733c-34.133 4.267-51.2 17.067-51.2 34.133v614.4h452.267c17.067 12.8 38.4 21.333 64 21.333s46.933-8.533 64-21.333h443.733v-614.4c0-17.067-17.067-25.6-38.4-29.867v0zM512 814.933c-38.4-17.067-166.4-64-298.667-64-51.2 0-98.133 8.533-136.533 21.333v-597.333c21.333-8.533 85.333-25.6 162.133-25.6 98.133 0 183.467 29.867 256 89.6v358.4l17.067-17.067v234.667zM955.733 776.533c-42.667-17.067-89.6-25.6-140.8-25.6-128 0-251.733 51.2-290.133 64v-238.933l17.067 17.067v-349.867c68.267-59.733 153.6-89.6 256-89.6 76.8 0 136.533 17.067 162.133 25.6v597.333zM955.733 776.533z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{},{},{}]},"tags":["wiki"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":412,"id":127,"name":"wiki","prevSize":32,"code":59785},"setIdx":0,"setId":0,"iconIdx":129},{"icon":{"paths":["M297.6 454.4c-44.8 0-80 35.2-80 83.2s35.2 83.2 80 83.2 80-35.2 80-83.2-35.2-83.2-80-83.2zM297.6 640c-54.4 0-163.2 28.8-163.2 83.2v60.8h326.4v-60.8c0-54.4-108.8-83.2-163.2-83.2zM880 515.2h-316.8c-16 0-28.8-12.8-28.8-28.8s12.8-28.8 28.8-28.8h316.8c16 0 25.6 12.8 25.6 28.8s-12.8 28.8-25.6 28.8zM880 784h-316.8c-16 0-28.8-12.8-28.8-25.6s12.8-25.6 28.8-25.6h316.8c16 0 25.6 12.8 25.6 25.6s-12.8 25.6-25.6 25.6zM880 649.6h-316.8c-16 0-28.8-12.8-28.8-25.6s12.8-25.6 28.8-25.6h316.8c16 0 25.6 12.8 25.6 25.6s-12.8 25.6-25.6 25.6zM624 48v236.8c0 25.6-22.4 48-48 48h-131.2c-25.6 0-48-22.4-48-48v-236.8c0-25.6 22.4-48 48-48h131.2c28.8 0 48 22.4 48 48zM1024 294.4v640c0 51.2-41.6 89.6-89.6 89.6h-844.8c-48 0-89.6-41.6-89.6-89.6v-640c0-51.2 41.6-89.6 89.6-89.6h275.2v54.4h-275.2c-19.2 0-35.2 16-35.2 35.2v640c0 19.2 16 35.2 35.2 35.2h841.6c19.2 0 35.2-16 35.2-35.2v-640c0-19.2-16-35.2-35.2-35.2h-275.2v-54.4h275.2c51.2 0 92.8 38.4 92.8 89.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["worker"],"grid":0},"attrs":[{}],"properties":{"order":413,"id":128,"name":"worker","prevSize":32,"code":59786},"setIdx":0,"setId":0,"iconIdx":130},{"icon":{"paths":["M243.2 512c-12.8-17.067-25.6-34.133-38.4-51.2-34.133-46.933-68.267-98.133-89.6-153.6-17.067-34.133-25.6-72.533-17.067-110.933 8.533-51.2 38.4-89.6 85.333-110.933 59.733-25.6 132.267-8.533 174.933 34.133 34.133 38.4 42.667 81.067 34.133 132.267-8.533 46.933-29.867 85.333-51.2 123.733-29.867 46.933-59.733 89.6-89.6 132.267-4.267 0-4.267 0-8.533 4.267zM247.467 136.533c-46.933 0-89.6 38.4-89.6 89.6 0 46.933 38.4 89.6 85.333 89.6s89.6-38.4 89.6-85.333c0-55.467-38.4-93.867-85.333-93.867z","M490.667 580.267l-17.067-25.6 12.8-8.533-34.133-183.467c0 0 0-8.533-8.533-8.533l-42.667-4.267c0 0-68.267 110.933-157.867 217.6 4.267-4.267-93.867-110.933-132.267-187.733l-110.933 51.2c0 0-4.267 0-4.267 8.533l25.6 145.067 34.133 21.333-8.533 21.333-17.067-8.533 59.733 332.8 213.333-102.4 238.933 21.333-51.2-290.133zM149.333 674.133c-12.8-4.267-29.867-12.8-42.667-17.067 4.267-8.533 4.267-17.067 8.533-21.333 17.067 0 29.867 4.267 42.667 12.8-4.267 8.533-4.267 17.067-8.533 25.6zM256 691.2c-17.067 0-34.133-4.267-46.933-4.267 0-8.533 4.267-17.067 4.267-25.6 12.8 0 29.867 4.267 42.667 4.267 0 8.533 0 17.067 0 25.6zM315.733 682.667c-4.267-8.533-4.267-12.8-8.533-21.333 17.067-8.533 29.867-17.067 42.667-21.333 4.267 8.533 8.533 12.8 8.533 21.333-12.8 8.533-25.6 12.8-42.667 21.333zM405.333 631.467c-4.267-8.533-8.533-12.8-12.8-21.333 12.8-8.533 25.6-17.067 38.4-25.6 4.267 4.267 8.533 12.8 12.8 21.333-8.533 8.533-21.333 17.067-38.4 25.6z","M972.8 499.2l-29.867-25.6 12.8-21.333 12.8 8.533-34.133-187.733c0 0 0-8.533-8.533-8.533l-226.133-17.067-209.067 93.867c0 0-8.533 4.267-4.267 12.8l29.867 170.667 21.333 12.8-17.067 17.067 55.467 307.2 213.333-102.4 234.667 21.333-51.2-281.6zM580.267 494.933c-4.267-4.267-8.533-12.8-12.8-17.067 12.8-12.8 21.333-21.333 29.867-34.133 4.267 4.267 12.8 12.8 17.067 17.067-12.8 8.533-25.6 21.333-34.133 34.133zM657.067 418.133c-4.267-4.267-8.533-12.8-12.8-21.333 12.8-8.533 25.6-17.067 38.4-25.6 8.533 8.533 12.8 17.067 12.8 21.333-12.8 8.533-25.6 17.067-38.4 25.6zM797.867 388.267c-12.8-4.267-25.6-4.267-42.667-4.267 0-8.533 0-17.067 0-25.6 17.067 0 34.133 0 51.2 4.267-4.267 8.533-4.267 17.067-8.533 25.6zM891.733 439.467c-12.8-8.533-25.6-17.067-38.4-25.6 4.267-8.533 8.533-12.8 12.8-21.333 12.8 8.533 25.6 17.067 38.4 25.6-4.267 8.533-8.533 12.8-12.8 21.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["zone"],"grid":0},"attrs":[{},{},{}],"properties":{"order":414,"id":129,"name":"zone","prevSize":32,"code":59787},"setIdx":0,"setId":0,"iconIdx":131}],"height":1024,"metadata":{"name":"icon"},"preferences":{"showGlyphs":true,"showCodes":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"autoHost":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"name":"SalixFont","classSelector":".icon","height":32,"columns":16,"margin":16},"historySize":50,"quickUsageToken":{"UntitledProject":"ZmYxYzQxMWE2OSMxNzM3NDYxMjEwI2swcXdSV2VqVjRneDJTRHJoVmhjQStTbXk2dDNXb1NlSkRESGc5YTdHbi9k"},"gridSize":16}} \ No newline at end of file diff --git a/src/css/icons.scss b/src/css/icons.scss index e1d19cc54..e297fe1e3 100644 --- a/src/css/icons.scss +++ b/src/css/icons.scss @@ -1,10 +1,10 @@ @font-face { font-family: 'icon'; - src: url('fonts/icon.eot?y0x93o'); - src: url('fonts/icon.eot?y0x93o#iefix') format('embedded-opentype'), - url('fonts/icon.ttf?y0x93o') format('truetype'), - url('fonts/icon.woff?y0x93o') format('woff'), - url('fonts/icon.svg?y0x93o#icon') format('svg'); + src: url('fonts/icon.eot?7j3xju'); + src: url('fonts/icon.eot?7j3xju#iefix') format('embedded-opentype'), + url('fonts/icon.ttf?7j3xju') format('truetype'), + url('fonts/icon.woff?7j3xju') format('woff'), + url('fonts/icon.svg?7j3xju#icon') format('svg'); font-weight: normal; font-style: normal; font-display: block; @@ -25,8 +25,14 @@ -moz-osx-font-smoothing: grayscale; } -.icon-entry_lastbuys:before { - content: "\e91a"; +.icon-hasItemLost:before { + content: "\e957"; +} +.icon-hasItemDelay:before { + content: "\e96d"; +} +.icon-add_entries:before { + content: "\e953"; } .icon-100:before { content: "\e901"; @@ -52,6 +58,9 @@ .icon-addperson:before { content: "\e908"; } +.icon-agencia_tributaria:before { + content: "\e948"; +} .icon-agency:before { content: "\e92a"; } @@ -189,6 +198,9 @@ .icon-entry:before { content: "\e937"; } +.icon-entry_lastbuys:before { + content: "\e91a"; +} .icon-exit:before { content: "\e938"; } From c3b4856125bbe91f4d2ae465f4e0300f8f8f64a9 Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Thu, 23 Jan 2025 10:05:27 +0100 Subject: [PATCH 37/79] feat: refs #6629 traduction message --- src/pages/Customer/components/CustomerAddressEdit.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/pages/Customer/components/CustomerAddressEdit.vue b/src/pages/Customer/components/CustomerAddressEdit.vue index 15894509e..10d5107e2 100644 --- a/src/pages/Customer/components/CustomerAddressEdit.vue +++ b/src/pages/Customer/components/CustomerAddressEdit.vue @@ -123,7 +123,6 @@ function getPayload() { } async function handleDialog(data) { - console.error(data); const payload = getPayload(); const body = { data, payload }; if (payload.updates.length) { @@ -132,7 +131,7 @@ async function handleDialog(data) { component: VnConfirm, componentProps: { title: t( - 'Do you also want to modify the states of all the tickets that are about to be served?' + 'confirmTicket' ), message: t('confirmDeletionMessage'), }, @@ -382,4 +381,9 @@ es: Remove note: Eliminar nota Longitude: Longitud Latitude: Latitud + confirmTicket: ¿Desea modificar también los estados de todos los tickets que están a punto de ser servidos? + confirmDeletionMessage: Si le das a aceptar, se modificaran todas las notas de los ticket a futuro +en: + confirmTicket: Do you also want to modify the states of all the tickets that are about to be served? + confirmDeletionMessage: If you click accept, all the notes of the future tickets will be modified </i18n> From f01ed28d9503fd7298cee7a8fd3860278424730d Mon Sep 17 00:00:00 2001 From: provira <provira@verdnatura.es> Date: Thu, 23 Jan 2025 10:56:37 +0100 Subject: [PATCH 38/79] feat: refs #8322 added RouteRoadmap and Agency --- src/pages/Route/Agency/AgencyList.vue | 49 ++++--- src/pages/Route/Agency/Card/AgencyCard.vue | 14 +- src/pages/Route/Agency/locale/en.yml | 2 + src/pages/Route/Agency/locale/es.yml | 2 + src/pages/Route/Roadmap/RoadmapCard.vue | 16 +-- src/pages/Route/RouteRoadmap.vue | 77 +++++----- src/pages/Route/locale/en.yml | 5 +- src/pages/Route/locale/es.yml | 5 +- src/router/modules/agency.js | 155 ++++++++++++--------- src/router/modules/roadmap.js | 92 +++++++----- 10 files changed, 232 insertions(+), 185 deletions(-) diff --git a/src/pages/Route/Agency/AgencyList.vue b/src/pages/Route/Agency/AgencyList.vue index 9d456c1da..6694afdb1 100644 --- a/src/pages/Route/Agency/AgencyList.vue +++ b/src/pages/Route/Agency/AgencyList.vue @@ -2,11 +2,12 @@ import { computed } from 'vue'; import { useRouter } from 'vue-router'; import { useI18n } from 'vue-i18n'; -import VnSearchbar from 'src/components/ui/VnSearchbar.vue'; import VnTable from 'components/VnTable/VnTable.vue'; +import VnSection from 'src/components/common/VnSection.vue'; const { t } = useI18n(); const router = useRouter(); +const dataKey = 'AgencyList'; function navigate(id) { router.push({ path: `/agency/${id}` }); } @@ -67,26 +68,32 @@ const columns = computed(() => [ ]); </script> <template> - <VnSearchbar - :info="t('You can search by name')" - :label="t('Search agency')" - data-key="AgencyList" - :expr-builder="exprBuilder" - /> - <div class="list-container"> - <div class="list"> - <VnTable - data-key="AgencyList" - url="Agencies" - order="name" - :columns="columns" - :right-search="false" - :use-model="true" - redirect="agency" - default-mode="card" - /> + <VnSection + :data-key="dataKey" + :columns="columns" + prefix="agency" + :right-filter="false" + :array-data-props="{ + url: 'Agencies', + order: 'name', + exprBuilder, + }" + > + <template #body> + <div class="list-container"> + <div class="list"> + <VnTable + :data-key="dataKey" + :columns="columns" + :right-search="false" + :use-model="true" + redirect="agency" + default-mode="card" + /> + </div> </div> - </div> + </template> + </VnSection> </template> <style lang="scss" scoped> .list { @@ -104,8 +111,6 @@ const columns = computed(() => [ es: isOwn: Tiene propietario isAnyVolumeAllowed: Permite cualquier volumen - Search agency: Buscar agencia - You can search by name: Puedes buscar por nombre en: isOwn: Has owner isAnyVolumeAllowed: Allows any volume diff --git a/src/pages/Route/Agency/Card/AgencyCard.vue b/src/pages/Route/Agency/Card/AgencyCard.vue index 9935fc6eb..35685790a 100644 --- a/src/pages/Route/Agency/Card/AgencyCard.vue +++ b/src/pages/Route/Agency/Card/AgencyCard.vue @@ -1,17 +1,7 @@ <script setup> import AgencyDescriptor from 'pages/Route/Agency/Card/AgencyDescriptor.vue'; -import VnCard from 'components/common/VnCard.vue'; +import VnCardBeta from 'src/components/common/VnCardBeta.vue'; </script> <template> - <VnCard - data-key="Agency" - base-url="Agencies" - :descriptor="AgencyDescriptor" - search-data-key="AgencyList" - :searchbar-props="{ - url: 'Agencies', - label: 'agency.searchBar.label', - info: 'agency.searchBar.info', - }" - /> + <VnCardBeta data-key="Agency" base-url="Agencies" :descriptor="AgencyDescriptor" /> </template> diff --git a/src/pages/Route/Agency/locale/en.yml b/src/pages/Route/Agency/locale/en.yml index 3cc3d69e8..93f8b4aaa 100644 --- a/src/pages/Route/Agency/locale/en.yml +++ b/src/pages/Route/Agency/locale/en.yml @@ -1,4 +1,6 @@ agency: + search: Search agency + searchInfo: You can search by name isOwn: Own isAnyVolumeAllowed: Any volume allowed notification: diff --git a/src/pages/Route/Agency/locale/es.yml b/src/pages/Route/Agency/locale/es.yml index 5c594a41d..1efed0e9c 100644 --- a/src/pages/Route/Agency/locale/es.yml +++ b/src/pages/Route/Agency/locale/es.yml @@ -1,4 +1,6 @@ agency: + search: Buscar agencia + searchInfo: Puedes buscar por nombre isOwn: Propio isAnyVolumeAllowed: Cualquier volumen removeItem: Agencia eliminada correctamente diff --git a/src/pages/Route/Roadmap/RoadmapCard.vue b/src/pages/Route/Roadmap/RoadmapCard.vue index 148d16ac9..0b81de673 100644 --- a/src/pages/Route/Roadmap/RoadmapCard.vue +++ b/src/pages/Route/Roadmap/RoadmapCard.vue @@ -1,19 +1,7 @@ <script setup> -import VnCard from 'components/common/VnCard.vue'; +import VnCardBeta from 'components/common/VnCardBeta.vue'; import RoadmapDescriptor from 'pages/Route/Roadmap/RoadmapDescriptor.vue'; -import RoadmapFilter from 'pages/Route/Roadmap/RoadmapFilter.vue'; </script> <template> - <VnCard - data-key="Roadmap" - base-url="Roadmaps" - :descriptor="RoadmapDescriptor" - :filter-panel="RoadmapFilter" - search-data-key="RoadmapList" - :searchbar-props="{ - url: 'Roadmaps', - label: 'Search roadmap', - info: 'You can search by roadmap id or customer name', - }" - /> + <VnCardBeta data-key="Roadmap" base-url="Roadmaps" :descriptor="RoadmapDescriptor" /> </template> diff --git a/src/pages/Route/RouteRoadmap.vue b/src/pages/Route/RouteRoadmap.vue index 168e52b23..3515d3568 100644 --- a/src/pages/Route/RouteRoadmap.vue +++ b/src/pages/Route/RouteRoadmap.vue @@ -15,11 +15,13 @@ import RoadmapSummary from 'pages/Route/Roadmap/RoadmapSummary.vue'; import VnConfirm from 'components/ui/VnConfirm.vue'; import VnInputDate from 'components/common/VnInputDate.vue'; import VnInputTime from 'src/components/common/VnInputTime.vue'; +import VnSection from 'src/components/common/VnSection.vue'; const { viewSummary } = useSummaryDialog(); const { t } = useI18n(); const quasar = useQuasar(); const selectedRows = ref([]); +const dataKey = 'RoadmapList'; const columns = computed(() => [ { align: 'left', @@ -112,7 +114,7 @@ const removeSelection = async () => { await Promise.all( selectedRows.value.map((roadmap) => { axios.delete(`Roadmaps/${roadmap.id}`); - }) + }), ); }; @@ -131,11 +133,6 @@ function confirmRemove() { </script> <template> - <VnSearchbar - data-key="RoadmapList" - :label="t('Search roadmaps')" - :info="t('You can search by roadmap reference')" - /> <QDialog v-model="isCloneDialogOpen"> <QCard style="min-width: 350px"> <QCardSection> @@ -177,39 +174,49 @@ function confirmRemove() { </QBtn> </template> </VnSubToolbar> - <VnTable - ref="tableRef" - data-key="RoadmapList" - url="roadmaps" + <VnSection + :data-key="dataKey" :columns="columns" - :right-search="true" - :use-model="true" - default-mode="table" - v-model:selected="selectedRows" - table-height="85vh" - :table="{ - selection: 'multiple', + prefix="route.roadmap" + :array-data-props="{ + url: 'roadmaps', }" - redirect="route/roadmap" - :create="{ - urlCreate: 'Roadmaps', - title: t('Create routemap'), - onDataSaved: ({ id }) => tableRef.redirect(id), - formInitialData: {}, - }" - :disable-option="{ card: true }" > - <template #column-etd="{ row }"> - {{ toDateHourMin(row.etd) }} + <template #body> + <VnTable + ref="tableRef" + :data-key="dataKey" + :columns="columns" + :right-search="true" + :use-model="true" + default-mode="table" + v-model:selected="selectedRows" + table-height="85vh" + :table="{ + selection: 'multiple', + }" + redirect="route/roadmap" + :create="{ + urlCreate: 'Roadmaps', + title: t('Create routemap'), + onDataSaved: ({ id }) => tableRef.redirect(id), + formInitialData: {}, + }" + :disable-option="{ card: true }" + > + <template #column-etd="{ row }"> + {{ toDateHourMin(row.etd) }} + </template> + <template #column-supplierFk="{ row }"> + {{ row.supplierFk }} + </template> + <template #more-create-dialog="{ data }"> + <VnInputDate v-model="data.etd" /> + <VnInputTime v-model="data.etd" /> + </template> + </VnTable> </template> - <template #column-supplierFk="{ row }"> - {{ row.supplierFk }} - </template> - <template #more-create-dialog="{ data }"> - <VnInputDate v-model="data.etd" /> - <VnInputTime v-model="data.etd" /> - </template> - </VnTable> + </VnSection> </template> <style lang="scss" scoped> diff --git a/src/pages/Route/locale/en.yml b/src/pages/Route/locale/en.yml index 4da42e5db..3f5d846cb 100644 --- a/src/pages/Route/locale/en.yml +++ b/src/pages/Route/locale/en.yml @@ -1,4 +1,7 @@ route: + roadmap: + search: Search roadmap + searchInfo: You can search by roadmap reference params: etd: ETD tractorPlate: Plate @@ -52,4 +55,4 @@ route: clientFk: Client id shipped: Preparation date viewCmr: View CMR - downloadCmrs: Download CMRs + downloadCmrs: Download CMRs \ No newline at end of file diff --git a/src/pages/Route/locale/es.yml b/src/pages/Route/locale/es.yml index 2f85434df..19d9e0c2f 100644 --- a/src/pages/Route/locale/es.yml +++ b/src/pages/Route/locale/es.yml @@ -1,4 +1,7 @@ route: + roadmap: + search: Buscar troncales + searchInfo: Puedes buscar por referencia del troncal params: agencyModeName: Agencia Ruta agencyAgreement: Agencia Acuerdo @@ -52,4 +55,4 @@ route: clientFk: Id cliente shipped: Fecha preparación viewCmr: Ver CMR - downloadCmrs: Descargar CMRs + downloadCmrs: Descargar CMRs \ No newline at end of file diff --git a/src/router/modules/agency.js b/src/router/modules/agency.js index c714865fa..9469b754a 100644 --- a/src/router/modules/agency.js +++ b/src/router/modules/agency.js @@ -1,91 +1,112 @@ import { RouterView } from 'vue-router'; +const agencyCard = { + path: ':id', + name: 'AgencyCard', + component: () => import('src/pages/Route/Agency/Card/AgencyCard.vue'), + redirect: { name: 'AgencySummary' }, + meta: { + menu: ['AgencyBasicData', 'AgencyModes', 'AgencyWorkCenters', 'AgencyLog'], + }, + children: [ + { + name: 'AgencySummary', + path: 'summary', + meta: { + title: 'summary', + icon: 'view_list', + }, + component: () => import('src/pages/Route/Agency/Card/AgencySummary.vue'), + }, + { + name: 'AgencyBasicData', + path: 'basic-data', + meta: { + title: 'basicData', + icon: 'vn:settings', + }, + component: () => import('pages/Route/Agency/Card/AgencyBasicData.vue'), + }, + { + path: 'workCenter', + name: 'AgencyWorkCenterCard', + redirect: { name: 'AgencyWorkCenters' }, + children: [ + { + path: '', + name: 'AgencyWorkCenters', + meta: { + icon: 'apartment', + title: 'workCenters', + }, + component: () => + import('src/pages/Route/Agency/Card/AgencyWorkcenter.vue'), + }, + ], + }, + { + path: 'modes', + name: 'AgencyModesCard', + redirect: { name: 'AgencyModes' }, + children: [ + { + path: '', + name: 'AgencyModes', + meta: { + icon: 'format_list_bulleted', + title: 'modes', + }, + component: () => + import('src/pages/Route/Agency/Card/AgencyModes.vue'), + }, + ], + }, + { + name: 'AgencyLog', + path: 'log', + meta: { + title: 'log', + icon: 'history', + }, + component: () => import('src/pages/Route/Agency/Card/AgencyLog.vue'), + }, + ], +}; + export default { - path: '/agency', name: 'Agency', + path: '/agency', meta: { title: 'agency', icon: 'garage_home', moduleName: 'Agency', }, component: RouterView, - redirect: { name: 'AgencyCard' }, - menus: { - main: [], - card: ['AgencyBasicData', 'AgencyModes', 'AgencyWorkCenters', 'AgencyLog'], - }, + redirect: { name: 'RouteMain' }, children: [ { - path: '/agency/:id', - name: 'AgencyCard', - component: () => import('src/pages/Route/Agency/Card/AgencyCard.vue'), - redirect: { name: 'AgencySummary' }, + name: 'AgencyMain', + path: '', + component: () => import('src/components/common/VnModule.vue'), + redirect: { name: 'AgencyIndexMain' }, children: [ { - name: 'AgencySummary', - path: 'summary', - meta: { - title: 'summary', - icon: 'view_list', - }, - component: () => - import('src/pages/Route/Agency/Card/AgencySummary.vue'), - }, - { - name: 'AgencyBasicData', - path: 'basic-data', - meta: { - title: 'basicData', - icon: 'vn:settings', - }, - component: () => - import('pages/Route/Agency/Card/AgencyBasicData.vue'), - }, - { - path: 'workCenter', - name: 'AgencyWorkCenterCard', - redirect: { name: 'AgencyWorkCenters' }, + name: 'AgencyIndexMain', + path: '', + redirect: { name: 'AgencyList' }, + component: () => import('src/pages/Route/Agency/AgencyList.vue'), children: [ { - path: '', - name: 'AgencyWorkCenters', + name: 'AgencyList', + path: 'list', meta: { - icon: 'apartment', - title: 'workCenters', + title: 'list', + icon: 'view_list', }, - component: () => - import( - 'src/pages/Route/Agency/Card/AgencyWorkcenter.vue' - ), }, + agencyCard, ], }, - { - path: 'modes', - name: 'AgencyModesCard', - redirect: { name: 'AgencyModes' }, - children: [ - { - path: '', - name: 'AgencyModes', - meta: { - icon: 'format_list_bulleted', - title: 'modes', - }, - component: () => - import('src/pages/Route/Agency/Card/AgencyModes.vue'), - }, - ], - }, - { - name: 'AgencyLog', - path: 'log', - meta: { - title: 'log', - icon: 'history', - }, - component: () => import('src/pages/Route/Agency/Card/AgencyLog.vue'), - }, ], }, ], diff --git a/src/router/modules/roadmap.js b/src/router/modules/roadmap.js index 6b2aa6a13..3f47f0fa2 100644 --- a/src/router/modules/roadmap.js +++ b/src/router/modules/roadmap.js @@ -1,5 +1,44 @@ import { RouterView } from 'vue-router'; +const roadmapCard = { + path: ':id', + name: 'RoadmapCard', + component: () => import('src/pages/Route/Roadmap/RoadmapCard.vue'), + redirect: { name: 'RoadmapSummary' }, + meta: { + menu: ['RoadmapBasicData', 'RoadmapStops'], + }, + children: [ + { + name: 'RoadmapSummary', + path: 'summary', + meta: { + title: 'summary', + icon: 'open_in_new', + }, + component: () => import('pages/Route/Roadmap/RoadmapSummary.vue'), + }, + { + name: 'RoadmapBasicData', + path: 'basic-data', + meta: { + title: 'basicData', + icon: 'vn:settings', + }, + component: () => import('pages/Route/Roadmap/RoadmapBasicData.vue'), + }, + { + name: 'RoadmapStops', + path: 'stops', + meta: { + title: 'stops', + icon: 'vn:lines', + }, + component: () => import('pages/Route/Roadmap/RoadmapStops.vue'), + }, + ], +}; + export default { path: '/route/roadmap', name: 'Roadmap', @@ -9,43 +48,30 @@ export default { moduleName: 'Roadmap', }, component: RouterView, - redirect: { name: 'RouteMain' }, - menus: { - card: ['RoadmapBasicData', 'RoadmapStops'], - }, + redirect: { name: 'RoadmapMain' }, children: [ { - name: 'RouteRoadmapCard', - path: ':id', - component: () => import('src/pages/Route/Roadmap/RoadmapCard.vue'), - redirect: { name: 'RoadmapSummary' }, + name: 'RoadmapMain', + path: '', + component: () => import('src/components/common/VnModule.vue'), + redirect: { name: 'RoadmapIndexMain' }, children: [ { - name: 'RoadmapSummary', - path: 'summary', - meta: { - title: 'summary', - icon: 'open_in_new', - }, - component: () => import('pages/Route/Roadmap/RoadmapSummary.vue'), - }, - { - name: 'RoadmapBasicData', - path: 'basic-data', - meta: { - title: 'basicData', - icon: 'vn:settings', - }, - component: () => import('pages/Route/Roadmap/RoadmapBasicData.vue'), - }, - { - name: 'RoadmapStops', - path: 'stops', - meta: { - title: 'stops', - icon: 'vn:lines', - }, - component: () => import('pages/Route/Roadmap/RoadmapStops.vue'), + name: 'RoadmapIndexMain', + path: '', + redirect: { name: 'RoadmapList' }, + component: () => import('src/pages/Route/RouteRoadmap.vue'), + children: [ + { + name: 'RoadmapList', + path: 'list', + meta: { + title: 'roadmapList', + icon: 'view_list', + }, + }, + roadmapCard, + ], }, ], }, From cd5654d91efec829bd14aff996fc1f6a38e8dca4 Mon Sep 17 00:00:00 2001 From: provira <provira@verdnatura.es> Date: Thu, 23 Jan 2025 10:57:16 +0100 Subject: [PATCH 39/79] Merge branch '8322-route' of https: refs #8322//gitea.verdnatura.es/verdnatura/salix-front into 8322-route --- src/components/NavBar.vue | 1 + src/components/VnTable/VnTable.vue | 8 +- src/components/common/RightAdvancedMenu.vue | 53 ++++ src/components/common/RightMenu.vue | 2 +- src/components/common/VnLog.vue | 278 ++++++++++---------- src/components/common/VnSection.vue | 11 +- src/components/ui/VnUsesMana.vue | 2 +- src/composables/useHasContent.js | 2 +- src/i18n/locale/en.yml | 3 +- src/i18n/locale/es.yml | 1 + src/pages/Claim/Card/ClaimAction.vue | 105 ++++---- src/pages/Claim/ClaimList.vue | 2 +- src/pages/Order/Card/OrderCatalog.vue | 23 +- src/pages/Order/Card/OrderLines.vue | 41 +-- src/pages/Order/OrderList.vue | 2 +- src/pages/Ticket/Card/TicketBoxing.vue | 134 +++++----- src/pages/Ticket/Card/TicketComponents.vue | 209 ++++++++------- src/pages/Ticket/Card/TicketSale.vue | 59 +++-- src/pages/Ticket/TicketList.vue | 2 +- src/pages/Worker/Card/WorkerCalendar.vue | 28 +- src/pages/Worker/Card/WorkerTimeControl.vue | 57 ++-- src/pages/Worker/WorkerList.vue | 2 +- src/router/modules/ticket.js | 2 +- src/stores/useStateStore.js | 7 + 24 files changed, 575 insertions(+), 459 deletions(-) create mode 100644 src/components/common/RightAdvancedMenu.vue diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index ef5bdc6ac..040dde628 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -61,6 +61,7 @@ onMounted(() => stateStore.setMounted()); /> <QSpace /> <div id="searchbar" class="searchbar"></div> + <div id="searchbar-after"></div> <QSpace /> <div class="q-pl-sm q-gutter-sm row items-center no-wrap"> <div id="actions-prepend"></div> diff --git a/src/components/VnTable/VnTable.vue b/src/components/VnTable/VnTable.vue index 95b4b5866..17fabf10d 100644 --- a/src/components/VnTable/VnTable.vue +++ b/src/components/VnTable/VnTable.vue @@ -181,7 +181,7 @@ onMounted(() => { watch( () => $props.columns, (value) => splitColumns(value), - { immediate: true } + { immediate: true }, ); const isTableMode = computed(() => mode.value == TABLE_MODE); @@ -212,7 +212,7 @@ function splitColumns(columns) { // Status column if (splittedColumns.value.chips.length) { splittedColumns.value.columnChips = splittedColumns.value.chips.filter( - (c) => !c.isId + (c) => !c.isId, ); if (splittedColumns.value.columnChips.length) splittedColumns.value.columns.unshift({ @@ -484,7 +484,9 @@ function handleSelection({ evt, added, rows: selectedRows }, rows) { btn.isPrimary ? 'text-primary-light' : 'color-vn-text ' " :style="`visibility: ${ - (btn.show && btn.show(row)) ?? true ? 'visible' : 'hidden' + ((btn.show && btn.show(row)) ?? true) + ? 'visible' + : 'hidden' }`" @click="btn.action(row)" /> diff --git a/src/components/common/RightAdvancedMenu.vue b/src/components/common/RightAdvancedMenu.vue new file mode 100644 index 000000000..f5797a164 --- /dev/null +++ b/src/components/common/RightAdvancedMenu.vue @@ -0,0 +1,53 @@ +<script setup> +import { useI18n } from 'vue-i18n'; +import { useStateStore } from 'stores/useStateStore'; +import { useHasContent } from 'src/composables/useHasContent'; +import { watch } from 'vue'; + +const { t } = useI18n(); +const stateStore = useStateStore(); +const hasContent = useHasContent('#advanced-menu'); + +const $props = defineProps({ + isMainSection: { + type: Boolean, + default: false, + }, +}); + +watch( + () => $props.isMainSection, + (val) => { + if (stateStore) stateStore.rightAdvancedDrawer = val; + }, + { immediate: true } +); +</script> +<template> + <Teleport to="#searchbar-after" v-if="stateStore.isHeaderMounted()"> + <QBtn + v-if="hasContent || $slots['advanced-menu']" + flat + @click="stateStore.toggleRightAdvancedDrawer()" + round + dense + icon="tune" + > + <QTooltip bottom anchor="bottom right"> + {{ t('globals.advancedMenu') }} + </QTooltip> + </QBtn> + </Teleport> + <QDrawer + v-model="stateStore.rightAdvancedDrawer" + side="right" + :width="256" + :overlay="!isMainSection" + v-bind="$attrs" + > + <QScrollArea class="fit"> + <div id="advanced-menu"></div> + <slot v-if="!hasContent" name="advanced-menu" /> + </QScrollArea> + </QDrawer> +</template> diff --git a/src/components/common/RightMenu.vue b/src/components/common/RightMenu.vue index 9512d32d4..1eded089e 100644 --- a/src/components/common/RightMenu.vue +++ b/src/components/common/RightMenu.vue @@ -17,7 +17,7 @@ onMounted(() => { }); </script> <template> - <Teleport to="#actions-append" v-if="stateStore.isHeaderMounted()"> + <Teleport to="#actions-prepend" v-if="stateStore.isHeaderMounted()"> <div class="row q-gutter-x-sm"> <QBtn v-if="hasContent || $slots['right-panel']" diff --git a/src/components/common/VnLog.vue b/src/components/common/VnLog.vue index 9eca3c711..fb80a7175 100644 --- a/src/components/common/VnLog.vue +++ b/src/components/common/VnLog.vue @@ -15,6 +15,7 @@ import FetchData from '../FetchData.vue'; import VnSelect from './VnSelect.vue'; import VnUserLink from '../ui/VnUserLink.vue'; import VnPaginate from '../ui/VnPaginate.vue'; +import RightMenu from './RightMenu.vue'; const stateStore = useStateStore(); const validationsStore = useValidator(); @@ -130,7 +131,7 @@ const actionsIcon = { }; const validDate = new RegExp( /^(-?(?:[1-9][0-9]*)?[0-9]{4})-(1[0-2]|0[1-9])-(3[01]|0[1-9]|[12][0-9])/.source + - /T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])(.[0-9]+)?(Z)?$/.source + /T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])(.[0-9]+)?(Z)?$/.source, ); function castJsonValue(value) { @@ -192,7 +193,7 @@ function getLogTree(data) { user: log.user, userFk: log.userFk, logs: [], - }) + }), ); } // Model @@ -210,7 +211,7 @@ function getLogTree(data) { id: log.changedModelId, showValue: log.changedModelValue, logs: [], - }) + }), ); nLogs = 0; } @@ -282,7 +283,7 @@ function setDate(type) { to = date.adjustDate( to, { hour: 21, minute: 59, second: 59, millisecond: 999 }, - true + true, ); switch (type) { @@ -365,7 +366,7 @@ async function clearFilter() { dateTo.value = undefined; userRadio.value = undefined; Object.keys(checkboxOptions.value).forEach( - (opt) => (checkboxOptions.value[opt].selected = false) + (opt) => (checkboxOptions.value[opt].selected = false), ); await applyFilter(); } @@ -378,7 +379,7 @@ watch( () => router.currentRoute.value.params.id, () => { applyFilter(); - } + }, ); </script> <template> @@ -391,7 +392,7 @@ watch( const changedModel = item.changedModel; return { locale: useCapitalize( - validations[changedModel]?.locale?.name ?? changedModel + validations[changedModel]?.locale?.name ?? changedModel, ), value: changedModel, }; @@ -507,7 +508,7 @@ watch( :title=" date.formatDate( log.creationDate, - 'DD/MM/YYYY hh:mm:ss' + 'DD/MM/YYYY hh:mm:ss', ) ?? `date:'dd/MM/yyyy HH:mm:ss'` " > @@ -577,7 +578,7 @@ watch( t( `actions.${ actionsText[log.action] - }` + }`, ) " /> @@ -677,139 +678,144 @@ watch( </div> </template> </VnPaginate> - <Teleport to="#right-panel" v-if="stateStore.isHeaderMounted()"> - <QList dense> - <QSeparator /> - <QItem class="q-mt-sm"> - <QInput - :label="t('globals.search')" - v-model="searchInput" - class="full-width" - clearable - clear-icon="close" - @keyup.enter="() => selectFilter('search')" - @focusout="() => selectFilter('search')" - @clear="() => selectFilter('search')" - > - <template #append> - <QIcon name="info" class="cursor-pointer"> - <QTooltip>{{ t('tooltips.search') }}</QTooltip> - </QIcon> - </template> - </QInput> - </QItem> - <QItem> - <VnSelect - class="full-width" - :label="t('globals.entity')" - v-model="selectedFilters.changedModel" - option-label="locale" - option-value="value" - :options="actions" - @update:model-value="selectFilter('action')" - hide-selected - /> - </QItem> - <QItem class="q-mt-sm"> - <QOptionGroup - size="sm" - v-model="userRadio" - :options="userTypes" - color="primary" - @update:model-value="selectFilter('userRadio')" - right-label - > - <template #label="{ label }"> - {{ t(`Users.${label}`) }} - </template> - </QOptionGroup> - </QItem> - <QItem class="q-mt-sm"> - <QItemSection v-if="userRadio !== null"> + <RightMenu> + <template #right-panel> + <QList dense> + <QSeparator /> + <QItem class="q-mt-sm"> + <QInput + :label="t('globals.search')" + v-model="searchInput" + class="full-width" + clearable + clear-icon="close" + @keyup.enter="() => selectFilter('search')" + @focusout="() => selectFilter('search')" + @clear="() => selectFilter('search')" + > + <template #append> + <QIcon name="info" class="cursor-pointer"> + <QTooltip>{{ t('tooltips.search') }}</QTooltip> + </QIcon> + </template> + </QInput> + </QItem> + <QItem> <VnSelect class="full-width" - :label="t('globals.user')" - v-model="userSelect" - option-label="name" - option-value="id" - :url="`${model}Logs/${$route.params.id}/editors`" - :fields="['id', 'nickname', 'name', 'image']" - sort-by="nickname" - @update:model-value="selectFilter('userSelect')" + :label="t('globals.entity')" + v-model="selectedFilters.changedModel" + option-label="locale" + option-value="value" + :options="actions" + @update:model-value="selectFilter('action')" hide-selected + /> + </QItem> + <QItem class="q-mt-sm"> + <QOptionGroup + size="sm" + v-model="userRadio" + :options="userTypes" + color="primary" + @update:model-value="selectFilter('userRadio')" + right-label > - <template #option="{ opt, itemProps }"> - <QItem v-bind="itemProps" class="q-pa-xs row items-center"> - <QItemSection class="col-3 items-center"> - <VnAvatar :worker-id="opt.id" /> - </QItemSection> - <QItemSection class="col-9 justify-center"> - <span>{{ opt.name }}</span> - <span class="text-grey">{{ opt.nickname }}</span> - </QItemSection> - </QItem> + <template #label="{ label }"> + {{ t(`Users.${label}`) }} </template> - </VnSelect> - </QItemSection> - </QItem> - <QItem class="q-mt-sm"> - <QInput - :label="t('globals.changes')" - v-model="changeInput" - class="full-width" - clearable - clear-icon="close" - @keyup.enter="selectFilter('change')" - @focusout="selectFilter('change')" - @clear="selectFilter('change')" + </QOptionGroup> + </QItem> + <QItem class="q-mt-sm"> + <QItemSection v-if="userRadio !== null"> + <VnSelect + class="full-width" + :label="t('globals.user')" + v-model="userSelect" + option-label="name" + option-value="id" + :url="`${model}Logs/${route.params.id}/editors`" + :fields="['id', 'nickname', 'name', 'image']" + sort-by="nickname" + @update:model-value="selectFilter('userSelect')" + hide-selected + > + <template #option="{ opt, itemProps }"> + <QItem + v-bind="itemProps" + class="q-pa-xs row items-center" + > + <QItemSection class="col-3 items-center"> + <VnAvatar :worker-id="opt.id" /> + </QItemSection> + <QItemSection class="col-9 justify-center"> + <span>{{ opt.name }}</span> + <span class="text-grey">{{ opt.nickname }}</span> + </QItemSection> + </QItem> + </template> + </VnSelect> + </QItemSection> + </QItem> + <QItem class="q-mt-sm"> + <QInput + :label="t('globals.changes')" + v-model="changeInput" + class="full-width" + clearable + clear-icon="close" + @keyup.enter="selectFilter('change')" + @focusout="selectFilter('change')" + @clear="selectFilter('change')" + > + <template #append> + <QIcon name="info" class="cursor-pointer"> + <QTooltip max-width="250px">{{ + t('tooltips.changes') + }}</QTooltip> + </QIcon> + </template> + </QInput> + </QItem> + <QItem + :class="index == 'create' ? 'q-mt-md' : 'q-mt-xs'" + v-for="(checkboxOption, index) in checkboxOptions" + :key="index" > - <template #append> - <QIcon name="info" class="cursor-pointer"> - <QTooltip max-width="250px">{{ - t('tooltips.changes') - }}</QTooltip> - </QIcon> - </template> - </QInput> - </QItem> - <QItem - :class="index == 'create' ? 'q-mt-md' : 'q-mt-xs'" - v-for="(checkboxOption, index) in checkboxOptions" - :key="index" - > - <QCheckbox - size="sm" - v-model="checkboxOption.selected" - :label="t(`actions.${checkboxOption.label}`)" - @update:model-value="selectFilter" - /> - </QItem> - <QItem class="q-mt-sm"> - <QInput - class="full-width" - :label="t('globals.date')" - @click="dateFromDialog = true" - @focus="(evt) => evt.target.blur()" - @clear="selectFilter('date', 'to')" - v-model="dateFrom" - clearable - clear-icon="close" - /> - </QItem> - <QItem class="q-mt-sm"> - <QInput - class="full-width" - :label="t('to')" - @click="dateToDialog = true" - @focus="(evt) => evt.target.blur()" - @clear="selectFilter('date', 'from')" - v-model="dateTo" - clearable - clear-icon="close" - /> - </QItem> - </QList> - </Teleport> + <QCheckbox + size="sm" + v-model="checkboxOption.selected" + :label="t(`actions.${checkboxOption.label}`)" + @update:model-value="selectFilter" + /> + </QItem> + <QItem class="q-mt-sm"> + <QInput + class="full-width" + :label="t('globals.date')" + @click="dateFromDialog = true" + @focus="(evt) => evt.target.blur()" + @clear="selectFilter('date', 'to')" + v-model="dateFrom" + clearable + clear-icon="close" + /> + </QItem> + <QItem class="q-mt-sm"> + <QInput + class="full-width" + :label="t('to')" + @click="dateToDialog = true" + @focus="(evt) => evt.target.blur()" + @clear="selectFilter('date', 'from')" + v-model="dateTo" + clearable + clear-icon="close" + /> + </QItem> + </QList> + </template> + </RightMenu> <QDialog v-model="dateFromDialog"> <QDate :years-in-month-view="false" diff --git a/src/components/common/VnSection.vue b/src/components/common/VnSection.vue index cacb3d551..e56784d4e 100644 --- a/src/components/common/VnSection.vue +++ b/src/components/common/VnSection.vue @@ -1,5 +1,5 @@ <script setup> -import RightMenu from './RightMenu.vue'; +import RightAdvancedMenu from './RightAdvancedMenu.vue'; import VnSearchbar from 'components/ui/VnSearchbar.vue'; import VnTableFilter from '../VnTable/VnTableFilter.vue'; import { onBeforeMount, onMounted, onUnmounted, computed, ref } from 'vue'; @@ -54,6 +54,7 @@ const sectionValue = computed(() => $props.section ?? $props.dataKey); const isMainSection = ref(false); const searchbarId = 'section-searchbar'; +const advancedMenuSlot = 'advanced-menu'; const hasContent = useHasContent(`#${searchbarId}`); onBeforeMount(() => { @@ -93,9 +94,9 @@ function checkIsMain() { /> <div :id="searchbarId"></div> </slot> - <RightMenu> - <template #right-panel v-if="$slots['rightMenu'] || rightFilter"> - <slot name="rightMenu"> + <RightAdvancedMenu :is-main-section="isMainSection"> + <template #advanced-menu v-if="$slots[advancedMenuSlot] || rightFilter"> + <slot :name="advancedMenuSlot"> <VnTableFilter v-if="rightFilter && columns" :data-key="dataKey" @@ -104,7 +105,7 @@ function checkIsMain() { /> </slot> </template> - </RightMenu> + </RightAdvancedMenu> <slot name="body" v-if="isMainSection" /> <RouterView v-else /> </template> diff --git a/src/components/ui/VnUsesMana.vue b/src/components/ui/VnUsesMana.vue index 891de5f63..1ad4a706e 100644 --- a/src/components/ui/VnUsesMana.vue +++ b/src/components/ui/VnUsesMana.vue @@ -1,5 +1,5 @@ <script setup> -import { defineProps, ref } from 'vue'; +import { ref } from 'vue'; import { useI18n } from 'vue-i18n'; const { t } = useI18n(); diff --git a/src/composables/useHasContent.js b/src/composables/useHasContent.js index 8ab018376..21cb1f14d 100644 --- a/src/composables/useHasContent.js +++ b/src/composables/useHasContent.js @@ -5,7 +5,7 @@ export function useHasContent(selector) { const hasContent = ref(); onMounted(() => { - container.value = document.querySelector(selector); + container.value = document?.querySelector(selector); if (!container.value) return; const observer = new MutationObserver(() => { diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml index 473446970..1e22a07d4 100644 --- a/src/i18n/locale/en.yml +++ b/src/i18n/locale/en.yml @@ -7,7 +7,8 @@ globals: entity: Entity user: User details: Details - collapseMenu: Collapse left menu + collapseMenu: Collapse lateral menu + advancedMenu: Advanced menu backToDashboard: Return to dashboard notifications: Notifications userPanel: User panel diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml index b764b1e43..0d308bd84 100644 --- a/src/i18n/locale/es.yml +++ b/src/i18n/locale/es.yml @@ -8,6 +8,7 @@ globals: user: Usuario details: Detalles collapseMenu: Contraer menú lateral + advancedMenu: Menú avanzado backToDashboard: Volver al tablón notifications: Notificaciones userPanel: Panel de usuario diff --git a/src/pages/Claim/Card/ClaimAction.vue b/src/pages/Claim/Card/ClaimAction.vue index 2e890dba8..8ac7c224f 100644 --- a/src/pages/Claim/Card/ClaimAction.vue +++ b/src/pages/Claim/Card/ClaimAction.vue @@ -4,7 +4,6 @@ import { useQuasar } from 'quasar'; import { useI18n } from 'vue-i18n'; import { useRoute } from 'vue-router'; import axios from 'axios'; -import { useStateStore } from 'src/stores/useStateStore'; import { toDate, toPercentage, toCurrency } from 'filters/index'; import { tMobile } from 'src/composables/tMobile'; import CrudModel from 'src/components/CrudModel.vue'; @@ -13,11 +12,11 @@ import VnSelect from 'src/components/common/VnSelect.vue'; import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue'; import TicketDescriptorProxy from 'src/pages/Ticket/Card/TicketDescriptorProxy.vue'; import { useArrayData } from 'composables/useArrayData'; +import RightMenu from 'src/components/common/RightMenu.vue'; const { t } = useI18n(); const quasar = useQuasar(); const route = useRoute(); -const stateStore = computed(() => useStateStore()); const claim = ref(null); const claimRef = ref(); const claimId = route.params.id; @@ -201,58 +200,62 @@ async function post(query, params) { auto-load @on-fetch="(data) => (destinationTypes = data)" /> - <Teleport to="#right-panel" v-if="stateStore.isHeaderMounted() && claim"> - <QCard class="totalClaim q-my-md q-pa-sm no-box-shadow"> - {{ `${t('Total claimed')}: ${toCurrency(totalClaimed)}` }} - </QCard> - <QCard class="q-mb-md q-pa-sm no-box-shadow"> - <QItem class="justify-between"> - <QItemLabel class="slider-container"> - <p class="text-primary"> - {{ t('claim.actions') }} - </p> - <QSlider - class="responsibility { 'background-color:primary': quasar.platform.is.mobile }" - v-model="claim.responsibility" - :label-value="t('claim.responsibility')" - @change="(value) => save({ responsibility: value })" - label-always - color="primary" - markers - :marker-labels="marker_labels" - :min="DEFAULT_MIN_RESPONSABILITY" - :max="DEFAULT_MAX_RESPONSABILITY" + <RightMenu v-if="claim"> + <template #right-panel> + <QCard class="totalClaim q-my-md q-pa-sm no-box-shadow"> + {{ `${t('Total claimed')}: ${toCurrency(totalClaimed)}` }} + </QCard> + <QCard class="q-mb-md q-pa-sm no-box-shadow"> + <QItem class="justify-between"> + <QItemLabel class="slider-container"> + <p class="text-primary"> + {{ t('claim.actions') }} + </p> + <QSlider + class="responsibility { 'background-color:primary': quasar.platform.is.mobile }" + v-model="claim.responsibility" + :label-value="t('claim.responsibility')" + @change="(value) => save({ responsibility: value })" + label-always + color="primary" + markers + :marker-labels="marker_labels" + :min="DEFAULT_MIN_RESPONSABILITY" + :max="DEFAULT_MAX_RESPONSABILITY" + /> + </QItemLabel> + </QItem> + </QCard> + <QCard class="q-mb-md q-pa-sm no-box-shadow" style="margin-bottom: 1em"> + <QItemLabel class="mana q-mb-md"> + <QCheckbox + v-model="claim.isChargedToMana" + @update:model-value="(value) => save({ isChargedToMana: value })" /> + <span>{{ t('mana') }}</span> </QItemLabel> - </QItem> - </QCard> - <QCard class="q-mb-md q-pa-sm no-box-shadow" style="margin-bottom: 1em"> - <QItemLabel class="mana q-mb-md"> - <QCheckbox - v-model="claim.isChargedToMana" - @update:model-value="(value) => save({ isChargedToMana: value })" + </QCard> + <QCard class="q-mb-md q-pa-sm no-box-shadow" style="position: static"> + <QInput + :disable=" + !( + claim.responsibility >= + Math.ceil(DEFAULT_MAX_RESPONSABILITY) / 2 + ) + " + :label="t('confirmGreuges')" + class="q-field__native text-grey-2" + type="number" + placeholder="0" + id="multiplicatorValue" + name="multiplicatorValue" + min="0" + max="50" + v-model="multiplicatorValue" /> - <span>{{ t('mana') }}</span> - </QItemLabel> - </QCard> - <QCard class="q-mb-md q-pa-sm no-box-shadow" style="position: static"> - <QInput - :disable=" - !(claim.responsibility >= Math.ceil(DEFAULT_MAX_RESPONSABILITY) / 2) - " - :label="t('confirmGreuges')" - class="q-field__native text-grey-2" - type="number" - placeholder="0" - id="multiplicatorValue" - name="multiplicatorValue" - min="0" - max="50" - v-model="multiplicatorValue" - /> - </QCard> - </Teleport> - <Teleport to="#st-data" v-if="stateStore.isSubToolbarShown()"> </Teleport> + </QCard> + </template> + </RightMenu> <CrudModel v-if="claim" data-key="ClaimEnds" diff --git a/src/pages/Claim/ClaimList.vue b/src/pages/Claim/ClaimList.vue index 35b051cdc..ba74ba212 100644 --- a/src/pages/Claim/ClaimList.vue +++ b/src/pages/Claim/ClaimList.vue @@ -134,7 +134,7 @@ const STATE_COLOR = { order: ['cs.priority ASC', 'created ASC'], }" > - <template #rightMenu> + <template #advanced-menu> <ClaimFilter data-key="ClaimList" ref="claimFilterRef" /> </template> <template #body> diff --git a/src/pages/Order/Card/OrderCatalog.vue b/src/pages/Order/Card/OrderCatalog.vue index 186f216fb..d7efdb726 100644 --- a/src/pages/Order/Card/OrderCatalog.vue +++ b/src/pages/Order/Card/OrderCatalog.vue @@ -1,7 +1,7 @@ <script setup> import { useStateStore } from 'stores/useStateStore'; import { useRoute, useRouter } from 'vue-router'; -import { onMounted, ref, computed, watch } from 'vue'; +import { onMounted, ref, watch } from 'vue'; import axios from 'axios'; import { useI18n } from 'vue-i18n'; import VnPaginate from 'src/components/ui/VnPaginate.vue'; @@ -9,6 +9,7 @@ import CatalogItem from 'src/components/ui/CatalogItem.vue'; import OrderCatalogFilter from 'src/pages/Order/Card/OrderCatalogFilter.vue'; import VnSearchbar from 'src/components/ui/VnSearchbar.vue'; import { useArrayData } from 'src/composables/useArrayData'; +import RightMenu from 'src/components/common/RightMenu.vue'; const route = useRoute(); const router = useRouter(); @@ -89,14 +90,16 @@ watch( :search-remove-params="false" /> </Teleport> - <Teleport to="#right-panel" v-if="stateStore.isHeaderMounted()"> - <OrderCatalogFilter - :data-key="dataKey" - :tag-value="tagValue" - :tags="tags" - :initial-catalog-params="catalogParams" - /> - </Teleport> + <RightMenu> + <template #right-panel> + <OrderCatalogFilter + :data-key="dataKey" + :tag-value="tagValue" + :tags="tags" + :initial-catalog-params="catalogParams" + /> + </template> + </RightMenu> <QPage class="column items-center q-pa-md" data-cy="orderCatalogPage"> <div class="full-width"> <VnPaginate :data-key="dataKey"> @@ -141,5 +144,5 @@ watch( <i18n> es: You can search items by name or id: Puedes buscar items por nombre o id - Search items: Buscar items + Search items: Buscar artículos </i18n> diff --git a/src/pages/Order/Card/OrderLines.vue b/src/pages/Order/Card/OrderLines.vue index 36dc3883e..cf219a244 100644 --- a/src/pages/Order/Card/OrderLines.vue +++ b/src/pages/Order/Card/OrderLines.vue @@ -4,7 +4,6 @@ import { useI18n } from 'vue-i18n'; import { ref, computed, watch } from 'vue'; import { useQuasar } from 'quasar'; import axios from 'axios'; -import { useStateStore } from 'stores/useStateStore'; import { useArrayData } from 'composables/useArrayData'; import { confirm } from 'src/pages/Order/composables/confirmOrder'; import { toCurrency, toDate } from 'src/filters'; @@ -16,9 +15,9 @@ import VnImg from 'src/components/ui/VnImg.vue'; import VnLv from 'src/components/ui/VnLv.vue'; import FetchedTags from 'src/components/ui/FetchedTags.vue'; import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue'; +import RightMenu from 'src/components/common/RightMenu.vue'; const router = useRouter(); -const stateStore = useStateStore(); const route = useRoute(); const { t } = useI18n(); const quasar = useQuasar(); @@ -264,23 +263,27 @@ watch( @on-fetch="(data) => (orderSummary.vat = data)" auto-load /> - <Teleport to="#right-panel" v-if="stateStore.isHeaderMounted()"> - <QCard - class="order-lines-summary q-pa-lg" - v-if="orderSummary.vat && orderSummary.total" - > - <p class="header text-right block"> - {{ t('summary') }} - </p> - <VnLv - :label="t('subtotal') + ': '" - :value="toCurrency(orderSummary.total - orderSummary.vat)" - /> - <VnLv :label="t('VAT') + ': '" :value="toCurrency(orderSummary?.vat)" /> - <VnLv :label="t('total') + ': '" :value="toCurrency(orderSummary?.total)" /> - </QCard> - </Teleport> - + <RightMenu> + <template #right-panel> + <QCard + class="order-lines-summary q-pa-lg" + v-if="orderSummary.vat && orderSummary.total" + > + <p class="header text-right block"> + {{ t('summary') }} + </p> + <VnLv + :label="t('subtotal') + ': '" + :value="toCurrency(orderSummary.total - orderSummary.vat)" + /> + <VnLv :label="t('VAT') + ': '" :value="toCurrency(orderSummary?.vat)" /> + <VnLv + :label="t('total') + ': '" + :value="toCurrency(orderSummary?.total)" + /> + </QCard> + </template> + </RightMenu> <VnTable ref="tableLinesRef" data-key="OrderLines" diff --git a/src/pages/Order/OrderList.vue b/src/pages/Order/OrderList.vue index ae1fe68bd..f8f49d531 100644 --- a/src/pages/Order/OrderList.vue +++ b/src/pages/Order/OrderList.vue @@ -190,7 +190,7 @@ const getDateColor = (date) => { order: ['landed DESC', 'clientFk ASC', 'id DESC'], }" > - <template #rightMenu> + <template #advanced-menu> <OrderFilter data-key="OrderList" /> </template> <template #body> diff --git a/src/pages/Ticket/Card/TicketBoxing.vue b/src/pages/Ticket/Card/TicketBoxing.vue index 816419dd5..26b38d706 100644 --- a/src/pages/Ticket/Card/TicketBoxing.vue +++ b/src/pages/Ticket/Card/TicketBoxing.vue @@ -1,7 +1,7 @@ <script setup> import axios from 'axios'; import { date, useQuasar } from 'quasar'; -import { useStateStore } from 'src/stores/useStateStore'; +import RightMenu from 'src/components/common/RightMenu.vue'; import { computed, onMounted, reactive, ref } from 'vue'; import { useI18n } from 'vue-i18n'; import { useRouter } from 'vue-router'; @@ -9,9 +9,7 @@ import { useRouter } from 'vue-router'; const router = useRouter(); const { t } = useI18n(); const quasar = useQuasar(); -const stateStore = useStateStore(); onMounted(async () => { - stateStore.rightDrawer = true; await fetch(); }); @@ -86,69 +84,73 @@ async function getVideoList(expeditionId, timed) { </script> <template> - <Teleport to="#right-panel" v-if="stateStore.isHeaderMounted()"> - <QList bordered separator style="max-width: 318px"> - <QItem v-if="lastExpedition && videoList.length"> - <QItemSection> - <QItemLabel class="text-h6"> - {{ t('ticket.boxing.selectTime') }} ({{ time.min }}-{{ - time.max - }}) - </QItemLabel> - <QRange - v-model="time" - @change="getVideoList(lastExpedition, time)" - :min="0" - :max="24" - :step="1" - :left-label-value="time.min + ':00'" - :right-label-value="time.max + ':00'" - label - markers - snap - color="primary" - /> - </QItemSection> - </QItem> - <QItem v-if="lastExpedition && videoList.length"> - <QItemSection> - <QSelect - color="primary" - v-model="slide" - :options="videoList" - :label="t('ticket.boxing.selectVideo')" - emit-value - map-options - > - <template #prepend> - <QIcon name="schedule" /> - </template> - </QSelect> - </QItemSection> - </QItem> - <QItem - v-for="expedition in expeditions" - :key="expedition.id" - @click="getVideoList(expedition.id)" - clickable - v-ripple - > - <QItemSection> - <QItemLabel class="text-h6">#{{ expedition.id }}</QItemLabel> - </QItemSection> - <QItemSection> - <QItemLabel caption>{{ t('globals.created') }}</QItemLabel> - <QItemLabel> - {{ date.formatDate(expedition.created, 'YYYY-MM-DD HH:mm:ss') }} - </QItemLabel> - <QItemLabel caption>{{ t('globals.item') }}</QItemLabel> - <QItemLabel>{{ expedition.packagingItemFk }}</QItemLabel> - <QItemLabel caption>{{ t('ticket.boxing.worker') }}</QItemLabel> - <QItemLabel>{{ expedition.userName }}</QItemLabel> - </QItemSection> - </QItem> - </QList> - </Teleport> + <RightMenu> + <template #right-panel> + <QList bordered separator style="max-width: 318px"> + <QItem v-if="lastExpedition && videoList.length"> + <QItemSection> + <QItemLabel class="text-h6"> + {{ t('ticket.boxing.selectTime') }} ({{ time.min }}-{{ + time.max + }}) + </QItemLabel> + <QRange + v-model="time" + @change="getVideoList(lastExpedition, time)" + :min="0" + :max="24" + :step="1" + :left-label-value="time.min + ':00'" + :right-label-value="time.max + ':00'" + label + markers + snap + color="primary" + /> + </QItemSection> + </QItem> + <QItem v-if="lastExpedition && videoList.length"> + <QItemSection> + <QSelect + color="primary" + v-model="slide" + :options="videoList" + :label="t('ticket.boxing.selectVideo')" + emit-value + map-options + > + <template #prepend> + <QIcon name="schedule" /> + </template> + </QSelect> + </QItemSection> + </QItem> + <QItem + v-for="expedition in expeditions" + :key="expedition.id" + @click="getVideoList(expedition.id)" + clickable + v-ripple + > + <QItemSection> + <QItemLabel class="text-h6">#{{ expedition.id }}</QItemLabel> + </QItemSection> + <QItemSection> + <QItemLabel caption>{{ t('globals.created') }}</QItemLabel> + <QItemLabel> + {{ + date.formatDate(expedition.created, 'YYYY-MM-DD HH:mm:ss') + }} + </QItemLabel> + <QItemLabel caption>{{ t('globals.item') }}</QItemLabel> + <QItemLabel>{{ expedition.packagingItemFk }}</QItemLabel> + <QItemLabel caption>{{ t('ticket.boxing.worker') }}</QItemLabel> + <QItemLabel>{{ expedition.userName }}</QItemLabel> + </QItemSection> + </QItem> + </QList> + </template> + </RightMenu> <QCard> <QCarousel animated v-model="slide" height="max-content"> <QCarouselSlide diff --git a/src/pages/Ticket/Card/TicketComponents.vue b/src/pages/Ticket/Card/TicketComponents.vue index 64815752a..842607e0c 100644 --- a/src/pages/Ticket/Card/TicketComponents.vue +++ b/src/pages/Ticket/Card/TicketComponents.vue @@ -1,5 +1,5 @@ <script setup> -import { ref, computed, onMounted, watch, nextTick } from 'vue'; +import { ref, computed, watch, nextTick } from 'vue'; import { useI18n } from 'vue-i18n'; import { useRoute } from 'vue-router'; @@ -9,15 +9,14 @@ import FetchData from 'components/FetchData.vue'; import ZoneDescriptorProxy from 'src/pages/Zone/Card/ZoneDescriptorProxy.vue'; import VnImg from 'src/components/ui/VnImg.vue'; -import { useStateStore } from 'stores/useStateStore'; import { dashIfEmpty } from 'src/filters'; import { useArrayData } from 'composables/useArrayData'; import { toCurrency } from 'filters/index'; import axios from 'axios'; import VnTable from 'src/components/VnTable/VnTable.vue'; +import RightMenu from 'src/components/common/RightMenu.vue'; const route = useRoute(); -const stateStore = useStateStore(); const { t } = useI18n(); const salesRef = ref(null); const arrayData = useArrayData('ticketData'); @@ -164,10 +163,6 @@ const getTicketVolume = async () => { const { data } = await axios.get(`Tickets/${ticketData.value.id}/getVolume`); ticketVolume.value = data[0].volume; }; - -onMounted(() => { - stateStore.rightDrawer = true; -}); </script> <template> @@ -178,93 +173,121 @@ onMounted(() => { @on-fetch="(data) => (components = data)" auto-load /> - <Teleport to="#right-panel" v-if="stateStore.isHeaderMounted()"> - <QCard class="q-pa-sm color-vn-text" bordered flat style="border-color: black"> - <QCardSection horizontal> - <span class="text-weight-bold text-subtitle1 text-center full-width"> - {{ t('basicData.total') }} - </span> - </QCardSection> - <QCardSection horizontal> - <span class="q-mr-xs color-vn-label" - >{{ t('ticketComponents.baseToCommission') }}: - </span> - <span>{{ toCurrency(getBase) }}</span> - </QCardSection> - <QCardSection horizontal> - <span class="q-mr-xs color-vn-label" - >{{ t('ticketComponents.totalWithoutVat') }}: - </span> - <span>{{ toCurrency(getTotal) }}</span> - </QCardSection> - </QCard> - <QCard class="q-pa-sm color-vn-text" bordered flat style="border-color: black"> - <QCardSection horizontal> - <span class="text-weight-bold text-subtitle1 text-center full-width"> - {{ t('ticketComponents.components') }} - </span> - </QCardSection> - <QCardSection - v-for="(component, index) in componentsList" - :key="index" - horizontal + <RightMenu> + <template #right-panel> + <QCard + class="q-pa-sm color-vn-text" + bordered + flat + style="border-color: black" > - <span v-if="component.name" class="q-mr-xs color-vn-label"> - {{ component.name }}: - </span> - <span v-if="component.value">{{ - toCurrency(component.value, 'EUR', 3) - }}</span> - </QCardSection> - </QCard> - <QCard class="q-pa-sm color-vn-text" bordered flat style="border-color: black"> - <QCardSection horizontal> - <span class="text-weight-bold text-subtitle1 text-center full-width"> - {{ t('ticketComponents.zoneBreakdown') }} - </span> - </QCardSection> - <QCardSection horizontal> - <span class="q-mr-xs color-vn-label"> {{ t('basicData.price') }}: </span> - <span>{{ toCurrency(ticketData?.zonePrice, 'EUR', 2) }}</span> - </QCardSection> - <QCardSection horizontal> - <span class="q-mr-xs color-vn-label"> - {{ t('ticketComponents.bonus') }}: - </span> - <span>{{ toCurrency(ticketData?.zoneBonus, 'EUR', 2) }}</span> - </QCardSection> - <QCardSection horizontal> - <span class="q-mr-xs color-vn-label"> {{ t('ticketList.zone') }}: </span> - <span class="link"> - {{ dashIfEmpty(ticketData?.zone?.name) }} - <ZoneDescriptorProxy :id="ticketData?.zone?.id" /> - </span> - </QCardSection> - <QCardSection v-if="ticketData?.zone?.isVolumetric" horizontal> - <span class="q-mr-xs color-vn-label"> {{ t('volume.volume') }}: </span> - <span>{{ ticketVolume }}</span> - </QCardSection> - <QCardSection horizontal> - <span class="q-mr-xs color-vn-label"> - {{ t('ticketComponents.packages') }}: - </span> - <span>{{ dashIfEmpty(ticketData?.packages) }}</span> - </QCardSection> - </QCard> - <QCard class="q-pa-sm color-vn-text" bordered flat style="border-color: black"> - <QCardSection horizontal> - <span class="text-weight-bold text-subtitle1 text-center full-width"> - {{ t('ticketComponents.theoricalCost') }} - </span> - </QCardSection> - <QCardSection horizontal> - <span class="q-mr-xs color-vn-label"> - {{ t('ticketComponents.totalPrice') }}: - </span> - <span>{{ toCurrency(theoricalCost, 'EUR', 2) }}</span> - </QCardSection> - </QCard> - </Teleport> + <QCardSection horizontal> + <span class="text-weight-bold text-subtitle1 text-center full-width"> + {{ t('basicData.total') }} + </span> + </QCardSection> + <QCardSection horizontal> + <span class="q-mr-xs color-vn-label" + >{{ t('ticketComponents.baseToCommission') }}: + </span> + <span>{{ toCurrency(getBase) }}</span> + </QCardSection> + <QCardSection horizontal> + <span class="q-mr-xs color-vn-label" + >{{ t('ticketComponents.totalWithoutVat') }}: + </span> + <span>{{ toCurrency(getTotal) }}</span> + </QCardSection> + </QCard> + <QCard + class="q-pa-sm color-vn-text" + bordered + flat + style="border-color: black" + > + <QCardSection horizontal> + <span class="text-weight-bold text-subtitle1 text-center full-width"> + {{ t('ticketComponents.components') }} + </span> + </QCardSection> + <QCardSection + v-for="(component, index) in componentsList" + :key="index" + horizontal + > + <span v-if="component.name" class="q-mr-xs color-vn-label"> + {{ component.name }}: + </span> + <span v-if="component.value">{{ + toCurrency(component.value, 'EUR', 3) + }}</span> + </QCardSection> + </QCard> + <QCard + class="q-pa-sm color-vn-text" + bordered + flat + style="border-color: black" + > + <QCardSection horizontal> + <span class="text-weight-bold text-subtitle1 text-center full-width"> + {{ t('ticketComponents.zoneBreakdown') }} + </span> + </QCardSection> + <QCardSection horizontal> + <span class="q-mr-xs color-vn-label"> + {{ t('basicData.price') }}: + </span> + <span>{{ toCurrency(ticketData?.zonePrice, 'EUR', 2) }}</span> + </QCardSection> + <QCardSection horizontal> + <span class="q-mr-xs color-vn-label"> + {{ t('ticketComponents.bonus') }}: + </span> + <span>{{ toCurrency(ticketData?.zoneBonus, 'EUR', 2) }}</span> + </QCardSection> + <QCardSection horizontal> + <span class="q-mr-xs color-vn-label"> + {{ t('ticketList.zone') }}: + </span> + <span class="link"> + {{ dashIfEmpty(ticketData?.zone?.name) }} + <ZoneDescriptorProxy :id="ticketData?.zone?.id" /> + </span> + </QCardSection> + <QCardSection v-if="ticketData?.zone?.isVolumetric" horizontal> + <span class="q-mr-xs color-vn-label"> + {{ t('volume.volume') }}: + </span> + <span>{{ ticketVolume }}</span> + </QCardSection> + <QCardSection horizontal> + <span class="q-mr-xs color-vn-label"> + {{ t('ticketComponents.packages') }}: + </span> + <span>{{ dashIfEmpty(ticketData?.packages) }}</span> + </QCardSection> + </QCard> + <QCard + class="q-pa-sm color-vn-text" + bordered + flat + style="border-color: black" + > + <QCardSection horizontal> + <span class="text-weight-bold text-subtitle1 text-center full-width"> + {{ t('ticketComponents.theoricalCost') }} + </span> + </QCardSection> + <QCardSection horizontal> + <span class="q-mr-xs color-vn-label"> + {{ t('ticketComponents.totalPrice') }}: + </span> + <span>{{ toCurrency(theoricalCost, 'EUR', 2) }}</span> + </QCardSection> + </QCard> + </template> + </RightMenu> <VnTable ref="tableRef" data-key="TicketComponents" diff --git a/src/pages/Ticket/Card/TicketSale.vue b/src/pages/Ticket/Card/TicketSale.vue index b849b3b35..3ebb69319 100644 --- a/src/pages/Ticket/Card/TicketSale.vue +++ b/src/pages/Ticket/Card/TicketSale.vue @@ -16,7 +16,6 @@ import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue'; import TicketSaleMoreActions from './TicketSaleMoreActions.vue'; import TicketTransfer from './TicketTransfer.vue'; -import { useStateStore } from 'stores/useStateStore'; import { toCurrency, toPercentage } from 'src/filters'; import { useArrayData } from 'composables/useArrayData'; import { useVnConfirm } from 'composables/useVnConfirm'; @@ -25,10 +24,10 @@ import axios from 'axios'; import VnTable from 'src/components/VnTable/VnTable.vue'; import VnUsesMana from 'src/components/ui/VnUsesMana.vue'; import VnConfirm from 'src/components/ui/VnConfirm.vue'; +import RightMenu from 'src/components/common/RightMenu.vue'; const route = useRoute(); const router = useRouter(); -const stateStore = useStateStore(); const { t } = useI18n(); const { notify } = useNotify(); const { openConfirmationModal } = useVnConfirm(); @@ -419,7 +418,6 @@ const setTransferParams = async () => { }; onMounted(async () => { - stateStore.rightDrawer = true; getConfig(); }); @@ -620,29 +618,38 @@ watch( </QBtnGroup> </template> </VnSubToolbar> - <Teleport to="#right-panel" v-if="stateStore.isHeaderMounted()"> - <div - class="q-pa-md q-mb-md q-ma-md color-vn-text" - style="border: 2px solid black" - > - <QCardSection class="justify-end text-subtitle1" horizontal> - <span class="q-mr-xs color-vn-label" - >{{ t('ticketSale.subtotal') }}: - </span> - <span>{{ toCurrency(store.data?.totalWithoutVat) }}</span> - </QCardSection> - <QCardSection class="justify-end text-subtitle1" horizontal> - <span class="q-mr-xs color-vn-label"> {{ t('ticketSale.tax') }}: </span> - <span>{{ - toCurrency(store.data?.totalWithVat - store.data?.totalWithoutVat) - }}</span> - </QCardSection> - <QCardSection class="justify-end text-weight-bold text-subtitle1" horizontal> - <span class="q-mr-xs color-vn-label"> {{ t('basicData.total') }}: </span> - <span>{{ toCurrency(store.data?.totalWithVat) }}</span> - </QCardSection> - </div> - </Teleport> + <RightMenu> + <template #right-panel> + <div + class="q-pa-md q-mb-md q-ma-md color-vn-text" + style="border: 2px solid black" + > + <QCardSection class="justify-end text-subtitle1" horizontal> + <span class="q-mr-xs color-vn-label" + >{{ t('ticketSale.subtotal') }}: + </span> + <span>{{ toCurrency(store.data?.totalWithoutVat) }}</span> + </QCardSection> + <QCardSection class="justify-end text-subtitle1" horizontal> + <span class="q-mr-xs color-vn-label"> + {{ t('ticketSale.tax') }}: + </span> + <span>{{ + toCurrency(store.data?.totalWithVat - store.data?.totalWithoutVat) + }}</span> + </QCardSection> + <QCardSection + class="justify-end text-weight-bold text-subtitle1" + horizontal + > + <span class="q-mr-xs color-vn-label"> + {{ t('basicData.total') }}: + </span> + <span>{{ toCurrency(store.data?.totalWithVat) }}</span> + </QCardSection> + </div> + </template> + </RightMenu> <VnTable ref="tableRef" data-key="TicketSales" diff --git a/src/pages/Ticket/TicketList.vue b/src/pages/Ticket/TicketList.vue index 64cf3d649..7c117beb4 100644 --- a/src/pages/Ticket/TicketList.vue +++ b/src/pages/Ticket/TicketList.vue @@ -465,7 +465,7 @@ function setReference(data) { exprBuilder, }" > - <template #rightMenu> + <template #advanced-menu> <TicketFilter data-key="TicketList" /> </template> <template #body> diff --git a/src/pages/Worker/Card/WorkerCalendar.vue b/src/pages/Worker/Card/WorkerCalendar.vue index e9cb793f4..5ca95a1a4 100644 --- a/src/pages/Worker/Card/WorkerCalendar.vue +++ b/src/pages/Worker/Card/WorkerCalendar.vue @@ -1,18 +1,16 @@ <script setup> import { nextTick, ref, watch } from 'vue'; import { useI18n } from 'vue-i18n'; -import { useRoute } from 'vue-router'; +import { useRoute, useRouter } from 'vue-router'; import WorkerCalendarFilter from 'pages/Worker/Card/WorkerCalendarFilter.vue'; import FetchData from 'components/FetchData.vue'; import WorkerCalendarItem from 'pages/Worker/Card/WorkerCalendarItem.vue'; +import RightMenu from 'src/components/common/RightMenu.vue'; -import { useStateStore } from 'stores/useStateStore'; import axios from 'axios'; -import { useRouter } from 'vue-router'; const router = useRouter(); -const stateStore = useStateStore(); const route = useRoute(); const { t } = useI18n(); const workerIsFreelance = ref(); @@ -171,16 +169,18 @@ watch([year, businessFk], () => refreshData()); ref="WorkerFreelanceRef" auto-load /> - <Teleport to="#right-panel" v-if="stateStore.isHeaderMounted()"> - <WorkerCalendarFilter - ref="workerCalendarFilterRef" - v-model:business-fk="businessFk" - v-model:year="year" - v-model:absence-type="absenceType" - :contract-holidays="contractHolidays" - :year-holidays="yearHolidays" - /> - </Teleport> + <RightMenu> + <template #right-panel> + <WorkerCalendarFilter + ref="workerCalendarFilterRef" + v-model:business-fk="businessFk" + v-model:year="year" + v-model:absence-type="absenceType" + :contract-holidays="contractHolidays" + :year-holidays="yearHolidays" + /> + </template> + </RightMenu> <QPage class="column items-center"> <QCard v-if="workerIsFreelance"> <QCardSection class="text-center"> diff --git a/src/pages/Worker/Card/WorkerTimeControl.vue b/src/pages/Worker/Card/WorkerTimeControl.vue index 919331e2d..c580e5202 100644 --- a/src/pages/Worker/Card/WorkerTimeControl.vue +++ b/src/pages/Worker/Card/WorkerTimeControl.vue @@ -10,6 +10,7 @@ import WorkerTimeForm from 'pages/Worker/Card/WorkerTimeForm.vue'; import WorkerTimeReasonForm from 'pages/Worker/Card/WorkerTimeReasonForm.vue'; import WorkerDateLabel from './WorkerDateLabel.vue'; import WorkerTimeControlCalendar from 'pages/Worker/Card/WorkerTimeControlCalendar.vue'; +import RightMenu from 'src/components/common/RightMenu.vue'; import useNotify from 'src/composables/useNotify.js'; import axios from 'axios'; @@ -483,33 +484,35 @@ onMounted(async () => { </QBtnGroup> </div> </Teleport> - <Teleport to="#right-panel" v-if="stateStore.isHeaderMounted()"> - <div class="q-pa-md q-mb-md" style="border: 2px solid #222"> - <QCardSection horizontal> - <span class="text-weight-bold text-subtitle1 text-center full-width"> - {{ t('Hours') }} - </span> - </QCardSection> - <QCardSection class="column items-center" horizontal> - <div> - <span class="details-label">{{ t('Total semana') }} </span> - <span>: {{ formattedWeekTotalHours }}</span> - </div> - <div> - <span class="details-label">{{ t('Termina a las') }}: </span> - <span>{{ dashIfEmpty(getFinishTime()) }}</span> - </div> - </QCardSection> - </div> - <WorkerTimeControlCalendar - v-model:model-value="selectedDateFormatted" - :selected-dates="selectedCalendarDates" - :active-date="false" - :worker-time-control-mails="workerTimeControlMails" - @click-date="onInputChange" - @on-moved="getMailStates" - /> - </Teleport> + <RightMenu> + <template #right-panel> + <div class="q-pa-md q-mb-md" style="border: 2px solid #222"> + <QCardSection horizontal> + <span class="text-weight-bold text-subtitle1 text-center full-width"> + {{ t('Hours') }} + </span> + </QCardSection> + <QCardSection class="column items-center" horizontal> + <div> + <span class="details-label">{{ t('Total semana') }} </span> + <span>: {{ formattedWeekTotalHours }}</span> + </div> + <div> + <span class="details-label">{{ t('Termina a las') }}: </span> + <span>{{ dashIfEmpty(getFinishTime()) }}</span> + </div> + </QCardSection> + </div> + <WorkerTimeControlCalendar + v-model:model-value="selectedDateFormatted" + :selected-dates="selectedCalendarDates" + :active-date="false" + :worker-time-control-mails="workerTimeControlMails" + @click-date="onInputChange" + @on-moved="getMailStates" + /> + </template> + </RightMenu> <QPage class="column items-center"> <QTable :columns="columns" :rows="['']" hide-bottom class="full-width"> <template #header="props"> diff --git a/src/pages/Worker/WorkerList.vue b/src/pages/Worker/WorkerList.vue index 8e02e59a4..d6eb0684d 100644 --- a/src/pages/Worker/WorkerList.vue +++ b/src/pages/Worker/WorkerList.vue @@ -199,7 +199,7 @@ async function autofillBic(worker) { order: 'id DESC', }" > - <template #rightMenu> + <template #advanced-menu> <WorkerFilter data-key="WorkerList" /> </template> <template #body> diff --git a/src/router/modules/ticket.js b/src/router/modules/ticket.js index 600b64c14..e5b423f64 100644 --- a/src/router/modules/ticket.js +++ b/src/router/modules/ticket.js @@ -168,7 +168,7 @@ const ticketCard = { name: 'TicketBoxing', meta: { title: 'boxing', - icon: 'science', + icon: 'view_in_ar', }, component: () => import('src/pages/Ticket/Card/TicketBoxing.vue'), }, diff --git a/src/stores/useStateStore.js b/src/stores/useStateStore.js index 686e76c77..e48b67279 100644 --- a/src/stores/useStateStore.js +++ b/src/stores/useStateStore.js @@ -5,6 +5,7 @@ export const useStateStore = defineStore('stateStore', () => { const isMounted = ref(false); const leftDrawer = ref(false); const rightDrawer = ref(false); + const rightAdvancedDrawer = ref(false); const subToolbar = ref(false); function toggleLeftDrawer() { @@ -15,6 +16,10 @@ export const useStateStore = defineStore('stateStore', () => { rightDrawer.value = !rightDrawer.value; } + function toggleRightAdvancedDrawer() { + rightAdvancedDrawer.value = !rightAdvancedDrawer.value; + } + function rightDrawerChangeValue(value) { rightDrawer.value = value; } @@ -46,10 +51,12 @@ export const useStateStore = defineStore('stateStore', () => { return { leftDrawer, rightDrawer, + rightAdvancedDrawer, setMounted, isHeaderMounted, toggleLeftDrawer, toggleRightDrawer, + toggleRightAdvancedDrawer, isLeftDrawerShown, isRightDrawerShown, isSubToolbarShown, From b67a6d5d75426b386f1b9f09d88a3346fc5cba60 Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Thu, 23 Jan 2025 15:49:00 +0100 Subject: [PATCH 40/79] refactor: refs #8351 deleted skip and fixed TicketList e2e --- test/cypress/integration/ticket/ticketList.spec.js | 11 ++++++----- test/cypress/integration/ticket/ticketRequest.spec.js | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/test/cypress/integration/ticket/ticketList.spec.js b/test/cypress/integration/ticket/ticketList.spec.js index 3337287c4..2984a4ee4 100644 --- a/test/cypress/integration/ticket/ticketList.spec.js +++ b/test/cypress/integration/ticket/ticketList.spec.js @@ -30,14 +30,15 @@ describe('TicketList', () => { cy.get(firstRow).find('.q-btn:first').click(); cy.get('@windowOpen').should('be.calledWithMatch', /\/ticket\/\d+\/sale/); }); - // https://redmine.verdnatura.es/issues/8424 - it.skip('should open ticket summary', () => { + + it('should open ticket summary', () => { searchResults(); cy.get(firstRow).find('.q-btn:last').click(); - cy.dataCy('ticketSummary').should('exist'); + cy.get('.summaryHeader').should('exist'); + cy.get('.summaryBody').should('exist'); }); - it.skip('Client list create new client', () => { + it('Client list create new client', () => { cy.dataCy('vnTableCreateBtn').should('exist'); cy.dataCy('vnTableCreateBtn').click(); const data = { @@ -45,9 +46,9 @@ describe('TicketList', () => { Warehouse: { val: 'Warehouse One', type: 'select' }, Address: { val: 'employee', type: 'select' }, Landed: { val: '01-01-2024', type: 'date' }, + Agency: { val: 'Other agency', type: 'select' }, }; cy.fillInForm(data); - cy.dataCy('Agency_select').click(); cy.dataCy('FormModelPopup_save').click(); cy.checkNotification('Data created'); cy.url().should('match', /\/ticket\/\d+\/summary/); diff --git a/test/cypress/integration/ticket/ticketRequest.spec.js b/test/cypress/integration/ticket/ticketRequest.spec.js index 5a0ae636f..b9dc509ef 100644 --- a/test/cypress/integration/ticket/ticketRequest.spec.js +++ b/test/cypress/integration/ticket/ticketRequest.spec.js @@ -6,7 +6,7 @@ describe('TicketRequest', () => { cy.visit('/#/ticket/31/request'); }); - it.skip('Creates a new request', () => { + it('Creates a new request', () => { cy.dataCy('vnTableCreateBtn').should('exist'); cy.dataCy('vnTableCreateBtn').click(); const data = { From c59bc170a62be7e985c22f07d4d5a1cbb08fcf0b Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Thu, 23 Jan 2025 16:07:04 +0100 Subject: [PATCH 41/79] refactor: refs #8351 put appropriate name --- test/cypress/integration/ticket/ticketNotes.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cypress/integration/ticket/ticketNotes.spec.js b/test/cypress/integration/ticket/ticketNotes.spec.js index ef196c783..5b44f9e1f 100644 --- a/test/cypress/integration/ticket/ticketNotes.spec.js +++ b/test/cypress/integration/ticket/ticketNotes.spec.js @@ -1,5 +1,5 @@ /// <reference types="cypress" /> -describe('TicketRequest', () => { +describe('TicketNotes', () => { beforeEach(() => { cy.login('developer'); cy.viewport(1920, 1080); @@ -13,7 +13,7 @@ describe('TicketRequest', () => { cy.selectOption('[data-cy="ticketNotesObservationType"]:last', 'Weight'); cy.dataCy('ticketNotesDescription').should('exist'); cy.get('[data-cy="ticketNotesDescription"]:last').type( - 'This is a note description' + 'This is a note description', ); cy.dataCy('crudModelDefaultSaveBtn').click(); cy.checkNotification('Data saved'); From 3453e1007b5bfbcb271ebfb13dcbcf78d416be9d Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Thu, 23 Jan 2025 16:40:22 +0100 Subject: [PATCH 42/79] fix: refs #8120 ticket descriptor & summary --- src/pages/Ticket/Card/TicketDescriptor.vue | 10 ++++++-- src/pages/Ticket/Card/TicketSummary.vue | 27 +++++++++++----------- 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/src/pages/Ticket/Card/TicketDescriptor.vue b/src/pages/Ticket/Card/TicketDescriptor.vue index 1393db3e5..5374feff6 100644 --- a/src/pages/Ticket/Card/TicketDescriptor.vue +++ b/src/pages/Ticket/Card/TicketDescriptor.vue @@ -16,6 +16,10 @@ const $props = defineProps({ required: false, default: null, }, + summary: { + type: Object, + default: null, + }, }); const route = useRoute(); @@ -116,7 +120,9 @@ const setData = (entity) => { :title="data.title" :subtitle="data.subtitle" @on-fetch="setData" + :summary="$props.summary" data-key="ticketData" + width="lg-width" > <template #menu="{ entity }"> <TicketDescriptorMenu :ticket="entity" /> @@ -162,7 +168,7 @@ const setData = (entity) => { <VnLv :label="t('globals.alias')" :value="entity.nickname" /> </template> <template #icons="{ entity }"> - <QCardActions class="q-gutter-x-xs"> + <QCardActions class="q-gutter-x-md"> <QIcon v-if="entity.client.isActive == false" name="vn:disabled" @@ -206,7 +212,7 @@ const setData = (entity) => { </QCardActions> </template> <template #actions="{ entity }"> - <QCardActions> + <QCardActions class="flex justify-center" style="padding-inline: 0"> <QBtn size="md" icon="vn:client" diff --git a/src/pages/Ticket/Card/TicketSummary.vue b/src/pages/Ticket/Card/TicketSummary.vue index 2c6e34864..2c7976f52 100644 --- a/src/pages/Ticket/Card/TicketSummary.vue +++ b/src/pages/Ticket/Card/TicketSummary.vue @@ -6,7 +6,6 @@ import { useI18n } from 'vue-i18n'; import axios from 'axios'; import { dashIfEmpty, toDate, toCurrency } from 'src/filters'; import CardSummary from 'components/ui/CardSummary.vue'; -import FetchData from 'components/FetchData.vue'; import FetchedTags from 'components/ui/FetchedTags.vue'; import InvoiceOutDescriptorProxy from 'pages/InvoiceOut/Card/InvoiceOutDescriptorProxy.vue'; import VnLv from 'src/components/ui/VnLv.vue'; @@ -29,15 +28,14 @@ const { t } = useI18n(); const $props = defineProps({ id: { type: Number, - required: false, default: null, }, }); const entityId = computed(() => $props.id || route.params.id); -const summaryRef = ref(); -const ticket = computed(() => summaryRef.value?.entity); +const summary = ref(); +const ticket = computed(() => summary.value?.entity); const editableStates = ref([]); const ticketUrl = ref(); const grafanaUrl = 'https://grafana.verdnatura.es'; @@ -76,26 +74,27 @@ async function changeState(value) { }; await axios.post(`Tickets/state`, formData); notify('globals.dataSaved', 'positive'); - summaryRef.value?.fetch(); + summary.value?.fetch(); descriptorData.fetch({}); } function toTicketUrl(section) { return '#/ticket/' + entityId.value + '/' + section; } + +onMounted(async () => { + const filter = { fields: ['code', 'name', 'id', 'alertLevel'] }; + const params = { filter: JSON.stringify(filter) }; + editableStates.value = (await axios.get('States/editableStates', { params }))?.data; +}); </script> <template> - <FetchData - url="States/editableStates" - :filter="{ fields: ['code', 'name', 'id', 'alertLevel'], order: 'name ASC' }" - auto-load - @on-fetch="(data) => (editableStates = data)" - /> <CardSummary - ref="summaryRef" + ref="summary" :url="`Tickets/${entityId}/summary`" data-key="TicketSummary" + v-bind="$attrs.width" > <template #header-left> <VnToSummary @@ -207,7 +206,7 @@ function toTicketUrl(section) { </VnLv> <VnLv :label="t('globals.weight')" :value="dashIfEmpty(entity.weight)" /> </QCard> - <QCard class="vn-one" style="flex: 2 1"> + <QCard class="vn-one"> <VnTitle :url="toTicketUrl('basic-data')" :text="t('globals.summary.basicData')" @@ -454,7 +453,7 @@ function toTicketUrl(section) { toCurrency( props.row.quantity * props.row.price * - ((100 - props.row.discount) / 100) + ((100 - props.row.discount) / 100), ) }} </QTd> From 227d3a8c88537bab321a99490d5716da9e947875 Mon Sep 17 00:00:00 2001 From: carlossa <carlossa@verdnatura.es> Date: Fri, 24 Jan 2025 08:59:12 +0100 Subject: [PATCH 43/79] fix: refs #8352 fix rightPanel vnLog --- test/cypress/integration/vnComponent/VnLog.spec.js | 4 ++-- test/cypress/support/commands.js | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/cypress/integration/vnComponent/VnLog.spec.js b/test/cypress/integration/vnComponent/VnLog.spec.js index 10917859a..80b9d07df 100644 --- a/test/cypress/integration/vnComponent/VnLog.spec.js +++ b/test/cypress/integration/vnComponent/VnLog.spec.js @@ -10,14 +10,14 @@ describe('VnLog', () => { cy.openRightMenu(); }); - it.skip('should filter by insert actions', () => { + it('should filter by insert actions', () => { cy.checkOption(':nth-child(7) > .q-checkbox'); cy.get('.q-page').click(); cy.validateContent(chips[0], 'Document'); cy.validateContent(chips[1], 'Beginning'); }); - it.skip('should filter by entity', () => { + it('should filter by entity', () => { cy.selectOption('.q-drawer--right .q-item > .q-select', 'Claim'); cy.get('.q-page').click(); cy.validateContent(chips[0], 'Claim'); diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index 93f6d0054..dad434ecd 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -71,7 +71,7 @@ Cypress.Commands.add('getValue', (selector) => { return cy .get( selector + - '> .q-field > .q-field__inner > .q-field__control > .q-field__control-container > .q-field__native > input' + '> .q-field > .q-field__inner > .q-field__control > .q-field__control-container > .q-field__native > input', ) .invoke('val'); } @@ -264,7 +264,7 @@ Cypress.Commands.add('openListSummary', (row) => { Cypress.Commands.add('openRightMenu', (element) => { if (element) cy.waitForElement(element); - cy.get('#actions-append').click(); + cy.get('.q-gutter-x-sm > .q-btn > .q-btn__content > .q-icon').click(); }); Cypress.Commands.add('openLeftMenu', (element) => { @@ -330,7 +330,7 @@ Cypress.Commands.add('clickButtonsDescriptor', (id) => { Cypress.Commands.add('openUserPanel', () => { cy.get( - '.column > .q-avatar > .q-avatar__content > .q-img > .q-img__container > .q-img__image' + '.column > .q-avatar > .q-avatar__content > .q-img > .q-img__container > .q-img__image', ).click(); }); @@ -356,7 +356,7 @@ Cypress.Commands.add('checkValueForm', (id, search) => { Cypress.Commands.add('checkValueSelectForm', (id, search) => { cy.get( - `.grid-create > :nth-child(${id}) > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > .q-field__native > .q-field__input` + `.grid-create > :nth-child(${id}) > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > .q-field__native > .q-field__input`, ).should('have.value', search); }); From b2e54e1f7fd6c5d611d8217070a9efd535732f1c Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Fri, 24 Jan 2025 13:16:17 +0100 Subject: [PATCH 44/79] feat: refs #6822 change request --- src/pages/Entry/Card/EntryDescriptor.vue | 2 +- src/pages/Entry/Card/EntryDescriptorMenu.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/Entry/Card/EntryDescriptor.vue b/src/pages/Entry/Card/EntryDescriptor.vue index f0ca7957a..3620208cc 100644 --- a/src/pages/Entry/Card/EntryDescriptor.vue +++ b/src/pages/Entry/Card/EntryDescriptor.vue @@ -90,7 +90,7 @@ const getEntryRedirectionFilter = (entry) => { ref="entryDescriptorRef" module="Entry" :url="`Entries/${entityId}`" - :filter="entryFilter" + :userFilter="entryFilter" title="supplier.nickname" data-key="Entry" > diff --git a/src/pages/Entry/Card/EntryDescriptorMenu.vue b/src/pages/Entry/Card/EntryDescriptorMenu.vue index a0d68aa39..1893a04f5 100644 --- a/src/pages/Entry/Card/EntryDescriptorMenu.vue +++ b/src/pages/Entry/Card/EntryDescriptorMenu.vue @@ -35,9 +35,9 @@ const openDialog = () => { }; const transferEntry = async () => { - let response = await axios.post(`Entries/${route.params.id}/transfer`); + const { data } = await axios.post(`Entries/${route.params.id}/transfer`); notify('globals.dataSaved', 'positive'); - const url = `#/entry/${response.data.newEntryFk[0].newEntryFk}/summary`; + const url = `#/entry/${data.newEntryFk.newEntryFk}/summary`; window.open(url, '_blank'); }; </script> From d4d03c160b369488301cb197d7e582252a2be1a4 Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Fri, 24 Jan 2025 13:49:39 +0100 Subject: [PATCH 45/79] fix: modified front to show new field --- src/i18n/locale/en.yml | 3 ++- src/i18n/locale/es.yml | 1 + src/pages/Ticket/Card/TicketSummary.vue | 18 ++++++------------ 3 files changed, 9 insertions(+), 13 deletions(-) diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml index 8e458df97..cb5fd5ea5 100644 --- a/src/i18n/locale/en.yml +++ b/src/i18n/locale/en.yml @@ -1,7 +1,7 @@ globals: lang: es: Spanish - en: English + en: English language: Language quantity: Quantity entity: Entity @@ -453,6 +453,7 @@ ticket: service: Service attender: Attender ok: Ok + consigneeStreet: Street create: address: Address invoiceOut: diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml index f59821f28..9649ac508 100644 --- a/src/i18n/locale/es.yml +++ b/src/i18n/locale/es.yml @@ -448,6 +448,7 @@ ticket: purchaseRequest: Petición de compra service: Servicio attender: Consignatario + consigneeStreet: Dirección create: address: Dirección order: diff --git a/src/pages/Ticket/Card/TicketSummary.vue b/src/pages/Ticket/Card/TicketSummary.vue index 2c6e34864..045176bad 100644 --- a/src/pages/Ticket/Card/TicketSummary.vue +++ b/src/pages/Ticket/Card/TicketSummary.vue @@ -48,16 +48,6 @@ onMounted(async () => { ticketUrl.value = (await getUrl('ticket/')) + entityId.value + '/'; }); -function formattedAddress() { - if (!ticket.value) return ''; - - const address = ticket.value.address; - const postcode = address.postalCode; - const province = address.province ? `(${address.province.name})` : ''; - - return `${address.street} - ${postcode} - ${address.city} ${province}`; -} - function isEditable() { try { return !ticket.value.ticketState?.state?.alertLevel; @@ -244,7 +234,11 @@ function toTicketUrl(section) { </VnLv> <VnLv :label="t('ticket.summary.consignee')" - :value="formattedAddress()" + :value="`${entity.address?.nickname} #${entity.address?.id}`" + /> + <VnLv + :label="t('ticket.summary.consigneeStreet')" + :value="entity.address?.street" /> </QCard> <QCard class="vn-one" v-if="entity.notes.length"> @@ -454,7 +448,7 @@ function toTicketUrl(section) { toCurrency( props.row.quantity * props.row.price * - ((100 - props.row.discount) / 100) + ((100 - props.row.discount) / 100), ) }} </QTd> From fb5b347bb6876bb8e849d08057baa892d6c9470f Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Fri, 24 Jan 2025 15:38:47 +0100 Subject: [PATCH 46/79] fix: use right endpoint for CustomerList --- src/pages/Customer/CustomerList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Customer/CustomerList.vue b/src/pages/Customer/CustomerList.vue index fdfd7ff9c..12aa8fe5e 100644 --- a/src/pages/Customer/CustomerList.vue +++ b/src/pages/Customer/CustomerList.vue @@ -403,7 +403,7 @@ function handleLocation(data, location) { <VnTable ref="tableRef" data-key="CustomerList" - url="Clients/filter" + url="Clients/extendedListFilter" order="id DESC" :create="{ urlCreate: 'Clients/createWithUser', From f7e0fbf7287ad1f4bb81ad892ffc7de9c363b187 Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 27 Jan 2025 07:46:11 +0100 Subject: [PATCH 47/79] feat: refs #8322 fix route.js and unify with /agency --- src/components/common/VnSection.vue | 4 +- .../Card/InvoiceInDescriptorMenu.vue | 11 +- src/pages/Route/Agency/AgencyList.vue | 28 ++--- src/pages/Route/RouteList.vue | 8 +- src/router/modules/index.js | 2 - src/router/modules/route.js | 103 ++++++++++++++++-- src/router/routes.js | 2 - 7 files changed, 117 insertions(+), 41 deletions(-) diff --git a/src/components/common/VnSection.vue b/src/components/common/VnSection.vue index e56784d4e..376eaf03d 100644 --- a/src/components/common/VnSection.vue +++ b/src/components/common/VnSection.vue @@ -94,8 +94,8 @@ function checkIsMain() { /> <div :id="searchbarId"></div> </slot> - <RightAdvancedMenu :is-main-section="isMainSection"> - <template #advanced-menu v-if="$slots[advancedMenuSlot] || rightFilter"> + <RightAdvancedMenu :is-main-section="isMainSection && rightFilter"> + <template #advanced-menu v-if="$slots[advancedMenuSlot]"> <slot :name="advancedMenuSlot"> <VnTableFilter v-if="rightFilter && columns" diff --git a/src/pages/InvoiceIn/Card/InvoiceInDescriptorMenu.vue b/src/pages/InvoiceIn/Card/InvoiceInDescriptorMenu.vue index 24bf427e9..b0ed7c275 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDescriptorMenu.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDescriptorMenu.vue @@ -149,7 +149,7 @@ function sendPdfInvoice({ address }) { const createInvoiceInCorrection = async () => { const { data: correctingId } = await axios.post( 'InvoiceIns/corrective', - Object.assign(correctionFormData, { id: entityId.value }) + Object.assign(correctionFormData, { id: entityId.value }), ); push({ path: `/invoice-in/${correctingId}/summary` }); }; @@ -272,7 +272,6 @@ const createInvoiceInCorrection = async () => { > <template #option="{ itemProps, opt }"> <QItem v-bind="itemProps"> - {{ console.log('opt: ', opt) }} <QItemSection> <QItemLabel >{{ opt.id }} - @@ -311,11 +310,11 @@ const createInvoiceInCorrection = async () => { <i18n> en: - isNotLinked: The entry {bookEntry} has been deleted with {accountingEntries} entries - isLinked: The entry has been linked to Sage. Please contact administration for further information + isNotLinked: The entry {bookEntry} has been deleted with {accountingEntries} entries + isLinked: The entry has been linked to Sage. Please contact administration for further information assertAction: Are you sure you want to {action} this invoice? es: - isNotLinked: Se ha eliminado el asiento nº {bookEntry} con {accountingEntries} apuntes - isLinked: El asiento fue enlazado a Sage, por favor contacta con administración + isNotLinked: Se ha eliminado el asiento nº {bookEntry} con {accountingEntries} apuntes + isLinked: El asiento fue enlazado a Sage, por favor contacta con administración assertAction: Estas seguro de querer {action} esta factura? </i18n> diff --git a/src/pages/Route/Agency/AgencyList.vue b/src/pages/Route/Agency/AgencyList.vue index 6694afdb1..4322b9bc8 100644 --- a/src/pages/Route/Agency/AgencyList.vue +++ b/src/pages/Route/Agency/AgencyList.vue @@ -69,29 +69,25 @@ const columns = computed(() => [ </script> <template> <VnSection - :data-key="dataKey" + :data-key :columns="columns" prefix="agency" :right-filter="false" - :array-data-props="{ + :array-data-props="{ url: 'Agencies', - order: 'name', + order: 'name', exprBuilder, }" > - <template #body> - <div class="list-container"> - <div class="list"> - <VnTable - :data-key="dataKey" - :columns="columns" - :right-search="false" - :use-model="true" - redirect="agency" - default-mode="card" - /> - </div> - </div> + <template #body> + <VnTable + :data-key + :columns="columns" + :right-search="false" + :use-model="true" + redirect="route/agency" + default-mode="card" + /> </template> </VnSection> </template> diff --git a/src/pages/Route/RouteList.vue b/src/pages/Route/RouteList.vue index 978367a02..bc3227f6c 100644 --- a/src/pages/Route/RouteList.vue +++ b/src/pages/Route/RouteList.vue @@ -110,7 +110,7 @@ const columns = computed(() => [ </script> <template> <VnSection - :data-key="dataKey" + :data-key :columns="columns" prefix="route" :array-data-props="{ @@ -118,12 +118,12 @@ const columns = computed(() => [ userFilter: routeFilter, }" > - <template #rightMenu> - <RouteFilter data-key="RouteList" /> + <template #advanced-menu> + <RouteFilter :data-key /> </template> <template #body> <VnTable - :data-key="dataKey" + :data-key :columns="columns" :right-search="false" redirect="route" diff --git a/src/router/modules/index.js b/src/router/modules/index.js index 998009514..b5057a358 100644 --- a/src/router/modules/index.js +++ b/src/router/modules/index.js @@ -13,7 +13,6 @@ import Travel from './travel'; import Order from './order'; import Entry from './entry'; import roadmap from './roadmap'; -import Agency from './agency'; import Zone from './zone'; import Account from './account'; import Monitor from './monitor'; @@ -34,7 +33,6 @@ export default [ invoiceIn, Entry, roadmap, - Agency, Zone, Account, Monitor, diff --git a/src/router/modules/route.js b/src/router/modules/route.js index 9ddea4124..71deaf740 100644 --- a/src/router/modules/route.js +++ b/src/router/modules/route.js @@ -45,7 +45,80 @@ const routeCard = { }, component: () => import('src/pages/Route/RouteLog.vue'), }, - ] + ], +}; + +const agencyCard = { + path: ':id', + name: 'AgencyCard', + component: () => import('src/pages/Route/Agency/Card/AgencyCard.vue'), + redirect: { name: 'AgencySummary' }, + meta: { + menu: ['AgencyBasicData', 'AgencyModes', 'AgencyWorkCenters', 'AgencyLog'], + }, + children: [ + { + name: 'AgencySummary', + path: 'summary', + meta: { + title: 'summary', + icon: 'view_list', + }, + component: () => import('src/pages/Route/Agency/Card/AgencySummary.vue'), + }, + { + name: 'AgencyBasicData', + path: 'basic-data', + meta: { + title: 'basicData', + icon: 'vn:settings', + }, + component: () => import('pages/Route/Agency/Card/AgencyBasicData.vue'), + }, + { + path: 'workCenter', + name: 'AgencyWorkCenterCard', + redirect: { name: 'AgencyWorkCenters' }, + children: [ + { + path: '', + name: 'AgencyWorkCenters', + meta: { + icon: 'apartment', + title: 'workCenters', + }, + component: () => + import('src/pages/Route/Agency/Card/AgencyWorkcenter.vue'), + }, + ], + }, + { + path: 'modes', + name: 'AgencyModesCard', + redirect: { name: 'AgencyModes' }, + children: [ + { + path: '', + name: 'AgencyModes', + meta: { + icon: 'format_list_bulleted', + title: 'modes', + }, + component: () => + import('src/pages/Route/Agency/Card/AgencyModes.vue'), + }, + ], + }, + { + name: 'AgencyLog', + path: 'log', + meta: { + title: 'log', + icon: 'history', + }, + component: () => import('src/pages/Route/Agency/Card/AgencyLog.vue'), + }, + ], }; export default { @@ -55,7 +128,14 @@ export default { title: 'routes', icon: 'vn:delivery', moduleName: 'Route', - menu: ['RouteList', 'RouteExtendedList', 'RouteAutonomous', 'RouteRoadmap', 'CmrList', 'AgencyList'], + menu: [ + 'RouteList', + 'RouteExtendedList', + 'RouteAutonomous', + 'RouteRoadmap', + 'CmrList', + 'AgencyList', + ], }, component: RouterView, redirect: { name: 'RouteMain' }, @@ -81,7 +161,7 @@ export default { }, }, routeCard, - ] + ], }, { path: 'extended-list', @@ -129,19 +209,24 @@ export default { component: () => import('src/pages/Route/Cmr/CmrList.vue'), }, { - path: '/agency', + path: 'agency', + name: 'AgencyMain', redirect: { name: 'AgencyList' }, + meta: { + title: 'agency', + icon: 'garage_home', + }, + component: () => import('src/pages/Route/Agency/AgencyList.vue'), children: [ { - path: 'list', name: 'AgencyList', + path: 'list', meta: { - title: 'agencyList', - icon: 'list', + title: 'list', + icon: 'view_list', }, - component: () => - import('src/pages/Route/Agency/AgencyList.vue'), }, + agencyCard, ], }, ], diff --git a/src/router/routes.js b/src/router/routes.js index ddda2aa63..733400c4b 100644 --- a/src/router/routes.js +++ b/src/router/routes.js @@ -13,7 +13,6 @@ import shelving from 'src/router/modules/shelving'; import order from 'src/router/modules/order'; import entry from 'src/router/modules/entry'; import roadmap from 'src/router/modules/roadmap'; -import agency from 'src/router/modules/agency'; import zone from 'src/router/modules/zone'; import account from './modules/account'; import monitor from 'src/router/modules/monitor'; @@ -84,7 +83,6 @@ const routes = [ travel, roadmap, entry, - agency, zone, account, { From 6a9bbd93e896fb204b2a3d2d56eccc35a2c4f4e4 Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 27 Jan 2025 08:16:29 +0100 Subject: [PATCH 48/79] feat: refs #8322 fix route.js and unify with /roadmap --- src/pages/Route/Roadmap/RoadmapFilter.vue | 17 ---- src/pages/Route/RouteRoadmap.vue | 30 ++++++- src/router/modules/index.js | 2 - src/router/modules/roadmap.js | 79 ------------------- src/router/modules/route.js | 53 ++++++++++++- src/router/routes.js | 2 - .../route/agency/agencyWorkCenter.spec.js | 2 +- .../route/roadMap/roadmapList.spec.js | 3 +- 8 files changed, 81 insertions(+), 107 deletions(-) delete mode 100644 src/router/modules/roadmap.js diff --git a/src/pages/Route/Roadmap/RoadmapFilter.vue b/src/pages/Route/Roadmap/RoadmapFilter.vue index ecf8d39fc..246b03cb2 100644 --- a/src/pages/Route/Roadmap/RoadmapFilter.vue +++ b/src/pages/Route/Roadmap/RoadmapFilter.vue @@ -18,22 +18,6 @@ const props = defineProps({ const emit = defineEmits(['search']); const supplierList = ref([]); -const exprBuilder = (param, value) => { - switch (param) { - case 'tractorPlate': - case 'trailerPlate': - case 'driverName': - case 'phone': - return { [param]: { like: `%${value}%` } }; - case 'supplierFk': - case 'price': - return { [param]: value }; - case 'from': - return { etd: { gte: value } }; - case 'to': - return { etd: { lte: value } }; - } -}; </script> <template> @@ -48,7 +32,6 @@ const exprBuilder = (param, value) => { <VnFilterPanel :data-key="props.dataKey" :search-button="true" - :expr-builder="exprBuilder" @search="emit('search')" > <template #tags="{ tag, formatFn }"> diff --git a/src/pages/Route/RouteRoadmap.vue b/src/pages/Route/RouteRoadmap.vue index 4d5677135..23b1b1d5b 100644 --- a/src/pages/Route/RouteRoadmap.vue +++ b/src/pages/Route/RouteRoadmap.vue @@ -16,6 +16,7 @@ import VnConfirm from 'components/ui/VnConfirm.vue'; import VnInputDate from 'components/common/VnInputDate.vue'; import VnInputTime from 'src/components/common/VnInputTime.vue'; import VnSection from 'src/components/common/VnSection.vue'; +import RoadmapFilter from './Roadmap/RoadmapFilter.vue'; const { viewSummary } = useSummaryDialog(); const { t } = useI18n(); @@ -130,6 +131,25 @@ function confirmRemove() { }) .onOk(() => tableRef.value++); } + +function exprBuilder(param, value) { + switch (param) { + case 'search': + return /^\d+$/.test(value) ? { id: value } : { name: { like: `%${value}%` } }; + case 'tractorPlate': + case 'trailerPlate': + case 'driverName': + case 'phone': + return { [param]: { like: `%${value}%` } }; + case 'supplierFk': + case 'price': + return { [param]: value }; + case 'from': + return { etd: { gte: value } }; + case 'to': + return { etd: { lte: value } }; + } +} </script> <template> @@ -175,19 +195,23 @@ function confirmRemove() { </template> </VnSubToolbar> <VnSection - :data-key="dataKey" + :data-key :columns="columns" prefix="route.roadmap" :array-data-props="{ url: 'roadmaps', + exprBuilder, }" > + <template #advanced-menu> + <RoadmapFilter :dataKey /> + </template> <template #body> <VnTable ref="tableRef" - :data-key="dataKey" + :data-key :columns="columns" - :right-search="true" + :right-search="false" :use-model="true" default-mode="table" v-model:selected="selectedRows" diff --git a/src/router/modules/index.js b/src/router/modules/index.js index b5057a358..19a17be63 100644 --- a/src/router/modules/index.js +++ b/src/router/modules/index.js @@ -12,7 +12,6 @@ import Supplier from './supplier'; import Travel from './travel'; import Order from './order'; import Entry from './entry'; -import roadmap from './roadmap'; import Zone from './zone'; import Account from './account'; import Monitor from './monitor'; @@ -32,7 +31,6 @@ export default [ Order, invoiceIn, Entry, - roadmap, Zone, Account, Monitor, diff --git a/src/router/modules/roadmap.js b/src/router/modules/roadmap.js deleted file mode 100644 index 3f47f0fa2..000000000 --- a/src/router/modules/roadmap.js +++ /dev/null @@ -1,79 +0,0 @@ -import { RouterView } from 'vue-router'; - -const roadmapCard = { - path: ':id', - name: 'RoadmapCard', - component: () => import('src/pages/Route/Roadmap/RoadmapCard.vue'), - redirect: { name: 'RoadmapSummary' }, - meta: { - menu: ['RoadmapBasicData', 'RoadmapStops'], - }, - children: [ - { - name: 'RoadmapSummary', - path: 'summary', - meta: { - title: 'summary', - icon: 'open_in_new', - }, - component: () => import('pages/Route/Roadmap/RoadmapSummary.vue'), - }, - { - name: 'RoadmapBasicData', - path: 'basic-data', - meta: { - title: 'basicData', - icon: 'vn:settings', - }, - component: () => import('pages/Route/Roadmap/RoadmapBasicData.vue'), - }, - { - name: 'RoadmapStops', - path: 'stops', - meta: { - title: 'stops', - icon: 'vn:lines', - }, - component: () => import('pages/Route/Roadmap/RoadmapStops.vue'), - }, - ], -}; - -export default { - path: '/route/roadmap', - name: 'Roadmap', - meta: { - title: 'roadmap', - icon: 'vn:troncales', - moduleName: 'Roadmap', - }, - component: RouterView, - redirect: { name: 'RoadmapMain' }, - children: [ - { - name: 'RoadmapMain', - path: '', - component: () => import('src/components/common/VnModule.vue'), - redirect: { name: 'RoadmapIndexMain' }, - children: [ - { - name: 'RoadmapIndexMain', - path: '', - redirect: { name: 'RoadmapList' }, - component: () => import('src/pages/Route/RouteRoadmap.vue'), - children: [ - { - name: 'RoadmapList', - path: 'list', - meta: { - title: 'roadmapList', - icon: 'view_list', - }, - }, - roadmapCard, - ], - }, - ], - }, - ], -}; diff --git a/src/router/modules/route.js b/src/router/modules/route.js index 71deaf740..946ad3e15 100644 --- a/src/router/modules/route.js +++ b/src/router/modules/route.js @@ -121,6 +121,45 @@ const agencyCard = { ], }; +const roadmapCard = { + path: ':id', + name: 'RoadmapCard', + component: () => import('src/pages/Route/Roadmap/RoadmapCard.vue'), + redirect: { name: 'RoadmapSummary' }, + meta: { + menu: ['RoadmapBasicData', 'RoadmapStops'], + }, + children: [ + { + name: 'RoadmapSummary', + path: 'summary', + meta: { + title: 'summary', + icon: 'open_in_new', + }, + component: () => import('pages/Route/Roadmap/RoadmapSummary.vue'), + }, + { + name: 'RoadmapBasicData', + path: 'basic-data', + meta: { + title: 'basicData', + icon: 'vn:settings', + }, + component: () => import('pages/Route/Roadmap/RoadmapBasicData.vue'), + }, + { + name: 'RoadmapStops', + path: 'stops', + meta: { + title: 'stops', + icon: 'vn:lines', + }, + component: () => import('pages/Route/Roadmap/RoadmapStops.vue'), + }, + ], +}; + export default { name: 'Route', path: '/route', @@ -193,11 +232,23 @@ export default { { path: 'roadmap', name: 'RouteRoadmap', + redirect: { name: 'RoadmapList' }, meta: { title: 'RouteRoadmap', icon: 'vn:troncales', }, component: () => import('src/pages/Route/RouteRoadmap.vue'), + children: [ + { + name: 'RoadmapList', + path: 'list', + meta: { + title: 'list', + icon: 'view_list', + }, + }, + roadmapCard, + ], }, { path: 'cmr', @@ -210,7 +261,7 @@ export default { }, { path: 'agency', - name: 'AgencyMain', + name: 'RouteAgency', redirect: { name: 'AgencyList' }, meta: { title: 'agency', diff --git a/src/router/routes.js b/src/router/routes.js index 733400c4b..ed1c7afb6 100644 --- a/src/router/routes.js +++ b/src/router/routes.js @@ -12,7 +12,6 @@ import travel from './modules/travel'; import shelving from 'src/router/modules/shelving'; import order from 'src/router/modules/order'; import entry from 'src/router/modules/entry'; -import roadmap from 'src/router/modules/roadmap'; import zone from 'src/router/modules/zone'; import account from './modules/account'; import monitor from 'src/router/modules/monitor'; @@ -81,7 +80,6 @@ const routes = [ route, supplier, travel, - roadmap, entry, zone, account, diff --git a/test/cypress/integration/route/agency/agencyWorkCenter.spec.js b/test/cypress/integration/route/agency/agencyWorkCenter.spec.js index fdfcd4286..e28caea7c 100644 --- a/test/cypress/integration/route/agency/agencyWorkCenter.spec.js +++ b/test/cypress/integration/route/agency/agencyWorkCenter.spec.js @@ -2,7 +2,7 @@ describe('AgencyWorkCenter', () => { beforeEach(() => { cy.viewport(1920, 1080); cy.login('developer'); - cy.visit(`/#/agency/11/workCenter`); + cy.visit(`/#/route/agency/11/workCenter`); }); const createButton = '.q-page-sticky > div > .q-btn > .q-btn__content > .q-icon'; const workCenterCombobox = 'input[role="combobox"]'; diff --git a/test/cypress/integration/route/roadMap/roadmapList.spec.js b/test/cypress/integration/route/roadMap/roadmapList.spec.js index 2f5e5672f..6d46b2cf6 100644 --- a/test/cypress/integration/route/roadMap/roadmapList.spec.js +++ b/test/cypress/integration/route/roadMap/roadmapList.spec.js @@ -1,12 +1,11 @@ describe('RoadMap', () => { beforeEach(() => { - cy.viewport(1920, 1080); cy.login('developer'); cy.visit(`/#/route/roadmap`); }); it('Route list create roadmap and redirect', () => { cy.addBtnClick(); - cy.get('input[name="name"]').eq(1).type('roadMapTestOne{enter}'); + cy.get('input[name="name"]').type('roadMapTestOne{enter}'); cy.get('.q-notification__message').should('have.text', 'Data created'); cy.url().should('include', '/summary'); }); From 198db0df49644f2a28c3339539157e1c00cd9c2b Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 27 Jan 2025 08:23:09 +0100 Subject: [PATCH 49/79] fix(VnCardBeta): add userFilter --- src/components/common/VnCardBeta.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/common/VnCardBeta.vue b/src/components/common/VnCardBeta.vue index 349956be9..8357ac726 100644 --- a/src/components/common/VnCardBeta.vue +++ b/src/components/common/VnCardBeta.vue @@ -12,6 +12,7 @@ const props = defineProps({ baseUrl: { type: String, default: undefined }, customUrl: { type: String, default: undefined }, filter: { type: Object, default: () => {} }, + userFilter: { type: Object, default: () => {} }, descriptor: { type: Object, required: true }, filterPanel: { type: Object, default: undefined }, searchDataKey: { type: String, default: undefined }, From 1322dad63d7a421c162ae6fe71c0445a74eddcec Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 27 Jan 2025 08:29:42 +0100 Subject: [PATCH 50/79] fix(VnCardBeta): add userFilter --- src/components/common/VnCardBeta.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/common/VnCardBeta.vue b/src/components/common/VnCardBeta.vue index 8357ac726..a1f07ff17 100644 --- a/src/components/common/VnCardBeta.vue +++ b/src/components/common/VnCardBeta.vue @@ -33,6 +33,7 @@ const url = computed(() => { const arrayData = useArrayData(props.dataKey, { url: url.value, filter: props.filter, + userFilter: props.userFilter, }); onBeforeMount(async () => { From 75ba4d4fd9d775439eb23e22bece1ffee11292e9 Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Mon, 27 Jan 2025 08:57:24 +0100 Subject: [PATCH 51/79] feat: refs #8387 changes request --- src/components/CrudModel.vue | 8 ++++---- src/pages/Item/Card/ItemTags.vue | 22 +++------------------- 2 files changed, 7 insertions(+), 23 deletions(-) diff --git a/src/components/CrudModel.vue b/src/components/CrudModel.vue index 98cd94adc..62e4ed9df 100644 --- a/src/components/CrudModel.vue +++ b/src/components/CrudModel.vue @@ -84,7 +84,7 @@ const saveButtonRef = ref(null); const watchChanges = ref(); const formUrl = computed(() => $props.url); -const emit = defineEmits(['onFetch', 'update:selected', 'saveChanges', 'dataError']); +const emit = defineEmits(['onFetch', 'update:selected', 'saveChanges']); defineExpose({ reload, @@ -149,7 +149,7 @@ function filter(value, update, filterOptions) { (ref) => { ref.setOptionIndex(-1); ref.moveOptionSelection(1, true); - } + }, ); } @@ -164,7 +164,7 @@ async function onSubmit() { isLoading.value = true; await saveChanges($props.saveFn ? formData.value : null); } catch (e) { - emit('dataError', e); + throw e; } } @@ -219,7 +219,7 @@ async function remove(data) { if (preRemove.length) { newData = newData.filter( - (form) => !preRemove.some((index) => index == form.$index) + (form) => !preRemove.some((index) => index == form.$index), ); const changes = getChanges(); if (!changes.creates?.length && !changes.updates?.length) diff --git a/src/pages/Item/Card/ItemTags.vue b/src/pages/Item/Card/ItemTags.vue index d64929f78..5876cf8dc 100644 --- a/src/pages/Item/Card/ItemTags.vue +++ b/src/pages/Item/Card/ItemTags.vue @@ -9,15 +9,13 @@ import VnInput from 'src/components/common/VnInput.vue'; import FetchData from 'components/FetchData.vue'; import VnSelect from 'src/components/common/VnSelect.vue'; import axios from 'axios'; -import { useQuasar } from 'quasar'; const route = useRoute(); const { t } = useI18n(); -const itemTagsRef = ref(null); +const itemTagsRef = ref(); const tagOptions = ref([]); const valueOptionsMap = ref(new Map()); -const quasar = useQuasar(); const getSelectedTagValues = async (tag) => { if (!tag.tagFk && tag.tag.isFree) return; const filter = { @@ -60,19 +58,6 @@ const insertTag = (rows) => { itemTagsRef.value.formData[itemTagsRef.value.formData.length - 1].priority = getHighestPriority(rows); }; - -const submitTags = async (data) => { - itemTagsRef.value.onSubmit(data); -}; - -const errMessage = ref(); -function showError(error) { - errMessage.value = error?.response?.data?.error?.message; - quasar.notify({ - type: 'negative', - message: t(`${errMessage.value}`), - }); -} </script> <template> @@ -115,7 +100,6 @@ function showError(error) { order="priority" auto-load @on-fetch="onItemTagsFetched" - @data-error="(val) => showError(val)" > <template #body="{ rows, validate }"> <QCard class="q-px-lg q-pt-md q-pb-sm" data-cy="itemTags"> @@ -160,7 +144,7 @@ function showError(error) { v-model="row.value" :label="t('itemTags.value')" :is-clearable="false" - @keyup.enter.stop="submitTags(row)" + @keyup.enter.stop="(data) => itemTagsRef.onSubmit(data)" /> <VnInput :label="t('itemBasicData.relevancy')" @@ -168,7 +152,7 @@ function showError(error) { v-model="row.priority" :required="true" :rules="validate('itemTag.priority')" - @keyup.enter.stop="submitTags(row)" + @keyup.enter.stop="(data) => itemTagsRef.onSubmit(data)" /> <div class="row justify-center" style="flex: 0"> <QIcon From 8d4dc5d9e15616b6f2a98a69c5b89640b13c2efd Mon Sep 17 00:00:00 2001 From: jtubau <jtubau@verdnatura.es> Date: Mon, 27 Jan 2025 09:17:19 +0100 Subject: [PATCH 52/79] fix: refs #8316 fix broken localizations for entry descriptor menu and items filter panel --- src/components/ItemsFilterPanel.vue | 7 +++++++ src/pages/Entry/Card/EntryDescriptorMenu.vue | 2 +- src/pages/Entry/locale/en.yml | 2 ++ src/pages/Entry/locale/es.yml | 2 ++ 4 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/components/ItemsFilterPanel.vue b/src/components/ItemsFilterPanel.vue index 084feb377..1586cad73 100644 --- a/src/components/ItemsFilterPanel.vue +++ b/src/components/ItemsFilterPanel.vue @@ -349,4 +349,11 @@ es: floramondo: Floramondo salesPersonFk: Comprador categoryFk: Categoría + Plant: Planta + Flower: Flor + Handmade: Hecho a mano + Artificial: Artificial + Green: Verde + Accessories: Accesorios + Fruit: Fruta </i18n> diff --git a/src/pages/Entry/Card/EntryDescriptorMenu.vue b/src/pages/Entry/Card/EntryDescriptorMenu.vue index a357b46fe..03cab2651 100644 --- a/src/pages/Entry/Card/EntryDescriptorMenu.vue +++ b/src/pages/Entry/Card/EntryDescriptorMenu.vue @@ -17,6 +17,6 @@ function showEntryReport() { <template> <QItem v-ripple clickable @click="showEntryReport"> - <QItemSection>{{ $t('entryList.list.showEntryReport') }}</QItemSection> + <QItemSection>{{ $t('entry.descriptorMenu.showEntryReport') }}</QItemSection> </QItem> </template> diff --git a/src/pages/Entry/locale/en.yml b/src/pages/Entry/locale/en.yml index 97a3be32b..80f3491a8 100644 --- a/src/pages/Entry/locale/en.yml +++ b/src/pages/Entry/locale/en.yml @@ -76,6 +76,8 @@ entry: warehouseInFk: Warehouse in search: Search entries searchInfo: You can search by entry reference + descriptorMenu: + showEntryReport: Show entry report entryFilter: params: invoiceNumber: Invoice number diff --git a/src/pages/Entry/locale/es.yml b/src/pages/Entry/locale/es.yml index 993913417..a5b968016 100644 --- a/src/pages/Entry/locale/es.yml +++ b/src/pages/Entry/locale/es.yml @@ -75,6 +75,8 @@ entry: warehouseInFk: Alm. entrada daysOnward: Días adelante daysAgo: Días atras + descriptorMenu: + showEntryReport: Ver informe del pedido search: Buscar entradas searchInfo: Puedes buscar por referencia de entrada entryFilter: From e7628d3e4bdbc9c728c86ec287fc64b40e35d5d2 Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 27 Jan 2025 09:36:19 +0100 Subject: [PATCH 53/79] fix: refs #8316 filter --- src/pages/InvoiceIn/InvoiceInList.vue | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/pages/InvoiceIn/InvoiceInList.vue b/src/pages/InvoiceIn/InvoiceInList.vue index 024ac97bb..251dfcd92 100644 --- a/src/pages/InvoiceIn/InvoiceInList.vue +++ b/src/pages/InvoiceIn/InvoiceInList.vue @@ -134,7 +134,7 @@ const cols = computed(() => [ <template> <FetchData url="Companies" @on-fetch="(data) => (companies = data)" auto-load /> <VnSection - :data-key="dataKey" + :data-key :columns="cols" prefix="invoiceIn" :array-data-props="{ @@ -142,13 +142,13 @@ const cols = computed(() => [ order: ['issued DESC', 'id DESC'], }" > - <template #rightMenu> - <InvoiceInFilter data-key="InvoiceInList" /> + <template #advanced-menu> + <InvoiceInFilter :data-key /> </template> <template #body> <VnTable ref="tableRef" - :data-key="dataKey" + :data-key :create="{ urlCreate: 'InvoiceIns', title: t('globals.createInvoiceIn'), @@ -202,7 +202,10 @@ const cols = computed(() => [ option-label="code" :required="true" /> - <VnInputDate :label="t('invoiceIn.summary.issued')" v-model="data.issued" /> + <VnInputDate + :label="t('invoiceIn.summary.issued')" + v-model="data.issued" + /> </template> </VnTable> </template> From 02da97a8df6f55262456d11edab73607475a1356 Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 27 Jan 2025 10:00:09 +0100 Subject: [PATCH 54/79] fix(VnSection): destroy data when unmounted --- src/components/common/VnSection.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/common/VnSection.vue b/src/components/common/VnSection.vue index 376eaf03d..4d7984482 100644 --- a/src/components/common/VnSection.vue +++ b/src/components/common/VnSection.vue @@ -75,6 +75,10 @@ onMounted(() => { onUnmounted(unsubscribe); }); +onUnmounted(() => { + if (arrayData) arrayData.destroy(); +}); + function checkIsMain() { isMainSection.value = sectionValue.value == route.name; if (!isMainSection.value && arrayData) { From 6b87402a6ab9c7706d5f27392f10ea3db14e4b89 Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 27 Jan 2025 10:24:35 +0100 Subject: [PATCH 55/79] refactor: advancedMenu button inside searchbar --- src/components/NavBar.vue | 1 - src/components/common/RightAdvancedMenu.vue | 4 ++-- src/components/ui/VnSearchbar.vue | 3 ++- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index 040dde628..ef5bdc6ac 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -61,7 +61,6 @@ onMounted(() => stateStore.setMounted()); /> <QSpace /> <div id="searchbar" class="searchbar"></div> - <div id="searchbar-after"></div> <QSpace /> <div class="q-pl-sm q-gutter-sm row items-center no-wrap"> <div id="actions-prepend"></div> diff --git a/src/components/common/RightAdvancedMenu.vue b/src/components/common/RightAdvancedMenu.vue index f5797a164..b40e9f843 100644 --- a/src/components/common/RightAdvancedMenu.vue +++ b/src/components/common/RightAdvancedMenu.vue @@ -20,7 +20,7 @@ watch( (val) => { if (stateStore) stateStore.rightAdvancedDrawer = val; }, - { immediate: true } + { immediate: true }, ); </script> <template> @@ -30,8 +30,8 @@ watch( flat @click="stateStore.toggleRightAdvancedDrawer()" round - dense icon="tune" + color="white" > <QTooltip bottom anchor="bottom right"> {{ t('globals.advancedMenu') }} diff --git a/src/components/ui/VnSearchbar.vue b/src/components/ui/VnSearchbar.vue index a5ca97b70..30e4135e2 100644 --- a/src/components/ui/VnSearchbar.vue +++ b/src/components/ui/VnSearchbar.vue @@ -102,7 +102,7 @@ watch( (val) => { arrayData = useArrayData(val, { ...props }); store = arrayData.store; - } + }, ); onMounted(() => { @@ -176,6 +176,7 @@ async function search() { > <QTooltip>{{ t(props.info) }}</QTooltip> </QIcon> + <div id="searchbar-after"></div> </template> </VnInput> </QForm> From 2cc04da76cefa7bad93dfd083fff16cdc7d14f23 Mon Sep 17 00:00:00 2001 From: robert <robert@verdnatura.es> Date: Mon, 27 Jan 2025 12:27:58 +0100 Subject: [PATCH 56/79] feat: refs #8387 refs#8387 change request --- src/components/CrudModel.vue | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/src/components/CrudModel.vue b/src/components/CrudModel.vue index 62e4ed9df..d569dfda1 100644 --- a/src/components/CrudModel.vue +++ b/src/components/CrudModel.vue @@ -154,18 +154,14 @@ function filter(value, update, filterOptions) { } async function onSubmit() { - try { - if (!hasChanges.value) { - return quasar.notify({ - type: 'negative', - message: t('globals.noChanges'), - }); - } - isLoading.value = true; - await saveChanges($props.saveFn ? formData.value : null); - } catch (e) { - throw e; + if (!hasChanges.value) { + return quasar.notify({ + type: 'negative', + message: t('globals.noChanges'), + }); } + isLoading.value = true; + await saveChanges($props.saveFn ? formData.value : null); } async function onSubmitAndGo() { From 13cd59c6bb6f24a9358b70cf6ee26b5723f8708a Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Mon, 27 Jan 2025 13:52:37 +0100 Subject: [PATCH 57/79] fix: socialName filter --- src/pages/Customer/CustomerList.vue | 63 ++++++++++++++++------------- 1 file changed, 36 insertions(+), 27 deletions(-) diff --git a/src/pages/Customer/CustomerList.vue b/src/pages/Customer/CustomerList.vue index 89a0f5986..0adfdb5f7 100644 --- a/src/pages/Customer/CustomerList.vue +++ b/src/pages/Customer/CustomerList.vue @@ -39,8 +39,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('globals.name'), name: 'name', + label: t('globals.name'), isTitle: true, create: true, columnClass: 'expand', @@ -52,17 +52,26 @@ const columns = computed(() => [ isTitle: true, create: true, columnClass: 'expand', + columnFilter: { + component: 'select', + attrs: { + url: 'Clients', + fields: ['socialName'], + optionLabel: 'socialName', + optionValue: 'socialName', + }, + }, }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.fi'), name: 'fi', + label: t('customer.extendedList.tableVisibleColumns.fi'), create: true, }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.salesPersonFk'), name: 'salesPersonFk', + label: t('customer.extendedList.tableVisibleColumns.salesPersonFk'), component: 'select', attrs: { url: 'Workers/activeWithInheritedRole', @@ -78,8 +87,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.summary.credit'), name: 'credit', + label: t('customer.summary.credit'), columnFilter: { component: 'number', inWhere: true, @@ -87,8 +96,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.creditInsurance'), name: 'creditInsurance', + label: t('customer.extendedList.tableVisibleColumns.creditInsurance'), columnFilter: { component: 'number', inWhere: true, @@ -96,8 +105,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.phone'), name: 'phone', + label: t('customer.extendedList.tableVisibleColumns.phone'), cardVisible: true, columnFilter: { component: 'number', @@ -116,8 +125,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.summary.mobile'), name: 'mobile', + label: t('customer.summary.mobile'), cardVisible: true, columnFilter: { component: 'number', @@ -126,8 +135,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.street'), name: 'street', + label: t('customer.extendedList.tableVisibleColumns.street'), create: true, columnFilter: { inWhere: true, @@ -136,8 +145,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.countryFk'), name: 'countryFk', + label: t('customer.extendedList.tableVisibleColumns.countryFk'), columnFilter: { component: 'select', inWhere: true, @@ -150,8 +159,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.provinceFk'), name: 'provinceFk', + label: t('customer.extendedList.tableVisibleColumns.provinceFk'), component: 'select', attrs: { url: 'Provinces', @@ -163,24 +172,24 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.summary.city'), name: 'city', + label: t('customer.summary.city'), }, { align: 'left', - label: t('customer.summary.postcode'), name: 'postcode', + label: t('customer.summary.postcode'), }, { align: 'left', - label: t('globals.params.email'), name: 'email', + label: t('globals.params.email'), cardVisible: true, }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.created'), name: 'created', + label: t('customer.extendedList.tableVisibleColumns.created'), format: ({ created }) => toDate(created), columnFilter: { component: 'date', @@ -190,8 +199,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.businessTypeFk'), name: 'businessTypeFk', + label: t('customer.extendedList.tableVisibleColumns.businessTypeFk'), create: true, component: 'select', columnFilter: { @@ -211,8 +220,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.summary.payMethodFk'), name: 'payMethodFk', + label: t('customer.summary.payMethodFk'), columnFilter: { component: 'select', attrs: { @@ -254,8 +263,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.summary.isActive'), name: 'isActive', + label: t('customer.summary.isActive'), chip: { color: null, condition: (value) => !value, @@ -267,24 +276,24 @@ const columns = computed(() => [ }, { align: 'left', - label: t('globals.isVies'), name: 'isVies', + label: t('globals.isVies'), columnFilter: { inWhere: true, }, }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.isTaxDataChecked'), name: 'isTaxDataChecked', + label: t('customer.extendedList.tableVisibleColumns.isTaxDataChecked'), columnFilter: { inWhere: true, }, }, { align: 'left', - label: t('customer.summary.isEqualizated'), name: 'isEqualizated', + label: t('customer.summary.isEqualizated'), create: true, columnFilter: { inWhere: true, @@ -292,8 +301,8 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.isFreezed'), name: 'isFreezed', + label: t('customer.extendedList.tableVisibleColumns.isFreezed'), chip: { color: null, condition: (value) => value, @@ -305,48 +314,48 @@ const columns = computed(() => [ }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.hasToInvoice'), name: 'hasToInvoice', + label: t('customer.extendedList.tableVisibleColumns.hasToInvoice'), columnFilter: { inWhere: true, }, }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.hasToInvoiceByAddress'), name: 'hasToInvoiceByAddress', + label: t('customer.extendedList.tableVisibleColumns.hasToInvoiceByAddress'), columnFilter: { inWhere: true, }, }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.isToBeMailed'), name: 'isToBeMailed', + label: t('customer.extendedList.tableVisibleColumns.isToBeMailed'), columnFilter: { inWhere: true, }, }, { align: 'left', - label: t('customer.summary.hasLcr'), name: 'hasLcr', + label: t('customer.summary.hasLcr'), columnFilter: { inWhere: true, }, }, { align: 'left', - label: t('customer.summary.hasCoreVnl'), name: 'hasCoreVnl', + label: t('customer.summary.hasCoreVnl'), columnFilter: { inWhere: true, }, }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.hasSepaVnl'), name: 'hasSepaVnl', + label: t('customer.extendedList.tableVisibleColumns.hasSepaVnl'), columnFilter: { inWhere: true, }, From d1ba6e580f5f0ddc79a870904b990af2ae894dab Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Mon, 27 Jan 2025 13:52:44 +0100 Subject: [PATCH 58/79] fix: params --- src/pages/Customer/CustomerFilter.vue | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/pages/Customer/CustomerFilter.vue b/src/pages/Customer/CustomerFilter.vue index 96f670542..008cb49b5 100644 --- a/src/pages/Customer/CustomerFilter.vue +++ b/src/pages/Customer/CustomerFilter.vue @@ -166,15 +166,33 @@ en: fi: FI salesPersonFk: Salesperson provinceFk: Province + isActive: Is active city: City phone: Phone email: Email + isToBeMailed: Mailed + isEqualizated: Equailized + businessTypeFk: Business type + sti: + CodigoIva: Sage Tax Type + stt: + CodigoTransaccion: Sage Tax Type + payMethodFk: Billing data zoneFk: Zone postcode: Postcode es: params: search: Contiene fi: NIF + isActive: Activo + isToBeMailed: A enviar + isEqualizated: Recargo de equivalencia + businessTypeFk: Tipop de negocio + sti: + CodigoIva: Tipo de impuesto Sage + stt: + CodigoTransaccion: Tipo de impuesto Sage + payMethodFk: Forma de pago salesPersonFk: Comercial provinceFk: Provincia city: Ciudad From 9dd216269a00e4719d9b80112a9c014e6ee79954 Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Mon, 27 Jan 2025 14:03:38 +0100 Subject: [PATCH 59/79] fix: vnSelectWorker fix template --- src/pages/Customer/CustomerList.vue | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/pages/Customer/CustomerList.vue b/src/pages/Customer/CustomerList.vue index 0adfdb5f7..de08c6531 100644 --- a/src/pages/Customer/CustomerList.vue +++ b/src/pages/Customer/CustomerList.vue @@ -436,32 +436,10 @@ function handleLocation(data, location) { <VnSelectWorker :label="t('customer.summary.salesPerson')" v-model="data.salesPersonFk" - :params="{ - departmentCodes: ['VT', 'shopping'], - }" :has-avatar="true" - :id-value="data.salesPersonFk" emit-value auto-load > - <template #prepend> - <VnAvatar - :worker-id="data.salesPersonFk" - color="primary" - :title="title" - /> - </template> - <template #option="scope"> - <QItem v-bind="scope.itemProps"> - <QItemSection> - <QItemLabel>{{ scope.opt?.name }}</QItemLabel> - <QItemLabel caption - >{{ scope.opt?.nickname }}, - {{ scope.opt?.code }}</QItemLabel - > - </QItemSection> - </QItem> - </template> </VnSelectWorker> <VnLocation :acls="[{ model: 'Province', props: '*', accessType: 'WRITE' }]" From 0916afbe37f12327bec9524fd05296fb1ac16e55 Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Mon, 27 Jan 2025 14:04:37 +0100 Subject: [PATCH 60/79] fix: changel i18n --- src/pages/Customer/CustomerFilter.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/Customer/CustomerFilter.vue b/src/pages/Customer/CustomerFilter.vue index 008cb49b5..921198c80 100644 --- a/src/pages/Customer/CustomerFilter.vue +++ b/src/pages/Customer/CustomerFilter.vue @@ -1,3 +1,4 @@ + <script setup> import { useI18n } from 'vue-i18n'; import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue'; @@ -187,7 +188,7 @@ es: isActive: Activo isToBeMailed: A enviar isEqualizated: Recargo de equivalencia - businessTypeFk: Tipop de negocio + businessTypeFk: Tipo de negocio sti: CodigoIva: Tipo de impuesto Sage stt: From b266c44d34003cc02c1b6f3c10dd0ecd2d07bece Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Mon, 27 Jan 2025 14:30:59 +0100 Subject: [PATCH 61/79] fix: sage params --- src/pages/Customer/CustomerFilter.vue | 12 ++++-------- src/pages/Customer/CustomerList.vue | 8 ++------ 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/src/pages/Customer/CustomerFilter.vue b/src/pages/Customer/CustomerFilter.vue index c8e8bb2ff..eae97d1be 100644 --- a/src/pages/Customer/CustomerFilter.vue +++ b/src/pages/Customer/CustomerFilter.vue @@ -177,10 +177,8 @@ en: isToBeMailed: Mailed isEqualizated: Equailized businessTypeFk: Business type - sti: - CodigoIva: Sage Tax Type - stt: - CodigoTransaccion: Sage Tax Type + sageTaxTypeFk: Sage Tax Type + sageTransactionTypeFk: Sage Tax Type payMethodFk: Billing data zoneFk: Zone socialName : Social name @@ -194,10 +192,8 @@ es: isToBeMailed: A enviar isEqualizated: Recargo de equivalencia businessTypeFk: Tipo de negocio - sti: - CodigoIva: Tipo de impuesto Sage - stt: - CodigoTransaccion: Tipo de impuesto Sage + sageTaxTypeFk: Tipo de impuesto Sage + sageTransactionTypeFk: Tipo de impuesto Sage payMethodFk: Forma de pago salesPersonFk: Comercial provinceFk: Provincia diff --git a/src/pages/Customer/CustomerList.vue b/src/pages/Customer/CustomerList.vue index 19c3aa3af..1e7ed080e 100644 --- a/src/pages/Customer/CustomerList.vue +++ b/src/pages/Customer/CustomerList.vue @@ -236,30 +236,26 @@ const columns = computed(() => [ { align: 'left', label: t('customer.extendedList.tableVisibleColumns.sageTaxTypeFk'), - name: 'CodigoIva', + name: 'sageTaxTypeFk', columnFilter: { component: 'select', attrs: { optionLabel: 'vat', url: 'SageTaxTypes', }, - alias: 'sti', - inWhere: true, }, format: (row, dashIfEmpty) => dashIfEmpty(row.sageTaxType), }, { align: 'left', label: t('customer.extendedList.tableVisibleColumns.sageTransactionTypeFk'), - name: 'CodigoTransaccion', + name: 'sageTransactionTypeFk', columnFilter: { component: 'select', attrs: { optionLabel: 'transaction', url: 'SageTransactionTypes', }, - alias: 'stt', - inWhere: true, }, format: (row, dashIfEmpty) => dashIfEmpty(row.sageTransactionType), }, From ba3f6a79e6a3b93bfbaa0d8b3f678aac9faec741 Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Mon, 27 Jan 2025 14:31:54 +0100 Subject: [PATCH 62/79] style: customerList --- src/pages/Customer/CustomerList.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/Customer/CustomerList.vue b/src/pages/Customer/CustomerList.vue index 1e7ed080e..7efa5e7e5 100644 --- a/src/pages/Customer/CustomerList.vue +++ b/src/pages/Customer/CustomerList.vue @@ -56,7 +56,8 @@ const columns = computed(() => [ url: 'Clients', fields: ['socialName'], optionLabel: 'socialName', - optionValue: 'socialName', uppercase: false, + optionValue: 'socialName', + uppercase: false, }, }, attrs: { From d3e6462aedc4fa86843bbe572c9ef3658de1e3b0 Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Mon, 27 Jan 2025 15:24:08 +0100 Subject: [PATCH 63/79] build: refs #8452 add change log --- CHANGELOG.md | 154 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7797f810..fbe18a10a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,157 @@ +# Version 25.04 - 2025-01-28 + +### Added 🆕 + +- chore: add task comment by:jorgep +- chore: refs #8198 rollback by:jorgep +- chore: refs #8322 unnecessary prop by:alexm +- feat: refs #7055 added new test case by:provira +- feat: refs #7055 created FilterItemForm test by:provira +- feat: refs #7077 created test for VnInputTime by:provira +- feat: refs #7078 created test for VnJsonValue by:provira +- feat: refs #7087 added more test cases by:provira +- feat: refs #7087 added new test by:provira +- feat: refs #7087 created CardSummary test by:provira +- feat: refs #7088 created test for FetchedTags by:provira +- feat: refs #7202 added new field by:Jon +- feat: refs #7882 Added coords to create a address by:guillermo +- feat: refs #7957 add tooltip and i18n support for search link in VnSearchbar component by:jorgep +- feat: refs #7957 enhance search functionality and improve data filtering logic by:jorgep +- feat: refs #7957 open in new tab by:jorgep +- feat: refs #7957 simplify fn to by:jorgep +- feat: refs #7957 update VnSearchbar component with improved search URL handling and styling enhancements by:jorgep +- feat: refs #8117 filters and values added as needed by:jtubau +- feat: refs #8197 useHasContent and use in VnSection and RightMenu by:alexm +- feat: refs #8219 added invoice out e2e tests by:Jon +- feat: refs #8219 global invoicing e2e by:Jon +- feat: refs #8220 added barcodes e2e test by:Jon +- feat: refs #8220 created items e2e by:Jon +- feat: refs #8220 modified create item form and added respective e2e by:Jon +- feat: refs #8225 added account and invoiceOut modules by:Jon +- feat: refs #8225 added entry module and fixed translations by:Jon +- feat: refs #8225 added invoiceIn and travel module by:Jon +- feat: refs #8225 added moreOptions and use it in customer and ticket summary by:Jon +- feat: refs #8225 added route and shelving module by:Jon +- feat: refs #8225 added worker and zone modules by:Jon +- feat: refs #8225 use it in claim, item and order modules by:Jon +- feat: refs #8258 added button to pass to uppercase by:provira +- feat: refs #8258 added uppercase option to VnInput by:provira +- feat: refs #8258 added uppercase validation on supplier create by:provira +- feat: refs #8298 add price optimum input and update translations for bonus and price optimum by:jgallego +- feat: refs #8316 add entryFilter prop to VnTable component in EntryList by:jtubau +- feat: refs #8322 added department changes by:provira +- feat: refs #8372 workerPBX by:robert +- feat: refs #8381 add initial and final temperature fields to entry forms and summaries by:jgallego +- feat: refs #8381 add initial and final temperature labels in English and Spanish locales by:jgallego +- feat: refs #8381 add toCelsius filter and update temperature fields in entry forms and summaries by:jgallego +- feat: skip tests by:jorgep +- style: refs #7957 update VnSearchbar padding for improved layout by:jorgep + +### Changed 📦 + +- perf: refs #8219 #8219 minor change by:Javier Segarra +- perf: refs #8220 on-fetch and added missing translations by:Jon +- perf: refs #8220 on-fetch by:Jon +- perf: refs #8220 translations by:Jon +- perf: refs #8220 use searchbar selector in e2e tests by:Jon +- perf: remove warning default value by:Javier Segarra +- refactor: redirect using params by:Jon +- refactor: refs #7077 removed some comments by:provira +- refactor: refs #7087 removed unused imports by:provira +- refactor: refs #7100 added const mockData by:jtubau +- refactor: refs #7100 delete unnecesary set prop by:jtubau +- refactor: refs #7100 refactorized with methods by:jtubau +- refactor: refs #7957 remove blank by:jorgep +- refactor: refs #8198 simplify data fetching and filtering logic by:jorgep +- refactor: refs #8198 simplify state management and data fetching in ItemDiary component by:jorgep +- refactor: refs #8219 modified e2e tests and fixed some translations by:Jon +- refactor: refs #8219 modified list test, created cypress download folder and added to gitignore by:Jon +- refactor: refs #8219 requested changes by:Jon +- refactor: refs #8219 use checkNotification command by:Jon +- refactor: refs #8220 added data-cy for e2e tests by:Jon +- refactor: refs #8220 requested changes by:Jon +- refactor: refs #8220 skip failling test and modifed tag test by:Jon +- refactor: refs #8225 requested changes by:Jon +- refactor: refs #8247 use new acl for sysadmin by:Jon +- refactor: refs #8316 added claimFilter by:jtubau +- refactor: refs #8316 added entryFilter by:jtubau +- refactor: refs #8316 add new localization keys and update existing ones for entry components by:jtubau +- refactor: refs #8316 moved localizations to local locale by:jtubau +- refactor: refs #8316 move order localization by:jtubau +- refactor: refs #8316 remove unused OrderSearchbar component by:jtubau +- refactor: refs #8316 update EntryCard to use user-filter prop and remove exprBuilder from EntryList by:jtubau +- refactor: refs #8316 used VnSection and VnCardBeta by:jtubau +- refactor: refs #8322 changed translations by:provira +- refactor: refs #8322 changed Worker component to use VnSection/VnCardBeta by:provira +- refactor: refs #8322 set department inside worker by:alexm +- refactor: skip intermitent failing test by:Jon + +### Fixed 🛠️ + +- feat: refs #8225 added entry module and fixed translations by:Jon +- fix: added missing translations in InvoiceIn by:provira +- fix: changed invoiceIn for InvoiceIn by:provira +- fix: changed translations to only use "invoicein" by:provira +- fix: department descriptor link by:Jon +- fix: e2e tests by:Jon +- fix: entry summary view and build warnings by:Jon +- fix: fixed InvoiceIn filter translations by:provira +- fix: modified setData in customerDescriptor to show the icons by:Jon +- fix: redirect to TicketSale from OrderLines (origin/Fix-RedirectToTicketSale) by:Jon +- fix: redirect when confirming lines by:Jon +- fix: refs #7055 #7055 #7055 fixed some tests by:provira +- fix: refs #7077 removed unused imports by:provira +- fix: refs #7078 added missing case with array by:provira +- fix: refs #7087 fixed some tests by:provira +- fix: refs #7088 changed "vm.vm" to "vm" by:provira +- fix: refs #7088 changed wrapper to vm by:provira +- fix: refs #7699 add icons and hint by:carlossa +- fix: refs #7699 add pwd vnInput by:carlossa +- fix: refs #7699 fix component by:carlossa +- fix: refs #7699 fix password visibility by:carlossa +- fix: refs #7699 fix tfront clean code by:carlossa +- fix: refs #7699 fix vnChangePassword, clean VnInput by:carlossa +- fix: refs #7699 fix vnInputPassword by:carlossa +- fix: refs #7957 add missing closing brace by:jorgep +- fix: refs #7957 css by:jorgep +- fix: refs #7957 rollback by:jorgep +- fix: refs #7957 update data-cy by:jorgep +- fix: refs #7957 update visibility handling for clear icon in VnInput component by:jorgep +- fix: refs #7957 vn-searchbar test by:jorgep +- fix: refs #8117 update salesPersonFk filter options and URL for improved data retrieval by:jtubau +- fix: refs #8197 not use yet by:alexm +- fix: refs #8198 update query param by:jorgep +- fix: refs #8219 fixed e2e tests by:Jon +- fix: refs #8219 fixed summary and global tests by:Jon +- fix: refs #8219 forgotten dataCy by:Jon +- fix: refs #8219 global e2e by:Jon +- fix: refs #8219 requested changes by:Jon +- fix: refs #8220 itemTag test by:Javier Segarra +- fix: refs #8225 invoice in translations by:Jon +- fix: refs #8243 fixed SkeletonSummary by:provira +- fix: refs #8247 conflicts by:Jon +- fix: refs #8247 fixed acls and added lost options by:Jon +- fix: refs #8316 ref="claimFilterRef" by:alexm +- fix: refs #8316 userFilter by:alexm +- fix: refs #8316 use rightMenu by:alexm +- fix: refs #8316 use section-searchbar by:alexm +- fix: refs #8317 disable action buttons when no rows are selected in ItemFixedPrice by:jtubau +- fix: refs #8322 unnecessary section by:alexm +- fix: refs #8338 fixed VnTable translations by:provira +- fix: refs #8338 removed chipLocale property/added more translations by:provira +- fix: refs #8448 e2e by:Jon +- fix: refs #8448 not use croppie by:alexm +- fix: remove departmentCode by:Javier Segarra +- fix: removed unused searchbar by:PAU ROVIRA ROSALENY +- fix: skip failling e2e by:Jon +- fix: sort by name in description by:Jon +- fix: translations by:Jon +- fix: use entryFilter by:alexm +- fix(VnCardBeta): add userFilter by:alexm +- refactor: refs #8219 modified e2e tests and fixed some translations by:Jon +- revert: revert header by:alexm +- test: fix expedition e2e by:alexm + # Version 25.00 - 2025-01-14 ### Added 🆕 From 6a17f87050bb0defa4c4d6352e8e5b6324ddb95f Mon Sep 17 00:00:00 2001 From: jtubau <jtubau@verdnatura.es> Date: Tue, 28 Jan 2025 07:46:16 +0100 Subject: [PATCH 64/79] refactor: refs #8316 update Spanish translations for ItemsFilterPanel --- src/components/ItemsFilterPanel.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ItemsFilterPanel.vue b/src/components/ItemsFilterPanel.vue index 1586cad73..be4d475b6 100644 --- a/src/components/ItemsFilterPanel.vue +++ b/src/components/ItemsFilterPanel.vue @@ -349,11 +349,11 @@ es: floramondo: Floramondo salesPersonFk: Comprador categoryFk: Categoría - Plant: Planta - Flower: Flor + Plant: Planta natural + Flower: Flor fresca Handmade: Hecho a mano Artificial: Artificial - Green: Verde - Accessories: Accesorios + Green: Verdes frescos + Accessories: Complementos florales Fruit: Fruta </i18n> From 2f19f093cb3b16da78a3e13fdb40b44f3a5ff586 Mon Sep 17 00:00:00 2001 From: PAU ROVIRA ROSALENY <provira@verdnatura.es> Date: Tue, 28 Jan 2025 06:49:39 +0000 Subject: [PATCH 65/79] feat: #8258 added hover and description to uppercase button --- src/components/common/VnInput.vue | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/components/common/VnInput.vue b/src/components/common/VnInput.vue index e921d8e1f..13902d271 100644 --- a/src/components/common/VnInput.vue +++ b/src/components/common/VnInput.vue @@ -174,7 +174,11 @@ const handleUppercase = () => { v-if="!$attrs.disabled && !($attrs.readonly) && $props.uppercase" @click="handleUppercase" class="uppercase-icon" - /> + > + <QTooltip> + {{ t('Convert to uppercase') }} + </QTooltip> + </QIcon> <slot name="append" v-if="$slots.append && !$attrs.disabled" /> <QIcon v-if="info" name="info"> @@ -187,13 +191,26 @@ const handleUppercase = () => { </div> </template> +<style> +.uppercase-icon { + transition: color 0.3s, transform 0.2s; + cursor: pointer; +} + +.uppercase-icon:hover { + color: #ed9937; + transform: scale(1.2); +} +</style> <i18n> en: inputMin: Must be more than {value} maxLength: The value exceeds {value} characters inputMax: Must be less than {value} + es: inputMin: Debe ser mayor a {value} maxLength: El valor excede los {value} carácteres inputMax: Debe ser menor a {value} + Convert to uppercase: Convertir a mayúsculas </i18n> \ No newline at end of file From 5d6c14f4d7cea82cadb6f8ac89ae2a9ad3c11b8f Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Tue, 28 Jan 2025 08:01:01 +0100 Subject: [PATCH 66/79] fix(fixedPrice): hotFix subtoolbar --- src/pages/Item/ItemFixedPrice.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/Item/ItemFixedPrice.vue b/src/pages/Item/ItemFixedPrice.vue index 53d300a3b..1c4382fbd 100644 --- a/src/pages/Item/ItemFixedPrice.vue +++ b/src/pages/Item/ItemFixedPrice.vue @@ -422,6 +422,7 @@ function handleOnDataSave({ CrudModelRef }) { onDataSaved: handleOnDataSave, }" :disable-option="{ card: true }" + :has-sub-toolbar="false" > <template #header-selection="scope"> <QCheckbox v-model="scope.selected" /> From 0f1d13e961c9d10d3627928908eca5139eb9fc1b Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Tue, 28 Jan 2025 08:04:41 +0100 Subject: [PATCH 67/79] fix: use rightMenu --- src/pages/Ticket/Card/TicketVolume.vue | 48 +++++++++++++------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/src/pages/Ticket/Card/TicketVolume.vue b/src/pages/Ticket/Card/TicketVolume.vue index 3c9f579d4..71b16f878 100644 --- a/src/pages/Ticket/Card/TicketVolume.vue +++ b/src/pages/Ticket/Card/TicketVolume.vue @@ -11,6 +11,7 @@ import { useStateStore } from 'stores/useStateStore'; import { dashIfEmpty } from 'src/filters'; import axios from 'axios'; import VnTable from 'src/components/VnTable/VnTable.vue'; +import RightMenu from 'src/components/common/RightMenu.vue'; const route = useRoute(); const stateStore = useStateStore(); @@ -23,7 +24,7 @@ watch( async () => { await nextTick(); salesRef.value?.fetch(); - } + }, ); const salesFilter = computed(() => ({ @@ -100,29 +101,28 @@ onMounted(() => (stateStore.rightDrawer = true)); @on-fetch="(data) => applyVolumes(data)" auto-load /> - <Teleport - to="#right-panel" - v-if="stateStore.isHeaderMounted() && packingTypeVolume.length" - > - <QCard - v-for="(packingType, index) in packingTypeVolume" - :key="index" - class="q-pa-md q-mb-md q-ma-md color-vn-text" - bordered - flat - style="border-color: black" - > - <QCardSection class="column items-center" horizontal> - <span> - {{ t('volume.type') }}: - {{ dashIfEmpty(packingType.description) }} - </span> - </QCardSection> - <QCardSection class="column items-center" horizontal> - <span> {{ t('volume.volume') }}: {{ packingType.volume }} </span> - </QCardSection> - </QCard> - </Teleport> + <RightMenu> + <template #right-panel> + <QCard + v-for="(packingType, index) in packingTypeVolume" + :key="index" + class="q-pa-md q-mb-md q-ma-md color-vn-text" + bordered + flat + style="border-color: black" + > + <QCardSection class="column items-center" horizontal> + <span> + {{ t('volume.type') }}: + {{ dashIfEmpty(packingType.description) }} + </span> + </QCardSection> + <QCardSection class="column items-center" horizontal> + <span> {{ t('volume.volume') }}: {{ packingType.volume }} </span> + </QCardSection> + </QCard> + </template> + </RightMenu> <VnTable ref="tableRef" data-key="TicketVolume" From 15487bfbf2dfabbbb845466b70026544d6f06c9c Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Tue, 28 Jan 2025 08:42:31 +0100 Subject: [PATCH 68/79] fix: item type translations --- .../Item/ItemType/Card/ItemTypeBasicData.vue | 21 +++++++++++-------- .../Item/ItemType/Card/ItemTypeDescriptor.vue | 8 +++---- src/pages/Item/locale/en.yml | 7 ------- src/pages/Item/locale/es.yml | 7 ------- 4 files changed, 16 insertions(+), 27 deletions(-) diff --git a/src/pages/Item/ItemType/Card/ItemTypeBasicData.vue b/src/pages/Item/ItemType/Card/ItemTypeBasicData.vue index 1a4a7c9f3..b4032ff8a 100644 --- a/src/pages/Item/ItemType/Card/ItemTypeBasicData.vue +++ b/src/pages/Item/ItemType/Card/ItemTypeBasicData.vue @@ -48,14 +48,14 @@ const itemPackingTypesOptions = ref([]); > <template #form="{ data }"> <VnRow> - <VnInput v-model="data.code" :label="t('shared.code')" /> - <VnInput v-model="data.name" :label="t('shared.name')" /> + <VnInput v-model="data.code" :label="t('itemType.shared.code')" /> + <VnInput v-model="data.name" :label="t('itemType.shared.name')" /> </VnRow> <VnRow> <VnSelect url="Workers/search" v-model="data.workerFk" - :label="t('shared.worker')" + :label="t('itemType.shared.worker')" sort-by="nickname ASC" :fields="['id', 'nickname']" option-label="nickname" @@ -83,7 +83,7 @@ const itemPackingTypesOptions = ref([]); > <VnSelect v-model="data.categoryFk" - :label="t('shared.category')" + :label="t('itemType.shared.category')" :options="categoriesOptions" option-value="id" option-label="name" @@ -93,27 +93,30 @@ const itemPackingTypesOptions = ref([]); <VnRow> <VnSelect v-model="data.temperatureFk" - :label="t('shared.temperature')" + :label="t('itemType.shared.temperature')" :options="temperaturesOptions" option-value="code" option-label="name" hide-selected /> - <VnInput v-model="data.life" :label="t('shared.life')" /> + <VnInput v-model="data.life" :label="t('itemType.summary.life')" /> </VnRow> <VnRow> <VnSelect v-model="data.itemPackingTypeFk" - :label="t('shared.itemPackingType')" + :label="t('itemType.shared.itemPackingType')" :options="itemPackingTypesOptions" option-value="code" option-label="description" hide-selected /> - <VnInput v-model="data.maxRefs" :label="t('shared.maxRefs')" /> + <VnInput v-model="data.maxRefs" :label="t('itemType.shared.maxRefs')" /> </VnRow> <VnRow> - <QCheckbox v-model="data.isFragile" :label="t('shared.fragile')" /> + <QCheckbox + v-model="data.isFragile" + :label="t('itemType.shared.fragile')" + /> </VnRow> </template> </FormModel> diff --git a/src/pages/Item/ItemType/Card/ItemTypeDescriptor.vue b/src/pages/Item/ItemType/Card/ItemTypeDescriptor.vue index 6d093d91d..09d3dbce5 100644 --- a/src/pages/Item/ItemType/Card/ItemTypeDescriptor.vue +++ b/src/pages/Item/ItemType/Card/ItemTypeDescriptor.vue @@ -50,15 +50,15 @@ const setData = (entity) => (data.value = useCardDescription(entity.code, entity @on-fetch="setData" > <template #body="{ entity }"> - <VnLv :label="t('shared.code')" :value="entity.code" /> - <VnLv :label="t('shared.name')" :value="entity.name" /> - <VnLv :label="t('shared.worker')"> + <VnLv :label="t('itemType.shared.code')" :value="entity.code" /> + <VnLv :label="t('itemType.shared.name')" :value="entity.name" /> + <VnLv :label="t('itemType.shared.worker')"> <template #value> <span class="link">{{ entity.worker?.firstName }}</span> <WorkerDescriptorProxy :id="entity.worker?.id" /> </template> </VnLv> - <VnLv :label="t('shared.category')" :value="entity.category?.name" /> + <VnLv :label="t('itemType.shared.category')" :value="entity.category?.name" /> </template> </CardDescriptor> </template> diff --git a/src/pages/Item/locale/en.yml b/src/pages/Item/locale/en.yml index 52722198b..69014222f 100644 --- a/src/pages/Item/locale/en.yml +++ b/src/pages/Item/locale/en.yml @@ -76,13 +76,6 @@ itemTags: searchbar: label: Search item info: Search by item id -itemType: - shared: - code: Code - name: Name - worker: Worker - category: Category - temperature: Temperature item: params: daysOnward: Days onward diff --git a/src/pages/Item/locale/es.yml b/src/pages/Item/locale/es.yml index 29af8dc5c..48858f2a5 100644 --- a/src/pages/Item/locale/es.yml +++ b/src/pages/Item/locale/es.yml @@ -76,13 +76,6 @@ itemTags: searchbar: label: Buscar artículo info: Buscar por id de artículo -itemType: - shared: - code: Código - name: Nombre - worker: Trabajador - category: Reino - temperature: Temperatura params: state: asfsdf item: From c4dcac8c00906ad3f2a48078f69888546f426b3d Mon Sep 17 00:00:00 2001 From: jtubau <jtubau@verdnatura.es> Date: Tue, 28 Jan 2025 10:22:22 +0100 Subject: [PATCH 69/79] fix: refs #8420 ensure search bar is visible before typing and enable details test --- test/cypress/integration/invoiceIn/invoiceInList.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cypress/integration/invoiceIn/invoiceInList.spec.js b/test/cypress/integration/invoiceIn/invoiceInList.spec.js index 0eb495419..4e2b8f9cc 100644 --- a/test/cypress/integration/invoiceIn/invoiceInList.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInList.spec.js @@ -9,7 +9,7 @@ describe('InvoiceInList', () => { cy.viewport(1920, 1080); cy.login('developer'); cy.visit(`/#/invoice-in/list`); - cy.get('#searchbar input').type('{enter}'); + cy.get('#searchbar input').should('be.visible').type('{enter}'); }); it('should redirect on clicking a invoice', () => { @@ -22,7 +22,7 @@ describe('InvoiceInList', () => { }); }); // https://redmine.verdnatura.es/issues/8420 - it.skip('should open the details', () => { + it('should open the details', () => { cy.get(firstDetailBtn).click(); cy.get(summaryHeaders).eq(1).contains('Basic data'); cy.get(summaryHeaders).eq(4).contains('Vat'); From 879373209ee2f878c0d2f61c4e7fb88ba1978de0 Mon Sep 17 00:00:00 2001 From: carlossa <carlossa@verdnatura.es> Date: Tue, 28 Jan 2025 10:54:59 +0100 Subject: [PATCH 70/79] refactor: entriesTotals --- src/pages/Travel/Card/TravelSummary.vue | 60 ++++++++++++------------- 1 file changed, 29 insertions(+), 31 deletions(-) diff --git a/src/pages/Travel/Card/TravelSummary.vue b/src/pages/Travel/Card/TravelSummary.vue index 689711a74..9c5ce8e74 100644 --- a/src/pages/Travel/Card/TravelSummary.vue +++ b/src/pages/Travel/Card/TravelSummary.vue @@ -179,33 +179,31 @@ const entriesTableRows = computed(() => { return entries.value; }); -const entriesTotalHb = computed(() => - entriesTableRows.value.reduce((acc, { hb }) => acc + hb, 0) -); +const entriesTotals = computed(() => { + const totals = { + hb: 0, + freightValue: 0, + packageValue: 0, + cc: 0, + pallet: 0, + m3: 0, + }; -const entriesTotalFreight = computed(() => - toCurrency( - entriesTableRows.value.reduce((acc, { freightValue }) => acc + freightValue, 0) - ) -); + entriesTableRows.value.forEach((row) => { + for (const key in totals) { + totals[key] += row[key] || 0; + } + }); -const entriesTotalPackageValue = computed(() => - toCurrency( - entriesTableRows.value.reduce((acc, { packageValue }) => acc + packageValue, 0) - ) -); - -const entriesTotalCc = computed(() => - entriesTableRows.value.reduce((acc, { cc }) => acc + cc, 0) -); - -const entriesTotalPallet = computed(() => - entriesTableRows.value.reduce((acc, { pallet }) => acc + pallet, 0) -); - -const entriesTotalM3 = computed(() => - entriesTableRows.value.reduce((acc, { m3 }) => acc + m3, 0) -); + return { + hb: totals.hb.toFixed(2), + freight: toCurrency(totals.freightValue), + packageValue: toCurrency(totals.packageValue), + cc: totals.cc.toFixed(2), + pallet: totals.pallet.toFixed(2), + m3: totals.m3.toFixed(2), + }; +}); const getTravelEntries = async (id) => { const { data } = await axios.get(`Travels/${id}/getEntries`); @@ -368,12 +366,12 @@ const getLink = (param) => `#/travel/${entityId.value}/${param}`; <QTd></QTd> <QTd></QTd> <QTd></QTd> - <QTd class="text-bold">{{ entriesTotalHb }}</QTd> - <QTd class="text-bold">{{ entriesTotalFreight }}</QTd> - <QTd class="text-bold">{{ entriesTotalPackageValue }}</QTd> - <QTd class="text-bold">{{ entriesTotalCc }}</QTd> - <QTd class="text-bold">{{ entriesTotalPallet }}</QTd> - <QTd class="text-bold">{{ entriesTotalM3 }}</QTd> + <QTd class="text-bold">{{ entriesTotals.hb }}</QTd> + <QTd class="text-bold">{{ entriesTotals.freight }}</QTd> + <QTd class="text-bold">{{ entriesTotals.packageValue }}</QTd> + <QTd class="text-bold">{{ entriesTotals.cc }}</QTd> + <QTd class="text-bold">{{ entriesTotals.pallet }}</QTd> + <QTd class="text-bold">{{ entriesTotals.m3 }}</QTd> </template> </QTable> </QCard> From c67baccaeabbc975187493ec113760b566f251c7 Mon Sep 17 00:00:00 2001 From: jgallego <jgallego@verdnatura.es> Date: Tue, 28 Jan 2025 11:08:22 +0100 Subject: [PATCH 71/79] fix: update query parameters for thermograph routing --- src/pages/Travel/Card/TravelThermographs.vue | 2 +- src/pages/Travel/Card/TravelThermographsForm.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/Travel/Card/TravelThermographs.vue b/src/pages/Travel/Card/TravelThermographs.vue index 0e11588f1..b520166d3 100644 --- a/src/pages/Travel/Card/TravelThermographs.vue +++ b/src/pages/Travel/Card/TravelThermographs.vue @@ -132,7 +132,7 @@ const redirectToThermographForm = (action, id) => { }; if (action === 'edit' && id) { - routeDetails.query = { travelThermographFk: id }; + routeDetails.query = { id }; } else if (action === 'create') { routeDetails.query = { agencyModeFk: travel.value?.agencyModeFk }; } diff --git a/src/pages/Travel/Card/TravelThermographsForm.vue b/src/pages/Travel/Card/TravelThermographsForm.vue index 5955ac9f9..7aec32972 100644 --- a/src/pages/Travel/Card/TravelThermographsForm.vue +++ b/src/pages/Travel/Card/TravelThermographsForm.vue @@ -83,7 +83,7 @@ const setEditDefaultParams = async () => { const filterObj = { include: { relation: 'dms' } }; const filter = encodeURIComponent(JSON.stringify(filterObj)); const { data } = await axios.get( - `TravelThermographs/${route.query.travelThermographFk}?filter=${filter}` + `TravelThermographs/${route.query.id}?filter=${filter}`, ); if (data) { @@ -170,7 +170,6 @@ const onThermographCreated = async (data) => { <QPage class="column items-center full-width"> <QForm - model="travel" :form-initial-data="thermographForm" :observe-form-changes="viewAction === 'create'" :default-actions="true" @@ -210,10 +209,11 @@ const onThermographCreated = async (data) => { }" sort-by="thermographFk ASC" option-label="thermographFk" - option-filter-value="thermographFk" + option-filter-value="id" :disable="viewAction === 'edit'" :tooltip="t('New thermograph')" :roles-allowed-to-create="['logistic']" + data-key="travelThermographSelect" > <template #form> <CreateThermographForm From 9991c4a46231a1530d48d0df37a00a1d6715ff5d Mon Sep 17 00:00:00 2001 From: Jon <jon@verdnatura.es> Date: Tue, 28 Jan 2025 11:48:20 +0100 Subject: [PATCH 72/79] fix: added witdth when opening summary --- src/pages/Customer/components/CustomerSummaryTable.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Customer/components/CustomerSummaryTable.vue b/src/pages/Customer/components/CustomerSummaryTable.vue index c1ba506fd..bb6f4442b 100644 --- a/src/pages/Customer/components/CustomerSummaryTable.vue +++ b/src/pages/Customer/components/CustomerSummaryTable.vue @@ -114,7 +114,7 @@ const columns = computed(() => [ action: ({ id }) => window.open( router.resolve({ params: { id }, name: 'TicketSale' }).href, - '_blank' + '_blank', ), isPrimary: true, }, @@ -122,7 +122,7 @@ const columns = computed(() => [ title: t('components.smartCard.viewSummary'), icon: 'preview', isPrimary: true, - action: (row) => viewSummary(row.id, TicketSummary), + action: (row) => viewSummary(row.id, TicketSummary, 'lg-width'), }, ], }, From 5c761ca11103b07dc25da1504c4755e3daf48b1b Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Tue, 28 Jan 2025 12:12:00 +0100 Subject: [PATCH 73/79] fix: scroll --- src/components/ui/VnPaginate.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/VnPaginate.vue b/src/components/ui/VnPaginate.vue index 0111366f5..965f4d5e9 100644 --- a/src/components/ui/VnPaginate.vue +++ b/src/components/ui/VnPaginate.vue @@ -166,7 +166,7 @@ function emitStoreData() { async function paginate() { const { page, rowsPerPage, sortBy, descending } = pagination.value; - if (!props.url) return; + if (!arrayData.store.url) return; isLoading.value = true; await arrayData.loadMore(); From 4132bb2b468ec29e1242c73b9a3d4f1bd5172bea Mon Sep 17 00:00:00 2001 From: carlossa <carlossa@verdnatura.es> Date: Tue, 28 Jan 2025 12:37:03 +0100 Subject: [PATCH 74/79] fix: refs #8352 fix datacy --- src/components/common/RightMenu.vue | 1 + test/cypress/support/commands.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/common/RightMenu.vue b/src/components/common/RightMenu.vue index 1eded089e..9fb2b0070 100644 --- a/src/components/common/RightMenu.vue +++ b/src/components/common/RightMenu.vue @@ -26,6 +26,7 @@ onMounted(() => { round dense icon="dock_to_left" + data-cy="toggle-left-drawer" > <QTooltip bottom anchor="bottom right"> {{ t('globals.collapseMenu') }} diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index dad434ecd..4b8ca0332 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -264,7 +264,7 @@ Cypress.Commands.add('openListSummary', (row) => { Cypress.Commands.add('openRightMenu', (element) => { if (element) cy.waitForElement(element); - cy.get('.q-gutter-x-sm > .q-btn > .q-btn__content > .q-icon').click(); + cy.get('[data-cy="toggle-left-drawer"]').click(); }); Cypress.Commands.add('openLeftMenu', (element) => { From 39d31ec330316136ea0345dd80e06d53c0aec3e9 Mon Sep 17 00:00:00 2001 From: carlossa <carlossa@verdnatura.es> Date: Tue, 28 Jan 2025 12:40:50 +0100 Subject: [PATCH 75/79] fix: refs #8352 fix right --- src/components/common/RightMenu.vue | 2 +- test/cypress/support/commands.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/RightMenu.vue b/src/components/common/RightMenu.vue index 9fb2b0070..196815df1 100644 --- a/src/components/common/RightMenu.vue +++ b/src/components/common/RightMenu.vue @@ -26,7 +26,7 @@ onMounted(() => { round dense icon="dock_to_left" - data-cy="toggle-left-drawer" + data-cy="toggle-right-drawer" > <QTooltip bottom anchor="bottom right"> {{ t('globals.collapseMenu') }} diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index 4b8ca0332..6a436c1eb 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -264,7 +264,7 @@ Cypress.Commands.add('openListSummary', (row) => { Cypress.Commands.add('openRightMenu', (element) => { if (element) cy.waitForElement(element); - cy.get('[data-cy="toggle-left-drawer"]').click(); + cy.get('[data-cy="toggle-right-drawer"]').click(); }); Cypress.Commands.add('openLeftMenu', (element) => { From 63fc09ad1ccbc4da3dfb6a87b7a76145a01ab083 Mon Sep 17 00:00:00 2001 From: jgallego <jgallego@verdnatura.es> Date: Wed, 29 Jan 2025 07:35:04 +0100 Subject: [PATCH 76/79] fix: update setupNodeEvents to use async/await for plugin import --- cypress.config.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cypress.config.js b/cypress.config.js index 500dda5c5..1924144f6 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -30,9 +30,11 @@ export default defineConfig({ testFiles: '**/*.spec.js', supportFile: 'test/cypress/support/unit.js', }, - setupNodeEvents(on, config) { - import('cypress-mochawesome-reporter/plugin').then((plugin) => plugin.default(on)); - // implement node event listeners here + setupNodeEvents: async (on, config) => { + const plugin = await import('cypress-mochawesome-reporter/plugin'); + plugin.default(on); + + return config; }, viewportWidth: 1280, viewportHeight: 720, From c30070f2125b43d692727d40971de3ba26ef170e Mon Sep 17 00:00:00 2001 From: jgallego <jgallego@verdnatura.es> Date: Wed, 29 Jan 2025 07:38:33 +0100 Subject: [PATCH 77/79] Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into dev --- test/cypress/integration/invoiceIn/invoiceInList.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cypress/integration/invoiceIn/invoiceInList.spec.js b/test/cypress/integration/invoiceIn/invoiceInList.spec.js index 0eb495419..4e2b8f9cc 100644 --- a/test/cypress/integration/invoiceIn/invoiceInList.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInList.spec.js @@ -9,7 +9,7 @@ describe('InvoiceInList', () => { cy.viewport(1920, 1080); cy.login('developer'); cy.visit(`/#/invoice-in/list`); - cy.get('#searchbar input').type('{enter}'); + cy.get('#searchbar input').should('be.visible').type('{enter}'); }); it('should redirect on clicking a invoice', () => { @@ -22,7 +22,7 @@ describe('InvoiceInList', () => { }); }); // https://redmine.verdnatura.es/issues/8420 - it.skip('should open the details', () => { + it('should open the details', () => { cy.get(firstDetailBtn).click(); cy.get(summaryHeaders).eq(1).contains('Basic data'); cy.get(summaryHeaders).eq(4).contains('Vat'); From c9adf048cc55ea5f52352c70e9598e54ff851898 Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Wed, 29 Jan 2025 12:03:45 +0100 Subject: [PATCH 78/79] fix: rightAdvancedMenu --- src/components/common/VnSection.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/VnSection.vue b/src/components/common/VnSection.vue index 4d7984482..ef65b841f 100644 --- a/src/components/common/VnSection.vue +++ b/src/components/common/VnSection.vue @@ -98,8 +98,8 @@ function checkIsMain() { /> <div :id="searchbarId"></div> </slot> - <RightAdvancedMenu :is-main-section="isMainSection && rightFilter"> - <template #advanced-menu v-if="$slots[advancedMenuSlot]"> + <RightAdvancedMenu :is-main-section="isMainSection"> + <template #advanced-menu v-if="$slots[advancedMenuSlot] || rightFilter"> <slot :name="advancedMenuSlot"> <VnTableFilter v-if="rightFilter && columns" From f3854d9682a7ca78faf9ef508ce01349a1a49ffd Mon Sep 17 00:00:00 2001 From: alexm <alexm@verdnatura.es> Date: Wed, 29 Jan 2025 12:08:27 +0100 Subject: [PATCH 79/79] fix: routeCard use customUrl --- src/pages/Route/Card/RouteCard.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/pages/Route/Card/RouteCard.vue b/src/pages/Route/Card/RouteCard.vue index 98383f85b..81b6cfa16 100644 --- a/src/pages/Route/Card/RouteCard.vue +++ b/src/pages/Route/Card/RouteCard.vue @@ -3,5 +3,10 @@ import RouteDescriptor from 'pages/Route/Card/RouteDescriptor.vue'; import VnCardBeta from 'src/components/common/VnCardBeta.vue'; </script> <template> - <VnCardBeta data-key="Route" base-url="Routes/filter" :descriptor="RouteDescriptor" /> + <VnCardBeta + data-key="Route" + base-url="Routes" + custom-url="Routes/filter" + :descriptor="RouteDescriptor" + /> </template>