]> saetta.ns0.it Git - bcity/be/commitdiff
Initial import.
authorAndrea Zagli <azagli@libero.it>
Mon, 15 Feb 2016 15:14:34 +0000 (16:14 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 15 Feb 2016 15:14:34 +0000 (16:14 +0100)
34 files changed:
.gitignore [new file with mode: 0644]
AUTHORS [new file with mode: 0644]
Makefile.am [new file with mode: 0644]
NEWS [new file with mode: 0644]
README [new file with mode: 0644]
configure.ac [new file with mode: 0644]
data/Makefile.am [new file with mode: 0644]
data/bcity_be/Makefile.am [new file with mode: 0644]
data/bcity_be/form/Makefile.am [new file with mode: 0644]
data/bcity_be/gui/Makefile.am [new file with mode: 0644]
data/bcity_be/gui/bcity_be.ui [new file with mode: 0644]
data/bcity_be/images/Makefile.am [new file with mode: 0644]
data/bcity_be/images/bcity_be.ico [new file with mode: 0644]
data/bcity_be/images/bcity_be.svg [new file with mode: 0644]
data/bcity_be/images/bcity_be128.png [new file with mode: 0644]
data/bcity_be/images/bcity_be16.png [new file with mode: 0644]
data/bcity_be/images/bcity_be256.png [new file with mode: 0644]
data/bcity_be/images/bcity_be32.png [new file with mode: 0644]
data/bcity_be/images/bcity_be48.png [new file with mode: 0644]
data/bcity_be/images/bcity_be64.png [new file with mode: 0644]
data/bcity_be/query_editor/Makefile.am [new file with mode: 0644]
doc/Makefile.am [new file with mode: 0644]
doc/bcity_be/Makefile.am [new file with mode: 0644]
doc/bcity_be/examples/Makefile.am [new file with mode: 0644]
doc/bcity_be/examples/bcity_be.conf [new file with mode: 0644]
installers/Makefile.am [new file with mode: 0644]
installers/msys2/Makefile.am [new file with mode: 0644]
installers/msys2/bcity_be.conf [new file with mode: 0644]
installers/msys2/bcity_be.nsi [new file with mode: 0644]
installers/msys2/make_installer.sh.in [new file with mode: 0644]
src/Makefile.am [new file with mode: 0644]
src/commons.h [new file with mode: 0644]
src/main.c [new file with mode: 0644]
src/resources.rc.in [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..1cc121c
--- /dev/null
@@ -0,0 +1,52 @@
+*.o
+*~
+src/cancelleria
+src/resources.rc
+COPYING
+INSTALL
+Makefile
+Makefile.in
+aclocal.m4
+autom4te.cache/
+config.guess
+config.h
+config.log
+config.status
+config.sub
+configure
+configure.lineno
+Makefile
+Makefile.in
+depcomp
+install-sh
+missing
+.deps
+depcomp
+install-sh
+missing
+src/.deps/
+src/Makefile
+src/Makefile.in
+stamp-h1
+.anjuta*
+*.exe
+cancelleria*tar*
+cancelleria*.7z
+*.odt#
+*.backup
+*.bak
+installers/*/make_installer.sh
+installers/*/tmp
+compile
+config.h.in
+ar-lib
+libtool
+.dirstamp
+*.lo
+*.la
+ltmain.sh
+.libs
+m4
+po
+confdefs.h
+conftest.dir
\ No newline at end of file
diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..ad1de0f
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1 @@
+Andrea Zagli <azagli@libero.it>
diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..b693691
--- /dev/null
@@ -0,0 +1,22 @@
+SUBDIRS = src data doc installers
+
+distclean-local:
+       if test "$(srcdir)" = "."; then :; else \
+               rm -f ChangeLog; \
+       fi
+
+ChangeLog:
+       @echo Creating $@
+       @if test -d "$(srcdir)/.git"; then \
+         (GIT_DIR=$(top_srcdir)/.git ./missing --run git log --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \
+         && mv -f $@.tmp $@ \
+         || ($(RM) $@.tmp; \
+         echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
+         (test -f $@ || echo git-log is required to generate this file >> $@)); \
+       else \
+         test -f $@ || \
+         (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
+         echo A git checkout and git-log is required to generate this file >> $@); \
+       fi
+
+.PHONY: ChangeLog
diff --git a/NEWS b/NEWS
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..0c017dd
--- /dev/null
@@ -0,0 +1,101 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+m4_define(maj, 0)
+m4_define(min, 0)
+m4_define(mic, 1)
+
+AC_PREREQ(2.65)
+AC_INIT([bcity_be], [maj.min.mic], [<azagli@libero.it>])
+AC_CONFIG_SRCDIR([src/main.c])
+AC_CONFIG_HEADER([config.h])
+
+AM_INIT_AUTOMAKE(-Wall)
+
+m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
+
+AM_MAINTAINER_MODE
+
+AC_CANONICAL_SYSTEM
+
+AC_CONFIG_MACRO_DIR([m4])
+
+# Checks for programs.
+AC_PROG_CC
+
+# Checks for libraries.
+PKG_CHECK_MODULES(CANCELLERIA, [gtk+-3.0 >= 3.0
+                                libgdaex >= 0.5.0
+                                libgdaexgrid
+                                libzakutils
+                                libsoup-2.4
+                                libsolipa >= 0.5.0
+                                libzakaudit >= 0.5.0
+                                libautoz >= 0.0.5
+                                libaute >= 0.2.0
+                                libzakgtkdecoder
+                                libzakgtkdecodergdaexqe
+                                libzakform
+                                libzakformgtk
+                                libzakformgtkdecoder
+                                libzakformgdaex
+                                libterritorio
+                                liborganigramma])
+
+AC_SUBST(BCITYBE_CFLAGS)
+AC_SUBST(BCITYBE_LIBS)
+
+# Checks for header files.
+
+# Checks for typedefs, structures, and compiler characteristics.
+
+dnl ******************************
+dnl Translations
+dnl ******************************
+GETTEXT_PACKAGE=bcity_be
+AC_SUBST(GETTEXT_PACKAGE)
+AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
+                   [The prefix for our gettext translation domains.])
+AM_GLIB_GNU_GETTEXT
+
+# Checks for library functions.
+
+dnl ******************************
+dnl Check for Operating System
+dnl ******************************
+
+platform_win32=no
+
+case "$host" in
+*-mingw*)
+    platform_win32=yes
+    AC_CHECK_TOOL(WINDRES, windres, windres)
+    AC_SUBST(WINDRES)
+    ;;
+esac
+
+AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes])
+
+AC_SUBST(V_MAJOR, maj)
+AC_SUBST(V_MINOR, min)
+AC_SUBST(V_MICRO, mic)
+
+AC_CONFIG_FILES([
+       Makefile
+       src/Makefile
+       src/resources.rc
+       data/Makefile
+       data/bcity_be/Makefile
+       data/bcity_be/form/Makefile
+       data/bcity_be/gui/Makefile
+       data/bcity_be/images/Makefile
+       data/bcity_be/query_editor/Makefile
+       doc/Makefile
+       doc/bcity_be/Makefile
+       doc/bcity_be/examples/Makefile
+       installers/Makefile
+       installers/msys2/Makefile
+       installers/msys2/make_installer.sh
+])
+
+AC_OUTPUT
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644 (file)
index 0000000..daba128
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = bcity_be\r
diff --git a/data/bcity_be/Makefile.am b/data/bcity_be/Makefile.am
new file mode 100644 (file)
index 0000000..64c3f3e
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = form gui images query_editor
diff --git a/data/bcity_be/form/Makefile.am b/data/bcity_be/form/Makefile.am
new file mode 100644 (file)
index 0000000..6718df2
--- /dev/null
@@ -0,0 +1,23 @@
+formdir = $(datadir)/$(PACKAGE)/form
+
+form_DATA = \
+            articolo.form \
+            articoloallegato.form \
+            articolodisponibilita.form \
+            articoloimmagine.form \
+            articoloopzione.form \
+            categoriaarticolo.form \
+            fornitore.form \
+            fornitoreallegato.form \
+            fornitorerecapito.form \
+            iva.form \
+            ordine.form \
+            ordineallegato.form \
+            ordineriga.form \
+            tipo_quantita.form \
+            tipo_recapito.form \
+            ufficio.form \
+            ufficiobudget.form \
+            ufficioordineminimo.form
+
+EXTRA_DIST = $(form_DATA)
diff --git a/data/bcity_be/gui/Makefile.am b/data/bcity_be/gui/Makefile.am
new file mode 100644 (file)
index 0000000..2b74cce
--- /dev/null
@@ -0,0 +1,5 @@
+guidir = $(datadir)/$(PACKAGE)/gui
+
+gui_DATA = bcity_be.ui
+
+EXTRA_DIST = $(gui_DATA)
diff --git a/data/bcity_be/gui/bcity_be.ui b/data/bcity_be/gui/bcity_be.ui
new file mode 100644 (file)
index 0000000..b9235ff
--- /dev/null
@@ -0,0 +1,7207 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated with glade 3.19.0 -->
+<interface>
+  <requires lib="gtk+" version="3.16"/>
+  <requires lib="zakgtkdecoder" version="0.0"/>
+  <object class="GtkWindow" id="w_articoli">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Articoli - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbx_articoli">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkLabel" id="label68">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="label" translatable="yes">&lt;b&gt;Articoli&lt;/b&gt;</property>
+            <property name="use_markup">True</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow16">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox19">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button83">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button84">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button85">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button86">
+                <property name="label">gtk-find</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button87">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button88">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">5</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_articoli_qe">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ricerca articoli - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox14">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <object class="GtkSeparator" id="separator6">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox20">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button89">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button90">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_articolo">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Articolo - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox13">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table8">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label52">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">ID</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label53">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder5">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label56">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Categoria</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label57">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Fornitore</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder6">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label54">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry16">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">100</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label55">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Codice fornitore</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry17">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder7">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label58">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Tipo quantità</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label59">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Prezzo unitario</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">6</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry18">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">6</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label60">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">IVA</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">7</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder8">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">7</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkNotebook" id="notebook2">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="margin_left">5</property>
+                <property name="margin_right">5</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <child>
+                  <object class="GtkScrolledWindow" id="scrolledwindow15">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="shadow_type">etched-in</property>
+                    <child>
+                      <object class="GtkTextView" id="textview5">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label63">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Note</property>
+                  </object>
+                  <packing>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkBox" id="hbox9">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow21">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox9">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button105">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button106">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button107">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">1</property>
+                  </packing>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label64">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Periodi disponibilità</property>
+                  </object>
+                  <packing>
+                    <property name="position">1</property>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkBox" id="hbox8">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow20">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox8">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button102">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button103">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button104">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">2</property>
+                  </packing>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label67">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Opzioni</property>
+                  </object>
+                  <packing>
+                    <property name="position">2</property>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkBox" id="hbox7">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow19">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox7">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button98">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button99">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button100">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button101">
+                            <property name="label">gtk-open</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">True</property>
+                            <property name="fill">True</property>
+                            <property name="position">3</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">3</property>
+                  </packing>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label61">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Immagini</property>
+                  </object>
+                  <packing>
+                    <property name="position">3</property>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkBox" id="hbox6">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow18">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox6">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button94">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button95">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button96">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button97">
+                            <property name="label">gtk-open</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">True</property>
+                            <property name="fill">True</property>
+                            <property name="position">3</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">4</property>
+                  </packing>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label62">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Allegati</property>
+                  </object>
+                  <packing>
+                    <property name="position">4</property>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">8</property>
+                <property name="width">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox18">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button80">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button81">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button82">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_articolo_allegato">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Allegato dell'articolo - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox15">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table9">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label65">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label66">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry19">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow17">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview6">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry20">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry21">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkFrame" id="frame1">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label_xalign">0</property>
+                <child>
+                  <object class="GtkAlignment" id="alignment1">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="hexpand">True</property>
+                    <property name="top_padding">5</property>
+                    <property name="bottom_padding">5</property>
+                    <property name="left_padding">5</property>
+                    <property name="right_padding">5</property>
+                    <child>
+                      <placeholder/>
+                    </child>
+                  </object>
+                </child>
+                <child type="label">
+                  <object class="GtkLabel" id="label69">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">&lt;b&gt;File&lt;/b&gt;</property>
+                    <property name="use_markup">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+                <property name="width">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label70">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id_articoli</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label71">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Titolo</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label72">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data documento</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label73">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox21">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button91">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button92">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="has_default">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button93">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_articolo_disponibilita">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Periodo di disponibilità dell'articolo - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox17">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="hexpand">True</property>
+        <property name="vexpand">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table11">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkEntry" id="entry26">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">●</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow23">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview8">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label82">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id_articoli</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry27">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">●</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label83">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data da</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label84">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data a</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label85">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label86">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox23">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button111">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button112">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button113">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_articolo_immagine">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Immagine dell'articolo - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox16">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table10">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label74">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label75">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry22">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow22">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview7">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry23">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry24">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkFrame" id="frame2">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label_xalign">0</property>
+                <child>
+                  <object class="GtkAlignment" id="alignment2">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="hexpand">True</property>
+                    <property name="top_padding">5</property>
+                    <property name="bottom_padding">5</property>
+                    <property name="left_padding">5</property>
+                    <property name="right_padding">5</property>
+                    <child>
+                      <placeholder/>
+                    </child>
+                  </object>
+                </child>
+                <child type="label">
+                  <object class="GtkLabel" id="label76">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">&lt;b&gt;File&lt;/b&gt;</property>
+                    <property name="use_markup">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+                <property name="width">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label77">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id_articoli</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label78">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Titolo</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label79">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data documento</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label80">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox22">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button108">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button109">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="has_default">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button110">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_articolo_opzione">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Opzione dell'articolo - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox18">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="hexpand">True</property>
+        <property name="vexpand">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table12">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow24">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview10">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label81">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id_articoli</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label89">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label90">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label87">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry25">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">100</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label88">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Codice fornitore</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry28">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label91">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Tipo quantità</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder9">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label92">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Prezzo unitario</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry29">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label93">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id_articolo_opzioni</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">6</property>
+              </packing>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox24">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button114">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button115">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button116">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_categoria_articolo">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Categoria articolo - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox12">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table7">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label42">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">ID</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label43">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry15">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">100</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label44">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label45">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Genitore</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder4">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow13">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview4">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label46">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox17">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button75">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button78">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button79">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_categorie_articolo">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Categorie articolo - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbx_categorie_articolo">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkLabel" id="label41">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="label" translatable="yes">&lt;b&gt;Categorie articolo&lt;/b&gt;</property>
+            <property name="use_markup">True</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow12">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox16">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button72">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button73">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button74">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button76">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button77">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">5</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_fornitore">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Fornitore - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">600</property>
+    <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox10">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table4">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label16">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">lbl_id</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry4">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">●</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+                <property name="width">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry5">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">16</property>
+                <property name="invisible_char">●</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry6">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">11</property>
+                <property name="invisible_char">●</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry7">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">●</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label20">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Civico</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">2</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry8">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">●</property>
+                <property name="activates_default">True</property>
+                <property name="width_chars">5</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">3</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label22">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">CAP</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">2</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry9">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">5</property>
+                <property name="invisible_char">●</property>
+                <property name="activates_default">True</property>
+                <property name="width_chars">5</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">3</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow6">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview1">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">6</property>
+                <property name="width">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label14">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">ID</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label15">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Ragione sociale</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label17">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Codice fiscale</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label18">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Partita IVA</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label19">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Via</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label21">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Città</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label23">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">6</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkNotebook" id="notebook3">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <child>
+                  <object class="GtkBox" id="hbox4">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow14">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox4">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button49">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button50">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button51">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label204">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Recapiti</property>
+                  </object>
+                  <packing>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkBox" id="hbox1">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow8">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox1">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button29">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button30">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button31">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">1</property>
+                  </packing>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label206">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Persone</property>
+                  </object>
+                  <packing>
+                    <property name="position">1</property>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkBox" id="hbox2">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow3">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox2">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button24">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button25">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button26">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button71">
+                            <property name="label">gtk-open</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">True</property>
+                            <property name="fill">True</property>
+                            <property name="position">3</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">2</property>
+                  </packing>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label6">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Allegati</property>
+                  </object>
+                  <packing>
+                    <property name="position">2</property>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">7</property>
+                <property name="width">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder1">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox9">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button27">
+                <property name="label">gtk-cancel</property>
+                <property name="use_action_appearance">False</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button28">
+                <property name="label">gtk-save</property>
+                <property name="use_action_appearance">False</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="has_default">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button15">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_fornitore_allegato">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Allegato del fornitore - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox37">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table33">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label177">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label47">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry53">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow32">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview9">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry55">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry58">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkFrame" id="frame12">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label_xalign">0</property>
+                <child>
+                  <object class="GtkAlignment" id="alignment12">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="hexpand">True</property>
+                    <property name="top_padding">5</property>
+                    <property name="bottom_padding">5</property>
+                    <property name="left_padding">5</property>
+                    <property name="right_padding">5</property>
+                    <child>
+                      <placeholder/>
+                    </child>
+                  </object>
+                </child>
+                <child type="label">
+                  <object class="GtkLabel" id="label48">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">&lt;b&gt;File&lt;/b&gt;</property>
+                    <property name="use_markup">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+                <property name="width">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label49">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id_fornitori</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label185">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Titolo</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label50">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data documento</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label51">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox39">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button145">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button146">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="has_default">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button218">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_fornitore_recapito">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Recapito del fornitore - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox11">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="hexpand">True</property>
+        <property name="vexpand">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table6">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkEntry" id="entry14">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">●</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow11">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview3">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label36">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id_fornitori</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label39">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label40">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label35">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Tipo recapito</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder3">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label37">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Recapito</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label38">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Preferito</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkCheckButton" id="checkbutton1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">False</property>
+                <property name="xalign">0</property>
+                <property name="draw_indicator">True</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox15">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button68">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button69">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button70">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_fornitori">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Fornitori - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbx_fornitori">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkLabel" id="label7">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="label" translatable="yes">&lt;b&gt;Fornitori&lt;/b&gt;</property>
+            <property name="use_markup">True</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow2">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox5">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button16">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button17">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button18">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button19">
+                <property name="label">gtk-find</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button20">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button21">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">5</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_fornitori_qe">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ricerca fornitori - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox4">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <object class="GtkSeparator" id="separator3">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox6">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button22">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button23">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_iva">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">IVA - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox2">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label2">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">ID</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label3">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">100</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label4">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label5">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Aliquota</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry2">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">100</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox3">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button10">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button11">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button12">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_lst_iva">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">IVA - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbx_lst_iva">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkLabel" id="label1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="label" translatable="yes">&lt;b&gt;IVA&lt;/b&gt;</property>
+            <property name="use_markup">True</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow1">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox2">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button4">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button5">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button6">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button7">
+                <property name="label">gtk-find</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button8">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button9">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">5</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_lst_iva_qe">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ricerca IVA - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox3">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <object class="GtkSeparator" id="separator2">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox4">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button13">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button14">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_main">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Gestione ordini cancelleria</property>
+    <property name="window_position">center</property>
+    <property name="default_width">750</property>
+    <property name="default_height">520</property>
+    <signal name="destroy" handler="gtk_main_quit" swapped="no"/>
+    <child>
+      <object class="GtkBox" id="vbx_main">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="orientation">vertical</property>
+        <child>
+          <object class="GtkMenuBar" id="menubar1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <child>
+              <object class="GtkMenuItem" id="menuitem1">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">_File</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="menu1">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <child>
+                      <object class="GtkImageMenuItem" id="imagemenuitem5">
+                        <property name="label">gtk-quit</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <signal name="activate" handler="gtk_main_quit" swapped="no"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+            <child>
+              <object class="GtkMenuItem" id="menuitem2">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">_Visualizza</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="menu2">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem3">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">_Ordini</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnu_view_ordini_activate" swapped="no"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+            <child>
+              <object class="GtkMenuItem" id="menuitem6">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">_Tabelle</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="menu4">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem10">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">_IVA</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnu_tabelle_lst_iva_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem5">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">Tipi r_ecapito</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnu_tabelle_tipi_recapito_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem7">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">_Uffici</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnu_tabelle_uffici_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem8">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">_Fornitori</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnu_tabelle_fornitori_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem9">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">_Articoli</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnu_tabelle_articoli_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem20">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">_Categorie articolo</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnu_tabelle_categorie_articolo_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem11">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">Tipi _quantità</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnu_tabelle_tipi_quantita_activate" swapped="no"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+            <child>
+              <object class="GtkMenuItem" id="menuitem4">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">A_iuto</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="menu3">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnu_help_about">
+                        <property name="label">gtk-about</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <signal name="activate" handler="on_mnu_help_about_activate" swapped="no"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkBox" id="vbx_body">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="orientation">vertical</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkStatusbar" id="statusbar1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">2</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkAboutDialog" id="dlg_about">
+    <property name="can_focus">False</property>
+    <property name="border_width">5</property>
+    <property name="title" translatable="yes">Informazioni su Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="type_hint">normal</property>
+    <property name="transient_for">w_main</property>
+    <property name="program_name">Gestione ordini cancelleria</property>
+    <property name="version">0.0.1</property>
+    <property name="copyright" translatable="yes">Andrea Zagli &lt;a.zagli@comune.scandicci.fi.it&gt; 2015-2016</property>
+    <property name="authors">Andrea Zagli &lt;a.zagli@comune.scandicci.fi.it&gt;</property>
+    <property name="logo_icon_name">image-missing</property>
+    <child internal-child="vbox">
+      <object class="GtkBox" id="dialog-vbox1">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">2</property>
+        <child internal-child="action_area">
+          <object class="GtkButtonBox" id="dialog-action_area1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="layout_style">end</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="pack_type">end</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <placeholder/>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_ordine">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ordine - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox20">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table13">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label95">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">ID</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label96">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label98">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Fornitore</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder11">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label102">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry32">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkNotebook" id="notebook4">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <child>
+                  <object class="GtkScrolledWindow" id="scrolledwindow26">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="shadow_type">etched-in</property>
+                    <child>
+                      <object class="GtkTextView" id="textview11">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label104">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Note</property>
+                  </object>
+                  <packing>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkBox" id="hbox12">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow29">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox12">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button131">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button132">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button133">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">1</property>
+                  </packing>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label107">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Righe</property>
+                  </object>
+                  <packing>
+                    <property name="position">1</property>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkBox" id="hbox13">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow30">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox13">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button135">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button136">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button137">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button138">
+                            <property name="label">gtk-open</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">True</property>
+                            <property name="fill">True</property>
+                            <property name="position">3</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">2</property>
+                  </packing>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label108">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Allegati</property>
+                  </object>
+                  <packing>
+                    <property name="position">2</property>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">5</property>
+                <property name="width">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label97">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Totale</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">6</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry30">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="editable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">6</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label99">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Ufficio</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder10">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label100">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Budget residuo</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry31">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="editable">False</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox27">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button125">
+                <property name="label" translatable="yes">_Completa</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button139">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button140">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button141">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_ordine_allegato">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Allegato dell'ordine - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox21">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table14">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label101">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label103">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry33">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow27">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview12">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry34">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry35">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkFrame" id="frame3">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label_xalign">0</property>
+                <child>
+                  <object class="GtkAlignment" id="alignment3">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="hexpand">True</property>
+                    <property name="top_padding">5</property>
+                    <property name="bottom_padding">5</property>
+                    <property name="left_padding">5</property>
+                    <property name="right_padding">5</property>
+                    <child>
+                      <placeholder/>
+                    </child>
+                  </object>
+                </child>
+                <child type="label">
+                  <object class="GtkLabel" id="label105">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">&lt;b&gt;File&lt;/b&gt;</property>
+                    <property name="use_markup">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+                <property name="width">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label106">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id_ordini</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label109">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Titolo</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label110">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data documento</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label111">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox28">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button126">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button127">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="has_default">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button128">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_ordine_riga">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Riga dell'ordine - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox22">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table15">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label112">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label113">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Quantità</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry36">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow28">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview13">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label115">
+                <property name="can_focus">False</property>
+                <property name="no_show_all">True</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id_ordini</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">5</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label118">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label116">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Articolo</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder12">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label114">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Totale</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry37">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="editable">False</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label117">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Prezzo unitario</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry38">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="editable">False</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">•</property>
+                <property name="activates_default">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox29">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button129">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button130">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="has_default">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button134">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_ordini">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ordini - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbx_ordini">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkLabel" id="label94">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="label" translatable="yes">&lt;b&gt;Ordini&lt;/b&gt;</property>
+            <property name="use_markup">True</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow25">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox25">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button117">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button118">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button119">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button120">
+                <property name="label">gtk-find</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button121">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button122">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">5</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_ordini_qe">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ricerca ordini - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox19">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <object class="GtkSeparator" id="separator7">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox26">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button123">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button124">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_tipi_quantita">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Tipi quantità - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbx_tipi_quantita">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkLabel" id="label8">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="label" translatable="yes">&lt;b&gt;Tipi quantità&lt;/b&gt;</property>
+            <property name="use_markup">True</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow4">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox8">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button34">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button35">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button36">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button37">
+                <property name="label">gtk-find</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button38">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button39">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">5</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_tipi_quantita_qe">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ricerca tipi quantità - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox5">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <object class="GtkSeparator" id="separator4">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox7">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button32">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button33">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_tipi_recapito">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Tipi recapito - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbx_tipi_recapito">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkLabel" id="label283">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="label" translatable="yes">&lt;b&gt;Tipi recapito&lt;/b&gt;</property>
+            <property name="use_markup">True</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow71">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox62">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button172">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button175">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button176">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button3">
+                <property name="label">gtk-find</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button177">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button178">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">5</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_tipi_recapito_qe">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ricerca tipi recapito - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox1">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <object class="GtkSeparator" id="separator1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button1">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button2">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_tipo_quantita">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Tipo quantità - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox6">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table2">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label9">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">ID</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label10">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry3">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">100</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label11">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox10">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button40">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button41">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button42">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_tipo_recapito">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Tipo recapito - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox43">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table50">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label284">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">ID</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label286">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry81">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">100</property>
+                <property name="invisible_char">•</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label287">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Descrizione</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox63">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button179">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button180">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button181">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_uffici">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Uffici - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbx_uffici">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkLabel" id="label12">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="label" translatable="yes">&lt;b&gt;Uffici&lt;/b&gt;</property>
+            <property name="use_markup">True</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow5">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox11">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button43">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button44">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button45">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button46">
+                <property name="label">gtk-find</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button47">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button48">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">5</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_uffici_qe">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ricerca uffici - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox7">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <object class="GtkSeparator" id="separator5">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox12">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button52">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button53">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_ufficio">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Tipo quantità - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox8">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table3">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label13">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">ID</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label24">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="hexpand">True</property>
+                <property name="label" translatable="yes">lbl_id</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label25">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Ufficio</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="ZakGtkDecoder" id="zakgtkdecoder2">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkNotebook" id="notebook1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <child>
+                  <object class="GtkBox" id="hbox3">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow7">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox3">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button57">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button58">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button59">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label26">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Budget</property>
+                  </object>
+                  <packing>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkBox" id="hbox5">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="margin_left">5</property>
+                    <property name="margin_right">5</property>
+                    <property name="margin_top">5</property>
+                    <property name="margin_bottom">5</property>
+                    <property name="spacing">5</property>
+                    <child>
+                      <object class="GtkScrolledWindow" id="scrolledwindow9">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="shadow_type">etched-in</property>
+                        <child>
+                          <placeholder/>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButtonBox" id="vbuttonbox5">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="orientation">vertical</property>
+                        <property name="spacing">5</property>
+                        <property name="layout_style">start</property>
+                        <child>
+                          <object class="GtkButton" id="button60">
+                            <property name="label">gtk-new</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">0</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button61">
+                            <property name="label">gtk-edit</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">1</property>
+                          </packing>
+                        </child>
+                        <child>
+                          <object class="GtkButton" id="button62">
+                            <property name="label">gtk-delete</property>
+                            <property name="use_action_appearance">False</property>
+                            <property name="visible">True</property>
+                            <property name="can_focus">True</property>
+                            <property name="receives_default">True</property>
+                            <property name="use_stock">True</property>
+                          </object>
+                          <packing>
+                            <property name="expand">False</property>
+                            <property name="fill">False</property>
+                            <property name="position">2</property>
+                          </packing>
+                        </child>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">1</property>
+                  </packing>
+                </child>
+                <child type="tab">
+                  <object class="GtkLabel" id="label27">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">Ordine minimo</property>
+                  </object>
+                  <packing>
+                    <property name="position">1</property>
+                    <property name="tab_fill">False</property>
+                  </packing>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+                <property name="width">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox13">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button54">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button55">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button56">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_ufficio_budget">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Budget dell'ufficio - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox27">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="hexpand">True</property>
+        <property name="vexpand">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table26">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label178">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Budget</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry50">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">●</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry51">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">●</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow43">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview19">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label182">
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">lbl_id_uffici</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry10">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">●</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label179">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data da</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label28">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data a</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label180">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label181">
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox36">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button174">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button63">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button64">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_ufficio_ordine_minimo">
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Ordine minimo dell'ufficio - Gestione ordini cancelleria</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkBox" id="vbox9">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="hexpand">True</property>
+        <property name="vexpand">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkGrid" id="table5">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="hexpand">True</property>
+            <property name="vexpand">True</property>
+            <property name="row_spacing">5</property>
+            <property name="column_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label29">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Importo</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry11">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="max_length">255</property>
+                <property name="invisible_char">●</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry12">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">●</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow10">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="textview2">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label30">
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">lbl_id_uffici</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry13">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">●</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label31">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data da</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label32">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Data a</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label33">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">Note</property>
+                <property name="xalign">0</property>
+                <property name="yalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label34">
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">4</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButtonBox" id="hbuttonbox14">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button65">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button66">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button67">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+</interface>
diff --git a/data/bcity_be/images/Makefile.am b/data/bcity_be/images/Makefile.am
new file mode 100644 (file)
index 0000000..91ccaae
--- /dev/null
@@ -0,0 +1,13 @@
+imagesdir = $(datadir)/$(PACKAGE)/images
+
+images_DATA = \
+              cancelleria.ico
+
+EXTRA_DIST = \
+             cancelleria.svg \
+             cancelleria16.png \
+             cancelleria32.png \
+             cancelleria48.png \
+             cancelleria64.png \
+             cancelleria128.png \
+             cancelleria256.png
diff --git a/data/bcity_be/images/bcity_be.ico b/data/bcity_be/images/bcity_be.ico
new file mode 100644 (file)
index 0000000..9913f60
Binary files /dev/null and b/data/bcity_be/images/bcity_be.ico differ
diff --git a/data/bcity_be/images/bcity_be.svg b/data/bcity_be/images/bcity_be.svg
new file mode 100644 (file)
index 0000000..15d76ef
--- /dev/null
@@ -0,0 +1,2529 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   height="128.00000pt"
+   id="svg1"
+   inkscape:version="0.48.2 r9819"
+   sodipodi:docname="titoli_abilitativi.svg"
+   sodipodi:version="0.32"
+   width="128.00000pt"
+   version="1.1"
+   inkscape:export-filename="C:\msys\1.0\home\a.zagli\titoli_abilitativi\data\titoli_abilitativi\images\titoli_abilitativi.png"
+   inkscape:export-xdpi="144"
+   inkscape:export-ydpi="144">
+  <metadata
+     id="metadata3">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:title></dc:title>
+        <dc:description />
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hash</rdf:li>
+            <rdf:li />
+            <rdf:li>mime-types</rdf:li>
+            <rdf:li>computer</rdf:li>
+            <rdf:li>icons</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:publisher>
+          <cc:Agent
+             rdf:about="http://www.openclipart.org">
+            <dc:title>Andy Fitzsimon</dc:title>
+          </cc:Agent>
+        </dc:publisher>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Andy Fitzsimon</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Andy Fitzsimon</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:date />
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <cc:license
+           rdf:resource="http://web.resource.org/cc/PublicDomain" />
+        <dc:language>en</dc:language>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://web.resource.org/cc/PublicDomain">
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction" />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution" />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs3">
+    <linearGradient
+       id="linearGradient1501">
+      <stop
+         id="stop1502"
+         offset="0.0000000"
+         style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+      <stop
+         id="stop1504"
+         offset="1.0000000"
+         style="stop-color:#ffffff;stop-opacity:0.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1290">
+      <stop
+         id="stop1291"
+         offset="0.0000000"
+         style="stop-color:#b2a269;stop-opacity:1.0000000;" />
+      <stop
+         id="stop1292"
+         offset="1.0000000"
+         style="stop-color:#6d5b18;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient846">
+      <stop
+         id="stop847"
+         offset="0.00000000"
+         style="stop-color:#e7e7e7;stop-opacity:1.0000000;" />
+      <stop
+         id="stop848"
+         offset="1.0000000"
+         style="stop-color:#a5a5a5;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient853">
+      <stop
+         id="stop854"
+         offset="0.00000000"
+         style="stop-color:#000000;stop-opacity:0.29752067;" />
+      <stop
+         id="stop855"
+         offset="1.0000000"
+         style="stop-color:#000000;stop-opacity:0.00000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient841">
+      <stop
+         id="stop842"
+         offset="0.00000000"
+         style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+      <stop
+         id="stop843"
+         offset="1.0000000"
+         style="stop-color:#ffffff;stop-opacity:0.00000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1562"
+       x1="0.70542634"
+       x2="0.71317828"
+       xlink:href="#linearGradient1557"
+       y1="0.62500000"
+       y2="1.8750000" />
+    <linearGradient
+       id="linearGradient1557">
+      <stop
+         id="stop1558"
+         offset="0.0000000"
+         style="stop-color:#ffffff;stop-opacity:0.0000000;" />
+      <stop
+         id="stop1559"
+         offset="1"
+         style="stop-color:#fff;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1636">
+      <stop
+         id="stop1637"
+         offset="0.0000000"
+         style="stop-color:#df421e;stop-opacity:0.0000000;" />
+      <stop
+         id="stop1638"
+         offset="1"
+         style="stop-color:#fff;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1564"
+       x1="0.63120568"
+       x2="0.90070921"
+       xlink:href="#linearGradient1636"
+       y1="0.32812500"
+       y2="1.0156250" />
+    <linearGradient
+       id="linearGradient1507">
+      <stop
+         id="stop1508"
+         offset="0.0000000"
+         style="stop-color:#000000;stop-opacity:0.095505618;" />
+      <stop
+         id="stop1510"
+         offset="1.0000000"
+         style="stop-color:#000000;stop-opacity:0.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient852"
+       x1="0.71793914"
+       x2="1.0758952"
+       xlink:href="#linearGradient1636"
+       y1="0.45640624"
+       y2="0.87495607" />
+    <linearGradient
+       id="linearGradient844"
+       x1="0.45040563"
+       x2="-0.48067868"
+       xlink:href="#linearGradient1557"
+       y1="0.41174671"
+       y2="-0.36291894" />
+    <linearGradient
+       id="linearGradient845"
+       x1="-0.20410034"
+       x2="0.54688710"
+       xlink:href="#linearGradient841"
+       y1="-0.85120738"
+       y2="0.51391011" />
+    <linearGradient
+       id="linearGradient840"
+       x1="1.6766210"
+       x2="0.37118945"
+       xlink:href="#linearGradient853"
+       y1="1.1056447"
+       y2="0.54594773" />
+    <linearGradient
+       id="linearGradient849"
+       x1="0.31600001"
+       x2="0.51599997"
+       xlink:href="#linearGradient853"
+       y1="-0.0039215689"
+       y2="0.40784314" />
+    <radialGradient
+       cx="0.50000000"
+       cy="0.50000000"
+       fx="0.50000000"
+       fy="0.14942528"
+       id="radialGradient864"
+       r="0.50000000"
+       xlink:href="#linearGradient853" />
+    <linearGradient
+       id="linearGradient860"
+       x1="0.91544116"
+       x2="0.75735295"
+       xlink:href="#linearGradient1501"
+       y1="-0.10731708"
+       y2="0.36097562" />
+    <linearGradient
+       id="linearGradient851"
+       x1="0.39788732"
+       x2="0.80985916"
+       xlink:href="#linearGradient846"
+       y1="0.32222223"
+       y2="0.35555556" />
+    <linearGradient
+       id="linearGradient858"
+       x1="0.64285713"
+       x2="0.57142860"
+       xlink:href="#linearGradient846"
+       y1="1.2647059"
+       y2="0.049019609" />
+    <linearGradient
+       id="linearGradient850"
+       xlink:href="#linearGradient846" />
+    <linearGradient
+       id="linearGradient859"
+       x1="1.4647887"
+       x2="0.26408452"
+       xlink:href="#linearGradient853"
+       y1="-1.1486486"
+       y2="1.2905406" />
+    <radialGradient
+       cx="0.50000000"
+       cy="0.50000000"
+       fx="0.50704223"
+       fy="0.29885057"
+       id="radialGradient861"
+       r="0.50000000"
+       xlink:href="#linearGradient853" />
+    <linearGradient
+       id="linearGradient1492">
+      <stop
+         id="stop1493"
+         offset="0.0000000"
+         style="stop-color:#cbcbcb;stop-opacity:1.0000000;" />
+      <stop
+         id="stop1496"
+         offset="0.34923077"
+         style="stop-color:#f0f0f0;stop-opacity:1.0000000;" />
+      <stop
+         id="stop1494"
+         offset="1.0000000"
+         style="stop-color:#e2e2e2;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1495"
+       x1="0.92307693"
+       x2="0.14529915"
+       xlink:href="#linearGradient1492"
+       y1="0.16406250"
+       y2="1.1718750" />
+    <linearGradient
+       id="linearGradient1497"
+       x1="0.63247865"
+       x2="-0.37606838"
+       xlink:href="#linearGradient1492"
+       y1="0.32812500"
+       y2="1.3281250" />
+    <linearGradient
+       id="linearGradient1499"
+       x1="0.85826772"
+       x2="0.062992126"
+       xlink:href="#linearGradient1501"
+       y1="0.14062500"
+       y2="0.54687500" />
+    <linearGradient
+       id="linearGradient1506"
+       x1="0.052173913"
+       x2="0.78260869"
+       xlink:href="#linearGradient1507"
+       y1="0.97656250"
+       y2="0.0078125000" />
+    <linearGradient
+       id="linearGradient1556"
+       x1="0.31111112"
+       x2="0.62222224"
+       xlink:href="#linearGradient1507"
+       y1="-0.56250000"
+       y2="0.79687500" />
+    <radialGradient
+       cx="0.50000000"
+       cy="0.89285713"
+       fx="0.54117650"
+       fy="3.5200000"
+       id="radialGradient856"
+       r="0.54606670"
+       xlink:href="#linearGradient841" />
+    <linearGradient
+       id="linearGradient1944"
+       xlink:href="#linearGradient841" />
+    <linearGradient
+       id="linearGradient1560"
+       x1="0.50735295"
+       x2="0.16176471"
+       xlink:href="#linearGradient1557"
+       y1="0.55629140"
+       y2="-0.19867550" />
+    <linearGradient
+       y2="1677.2944"
+       x2="268.40164"
+       y1="1678.9126"
+       x1="244.19009"
+       gradientTransform="matrix(0.1263055,-0.6825097,1.8898912,0.04561359,-2859.7468,489.84327)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3771"
+       xlink:href="#linearGradient3360"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(63.382251,-55.974792)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3766"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(71.444796,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3763"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(79.444751,-55.974791)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3760"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(87.444751,-55.974791)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3757"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(55.694751,-55.974791)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3754"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(102.63225,-55.97479)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3751"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(110.6948,-55.974787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3748"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(39.944751,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3745"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(47.944751,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3742"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(94.944752,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3739"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(141.88223,-55.97479)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3736"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(149.94478,-55.974787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3733"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(157.94473,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3730"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(165.94473,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3727"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(134.19473,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3724"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(181.13223,-55.974788)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3721"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(190.07866,-55.974785)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3718"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(118.44473,-55.974787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3715"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(126.44473,-55.974787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3712"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(173.44473,-55.974787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3709"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(221.63224,-55.97479)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3706"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(229.69479,-55.974786)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3703"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(237.69474,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3700"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(245.69474,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3697"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(213.94474,-55.974789)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3694"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(260.88224,-55.974788)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3691"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(268.94479,-55.974785)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3688"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(198.19474,-55.974787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3685"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(206.19474,-55.974787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3682"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(253.19474,-55.974787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3679"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(300.13222,-55.974788)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3676"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(308.19477,-55.974785)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3673"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(292.44472,-55.974787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3670"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(276.69472,-55.974785)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3667"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="448.23718"
+       x2="170.125"
+       y1="444.86218"
+       x1="163.5"
+       gradientTransform="translate(284.69472,-55.974785)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3664"
+       xlink:href="#linearGradient3451"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.485281"
+       fy="439.68607"
+       fx="123.5669"
+       cy="439.68607"
+       cx="123.5669"
+       gradientTransform="matrix(-0.9999374,-0.0111932,0.02083333,-1.8611327,237.96595,1256.8174)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3446"
+       xlink:href="#linearGradient3424"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.485281"
+       fy="439.68607"
+       fx="123.5669"
+       cy="439.68607"
+       cx="123.5669"
+       gradientTransform="matrix(-0.9999374,-0.0111932,0.02083333,-1.8611327,237.96595,1256.8174)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3444"
+       xlink:href="#linearGradient3424"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.485281"
+       fy="439.68607"
+       fx="123.5669"
+       cy="439.68607"
+       cx="123.5669"
+       gradientTransform="matrix(-0.9999374,-1.1193199e-2,2.0833334e-2,-1.8611327,237.96595,1256.8174)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3434"
+       xlink:href="#linearGradient3424"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9999374,-1.1193199e-2,2.0833334e-2,-1.8611327,237.96595,1256.8174)"
+       r="8.485281"
+       fy="439.68607"
+       fx="123.5669"
+       cy="439.68607"
+       cx="123.5669"
+       id="radialGradient3430"
+       xlink:href="#linearGradient3424"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="1295.6069"
+       x2="152.73508"
+       y1="1198.0262"
+       x1="152.73508"
+       gradientTransform="translate(74.953319,374.76659)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2650"
+       xlink:href="#linearGradient3293"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="1677.2944"
+       x2="268.40164"
+       y1="1678.9126"
+       x1="244.19009"
+       gradientTransform="matrix(0.1263055,-0.6825097,1.8898912,4.5613587e-2,-2927.6291,542.03051)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2648"
+       xlink:href="#linearGradient3360"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="1678.8801"
+       x2="263.12882"
+       y1="1678.8801"
+       x1="238.87118"
+       gradientTransform="matrix(0.5288944,0,0,0.5288944,112.21903,68.23721)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2622"
+       xlink:href="#linearGradient3360"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="1295.6069"
+       x2="152.73508"
+       y1="1198.0262"
+       x1="152.73508"
+       gradientTransform="translate(74.953319,374.76659)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3485"
+       xlink:href="#linearGradient3293"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="1678.8801"
+       x2="263.12882"
+       y1="1678.8801"
+       x1="238.87118"
+       gradientTransform="matrix(0.5288944,0,0,0.5288944,112.21903,68.23721)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3483"
+       xlink:href="#linearGradient3360"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(0.5288944,0,0,0.5288944,97.938876,35.974648)"
+       gradientUnits="userSpaceOnUse"
+       y2="1724.3622"
+       x2="419"
+       y1="1724.3622"
+       x1="395"
+       id="linearGradient3380"
+       xlink:href="#linearGradient3374"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(0.5288944,0,0,0.5288944,112.21903,68.23721)"
+       gradientUnits="userSpaceOnUse"
+       y2="1678.8801"
+       x2="263.12882"
+       y1="1678.8801"
+       x1="238.87118"
+       id="linearGradient3367"
+       xlink:href="#linearGradient3360"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="1295.6069"
+       x2="152.73508"
+       y1="1198.0262"
+       x1="152.73508"
+       gradientTransform="translate(74.953319,374.76659)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3355"
+       xlink:href="#linearGradient3293"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="1295.6069"
+       x2="152.73508"
+       y1="1198.0262"
+       x1="152.73508"
+       gradientTransform="translate(74.953319,374.76659)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3320"
+       xlink:href="#linearGradient3293"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="783.625"
+       x2="309.5"
+       y1="772.625"
+       x1="309.5"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3454"
+       xlink:href="#linearGradient3400"
+       inkscape:collect="always" />
+    <radialGradient
+       r="31"
+       fy="781.36224"
+       fx="328"
+       cy="781.36224"
+       cx="328"
+       gradientTransform="matrix(-1.1292144,0.02508277,-0.03224411,-1.4516143,723.57664,1907.3716)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3452"
+       xlink:href="#linearGradient3378"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="783.625"
+       x2="309.5"
+       y1="772.625"
+       x1="309.5"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3450"
+       xlink:href="#linearGradient3400"
+       inkscape:collect="always" />
+    <radialGradient
+       r="31"
+       fy="781.36224"
+       fx="328"
+       cy="781.36224"
+       cx="328"
+       gradientTransform="matrix(-1.1292144,0.02508277,-0.03224411,-1.4516143,723.57664,1907.3716)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3448"
+       xlink:href="#linearGradient3378"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="703.05145"
+       x2="226.20021"
+       y1="695.98035"
+       x1="205.07188"
+       gradientTransform="matrix(-1.2250411,0,0,1.2250411,629.60456,-170.90475)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3366"
+       xlink:href="#linearGradient3332"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="703.05145"
+       x2="230.44286"
+       y1="695.98035"
+       x1="205.07188"
+       gradientTransform="matrix(1.2250411,0,0,1.2250411,74.960658,-172.87384)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3364"
+       xlink:href="#linearGradient3332"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective10"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3186">
+      <stop
+         id="stop3188"
+         offset="0"
+         style="stop-color:#fff375;stop-opacity:1;" />
+      <stop
+         style="stop-color:#fff8b7;stop-opacity:1;"
+         offset="0.5"
+         id="stop3198" />
+      <stop
+         id="stop3190"
+         offset="1"
+         style="stop-color:#fff174;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3204">
+      <stop
+         style="stop-color:#fff375;stop-opacity:1;"
+         offset="0"
+         id="stop3206" />
+      <stop
+         id="stop3208"
+         offset="0.53096873"
+         style="stop-color:#fff8b7;stop-opacity:1;" />
+      <stop
+         style="stop-color:#fff174;stop-opacity:1;"
+         offset="1"
+         id="stop3210" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3332">
+      <stop
+         id="stop3334"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:0.6339286;" />
+      <stop
+         id="stop3336"
+         offset="1"
+         style="stop-color:#3a3a3a;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3378">
+      <stop
+         id="stop3380"
+         offset="0"
+         style="stop-color:#d6d6d6;stop-opacity:1;" />
+      <stop
+         id="stop3382"
+         offset="1"
+         style="stop-color:#828282;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3400">
+      <stop
+         id="stop3402"
+         offset="0"
+         style="stop-color:#828282;stop-opacity:1;" />
+      <stop
+         style="stop-color:#9e9e9e;stop-opacity:1;"
+         offset="0.15909091"
+         id="stop3408" />
+      <stop
+         id="stop3410"
+         offset="0.83522725"
+         style="stop-color:#a2a2a2;stop-opacity:1;" />
+      <stop
+         id="stop3404"
+         offset="1"
+         style="stop-color:#828282;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3293">
+      <stop
+         id="stop3295"
+         offset="0"
+         style="stop-color:#3a3a3a;stop-opacity:1;" />
+      <stop
+         style="stop-color:#6d6d6d;stop-opacity:1;"
+         offset="0.5"
+         id="stop3301" />
+      <stop
+         id="stop3297"
+         offset="1"
+         style="stop-color:#3a3a3a;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3360">
+      <stop
+         id="stop3362"
+         offset="0"
+         style="stop-color:#d2d2d2;stop-opacity:1;" />
+      <stop
+         style="stop-color:#f6f6f6;stop-opacity:1;"
+         offset="0.5"
+         id="stop3369" />
+      <stop
+         id="stop3364"
+         offset="1"
+         style="stop-color:#d2d2d2;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3374">
+      <stop
+         id="stop3376"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1;" />
+      <stop
+         style="stop-color:#7b7b7b;stop-opacity:1;"
+         offset="0.5"
+         id="stop3383" />
+      <stop
+         id="stop3378"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3424">
+      <stop
+         id="stop3426"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop3428"
+         offset="1"
+         style="stop-color:#d9d9d9;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3451">
+      <stop
+         id="stop3453"
+         offset="0"
+         style="stop-color:#acacac;stop-opacity:1;" />
+      <stop
+         style="stop-color:#f0f0f0;stop-opacity:1;"
+         offset="0.5"
+         id="stop3459" />
+      <stop
+         id="stop3455"
+         offset="1"
+         style="stop-color:#acacac;stop-opacity:1;" />
+    </linearGradient>
+    <radialGradient
+       r="18.0625"
+       fy="41.625"
+       fx="25.1875"
+       cy="41.625"
+       cx="25.1875"
+       gradientTransform="matrix(1,0,0,0.32526,0,28.08607)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3253"
+       xlink:href="#linearGradient2269"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="-79.574341"
+       x2="1420.6542"
+       y1="-50.919434"
+       x1="1420.5474"
+       gradientTransform="matrix(2.050967,0,0.167197,-0.988984,-2791.942,99.82423)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1896"
+       xlink:href="#path3311_1_"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="175.78883"
+       x2="1679.5989"
+       y1="185.30176"
+       x1="1668.7646"
+       gradientTransform="matrix(1.213781,0,0.282495,-1.671173,-1774.231,387.0328)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1893"
+       xlink:href="#path3230_2_"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="175.78883"
+       x2="1679.5989"
+       y1="185.30176"
+       x1="1668.7646"
+       gradientTransform="matrix(1.213781,0,0.282495,-1.671173,-1834.231,751.0328)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1890"
+       xlink:href="#path3230_2_"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2269">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop2271" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop2273" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2229">
+      <stop
+         style="stop-color:#e2e2e2;stop-opacity:1;"
+         offset="0"
+         id="stop2231" />
+      <stop
+         style="stop-color:#d8d8d8;stop-opacity:1;"
+         offset="1"
+         id="stop2233" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.000000,0.000000,0.000000,1.010300,1.007969e-18,-0.159801)"
+       r="7.2848282"
+       cy="23.333008"
+       cx="165.06104"
+       id="radialGradient16850">
+      <stop
+         id="stop16852"
+         style="stop-color:#EF3535"
+         offset="0" />
+      <stop
+         id="stop16854"
+         style="stop-color:#a40000;stop-opacity:0"
+         offset="1" />
+    </radialGradient>
+    <linearGradient
+       id="XMLID_897_"
+       gradientUnits="userSpaceOnUse"
+       x1="292.97168"
+       y1="4.7592773"
+       x2="296.93979"
+       y2="10.711433">
+      <stop
+         offset="0"
+         style="stop-color:#EEEEEC"
+         id="stop45093" />
+      <stop
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1;"
+         id="stop45095" />
+    </linearGradient>
+    <linearGradient
+       id="path3230_2_"
+       gradientUnits="userSpaceOnUse"
+       x1="1668.7646"
+       y1="185.30176"
+       x2="1679.5989"
+       y2="175.78883"
+       gradientTransform="matrix(1.213800,0.000000,0.282500,-1.671200,46.72625,447.9442)">
+      <stop
+         offset="0"
+         style="stop-color:#FFFFFF"
+         id="stop4977" />
+      <stop
+         offset="1"
+         style="stop-color:#CFCFCF"
+         id="stop4979" />
+    </linearGradient>
+    <linearGradient
+       id="path3311_1_"
+       gradientUnits="userSpaceOnUse"
+       x1="1420.5474"
+       y1="-50.919434"
+       x2="1420.6542"
+       y2="-79.574341"
+       gradientTransform="matrix(2.051000,0.000000,0.167200,-0.989000,-799.2049,221.0724)">
+      <stop
+         offset="0"
+         style="stop-color:#C4A000"
+         id="stop4970" />
+      <stop
+         offset="1"
+         style="stop-color:#957A00"
+         id="stop4972" />
+    </linearGradient>
+    <radialGradient
+       id="XMLID_52_"
+       cx="165.06104"
+       cy="23.333008"
+       r="7.2848282"
+       gradientTransform="matrix(1.000000,0.000000,0.000000,1.010300,1.007969e-18,-0.159801)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         style="stop-color:#EF3535"
+         id="stop812" />
+      <stop
+         id="stop2239"
+         style="stop-color:#c91a1a;stop-opacity:1;"
+         offset="0" />
+      <stop
+         offset="1"
+         style="stop-color:#ff4c4c;stop-opacity:1;"
+         id="stop814" />
+    </radialGradient>
+    <linearGradient
+       id="XMLID_45_"
+       gradientUnits="userSpaceOnUse"
+       x1="68.175293"
+       y1="21.424805"
+       x2="74.587158"
+       y2="27.836672">
+      <stop
+         offset="0"
+         style="stop-color:#BABDB6"
+         id="stop695" />
+      <stop
+         offset="1"
+         style="stop-color:#EEEEEC"
+         id="stop697" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3078"
+       inkscape:collect="always">
+      <stop
+         id="stop3080"
+         offset="0"
+         style="stop-color:#c4a000" />
+      <stop
+         id="stop3082"
+         offset="1"
+         style="stop-color:#fce94f" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3099"
+       inkscape:collect="always">
+      <stop
+         id="stop3101"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop3103"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective90"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 24 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3099"
+       id="linearGradient4068"
+       gradientUnits="userSpaceOnUse"
+       x1="28.835155"
+       y1="11.913623"
+       x2="52.131729"
+       y2="70.073158"
+       gradientTransform="translate(238.80866,-43.791532)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3078"
+       id="linearGradient4071"
+       gradientUnits="userSpaceOnUse"
+       x1="42.426411"
+       y1="58.076275"
+       x2="32.350136"
+       y2="16.35697"
+       gradientTransform="translate(238.80866,-43.791532)" />
+  </defs>
+  <sodipodi:namedview
+     bordercolor="#666666"
+     borderopacity="1.0"
+     id="base"
+     inkscape:cx="160.49114"
+     inkscape:cy="85.97279"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:window-height="974"
+     inkscape:window-width="1280"
+     inkscape:window-x="-8"
+     inkscape:window-y="22"
+     inkscape:zoom="2.1875469"
+     pagecolor="#ffffff"
+     showborder="true"
+     showgrid="false"
+     snaptogrid="false"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg1" />
+  <g
+     id="g1694">
+    <path
+       d="M 17.159384,6.3292894 L 17.159384,43.068526 L 17.159384,79.807768 L 17.159384,116.54700 L 17.159384,153.28624 L 50.687024,153.28624 L 84.214664,153.28624 L 117.74230,153.28624 L 151.26994,153.28624 L 151.26994,116.54700 L 151.26994,79.807768 L 151.26994,43.068526 L 117.74230,6.3292894 L 84.214664,6.3292894 L 50.687024,6.3292894 L 17.159384,6.3292894 z "
+       id="path930"
+       sodipodi:nodetypes="cccccccccccccccc"
+       style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.42649043;stroke-opacity:0.36477986;" />
+    <g
+       id="g1552"
+       style="fill:#000000;fill-opacity:0.069182344;"
+       transform="matrix(0.304171,0.000000,0.000000,0.297572,-36.70399,-112.4880)">
+      <path
+         d="M 173.35959,408.81260 L 173.35959,531.07360 L 173.35959,653.33460 L 173.35959,775.59560 L 173.35959,897.85660 L 282.12187,897.85660 L 390.88417,897.85660 L 499.64646,897.85660 L 608.40874,897.85660 L 608.40874,775.59560 L 608.40874,653.33460 L 608.40874,531.07360 L 499.64646,408.81260 L 390.88417,408.81260 L 282.12187,408.81260 L 173.35959,408.81260 z "
+         id="path1505"
+         sodipodi:nodetypes="cccccccccccccccc"
+         style="fill-opacity:0.069182344;fill-rule:evenodd;stroke-width:0.95407495pt;fill:#000000;" />
+      <path
+         d="M 170.12500,407.18750 C 170.12500,571.82292 170.12500,736.45833 170.12500,901.09375 C 317.30208,901.09375 464.47917,901.09375 611.65625,901.09375 C 611.65625,777.33333 611.65625,653.57292 611.65625,529.81250 C 574.80918,488.38978 537.97604,446.95335 501.09375,405.56250 C 390.77083,405.56250 280.44792,405.56250 170.12500,405.56250 C 170.12500,405.89583 170.12500,406.97917 170.12500,407.18750 z "
+         id="path1538"
+         style="fill-opacity:0.069182344;fill-rule:evenodd;stroke-width:0.95407495pt;fill:#000000;" />
+      <path
+         d="M 166.87500,403.93750 C 166.87500,570.73958 166.87500,737.54167 166.87500,904.34375 C 316.21875,904.34375 465.56250,904.34375 614.90625,904.34375 C 614.90625,779.08333 614.90625,653.82292 614.90625,528.56250 C 577.45517,486.47298 540.01754,444.37017 502.53125,402.31250 C 390.64583,402.31250 278.76042,402.31250 166.87500,402.31250 C 166.87500,402.64583 166.87500,403.72917 166.87500,403.93750 z "
+         id="path1543"
+         style="fill-opacity:0.069182344;fill-rule:evenodd;stroke-width:0.95407495pt;fill:#000000;" />
+    </g>
+    <path
+       d="M 297.99034,136.74154 L 297.99034,260.57234 L 297.99034,384.40315 L 297.99034,508.23395 L 297.99034,632.06475 L 410.99634,632.06475 L 524.00235,632.06475 L 637.00835,632.06475 L 750.01435,632.06475 L 750.01435,508.23395 L 750.01435,384.40315 L 750.01435,260.57234 L 637.00835,136.74154 L 524.00235,136.74154 L 410.99634,136.74154 L 297.99034,136.74154 z "
+       id="rect900"
+       sodipodi:nodetypes="cccccccccccccccc"
+       style="fill:url(#linearGradient1495);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.4375000;stroke-opacity:0.36477986;"
+       transform="matrix(0.296689,0.000000,0.000000,0.296689,-71.19601,-34.05825)" />
+    <path
+       d="M 750.01435,260.57234 C 715.94460,250.48602 671.79788,251.91624 638.44792,257.66516 C 644.20618,220.71628 644.92597,174.41021 637.00835,136.74154 L 750.01435,260.57234 z "
+       id="path906"
+       sodipodi:nodetypes="cccc"
+       style="fill:url(#linearGradient1497);fill-opacity:1;fill-rule:evenodd;stroke-width:0.95407495pt;"
+       transform="matrix(0.296689,0.000000,0.000000,0.296689,-71.19601,-34.05825)" />
+    <path
+       d="M 301.30655,174.90867 L 299.27069,628.90434 L 743.08709,628.90434 L 743.34157,516.67783 C 733.41677,520.49506 633.15091,378.49417 506.92790,384.60173 C 380.59029,390.71484 413.27857,193.23136 301.30655,174.90867 z "
+       id="path1500"
+       sodipodi:nodetypes="cccczc"
+       style="fill:url(#linearGradient1499);fill-opacity:1;fill-rule:evenodd;stroke-width:1.0000000pt;"
+       transform="matrix(0.296689,0.000000,0.000000,0.296689,-71.19601,-34.05825)" />
+  </g>
+  <g
+     id="g1752">
+    <path
+       d="M -35.440849,-36.609712 L 67.164717,-36.609712"
+       id="path1600"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(70.64229,106.4429)" />
+    <path
+       d="M -35.467684,-34.337064 C -20.490603,-34.337064 54.394802,-34.337064 54.394802,-34.337064"
+       id="path1601"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(70.64229,106.4429)" />
+    <path
+       d="M -35.436182,-38.882361 C -17.965889,-38.882361 69.385572,-38.882361 69.385572,-38.882361"
+       id="path1602"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(70.64229,106.4429)" />
+    <path
+       d="M -35.447850,-41.155009 C -18.900968,-41.155009 63.833435,-41.155009 63.833435,-41.155009"
+       id="path1605"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(70.64229,106.4429)" />
+    <path
+       d="M -35.436571,-43.427658 C -17.997059,-43.427658 69.200501,-43.427658 69.200501,-43.427658"
+       id="path1606"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(70.64229,106.4429)" />
+    <path
+       d="M -35.437823,-45.700307 C -18.097021,-45.700307 68.606982,-45.700307 68.606982,-45.700307"
+       id="path1607"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(70.64229,106.4429)" />
+    <path
+       d="M -35.449016,-47.972954 C -18.994476,-47.972954 63.278221,-47.972954 63.278221,-47.972954"
+       id="path1608"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(70.64229,106.4429)" />
+    <path
+       d="M -35.444404,-50.245603 C -18.651391,-50.245603 65.313671,-50.245603 65.313671,-50.245603"
+       id="path1609"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(70.64229,106.4429)" />
+    <path
+       d="M -35.433071,-52.518251 C -17.716535,-52.518251 70.866142,-52.518251 70.866142,-52.518251"
+       id="path1610"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(70.64229,106.4429)" />
+  </g>
+  <path
+     d="M -35.440849,-36.609712 L 67.164717,-36.609712"
+     id="path1622"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.31889208;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+     transform="matrix(0.497826,0.000000,0.000000,1.000000,53.14573,155.6114)" />
+  <path
+     d="M -35.467684,-34.337064 C -20.490603,-34.337064 54.394802,-34.337064 54.394802,-34.337064"
+     id="path1623"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.31889208;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+     transform="matrix(0.497826,0.000000,0.000000,1.000000,53.14573,155.6114)" />
+  <path
+     d="M -35.436182,-38.882361 C -17.965889,-38.882361 69.385572,-38.882361 69.385572,-38.882361"
+     id="path1624"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.31889208;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+     transform="matrix(0.497826,0.000000,0.000000,1.000000,53.14573,155.6114)" />
+  <path
+     d="M -35.447850,-41.155009 C -18.900968,-41.155009 63.833435,-41.155009 63.833435,-41.155009"
+     id="path1625"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.31889208;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+     transform="matrix(0.497826,0.000000,0.000000,1.000000,53.14573,155.6114)" />
+  <path
+     d="M -35.436571,-43.427658 C -17.997059,-43.427658 69.200501,-43.427658 69.200501,-43.427658"
+     id="path1626"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.31889208;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+     transform="matrix(0.497826,0.000000,0.000000,1.000000,53.14573,155.6114)" />
+  <path
+     d="M -35.437823,-45.700307 C -18.097021,-45.700307 77.534953,-45.700307 77.534953,-45.700307"
+     id="path1627"
+     sodipodi:nodetypes="cc"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.31889208;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+     transform="matrix(0.497826,0.000000,0.000000,1.000000,53.14573,155.6114)" />
+  <path
+     d="M -35.449016,-47.972954 C -18.994476,-47.972954 71.394558,-47.972954 71.394558,-47.972954"
+     id="path1628"
+     sodipodi:nodetypes="cc"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.31889208;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+     transform="matrix(0.497826,0.000000,0.000000,1.000000,53.14573,155.6114)" />
+  <path
+     d="M -35.444404,-50.245603 C -18.651391,-50.245603 80.734711,-50.245603 80.734711,-50.245603"
+     id="path1629"
+     sodipodi:nodetypes="cc"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.31889208;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+     transform="matrix(0.497826,0.000000,0.000000,1.000000,53.14573,155.6114)" />
+  <path
+     d="M -35.433071,-52.518251 C -17.716535,-52.518251 89.533721,-52.518251 89.533721,-52.518251"
+     id="path1630"
+     sodipodi:nodetypes="cc"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.31889208;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+     transform="matrix(0.497826,0.000000,0.000000,1.000000,53.14573,155.6114)" />
+  <g
+     id="g1762">
+    <path
+       d="M -35.440849,-36.609712 L 67.164717,-36.609712"
+       id="path1632"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22558536;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="matrix(0.994817,0.000000,0.000000,-1.000000,70.92836,44.12770)" />
+    <path
+       d="M 35.676052,81.087564 C 53.311594,81.087564 141.48930,81.087564 141.48930,81.087564"
+       id="path1633"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(6.149155e-3,-2.622803)" />
+    <path
+       d="M -35.436182,-38.882361 C -17.965889,-38.882361 69.385572,-38.882361 69.385572,-38.882361"
+       id="path1634"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22558536;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="matrix(0.994817,0.000000,0.000000,-1.000000,70.92836,44.12770)" />
+    <path
+       d="M 35.634975,87.905509 C 50.332995,87.905509 123.82309,87.905509 123.82309,87.905509"
+       id="path1636"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(6.149155e-3,-2.622803)" />
+    <path
+       d="M -35.436571,-43.427658 C -17.997059,-43.427658 69.200501,-43.427658 69.200501,-43.427658"
+       id="path1637"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22558536;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="matrix(0.994817,0.000000,0.000000,-1.000000,70.92836,44.12770)" />
+    <path
+       d="M -35.437823,-45.700307 C -18.097021,-45.700307 68.606982,-45.700307 68.606982,-45.700307"
+       id="path1638"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22558536;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="matrix(0.994817,0.000000,0.000000,-1.000000,70.92836,44.12770)" />
+    <path
+       d="M -35.449016,-47.972954 C -18.994476,-47.972954 63.278221,-47.972954 63.278221,-47.972954"
+       id="path1639"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22558536;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="matrix(0.994817,0.000000,0.000000,-1.000000,70.92836,44.12770)" />
+    <path
+       d="M 35.673644,96.996103 C 53.311834,96.996103 141.50278,96.996103 141.50278,96.996103"
+       id="path1640"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(6.149155e-3,-2.622803)" />
+    <path
+       d="M 35.598477,99.268751 C 47.357107,99.268751 106.15025,99.268751 106.15025,99.268751"
+       id="path1641"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;"
+       transform="translate(6.149155e-3,-2.622803)" />
+  </g>
+  <path
+     d="M 35.591371,39.041426 C 44.407759,39.041426 88.489695,39.041426 88.489695,39.041426"
+     id="path1668"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;" />
+  <path
+     d="M 35.613879,36.768777 C 46.500369,36.768777 100.93282,36.768777 100.93282,36.768777"
+     id="path1669"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.22500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;" />
+  <path
+     d="M 35.791856,21.998602 C 43.053392,21.998602 79.361072,21.998602 79.361072,21.998602"
+     id="path1690"
+     style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.62500000;stroke-miterlimit:4.0000000;stroke-dasharray:none;" />
+  <path
+     d="M 40.045850,126.82742 C 39.812170,127.81187 39.430347,128.75101 39.098931,129.70667 C 38.356059,131.94358 39.681354,131.37384 41.357426,130.64378 C 42.578775,130.02673 46.908785,126.56236 47.761141,126.57415 C 48.480083,126.58410 48.376979,126.63852 48.753816,127.11117 C 48.777673,130.41210 43.502023,135.98063 41.406044,138.22357 C 39.313619,140.35732 37.091746,142.60955 34.468355,144.09777 C 33.759075,144.50016 32.471455,145.11128 32.394489,143.85428 C 34.889247,141.02802 42.742795,137.22788 46.313802,135.90538 C 50.454503,134.67192 53.395087,136.20874 50.186433,140.30502 C 48.630629,141.84692 47.136302,140.81070 47.279395,138.76450 C 47.423671,136.70141 48.415289,134.78517 49.351927,132.98631 C 49.932086,131.97029 54.614985,124.49477 55.412071,129.03880 C 55.783581,131.02851 57.834214,130.18888 59.321897,130.73140 C 60.886836,131.81451 59.164352,134.65698 60.216816,134.80895 C 62.195153,134.99257 64.298884,134.03452 66.074590,133.26623 C 67.819569,132.48313 69.382710,132.18328 67.363196,134.28722 C 66.301749,135.52006 67.299109,135.11959 68.403252,134.91799 C 70.169302,134.54500 71.907839,134.05191 73.654937,133.60044 C 75.770428,133.09672 79.638137,132.69032 76.935028,133.54944 C 75.150323,133.95115 70.516054,135.21948 68.735006,135.63601 C 67.092425,135.98762 64.547206,135.93835 66.339051,133.87084 C 66.609177,133.58024 66.937631,132.67062 67.153897,133.00324 C 67.702965,133.84774 68.595084,133.12469 66.717443,133.92246 C 64.553842,134.81357 61.984125,135.91134 59.611055,135.49936 C 57.493162,134.56084 59.896480,132.68286 58.680429,131.40631 C 56.956451,130.47992 54.774384,131.80984 54.259569,129.13466 C 54.146666,128.60540 54.014641,128.64605 54.301313,128.38585 C 54.670182,128.05105 53.368959,128.78743 53.002211,129.12453 C 51.759572,130.26676 50.853436,131.68699 50.009643,133.13270 C 49.039119,135.02509 47.601405,137.68508 48.424381,139.88251 C 48.653917,140.49540 48.564118,140.54340 49.261186,139.97484 C 51.993507,136.87523 50.104982,135.55978 46.723566,136.40854 C 43.305086,137.53946 35.711628,141.07662 33.604961,144.03281 C 33.342509,143.75825 33.486113,143.83845 32.932158,143.80122 C 32.640105,143.78161 33.514150,143.69412 33.779382,143.57031 C 34.449731,143.25736 35.079317,142.84944 35.685268,142.42819 C 37.553575,141.12939 39.223297,139.59100 40.835316,137.99213 C 42.892536,135.82310 47.693539,130.62152 47.574121,127.35645 C 47.775595,127.41193 47.781923,127.43132 48.047955,127.37564 C 48.155164,127.35319 47.824018,127.38654 47.724134,127.43148 C 47.249406,127.64514 46.817828,127.96943 46.400825,128.27505 C 44.956162,129.33387 43.536934,130.36101 41.953884,131.20881 C 39.810448,132.22102 36.905981,132.71777 37.984010,129.54090 C 38.228909,128.82814 38.878806,127.61342 38.692233,126.82742 L 40.045850,126.82742 z "
+     id="path1730"
+     sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc"
+     style="stroke-width:1.0000000pt;" />
+  <g
+     id="g2308"
+     transform="matrix(1.068061,0.000000,0.000000,1.068061,-10.04078,-10.87309)">
+    <g
+       id="g2300"
+       style="fill-opacity:0.079545446;"
+       transform="translate(-42.02145,-76.76995)">
+      <path
+         d="M 165.98017,227.75087 C 158.48622,229.01119 159.04474,221.66925 155.03853,220.23456 C 151.03232,218.79985 146.70461,224.90948 141.94292,219.14265 C 137.34349,213.57233 143.74204,210.09559 142.98142,205.90876 C 142.22081,201.72192 135.80680,202.35210 138.84535,194.20494 C 141.58795,186.85132 146.11378,191.05622 149.35937,188.30410 C 152.60497,185.55198 149.43452,180.00855 156.66953,178.79177 C 165.37577,177.32757 163.78822,183.59053 167.79443,185.02523 C 171.80064,186.45994 175.37675,179.44003 180.89005,186.11713 C 186.45560,192.85751 179.09093,195.16420 179.85154,199.35103 C 180.61215,203.53786 188.09719,204.15031 185.45373,211.23811 C 182.90735,218.06567 176.71918,214.20356 173.47359,216.95569 C 170.22800,219.70781 173.61505,226.46685 165.98017,227.75087 z "
+         id="path2299"
+         sodipodi:nodetypes="czzzzzzzzzzzz"
+         style="fill-rule:evenodd;stroke-width:25.000000;" />
+      <path
+         d="M 165.60336,225.41512 C 158.82336,226.55537 159.32867,219.91289 155.70413,218.61488 C 152.07959,217.31686 148.16418,222.84443 143.85613,217.62700 C 139.69489,212.58736 145.48385,209.44185 144.79570,205.65390 C 144.10755,201.86594 138.30460,202.43608 141.05367,195.06510 C 143.53498,188.41206 147.62964,192.21636 150.56602,189.72643 C 153.50241,187.23650 150.63401,182.22119 157.17974,181.12034 C 165.05654,179.79563 163.62024,185.46192 167.24478,186.75994 C 170.86932,188.05796 174.10473,181.70684 179.09278,187.74781 C 184.12810,193.84604 177.46506,195.93297 178.15321,199.72092 C 178.84136,203.50887 185.61330,204.06298 183.22168,210.47552 C 180.91789,216.65262 175.31927,213.15846 172.38289,215.64839 C 169.44650,218.13832 172.51087,224.25343 165.60336,225.41512 z "
+         id="path2277"
+         sodipodi:nodetypes="czzzzzzzzzzzz"
+         style="fill-rule:evenodd;stroke-width:25.000000;" />
+      <path
+         d="M 165.80955,226.69326 C 158.63888,227.89921 159.17330,220.87398 155.33991,219.50118 C 151.50652,218.12836 147.36550,223.97444 142.80921,218.45637 C 138.40819,213.12634 144.53072,209.79958 143.80292,205.79336 C 143.07512,201.78713 136.93779,202.39013 139.84527,194.59442 C 142.46955,187.55802 146.80015,191.58153 149.90573,188.94812 C 153.01132,186.31472 149.97764,181.01042 156.90055,179.84613 C 165.23122,178.44509 163.71216,184.43788 167.54555,185.81070 C 171.37895,187.18351 174.80079,180.46643 180.07626,186.85549 C 185.40172,193.30511 178.35474,195.51229 179.08255,199.51851 C 179.81035,203.52473 186.97250,204.11077 184.44307,210.89281 C 182.00653,217.42585 176.08531,213.73035 172.97973,216.36375 C 169.87414,218.99716 173.11508,225.46463 165.80955,226.69326 z "
+         id="path2298"
+         sodipodi:nodetypes="czzzzzzzzzzzz"
+         style="fill-rule:evenodd;stroke-width:25.000000;" />
+    </g>
+    <g
+       id="g2231"
+       transform="matrix(0.744803,0.000000,0.000000,0.744803,-15.81411,33.32497)">
+      <path
+         d="M 192.44720,114.50882 C 192.44720,114.50882 180.42572,131.10727 180.42572,138.55179 C 180.42572,146.00136 194.16672,141.99589 199.60345,147.42755 C 205.04017,152.86934 186.71714,167.18183 186.71714,167.18183 L 205.04017,162.02326 L 212.48975,169.75100 C 212.48975,160.30374 223.36825,152.86428 217.64326,147.13422 C 211.91826,141.40417 195.59797,142.01612 194.74833,134.53619 C 193.88856,127.06133 192.45226,114.50376 192.45226,114.50376 L 192.44720,114.50882 z "
+         id="path64"
+         style="fill:#22364b;" />
+      <path
+         d="M 426.11179,669.43739 C 357.89354,708.82322 336.72344,635.49297 292.61702,636.07033 C 248.51061,636.64769 228.60937,711.66257 161.47330,672.90154 C 96.624879,635.46129 146.17585,578.51674 123.62264,540.60814 C 101.06943,502.69954 41.057317,532.05336 41.057317,441.91916 C 41.057317,360.56417 100.24493,385.00957 121.79813,346.52362 C 143.35133,308.03767 92.479115,265.68250 158.34018,227.65760 C 237.59405,181.90035 244.86159,248.47865 288.96800,247.90129 C 333.07442,247.32393 342.37863,166.19086 420.11172,211.07008 C 498.58166,256.37472 435.40917,305.45488 457.96238,343.36348 C 480.51559,381.27208 555.43100,360.10752 555.43100,438.52167 C 555.43100,514.05671 481.34009,498.96205 459.78689,537.44800 C 438.23369,575.93395 495.61291,629.31090 426.11179,669.43739 z "
+         id="path1357"
+         sodipodi:nodetypes="czzzzzzzzzzzz"
+         style="fill:#ac0000;fill-rule:evenodd;stroke-width:25.000000;"
+         transform="matrix(0.109798,4.095008e-2,-4.095008e-2,0.109798,168.5971,62.92562)" />
+      <path
+         d="M 506.72753,587.14782 C 438.50928,626.53365 417.33918,553.20340 373.23276,553.78076 C 329.12635,554.35812 309.22511,629.37300 242.08904,590.61197 C 177.24062,553.17172 226.79159,496.22717 204.23838,458.31857 C 181.68517,420.40997 106.76976,453.29458 106.76976,363.16038 C 106.76976,281.80540 180.86067,302.72001 202.41387,264.23406 C 223.96707,225.74811 170.22791,170.26957 236.08897,132.24467 C 315.34284,86.487416 325.47733,166.18909 369.58374,165.61173 C 413.69016,165.03437 422.99437,83.901296 500.72746,128.78052 C 579.19740,174.08516 516.02491,223.16532 538.57812,261.07392 C 561.13133,298.98252 636.04674,277.81796 636.04674,356.23210 C 636.04674,431.76714 561.95583,416.67248 540.40263,455.15843 C 518.84943,493.64438 576.22865,547.02133 506.72753,587.14782 z "
+         id="path1358"
+         sodipodi:nodetypes="czzzzzzzzzzzz"
+         style="fill:url(#linearGradient852);fill-rule:evenodd;stroke-width:25.000000;"
+         transform="matrix(0.109798,4.095008e-2,-4.095008e-2,0.109798,156.6811,66.88409)" />
+      <path
+         d="M 127.50617,348.72618 C 114.51637,350.91079 115.48449,338.18448 108.54024,335.69761 C 101.59600,333.21073 94.094461,343.80101 85.840689,333.80494 C 77.868168,324.14951 88.959231,318.12302 87.640812,310.86569 C 86.322383,303.60837 72.663184,304.38302 77.930126,290.26097 C 82.684056,277.51443 93.070343,285.12075 98.696162,280.35029 C 104.32197,275.57983 99.144082,263.74735 111.68502,261.63823 C 126.77617,259.10022 123.70670,272.17993 130.65094,274.66680 C 137.59519,277.15368 143.79392,264.98559 153.35050,276.55947 C 162.99767,288.24305 150.23195,292.24139 151.55038,299.49872 C 152.86881,306.75605 165.84315,307.81766 161.26107,320.10344 C 156.84722,331.93812 146.12085,325.24366 140.49504,330.01412 C 134.86922,334.78458 140.74024,346.50049 127.50617,348.72618 z "
+         id="path1958"
+         sodipodi:nodetypes="czzzzzzzzzzzz"
+         style="fill:url(#linearGradient849);fill-rule:evenodd;stroke-width:25.000000;"
+         transform="matrix(0.618772,0.000000,0.000000,0.618772,108.5096,-66.92548)" />
+      <path
+         d="m 460.66139,450.62323 c 0,92.2259 -74.76386,166.98976 -166.98976,166.98976 -92.2259,0 -166.98976,-74.76386 -166.98976,-166.98976 0,-92.2259 74.76386,-166.98976 166.98976,-166.98976 92.2259,0 166.98976,74.76386 166.98976,166.98976 z"
+         id="path1359"
+         sodipodi:cx="293.67163"
+         sodipodi:cy="450.62323"
+         sodipodi:rx="166.98976"
+         sodipodi:ry="166.98976"
+         sodipodi:type="arc"
+         style="fill:#cb0000;fill-rule:evenodd;stroke:#000000;stroke-width:19.772703;stroke-opacity:0.069182344;"
+         transform="matrix(0.108835,4.059093e-2,-4.059093e-2,0.108835,168.7180,63.46510)" />
+      <path
+         d="m 460.66139,450.62323 c 0,92.2259 -74.76386,166.98976 -166.98976,166.98976 -92.2259,0 -166.98976,-74.76386 -166.98976,-166.98976 0,-92.2259 74.76386,-166.98976 166.98976,-166.98976 92.2259,0 166.98976,74.76386 166.98976,166.98976 z"
+         id="path1360"
+         sodipodi:cx="293.67163"
+         sodipodi:cy="450.62323"
+         sodipodi:rx="166.98976"
+         sodipodi:ry="166.98976"
+         sodipodi:type="arc"
+         style="fill:url(#linearGradient845);fill-opacity:1;fill-rule:evenodd;stroke-width:1.0000000pt;"
+         transform="matrix(8.819373e-2,3.289260e-2,-3.289260e-2,8.819373e-2,171.3744,71.37675)" />
+      <path
+         d="m 460.66139,450.62323 c 0,92.2259 -74.76386,166.98976 -166.98976,166.98976 -92.2259,0 -166.98976,-74.76386 -166.98976,-166.98976 0,-92.2259 74.76386,-166.98976 166.98976,-166.98976 92.2259,0 166.98976,74.76386 166.98976,166.98976 z"
+         id="path1957"
+         sodipodi:cx="293.67163"
+         sodipodi:cy="450.62323"
+         sodipodi:rx="166.98976"
+         sodipodi:ry="166.98976"
+         sodipodi:type="arc"
+         style="fill:url(#linearGradient840);fill-opacity:1;fill-rule:evenodd;stroke-width:1.0000000pt;"
+         transform="matrix(8.720283e-2,3.252287e-2,-3.252287e-2,8.720283e-2,172.8277,76.96071)" />
+      <path
+         d="m 460.66139,450.62323 c 0,92.2259 -74.76386,166.98976 -166.98976,166.98976 -92.2259,0 -166.98976,-74.76386 -166.98976,-166.98976 0,-92.2259 74.76386,-166.98976 166.98976,-166.98976 92.2259,0 166.98976,74.76386 166.98976,166.98976 z"
+         id="path1361"
+         sodipodi:cx="293.67163"
+         sodipodi:cy="450.62323"
+         sodipodi:rx="166.98976"
+         sodipodi:ry="166.98976"
+         sodipodi:type="arc"
+         style="fill:url(#linearGradient1562);fill-opacity:1;fill-rule:evenodd;stroke-width:1.0000000pt;"
+         transform="matrix(8.819373e-2,3.289260e-2,-3.289260e-2,8.819373e-2,170.3376,77.84625)" />
+      <path
+         d="m 460.66139,450.62323 c 0,92.2259 -74.76386,166.98976 -166.98976,166.98976 -92.2259,0 -166.98976,-74.76386 -166.98976,-166.98976 0,-92.2259 74.76386,-166.98976 166.98976,-166.98976 92.2259,0 166.98976,74.76386 166.98976,166.98976 z"
+         id="path1956"
+         sodipodi:cx="293.67163"
+         sodipodi:cy="450.62323"
+         sodipodi:rx="166.98976"
+         sodipodi:ry="166.98976"
+         sodipodi:type="arc"
+         style="fill:url(#linearGradient844);fill-opacity:1;fill-rule:evenodd;stroke-width:1.0000000pt;"
+         transform="matrix(6.781695e-2,2.529282e-2,-2.529282e-2,6.781695e-2,170.1008,82.30664)" />
+      <path
+         d="M 200.26806,147.94862 C 215.05407,168.88585 222.35996,153.00263 217.03797,147.67593 C 211.71598,142.34925 195.21405,142.89931 200.26806,147.94862 z "
+         id="path1970"
+         sodipodi:nodetypes="ccc"
+         style="fill:url(#linearGradient860);" />
+    </g>
+    <path
+       d="M 111.61946,109.49346 C 111.61946,109.49346 112.73061,102.62456 117.98329,103.83672 C 123.23597,105.04888 122.02381,106.36205 122.02381,106.36205 C 119.80152,105.85698 115.76100,104.44280 111.61946,109.49346 z "
+       id="path2304"
+       sodipodi:nodetypes="cccc"
+       style="fill:url(#linearGradient1560);fill-rule:evenodd;stroke-width:1.0000000pt;" />
+    <path
+       d="M 101.69754,123.26086 C 101.69754,123.26086 97.897851,117.43174 102.59929,114.79423 C 107.30073,112.15672 107.28755,113.94378 107.28755,113.94378 C 105.30370,115.06540 101.36307,116.73785 101.69754,123.26086 z "
+       id="path2305"
+       sodipodi:nodetypes="cccc"
+       style="fill:url(#linearGradient1560);fill-rule:evenodd;stroke-width:1.0000000pt;" />
+    <path
+       d="M 103.63533,141.13797 C 103.63533,141.13797 105.79623,129.83650 103.87698,129.43245 C 100.20298,134.43495 99.612105,137.71781 103.63533,141.13797 z "
+       id="path2306"
+       sodipodi:nodetypes="ccc"
+       style="fill:url(#linearGradient1560);fill-rule:evenodd;stroke-width:1.0000000pt;" />
+    <path
+       d="M 129.03773,109.51665 C 133.73917,106.87914 133.72599,108.66620 133.72599,108.66620 C 127.49959,115.04050 126.25554,110.84099 129.03773,109.51665 z "
+       id="path2307"
+       sodipodi:nodetypes="ccc"
+       style="fill:url(#linearGradient1560);fill-rule:evenodd;stroke-width:1.0000000pt;" />
+  </g>
+  <g
+     id="g4074"
+     transform="matrix(-0.35676924,-2.4896369,2.0430493,-0.29277247,187.8919,729.8924)">
+    <path
+       inkscape:r_cy="true"
+       inkscape:r_cx="true"
+       sodipodi:type="arc"
+       style="opacity:0.26704544;color:#000000;fill:url(#radialGradient3253);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+       id="path3251"
+       sodipodi:cx="25.1875"
+       sodipodi:cy="41.625"
+       sodipodi:rx="18.0625"
+       sodipodi:ry="5.875"
+       d="m 43.25,41.625 c 0,3.244673 -8.086857,5.875 -18.0625,5.875 -9.975643,0 -18.0625,-2.630327 -18.0625,-5.875 0,-3.244673 8.086857,-5.875 18.0625,-5.875 9.975643,0 18.0625,2.630327 18.0625,5.875 z"
+       transform="matrix(0.968858,0,0,0.465206,244.90555,-18.888812)" />
+    <path
+       id="path1465"
+       d="m 283.27741,-40.104032 -28.03125,40.78125 28.03125,0 0,-40.78125 z m -5.9375,19.8125 0,14 -9.03125,0 9.03125,-14 z"
+       style="fill:url(#linearGradient4071);fill-opacity:1;fill-rule:evenodd;stroke:#c4a000;stroke-width:1.02738464px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cccc"
+       inkscape:r_cy="true"
+       inkscape:r_cx="true"
+       id="path3006"
+       d="m 282.30866,-0.291532 0,-36.65625 -25.125,36.59375 25.125,0.0625 z"
+       style="opacity:0.63874344;fill:none;stroke:url(#linearGradient4068);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#2e3436;fill-opacity:0.75;fill-rule:evenodd;stroke:#c4a000;stroke-width:0.99999964px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 282.31469,-3.175412 -0.75843,0"
+       id="path3022"
+       inkscape:r_cx="true"
+       inkscape:r_cy="true"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#2e3436;fill-opacity:0.75;fill-rule:evenodd;stroke:#c4a000;stroke-width:0.99999964px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 282.31469,-7.175412 -0.75843,0"
+       id="path3046"
+       inkscape:r_cx="true"
+       inkscape:r_cy="true"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#2e3436;fill-opacity:0.75;fill-rule:evenodd;stroke:#c4a000;stroke-width:0.99999964px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 282.31469,-11.175412 -0.75843,0"
+       id="path3050"
+       inkscape:r_cx="true"
+       inkscape:r_cy="true"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#2e3436;fill-opacity:0.75;fill-rule:evenodd;stroke:#c4a000;stroke-width:0.99999964px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 282.31469,-15.175412 -0.75843,0"
+       id="path3054"
+       inkscape:r_cx="true"
+       inkscape:r_cy="true"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#2e3436;fill-opacity:0.75;fill-rule:evenodd;stroke:#c4a000;stroke-width:0.99999964px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 282.31469,-19.175412 -0.75843,0"
+       id="path3058"
+       inkscape:r_cx="true"
+       inkscape:r_cy="true"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#2e3436;fill-opacity:0.75;fill-rule:evenodd;stroke:#c4a000;stroke-width:0.99999964px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 282.31469,-23.175412 -0.75843,0"
+       id="path3062"
+       inkscape:r_cx="true"
+       inkscape:r_cy="true"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#2e3436;fill-opacity:0.75;fill-rule:evenodd;stroke:#c4a000;stroke-width:0.99999964px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 282.31469,-27.175412 -0.75843,0"
+       id="path3066"
+       inkscape:r_cx="true"
+       inkscape:r_cy="true"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#2e3436;fill-opacity:0.75;fill-rule:evenodd;stroke:#c4a000;stroke-width:0.99999964px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 282.31469,-31.175412 -0.75843,0"
+       id="path3070"
+       inkscape:r_cx="true"
+       inkscape:r_cy="true"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     transform="matrix(0.10222779,0.04823463,-0.04823463,0.10222779,28.880626,-16.141893)"
+     inkscape:transform-center-x="9.1426612"
+     inkscape:transform-center-y="20.113855">
+    <g
+       id="g3773">
+      <path
+         style="fill:url(#linearGradient3771);fill-opacity:1;stroke:none"
+         d="m 495.13884,383.92659 0,15.8358 -302.16206,0 0,-16.59843 302.16206,0.76263 z"
+         id="path2551"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:type="arc"
+         style="fill:url(#radialGradient3444);fill-opacity:1;stroke:none"
+         id="path2652"
+         sodipodi:cx="121.62237"
+         sodipodi:cy="443.83768"
+         sodipodi:rx="8.485281"
+         sodipodi:ry="13.729474"
+         d="m 130.10765,443.83768 c 0,7.58258 -3.79899,13.72947 -8.48528,13.72947 -4.68629,0 -8.48528,-6.14689 -8.48528,-13.72947 0,-7.58258 3.79899,-13.72948 8.48528,-13.72948 4.68629,0 8.48528,6.1469 8.48528,13.72948 z"
+         transform="matrix(1,0,0,0.9613729,66.961756,-36.00559)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:url(#radialGradient3446);fill-opacity:1;stroke:none"
+         id="path3432"
+         sodipodi:cx="121.62237"
+         sodipodi:cy="443.83768"
+         sodipodi:rx="8.485281"
+         sodipodi:ry="13.729474"
+         d="m 130.10765,443.83768 c 0,7.58258 -3.79899,13.72947 -8.48528,13.72947 -4.68629,0 -8.48528,-6.14689 -8.48528,-13.72947 0,-7.58258 3.79899,-13.72948 8.48528,-13.72948 4.68629,0 8.48528,6.1469 8.48528,13.72948 z"
+         transform="matrix(1,0,0,0.9613729,372.25988,-36.00559)" />
+      <path
+         style="fill:url(#linearGradient3766);fill-opacity:1;stroke:none"
+         d="m 230.25725,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="rect3448"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3763);fill-opacity:1;stroke:none"
+         d="m 238.31979,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3461"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3760);fill-opacity:1;stroke:none"
+         d="m 246.31975,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3466"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3757);fill-opacity:1;stroke:none"
+         d="m 254.31975,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3470"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3754);fill-opacity:1;stroke:none"
+         d="m 222.56975,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3474"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3751);fill-opacity:1;stroke:none"
+         d="m 269.50725,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3478"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3748);fill-opacity:1;stroke:none"
+         d="m 277.56979,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3480"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3745);fill-opacity:1;stroke:none"
+         d="m 206.81975,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3482"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3742);fill-opacity:1;stroke:none"
+         d="m 214.81975,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3484"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3739);fill-opacity:1;stroke:none"
+         d="m 261.81975,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3486"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3736);fill-opacity:1;stroke:none"
+         d="m 308.75723,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3498"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3733);fill-opacity:1;stroke:none"
+         d="m 316.81977,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3500"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3730);fill-opacity:1;stroke:none"
+         d="m 324.81973,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3502"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3727);fill-opacity:1;stroke:none"
+         d="m 332.81973,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3504"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3724);fill-opacity:1;stroke:none"
+         d="m 301.06973,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3506"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3721);fill-opacity:1;stroke:none"
+         d="m 348.00723,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3508"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3718);fill-opacity:1;stroke:none"
+         d="m 356.95365,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3510"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3715);fill-opacity:1;stroke:none"
+         d="m 285.31973,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3512"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3712);fill-opacity:1;stroke:none"
+         d="m 293.31973,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3514"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3709);fill-opacity:1;stroke:none"
+         d="m 340.31973,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3516"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+         d="m 388.50724,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3538"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3703);fill-opacity:1;stroke:none"
+         d="m 396.56978,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3540"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3700);fill-opacity:1;stroke:none"
+         d="m 404.56974,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3542"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3697);fill-opacity:1;stroke:none"
+         d="m 412.56974,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3544"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3694);fill-opacity:1;stroke:none"
+         d="m 380.81974,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3546"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3691);fill-opacity:1;stroke:none"
+         d="m 427.75724,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3548"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3688);fill-opacity:1;stroke:none"
+         d="m 435.81978,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3550"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3685);fill-opacity:1;stroke:none"
+         d="m 365.06974,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3552"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3682);fill-opacity:1;stroke:none"
+         d="m 373.06974,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3554"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3679);fill-opacity:1;stroke:none"
+         d="m 420.06974,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3556"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3676);fill-opacity:1;stroke:none"
+         d="m 467.00722,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3558"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3673);fill-opacity:1;stroke:none"
+         d="m 475.06976,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3560"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3670);fill-opacity:1;stroke:none"
+         d="m 459.31972,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3566"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3667);fill-opacity:1;stroke:none"
+         d="m 443.56972,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3572"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3664);fill-opacity:1;stroke:none"
+         d="m 451.56972,383.01239 8,0.125 -8.625,16.625 -9,0 9.625,-16.75 z"
+         id="path3574"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       transform="matrix(1.1372159,0.1194934,-0.1194934,1.1372159,54.840259,-112.4124)"
+       inkscape:transform-center-y="428.32549"
+       inkscape:transform-center-x="53.036596"
+       id="g3408">
+      <g
+         transform="matrix(0.9992797,-0.03794921,0.03794921,0.9992797,-8.2717138,9.7303795)"
+         inkscape:transform-center-y="376.5497"
+         inkscape:transform-center-x="32.474238"
+         id="g3459">
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path3357"
+           d="m 245.50043,998.75411 -6.94376,-84.6421 12.82973,-0.49092 -5.88597,85.13302 z"
+           style="fill:url(#linearGradient3483);fill-opacity:1;stroke:none"
+           inkscape:connector-curvature="0" />
+        <g
+           inkscape:transform-center-x="3.4378125"
+           inkscape:transform-center-y="337.34003"
+           transform="matrix(0.5288944,0,0,0.7000973,317.87199,-80.778426)"
+           id="g3248">
+          <g
+             transform="translate(-412.95036,87.681237)"
+             id="g3253">
+            <path
+               sodipodi:nodetypes="ccccccc"
+               id="rect2453"
+               d="m 246,318.36218 88,0 -22,248.00001 -16,790.00001 -50,0 -16,-790.00001 16,-248.00001 z"
+               inkscape:transform-center-y="486"
+               style="fill:#c8c8c8;fill-opacity:1;stroke:none"
+               inkscape:connector-curvature="0" />
+            <path
+               sodipodi:nodetypes="ccccccccc"
+               id="path3226"
+               d="m 246.98127,318.92451 4.81403,5 74.7111,0 -22,248 -15.37592,775.63079 5.19914,6.364 16.17678,-786.99479 22,-248 -85.52513,0 z"
+               style="fill:#f7f7f7;fill-opacity:0.43137255;stroke:none"
+               inkscape:connector-curvature="0" />
+            <path
+               sodipodi:nodetypes="ccccccccc"
+               id="path3231"
+               d="m 246.89429,319.69956 -16,246.05546 16,789.99998 48,0 -12.125,-3.5312 -30.9375,-2.125 -16,-790.00003 14.21079,-236.15657 -3.14829,-4.24264 z"
+               style="fill:#353535;fill-opacity:0.29411765;stroke:none"
+               inkscape:connector-curvature="0" />
+          </g>
+        </g>
+        <g
+           transform="matrix(0.5288654,-0.00554164,0.00554164,0.5288654,89.230206,37.391797)"
+           inkscape:transform-center-y="25.913232"
+           inkscape:transform-center-x="10.200626"
+           id="g3303">
+          <rect
+             style="fill:url(#linearGradient3485);fill-opacity:1;stroke:none"
+             id="rect3263"
+             width="39.59798"
+             height="97.580734"
+             x="207.8894"
+             y="1572.7928" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3265"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1575.6288" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3267"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1582.3981" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3269"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1602.7057" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3271"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1609.475" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3273"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1623.0134" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3275"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1629.7826" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3277"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1636.5519" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3279"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1650.0903" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3281"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1656.8595" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3283"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1643.321" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3285"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1616.2441" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3287"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1595.9365" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3289"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1589.1672" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3291"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1663.6288" />
+        </g>
+      </g>
+    </g>
+    <g
+       transform="matrix(1.1408793,-0.07702694,0.07702694,1.1408793,10.161617,-59.510132)"
+       inkscape:transform-center-y="421.73528"
+       inkscape:transform-center-x="-36.014899"
+       id="g3385">
+      <g
+         id="g3436">
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="rect3371"
+           d="m 306.85218,910.42874 12.69347,0 0,59.23617 -12.69347,15.86684 0,-75.10301 z"
+           style="fill:url(#linearGradient3380);fill-opacity:1;stroke:none"
+           inkscape:connector-curvature="0" />
+        <g
+           inkscape:transform-center-x="-1.8698937"
+           inkscape:transform-center-y="336.62962"
+           transform="matrix(0.5288944,0,0,0.7000973,-32.207852,-34.091839)"
+           id="g3258">
+          <path
+             style="fill:#c8c8c8;fill-opacity:1;stroke:none"
+             inkscape:transform-center-y="486"
+             d="m 676.89611,339.35756 -88,0 22,248.00001 16,790.00003 50,0 16,-790.00003 -16,-248.00001 z"
+             id="path3241"
+             sodipodi:nodetypes="ccccccc"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:#dcdcdc;fill-opacity:1;stroke:none"
+             d="m 592.87923,340.66924 12.15502,8.27144 64.31313,-0.29289 15.5,251 -14.72059,766.29351 5.09559,8.1318 16,-785.05031 -16,-248 -82.34315,-0.35355 z"
+             id="path3236"
+             sodipodi:nodetypes="ccccccccc"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:#9d9d9d;fill-opacity:1;stroke:none"
+             d="m 590.70277,341.31628 21.64645,244.46447 16,789.99995 46.81802,0 -10.67554,-5.186 -30.1486,-1 -17.14645,-788.62645 -21.08579,-229.63115 -5.40809,-10.02082 z"
+             id="path3243"
+             sodipodi:nodetypes="ccccccccc"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           transform="matrix(-0.5288654,-0.00554164,-0.00554164,0.5288654,466.26969,37.391797)"
+           inkscape:transform-center-y="25.913232"
+           inkscape:transform-center-x="-10.200623"
+           id="g3322">
+          <rect
+             style="fill:url(#linearGradient3355);fill-opacity:1;stroke:none"
+             id="rect3324"
+             width="39.59798"
+             height="97.580734"
+             x="207.8894"
+             y="1572.7928" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3326"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1575.6288" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3328"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1582.3981" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3330"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1602.7057" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3332"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1609.475" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3334"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1623.0134" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3336"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1629.7826" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3338"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1636.5519" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3340"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1650.0903" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3342"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1656.8595" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3345"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1643.321" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3347"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1616.2441" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3349"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1595.9365" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3351"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1589.1672" />
+          <rect
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="rect3353"
+             width="36"
+             height="2"
+             x="209.45332"
+             y="1663.6288" />
+        </g>
+      </g>
+    </g>
+    <g
+       transform="matrix(0.5288944,0,0,0.5288944,159.87234,-259.65418)"
+       id="g3346">
+      <rect
+         style="fill:#3a3a3a;fill-opacity:1;stroke:none"
+         id="rect3288"
+         width="46"
+         height="160"
+         x="329.12259"
+         y="528.36218"
+         ry="11" />
+      <path
+         style="fill:#3a3a3a;fill-opacity:1;stroke:none"
+         d="m 329.125,660.86218 45.99516,0 20.25,57 -86.24516,0 20,-57 z"
+         id="rect3290"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <g
+         id="g3317"
+         transform="translate(-0.7524109,0)">
+        <rect
+           y="539.61218"
+           x="332"
+           height="121.5"
+           width="2.5"
+           id="rect3293"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="335.92499"
+           height="121.5"
+           width="2.5"
+           id="rect3295"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="339.85001"
+           height="121.5"
+           width="2.5"
+           id="rect3297"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="343.77499"
+           height="121.5"
+           width="2.5"
+           id="rect3299"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="347.70001"
+           height="121.5"
+           width="2.5"
+           id="rect3301"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="351.625"
+           height="121.5"
+           width="2.5"
+           id="rect3303"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="355.54999"
+           height="121.5"
+           width="2.5"
+           id="rect3305"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="359.47501"
+           height="121.5"
+           width="2.5"
+           id="rect3307"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="363.39999"
+           height="121.5"
+           width="2.5"
+           id="rect3309"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="367.32501"
+           height="121.5"
+           width="2.5"
+           id="rect3311"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+        <rect
+           y="539.61218"
+           x="371.25"
+           height="121.5"
+           width="2.5"
+           id="rect3313"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+      </g>
+      <path
+         style="fill:url(#linearGradient3364);fill-opacity:1;stroke:none"
+         d="m 329.36145,660.4093 45.16208,0 19.88321,55.96758 -84.68304,0 19.63775,-55.96758 z"
+         id="path3330"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:url(#linearGradient3366);fill-opacity:1;stroke:none"
+         d="m 375.20377,662.37839 -45.16208,0 -19.88321,55.96758 84.68304,0 -19.63775,-55.96758 z"
+         id="path3340"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+    </g>
+    <path
+       sodipodi:nodetypes="ccccczccccc"
+       id="rect3344"
+       d="m 345.64524,102.83685 c -26.31915,0 -49.18719,8.46231 -49.18719,8.46231 l 0,105.11777 c 0,4.3074 4.68295,6.47896 11.37124,6.47896 l 0,74.57412 c 0,0 14.01627,5.81784 38.34484,5.81784 24.85747,0 38.34485,-5.81784 38.34485,-5.81784 l 0,-74.57412 c 6.53558,0 11.37123,-4.15544 11.37123,-6.47896 l 0,-105.11777 c 0,0 -23.39856,-8.46231 -50.24497,-8.46231 z"
+       style="fill:#3a3a3a;fill-opacity:1;stroke:none"
+       inkscape:connector-curvature="0" />
+    <g
+       transform="matrix(0.5288944,0,0,0.5288944,156.1688,-244.84514)"
+       id="g3412">
+      <path
+         sodipodi:type="arc"
+         style="fill:url(#radialGradient3452);fill-opacity:1;stroke:none"
+         id="path3376"
+         sodipodi:cx="319"
+         sodipodi:cy="795.36218"
+         sodipodi:rx="31"
+         sodipodi:ry="31"
+         d="m 350,795.36218 c 0,17.12083 -13.87917,31 -31,31 -17.12083,0 -31,-13.87917 -31,-31 0,-17.12082 13.87917,-31 31,-31 17.12083,0 31,13.87918 31,31 z"
+         transform="matrix(0.6612903,0,0,0.6612903,98.548387,251.89687)" />
+      <path
+         style="fill:url(#linearGradient3454);fill-opacity:1;stroke:none"
+         d="m 289.6875,772.625 c -0.44261,1.67476 -0.6875,3.43674 -0.6875,5.25 0,1.99686 0.31053,3.92467 0.84375,5.75 l 39.3125,0 c 0.53322,-1.82533 0.84375,-3.75314 0.84375,-5.75 0,-1.81326 -0.24489,-3.57524 -0.6875,-5.25 l -39.625,0 z"
+         id="path3388"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       transform="matrix(0.458036,0.2644472,-0.2644472,0.458036,436.42797,-271.57347)"
+       id="g3416">
+      <path
+         sodipodi:type="arc"
+         style="fill:url(#radialGradient3448);fill-opacity:1;stroke:none"
+         id="path3418"
+         sodipodi:cx="319"
+         sodipodi:cy="795.36218"
+         sodipodi:rx="31"
+         sodipodi:ry="31"
+         d="m 350,795.36218 c 0,17.12083 -13.87917,31 -31,31 -17.12083,0 -31,-13.87917 -31,-31 0,-17.12082 13.87917,-31 31,-31 17.12083,0 31,13.87918 31,31 z"
+         transform="matrix(0.6612903,0,0,0.6612903,98.548387,251.89687)" />
+      <path
+         style="fill:url(#linearGradient3450);fill-opacity:1;stroke:none"
+         d="m 289.6875,772.625 c -0.44261,1.67476 -0.6875,3.43674 -0.6875,5.25 0,1.99686 0.31053,3.92467 0.84375,5.75 l 39.3125,0 c 0.53322,-1.82533 0.84375,-3.75314 0.84375,-5.75 0,-1.81326 -0.24489,-3.57524 -0.6875,-5.25 l -39.625,0 z"
+         id="path3420"
+         inkscape:connector-curvature="0" />
+    </g>
+    <path
+       sodipodi:nodetypes="cccscccccc"
+       id="path3463"
+       d="M 346.20019,101.71269 C 319.88103,101.71268 297.013,110.175 297.013,110.175 l 0,2.74364 c 6.8731,-2.20913 25.35588,-7.4541 46.19563,-7.4541 26.84641,0 50.24497,8.46232 50.24497,8.46231 l 0,105.11777 c 0,0.0671 -0.009,-1.55457 -0.0165,-1.4846 1.88164,-1.29732 2.35361,-1.3389 3.00809,-2.26725 l 0,-105.11777 c 0,0 -23.39856,-8.46231 -50.24497,-8.46231 z"
+       style="fill:#efefef;fill-opacity:0.28758174;stroke:none"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="ccccc"
+       id="path3456"
+       d="m 385.07393,222.59165 c -0.94781,0.19788 -1.94337,0.32867 -2.99156,0.32867 l 0,72.62996 c 1.95535,-0.65657 2.99156,1.49349 2.99156,1.49349 l 0,-74.45212 z"
+       style="fill:#efefef;fill-opacity:0.28758174;stroke:none"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cccccsccscccc"
+       id="path3472"
+       d="m 298.50308,110.67676 c -1.80024,0.57883 -2.99156,0.99168 -2.99156,0.99168 l 0,105.11775 c 0,4.30742 4.68294,6.47895 11.37123,6.47895 l 0,74.57414 c 0,5e-5 14.01627,5.81784 38.34485,5.81784 24.85746,5e-5 38.34484,-5.81784 38.34484,-5.81784 l -2.4309,-1.72599 c -5.23202,1.67797 -14.83607,3.80851 -32.92238,3.80857 -24.32858,-6e-5 -38.34485,-5.8179 -38.34485,-5.81784 l 0,-74.57414 c -6.68829,-5e-5 -11.37123,-2.17159 -11.37123,-6.47896 l 0,-102.37416 z"
+       style="fill:#000000;fill-opacity:0.3398693;stroke:none"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cccc"
+       id="path3465"
+       d="m 395.58162,216.5336 c -3.22318,1.9663 -7.851,3.6507 -13.22495,2.5288 l 0,3.43781 c 7.57505,0.44684 12.40099,-3.06612 13.22495,-5.96661 z"
+       style="fill:#000000;fill-opacity:0.33999999;stroke:none"
+       inkscape:connector-curvature="0" />
+    <g
+       transform="matrix(0.5288943,-6.1142016e-4,3.2331782e-4,1.0001819,225.49009,-1231.051)"
+       inkscape:transform-center-y="50.02096"
+       inkscape:transform-center-x="8.7113549"
+       id="g2563">
+      <rect
+         style="fill:url(#linearGradient2650);fill-opacity:1;stroke:none"
+         id="rect2565"
+         width="39.59798"
+         height="97.580734"
+         x="207.8894"
+         y="1572.7928" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2567"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1575.6288" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2569"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1582.3981" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2571"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1602.7057" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2573"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1609.475" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2575"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1623.0134" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2577"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1629.7826" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2579"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1636.5519" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2581"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1650.0903" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2583"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1656.8595" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2585"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1643.321" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2587"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1616.2441" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2589"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1595.9365" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2591"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1589.1672" />
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect2593"
+         width="36"
+         height="2"
+         x="209.45332"
+         y="1663.6288" />
+    </g>
+  </g>
+</svg>
diff --git a/data/bcity_be/images/bcity_be128.png b/data/bcity_be/images/bcity_be128.png
new file mode 100644 (file)
index 0000000..354c313
Binary files /dev/null and b/data/bcity_be/images/bcity_be128.png differ
diff --git a/data/bcity_be/images/bcity_be16.png b/data/bcity_be/images/bcity_be16.png
new file mode 100644 (file)
index 0000000..6e20249
Binary files /dev/null and b/data/bcity_be/images/bcity_be16.png differ
diff --git a/data/bcity_be/images/bcity_be256.png b/data/bcity_be/images/bcity_be256.png
new file mode 100644 (file)
index 0000000..b977ea1
Binary files /dev/null and b/data/bcity_be/images/bcity_be256.png differ
diff --git a/data/bcity_be/images/bcity_be32.png b/data/bcity_be/images/bcity_be32.png
new file mode 100644 (file)
index 0000000..d9b22b4
Binary files /dev/null and b/data/bcity_be/images/bcity_be32.png differ
diff --git a/data/bcity_be/images/bcity_be48.png b/data/bcity_be/images/bcity_be48.png
new file mode 100644 (file)
index 0000000..71a95a2
Binary files /dev/null and b/data/bcity_be/images/bcity_be48.png differ
diff --git a/data/bcity_be/images/bcity_be64.png b/data/bcity_be/images/bcity_be64.png
new file mode 100644 (file)
index 0000000..ad9ebf6
Binary files /dev/null and b/data/bcity_be/images/bcity_be64.png differ
diff --git a/data/bcity_be/query_editor/Makefile.am b/data/bcity_be/query_editor/Makefile.am
new file mode 100644 (file)
index 0000000..a013db9
--- /dev/null
@@ -0,0 +1,12 @@
+queryeditordir = $(datadir)/$(PACKAGE)/queryeditor
+
+queryeditor_DATA = \
+            articoli.xml \
+            fornitori.xml \
+            iva.xml \
+            ordini.xml \
+            tipi_quantita.xml \
+            tipi_recapito.xml \
+            uffici.xml
+
+EXTRA_DIST = $(queryeditor_DATA)
diff --git a/doc/Makefile.am b/doc/Makefile.am
new file mode 100644 (file)
index 0000000..daba128
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = bcity_be\r
diff --git a/doc/bcity_be/Makefile.am b/doc/bcity_be/Makefile.am
new file mode 100644 (file)
index 0000000..aee2d7b
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = examples
diff --git a/doc/bcity_be/examples/Makefile.am b/doc/bcity_be/examples/Makefile.am
new file mode 100644 (file)
index 0000000..2425199
--- /dev/null
@@ -0,0 +1,6 @@
+bcity_be_examplesdir = $(docdir)/examples
+
+bcity_be_examples_DATA = \
+                         bcity_be.conf
+
+EXTRA_DIST = $(bcity_be_examples_DATA)
diff --git a/doc/bcity_be/examples/bcity_be.conf b/doc/bcity_be/examples/bcity_be.conf
new file mode 100644 (file)
index 0000000..329f614
--- /dev/null
@@ -0,0 +1,33 @@
+[DB_TERRITORIO]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=territorio
+
+[AUTOZ_TERRITORIO]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz
+
+[DB_ORGANIGRAMMA]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=organigramma
+
+[AUTOZ_ORGANIGRAMMA]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz
+
+[AUTE]
+plugin=/usr/local/lib/libaute/plugins/libaute-db
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=autedb
+
+[AUTOZ]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=autoz
+role_name_prefix=
+resource_name_prefix=
+
+[AUDIT]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=cancelleria;SCHEMA=zakaudit
+
+[DB]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=cancelleria
+
+[MAIL]
+smtp=smtp://smtp.localhost/
+security_method=0
+use_auth=0
+visure_from=me@myhome.com
+visure_to=me@myhome.com
\ No newline at end of file
diff --git a/installers/Makefile.am b/installers/Makefile.am
new file mode 100644 (file)
index 0000000..6ab02d0
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = msys2
\ No newline at end of file
diff --git a/installers/msys2/Makefile.am b/installers/msys2/Makefile.am
new file mode 100644 (file)
index 0000000..75ed5b5
--- /dev/null
@@ -0,0 +1,4 @@
+EXTRA_DIST =  \\r
+             make_installer.sh \\r
+             cancelleria.conf \\r
+             cancelleria.nsi\r
diff --git a/installers/msys2/bcity_be.conf b/installers/msys2/bcity_be.conf
new file mode 100644 (file)
index 0000000..c79af3c
--- /dev/null
@@ -0,0 +1,37 @@
+[DB_TERRITORIO]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=cdu
+
+[AUTOZ_TERRITORIO]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz
+
+[AUTE]
+plugin=/usr/local/lib/libaute/plugins/libaute-db
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=autedb
+
+[AUTOZ]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=autoz
+role_name_prefix=
+resource_name_prefix=titoli_abilitativi_
+
+[AUDIT]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=cdu;SCHEMA=zakaudit
+
+[DB]
+pg_cnc_string=host=localhost dbname=cdu user=postgres password=postgres
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=cdu
+
+[DB_SIT]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=sit
+
+[MAIL]
+smtp=smtp://smtp.localhost/
+security_method=0
+use_auth=0
+visure_from=me@myhome.com
+visure_to=me@myhome.com
+
+[MAPSERVER]
+url=http://10.0.0.90/cgi-bin/mapserv?map=/home/tux/mapserver/ms4w/apps/tutorial/htdocs/example1-1.map
+
+[OPENOFFICE]
+path=/bin
diff --git a/installers/msys2/bcity_be.nsi b/installers/msys2/bcity_be.nsi
new file mode 100644 (file)
index 0000000..73c9cdb
--- /dev/null
@@ -0,0 +1,64 @@
+# define name of installer
+OutFile "cdu_be-${ARCH}-${VERSION}.exe"
+
+XPStyle on
+
+Name "CDU"
+
+RequestExecutionLevel admin
+SetCompressor lzma
+
+# define installation directory
+InstallDir $PROGRAMFILES\sos
+
+LoadLanguageFile "${NSISDIR}\Contrib\Language files\Italian.nlf"
+
+# start default section
+Section
+
+       # set the installation directory as the destination for the following actions
+       SetOutPath $INSTDIR
+
+       File /r tmp\mingw32\*
+
+       # create the uninstaller
+       WriteUninstaller "$INSTDIR\uninstall.exe"
+
+       SetShellVarContext all
+
+       # create a shortcut named "new shortcut" in the start menu programs directory
+       # point the new shortcut at the program uninstaller
+       CreateDirectory "$SMPROGRAMS\CDU"
+       CreateShortCut "$SMPROGRAMS\CDU\CDU.lnk" "$\"$INSTDIR\bin\cdu_be.exe$\"" "$\"$INSTDIR\etc\cdu_be.conf$\""
+       CreateShortCut "$SMPROGRAMS\CDU\Disinstalla.lnk" "$\"$INSTDIR\uninstall.exe$\""
+
+       WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "DisplayName" "CDU"
+       WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "DisplayVersion" "${VERSION}"
+       WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "UninstallString" "$INSTDIR\uninstall.exe"
+       WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "NoModify" 1
+       WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "NoRepair" 1
+
+       CreateShortCut "$DESKTOP\CDU.lnk" "$\"$INSTDIR\bin\cdu_be.exe$\"" "$\"$INSTDIR\etc\cdu_be.conf$\""
+
+SectionEnd
+
+# uninstaller section start
+Section "uninstall"
+
+       SetShellVarContext all
+
+       # remove the link from desktop
+       Delete "$DESKTOP\CDU.lnk"
+
+       # remove the link from the start menu
+       RMDir /r "$SMPROGRAMS\CDU"
+
+       # first, delete the uninstaller
+       Delete "$INSTDIR\uninstall.exe"
+
+       RMDir /r "$INSTDIR"
+
+       DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU"
+
+# uninstaller section end
+SectionEnd
\ No newline at end of file
diff --git a/installers/msys2/make_installer.sh.in b/installers/msys2/make_installer.sh.in
new file mode 100644 (file)
index 0000000..ba93aa6
--- /dev/null
@@ -0,0 +1,176 @@
+#
+# "inspired" by gedit installer (https://git.gnome.org/browse/gedit/tree/win32/make-gedit-installer)
+#
+# thanks to Ignacio Casal Quinteiro
+#
+
+#!/usr/bin/env bash
+
+_thisdir="$(dirname $0)"
+test "${_thisdir}" = "." && _thisdir=${PWD}
+
+if [ "${MSYSTEM}" = "MINGW32" ]; then
+  _arch="i686"
+elif [ "${MSYSTEM}" = "MINGW64" ]; then
+  _arch="x86_64"
+else
+  echo "Architettura non supportata: "${MSYSTEM}
+  exit
+fi
+
+_version=@PACKAGE_VERSION@
+
+_filename_exe=cancelleria-${_arch}-${_version}.exe
+_filename_zip=cancelleria-${_arch}-${_version}.7z
+
+if [ "${_arch}" = "x86_64" ]; then
+  _bitness=64
+else
+  _bitness=32
+fi
+
+declare -a undo_commands
+
+_exitcode=5
+
+exit_with_undo() {
+  for _cmd in ${undo_commands[@]}; do
+    eval "$_cmd"
+  done
+  exit ${_exitcode}
+}
+
+exit_cleanly() {
+  _exitcode=$1; shift;
+  local _message=$1; shift;
+  echo "${_message}"
+  exit_with_undo
+}
+
+trap exit_with_undo 1 2 15
+
+_tmpdir=tmp
+_log=${_tmpdir}/installer.log
+
+_7z=`which 7z`
+if [ ${_7z} = "" ]; then
+       echo "7zip mancante."
+       exit
+fi
+
+create_archive() {
+  # remove .a files not needed for the installer
+  find ${_tmpdir}/mingw${_bitness} -name "*.a" -exec rm -f {} \;
+  # remove unneeded binaries
+  find ${_tmpdir}/mingw${_bitness} -not -name "python*.exe" -not -name "cancelleria*.exe" -not -name "territorio*.exe" -not -name "organigramma*.exe" -name "*.exe" -exec rm -f {} \;
+  # remove python tests
+  find ${_tmpdir}/mingw${_bitness}/lib/python2.7 -type d -name "test*" -exec rm -rf {} \;
+  # remove executables
+  rm -rf ${_tmpdir}/mingw${_bitness}/bin/*-config*
+  rm -rf ${_tmpdir}/mingw${_bitness}/bin/autopoint
+  rm -rf ${_tmpdir}/mingw${_bitness}/bin/bz*
+  rm -rf ${_tmpdir}/mingw${_bitness}/bin/g*
+  rm -rf ${_tmpdir}/mingw${_bitness}/bin/update*
+  rm -rf ${_tmpdir}/mingw${_bitness}/bin/xz*
+  # remove other useless folders
+  rm -rf ${_tmpdir}/mingw${_bitness}/i686-w64-mingw32
+  rm -rf ${_tmpdir}/mingw${_bitness}/include
+  rm -rf ${_tmpdir}/mingw${_bitness}/sbin
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/man
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/readline
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/info
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/aclocal
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/gnome-common
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/glade
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/gettext
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/terminfo
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/tabset
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/pkgconfig
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/bash-completion
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/appdata
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/gdb
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/locale/[abcdfghjklmnoprstuvwxz]*
+  # on windows we show the online help
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/help
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/gtk-doc
+  rm -rf ${_tmpdir}/mingw${_bitness}/share/doc
+  rm -rf ${_tmpdir}/mingw${_bitness}/var
+  # remove on the lib folder
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/locale/[abcdfghjklmnoprstuvwxz]*
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/terminfo
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/pkgconfig
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/peas-demo
+  # rimuovo i provider libgda non necessari
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-firebird-client.dll*
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-ldap.dll*
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-mdb.dll*
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-mysql.dll*
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-oracle.dll*
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-postgresql.dll*
+  rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-web.dll*
+
+  cp -f sos.conf ${_tmpdir}/mingw${_bitness}/etc
+
+  _7z_cmd="${_7z} a ${_thisdir}/${_filename_zip} ./${_tmpdir}/mingw${_bitness}/*"
+  cd ${_thisdir}
+  eval ${_7z_cmd} | tee $_log 2>&1
+  _result=$?
+  if [ "$_result" -eq "0" ]; then
+        echo " archivegen succeeded. Created."
+  else
+        exit_cleanly "3" "archivegen failed. See $_log"
+  fi
+  cd -
+}
+
+create_chroot_system() {
+  [ -d ${_tmpdir} ] && rm -rf ${_tmpdir}
+  mkdir -p "${_tmpdir}"
+  cd "${_tmpdir}"
+
+  mkdir -p var/lib/pacman
+  mkdir -p var/log
+  mkdir -p tmp
+
+  cd -
+
+  pacman -Syu --root "${_tmpdir}"
+  pacman -S filesystem bash pacman --noconfirm --root "${_tmpdir}"
+  _result=$?
+  if [ "$_result" -ne "0" ]; then
+    exit_cleanly "1" "failed to create base data via command 'pacman -S filesystem bash pacman --noconfirm --root ${_tmpdir}'"
+  fi
+}
+
+install_packages() {
+  pacman -S mingw-w64-${_arch}-librsvg mingw-w64-${_arch}-python2 mingw-w64-${_arch}-libautesmbldap mingw-w64-${_arch}-cancelleria mingw-w64-${_arch}-adwaita-icon-theme mingw-w64-${_arch}-libreptool --noconfirm --root "${_tmpdir}"
+  _result=$?
+  if [ "$_result" -ne "0" ]; then
+    exit_cleanly "1" "failed to create tmpdir via command 'pacman -S sos --noconfirm --root ${_tmpdir}'"
+  fi
+}
+
+echo "Creating chroot system ${_tmpdir}"
+create_chroot_system
+
+echo "Installing packages into ${_tmpdir}"
+install_packages
+
+echo "Creating archive $_filename_zip"
+[ -f $_filename_zip ] && rm -f $_filename_zip
+create_archive
+
+echo "Creating installer $_filename_exe"
+[ -f $_filename_exe ] && rm -f $_filename_exe
+
+# NSIS è solo a 32bit
+if [ -d "/c/Program Files (x86)" ]; then
+       _programfiles="/c/Program Files (x86)"
+else
+       _programfiles="/c/Program Files"
+fi
+"${_programfiles}/NSIS/makensis.exe" //DARCH=${_arch} //DVERSION=${_version} cancelleria.nsi
+
+[ -d ${_tmpdir} ] && rm -rf ${_tmpdir}
+
+exit_cleanly "0" "All done."
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644 (file)
index 0000000..c9ff3cd
--- /dev/null
@@ -0,0 +1,36 @@
+guidir = $(datadir)/$(PACKAGE)/gui
+formdir = $(datadir)/$(PACKAGE)/form
+imagesdir = $(datadir)/$(PACKAGE)/images
+queryeditordir = $(datadir)/$(PACKAGE)/query_editor
+
+AM_CPPFLAGS = $(BCITYBE_CFLAGS) \
+              -DGUIDIR=\""$(guidir)"\" \
+              -DFORMDIR=\""$(formdir)"\" \
+              -DIMAGESDIR=\""$(imagesdir)"\" \
+              -DQUERYEDITORDIR=\""$(queryeditordir)"\" \
+              -DLOCALEDIR=\"$(localedir)\" \
+              -DSOLIPA_FOUND=1
+
+LIBS = $(BCITYBE_LIBS) \
+       -export-dynamic
+
+.rc.o:
+       $(WINDRES) $^ -o $@
+
+resources.o: resources.rc
+       $(WINDRES) $^ -o $@
+
+bin_PROGRAMS = bcity_be
+
+bcity_be_SOURCES = \
+                   commons.h \
+                   main.c
+
+if PLATFORM_WIN32
+EXTRALDFLAGS=-mconsole -mwindows
+bcity_be_SOURCES += resources.rc
+else
+EXTRALDFLAGS=
+endif
+
+bcity_be_LDFLAGS = $(EXTRALDFLAGS)
diff --git a/src/commons.h b/src/commons.h
new file mode 100644 (file)
index 0000000..87e6b06
--- /dev/null
@@ -0,0 +1,77 @@
+/*
+ * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#ifndef __BCITYBE_COMMONS_H__
+#define __BCITYBE_COMMONS_H__
+
+
+#include <gtk/gtk.h>
+
+#include <libsoup/soup.h>
+
+#include <libgdaex/libgdaex.h>
+#include <libautoz/autoz.h>
+#include <libautoz/role_interface.h>
+#include <libsolipa/libsolipa.h>
+
+#include <libterritorio/commons.h>
+#include <liborganigramma/commons.h>
+
+typedef struct
+       {
+               gchar *guidir;
+               gchar *formdir;
+               gchar *imagesdir;
+               gchar *localedir;
+               gchar *queryeditordir;
+
+               GtkBuilder *gtkbuilder;
+
+               GdaEx *gdaex;
+               gulong hid_main_on_before_execute;
+               gulong hid_main_on_after_execute;
+
+               const gchar *guifile;
+
+               gchar *utente;
+               gchar *password;
+
+               Autoz *autoz;
+               AutozIRole *role_utente;
+
+               Solipa *solipa;
+
+               TerritorioCommons *territorio_commons;
+               OrganigrammaCommons *organigramma_commons;
+
+               gchar *smtp_uri;
+               gchar *visure_from;
+               gchar *visure_to;
+               CamelNetworkSecurityMethod visure_security_method;
+               gboolean smtp_use_auth;
+               gchar *visure_from_password;
+
+               SoupSession *soup_session;
+       } BcityBECommons;
+
+
+#endif /* __BCITYBE_COMMONS_H__ */
diff --git a/src/main.c b/src/main.c
new file mode 100644 (file)
index 0000000..e361004
--- /dev/null
@@ -0,0 +1,801 @@
+/*
+ * Copyright (C) 2015 Andrea Zagli <a.zagli@comune.scandicci.fi.it>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include <glib/gi18n-lib.h>
+#include <gdk-pixbuf/gdk-pixbuf.h>
+#include <gtk/gtk.h>
+
+#ifdef G_OS_WIN32
+       #include <windows.h>
+#endif
+
+#include <glib/gstdio.h>
+
+#include <libaute.h>
+#include <libzakaudit.h>
+
+#include <libzakutils/libzakutils.h>
+
+#include "commons.h"
+#include "articoli.h"
+#include "categoriearticolo.h"
+#include "fornitori.h"
+#include "lstiva.h"
+#include "ordini.h"
+#include "tipiquantita.h"
+#include "tipirecapito.h"
+#include "uffici.h"
+
+static CancelleriaCommons *commons;
+
+GKeyFile *config;
+
+ZakAudit *audit;
+
+GtkWidget *w;
+GtkWidget *vbx_body;
+GObject *vbx_body_obj;
+GtkWidget *vbx_body_child;
+
+GdkPixbuf *pxb_icon;
+
+static gboolean
+main_gestione_permessi ()
+{
+       if (!autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "cancelleria_rw"), FALSE)
+           && !autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "cancelleria_ro"), FALSE))
+               {
+                       solipa_message_dialog (w,
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Non si è autorizzati all'utilizzo di questo programma.");
+                       return FALSE;
+               }
+
+       return TRUE;
+}
+
+static void
+main_on_before_execute (gpointer instance, gpointer gda_stmt, gpointer user_data)
+{
+       GdaStatement *stmt = (GdaStatement *)gda_stmt;
+
+       if (gda_statement_get_statement_type (stmt) == GDA_SQL_STATEMENT_UPDATE)
+               {
+                       zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_BEFORE_UPDATE, commons->utente, "cancelleria", stmt);
+               }
+       else if (gda_statement_get_statement_type (stmt) == GDA_SQL_STATEMENT_DELETE)
+               {
+                       zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_DELETE, commons->utente, "cancelleria", stmt);
+               }
+}
+
+static void
+main_on_after_execute (gpointer instance, gpointer gda_stmt, gpointer user_data)
+{
+       GdaStatement *stmt = (GdaStatement *)gda_stmt;
+
+       if (gda_statement_get_statement_type (stmt) == GDA_SQL_STATEMENT_INSERT)
+               {
+                       zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_INSERT, commons->utente, "cancelleria", stmt);
+               }
+       else if (gda_statement_get_statement_type (stmt) == GDA_SQL_STATEMENT_UPDATE)
+               {
+                       zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_AFTER_UPDATE, commons->utente, "cancelleria", stmt);
+               }
+}
+
+static void
+main_set_vbx_body_child (GObject *cur_obj, GtkWidget *child)
+{
+       if (G_IS_OBJECT (vbx_body_obj))
+               {
+                       g_object_unref (vbx_body_obj);
+               }
+
+       if (GTK_IS_WIDGET (vbx_body_child))
+               {
+                       gtk_container_remove (GTK_CONTAINER (vbx_body), vbx_body_child);
+                       gtk_widget_destroy (vbx_body_child);
+               }
+
+       vbx_body_obj = cur_obj;
+       vbx_body_child = child;
+       gtk_box_pack_start (GTK_BOX (vbx_body), vbx_body_child, TRUE, TRUE, 0);
+}
+
+G_MODULE_EXPORT void
+on_mnu_tabelle_lst_iva_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkWidget *vbx;
+
+       LstIva *a = lst_iva_new (commons, FALSE);
+
+       vbx = lst_iva_get_widget (a);
+
+       main_set_vbx_body_child (G_OBJECT (a), vbx);
+}
+
+G_MODULE_EXPORT void
+on_mnu_tabelle_tipi_recapito_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkWidget *vbx;
+
+       TipiRecapito *a = tipi_recapito_new (commons, FALSE);
+
+       vbx = tipi_recapito_get_widget (a);
+
+       main_set_vbx_body_child (G_OBJECT (a), vbx);
+}
+
+G_MODULE_EXPORT void
+on_mnu_tabelle_fornitori_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkWidget *vbx;
+
+       Fornitori *a = fornitori_new (commons, FALSE);
+
+       vbx = fornitori_get_widget (a);
+
+       main_set_vbx_body_child (G_OBJECT (a), vbx);
+}
+
+G_MODULE_EXPORT void
+on_mnu_tabelle_categorie_articolo_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkWidget *vbx;
+
+       CategorieArticolo *a = categorie_articolo_new (commons, FALSE);
+
+       vbx = categorie_articolo_get_widget (a);
+
+       main_set_vbx_body_child (G_OBJECT (a), vbx);
+}
+
+G_MODULE_EXPORT void
+on_mnu_tabelle_articoli_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkWidget *vbx;
+
+       Articoli *a = articoli_new (commons, FALSE);
+
+       vbx = articoli_get_widget (a);
+
+       main_set_vbx_body_child (G_OBJECT (a), vbx);
+}
+
+G_MODULE_EXPORT void
+on_mnu_tabelle_tipi_quantita_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkWidget *vbx;
+
+       TipiQuantita *a = tipi_quantita_new (commons, FALSE);
+
+       vbx = tipi_quantita_get_widget (a);
+
+       main_set_vbx_body_child (G_OBJECT (a), vbx);
+}
+
+G_MODULE_EXPORT void
+on_mnu_tabelle_uffici_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkWidget *vbx;
+
+       Uffici *a = uffici_new (commons, FALSE);
+
+       vbx = uffici_get_widget (a);
+
+       main_set_vbx_body_child (G_OBJECT (a), vbx);
+}
+
+G_MODULE_EXPORT void
+on_mnu_view_ordini_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkWidget *vbx;
+
+       Ordini *a = ordini_new (commons, FALSE);
+
+       vbx = ordini_get_widget (a);
+
+       main_set_vbx_body_child (G_OBJECT (a), vbx);
+}
+
+G_MODULE_EXPORT void
+on_mnu_help_about_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GError *error;
+       GtkWidget *diag;
+
+       error = NULL;
+       gtk_builder_add_objects_from_file (commons->gtkbuilder, commons->guifile,
+                                          g_strsplit_set ("dlg_about", "|", -1),
+                                          &error);
+       if (error != NULL)
+               {
+                       g_error ("Errore: %s.", error->message);
+               }
+
+       diag = GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "dlg_about"));
+
+       if (pxb_icon == NULL)
+               {
+                       pxb_icon = gdk_pixbuf_new_from_file_at_size (g_build_filename (commons->imagesdir, PACKAGE ".ico", NULL),
+                                                                    64, 64,
+                                                                    NULL);
+               }
+       if (pxb_icon != NULL)
+               {
+                       gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG (diag), pxb_icon);
+               }
+
+       gtk_dialog_run (GTK_DIALOG (diag));
+       gtk_widget_destroy (diag);
+}
+
+int
+main (int argc, char *argv[])
+{
+       GError *error;
+
+       GdaConnection *gdacon;
+       GOptionContext *context;
+
+       gchar *password;
+
+       Aute *aute;
+       gchar **aute_params;
+       gsize n_aute_params;
+       GSList *sl_aute_params;
+
+       gchar *cnc_string;
+
+       gchar *security_method;
+
+       gchar *sql;
+       GdaDataModel *dm;
+
+       gint i;
+
+#ifdef G_OS_WIN32
+       if (g_getenv ("LANG") == NULL
+           || g_strcmp0 (g_getenv ("LANG"), "IT") == 0)
+               {
+                       /* in windows >= vista non legge correttamente la lingua del sistema */
+                       g_setenv ("LANG", "it_IT", TRUE);
+               }
+#endif
+
+       gtk_init (&argc, &argv);
+
+       gda_init ();
+
+
+       /* inizializzazione commons */
+       commons = (CancelleriaCommons *)g_new0 (CancelleriaCommons, 1);
+
+       commons->password = NULL;
+
+       commons->territorio_commons = (TerritorioCommons *)g_new0 (TerritorioCommons, 1);
+       commons->organigramma_commons = (OrganigrammaCommons *)g_new0 (OrganigrammaCommons, 1);
+
+       commons->organigramma_commons->territorio_commons = commons->territorio_commons;
+
+       commons->soup_session = NULL;
+
+       /* leggo la configurazione dal file */
+       if (argc == 1)
+               {
+                       g_error ("Occorre passare a riga di comando il file di configurazione.");
+                       return 0;
+               }
+
+       error = NULL;
+       config = g_key_file_new ();
+       if (!g_key_file_load_from_file (config, argv[1], G_KEY_FILE_NONE, &error))
+               {
+                       g_error ("Impossibile caricare il file di configurazione specificato: %s\n%s", argv[1],
+                                error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       /* leggo i parametri per l'autenticazione */
+       error = NULL;
+       aute_params = g_key_file_get_keys (config, "AUTE", &n_aute_params, &error);
+       if (aute_params == NULL)
+               {
+                       g_error ("Impossibile leggere la configurazione per il sistema di autenticazione.");
+                       return 0;
+               }
+
+       sl_aute_params = NULL;
+       for (i = 0; i < n_aute_params; i++)
+               {
+                       error = NULL;
+                       sl_aute_params = g_slist_append (sl_aute_params, g_key_file_get_string (config, "AUTE", aute_params[i], &error));
+               }
+
+       g_strfreev (aute_params);
+
+       /* autenticazione */
+       aute = aute_new ();
+       aute_set_config (aute, sl_aute_params);
+
+       password = NULL;
+       while (TRUE)
+               {
+                       commons->utente = aute_autentica_get_password (aute, &password);
+
+                       if (commons->utente == NULL)
+                               {
+                                       g_warning ("Nome utente o password non validi.");
+                               }
+                       else if (g_strcmp0 (commons->utente, "") == 0)
+                               {
+                                       return 0;
+                               }
+                       else
+                               {
+                                       break;
+                               }
+               }
+
+       commons->password = g_strdup (password);
+       g_free (password);
+       commons->territorio_commons->utente = g_strdup (commons->utente);
+       commons->organigramma_commons->utente = g_strdup (commons->utente);
+
+       g_object_unref (aute);
+
+       /* leggo i parametri per libautoz */
+       error = NULL;
+       cnc_string = g_key_file_get_value (config, "AUTOZ", "cnc_string", &error);
+       if (cnc_string == NULL || error != NULL)
+               {
+                       g_warning ("Impossibile leggere la stringa di connessione per libautoz dal file di configurazione: %s.",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       error = NULL;
+       gdacon = gda_connection_open_from_string (NULL, cnc_string, NULL, 0, &error);
+       if (gdacon == NULL || error != NULL)
+               {
+                       g_warning ("Impossibile creare la connessione al db per libautoz: %s.",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       commons->autoz = autoz_new ();
+       if (commons->autoz == NULL)
+               {
+                       g_warning ("Impossibile creare l'oggetto per libautoz.");
+                       return 0;
+               }
+       if (!autoz_load_from_db (commons->autoz, gdacon, NULL, TRUE))
+               {
+                       g_warning ("Impossibile caricare la configurazione per libautoz dal db.");
+                       return 0;
+               }
+
+       commons->role_utente = autoz_get_role_from_id (commons->autoz, commons->utente);
+       if (commons->role_utente == NULL)
+               {
+                       g_warning ("Utente «%s» non trovato nella configurazione di libautoz.", commons->utente);
+                       return 0;
+               }
+
+       autoz_set_role_name_prefix (commons->autoz, g_key_file_get_value (config, "AUTOZ", "role_name_prefix", NULL));
+       autoz_set_resource_name_prefix (commons->autoz, g_key_file_get_value (config, "AUTOZ", "resource_name_prefix", NULL));
+
+       /* leggo i parametri per libzakaudit */
+       error = NULL;
+       cnc_string = g_key_file_get_value (config, "AUDIT", "cnc_string", &error);
+       if (cnc_string == NULL)
+               {
+                       g_warning ("Impossibile leggere la stringa di connessione per libaudit dal file di configurazione: %s.\n",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       audit = zak_audit_new_from_string (cnc_string);
+       if (audit == NULL)
+               {
+                       g_warning ("Errore nella creazione dell'oggetto per libaudit.\n");
+                       return 0;
+               }
+
+       commons->gtkbuilder = gtk_builder_new ();
+       commons->territorio_commons->gtkbuilder = gtk_builder_new ();
+       commons->organigramma_commons->gtkbuilder = gtk_builder_new ();
+
+#ifdef G_OS_WIN32
+
+       gchar *moddir;
+       gchar *p;
+
+       moddir = g_win32_get_package_installation_directory_of_module (NULL);
+
+       p = g_strrstr (moddir, g_strdup_printf ("%c", G_DIR_SEPARATOR));
+       if (p != NULL
+           && (g_ascii_strcasecmp (p + 1, "src") == 0
+                       || g_ascii_strcasecmp (p + 1, ".libs") == 0))
+               {
+                       commons->guidir = g_strdup (GUIDIR);
+                       commons->formdir = g_strdup (FORMDIR);
+                       commons->imagesdir = g_strdup (IMAGESDIR);
+                       commons->localedir = g_strdup (LOCALEDIR);
+                       commons->queryeditordir = g_strdup (QUERYEDITORDIR);
+               }
+       else
+               {
+#undef GUIDIR
+#undef FORMDIR
+#undef IMAGESDIR
+#undef MODELLIDIR
+#undef LOCALEDIR
+#undef QUERYEDITORDIR
+
+                       commons->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL);
+                       commons->formdir = g_build_filename (moddir, "share", PACKAGE, "form", NULL);
+                       commons->imagesdir = g_build_filename (moddir, "share", PACKAGE, "images", NULL);
+                       commons->localedir = g_build_filename (moddir, "share", PACKAGE, "images", NULL);
+                       commons->queryeditordir = g_build_filename (moddir, "share", PACKAGE, "query_editor", NULL);
+               }
+
+       g_free (moddir);
+
+       moddir = g_win32_get_package_installation_directory_of_module (territorio_get_module_handle ());
+       commons->territorio_commons->guidir = g_build_filename (moddir, "share", "territorio", "gui", NULL);
+       commons->territorio_commons->formdir = g_build_filename (moddir, "share", "territorio", "form", NULL);
+
+       moddir = g_win32_get_package_installation_directory_of_module (organigramma_get_module_handle ());
+       commons->organigramma_commons->guidir = g_build_filename (moddir, "share", "organigramma", "gui", NULL);
+       commons->organigramma_commons->formdir = g_build_filename (moddir, "share", "organigramma", "form", NULL);
+
+       g_free (moddir);
+
+#else
+
+       commons->guidir = g_strdup (GUIDIR);
+       commons->formdir = g_strdup (FORMDIR);
+       commons->imagesdir = g_strdup (IMAGESDIR);
+       commons->localedir = g_strdup (LOCALEDIR);
+       commons->queryeditordir = g_strdup (QUERYEDITORDIR);
+       commons->territorio_commons->guidir = g_build_filename ("/usr", "local", "share", "territorio", "gui", NULL);
+       commons->territorio_commons->formdir = g_build_filename ("/usr", "local", "share", "territorio", "form", NULL);
+       commons->organigramma_commons->guidir = g_build_filename ("/usr", "local", "share", "organigramma", "gui", NULL);
+       commons->organigramma_commons->formdir = g_build_filename ("/usr", "local", "share", "organigramma", "form", NULL);
+
+#endif
+
+       commons->guifile = g_build_filename (commons->guidir, "cancelleria.ui", NULL);
+       commons->territorio_commons->guifile = g_build_filename (commons->territorio_commons->guidir, "territorio.gui", NULL);
+       commons->organigramma_commons->guifile = g_build_filename (commons->organigramma_commons->guidir, "organigramma.gui", NULL);
+
+       bindtextdomain (GETTEXT_PACKAGE, commons->localedir);
+       textdomain (GETTEXT_PACKAGE);
+       bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+
+       /* leggo la stringa di connessione al db */
+       error = NULL;
+       cnc_string = g_key_file_get_value (config, "DB", "cnc_string", &error);
+       if (cnc_string == NULL)
+               {
+                       g_warning ("Impossibile leggere la stringa di connessione dal file di configurazione: %s.",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio.");
+                       return 0;
+               }
+
+       commons->gdaex = gdaex_new_from_string (cnc_string);
+       if (commons->gdaex == NULL)
+               {
+                       g_error ("Errore nella connessione al database: %s", cnc_string);
+               }
+
+       commons->hid_main_on_before_execute = g_signal_connect (commons->gdaex, "before-execute", G_CALLBACK (main_on_before_execute), NULL);
+       commons->hid_main_on_after_execute = g_signal_connect (commons->gdaex, "after-execute", G_CALLBACK (main_on_after_execute), NULL);
+
+       /* controllo la versione del database */
+#define DB_VERSION "0.0.1"
+
+       sql = g_strdup_printf ("SELECT * FROM configurazioni WHERE id = 1");
+       dm = gdaex_query (commons->gdaex, sql);
+       g_free (sql);
+       if (dm == NULL || gda_data_model_get_n_rows (dm) < 1)
+               {
+                       g_warning ("La versione del database non è quella necessaria.");
+                       return 0;
+               }
+       if (dm != NULL)
+               {
+                       int cmp;
+                       guint part;
+
+                       cmp = zak_utils_compare_version (gdaex_data_model_get_field_value_stringify_at (dm, 0, "db_version"), DB_VERSION, NULL, &part);
+                       if (cmp < 0)
+                               {
+                                       g_warning ("La versione del database non è quella necessaria.");
+                                       return 0;
+                               }
+                       else if (cmp > 0)
+                               {
+                                       /* potrebbe adare bene anche se la versione del db è maggiore rispetto a quella del programma */
+                                       if (part < 2)
+                                               {
+                                                       g_warning ("La versione del database non è quella necessaria.");
+                                                       return 0;
+                                               }
+                               }
+
+                       g_object_unref (dm);
+               }
+
+       /* leggo i parametri a riga di comando di libgdaex */
+       error = NULL;
+       context = g_option_context_new ("Cancelleria");
+       g_option_context_add_group (context, gdaex_get_option_group (commons->gdaex));
+       if (!g_option_context_parse (context, &argc, &argv, &error))
+               {
+                       g_warning ("Errore nell'analisi della riga comandi: %s.",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       /* inizializzo solipa */
+       commons->solipa = solipa_new ();
+
+       /* leggo la stringa di connessione al db territorio */
+       error = NULL;
+       cnc_string = g_key_file_get_value (config, "DB_TERRITORIO", "cnc_string", &error);
+       if (cnc_string == NULL)
+               {
+                       g_error ("Impossibile leggere la stringa di connessione dal file di configurazione: %s.",
+                                error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+               }
+
+       commons->territorio_commons->gdaex = gdaex_new_from_string (cnc_string);
+       if (commons->territorio_commons->gdaex == NULL)
+               {
+                       g_error ("Errore nella connessione al database: %s", cnc_string);
+               }
+
+       /* leggo i parametri per libautoz di territorio */
+       error = NULL;
+       cnc_string = g_key_file_get_value (config, "AUTOZ_TERRITORIO", "cnc_string", &error);
+       if (cnc_string == NULL || error != NULL)
+               {
+                       g_error ("Impossibile leggere la stringa di connessione per libautoz dal file di configurazione: %s.",
+                                error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       error = NULL;
+       gdacon = gda_connection_open_from_string (NULL, cnc_string, NULL, 0, &error);
+       if (gdacon == NULL || error != NULL)
+               {
+                       g_error ("Impossibile creare la connessione al db per libautoz di territorio: %s.",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       commons->territorio_commons->autoz = autoz_new ();
+       if (commons->territorio_commons->autoz == NULL)
+               {
+                       g_warning ("Impossibile creare l'oggetto per libautoz.");
+                       return 0;
+               }
+       if (!autoz_load_from_db (commons->territorio_commons->autoz, gdacon, NULL, TRUE))
+               {
+                       g_warning ("Impossibile caricare la configurazione per libautoz dal db.");
+                       return 0;
+               }
+
+       commons->territorio_commons->role_utente = autoz_get_role_from_id (commons->territorio_commons->autoz, commons->territorio_commons->utente);
+       if (commons->territorio_commons->role_utente == NULL)
+               {
+                       g_warning ("Utente «%s» non trovato nella configurazione di libautoz.", commons->territorio_commons->utente);
+                       return 0;
+               }
+
+       /* leggo la stringa di connessione al db organigramma */
+       error = NULL;
+       cnc_string = g_key_file_get_value (config, "DB_ORGANIGRAMMA", "cnc_string", &error);
+       if (cnc_string == NULL)
+               {
+                       if (error != NULL)
+                               {
+                                       g_error ("Impossibile leggere la stringa di connessione dal file di configurazione: %s", error->message);
+                               }
+                       else
+                               {
+                                       g_error ("Impossibile leggere la stringa di connessione dal file di configurazione.");
+                               }
+               }
+
+       commons->organigramma_commons->gdaex = gdaex_new_from_string (cnc_string);
+       if (commons->organigramma_commons->gdaex == NULL)
+               {
+                       g_error ("Errore nella connessione al database: %s", cnc_string);
+               }
+
+       /* leggo i parametri per libautoz di organigramma */
+       error = NULL;
+       cnc_string = g_key_file_get_value (config, "AUTOZ_ORGANIGRAMMA", "cnc_string", &error);
+       if (cnc_string == NULL)
+               {
+                       g_warning ("Impossibile leggere la stringa di connessione per libautoz dal file di configurazione: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       error = NULL;
+       gdacon = gda_connection_open_from_string (NULL, cnc_string, NULL, 0, &error);
+       if (gdacon == NULL)
+               {
+                       g_warning ("Impossibile creare la connessione al db per libautoz di organigramma: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       commons->organigramma_commons->autoz = autoz_new ();
+       if (commons->organigramma_commons->autoz == NULL)
+               {
+                       g_warning ("Impossibile creare l'oggetto per libautoz.");
+                       return 0;
+               }
+       if (!autoz_load_from_db (commons->organigramma_commons->autoz, gdacon, NULL, TRUE))
+               {
+                       g_warning ("Impossibile caricare la configurazione per libautoz dal db.");
+                       return 0;
+               }
+
+       commons->organigramma_commons->role_utente = autoz_get_role_from_id (commons->organigramma_commons->autoz, commons->organigramma_commons->utente);
+       if (commons->organigramma_commons->role_utente == NULL)
+               {
+                       g_warning ("Utente \"%s\" non trovato nell configurazione di libautoz.", commons->organigramma_commons->utente);
+                       return 0;
+               }
+
+       /* leggo i parametri per l'invio delle mail */
+       error = NULL;
+       commons->smtp_uri = g_key_file_get_value (config, "MAIL", "smtp", &error);
+       if (commons->smtp_uri == NULL)
+               {
+                       g_warning ("Impossibile leggere l'indirizzo del server smtp: %s.\n",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+               }
+
+       error = NULL;
+       security_method = g_key_file_get_value (config, "MAIL", "security_method", &error);
+       if (security_method == NULL)
+               {
+                       commons->visure_security_method = CAMEL_NETWORK_SECURITY_METHOD_NONE;
+               }
+       else
+               {
+                       commons->visure_security_method = strtol (security_method, NULL, 10);
+               }
+
+       error = NULL;
+       security_method = g_key_file_get_value (config, "MAIL", "use_auth", &error);
+       if (security_method == NULL)
+               {
+                       commons->smtp_use_auth = FALSE;
+               }
+       else
+               {
+                       commons->smtp_use_auth = zak_utils_string_to_boolean (security_method);
+               }
+
+       error = NULL;
+       commons->visure_from = g_key_file_get_value (config, "MAIL", "visure_from", &error);
+       if (commons->visure_from == NULL)
+               {
+                       g_warning ("Impossibile leggere l'indirizzo del mittente per le email delle visure: %s.\n",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+               }
+
+       error = NULL;
+       commons->visure_to = g_key_file_get_value (config, "MAIL", "visure_to", &error);
+       if (commons->visure_to == NULL)
+               {
+                       g_warning ("Impossibile leggere l'indirizzo del destinatario per le email delle visure: %s.\n",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+               }
+
+       /* GUI */
+       error = NULL;
+       gtk_builder_add_objects_from_file (commons->gtkbuilder, commons->guifile,
+                                          g_strsplit_set ("w_main", "|", -1),
+                                          &error);
+       if (error != NULL)
+               {
+                       g_warning ("Errore: %s\n", error->message);
+                       return 0;
+               }
+
+       gtk_builder_connect_signals (commons->gtkbuilder, NULL);
+
+       w = GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "w_main"));
+
+       vbx_body = GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "vbx_body"));
+       vbx_body_child = NULL;
+
+       /* carico l'icona */
+       gtk_window_set_default_icon_from_file (g_build_filename (commons->imagesdir, PACKAGE ".ico", NULL),
+                                              NULL);
+
+       gtk_widget_show (w);
+
+       if (main_gestione_permessi ())
+               {
+                       gtk_main ();
+               }
+
+       g_object_unref (commons->solipa);
+
+       /* TODO
+        * mettere una finestra con barra di avanzamento
+        */
+       /* elimino i file temporanei */
+       const gchar *tmp_dir_path;
+       const gchar *filename;
+       gchar *filename_full;
+       GDir *tmp_dir;
+
+       error = NULL;
+       tmp_dir_path = g_get_tmp_dir ();
+       tmp_dir = g_dir_open (tmp_dir_path, 0, &error);
+       if (tmp_dir == NULL || error != NULL)
+               {
+                       g_warning ("Impossibile eliminare i file temporanei: %s.",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+               }
+       else
+               {
+                       g_dir_rewind (tmp_dir);
+                       while ((filename = g_dir_read_name (tmp_dir)) != NULL)
+                               {
+                                       filename_full = g_build_filename (tmp_dir_path, filename, NULL);
+                                       if (!g_file_test (filename_full, G_FILE_TEST_IS_DIR)
+                                           && g_strncasecmp (filename, "cancelleria-", 7) == 0)
+                                               {
+                                                       g_unlink (g_build_filename (tmp_dir_path, filename, NULL));
+                                               }
+                               }
+               }
+
+       if (tmp_dir != NULL)
+               {
+                       g_dir_close (tmp_dir);
+               }
+       g_free (tmp_dir);
+
+       return 0;
+}
diff --git a/src/resources.rc.in b/src/resources.rc.in
new file mode 100644 (file)
index 0000000..448544c
--- /dev/null
@@ -0,0 +1,25 @@
+AppIcon ICON "@top_srcdir@\\data\\bcity_be\\images\\bcity_be.ico"
+
+1 VERSIONINFO
+FILEVERSION     @V_MAJOR@,@V_MINOR@,@V_MICRO@,0
+PRODUCTVERSION  @V_MAJOR@,@V_MINOR@,@V_MICRO@,0
+BEGIN
+  BLOCK "StringFileInfo"
+  BEGIN
+    BLOCK "040904E4"
+    BEGIN
+      VALUE "CompanyName", "Andrea Zagli"
+      VALUE "FileDescription", "B-City"
+      VALUE "FileVersion", "@V_MAJOR@.@V_MINOR@.@V_MICRO@"
+      VALUE "InternalName", "bcity_be"
+      VALUE "LegalCopyright", "Copyright 2016 Andrea Zagli <azagli@libero.it>"
+      VALUE "OriginalFilename", "bcity_be.exe"
+      VALUE "ProductName", "B-City"
+      VALUE "ProductVersion", "@V_MAJOR@.@V_MINOR@.@V_MICRO@"
+    END
+  END
+  BLOCK "VarFileInfo"
+  BEGIN
+    VALUE "Translation", 0x0410, 1252
+  END
+END