gnucash master: Multiple changes pushed

Geert Janssens gjanssens at code.gnucash.org
Fri Feb 28 13:31:58 EST 2020


Updated	 via  https://github.com/Gnucash/gnucash/commit/206cb702 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/5e131644 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/90345096 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/b9d625d2 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/feee495f (commit)
	 via  https://github.com/Gnucash/gnucash/commit/9df290da (commit)
	 via  https://github.com/Gnucash/gnucash/commit/d4f024ef (commit)
	 via  https://github.com/Gnucash/gnucash/commit/768b25df (commit)
	 via  https://github.com/Gnucash/gnucash/commit/6add6b1f (commit)
	 via  https://github.com/Gnucash/gnucash/commit/0e6c9e21 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/0964b31c (commit)
	 via  https://github.com/Gnucash/gnucash/commit/427368ea (commit)
	 via  https://github.com/Gnucash/gnucash/commit/dd181289 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/321a74c8 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/df4b728d (commit)
	 via  https://github.com/Gnucash/gnucash/commit/4510a52f (commit)
	from  https://github.com/Gnucash/gnucash/commit/2b70b1c1 (commit)



commit 206cb7029bed29296a0b157b4992bc59da3a5c2b
Author: Geert Janssens <geert at kobaltwit.be>
Date:   Fri Feb 28 19:31:49 2020 +0100

    Build order - reports.scm depends on 4 standard reports and other standard reports depend on reports.scm
    
    So we have to split up the standard reports target in one that needs to be built
    before reports.go and one that is built after reports.go.

diff --git a/gnucash/report/reports/CMakeLists.txt b/gnucash/report/reports/CMakeLists.txt
index 75653419e..b96a59e40 100644
--- a/gnucash/report/reports/CMakeLists.txt
+++ b/gnucash/report/reports/CMakeLists.txt
@@ -6,6 +6,19 @@ set (reports_common_SCHEME
   aging.scm
 )
 
+# The 'with exposed generator' reports are standard reports that can
+# be created with a special generator function
+# This function is exposed via reports.scm.
+# As such these reports should be built before reports.scm
+# However all other reports need to be built after reports.scm
+# as they in turn may consume these generators.
+set (reports_standard_with_exposed_generator_SCHEME
+    standard/register.scm
+    standard/owner-report.scm
+    standard/payables.scm
+    standard/receivables.scm
+)
+
 set (reports_standard_SCHEME
     standard/account-piecharts.scm
     standard/account-summary.scm
@@ -33,7 +46,6 @@ set (reports_standard_SCHEME
     standard/portfolio.scm
     standard/price-scatter.scm
     standard/reconcile-report.scm
-    standard/register.scm
     standard/transaction.scm
     standard/trial-balance.scm
     standard/view-column.scm
@@ -41,9 +53,6 @@ set (reports_standard_SCHEME
     standard/receipt.scm
     standard/invoice.scm
     standard/job-report.scm
-    standard/owner-report.scm
-    standard/payables.scm
-    standard/receivables.scm
     standard/balsheet-eg.scm
 )
 
@@ -77,40 +86,33 @@ set(scm_rpts_GUILE_DEPENDS
   scm-core-utils
   scm-engine
   scm-gnome-utils
+  scm-app-utils
+  scm-gnc-module
   scm-report
   )
 
 set(scm_rpt_example_GUILE_DEPENDS
-  scm-gnc-html
-  scm-app-utils
-  scm-core-utils
-  scm-gnc-module
-  scm-engine
+  ${scm_rpts_GUILE_DEPENDS}
   scm-reports-example-links
-  scm-gnome-utils
-  scm-report
   )
 
 set(scm_rpt_locale_specific_GUILE_DEPENDS
-  scm-gnc-html
-  scm-core-utils
-  scm-gnc-module
-  scm-engine
+  ${scm_rpts_GUILE_DEPENDS}
   scm-test-core
   scm-locale-tax
-  scm-report
-  scm-gnome-utils
   )
 
-set(scm_rpt_std_GUILE_DEPENDS
+set(scm_rpt_std_w_exposed_generator_GUILE_DEPENDS
   ${scm_rpts_GUILE_DEPENDS}
-  scm-app-utils
-  scm-gnc-module
-  scm-rpt-reports
   scm-reports-common-links
   scm-reports-standard-links
   )
 
+set(scm_rpt_std_GUILE_DEPENDS
+  ${scm_rpt_std_w_exposed_generator_GUILE_DEPENDS}
+  scm-rpt-reports
+  )
+
 gnc_add_scheme_targets(scm-reports-common
   "${reports_common_SCHEME}"
   "gnucash/reports"
@@ -118,10 +120,17 @@ gnc_add_scheme_targets(scm-reports-common
   TRUE
 )
 
+gnc_add_scheme_targets(scm-reports-standard-with-exposed-generator
+  "${reports_standard_with_exposed_generator_SCHEME}"
+  "gnucash/reports/standard"
+  "${scm_rpt_std_w_exposed_generator_GUILE_DEPENDS}"
+  TRUE
+)
+
 gnc_add_scheme_targets(scm-rpt-reports
   "${reports_SCHEME}"
   "gnucash"
-  "${scm_rpts_GUILE_DEPENDS}"
+  "scm-reports-standard-with-exposed-generator;${scm_rpts_GUILE_DEPENDS}"
   TRUE
 )
 
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 4fa177a6c..1c78e5ced 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -31,6 +31,7 @@ gnucash/gnome/assistant-stock-split.c
 gnucash/gnome/business-gnome-utils.c
 gnucash/gnome/business-options-gnome.c
 gnucash/gnome/business-urls.c
+gnucash/gnome/deprecated/report-gnome.scm
 gnucash/gnome/dialog-billterms.c
 gnucash/gnome/dialog-choose-owner.c
 gnucash/gnome/dialog-commodities.c
@@ -343,6 +344,8 @@ gnucash/import-export/ofx/gnc-ofx-import.c
 gnucash/import-export/ofx/gnc-plugin-ofx.c
 gnucash/import-export/ofx/gschemas/org.gnucash.dialogs.import.ofx.gschema.xml.in
 gnucash/import-export/qif-imp/assistant-qif-import.c
+gnucash/import-export/qif-imp/deprecated/qif-import.scm
+gnucash/import-export/qif-imp/deprecated/string.scm
 gnucash/import-export/qif-imp/dialog-account-picker.c
 gnucash/import-export/qif-imp/gncmod-qif-import.c
 gnucash/import-export/qif-imp/gnc-plugin-qif-import.c
@@ -410,6 +413,15 @@ gnucash/register/register-gnome/pricecell-gnome.c
 gnucash/register/register-gnome/quickfillcell-gnome.c
 gnucash/register/register-gnome/table-gnome.c
 gnucash/report/commodity-utilities.scm
+gnucash/report/deprecated/business-reports.scm
+gnucash/report/deprecated/collectors.scm
+gnucash/report/deprecated/eguile-gnc.scm
+gnucash/report/deprecated/eguile-html-utilities.scm
+gnucash/report/deprecated/eguile-utilities.scm
+gnucash/report/deprecated/report-collectors.scm
+gnucash/report/deprecated/report-system.scm
+gnucash/report/deprecated/stylesheets.scm
+gnucash/report/deprecated/utility-reports.scm
 gnucash/report/eguile-html-utilities.scm
 gnucash/report/eguile.scm
 gnucash/report/eguile-utilities.scm
@@ -433,6 +445,53 @@ gnucash/report/options-utilities.scm
 gnucash/report/report-core.scm
 gnucash/report/report-register-hooks.scm
 gnucash/report/reports/aging.scm
+gnucash/report/reports/deprecated/account-piecharts.scm
+gnucash/report/reports/deprecated/account-summary.scm
+gnucash/report/reports/deprecated/advanced-portfolio.scm
+gnucash/report/reports/deprecated/aging.scm
+gnucash/report/reports/deprecated/average-balance.scm
+gnucash/report/reports/deprecated/balance-forecast.scm
+gnucash/report/reports/deprecated/balance-sheet.scm
+gnucash/report/reports/deprecated/balsheet-eg.scm
+gnucash/report/reports/deprecated/balsheet-pnl.scm
+gnucash/report/reports/deprecated/budget-balance-sheet.scm
+gnucash/report/reports/deprecated/budget-barchart.scm
+gnucash/report/reports/deprecated/budget-flow.scm
+gnucash/report/reports/deprecated/budget-income-statement.scm
+gnucash/report/reports/deprecated/budget.scm
+gnucash/report/reports/deprecated/cashflow-barchart.scm
+gnucash/report/reports/deprecated/cash-flow.scm
+gnucash/report/reports/deprecated/category-barchart.scm
+gnucash/report/reports/deprecated/customer-summary.scm
+gnucash/report/reports/deprecated/daily-reports.scm
+gnucash/report/reports/deprecated/de_DE.scm
+gnucash/report/reports/deprecated/equity-statement.scm
+gnucash/report/reports/deprecated/general-journal.scm
+gnucash/report/reports/deprecated/general-ledger.scm
+gnucash/report/reports/deprecated/hello-world.scm
+gnucash/report/reports/deprecated/income-gst-statement.scm
+gnucash/report/reports/deprecated/income-statement.scm
+gnucash/report/reports/deprecated/invoice.scm
+gnucash/report/reports/deprecated/job-report.scm
+gnucash/report/reports/deprecated/net-charts.scm
+gnucash/report/reports/deprecated/owner-report.scm
+gnucash/report/reports/deprecated/payables.scm
+gnucash/report/reports/deprecated/portfolio.scm
+gnucash/report/reports/deprecated/price-scatter.scm
+gnucash/report/reports/deprecated/receipt.scm
+gnucash/report/reports/deprecated/receivables.scm
+gnucash/report/reports/deprecated/reconcile-report.scm
+gnucash/report/reports/deprecated/register.scm
+gnucash/report/reports/deprecated/standard-reports.scm
+gnucash/report/reports/deprecated/sx-summary.scm
+gnucash/report/reports/deprecated/taxinvoice.scm
+gnucash/report/reports/deprecated/taxtxf-de_DE.scm
+gnucash/report/reports/deprecated/taxtxf.scm
+gnucash/report/reports/deprecated/transaction.scm
+gnucash/report/reports/deprecated/trial-balance.scm
+gnucash/report/reports/deprecated/us.scm
+gnucash/report/reports/deprecated/view-column.scm
+gnucash/report/reports/deprecated/welcome-to-gnucash.scm
 gnucash/report/reports/example/average-balance.scm
 gnucash/report/reports/example/daily-reports.scm
 gnucash/report/reports/example/hello-world.scm
@@ -487,6 +546,11 @@ gnucash/report/reports/support/taxinvoice.eguile.scm
 gnucash/report/report.scm
 gnucash/report/report-utilities.scm
 gnucash/report/stylesheets/css.scm
+gnucash/report/stylesheets/deprecated/stylesheet-easy.scm
+gnucash/report/stylesheets/deprecated/stylesheet-fancy.scm
+gnucash/report/stylesheets/deprecated/stylesheet-footer.scm
+gnucash/report/stylesheets/deprecated/stylesheet-head-or-tail.scm
+gnucash/report/stylesheets/deprecated/stylesheet-plain.scm
 gnucash/report/stylesheets/footer.scm
 gnucash/report/stylesheets/head-or-tail.scm
 gnucash/report/stylesheets/plain.scm
@@ -499,6 +563,9 @@ libgnucash/app-utils/calculation/expression_parser.c
 libgnucash/app-utils/calculation/fin.c
 libgnucash/app-utils/c-interface.scm
 libgnucash/app-utils/date-utilities.scm
+libgnucash/app-utils/deprecated/gettext.scm
+libgnucash/app-utils/deprecated/migrate-prefs.scm
+libgnucash/app-utils/deprecated/migrate-prefs-user.scm
 libgnucash/app-utils/file-utils.c
 libgnucash/app-utils/fin.scm
 libgnucash/app-utils/gfec.c
@@ -667,6 +734,8 @@ libgnucash/gnc-module/gnc-module.c
 libgnucash/tax/de_DE/tax.scm
 libgnucash/tax/de_DE/txf-help.scm
 libgnucash/tax/de_DE/txf.scm
+libgnucash/tax/deprecated/de_DE.scm
+libgnucash/tax/deprecated/us.scm
 libgnucash/tax/gnc-locale-tax.c
 libgnucash/tax/us/tax.scm
 libgnucash/tax/us/txf-help.scm

commit 5e1316444e8b099e9ca96d9bb0a07ca3dbc60833
Author: Geert Janssens <geert at kobaltwit.be>
Date:   Fri Feb 28 18:55:07 2020 +0100

    Fix build order of dependencies for tax sources

diff --git a/libgnucash/tax/CMakeLists.txt b/libgnucash/tax/CMakeLists.txt
index b0f0560fa..7e68ab6d3 100644
--- a/libgnucash/tax/CMakeLists.txt
+++ b/libgnucash/tax/CMakeLists.txt
@@ -41,7 +41,7 @@ TRUE
 gnc_add_scheme_targets(scm-tax-us-2
 "${gncmod_tax_us_SCHEME_2}"
 "gnucash/locale/us"
-"${GUILE_DEPENDS}"
+"scm-tax-us-1;${GUILE_DEPENDS}"
 FALSE
 )
 
@@ -54,7 +54,7 @@ TRUE
 gnc_add_scheme_targets(scm-tax-de_DE-2
 "${gncmod_tax_de_DE_SCHEME_2}"
 "gnucash/locale/de_DE"
-"${GUILE_DEPENDS}"
+"scm-tax-de_DE-1;${GUILE_DEPENDS}"
 FALSE
 )
 

commit 90345096e40258ac51d72c1b37863a44502c2656
Merge: 2b70b1c1e b9d625d25
Author: Geert Janssens <geert at kobaltwit.be>
Date:   Fri Feb 28 18:37:10 2020 +0100

    Merge branch 'maint'

diff --cc CMakeLists.txt
index 571a8a07c,e20d0e2d7..fbfff86c2
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@@ -62,7 -62,14 +62,13 @@@ option (DISABLE_DEPRECATED_GNOME "don'
  # Use gsettings-desktop-schemas for a better integration with GNOME
  set(COMPILE_GSCHEMAS ON CACHE BOOL "Compile the GSettings schema")
  
 -# GENERATE_SWIG_WRAPPERS - Controls whether to generate the swig wrappers for guile and python. If not set the wrappers will only be generated when building from a git worktree, commented out here, but will be evaluated later on in this file
+ 
+ # Support for downstream packagers
  set(GNUCASH_BUILD_ID "" CACHE STRING "Overrides the GnuCash build identification (Build ID) which defaults to a description of the vcs commit from which gnucash is built. Distributions may want to insert a package management based version number instead")
+ # In addition to the GNUCASH_BUILD_ID environment variable, packagers can overwrite
+ # gnucash/gnome/gnucash.releases.xml with (package) release details to be included
+ # in the appdata file. It should follow appdata <release> node conventions.
+ 
  
  # Check that all of the absolute install paths are inside
  # ${CMAKE_INSTALL_PREFIX}. If they're not, disable binreloc as it
diff --cc gnucash/gnome/CMakeLists.txt
index 0e3cd08ad,fcec8b854..7a1824154
--- a/gnucash/gnome/CMakeLists.txt
+++ b/gnucash/gnome/CMakeLists.txt
@@@ -235,34 -240,7 +235,34 @@@ add_custom_target(gnucash-desktop ALL D
  
  install(FILES ${CMAKE_CURRENT_BINARY_DIR}/gnucash.desktop DESTINATION  ${CMAKE_INSTALL_DATADIR}/applications)
  
 +# Scheme
 +
 +set(gnome_SCHEME
 +    report-menus.scm
 +)
 +
 +set(GUILE_OUTPUT_DIR   gnucash)
 +set(GUILE_DEPENDS
 +    gncmod-gnome-utils
 +    scm-engine
 +    scm-core-utils
 +    scm-gnome-utils
 +    scm-gnc-module
 +    scm-report
 +    scm-reports
 +)
 +
 +gnc_add_scheme_targets(scm-gnome
 +"${gnome_SCHEME}"
 +${GUILE_OUTPUT_DIR}
 +"${GUILE_DEPENDS}"
 +FALSE
 +)
 +
 +# Module interfaces deprecated in 4.x, will be removed for 5.x
 +gnc_add_scheme_deprecated_module ("gnucash report report-gnome" "gnucash report-menus" "scm-gnome" "")
 +
  set_dist_list(gnome_DIST
          CMakeLists.txt gnome.i gnucash.appdata.xml.in.in gnucash.desktop.in.in
-         ${gnc_gnome_noinst_HEADERS} ${gnc_gnome_SOURCES} ${gnome_SCHEME})
 -        gnucash.releases.xml ${gnc_gnome_noinst_HEADERS} ${gnc_gnome_SOURCES})
 -dist_add_generated(${BUILDING_FROM_VCS} gnucash.appdata.xml.in gnucash.desktop.in)
++        gnucash.releases.xml ${gnc_gnome_noinst_HEADERS} ${gnc_gnome_SOURCES} ${gnome_SCHEME})
 +dist_add_generated(${BUILDING_FROM_VCS} gnucash.appdata.xml.in)

commit b9d625d25fec156b90cbd68f0b1aaebba306d9f4
Author: Geert Janssens <geert at kobaltwit.be>
Date:   Fri Feb 28 18:13:26 2020 +0100

    Move lot viewer to business-reports
    
    It depends on the business-reports module which is not available to
    standard-reports at build time
    Interestingly this only is an issue for the makefile generator
    The ninja generator works fine

diff --git a/gnucash/report/business-reports/CMakeLists.txt b/gnucash/report/business-reports/CMakeLists.txt
index c2039d7d3..bc0cbecea 100644
--- a/gnucash/report/business-reports/CMakeLists.txt
+++ b/gnucash/report/business-reports/CMakeLists.txt
@@ -7,6 +7,7 @@ set (business_reports_SCHEME
   receipt.scm
   invoice.scm
   job-report.scm
+  lot-viewer.scm
   new-aging.scm
   new-owner-report.scm
   owner-report.scm
diff --git a/gnucash/report/business-reports/business-reports.scm b/gnucash/report/business-reports/business-reports.scm
index a9bb791ec..80716b48a 100644
--- a/gnucash/report/business-reports/business-reports.scm
+++ b/gnucash/report/business-reports/business-reports.scm
@@ -104,6 +104,7 @@
 (use-modules (gnucash report receipt))
 (use-modules (gnucash report owner-report))
 (use-modules (gnucash report job-report))
+(use-modules (gnucash report lot-viewer))
 (use-modules (gnucash report new-aging))
 (use-modules (gnucash report new-owner-report))
 (use-modules (gnucash report payables))
diff --git a/gnucash/report/standard-reports/lot-viewer.scm b/gnucash/report/business-reports/lot-viewer.scm
similarity index 99%
rename from gnucash/report/standard-reports/lot-viewer.scm
rename to gnucash/report/business-reports/lot-viewer.scm
index 815fe9566..e107fa87d 100644
--- a/gnucash/report/standard-reports/lot-viewer.scm
+++ b/gnucash/report/business-reports/lot-viewer.scm
@@ -19,7 +19,7 @@
 ;;
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
-(define-module (gnucash report standard-reports lot-viewer))
+(define-module (gnucash report lot-viewer))
 
 (use-modules (srfi srfi-1))
 (use-modules (srfi srfi-11))            ;for let-values
diff --git a/gnucash/report/standard-reports/CMakeLists.txt b/gnucash/report/standard-reports/CMakeLists.txt
index e7e171e8f..df41fc441 100644
--- a/gnucash/report/standard-reports/CMakeLists.txt
+++ b/gnucash/report/standard-reports/CMakeLists.txt
@@ -25,7 +25,6 @@ set (standard_reports_SCHEME_2
     general-ledger.scm
     income-gst-statement.scm
     income-statement.scm
-    lot-viewer.scm
     net-charts.scm
     portfolio.scm
     price-scatter.scm
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 790cb84f3..f464853c0 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -418,6 +418,7 @@ gnucash/report/business-reports/business-reports.scm
 gnucash/report/business-reports/customer-summary.scm
 gnucash/report/business-reports/invoice.scm
 gnucash/report/business-reports/job-report.scm
+gnucash/report/business-reports/lot-viewer.scm
 gnucash/report/business-reports/new-aging.scm
 gnucash/report/business-reports/new-owner-report.scm
 gnucash/report/business-reports/owner-report.scm
@@ -486,7 +487,6 @@ gnucash/report/standard-reports/general-journal.scm
 gnucash/report/standard-reports/general-ledger.scm
 gnucash/report/standard-reports/income-gst-statement.scm
 gnucash/report/standard-reports/income-statement.scm
-gnucash/report/standard-reports/lot-viewer.scm
 gnucash/report/standard-reports/net-charts.scm
 gnucash/report/standard-reports/portfolio.scm
 gnucash/report/standard-reports/price-scatter.scm

commit feee495f2efb2182f66e6adc3fed2ea96848fc12
Author: Geert Janssens <geert at kobaltwit.be>
Date:   Tue Feb 25 16:39:26 2020 +0100

    Bug 797624 - Wrong Decimal for Vietnam currencies

diff --git a/libgnucash/engine/iso-4217-currencies.xml b/libgnucash/engine/iso-4217-currencies.xml
index 9624d807a..f4ae95524 100644
--- a/libgnucash/engine/iso-4217-currencies.xml
+++ b/libgnucash/engine/iso-4217-currencies.xml
@@ -2743,8 +2743,8 @@
   partname="xu"
   namespace="ISO4217"
   exchange-code="704"
-  parts-per-unit="100"
-  smallest-fraction="100"
+  parts-per-unit="1"
+  smallest-fraction="1"
   local-symbol="â‚«"
 />
 <!-- "VUV" - "Vatu"

commit 9df290da7cc6b838329bdfc14c83ff33489b37b2
Merge: 0e6c9e219 d4f024eff
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun Feb 23 14:59:05 2020 -0800

    Bug 797540 - Mapping of aqbanking accounts to gnucash accounts doesn't work


commit d4f024eff77c22bce6a7ba8a130bd4745eb57a6d
Author: Dr. Peter Zimmerer <pkzw at web.de>
Date:   Sat Feb 22 19:13:55 2020 +0100

    Clear hbci KVP from accounts no longer associated with an online one
    
    A reverse hash table is introduced in order to memorize the
    matched GnuCash accounts before starting the matching wizard.
    This hash table is used within the aai_on_finish callback
    to delete only the KVPs of those GnuCash accounts which are
    no longer matched with an AqBanking account.
    All other GnuCash accounts (previously matched and currently
    matched) are just updated with the new assignments.

diff --git a/gnucash/import-export/aqb/assistant-ab-initial.c b/gnucash/import-export/aqb/assistant-ab-initial.c
index 6ecb72f29..13425a67c 100644
--- a/gnucash/import-export/aqb/assistant-ab-initial.c
+++ b/gnucash/import-export/aqb/assistant-ab-initial.c
@@ -106,7 +106,9 @@ static gboolean find_gnc_acc_cb(gpointer key, gpointer value, gpointer user_data
 static gboolean clear_line_cb(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer user_data);
 static void account_list_clicked_cb (GtkTreeView *view, GtkTreePath *path,
                                      GtkTreeViewColumn  *col, gpointer user_data);
-static void clear_kvp_acc_cb(Account *gnc_acc, gpointer user_data);
+static void insert_acc_into_revhash_cb(gpointer ab_acc, gpointer gnc_acc, gpointer revhash);
+static void remove_acc_from_revhash_cb(gpointer ab_acc, gpointer gnc_acc, gpointer revhash);
+static void clear_kvp_acc_cb(gpointer key, gpointer value, gpointer user_data);
 static void save_kvp_acc_cb(gpointer key, gpointer value, gpointer user_data);
 static void aai_close_handler(gpointer user_data);
 
@@ -127,6 +129,8 @@ struct _ABInitialInfo
     AB_BANKING *api;
     /* AB_ACCOUNT* -> Account* -- DO NOT DELETE THE KEYS! */
     GHashTable *gnc_hash;
+    /* Reverse hash table for lookup of matched GnuCash accounts */
+    GHashTable *gnc_revhash;
 };
 
 struct _DeferredInfo
@@ -206,6 +210,12 @@ aai_destroy_cb(GtkWidget *object, gpointer user_data)
         info->gnc_hash = NULL;
     }
 
+    if (info->gnc_revhash)
+    {
+        g_hash_table_destroy(info->gnc_revhash);
+        info->gnc_revhash = NULL;
+    }
+
     if (info->api)
     {
         gnc_AB_BANKING_delete(info->api);
@@ -321,6 +331,20 @@ aai_ab_account_equal (gconstpointer v1, gconstpointer v2)
 }
 #endif
 
+static void
+insert_acc_into_revhash_cb(gpointer ab_acc, gpointer gnc_acc, gpointer revhash)
+{
+    g_return_if_fail(revhash && gnc_acc && ab_acc);
+    g_hash_table_insert((GHashTable *) revhash, gnc_acc, ab_acc);
+}
+
+static void
+remove_acc_from_revhash_cb(gpointer ab_acc, gpointer gnc_acc, gpointer revhash)
+{
+    g_return_if_fail(revhash && gnc_acc);
+    g_hash_table_remove((GHashTable *) revhash, gnc_acc);
+}
+
 void
 aai_match_page_prepare (GtkAssistant *assistant, gpointer user_data)
 {
@@ -349,8 +373,10 @@ aai_match_page_prepare (GtkAssistant *assistant, gpointer user_data)
 #endif
         data.api = info->api;
         data.hash = info->gnc_hash;
-        gnc_account_foreach_descendant(
-            root, (AccountCb) hash_from_kvp_acc_cb, &data);
+        gnc_account_foreach_descendant(root, (AccountCb) hash_from_kvp_acc_cb, &data);
+        /* Memorize initial matches in reverse hash table */
+        info->gnc_revhash = g_hash_table_new(NULL, NULL);
+        g_hash_table_foreach(data.hash, (GHFunc) insert_acc_into_revhash_cb, (gpointer) info->gnc_revhash);
 
         info->match_page_prepared = TRUE;
     }
@@ -365,13 +391,17 @@ void
 aai_on_finish (GtkAssistant *assistant, gpointer user_data)
 {
     ABInitialInfo *info = user_data;
-    Account *root;
 
-    g_return_if_fail(info && info->gnc_hash);
+    g_return_if_fail(info && info->gnc_hash && info->gnc_revhash);
 
+    /* Remove GnuCash accounts from reverse hash table which are still
+     * matched to an AqBanking account. For the remaining GnuCash accounts
+     * the KVPs must be cleared (i.e. deleted).
+     * Please note that the value (i.e. the GnuCash account) stored in info->gnc_hash
+     * is used as key for info->gnc_revhash */
+    g_hash_table_foreach(info->gnc_hash, (GHFunc) remove_acc_from_revhash_cb, info->gnc_revhash);
     /* Commit the changes */
-    root = gnc_book_get_root_account(gnc_get_current_book());
-    gnc_account_foreach_descendant(root, (AccountCb) clear_kvp_acc_cb, NULL);
+    g_hash_table_foreach(info->gnc_revhash, (GHFunc) clear_kvp_acc_cb, NULL);
     g_hash_table_foreach(info->gnc_hash, (GHFunc) save_kvp_acc_cb, NULL);
 
     gtk_widget_destroy(info->window);
@@ -649,14 +679,11 @@ account_list_clicked_cb (GtkTreeView *view, GtkTreePath *path,
 }
 
 static void
-clear_kvp_acc_cb(Account *gnc_acc, gpointer user_data)
+clear_kvp_acc_cb(gpointer gnc_acc, gpointer ab_acc, gpointer user_data)
 {
-    if (gnc_ab_get_account_uid(gnc_acc))
-        gnc_ab_set_account_uid(gnc_acc, 0);
-    if (gnc_ab_get_account_accountid(gnc_acc))
-        gnc_ab_set_account_accountid(gnc_acc, "");
-    if (gnc_ab_get_account_bankcode(gnc_acc))
-        gnc_ab_set_account_bankcode(gnc_acc, "");
+    g_return_if_fail(gnc_acc);
+    /* Delete complete "hbci..." KVPs for GnuCash account */
+    gnc_account_delete_map_entry((Account *) gnc_acc, "hbci", NULL, NULL, FALSE);
 }
 
 static void

commit 768b25dfd61ae25f697ddacf445cb30a7ca17222
Author: Dr. Peter Zimmerer <pkzw at web.de>
Date:   Sat Feb 22 18:21:26 2020 +0100

    Using equality check from commit 2f38095 for removal of unassigned GC accounts
    
    Using the equality check introduced with the previous commit 2f38095
    also for checking if a newly assigned GnuCash account has been
    previously assigned to a different AqBanking account and
    deleting the previous assignment to keep the matches unique.

diff --git a/gnucash/import-export/aqb/assistant-ab-initial.c b/gnucash/import-export/aqb/assistant-ab-initial.c
index 5aaea509f..6ecb72f29 100644
--- a/gnucash/import-export/aqb/assistant-ab-initial.c
+++ b/gnucash/import-export/aqb/assistant-ab-initial.c
@@ -545,7 +545,11 @@ clear_line_cb(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter,
 
     gtk_tree_model_get(model, iter, ACCOUNT_LIST_COL_AB_ACCT, &ab_acc, -1);
 
+#ifdef AQBANKING6
+    if (aai_ab_account_equal(ab_acc, data->ab_acc))
+#else
     if (ab_acc == data->ab_acc)
+#endif
     {
         gtk_list_store_set(store, iter, ACCOUNT_LIST_COL_GNC_NAME, "",
                            ACCOUNT_LIST_COL_CHECKED, TRUE, -1);

commit 6add6b1f1d2b1da7a4a2f5e2d4c4067d56d14632
Author: Dr. Peter Zimmerer <pkzw at web.de>
Date:   Sat Feb 22 18:08:54 2020 +0100

    New callback functions for matching online accounts with GnuCash accounts
    
    Introducing a dedicated callback function to test two AqBanking accounts for equality and
    an associated hash function returning the account unique id as hash value.

diff --git a/gnucash/import-export/aqb/assistant-ab-initial.c b/gnucash/import-export/aqb/assistant-ab-initial.c
index 133e3a70d..5aaea509f 100644
--- a/gnucash/import-export/aqb/assistant-ab-initial.c
+++ b/gnucash/import-export/aqb/assistant-ab-initial.c
@@ -27,6 +27,7 @@
  * @author Copyright (C) 2006 David Hampton <hampton at employees.org>
  * @author Copyright (C) 2008 Andreas Koehler <andi5.py at gmx.net>
  * @author Copyright (C) 2011 Robert Fewell
+ * @author Copyright (C) 2020 Peter Zimmerer <pkzw at web.de>
  */
 
 #include <config.h>
@@ -89,6 +90,10 @@ gboolean aai_key_press_event_cb(GtkWidget *widget, GdkEventKey *event, gpointer
 void aai_wizard_page_prepare (GtkAssistant *assistant, gpointer user_data);
 void aai_wizard_button_clicked_cb(GtkButton *button, gpointer user_data);
 
+#ifdef AQBANKING6
+static guint aai_ab_account_hash(gconstpointer v);
+static gboolean aai_ab_account_equal(gconstpointer v1, gconstpointer v2);
+#endif
 void aai_match_page_prepare (GtkAssistant *assistant, gpointer user_data);
 
 static gboolean banking_has_accounts(AB_BANKING *banking);
@@ -290,6 +295,32 @@ aai_wizard_button_clicked_cb(GtkButton *button, gpointer user_data)
     LEAVE(" ");
 }
 
+#ifdef AQBANKING6
+static guint
+aai_ab_account_hash (gconstpointer v)
+{
+	if (v == NULL)
+		return 0;
+	else
+		/* Use the account unique id as hash value */
+		return AB_AccountSpec_GetUniqueId((const GNC_AB_ACCOUNT_SPEC *) v);
+}
+
+static gboolean
+aai_ab_account_equal (gconstpointer v1, gconstpointer v2)
+{
+	if (v1 == NULL || v2 == NULL)
+		return v1 == v2;
+	else
+	{
+		/* Use the account unique id to check for equality */
+		uint32_t uid1 = AB_AccountSpec_GetUniqueId((const GNC_AB_ACCOUNT_SPEC *) v1);
+		uint32_t uid2 = AB_AccountSpec_GetUniqueId((const GNC_AB_ACCOUNT_SPEC *) v2);
+		return uid1 == uid2;
+	}
+}
+#endif
+
 void
 aai_match_page_prepare (GtkAssistant *assistant, gpointer user_data)
 {
@@ -311,7 +342,11 @@ aai_match_page_prepare (GtkAssistant *assistant, gpointer user_data)
 #endif
         /* Determine current mapping */
         root = gnc_book_get_root_account(gnc_get_current_book());
+#ifdef AQBANKING6
+        info->gnc_hash = g_hash_table_new(&aai_ab_account_hash, &aai_ab_account_equal);
+#else
         info->gnc_hash = g_hash_table_new(&g_direct_hash, &g_direct_equal);
+#endif
         data.api = info->api;
         data.hash = info->gnc_hash;
         gnc_account_foreach_descendant(

commit 0e6c9e21913014dc4a817e3531259d9d3ae8c3ba
Merge: 427368eaf 0964b31c4
Author: Frank H. Ellenberger <frank.h.ellenberger at gmail.com>
Date:   Wed Feb 19 02:26:19 2020 +0100

    Merge PR #635 into maint


commit 0964b31c4735dc73ad2e3131d0f1b86e2bc89c04
Author: Frank H. Ellenberger <frank.h.ellenberger at gmail.com>
Date:   Tue Feb 18 07:36:11 2020 +0100

    L12N:de_CH: Several fixes on KMU template
    
    Add missing namespaces.
    Replace type="guid" by type="new".
    Add Placeholder slot to groups.
    Remove redundant
       '<act:commodity-scu>100</act:commodity-scu>' and
       '<act:description>.*</act:description>'
    <act:type> adjustments:
       RECEIVABLE should only be used for invoices,
       PAYABLE: "Verbindlichkeiten aus Lieferungen und Leistungen"
       (at least one) EQUITY is required. Because we currently do not have
    an account type PASSIVA, the node "Passiven" was replaced by a note in
    <description> it's child accounts.

diff --git a/data/accounts/de_CH/acctchrt_kmu.gnucash-xea b/data/accounts/de_CH/acctchrt_kmu.gnucash-xea
index a586678b9..74b047560 100644
--- a/data/accounts/de_CH/acctchrt_kmu.gnucash-xea
+++ b/data/accounts/de_CH/acctchrt_kmu.gnucash-xea
@@ -1,32 +1,34 @@
 <?xml version="1.0" encoding="utf-8" ?>
 <gnc-account-example
-  xmlns:gnc="http://www.gnucash.org/XML/gnc"
+  xmlns="http://www.gnucash.org/XML/"
   xmlns:act="http://www.gnucash.org/XML/act"
-  xmlns:book="http://www.gnucash.org/XML/book"
-  xmlns:cd="http://www.gnucash.org/XML/cd"
-  xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
-  xmlns:price="http://www.gnucash.org/XML/price"
-  xmlns:slot="http://www.gnucash.org/XML/slot"
-  xmlns:split="http://www.gnucash.org/XML/split"
-  xmlns:sx="http://www.gnucash.org/XML/sx"
-  xmlns:trn="http://www.gnucash.org/XML/trn"
-  xmlns:ts="http://www.gnucash.org/XML/ts"
-  xmlns:fs="http://www.gnucash.org/XML/fs"
-  xmlns:bgt="http://www.gnucash.org/XML/bgt"
-  xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
-  xmlns:lot="http://www.gnucash.org/XML/lot"
   xmlns:addr="http://www.gnucash.org/XML/addr"
+  xmlns:bgt="http://www.gnucash.org/XML/bgt"
   xmlns:billterm="http://www.gnucash.org/XML/billterm"
+  xmlns:book="http://www.gnucash.org/XML/book"
   xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
   xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
+  xmlns:cd="http://www.gnucash.org/XML/cd"
+  xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
   xmlns:cust="http://www.gnucash.org/XML/cust"
   xmlns:employee="http://www.gnucash.org/XML/employee"
   xmlns:entry="http://www.gnucash.org/XML/entry"
+  xmlns:fs="http://www.gnucash.org/XML/fs"
+  xmlns:gnc="http://www.gnucash.org/XML/gnc"
+  xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
   xmlns:invoice="http://www.gnucash.org/XML/invoice"
   xmlns:job="http://www.gnucash.org/XML/job"
+  xmlns:lot="http://www.gnucash.org/XML/lot"
   xmlns:order="http://www.gnucash.org/XML/order"
   xmlns:owner="http://www.gnucash.org/XML/owner"
+  xmlns:price="http://www.gnucash.org/XML/price"
+  xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
+  xmlns:slot="http://www.gnucash.org/XML/slot"
+  xmlns:split="http://www.gnucash.org/XML/split"
+  xmlns:sx="http://www.gnucash.org/XML/sx"
   xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
+  xmlns:trn="http://www.gnucash.org/XML/trn"
+  xmlns:ts="http://www.gnucash.org/XML/ts"
   xmlns:tte="http://www.gnucash.org/XML/tte"
   xmlns:vendor="http://www.gnucash.org/XML/vendor">
 
@@ -38,2099 +40,1999 @@
 </gnc-act:short-description>
 <gnc-act:long-description>
 Kontenrahmen fuer Schweizer KMU gem Sterchi I Mattle I Helbling publiziert vom veb.ch.
-Dies ist der Grundplan gemäss offiziellen Plan. 
+Dies ist der Grundplan gemäss offiziellem Plan. 
 </gnc-act:long-description>
 <gnc-act:exclude-from-select-all>1</gnc-act:exclude-from-select-all>
 
 <gnc:account version="2.0.0">
   <act:name>Root Account</act:name>
-  <act:id type="guid">8cd23636f1e04a74a35c13ae23427c14</act:id>
+  <act:id type="new">8cd23636f1e04a74a35c13ae23427c14</act:id>
   <act:type>ROOT</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Aktiven</act:name>
-  <act:id type="guid">e3f7b59890ec44688241f322db0a7392</act:id>
+  <act:id type="new">e3f7b59890ec44688241f322db0a7392</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1</act:code>
-  <act:description>1</act:description>
-  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Umlaufvermögen</act:name>
-  <act:id type="guid">264d9071ae2945a186436dc8e4b95dab</act:id>
+  <act:id type="new">264d9071ae2945a186436dc8e4b95dab</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>10</act:code>
-  <act:description>10</act:description>
-  <act:parent type="guid">e3f7b59890ec44688241f322db0a7392</act:parent>
+  <act:parent type="new">e3f7b59890ec44688241f322db0a7392</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Flüssige Mittel</act:name>
-  <act:id type="guid">a602999aceb84ba3b9a1654ba9ba66c0</act:id>
+  <act:id type="new">a602999aceb84ba3b9a1654ba9ba66c0</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>100</act:code>
-  <act:description>100</act:description>
-  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:parent type="new">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Kasse</act:name>
-  <act:id type="guid">379fab16b4884fddae0d6d7e959d4471</act:id>
+  <act:id type="new">379fab16b4884fddae0d6d7e959d4471</act:id>
   <act:type>CASH</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1000</act:code>
-  <act:description>1000</act:description>
-  <act:parent type="guid">a602999aceb84ba3b9a1654ba9ba66c0</act:parent>
+  <act:parent type="new">a602999aceb84ba3b9a1654ba9ba66c0</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Post</act:name>
-  <act:id type="guid">29563b55669b47f991244a4e6d579c75</act:id>
+  <act:id type="new">29563b55669b47f991244a4e6d579c75</act:id>
   <act:type>BANK</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1010</act:code>
-  <act:description>1010</act:description>
-  <act:parent type="guid">a602999aceb84ba3b9a1654ba9ba66c0</act:parent>
+  <act:parent type="new">a602999aceb84ba3b9a1654ba9ba66c0</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Bank (Kontokorrent)</act:name>
-  <act:id type="guid">e6619891e57446c8978fa2e92023c58a</act:id>
+  <act:id type="new">e6619891e57446c8978fa2e92023c58a</act:id>
   <act:type>BANK</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1020</act:code>
-  <act:description>1020</act:description>
-  <act:parent type="guid">a602999aceb84ba3b9a1654ba9ba66c0</act:parent>
+  <act:parent type="new">a602999aceb84ba3b9a1654ba9ba66c0</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Forderungen aus Lieferungen und Leistungen</act:name>
-  <act:id type="guid">e888673f62eb40dca11fa15887bf46b0</act:id>
+  <act:id type="new">e888673f62eb40dca11fa15887bf46b0</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>110</act:code>
-  <act:description>110</act:description>
-  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:parent type="new">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Forderungen aus Lieferungen und Leistungen (Debitoren)</act:name>
-  <act:id type="guid">eb0cf039f7154b35af988ccef891e35f</act:id>
+  <act:id type="new">eb0cf039f7154b35af988ccef891e35f</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1100</act:code>
-  <act:description>1100</act:description>
-  <act:parent type="guid">e888673f62eb40dca11fa15887bf46b0</act:parent>
+  <act:parent type="new">e888673f62eb40dca11fa15887bf46b0</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Delkredere</act:name>
-  <act:id type="guid">4d13e5097e204258877368d3735ee5e4</act:id>
+  <act:id type="new">4d13e5097e204258877368d3735ee5e4</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1109</act:code>
-  <act:description>1109</act:description>
-  <act:parent type="guid">e888673f62eb40dca11fa15887bf46b0</act:parent>
+  <act:parent type="new">e888673f62eb40dca11fa15887bf46b0</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Vorräte und nicht fakturierte Dienstleistungen</act:name>
-  <act:id type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:id>
+  <act:id type="new">5fe44b460f5b45cf89b52a12f2f0abad</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>120</act:code>
-  <act:description>120</act:description>
-  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:parent type="new">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Handelswaren</act:name>
-  <act:id type="guid">559a32ef6fc643cb987de492b524d031</act:id>
+  <act:id type="new">559a32ef6fc643cb987de492b524d031</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1200</act:code>
-  <act:description>1200</act:description>
-  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+  <act:parent type="new">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Rohstoffe</act:name>
-  <act:id type="guid">0a40362a5183425790a6df0cd8045277</act:id>
+  <act:id type="new">0a40362a5183425790a6df0cd8045277</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1210</act:code>
-  <act:description>1210</act:description>
-  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+  <act:parent type="new">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Werkstoffe</act:name>
-  <act:id type="guid">05a6995154174d008d7ebec87f7295f1</act:id>
+  <act:id type="new">05a6995154174d008d7ebec87f7295f1</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1220</act:code>
-  <act:description>1220</act:description>
-  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+  <act:parent type="new">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Hilfs- und Verbrauchsmaterial</act:name>
-  <act:id type="guid">c9d2781eb3fb44d6a64913d85504a57f</act:id>
+  <act:id type="new">c9d2781eb3fb44d6a64913d85504a57f</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1230</act:code>
-  <act:description>1230</act:description>
-  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+  <act:parent type="new">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Waren in Konsignation</act:name>
-  <act:id type="guid">b8c8adaa14ab41c4915538ee6b709d42</act:id>
+  <act:id type="new">b8c8adaa14ab41c4915538ee6b709d42</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1250</act:code>
-  <act:description>1250</act:description>
-  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+  <act:parent type="new">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Fertige Erzeugnisse</act:name>
-  <act:id type="guid">07a04830ee204bb1a08803eee99c7674</act:id>
+  <act:id type="new">07a04830ee204bb1a08803eee99c7674</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1260</act:code>
-  <act:description>1260</act:description>
-  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+  <act:parent type="new">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Unfertige Erzeugnisse</act:name>
-  <act:id type="guid">45bab5223ab042deb9751fa1256fe95b</act:id>
+  <act:id type="new">45bab5223ab042deb9751fa1256fe95b</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1270</act:code>
-  <act:description>1270</act:description>
-  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+  <act:parent type="new">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Nicht fakturierte Dienstleistungen</act:name>
-  <act:id type="guid">29967c024d5a403bb0a90e9ddb7c8beb</act:id>
+  <act:id type="new">29967c024d5a403bb0a90e9ddb7c8beb</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1280</act:code>
-  <act:description>1280</act:description>
-  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+  <act:parent type="new">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Aktive Rechnungsabgrenzung</act:name>
-  <act:id type="guid">0f0cb8cc307b4cf19da688ead07174bc</act:id>
+  <act:id type="new">0f0cb8cc307b4cf19da688ead07174bc</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>130</act:code>
-  <act:description>130</act:description>
-  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:parent type="new">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Bezahlter Aufwand des Folgejahres</act:name>
-  <act:id type="guid">545d0c4d02ed43aeaf5190d72ef0f795</act:id>
+  <act:id type="new">545d0c4d02ed43aeaf5190d72ef0f795</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1300</act:code>
-  <act:description>1300</act:description>
-  <act:parent type="guid">0f0cb8cc307b4cf19da688ead07174bc</act:parent>
+  <act:parent type="new">0f0cb8cc307b4cf19da688ead07174bc</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Noch nicht erhaltener Ertrag</act:name>
-  <act:id type="guid">ab9f2c03af2d4f25a7939a75c70ab2f5</act:id>
+  <act:id type="new">ab9f2c03af2d4f25a7939a75c70ab2f5</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1301</act:code>
-  <act:description>1301</act:description>
-  <act:parent type="guid">0f0cb8cc307b4cf19da688ead07174bc</act:parent>
+  <act:parent type="new">0f0cb8cc307b4cf19da688ead07174bc</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Kurzfristig gehaltene Aktiven mit Börsenkurs</act:name>
-  <act:id type="guid">ea98b3c5c9c9434f92b5eb621b22038d</act:id>
+  <act:id type="new">ea98b3c5c9c9434f92b5eb621b22038d</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>106</act:code>
-  <act:description>106</act:description>
-  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:parent type="new">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertschriften</act:name>
-  <act:id type="guid">cfc6925f45c641d0a73962fd0ea0fabd</act:id>
+  <act:id type="new">cfc6925f45c641d0a73962fd0ea0fabd</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1060</act:code>
-  <act:description>1060</act:description>
-  <act:parent type="guid">ea98b3c5c9c9434f92b5eb621b22038d</act:parent>
+  <act:parent type="new">ea98b3c5c9c9434f92b5eb621b22038d</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Wertschriften</act:name>
-  <act:id type="guid">edcd8672409a4bf6a895eac7c8703d34</act:id>
+  <act:id type="new">edcd8672409a4bf6a895eac7c8703d34</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1069</act:code>
-  <act:description>1069</act:description>
-  <act:parent type="guid">ea98b3c5c9c9434f92b5eb621b22038d</act:parent>
+  <act:parent type="new">ea98b3c5c9c9434f92b5eb621b22038d</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ãœbrige kurzfristige Forderungen</act:name>
-  <act:id type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:id>
+  <act:id type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>114</act:code>
-  <act:description>114</act:description>
-  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:parent type="new">264d9071ae2945a186436dc8e4b95dab</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Vorschüsse und Darlehen</act:name>
-  <act:id type="guid">6f6144410f7d45868ee34569bf9c3d5d</act:id>
-  <act:type>RECEIVABLE</act:type>
+  <act:id type="new">6f6144410f7d45868ee34569bf9c3d5d</act:id>
+  <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1140</act:code>
-  <act:description>1140</act:description>
-  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+  <act:parent type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Vorschüsse und Darlehen</act:name>
-  <act:id type="guid">b543dd80e3654ac1a1c36ca61c826c66</act:id>
-  <act:type>RECEIVABLE</act:type>
+  <act:id type="new">b543dd80e3654ac1a1c36ca61c826c66</act:id>
+  <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1149</act:code>
-  <act:description>1149</act:description>
-  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+  <act:parent type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Vorsteuer MWST Material, Waren, Dienstleistungen, Energie</act:name>
-  <act:id type="guid">337eb05111ae4beb9598168fa1a0a964</act:id>
-  <act:type>RECEIVABLE</act:type>
+  <act:id type="new">337eb05111ae4beb9598168fa1a0a964</act:id>
+  <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1170</act:code>
-  <act:description>1170</act:description>
-  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+  <act:parent type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Vorsteuer MWST Investitionen, übriger Betriebsaufwand</act:name>
-  <act:id type="guid">68df215725d540f88f6eaf1ba2b266b9</act:id>
-  <act:type>RECEIVABLE</act:type>
+  <act:id type="new">68df215725d540f88f6eaf1ba2b266b9</act:id>
+  <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1171</act:code>
-  <act:description>1171</act:description>
-  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+  <act:parent type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Verrechnungssteuer</act:name>
-  <act:id type="guid">2d2c77dfd938491fb84c8b078716338f</act:id>
-  <act:type>RECEIVABLE</act:type>
+  <act:id type="new">2d2c77dfd938491fb84c8b078716338f</act:id>
+  <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1176</act:code>
-  <act:description>1176</act:description>
-  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+  <act:parent type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Forderungen gegenüber Sozialversicherungen und Vorsorgeeinrichtungen</act:name>
-  <act:id type="guid">2ecfb89a8c0f466b9b43ab19a166f6d1</act:id>
-  <act:type>RECEIVABLE</act:type>
+  <act:id type="new">2ecfb89a8c0f466b9b43ab19a166f6d1</act:id>
+  <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1180</act:code>
-  <act:description>1180</act:description>
-  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+  <act:parent type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Quellensteuer</act:name>
-  <act:id type="guid">cf367633674040ce8f4e098b6e1c821f</act:id>
-  <act:type>RECEIVABLE</act:type>
+  <act:id type="new">cf367633674040ce8f4e098b6e1c821f</act:id>
+  <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1189</act:code>
-  <act:description>1189</act:description>
-  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+  <act:parent type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Sonstige kurzfristige Forderungen</act:name>
-  <act:id type="guid">a2953b6a540e4dff8f667cc7e26d9673</act:id>
-  <act:type>RECEIVABLE</act:type>
+  <act:id type="new">a2953b6a540e4dff8f667cc7e26d9673</act:id>
+  <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1190</act:code>
-  <act:description>1190</act:description>
-  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+  <act:parent type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen sonstige kurzfristige Forderungen</act:name>
-  <act:id type="guid">ffead78845184361a9749202532344a9</act:id>
-  <act:type>RECEIVABLE</act:type>
+  <act:id type="new">ffead78845184361a9749202532344a9</act:id>
+  <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1199</act:code>
-  <act:description>1199</act:description>
-  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+  <act:parent type="new">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Anlagevermögen</act:name>
-  <act:id type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:id>
+  <act:id type="new">b54127bcfd3a43b4b8ef187fa85b514d</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>14</act:code>
-  <act:description>14</act:description>
-  <act:parent type="guid">e3f7b59890ec44688241f322db0a7392</act:parent>
+  <act:parent type="new">e3f7b59890ec44688241f322db0a7392</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Finanzanlagen</act:name>
-  <act:id type="guid">c58b830157164df9aa197f9a0a0d3525</act:id>
+  <act:id type="new">c58b830157164df9aa197f9a0a0d3525</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>140</act:code>
-  <act:description>140</act:description>
-  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:parent type="new">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertschriften</act:name>
-  <act:id type="guid">9571591f31f0413a86fb4e60c181271a</act:id>
+  <act:id type="new">9571591f31f0413a86fb4e60c181271a</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1400</act:code>
-  <act:description>1400</act:description>
-  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+  <act:parent type="new">c58b830157164df9aa197f9a0a0d3525</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Wertschriften</act:name>
-  <act:id type="guid">e395f07daef54a4d9f1dd96c0f69b3e2</act:id>
+  <act:id type="new">e395f07daef54a4d9f1dd96c0f69b3e2</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1409</act:code>
-  <act:description>1409</act:description>
-  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+  <act:parent type="new">c58b830157164df9aa197f9a0a0d3525</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Darlehnen</act:name>
-  <act:id type="guid">6982fd93c9f34a76801c8e9dbae14d9b</act:id>
+  <act:id type="new">6982fd93c9f34a76801c8e9dbae14d9b</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1440</act:code>
-  <act:description>1440</act:description>
-  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+  <act:parent type="new">c58b830157164df9aa197f9a0a0d3525</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Hypotheken</act:name>
-  <act:id type="guid">6df29a65023a479bbe7d8cfe584b7753</act:id>
+  <act:id type="new">6df29a65023a479bbe7d8cfe584b7753</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1441</act:code>
-  <act:description>1441</act:description>
-  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+  <act:parent type="new">c58b830157164df9aa197f9a0a0d3525</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen langfristige Forderungen</act:name>
-  <act:id type="guid">b819f6775e6e4d8f9ac82381d9b02380</act:id>
+  <act:id type="new">b819f6775e6e4d8f9ac82381d9b02380</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1449</act:code>
-  <act:description>1449</act:description>
-  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+  <act:parent type="new">c58b830157164df9aa197f9a0a0d3525</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Mobile Sachanlagen</act:name>
-  <act:id type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:id>
+  <act:id type="new">acf6d436b0124b95b08aea0ef142eb9a</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>150</act:code>
-  <act:description>150</act:description>
-  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:parent type="new">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Maschinen und Apparate</act:name>
-  <act:id type="guid">e7ef6a0f90ed4b3781336a11d3560cc1</act:id>
+  <act:id type="new">e7ef6a0f90ed4b3781336a11d3560cc1</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1500</act:code>
-  <act:description>1500</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Maschinen und Apparate</act:name>
-  <act:id type="guid">e8594be72dae4697b7353e4c42282429</act:id>
+  <act:id type="new">e8594be72dae4697b7353e4c42282429</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1509</act:code>
-  <act:description>1509</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Mobiliar und Einrichtungen</act:name>
-  <act:id type="guid">974d79602d3f4abb8226f51ebaa1a560</act:id>
+  <act:id type="new">974d79602d3f4abb8226f51ebaa1a560</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1510</act:code>
-  <act:description>1510</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Mobiliar und Einrichtungen</act:name>
-  <act:id type="guid">5eca184e768945c2b148a2b7752458e6</act:id>
+  <act:id type="new">5eca184e768945c2b148a2b7752458e6</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1519</act:code>
-  <act:description>1519</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Büromaschinen, Informatik, Kommunikationstechnologie</act:name>
-  <act:id type="guid">526e701c624b460789c94600964cfc33</act:id>
+  <act:id type="new">526e701c624b460789c94600964cfc33</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1520</act:code>
-  <act:description>1520</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Büromaschinen, Informatik, Kommunikationstechnologie</act:name>
-  <act:id type="guid">b2341b1b75b6493ab7ca6ed71264c4c8</act:id>
+  <act:id type="new">b2341b1b75b6493ab7ca6ed71264c4c8</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1529</act:code>
-  <act:description>1529</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Fahrzeuge</act:name>
-  <act:id type="guid">a59b2cc3b1f5453ab9d154b04eedac61</act:id>
+  <act:id type="new">a59b2cc3b1f5453ab9d154b04eedac61</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1530</act:code>
-  <act:description>1530</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Fahrzeuge</act:name>
-  <act:id type="guid">edd98d2517c547c5973a0af80db3ff7a</act:id>
+  <act:id type="new">edd98d2517c547c5973a0af80db3ff7a</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1539</act:code>
-  <act:description>1539</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Werkzeuge und Geräte</act:name>
-  <act:id type="guid">662daad6d7ee42a8a5e9d237fe41e292</act:id>
+  <act:id type="new">662daad6d7ee42a8a5e9d237fe41e292</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1540</act:code>
-  <act:description>1540</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Werkzeuge und Geräte</act:name>
-  <act:id type="guid">119bb844f3ad4d94863098c3b2d06803</act:id>
+  <act:id type="new">119bb844f3ad4d94863098c3b2d06803</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1549</act:code>
-  <act:description>1549</act:description>
-  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+  <act:parent type="new">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Immobile Sachanlagen</act:name>
-  <act:id type="guid">d0e005ee0f924d68aa5c27de625c106b</act:id>
+  <act:id type="new">d0e005ee0f924d68aa5c27de625c106b</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>160</act:code>
-  <act:description>160</act:description>
-  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:parent type="new">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Geschäftsliegenschaften</act:name>
-  <act:id type="guid">7fe070f51db8420b97eb23e5a1bd2445</act:id>
+  <act:id type="new">7fe070f51db8420b97eb23e5a1bd2445</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1600</act:code>
-  <act:description>1600</act:description>
-  <act:parent type="guid">d0e005ee0f924d68aa5c27de625c106b</act:parent>
+  <act:parent type="new">d0e005ee0f924d68aa5c27de625c106b</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Geschäftsliegenschafte</act:name>
-  <act:id type="guid">1a70c4acc8a746aeba59021390ac3f89</act:id>
+  <act:id type="new">1a70c4acc8a746aeba59021390ac3f89</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1609</act:code>
-  <act:description>1609</act:description>
-  <act:parent type="guid">d0e005ee0f924d68aa5c27de625c106b</act:parent>
+  <act:parent type="new">d0e005ee0f924d68aa5c27de625c106b</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Immaterielle Anlagen</act:name>
-  <act:id type="guid">6cc852b809f94f08aeaf137ab01e8742</act:id>
+  <act:id type="new">6cc852b809f94f08aeaf137ab01e8742</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>170</act:code>
-  <act:description>170</act:description>
-  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:parent type="new">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Patente, Know-how, Lizenzen, Rechte, Entwicklungen</act:name>
-  <act:id type="guid">450c0971814c4becafd9cfc6ad26897a</act:id>
+  <act:id type="new">450c0971814c4becafd9cfc6ad26897a</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1700</act:code>
-  <act:description>1700</act:description>
-  <act:parent type="guid">6cc852b809f94f08aeaf137ab01e8742</act:parent>
+  <act:parent type="new">6cc852b809f94f08aeaf137ab01e8742</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Patente, Know-how, Lizenzen, Rechte, Entwicklungen</act:name>
-  <act:id type="guid">e4a20cc0882947ebae367ebb71d839bf</act:id>
+  <act:id type="new">e4a20cc0882947ebae367ebb71d839bf</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1709</act:code>
-  <act:description>1709</act:description>
-  <act:parent type="guid">6cc852b809f94f08aeaf137ab01e8742</act:parent>
+  <act:parent type="new">6cc852b809f94f08aeaf137ab01e8742</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Goodwill</act:name>
-  <act:id type="guid">369839f3074246bbb175123d8ffcc907</act:id>
+  <act:id type="new">369839f3074246bbb175123d8ffcc907</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1770</act:code>
-  <act:description>1770</act:description>
-  <act:parent type="guid">6cc852b809f94f08aeaf137ab01e8742</act:parent>
+  <act:parent type="new">6cc852b809f94f08aeaf137ab01e8742</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Goodwill</act:name>
-  <act:id type="guid">030d28c8ebb44210811f3f363178c730</act:id>
+  <act:id type="new">030d28c8ebb44210811f3f363178c730</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1779</act:code>
-  <act:description>1779</act:description>
-  <act:parent type="guid">6cc852b809f94f08aeaf137ab01e8742</act:parent>
+  <act:parent type="new">6cc852b809f94f08aeaf137ab01e8742</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Beteiligungen</act:name>
-  <act:id type="guid">69a403bd13524112bd20975a94efb78e</act:id>
+  <act:id type="new">69a403bd13524112bd20975a94efb78e</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>148</act:code>
-  <act:description>148</act:description>
-  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:parent type="new">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Beteiligungen</act:name>
-  <act:id type="guid">f1957abd46ea4229be38aabe591b50ac</act:id>
+  <act:id type="new">f1957abd46ea4229be38aabe591b50ac</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1480</act:code>
-  <act:description>1480</act:description>
-  <act:parent type="guid">69a403bd13524112bd20975a94efb78e</act:parent>
+  <act:parent type="new">69a403bd13524112bd20975a94efb78e</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Wertberichtigungen Beteiligungen</act:name>
-  <act:id type="guid">1ab77bb7d37f4fa396d9cedc0653e04d</act:id>
+  <act:id type="new">1ab77bb7d37f4fa396d9cedc0653e04d</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1489</act:code>
-  <act:description>1489</act:description>
-  <act:parent type="guid">69a403bd13524112bd20975a94efb78e</act:parent>
+  <act:parent type="new">69a403bd13524112bd20975a94efb78e</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Nicht einbezahltes Grund-, Gesellschafter- oder Stiftungskapital</act:name>
-  <act:id type="guid">160cf2bacf0e45328263e3e4e0584c1e</act:id>
+  <act:id type="new">160cf2bacf0e45328263e3e4e0584c1e</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>180</act:code>
-  <act:description>180</act:description>
-  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:parent type="new">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Nicht einbezahltes Aktien-, Stamm-, Anteilschein- oder Stiftungskapital</act:name>
-  <act:id type="guid">126586438d5442f6be2cf49da35d3023</act:id>
+  <act:id type="new">126586438d5442f6be2cf49da35d3023</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>1850</act:code>
-  <act:description>1850</act:description>
-  <act:parent type="guid">160cf2bacf0e45328263e3e4e0584c1e</act:parent>
+  <act:parent type="new">160cf2bacf0e45328263e3e4e0584c1e</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Passiven</act:name>
-  <act:id type="guid">294235978d5d48508b11c17fc3a3742b</act:id>
+  <act:id type="new">294235978d5d48508b11c17fc3a3742b</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2</act:code>
-  <act:description>2</act:description>
-  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Kurzfristiges Fremdkapital</act:name>
-  <act:id type="guid">518d005b62f247ea8239409f2eaea223</act:id>
+  <act:id type="new">518d005b62f247ea8239409f2eaea223</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>20</act:code>
-  <act:description>20</act:description>
-  <act:parent type="guid">294235978d5d48508b11c17fc3a3742b</act:parent>
+  <act:parent type="new">294235978d5d48508b11c17fc3a3742b</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Verbindlichkeiten aus Lieferungen und Leistungen</act:name>
-  <act:id type="guid">ab39e01994b845fb94a6e95a6a454e0b</act:id>
+  <act:id type="new">ab39e01994b845fb94a6e95a6a454e0b</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>200</act:code>
-  <act:description>200</act:description>
-  <act:parent type="guid">518d005b62f247ea8239409f2eaea223</act:parent>
+  <act:parent type="new">518d005b62f247ea8239409f2eaea223</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Verbindlichkeiten aus Lieferungen und Leistungen (Kreditoren)</act:name>
-  <act:id type="guid">8d59aebe9a3948e4b994cb29b913e229</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">8d59aebe9a3948e4b994cb29b913e229</act:id>
+  <act:type>PAYABLE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2000</act:code>
-  <act:description>2000</act:description>
-  <act:parent type="guid">ab39e01994b845fb94a6e95a6a454e0b</act:parent>
+  <act:parent type="new">ab39e01994b845fb94a6e95a6a454e0b</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Erhaltene Anzahlungen</act:name>
-  <act:id type="guid">6703b28cdfab44f5986a5cf0fd7f35c1</act:id>
+  <act:id type="new">6703b28cdfab44f5986a5cf0fd7f35c1</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2030</act:code>
-  <act:description>2030</act:description>
-  <act:parent type="guid">ab39e01994b845fb94a6e95a6a454e0b</act:parent>
+  <act:parent type="new">ab39e01994b845fb94a6e95a6a454e0b</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Kurzfristige verzinsliche Verbindlichkeiten</act:name>
-  <act:id type="guid">78ccf5ae04854b00be1b2ce393a427a3</act:id>
+  <act:id type="new">78ccf5ae04854b00be1b2ce393a427a3</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>210</act:code>
-  <act:description>210</act:description>
-  <act:parent type="guid">518d005b62f247ea8239409f2eaea223</act:parent>
+  <act:parent type="new">518d005b62f247ea8239409f2eaea223</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Bankverbindlichkeiten</act:name>
-  <act:id type="guid">d0a8a51f74344c9ea18f2ae049099fc3</act:id>
+  <act:id type="new">d0a8a51f74344c9ea18f2ae049099fc3</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2100</act:code>
-  <act:description>2100</act:description>
-  <act:parent type="guid">78ccf5ae04854b00be1b2ce393a427a3</act:parent>
+  <act:parent type="new">78ccf5ae04854b00be1b2ce393a427a3</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Verbindlichkeiten aus Finanzierungsleasing</act:name>
-  <act:id type="guid">52da9c39b0fe4309896afdcfdf211e2c</act:id>
+  <act:id type="new">52da9c39b0fe4309896afdcfdf211e2c</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2120</act:code>
-  <act:description>2120</act:description>
-  <act:parent type="guid">78ccf5ae04854b00be1b2ce393a427a3</act:parent>
+  <act:parent type="new">78ccf5ae04854b00be1b2ce393a427a3</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ãœbrige verzinsliche Verbindlichkeiten</act:name>
-  <act:id type="guid">21a8e719e3f245eb8a9430f822ca766d</act:id>
+  <act:id type="new">21a8e719e3f245eb8a9430f822ca766d</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2140</act:code>
-  <act:description>2140</act:description>
-  <act:parent type="guid">78ccf5ae04854b00be1b2ce393a427a3</act:parent>
+  <act:parent type="new">78ccf5ae04854b00be1b2ce393a427a3</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ãœbrige kurzfristige Verbindlichkeiten</act:name>
-  <act:id type="guid">0062147bc2e54d3fb2d47340daaeb197</act:id>
+  <act:id type="new">0062147bc2e54d3fb2d47340daaeb197</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>220</act:code>
-  <act:description>220</act:description>
-  <act:parent type="guid">518d005b62f247ea8239409f2eaea223</act:parent>
+  <act:parent type="new">518d005b62f247ea8239409f2eaea223</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Geschuldete MWST (Umsatzsteuer)</act:name>
-  <act:id type="guid">3df14c48fea4401880cec2542179d78e</act:id>
+  <act:id type="new">3df14c48fea4401880cec2542179d78e</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2200</act:code>
-  <act:description>2200</act:description>
-  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+  <act:parent type="new">0062147bc2e54d3fb2d47340daaeb197</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Abrechnungskonto MWST</act:name>
-  <act:id type="guid">d53d7c11942a46d0980360e5e7167d1f</act:id>
+  <act:id type="new">d53d7c11942a46d0980360e5e7167d1f</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2201</act:code>
-  <act:description>2201</act:description>
-  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+  <act:parent type="new">0062147bc2e54d3fb2d47340daaeb197</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Verrechnungssteuer</act:name>
-  <act:id type="guid">4902b5e9fd254394b092bdac7d380ee8</act:id>
+  <act:id type="new">4902b5e9fd254394b092bdac7d380ee8</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2206</act:code>
-  <act:description>2206</act:description>
-  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+  <act:parent type="new">0062147bc2e54d3fb2d47340daaeb197</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Direkte Steuern</act:name>
-  <act:id type="guid">57cbb66f8fa14ee9b8db09aa6dbc0101</act:id>
+  <act:id type="new">57cbb66f8fa14ee9b8db09aa6dbc0101</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2208</act:code>
-  <act:description>2208</act:description>
-  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+  <act:parent type="new">0062147bc2e54d3fb2d47340daaeb197</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Sonstige kurzfristige Verbindlichkeiten</act:name>
-  <act:id type="guid">1caa50dbc0794127acae0b2627681b56</act:id>
+  <act:id type="new">1caa50dbc0794127acae0b2627681b56</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2210</act:code>
-  <act:description>2210</act:description>
-  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+  <act:parent type="new">0062147bc2e54d3fb2d47340daaeb197</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Beschlossene Ausschüttungen</act:name>
-  <act:id type="guid">dbab7e71720b45efad4b2ba093158939</act:id>
+  <act:id type="new">dbab7e71720b45efad4b2ba093158939</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2261</act:code>
-  <act:description>2261</act:description>
-  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+  <act:parent type="new">0062147bc2e54d3fb2d47340daaeb197</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Sozialversicherungen und Vorsorgeeinrichtungen</act:name>
-  <act:id type="guid">597d61cbc2fe4612b6af64059a795672</act:id>
+  <act:id type="new">597d61cbc2fe4612b6af64059a795672</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2270</act:code>
-  <act:description>2270</act:description>
-  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+  <act:parent type="new">0062147bc2e54d3fb2d47340daaeb197</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Quellensteuer</act:name>
-  <act:id type="guid">f844a18cbdf84120a763b309688087fa</act:id>
+  <act:id type="new">f844a18cbdf84120a763b309688087fa</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2279</act:code>
-  <act:description>2279</act:description>
-  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+  <act:parent type="new">0062147bc2e54d3fb2d47340daaeb197</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Passive Rechnungsabgrenzungen und kurzfristige Rückstellungen</act:name>
-  <act:id type="guid">a270ba393d11451bad379ba0d9f35787</act:id>
+  <act:id type="new">a270ba393d11451bad379ba0d9f35787</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>230</act:code>
-  <act:description>230</act:description>
-  <act:parent type="guid">518d005b62f247ea8239409f2eaea223</act:parent>
+  <act:parent type="new">518d005b62f247ea8239409f2eaea223</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Noch nicht bezahlter Aufwand</act:name>
-  <act:id type="guid">70427c3d46274bf28dbd4030b4fee653</act:id>
+  <act:id type="new">70427c3d46274bf28dbd4030b4fee653</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2300</act:code>
-  <act:description>2300</act:description>
-  <act:parent type="guid">a270ba393d11451bad379ba0d9f35787</act:parent>
+  <act:parent type="new">a270ba393d11451bad379ba0d9f35787</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Erhaltener Ertrag des Folgejahres</act:name>
-  <act:id type="guid">85bf526f7e6c446a9be5bacf09034e7b</act:id>
+  <act:id type="new">85bf526f7e6c446a9be5bacf09034e7b</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2301</act:code>
-  <act:description>2301</act:description>
-  <act:parent type="guid">a270ba393d11451bad379ba0d9f35787</act:parent>
+  <act:parent type="new">a270ba393d11451bad379ba0d9f35787</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Kurzfristige Rückstellungen</act:name>
-  <act:id type="guid">e54521e6300543c5979ef296329bd3ba</act:id>
+  <act:id type="new">e54521e6300543c5979ef296329bd3ba</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2330</act:code>
-  <act:description>2330</act:description>
-  <act:parent type="guid">a270ba393d11451bad379ba0d9f35787</act:parent>
+  <act:parent type="new">a270ba393d11451bad379ba0d9f35787</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Langfristiges Fremdkapital</act:name>
-  <act:id type="guid">e5e7a14ef75e4d3bb30c6e8d185a4288</act:id>
+  <act:id type="new">e5e7a14ef75e4d3bb30c6e8d185a4288</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>24</act:code>
-  <act:description>24</act:description>
-  <act:parent type="guid">294235978d5d48508b11c17fc3a3742b</act:parent>
+  <act:parent type="new">294235978d5d48508b11c17fc3a3742b</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Langfristige verzinsliche Verbindlichkeiten</act:name>
-  <act:id type="guid">722dc33a7f5c450683c8ceb182caff33</act:id>
+  <act:id type="new">722dc33a7f5c450683c8ceb182caff33</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>240</act:code>
-  <act:description>240</act:description>
-  <act:parent type="guid">e5e7a14ef75e4d3bb30c6e8d185a4288</act:parent>
+  <act:parent type="new">e5e7a14ef75e4d3bb30c6e8d185a4288</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Bankverbindlichkeiten</act:name>
-  <act:id type="guid">1d1932966fe84c7d9d1b69c3d5de56da</act:id>
+  <act:id type="new">1d1932966fe84c7d9d1b69c3d5de56da</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2400</act:code>
-  <act:description>2400</act:description>
-  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+  <act:parent type="new">722dc33a7f5c450683c8ceb182caff33</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Verbindlichkeiten aus Finanzierungsleasing</act:name>
-  <act:id type="guid">0d9782c1f3674163bd57a79dda6db114</act:id>
+  <act:id type="new">0d9782c1f3674163bd57a79dda6db114</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2420</act:code>
-  <act:description>2420</act:description>
-  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+  <act:parent type="new">722dc33a7f5c450683c8ceb182caff33</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Darlehen</act:name>
-  <act:id type="guid">0e788cacedc7435a9bc364996b55c2bb</act:id>
+  <act:id type="new">0e788cacedc7435a9bc364996b55c2bb</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2450</act:code>
-  <act:description>2450</act:description>
-  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+  <act:parent type="new">722dc33a7f5c450683c8ceb182caff33</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Obligationenanleihen</act:name>
-  <act:id type="guid">33c4e2da22d04abf94a6f8b66c12d125</act:id>
+  <act:id type="new">33c4e2da22d04abf94a6f8b66c12d125</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2430</act:code>
-  <act:description>2430</act:description>
-  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+  <act:parent type="new">722dc33a7f5c450683c8ceb182caff33</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Hypotheken</act:name>
-  <act:id type="guid">59af9b1c47b1481faa831f2e9486ee78</act:id>
+  <act:id type="new">59af9b1c47b1481faa831f2e9486ee78</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2451</act:code>
-  <act:description>2451</act:description>
-  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+  <act:parent type="new">722dc33a7f5c450683c8ceb182caff33</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ãœbrige langfristige Verbindlichkeiten</act:name>
-  <act:id type="guid">e28344b55f234a64afe228884b9bef81</act:id>
+  <act:id type="new">e28344b55f234a64afe228884b9bef81</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>250</act:code>
-  <act:description>250</act:description>
-  <act:parent type="guid">e5e7a14ef75e4d3bb30c6e8d185a4288</act:parent>
+  <act:parent type="new">e5e7a14ef75e4d3bb30c6e8d185a4288</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ãœbrige langfristige Verbindlichkeiten (unverzinslich)</act:name>
-  <act:id type="guid">2632ae5a632a4214860adc582d630d89</act:id>
+  <act:id type="new">2632ae5a632a4214860adc582d630d89</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2500</act:code>
-  <act:description>2500</act:description>
-  <act:parent type="guid">e28344b55f234a64afe228884b9bef81</act:parent>
+  <act:parent type="new">e28344b55f234a64afe228884b9bef81</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Rückstellungen sowie vom Gesetz vorgesehene ähnliche Positionen</act:name>
-  <act:id type="guid">52e84a57d83b4f6aa0b57823943be630</act:id>
+  <act:id type="new">52e84a57d83b4f6aa0b57823943be630</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>260</act:code>
-  <act:description>260</act:description>
-  <act:parent type="guid">e5e7a14ef75e4d3bb30c6e8d185a4288</act:parent>
+  <act:parent type="new">e5e7a14ef75e4d3bb30c6e8d185a4288</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Rückstellungen</act:name>
-  <act:id type="guid">883bf9dc29bf4f73ac88c9bfa3221a5d</act:id>
+  <act:id type="new">883bf9dc29bf4f73ac88c9bfa3221a5d</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2600</act:code>
-  <act:description>2600</act:description>
-  <act:parent type="guid">52e84a57d83b4f6aa0b57823943be630</act:parent>
+  <act:parent type="new">52e84a57d83b4f6aa0b57823943be630</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Eigenkapital (juristische Personen)</act:name>
-  <act:id type="guid">82143ea43dcd4cdbbf5b469c0773f9b6</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">82143ea43dcd4cdbbf5b469c0773f9b6</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>28</act:code>
-  <act:description>28</act:description>
-  <act:parent type="guid">294235978d5d48508b11c17fc3a3742b</act:parent>
+    <act:description>Teil von Passiven</act:description>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+      <slot>
+        <slot:key>notes</slot:key>
+        <slot:value type="string">https://bugs.gnucash.org/show_bug.cgi?id=421766</slot:value>
+      </slot>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Grund-, Gesellschafter- oder Stiftungskapital</act:name>
-  <act:id type="guid">4f942372d53b486e985f0524ef484a48</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">4f942372d53b486e985f0524ef484a48</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>280</act:code>
-  <act:description>280</act:description>
-  <act:parent type="guid">82143ea43dcd4cdbbf5b469c0773f9b6</act:parent>
+  <act:parent type="new">82143ea43dcd4cdbbf5b469c0773f9b6</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Aktien-, Stamm-, Anteilschein- oder Stiftungskapital</act:name>
-  <act:id type="guid">920c76782e364787b20faddddcc356fe</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">920c76782e364787b20faddddcc356fe</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2800</act:code>
-  <act:description>2800</act:description>
-  <act:parent type="guid">4f942372d53b486e985f0524ef484a48</act:parent>
+  <act:parent type="new">4f942372d53b486e985f0524ef484a48</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Reserven und Jahresgewinn oder Jahresverlus</act:name>
-  <act:id type="guid">35e6318959294d84994376047bef94a7</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">35e6318959294d84994376047bef94a7</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>290</act:code>
-  <act:description>290</act:description>
-  <act:parent type="guid">82143ea43dcd4cdbbf5b469c0773f9b6</act:parent>
+  <act:parent type="new">82143ea43dcd4cdbbf5b469c0773f9b6</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Gesetzliche Kapitalreserve</act:name>
-  <act:id type="guid">8675198475f143f3b840fe9822bf097b</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">8675198475f143f3b840fe9822bf097b</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2900</act:code>
-  <act:description>2900</act:description>
-  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+  <act:parent type="new">35e6318959294d84994376047bef94a7</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Aufwertungsreserve</act:name>
-  <act:id type="guid">8918ab18185146bca6db267cf17dbba5</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">8918ab18185146bca6db267cf17dbba5</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2940</act:code>
-  <act:description>2940</act:description>
-  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+  <act:parent type="new">35e6318959294d84994376047bef94a7</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Gesetzliche Gewinnreserve</act:name>
-  <act:id type="guid">984b64f48ab74d30a2c1d8d259ab817b</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">984b64f48ab74d30a2c1d8d259ab817b</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2950</act:code>
-  <act:description>2950</act:description>
-  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+  <act:parent type="new">35e6318959294d84994376047bef94a7</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Freiwillige Gewinnreserven</act:name>
-  <act:id type="guid">6fa91e39a5f7488cb7d04fc6c2a56810</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">6fa91e39a5f7488cb7d04fc6c2a56810</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2960</act:code>
-  <act:description>2960</act:description>
-  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+  <act:parent type="new">35e6318959294d84994376047bef94a7</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Gewinnvortrag oder Verlustvortrag</act:name>
-  <act:id type="guid">780726e389184e1ab7f7fbfe16d5f17b</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">780726e389184e1ab7f7fbfe16d5f17b</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2970</act:code>
-  <act:description>2970</act:description>
-  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+  <act:parent type="new">35e6318959294d84994376047bef94a7</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Jahresgewinn oder Jahresverlust</act:name>
-  <act:id type="guid">9bb074b99e4d4a40b9151c2289c10073</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">9bb074b99e4d4a40b9151c2289c10073</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2979</act:code>
-  <act:description>2979</act:description>
-  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+  <act:parent type="new">35e6318959294d84994376047bef94a7</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Eigene Aktien, Stammanteile oder Anteilscheine (Minusposten)</act:name>
-  <act:id type="guid">4df7a3d99e0e407796920758f2708f7d</act:id>
-  <act:type>LIABILITY</act:type>
+  <act:id type="new">4df7a3d99e0e407796920758f2708f7d</act:id>
+  <act:type>EQUITY</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>2980</act:code>
-  <act:description>2980</act:description>
-  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+  <act:parent type="new">35e6318959294d84994376047bef94a7</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Betrieblicher Ertrag aus Lieferungen und Leistungen</act:name>
-  <act:id type="guid">112eb0f3756a430aa69b0907a54e0901</act:id>
+  <act:id type="new">112eb0f3756a430aa69b0907a54e0901</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3</act:code>
-  <act:description>3</act:description>
-  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Produktionserlöse</act:name>
-  <act:id type="guid">cf1a254d6a7f4a8880971b2c63302ac8</act:id>
+  <act:id type="new">cf1a254d6a7f4a8880971b2c63302ac8</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3000</act:code>
-  <act:description>3000</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Handelserlöse</act:name>
-  <act:id type="guid">283b5946ac854e458023ac02dec55e16</act:id>
+  <act:id type="new">283b5946ac854e458023ac02dec55e16</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3200</act:code>
-  <act:description>3200</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Dienstleistungserlöse</act:name>
-  <act:id type="guid">0605c6e4a0fb4fefa3ab69327afa9b39</act:id>
+  <act:id type="new">0605c6e4a0fb4fefa3ab69327afa9b39</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3400</act:code>
-  <act:description>3400</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Übrige Erlöse aus Lieferungen und Leistungen</act:name>
-  <act:id type="guid">ffadde9940ad4cf0b9654f0823c5d351</act:id>
+  <act:id type="new">ffadde9940ad4cf0b9654f0823c5d351</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3600</act:code>
-  <act:description>3600</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Eigenleistungen</act:name>
-  <act:id type="guid">7664026179364bcc979394ae4918b019</act:id>
+  <act:id type="new">7664026179364bcc979394ae4918b019</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3700</act:code>
-  <act:description>3700</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Erlösminderungen</act:name>
-  <act:id type="guid">f381d3cda1c34bf0a3444dab963b2343</act:id>
+  <act:id type="new">f381d3cda1c34bf0a3444dab963b2343</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3800</act:code>
-  <act:description>3800</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Verluste Forderungen (Debitoren), Veränderung Delkredere</act:name>
-  <act:id type="guid">02a04d06c1334dfb8af05d9ad161d138</act:id>
+  <act:id type="new">02a04d06c1334dfb8af05d9ad161d138</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3805</act:code>
-  <act:description>3805</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Eigenverbrauch</act:name>
-  <act:id type="guid">f22875f5c5ff446bb3e3dcbc6b0607cb</act:id>
+  <act:id type="new">f22875f5c5ff446bb3e3dcbc6b0607cb</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3710</act:code>
-  <act:description>3710</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Bestandesänderungen unfertige Erzeugnisse</act:name>
-  <act:id type="guid">2ada001a61514bfb9b2852aee6fec360</act:id>
+  <act:id type="new">2ada001a61514bfb9b2852aee6fec360</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3900</act:code>
-  <act:description>3900</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Bestandesänderungen fertige Erzeugnisse</act:name>
-  <act:id type="guid">821e9e8a464b43c2b521a8400f469212</act:id>
+  <act:id type="new">821e9e8a464b43c2b521a8400f469212</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3901</act:code>
-  <act:description>3901</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Bestandesänderungen nicht fakturierte Dienstleistungen</act:name>
-  <act:id type="guid">b3a8192ccee440c1a0d34662682cced9</act:id>
+  <act:id type="new">b3a8192ccee440c1a0d34662682cced9</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>3940</act:code>
-  <act:description>3940</act:description>
-  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+  <act:parent type="new">112eb0f3756a430aa69b0907a54e0901</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Aufwand für Material, Handelswaren, Dienstleistungen und Energie</act:name>
-  <act:id type="guid">fbb69d024c454632948625450e3f56a6</act:id>
+  <act:id type="new">fbb69d024c454632948625450e3f56a6</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>4</act:code>
-  <act:description>4</act:description>
-  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Materialaufwand Produktion</act:name>
-  <act:id type="guid">62954e9240e242e7886e82a2fe9075dc</act:id>
+  <act:id type="new">62954e9240e242e7886e82a2fe9075dc</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>4000</act:code>
-  <act:description>4000</act:description>
-  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+  <act:parent type="new">fbb69d024c454632948625450e3f56a6</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Handelswarenaufwand</act:name>
-  <act:id type="guid">69513288a86f4fa09247ce3550b8b5e2</act:id>
+  <act:id type="new">69513288a86f4fa09247ce3550b8b5e2</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>4200</act:code>
-  <act:description>4200</act:description>
-  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+  <act:parent type="new">fbb69d024c454632948625450e3f56a6</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Aufwand für bezogene Dienstleistungen</act:name>
-  <act:id type="guid">286ea0c72e664134869eb7040cc1b2fa</act:id>
+  <act:id type="new">286ea0c72e664134869eb7040cc1b2fa</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>4400</act:code>
-  <act:description>4400</act:description>
-  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+  <act:parent type="new">fbb69d024c454632948625450e3f56a6</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Energieaufwand zur Leistungserstellung</act:name>
-  <act:id type="guid">a8cb56ff219440f091f260f272a7e111</act:id>
+  <act:id type="new">a8cb56ff219440f091f260f272a7e111</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>4500</act:code>
-  <act:description>4500</act:description>
-  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+  <act:parent type="new">fbb69d024c454632948625450e3f56a6</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Aufwandminderungen</act:name>
-  <act:id type="guid">9336a497814046b0a9fa219b4333bd03</act:id>
+  <act:id type="new">9336a497814046b0a9fa219b4333bd03</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>4900</act:code>
-  <act:description>4900</act:description>
-  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+  <act:parent type="new">fbb69d024c454632948625450e3f56a6</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Personalaufwand</act:name>
-  <act:id type="guid">c2d5092240de4a058420e649983d6e6d</act:id>
+  <act:id type="new">c2d5092240de4a058420e649983d6e6d</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>5</act:code>
-  <act:description>5</act:description>
-  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Lohnaufwand</act:name>
-  <act:id type="guid">3dd4ad61f7bb46c89e09f75619633b3b</act:id>
+  <act:id type="new">3dd4ad61f7bb46c89e09f75619633b3b</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>5000</act:code>
-  <act:description>5000</act:description>
-  <act:parent type="guid">c2d5092240de4a058420e649983d6e6d</act:parent>
+  <act:parent type="new">c2d5092240de4a058420e649983d6e6d</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Sozialversicherungsaufwand</act:name>
-  <act:id type="guid">3e476a14f60940599d5da6ea47c57260</act:id>
+  <act:id type="new">3e476a14f60940599d5da6ea47c57260</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>5700</act:code>
-  <act:description>5700</act:description>
-  <act:parent type="guid">c2d5092240de4a058420e649983d6e6d</act:parent>
+  <act:parent type="new">c2d5092240de4a058420e649983d6e6d</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ãœbriger Personalaufwand</act:name>
-  <act:id type="guid">d3a29ff165704fa9ad4dd970189effab</act:id>
+  <act:id type="new">d3a29ff165704fa9ad4dd970189effab</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>5800</act:code>
-  <act:description>5800</act:description>
-  <act:parent type="guid">c2d5092240de4a058420e649983d6e6d</act:parent>
+  <act:parent type="new">c2d5092240de4a058420e649983d6e6d</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Leistungen Dritter</act:name>
-  <act:id type="guid">5dd9a5822b06481d805756c18293bfdd</act:id>
+  <act:id type="new">5dd9a5822b06481d805756c18293bfdd</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>5900</act:code>
-  <act:description>5900</act:description>
-  <act:parent type="guid">c2d5092240de4a058420e649983d6e6d</act:parent>
+  <act:parent type="new">c2d5092240de4a058420e649983d6e6d</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ãœbriger betrieblicher Aufwand, Abschreibungen und Wertberichtigungen sowie Finanzergebnis</act:name>
-  <act:id type="guid">17ef00426d0b4066ad5297325ecf16a4</act:id>
+  <act:id type="new">17ef00426d0b4066ad5297325ecf16a4</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6</act:code>
-  <act:description>6</act:description>
-  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Raumaufwand</act:name>
-  <act:id type="guid">6fd08c95e4d842d988fdf2ac76914781</act:id>
+  <act:id type="new">6fd08c95e4d842d988fdf2ac76914781</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6000</act:code>
-  <act:description>6000</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Unterhalt, Reparaturen, Ersatz mobile Sachanlagen</act:name>
-  <act:id type="guid">cfc48367c9614fa5b323f170141c1114</act:id>
+  <act:id type="new">cfc48367c9614fa5b323f170141c1114</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6100</act:code>
-  <act:description>6100</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Fahrzeug- und Transportaufwand</act:name>
-  <act:id type="guid">22936c9ba2bb497fb8189982dc498482</act:id>
+  <act:id type="new">22936c9ba2bb497fb8189982dc498482</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6200</act:code>
-  <act:description>6200</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Sachversicherungen, Abgaben, Gebühren, Bewilligungen</act:name>
-  <act:id type="guid">a82f018d74944c638d39c34b92d384d1</act:id>
+  <act:id type="new">a82f018d74944c638d39c34b92d384d1</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6300</act:code>
-  <act:description>6300</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Energie- und Entsorgungsaufwand</act:name>
-  <act:id type="guid">a845f9c9f0214c438ca1b3a0ecadd338</act:id>
+  <act:id type="new">a845f9c9f0214c438ca1b3a0ecadd338</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6400</act:code>
-  <act:description>6400</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Verwaltungsaufwand</act:name>
-  <act:id type="guid">be254bd0442f411294580dcade4518a1</act:id>
+  <act:id type="new">be254bd0442f411294580dcade4518a1</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6500</act:code>
-  <act:description>6500</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Werbeaufwand</act:name>
-  <act:id type="guid">88881f27434d467eafdb411015df811f</act:id>
+  <act:id type="new">88881f27434d467eafdb411015df811f</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6600</act:code>
-  <act:description>6600</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Sonstiger betrieblicher Aufwand</act:name>
-  <act:id type="guid">40ae3f3a0d61437eaa9b3e3274b1957f</act:id>
+  <act:id type="new">40ae3f3a0d61437eaa9b3e3274b1957f</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6700</act:code>
-  <act:description>6700</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Abschreibungen und Wertberichtigungen auf Positionen des Anlagevermögens</act:name>
-  <act:id type="guid">f9aa84463ff2462498ea60128f9114fe</act:id>
+  <act:id type="new">f9aa84463ff2462498ea60128f9114fe</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6800</act:code>
-  <act:description>6800</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Leasingaufwand mobile Sachanlagen</act:name>
-  <act:id type="guid">60ba0279f36e46fa912c72206ed91b75</act:id>
+  <act:id type="new">60ba0279f36e46fa912c72206ed91b75</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6105</act:code>
-  <act:description>6105</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Informatikaufwand inkl. Leasing</act:name>
-  <act:id type="guid">6f27632a88df484fb21253cbf8e0cc95</act:id>
+  <act:id type="new">6f27632a88df484fb21253cbf8e0cc95</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6570</act:code>
-  <act:description>6570</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Finanzaufwand</act:name>
-  <act:id type="guid">ddd87c65af9b471687873e3f6c255086</act:id>
+  <act:id type="new">ddd87c65af9b471687873e3f6c255086</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6900</act:code>
-  <act:description>6900</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Finanzertrag</act:name>
-  <act:id type="guid">85ea8bc334c247b39ec7a279738c6037</act:id>
+  <act:id type="new">85ea8bc334c247b39ec7a279738c6037</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>6950</act:code>
-  <act:description>6950</act:description>
-  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+  <act:parent type="new">17ef00426d0b4066ad5297325ecf16a4</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Betrieblicher Nebenerfolg</act:name>
-  <act:id type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:id>
+  <act:id type="new">ff17758ba51149a3a16c2e50f4dd12f3</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>7</act:code>
-  <act:description>7</act:description>
-  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ertrag Nebenbetrieb</act:name>
-  <act:id type="guid">c8c43650635e436ea24b4c03dc1d19ad</act:id>
+  <act:id type="new">c8c43650635e436ea24b4c03dc1d19ad</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>7000</act:code>
-  <act:description>7000</act:description>
-  <act:parent type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
+  <act:parent type="new">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ertrag betriebliche Liegenschaft</act:name>
-  <act:id type="guid">b741158e82af43a983a729b6964f48c4</act:id>
+  <act:id type="new">b741158e82af43a983a729b6964f48c4</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>7500</act:code>
-  <act:description>7500</act:description>
-  <act:parent type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
+  <act:parent type="new">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Aufwand betriebliche Liegenschaft</act:name>
-  <act:id type="guid">5ba3c1d4c947457c92d7192079c58e93</act:id>
+  <act:id type="new">5ba3c1d4c947457c92d7192079c58e93</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>7510</act:code>
-  <act:description>7510</act:description>
-  <act:parent type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
+  <act:parent type="new">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Aufwand Nebenbetrieb</act:name>
-  <act:id type="guid">2c9626ccfeb14b52b68b48c5f6312e0f</act:id>
+  <act:id type="new">2c9626ccfeb14b52b68b48c5f6312e0f</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>7010</act:code>
-  <act:description>7010</act:description>
-  <act:parent type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
+  <act:parent type="new">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Betriebsfremder, ausserordentlicher, einmaliger oder perioden-fremder Aufwand und Ertrag</act:name>
-  <act:id type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:id>
+  <act:id type="new">67be6ac625cc4b8f8ee6706b0434a335</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>8</act:code>
-  <act:description>8</act:description>
-  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Betriebsfremder Aufwand</act:name>
-  <act:id type="guid">903948bc18da4853a4616dbfaa0c1a3e</act:id>
+  <act:id type="new">903948bc18da4853a4616dbfaa0c1a3e</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>8000</act:code>
-  <act:description>8000</act:description>
-  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+  <act:parent type="new">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Direkte Steuern</act:name>
-  <act:id type="guid">1df187c1bb304c159923780dd417c729</act:id>
+  <act:id type="new">1df187c1bb304c159923780dd417c729</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>8900</act:code>
-  <act:description>8900</act:description>
-  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+  <act:parent type="new">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Betriebsfremder Ertrag</act:name>
-  <act:id type="guid">6c9b91aa0b794904a03805bcffbb6744</act:id>
+  <act:id type="new">6c9b91aa0b794904a03805bcffbb6744</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>8100</act:code>
-  <act:description>8100</act:description>
-  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+  <act:parent type="new">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ausserordentlicher, einmaliger oder periodenfremder Aufwand</act:name>
-  <act:id type="guid">e3b24b1150134fa598bcf620da52a2e6</act:id>
+  <act:id type="new">e3b24b1150134fa598bcf620da52a2e6</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>8500</act:code>
-  <act:description>8500</act:description>
-  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+  <act:parent type="new">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Ausserordentlicher, einmaliger oder periodenfremder Ertrag</act:name>
-  <act:id type="guid">7e43a5e29f77460dbda26d475492bd52</act:id>
+  <act:id type="new">7e43a5e29f77460dbda26d475492bd52</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>8510</act:code>
-  <act:description>8510</act:description>
-  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+  <act:parent type="new">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Abschluss</act:name>
-  <act:id type="guid">99c8d4fa6bac4de0b2d505f65e9b8c6b</act:id>
+  <act:id type="new">99c8d4fa6bac4de0b2d505f65e9b8c6b</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>9</act:code>
-  <act:description>9</act:description>
-  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:parent type="new">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Jahresgewinn oder Jahresverlust</act:name>
-  <act:id type="guid">3b10783f477e440b971e3dce693236e5</act:id>
+  <act:id type="new">3b10783f477e440b971e3dce693236e5</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>9200</act:code>
-  <act:description>9200</act:description>
-  <act:parent type="guid">99c8d4fa6bac4de0b2d505f65e9b8c6b</act:parent>
+  <act:parent type="new">99c8d4fa6bac4de0b2d505f65e9b8c6b</act:parent>
 </gnc:account>
 <gnc:account version="2.0.0">
   <act:name>Hilfskonten Gewinnverwendung</act:name>
-  <act:id type="guid">be48f890d33444f883f41069641daaa3</act:id>
+  <act:id type="new">be48f890d33444f883f41069641daaa3</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
     <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
   <act:code>920</act:code>
-  <act:description>920</act:description>
-  <act:parent type="guid">3b10783f477e440b971e3dce693236e5</act:parent>
+  <act:parent type="new">3b10783f477e440b971e3dce693236e5</act:parent>
+  <act:slots>
+    <slot>
+      <slot:key>placeholder</slot:key>
+      <slot:value type="string">true</slot:value>
+    </slot>
+  </act:slots>
 </gnc:account>
 </gnc-account-example>
 

commit 427368eafd42a06b08f383620b966c62e49c5bbd
Merge: dd1812892 321a74c81
Author: Geert Janssens <geert at kobaltwit.be>
Date:   Tue Feb 18 14:52:02 2020 +0100

    Merge PR#640


commit dd1812892747e37bacff1bb428c8bda4a98fc2c2
Author: Geert Janssens <geert at kobaltwit.be>
Date:   Mon Feb 17 14:13:18 2020 +0100

    Tweak appdata file generation some more
    
    Should make it easier for packagers to provide their own releases data.

diff --git a/CMakeLists.txt b/CMakeLists.txt
index fe7a38b8b..e20d0e2d7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -62,9 +62,15 @@ option (DISABLE_DEPRECATED_GNOME "don't use deprecated gnome functions" OFF)
 # Use gsettings-desktop-schemas for a better integration with GNOME
 set(COMPILE_GSCHEMAS ON CACHE BOOL "Compile the GSettings schema")
 
-set(GNUCASH_BUILD_ID "" CACHE STRING "Overrides the GnuCash build identification (Build ID) which defaults to a description of the vcs commit from which gnucash is built. Distributions may want to insert a package management based version number instead")
 # GENERATE_SWIG_WRAPPERS - Controls whether to generate the swig wrappers for guile and python. If not set the wrappers will only be generated when building from a git worktree, commented out here, but will be evaluated later on in this file
 
+# Support for downstream packagers
+set(GNUCASH_BUILD_ID "" CACHE STRING "Overrides the GnuCash build identification (Build ID) which defaults to a description of the vcs commit from which gnucash is built. Distributions may want to insert a package management based version number instead")
+# In addition to the GNUCASH_BUILD_ID environment variable, packagers can overwrite
+# gnucash/gnome/gnucash.releases.xml with (package) release details to be included
+# in the appdata file. It should follow appdata <release> node conventions.
+
+
 # Check that all of the absolute install paths are inside
 # ${CMAKE_INSTALL_PREFIX}. If they're not, disable binreloc as it
 # won't be able to find paths that aren't relative to the location of
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
index a72d38f80..c8aa8da9f 100644
--- a/cmake/CMakeLists.txt
+++ b/cmake/CMakeLists.txt
@@ -9,6 +9,6 @@ endif()
 
 
 set_dist_list(cmake_DIST CMakeLists.txt README_CMAKE.txt cmake_uninstall.cmake.in
-    insert-vcs-data.cmake configure-manpage.cmake git2version-info.cmake
-    version-info2env.cmake
+    configure-appdata.cmake configure-gnucash-desktop.cmake configure-manpage.cmake
+    git2version-info.cmake version-info2env.cmake
 )
diff --git a/cmake/configure-appdata.cmake b/cmake/configure-appdata.cmake
new file mode 100644
index 000000000..c5ddeacdc
--- /dev/null
+++ b/cmake/configure-appdata.cmake
@@ -0,0 +1,33 @@
+# Command to configure the gnucash appdata file
+# These commands are stored in a separate cmake file as they have to be
+# rerun depending on build conditions, not depending on cmake conditions
+# (such as did the version string change or not)
+#
+# Logic is as follows:
+# - the source file <current-source-dir>/releases.xml will be
+#   configured with version information found in gnc-vcs-info.h
+#   and an optional GNUCASH_BUILD_ID variable
+# - the result of this configuration will be applied to the
+#   appdata input file
+# The default releases.xml file will just be a single release line in
+# appdata <release> node format. Handling this in a separate file allows
+# packagers to override it to supply their own (package) release details.
+#
+# The following environment variables are used and should be properly set
+# by the calling code:
+# - SRC_DIR (top level source code directory)
+# - SRC (full path to gnucash.appdata.xml.in)
+# - DST (full path to destination for gnucash.appdata.xml)
+# - REL_FILE (path to file containg (packaging) release info)
+# - VCS_INFO_FILE (full path to gnc-vcs-info.h - can be in source tree (release builds) or build tree (git builds))
+# - GNUCASH_BUILD_ID (optional, extra version information supplied by packagers)
+
+include (${SRC_DIR}/cmake/version-info2env.cmake)
+versioninfo2env (${VCS_INFO_FILE})
+if (GNUCASH_BUILD_ID AND NOT "${GNUCASH_BUILD_ID}" STREQUAL "${GNC_VCS_REV}")
+    set (GNC_VCS_REV "${GNC_VCS_REV} (${GNUCASH_BUILD_ID})")
+endif()
+
+file (READ ${REL_FILE} REL_INFO_IN)
+string(CONFIGURE "${REL_INFO_IN}" REL_INFO)
+configure_file(${SRC} ${DST})
diff --git a/cmake/insert-vcs-data.cmake b/cmake/configure-gnucash-desktop.cmake
similarity index 75%
rename from cmake/insert-vcs-data.cmake
rename to cmake/configure-gnucash-desktop.cmake
index bcd95ffd3..d55d05b60 100644
--- a/cmake/insert-vcs-data.cmake
+++ b/cmake/configure-gnucash-desktop.cmake
@@ -1,4 +1,4 @@
-# Command to configure the gnucash appdata file
+# Command to configure the gnucash desktop file
 # These commands are stored in a separate cmake file as they have to be
 # rerun depending on build conditions, not depending on cmake conditions
 # (such as did the version string change or not)
@@ -6,10 +6,10 @@
 # The following environment variables are used and should be properly set
 # by the calling code:
 # - SRC_DIR (top level source code directory)
-# - SRC (full path to gnc-vcs-info.h.in)
-# - DST (full path to destination for gnc-vcs-info.h)
+# - SRC (full path to gnucash.desktop.in)
+# - DST (full path to destination for gnucash.desktop)
 # - VCS_INFO_FILE (full path to gnc-vcs-info.h - can be in source tree (release builds) or build tree (git builds))
-# - DATADIR_BUILD (path to applicication data directory, typically {CMAKE_BINARY_DIR}/share)
+# - DATADIR_BUILD (path to application data directory, typically {CMAKE_BINARY_DIR}/share)
 
 include (${SRC_DIR}/cmake/version-info2env.cmake)
 versioninfo2env (${VCS_INFO_FILE})
diff --git a/gnucash/gnome/CMakeLists.txt b/gnucash/gnome/CMakeLists.txt
index 2dee01035..fcec8b854 100644
--- a/gnucash/gnome/CMakeLists.txt
+++ b/gnucash/gnome/CMakeLists.txt
@@ -183,14 +183,14 @@ endif()
 
 add_custom_command(
     OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/gnucash.appdata.xml
-    DEPENDS ${GNC_APPDATA_IN} ${VCS_INFO_FILE}
+    DEPENDS ${GNC_APPDATA_IN} ${VCS_INFO_FILE} ${CMAKE_CURRENT_SOURCE_DIR}/gnucash.releases.xml
     COMMAND ${CMAKE_COMMAND} -D SRC=${GNC_APPDATA_IN}
                              -D DST=${CMAKE_CURRENT_BINARY_DIR}/gnucash.appdata.xml
                              -D VCS_INFO_FILE=${VCS_INFO_FILE}
                              -D GNUCASH_BUILD_ID=${GNUCASH_BUILD_ID}
-                             -D PROJECT_VERSION=${PROJECT_VERSION}
                              -D SRC_DIR=${CMAKE_SOURCE_DIR}
-                             -P ${CMAKE_SOURCE_DIR}/cmake/insert-vcs-data.cmake)
+                             -D REL_FILE=${CMAKE_CURRENT_SOURCE_DIR}/gnucash.releases.xml
+                             -P ${CMAKE_SOURCE_DIR}/cmake/configure-appdata.cmake)
 
 add_custom_target(gnucash-appdata ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/gnucash.appdata.xml)
 
@@ -234,7 +234,7 @@ add_custom_command (
                              -D VCS_INFO_FILE=${VCS_INFO_FILE}
                              -D PROJECT_VERSION=${PROJECT_VERSION}
                              -D SRC_DIR=${CMAKE_SOURCE_DIR}
-                             -P ${CMAKE_SOURCE_DIR}/cmake/insert-vcs-data.cmake)
+                             -P ${CMAKE_SOURCE_DIR}/cmake/configure-gnucash-desktop.cmake)
 
 add_custom_target(gnucash-desktop ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/gnucash.desktop)
 
@@ -242,5 +242,5 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/gnucash.desktop DESTINATION  ${CMAKE_I
 
 set_dist_list(gnome_DIST
         CMakeLists.txt gnome.i gnucash.appdata.xml.in.in gnucash.desktop.in.in
-        ${gnc_gnome_noinst_HEADERS} ${gnc_gnome_SOURCES})
+        gnucash.releases.xml ${gnc_gnome_noinst_HEADERS} ${gnc_gnome_SOURCES})
 dist_add_generated(${BUILDING_FROM_VCS} gnucash.appdata.xml.in gnucash.desktop.in)
diff --git a/gnucash/gnome/gnucash.appdata.xml.in.in b/gnucash/gnome/gnucash.appdata.xml.in.in
index 008c4f8ce..cd4da3599 100644
--- a/gnucash/gnome/gnucash.appdata.xml.in.in
+++ b/gnucash/gnome/gnucash.appdata.xml.in.in
@@ -35,7 +35,7 @@
   <metadata_license>CC0-1.0</metadata_license>
   <project_license>GPL-2.0+</project_license>
   <releases>
-      <release date="${GNC_VCS_REV_DATE}" version="${GNC_VCS_REV}" />
+${REL_INFO}
   </releases>
 
   <screenshots>
diff --git a/gnucash/gnome/gnucash.releases.xml b/gnucash/gnome/gnucash.releases.xml
new file mode 100644
index 000000000..d196d7933
--- /dev/null
+++ b/gnucash/gnome/gnucash.releases.xml
@@ -0,0 +1 @@
+<release date="${GNC_VCS_REV_DATE}" version="${GNC_VCS_REV}" />

commit 321a74c81b0fc680ae5776618c32a56036555d73
Author: Rob Laan <rob.laan at chello.nl>
Date:   Thu Jan 30 17:51:12 2020 +0100

    Bug 797570 Import Customers/Vendors, Bills/Invoices: dialog with not imported rows does not expand with window size
    
    In the import of Customer/Vendors en Bills/Invoice, the dialog that lists rows that were not imported shows a scrollable view of only four rows.
    The view does not use the available space of the window, and does not expand with resizing the window. This change fixes this issue.
    In the same functionalities, the dialog for a user defined regular expression has a similar issue. This changes also fixes that issue.

diff --git a/gnucash/import-export/bi-import/dialog-bi-import-gui.c b/gnucash/import-export/bi-import/dialog-bi-import-gui.c
index 94a864923..e2154d3e8 100644
--- a/gnucash/import-export/bi-import/dialog-bi-import-gui.c
+++ b/gnucash/import-export/bi-import/dialog-bi-import-gui.c
@@ -425,14 +425,14 @@ gnc_input_dialog (GtkWidget *parent, const gchar *title, const gchar *msg, const
 
     // add a label
     label = gtk_label_new (msg);
-    gtk_container_add (GTK_CONTAINER (content_area), label);
+    gtk_box_pack_start(GTK_BOX(content_area), label, FALSE, FALSE, 0);
 
     // add a textview
     view = gtk_text_view_new ();
     gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (view), GTK_WRAP_WORD_CHAR);
     buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
     gtk_text_buffer_set_text (buffer, default_input, -1);
-    gtk_container_add (GTK_CONTAINER (content_area), view);
+    gtk_box_pack_start(GTK_BOX(content_area), view, TRUE, TRUE, 0);
 
     // run the dialog
     gtk_widget_show_all (dialog);
@@ -482,11 +482,10 @@ gnc_info2_dialog (GtkWidget *parent, const gchar *title, const gchar *msg)
 
     // add a scroll area
     scrolledwindow = gtk_scrolled_window_new (NULL, NULL);
-    gtk_container_add (GTK_CONTAINER (content_area), scrolledwindow);
+    gtk_box_pack_start(GTK_BOX(content_area), scrolledwindow, TRUE, TRUE, 0);
 
     // add a textview
     view = gtk_text_view_new ();
-//    gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (view), GTK_WRAP_WORD_CHAR);
     gtk_text_view_set_editable (GTK_TEXT_VIEW (view), FALSE);
     buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
     gtk_text_buffer_set_text (buffer, msg, -1);
diff --git a/gnucash/import-export/customer-import/dialog-customer-import-gui.c b/gnucash/import-export/customer-import/dialog-customer-import-gui.c
index 5a3e3a304..a700b05be 100644
--- a/gnucash/import-export/customer-import/dialog-customer-import-gui.c
+++ b/gnucash/import-export/customer-import/dialog-customer-import-gui.c
@@ -387,15 +387,15 @@ gnc_input_dialog (GtkWidget *parent, const gchar *title, const gchar *msg, const
 
     // add a label
     label = gtk_label_new (msg);
-    gtk_container_add (GTK_CONTAINER (content_area), label);
+    gtk_box_pack_start(GTK_BOX(content_area), label, FALSE, FALSE, 0);
 
     // add a textview
     view = gtk_text_view_new ();
     gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (view), GTK_WRAP_WORD_CHAR);
     buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
     gtk_text_buffer_set_text (buffer, default_input, -1);
-    gtk_container_add (GTK_CONTAINER (content_area), view);
-
+    gtk_box_pack_start(GTK_BOX(content_area), view, TRUE, TRUE, 0);
+    
     // run the dialog
     gtk_widget_show_all (dialog);
     result = gtk_dialog_run (GTK_DIALOG (dialog));
@@ -443,11 +443,10 @@ gnc_info2_dialog (GtkWidget *parent, const gchar *title, const gchar *msg)
 
     // add a scroll area
     scrolledwindow = gtk_scrolled_window_new (NULL, NULL);
-    gtk_container_add (GTK_CONTAINER (content_area), scrolledwindow);
+    gtk_box_pack_start(GTK_BOX(content_area), scrolledwindow, TRUE, TRUE, 0);
 
     // add a textview
     view = gtk_text_view_new ();
-//    gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (view), GTK_WRAP_WORD_CHAR);
     gtk_text_view_set_editable (GTK_TEXT_VIEW (view), FALSE);
     buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
     gtk_text_buffer_set_text (buffer, msg, -1);

commit df4b728dbd569460e107b22159d8575252b35872
Author: Frank H. Ellenberger <frank.h.ellenberger at gmail.com>
Date:   Tue Jan 14 22:38:52 2020 +0100

    Minor adjustments of ch/kmu 2013 based on emails
    
    Also drop the obsolete chkmu

diff --git a/data/accounts/de_CH/CMakeLists.txt b/data/accounts/de_CH/CMakeLists.txt
index 170d3412c..d6274c2cd 100644
--- a/data/accounts/de_CH/CMakeLists.txt
+++ b/data/accounts/de_CH/CMakeLists.txt
@@ -4,7 +4,7 @@ set(account_DATA
   acctchrt_kids.gnucash-xea
   acctchrt_otherasset.gnucash-xea
   acctchrt_otherloan.gnucash-xea
-  acctchrt_chkmu.gnucash-xea)
+  acctchrt_kmu.gnucash-xea)
 
 set_dist_list(DE_CH_DIST ${account_DATA} CMakeLists.txt)
 
diff --git a/data/accounts/de_CH/acctchrt_chkmu.gnucash-xea b/data/accounts/de_CH/acctchrt_chkmu.gnucash-xea
deleted file mode 100644
index 8a16389d6..000000000
--- a/data/accounts/de_CH/acctchrt_chkmu.gnucash-xea
+++ /dev/null
@@ -1,9253 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<gnc-account-example 
-  xmlns="http://www.gnucash.org/XML/"
-  xmlns:act="http://www.gnucash.org/XML/act"
-  xmlns:addr="http://www.gnucash.org/XML/addr"
-  xmlns:bgt="http://www.gnucash.org/XML/bgt"
-  xmlns:billterm="http://www.gnucash.org/XML/billterm"
-  xmlns:book="http://www.gnucash.org/XML/book"
-  xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
-  xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
-  xmlns:cd="http://www.gnucash.org/XML/cd"
-  xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
-  xmlns:cust="http://www.gnucash.org/XML/cust"
-  xmlns:employee="http://www.gnucash.org/XML/employee"
-  xmlns:entry="http://www.gnucash.org/XML/entry"
-  xmlns:fs="http://www.gnucash.org/XML/fs"
-  xmlns:gnc="http://www.gnucash.org/XML/gnc"
-  xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
-  xmlns:invoice="http://www.gnucash.org/XML/invoice"
-  xmlns:job="http://www.gnucash.org/XML/job"
-  xmlns:lot="http://www.gnucash.org/XML/lot"
-  xmlns:order="http://www.gnucash.org/XML/order"
-  xmlns:owner="http://www.gnucash.org/XML/owner"
-  xmlns:price="http://www.gnucash.org/XML/price"
-  xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
-  xmlns:slot="http://www.gnucash.org/XML/slot"
-  xmlns:split="http://www.gnucash.org/XML/split"
-  xmlns:sx="http://www.gnucash.org/XML/sx"
-  xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
-  xmlns:trn="http://www.gnucash.org/XML/trn"
-  xmlns:ts="http://www.gnucash.org/XML/ts"
-  xmlns:tte="http://www.gnucash.org/XML/tte"
-  xmlns:vendor="http://www.gnucash.org/XML/vendor">
-    <gnc-act:title>
-      KMU Kontenrahmen
-    </gnc-act:title>
-    <gnc-act:short-description>
-     Kontenrahmen fuer Schweizer KMU
-    </gnc-act:short-description>
-    <gnc-act:long-description>
-     Kontenrahmen fuer Schweizer KMU gem Walher Sterchi publiziert vom schweizerischen Gewerbeverband
-    </gnc-act:long-description>
-    <gnc-act:exclude-from-select-all>1</gnc-act:exclude-from-select-all>
-<gnc:account version="2.0.0">
-  <act:name>Root Account</act:name>
-  <act:id type="new">1972cce2e2364f95b2b0bc014502661d</act:id>
-  <act:type>ROOT</act:type>
-  <act:commodity-scu>0</act:commodity-scu>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aktiven</act:name>
-  <act:id type="new">de55a3419ae28ee9ab7ad78bdd197fc4</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>1</act:code>
-  <act:description>1</act:description>
-  <act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Umlaufvermögen</act:name>
-  <act:id type="new">809dbb01a0f166f19adb8c8014f9fa7d</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>10</act:code>
-  <act:description>10</act:description>
-  <act:parent type="new">de55a3419ae28ee9ab7ad78bdd197fc4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Flüssige Mittel und Wertschriften</act:name>
-  <act:id type="new">1f3f585318c62b6a58bf62f28e98d07d</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>100</act:code>
-  <act:description>100</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">809dbb01a0f166f19adb8c8014f9fa7d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kasse</act:name>
-  <act:id type="new">fa0fcc3ff42a7e2f97bcfa490fd7754f</act:id>
-  <act:type>CASH</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>100.0</act:code>
-  <act:description>100.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1f3f585318c62b6a58bf62f28e98d07d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Postcheckguthaben</act:name>
-  <act:id type="new">1a2d4c38e651311ee19efdd004ad35d2</act:id>
-  <act:type>BANK</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>101.0</act:code>
-  <act:description>101.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1f3f585318c62b6a58bf62f28e98d07d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bankguthaben</act:name>
-  <act:id type="new">b6774f50d4468251fa0512f8b22715d1</act:id>
-  <act:type>BANK</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>102.0</act:code>
-  <act:description>102.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1f3f585318c62b6a58bf62f28e98d07d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Checks, Besitzwechsel (diskontfähig)</act:name>
-  <act:id type="new">7eb94ff3d3d21ea9b9e32c171ccd03fe</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>104.0</act:code>
-  <act:description>104.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1f3f585318c62b6a58bf62f28e98d07d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzfristige Geldanlagen</act:name>
-  <act:id type="new">d2cd425f0e45aa89245250595964c27f</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>105.0</act:code>
-  <act:description>105.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1f3f585318c62b6a58bf62f28e98d07d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Wertschriften kurzfristig realisierbar</act:name>
-  <act:id type="new">3ae68a1ea2321588c4de9cd195277d66</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>106.0</act:code>
-  <act:description>106.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1f3f585318c62b6a58bf62f28e98d07d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere kurzfristige Anlagen</act:name>
-  <act:id type="new">f525e9360f6f4a296aae46713c4353cf</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>107.0</act:code>
-  <act:description>107.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1f3f585318c62b6a58bf62f28e98d07d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Eigene Aktien</act:name>
-  <act:id type="new">ef2886abb7610ec4c44046487140788d</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>108.0</act:code>
-  <act:description>108.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1f3f585318c62b6a58bf62f28e98d07d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Transferkonto</act:name>
-  <act:id type="new">38ea3400afe9479f7e2b3c9d89742883</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>109.0</act:code>
-  <act:description>109.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1f3f585318c62b6a58bf62f28e98d07d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Forderungen</act:name>
-  <act:id type="new">0c883cc3148a4c54fc8a6293c7f35b74</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>110</act:code>
-  <act:description>110</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">809dbb01a0f166f19adb8c8014f9fa7d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>aus Lieferungen und Leistungen (Debi)</act:name>
-  <act:id type="new">178ef0358efd33959a756a4fb74a25d3</act:id>
-  <act:type>RECEIVABLE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>110.0</act:code>
-  <act:description>110.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0c883cc3148a4c54fc8a6293c7f35b74</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere kurzfristige Forderungen</act:name>
-  <act:id type="new">8cc629558b0e13a8f661dd349b8a5e31</act:id>
-  <act:type>RECEIVABLE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>114.0</act:code>
-  <act:description>114.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0c883cc3148a4c54fc8a6293c7f35b74</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere kurzf. F'g ggn. Konzerngesellsch.</act:name>
-  <act:id type="new">b133759ba97297745470520272cbb78c</act:id>
-  <act:type>RECEIVABLE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>115.0</act:code>
-  <act:description>115.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0c883cc3148a4c54fc8a6293c7f35b74</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Vorräte und angefangene Arbeiten</act:name>
-  <act:id type="new">21e939144b5c93d81e26c2ca82f5a214</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>120</act:code>
-  <act:description>120</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">809dbb01a0f166f19adb8c8014f9fa7d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Vorräte Handelswaren</act:name>
-  <act:id type="new">27ed12ce114682252c4a6a3129429c36</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>120.0</act:code>
-  <act:description>120.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21e939144b5c93d81e26c2ca82f5a214</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Vorräte Rohstoffe</act:name>
-  <act:id type="new">af01aaaa06a47beefbaecf8c7e8aaeb5</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>121.0</act:code>
-  <act:description>121.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21e939144b5c93d81e26c2ca82f5a214</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Vorräte Werkstoffe</act:name>
-  <act:id type="new">4691453a9ba6486f0a7089c377c1c3fc</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>122.0</act:code>
-  <act:description>122.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21e939144b5c93d81e26c2ca82f5a214</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Vorräte Hilfs- und Verbrauchsmaterial</act:name>
-  <act:id type="new">b6eb4acac0cff3dc58b5e654b37835d6</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>123.0</act:code>
-  <act:description>123.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21e939144b5c93d81e26c2ca82f5a214</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Pflichtlager</act:name>
-  <act:id type="new">9ab41139f211ba539aafc9464095614a</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>124.0</act:code>
-  <act:description>124.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21e939144b5c93d81e26c2ca82f5a214</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Waren in Konsignation</act:name>
-  <act:id type="new">9441c7c9f69f2f72165df3d09b20d7c5</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>125.0</act:code>
-  <act:description>125.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21e939144b5c93d81e26c2ca82f5a214</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fertigfabrikate</act:name>
-  <act:id type="new">6c3e0049d625528e32cda462e72dedf9</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>126.0</act:code>
-  <act:description>126.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21e939144b5c93d81e26c2ca82f5a214</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Halbfabrikate</act:name>
-  <act:id type="new">fc7e125dccf5541064ecefb06dec6e13</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>127.0</act:code>
-  <act:description>127.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21e939144b5c93d81e26c2ca82f5a214</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Angefangene Arbeiten</act:name>
-  <act:id type="new">6b0d502e722a074fd5f44d5fda985fb7</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>128.0</act:code>
-  <act:description>128.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21e939144b5c93d81e26c2ca82f5a214</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aktive Rechnungsabgrenzung</act:name>
-  <act:id type="new">370937cd49fb271ad1783cda51e7374d</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>130</act:code>
-  <act:description>130</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">809dbb01a0f166f19adb8c8014f9fa7d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aktive Rechnungsabgr. (Transitorische A)</act:name>
-  <act:id type="new">a75ef655345c22e7a7dc40a568d31fd9</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>130.0</act:code>
-  <act:description>130.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">370937cd49fb271ad1783cda51e7374d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Anlagevermögen</act:name>
-  <act:id type="new">28348f262fe7216b1ab92656580ee987</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>14</act:code>
-  <act:description>14</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">de55a3419ae28ee9ab7ad78bdd197fc4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Finanzanlagen</act:name>
-  <act:id type="new">e56cdb2274c5ff01d7bf194def1b2b2c</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>140</act:code>
-  <act:description>140</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">28348f262fe7216b1ab92656580ee987</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Wertpapiere des Anlagevermögens</act:name>
-  <act:id type="new">3df4a66d0599a2bdf614cfba210c9d5b</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>140.0</act:code>
-  <act:description>140.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">e56cdb2274c5ff01d7bf194def1b2b2c</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere Finanzanlagen</act:name>
-  <act:id type="new">8bb095e658b79b074a6bd52731c10112</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>141.0</act:code>
-  <act:description>141.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">e56cdb2274c5ff01d7bf194def1b2b2c</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Beteiligungen</act:name>
-  <act:id type="new">3c0c107378174ee351673ece81c6534e</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>142.0</act:code>
-  <act:description>142.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">e56cdb2274c5ff01d7bf194def1b2b2c</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Langfristige Forderungen ggn. Dritten</act:name>
-  <act:id type="new">e3574b8e5f5a38961ccb74f6ac502477</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>144.0</act:code>
-  <act:description>144.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">e56cdb2274c5ff01d7bf194def1b2b2c</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Langf. F'gen ggn. Konzernges.</act:name>
-  <act:id type="new">dda8c27248452e26e87497ffdf18af50</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>145.0</act:code>
-  <act:description>145.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">e56cdb2274c5ff01d7bf194def1b2b2c</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Langf. F'gen ggn. Aktionären</act:name>
-  <act:id type="new">2a512e57c1de462db0142bcfdcee10d3</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>146.0</act:code>
-  <act:description>146.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">e56cdb2274c5ff01d7bf194def1b2b2c</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Eigene Aktien</act:name>
-  <act:id type="new">54e12e2af3c3ccd8a0742991a765a216</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>149.0</act:code>
-  <act:description>149.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">e56cdb2274c5ff01d7bf194def1b2b2c</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Mobile Sachanlagen</act:name>
-  <act:id type="new">ee28b40fed8cd193e15f26f20835c3fe</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>150</act:code>
-  <act:description>150</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">28348f262fe7216b1ab92656580ee987</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Maschinen und Apparate Produktion</act:name>
-  <act:id type="new">a4ee86efd0aa3d01b04edc78ad6dd5db</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>150.0</act:code>
-  <act:description>150.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee28b40fed8cd193e15f26f20835c3fe</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Mobiliar Einrichtungen</act:name>
-  <act:id type="new">b4f6c7b708d4d8e7c245b846c1080af3</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>151.0</act:code>
-  <act:description>151.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee28b40fed8cd193e15f26f20835c3fe</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Büromaschinen, EDV-Anlage, Kommunikation</act:name>
-  <act:id type="new">8d39d906e88342e5a2b2ad7911b4a9dc</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>152.0</act:code>
-  <act:description>152.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee28b40fed8cd193e15f26f20835c3fe</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fahrzeuge</act:name>
-  <act:id type="new">6b7b24d136812650744b1382690ffb47</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>153.0</act:code>
-  <act:description>153.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee28b40fed8cd193e15f26f20835c3fe</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Werkzeuge und Geräte</act:name>
-  <act:id type="new">43fcb6c7b815d30f07fee4b056017505</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>154.0</act:code>
-  <act:description>154.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee28b40fed8cd193e15f26f20835c3fe</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lagereinrichtungen</act:name>
-  <act:id type="new">f1ec4b9f46871f5a28e1a79c4635aee3</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>155.0</act:code>
-  <act:description>155.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee28b40fed8cd193e15f26f20835c3fe</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Feste Einrichtungen und Installationen</act:name>
-  <act:id type="new">8a1ac3eddd8ffcdfdfb39b2ae2f4ad63</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>157.0</act:code>
-  <act:description>157.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee28b40fed8cd193e15f26f20835c3fe</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbrige mobile Sachanlagen</act:name>
-  <act:id type="new">7ee39c0c95f75d6476cfafe3b6abcb3c</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>159.0</act:code>
-  <act:description>159.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee28b40fed8cd193e15f26f20835c3fe</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Immobile Sachanlagen</act:name>
-  <act:id type="new">31e21993176c0a8d6be103c5faf3596e</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>160</act:code>
-  <act:description>160</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">28348f262fe7216b1ab92656580ee987</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Geschäftsliegenschaften</act:name>
-  <act:id type="new">a0820a3d2f554f123d8caa986da63de6</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>160.0</act:code>
-  <act:description>160.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">31e21993176c0a8d6be103c5faf3596e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fabrikgebäude</act:name>
-  <act:id type="new">406f5d704913814b50c477e6440a1530</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>161.0</act:code>
-  <act:description>161.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">31e21993176c0a8d6be103c5faf3596e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Werkstattgebäude, Atelier</act:name>
-  <act:id type="new">36ede62c4d0a2c0dbaac02b854931c7b</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>162.0</act:code>
-  <act:description>162.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">31e21993176c0a8d6be103c5faf3596e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lagergebäude</act:name>
-  <act:id type="new">092cfa0ac3e4f169cd5edeecbc5551a9</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>163.0</act:code>
-  <act:description>163.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">31e21993176c0a8d6be103c5faf3596e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ausstellungs- und Verkaufsgebäude</act:name>
-  <act:id type="new">3b56da617d8feb463a13cbea2e6ce35a</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>164.0</act:code>
-  <act:description>164.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">31e21993176c0a8d6be103c5faf3596e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Büro- und Verwaltungsgebäude</act:name>
-  <act:id type="new">9746981fc1105db11907ad96668fe17a</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>165.0</act:code>
-  <act:description>165.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">31e21993176c0a8d6be103c5faf3596e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Wohnhäuser</act:name>
-  <act:id type="new">0735263b8ff0d84409bf291f4dc4e280</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>166.0</act:code>
-  <act:description>166.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">31e21993176c0a8d6be103c5faf3596e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Unbebaute Grundstücke</act:name>
-  <act:id type="new">d51d9224c01e96f82c6385c8d993c1e1</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>168.0</act:code>
-  <act:description>168.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">31e21993176c0a8d6be103c5faf3596e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Immaterielle Anlagen</act:name>
-  <act:id type="new">9bb1571b69cad5444ec3b4ea3bcab4bb</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>170</act:code>
-  <act:description>170</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">28348f262fe7216b1ab92656580ee987</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Patente, Know-How, Rezepte</act:name>
-  <act:id type="new">54fac2248955a62ca6088a1239245d0c</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>170.0</act:code>
-  <act:description>170.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9bb1571b69cad5444ec3b4ea3bcab4bb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Marken, Muster, Modelle, Pläne</act:name>
-  <act:id type="new">38563c6c3a4174650e41105cc32ca596</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>171.0</act:code>
-  <act:description>171.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9bb1571b69cad5444ec3b4ea3bcab4bb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lizenzen, Konzessionen, Nutzungsrechte</act:name>
-  <act:id type="new">852f40dea81e774cbae7ea0c006e019e</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>172.0</act:code>
-  <act:description>172.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9bb1571b69cad5444ec3b4ea3bcab4bb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Urheber-, Verlags-, Vertragsrechte</act:name>
-  <act:id type="new">1d3637850cb14feea15248cc4b1b6368</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>173.0</act:code>
-  <act:description>173.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9bb1571b69cad5444ec3b4ea3bcab4bb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Goodwill</act:name>
-  <act:id type="new">9cbad9efae090fc50a5f09a17240ee75</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>177.0</act:code>
-  <act:description>177.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9bb1571b69cad5444ec3b4ea3bcab4bb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbrige immaterielle Anlagen</act:name>
-  <act:id type="new">7d207c0ac1a19e0844a9f46839df6fff</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>179.0</act:code>
-  <act:description>179.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9bb1571b69cad5444ec3b4ea3bcab4bb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aktivierter Aufw. & akt. Berichtigung</act:name>
-  <act:id type="new">fdfd5d1630c4a69d000d13f54202150e</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>18</act:code>
-  <act:description>18</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">de55a3419ae28ee9ab7ad78bdd197fc4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aktivierter Aufwand & akt. Berichtigung</act:name>
-  <act:id type="new">022e8975835482ca5bcd7458c71cf406</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>180</act:code>
-  <act:description>180</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">fdfd5d1630c4a69d000d13f54202150e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Gründungs-, Kapitalerh'gs- & Org.Aufwand</act:name>
-  <act:id type="new">5cdef4cc3d1af18c5bad74c96f5e6fb4</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>180.0</act:code>
-  <act:description>180.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">022e8975835482ca5bcd7458c71cf406</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aktive Berichtigungsposten</act:name>
-  <act:id type="new">9d65b63fcab10c1bdf2407fab46f96d6</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>185.0</act:code>
-  <act:description>185.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">022e8975835482ca5bcd7458c71cf406</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebsfremde Aktiven</act:name>
-  <act:id type="new">6fd0dde1dedf14c5d7bf7aaa3bf20504</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>19</act:code>
-  <act:description>19</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">de55a3419ae28ee9ab7ad78bdd197fc4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebsfremde Aktiven</act:name>
-  <act:id type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>190</act:code>
-  <act:description>190</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">6fd0dde1dedf14c5d7bf7aaa3bf20504</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Flüssige Mittel und Wertschriften</act:name>
-  <act:id type="new">550d56ffdf6b84e30bc95e1a817160f2</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>190.0</act:code>
-  <act:description>190.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzfristige Forderungen</act:name>
-  <act:id type="new">7bdbc3e0e49fb4ff87ee1986280fa338</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>191.0</act:code>
-  <act:description>191.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Vorräte und angefangene Arbeiten</act:name>
-  <act:id type="new">6692eb9d5f4495ad087dbe0f9fe63127</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>192.0</act:code>
-  <act:description>192.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aktive Rechnungsabgrenzung</act:name>
-  <act:id type="new">797299c9b554c6e8c460701b4310215e</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>193.0</act:code>
-  <act:description>193.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Finanzanlagen</act:name>
-  <act:id type="new">e0d601f29eafe30683f54bbb57569f85</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>194.0</act:code>
-  <act:description>194.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Mobile Sachanlagen</act:name>
-  <act:id type="new">19a3df125e0ec3dc5c19a7c1a9bae4db</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>195.0</act:code>
-  <act:description>195.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Immobile Sachanlagen</act:name>
-  <act:id type="new">f8ecf5c85af152200e55151c75f51e33</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>196.0</act:code>
-  <act:description>196.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Immaterielle Anlagen</act:name>
-  <act:id type="new">4d049f5c55dc9bf8bf1512767dd8a8d2</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>197.0</act:code>
-  <act:description>197.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aktivierter Aufwand</act:name>
-  <act:id type="new">7fdb27ef576f5f9f0c528c5cd0b6512c</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>198.0</act:code>
-  <act:description>198.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>frei Bilanzverlust unter 299</act:name>
-  <act:id type="new">87a36049ac8d3543df699ff628e332bc</act:id>
-  <act:type>ASSET</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>199.0</act:code>
-  <act:description>199.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">611e46d5f690b9afe1e2b6fa9a88e7c4</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Passiven</act:name>
-  <act:id type="new">16aa2688fb25d2686971c0b3072bd77e</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>2</act:code>
-  <act:description>2</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fremdkapital kurzfristig</act:name>
-  <act:id type="new">ca3be4210616a46f34987a110fa7abc7</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>20</act:code>
-  <act:description>20</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">16aa2688fb25d2686971c0b3072bd77e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzf. Verbindlichkeiten aus Lief/Leist</act:name>
-  <act:id type="new">83b4297525ec48d13837029e84bac41d</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>200</act:code>
-  <act:description>200</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca3be4210616a46f34987a110fa7abc7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Verbindlichkeiten aus Lief/Leistungen</act:name>
-  <act:id type="new">85c7b903be0304c64410bb6ee51c1ac8</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>200.0</act:code>
-  <act:description>200.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">83b4297525ec48d13837029e84bac41d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Anzahlungen von Kunden</act:name>
-  <act:id type="new">3ce399fcd81644ff5c342ceb3882b51c</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>203.0</act:code>
-  <act:description>203.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">83b4297525ec48d13837029e84bac41d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Verbindl. aus L/L ggn. Konzerngesellsch.</act:name>
-  <act:id type="new">dd8ac04c774ac16cf365e4e33a21e017</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>205.0</act:code>
-  <act:description>205.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">83b4297525ec48d13837029e84bac41d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Verbindl. aus L/L ggn. Aktionären</act:name>
-  <act:id type="new">eafe01e9fe5eb16624fdd5ff58fb135a</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>206.0</act:code>
-  <act:description>206.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">83b4297525ec48d13837029e84bac41d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzfristige Finanzverbindlichkeiten</act:name>
-  <act:id type="new">f356fe55d736bdfba131e311f0e842de</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>210</act:code>
-  <act:description>210</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca3be4210616a46f34987a110fa7abc7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bankverbindlichkeiten kurzfristig</act:name>
-  <act:id type="new">1ec97208cefb623482535972f0ad992a</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>210.0</act:code>
-  <act:description>210.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f356fe55d736bdfba131e311f0e842de</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Postscheck- und WIR-Verbindlichkeiten</act:name>
-  <act:id type="new">85bfd5744cc8047f0585d295f04e6d41</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>211.0</act:code>
-  <act:description>211.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f356fe55d736bdfba131e311f0e842de</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Wechselverpflichtungen</act:name>
-  <act:id type="new">20c4dd85dc9432ed792aab5b603a9e0f</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>212.0</act:code>
-  <act:description>212.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f356fe55d736bdfba131e311f0e842de</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sonstige kurzf. Finanzverb. ggn. Dritten</act:name>
-  <act:id type="new">73da544919beefa10cbb3e2cc9fbcc80</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>214.0</act:code>
-  <act:description>214.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f356fe55d736bdfba131e311f0e842de</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzf. Finanzverb. ggn. Konzerngesell.</act:name>
-  <act:id type="new">36f8f23f8bafab7ef43d0313e9a6fc7b</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>215.0</act:code>
-  <act:description>215.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f356fe55d736bdfba131e311f0e842de</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzf. Finanzverb. ggn. Aktionären</act:name>
-  <act:id type="new">fae53f58a880fb11b24146cee83f82ed</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>216.0</act:code>
-  <act:description>216.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f356fe55d736bdfba131e311f0e842de</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzf. Finanzverg. ggn. Vorsorgestiftungen</act:name>
-  <act:id type="new">0fa7f8aab1dc81181d92aca3b8272e45</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>217.0</act:code>
-  <act:description>217.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f356fe55d736bdfba131e311f0e842de</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzf. fälliger Teil v. langf. Fi'zverb.</act:name>
-  <act:id type="new">405c5270b0860bb82aa8c2e419cc89bc</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>218.0</act:code>
-  <act:description>218.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f356fe55d736bdfba131e311f0e842de</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere kurzfristige Verbindlichkeiten</act:name>
-  <act:id type="new">737966be188a8cc20a0285a37eea8bf6</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>220</act:code>
-  <act:description>220</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca3be4210616a46f34987a110fa7abc7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Verbindl. ggn. staatlichen Stellen</act:name>
-  <act:id type="new">d10f33ec57e9784e24b2d41b63cce61e</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>220.0</act:code>
-  <act:description>220.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">737966be188a8cc20a0285a37eea8bf6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere kurzfr. Verbindl. ggn. Dritten</act:name>
-  <act:id type="new">552460fe85d54105db33b02a140b605b</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>221.0</act:code>
-  <act:description>221.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">737966be188a8cc20a0285a37eea8bf6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fällige Dividenden u. Obligationenzinsen</act:name>
-  <act:id type="new">618e49b8e41d0114934158262f3aeb90</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>223.0</act:code>
-  <act:description>223.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">737966be188a8cc20a0285a37eea8bf6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fällige Obligationenanleihen</act:name>
-  <act:id type="new">d1899e32a3546203ce44e4a69ceecb7d</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>224.0</act:code>
-  <act:description>224.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">737966be188a8cc20a0285a37eea8bf6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere kurzf. Verbindl. ggn. Konzerngesell.</act:name>
-  <act:id type="new">790ff275406c444e1483e4321ecf391a</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>225.0</act:code>
-  <act:description>225.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">737966be188a8cc20a0285a37eea8bf6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere kurzf. Verbindl. ggn. Aktionären</act:name>
-  <act:id type="new">47b01aeefcb9b5a68a8a3d48cc1ae3bf</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>226.0</act:code>
-  <act:description>226.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">737966be188a8cc20a0285a37eea8bf6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere kurzf. Verbindl. ggn. Vorsorgeein.</act:name>
-  <act:id type="new">a88d56dd451191c27b7830431cc387da</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>227.0</act:code>
-  <act:description>227.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">737966be188a8cc20a0285a37eea8bf6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Passive Rechnungsabgr. kurzfr. Rücktell.</act:name>
-  <act:id type="new">524b8a24a845b48de10c41ffb62534af</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>230</act:code>
-  <act:description>230</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca3be4210616a46f34987a110fa7abc7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Passive Rechnungsabgrenzung</act:name>
-  <act:id type="new">93bd43a2ef0329c6d93c248b41a006fc</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>230.0</act:code>
-  <act:description>230.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">524b8a24a845b48de10c41ffb62534af</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzfristige Rückstellungen</act:name>
-  <act:id type="new">91b29b0d5260f9ace3f28dbccd93e11a</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>233.0</act:code>
-  <act:description>233.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">524b8a24a845b48de10c41ffb62534af</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fremdkapital Langfristig</act:name>
-  <act:id type="new">fe422c2004aa3f49077b4110fde8299f</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>24</act:code>
-  <act:description>24</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">16aa2688fb25d2686971c0b3072bd77e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Langfristige Finanzverbindlichkeiten</act:name>
-  <act:id type="new">4445eca10941bf7beb7fec30330f6067</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>240</act:code>
-  <act:description>240</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">fe422c2004aa3f49077b4110fde8299f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bankverbindlichkeiten langfristig</act:name>
-  <act:id type="new">38181d606ef619859d97c499f86251fd</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>240.0</act:code>
-  <act:description>240.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4445eca10941bf7beb7fec30330f6067</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Leasingverbindlichkeiten</act:name>
-  <act:id type="new">101936c79695635da341d4e25d2d035d</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>242.0</act:code>
-  <act:description>242.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4445eca10941bf7beb7fec30330f6067</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Hypothekarverbindlichkeiten</act:name>
-  <act:id type="new">d7604d8092c56fe362b4f1f8891af30e</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>244.0</act:code>
-  <act:description>244.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4445eca10941bf7beb7fec30330f6067</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Obligationenanleihen</act:name>
-  <act:id type="new">abbfd5d7cf0161def41328a44a559d7f</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>246.0</act:code>
-  <act:description>246.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4445eca10941bf7beb7fec30330f6067</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere langfristige Verbindlichkeiten</act:name>
-  <act:id type="new">a305626c4ccf26230bc441aaa277b739</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>250</act:code>
-  <act:description>250</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">fe422c2004aa3f49077b4110fde8299f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Langfr. Darlehensverbindl. bei Dritten</act:name>
-  <act:id type="new">ccffbc39cea794183b8d27c37c592edc</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>250.0</act:code>
-  <act:description>250.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a305626c4ccf26230bc441aaa277b739</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Langf. Verbindl. ggn. Konzerngesellschaft</act:name>
-  <act:id type="new">aff25d87ddb5d04e99530c48d191ac86</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>255.0</act:code>
-  <act:description>255.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a305626c4ccf26230bc441aaa277b739</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Langf. Verbindl. ggn. Aktionären</act:name>
-  <act:id type="new">a343a729f2296f2e1c008ff16a44513d</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>256.0</act:code>
-  <act:description>256.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a305626c4ccf26230bc441aaa277b739</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Langf. Verbindl. ggn Vorsorgeeinrichtung</act:name>
-  <act:id type="new">62a99d93e1ce72d4880075bf96ea35d6</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>257.0</act:code>
-  <act:description>257.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a305626c4ccf26230bc441aaa277b739</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Rückstellungen lanfgristig</act:name>
-  <act:id type="new">a482c3baeff74f411e8e1efecc49f623</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>260</act:code>
-  <act:description>260</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">fe422c2004aa3f49077b4110fde8299f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>für Reparatur, Sanierung und Erneuerung</act:name>
-  <act:id type="new">cbd3874eabd02bc11c06ec8407b7bf0e</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>260.0</act:code>
-  <act:description>260.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a482c3baeff74f411e8e1efecc49f623</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>für Forschung und Entwicklung</act:name>
-  <act:id type="new">6c8d98f6555cf75116aeaf3807503276</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>261.0</act:code>
-  <act:description>261.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a482c3baeff74f411e8e1efecc49f623</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>für betriebliche Umstrukturierung</act:name>
-  <act:id type="new">270a74f65257815532bcfaf280e07f90</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>262.0</act:code>
-  <act:description>262.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a482c3baeff74f411e8e1efecc49f623</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>aus Lieferung und Leistung (langfristig)</act:name>
-  <act:id type="new">25bb2ae7369feef5e17793d306e66471</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>263.0</act:code>
-  <act:description>263.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a482c3baeff74f411e8e1efecc49f623</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>für Steuern (langfristig)</act:name>
-  <act:id type="new">f052bff7a281db1130096897c3e79b8f</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>264.0</act:code>
-  <act:description>264.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a482c3baeff74f411e8e1efecc49f623</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>für Umweltschutzmassnahmen</act:name>
-  <act:id type="new">9d76f36b2b9bdc984e390bbab38d1a7f</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>265.0</act:code>
-  <act:description>265.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a482c3baeff74f411e8e1efecc49f623</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>für Altersvorsorge</act:name>
-  <act:id type="new">2ac7bd40676ec2b7435d3c121ccddd4b</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>267.0</act:code>
-  <act:description>267.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a482c3baeff74f411e8e1efecc49f623</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Übrige Rückstellungen</act:name>
-  <act:id type="new">1e19f21c89fc4e10faa6a03993d766a8</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>269.0</act:code>
-  <act:description>269.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a482c3baeff74f411e8e1efecc49f623</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebsfremde Verbindlichkeiten</act:name>
-  <act:id type="new">022f556aa32235d431abb50dc6f2643b</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>27</act:code>
-  <act:description>27</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">16aa2688fb25d2686971c0b3072bd77e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebsfremde Verbindlichkeiten</act:name>
-  <act:id type="new">3b353e891e249ec5081c453095d9a062</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>270</act:code>
-  <act:description>270</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">022f556aa32235d431abb50dc6f2643b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzfr. Verbindlichkeiten aus Leistungen</act:name>
-  <act:id type="new">1c6debfc8b91c350c5f97c15789edce4</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>270.0</act:code>
-  <act:description>270.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3b353e891e249ec5081c453095d9a062</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kurzfristige Finanzverbindlichkeiten</act:name>
-  <act:id type="new">8d23a11cd84d725a861748c277ba89d5</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>271.0</act:code>
-  <act:description>271.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3b353e891e249ec5081c453095d9a062</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere kurzfristige Verbindlichkeiten</act:name>
-  <act:id type="new">e1b82439398d585e8056e74c03c0115e</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>272.0</act:code>
-  <act:description>272.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3b353e891e249ec5081c453095d9a062</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Passive Rechnungsabgr., kurzfr. Rückstell.</act:name>
-  <act:id type="new">d2a154dbdf431fd1ec7a776cfcd70518</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>273.0</act:code>
-  <act:description>273.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3b353e891e249ec5081c453095d9a062</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Langfristige Finanzverbindlichkeiten</act:name>
-  <act:id type="new">1aed0b6aea4d91c2c55fa26340bc324b</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>274.0</act:code>
-  <act:description>274.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3b353e891e249ec5081c453095d9a062</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Andere langfristige Verbindlichkeiten</act:name>
-  <act:id type="new">73f61192ed207e878c6306665549005b</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>275.0</act:code>
-  <act:description>275.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3b353e891e249ec5081c453095d9a062</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Rückstellungen</act:name>
-  <act:id type="new">655b5cc7bfd131962a8decfd20936928</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>276.0</act:code>
-  <act:description>276.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3b353e891e249ec5081c453095d9a062</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Eigenkapital</act:name>
-  <act:id type="new">8b1d72c4f89de2990736dbac927fe2e7</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>28</act:code>
-  <act:description>28</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">16aa2688fb25d2686971c0b3072bd77e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kapital / Privat</act:name>
-  <act:id type="new">35c16769f27d36b58aa7efabce4d1275</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>280</act:code>
-  <act:description>280</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">8b1d72c4f89de2990736dbac927fe2e7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kapital</act:name>
-  <act:id type="new">02594aa28c467f909f443d3cb454b73b</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>280.0</act:code>
-  <act:description>280.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">35c16769f27d36b58aa7efabce4d1275</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Privat für Einzelfirmen und Personenges.</act:name>
-  <act:id type="new">52ed25b4a942d5c10fa7588f872bbd18</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>285.0</act:code>
-  <act:description>285.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">35c16769f27d36b58aa7efabce4d1275</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Reserven, Bilanzgewinn</act:name>
-  <act:id type="new">4eb775da5e66e1dbf53d6dbbcd34cc8e</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>290</act:code>
-  <act:description>290</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">8b1d72c4f89de2990736dbac927fe2e7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Reserven</act:name>
-  <act:id type="new">09616deb211b72112ff2cee7e265aa7c</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>290.0</act:code>
-  <act:description>290.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4eb775da5e66e1dbf53d6dbbcd34cc8e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bilanzgewinn / Bilanzverlust</act:name>
-  <act:id type="new">6ef743ea490925153dd868d3205d8b92</act:id>
-  <act:type>LIABILITY</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>299.0</act:code>
-  <act:description>299.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4eb775da5e66e1dbf53d6dbbcd34cc8e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebsertrag aus Lieferungen und Leistungen</act:name>
-  <act:id type="new">f200b18acf0fd0a6b030858081393bf7</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>3</act:code>
-  <act:description>3</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Produktionsertrag</act:name>
-  <act:id type="new">646497df14eea03d25040f1da2f9d70d</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>30</act:code>
-  <act:description>30</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f200b18acf0fd0a6b030858081393bf7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Produktionsertrag Bereich A</act:name>
-  <act:id type="new">9d864f5dd23c69cac3ab7a41196ba574</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>300</act:code>
-  <act:description>300</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">646497df14eea03d25040f1da2f9d70d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Produktionsertrag Bereich B</act:name>
-  <act:id type="new">867027501efea88e96ecf91206fadbb8</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>301</act:code>
-  <act:description>301</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">646497df14eea03d25040f1da2f9d70d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Produktionsertrag Bereich C</act:name>
-  <act:id type="new">287b86489980beb9a9f0f522d12e8b91</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>302</act:code>
-  <act:description>302</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">646497df14eea03d25040f1da2f9d70d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aus Leistungen an Konzerngesellschaften</act:name>
-  <act:id type="new">9717976cc93eb623eaa683973c293616</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>305</act:code>
-  <act:description>305</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">646497df14eea03d25040f1da2f9d70d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>B'änderung angef./fert. Arb. Produktion</act:name>
-  <act:id type="new">c2bcc9f4961f9e76b4880b835280947b</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>308</act:code>
-  <act:description>308</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">646497df14eea03d25040f1da2f9d70d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ertragsminderung Produktion</act:name>
-  <act:id type="new">33efda3cbdf871dcf9eab2e21cfac751</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>309</act:code>
-  <act:description>309</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">646497df14eea03d25040f1da2f9d70d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Handelsertrag</act:name>
-  <act:id type="new">7717b49fd7ba66aa96ab472b6a17cf73</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>32</act:code>
-  <act:description>32</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f200b18acf0fd0a6b030858081393bf7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Handelsertrag Bereich A</act:name>
-  <act:id type="new">be00ec68f57b3490e635dfea1edcbd03</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>320</act:code>
-  <act:description>320</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7717b49fd7ba66aa96ab472b6a17cf73</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Handelsertrag Bereich B</act:name>
-  <act:id type="new">6fe85b4743924e6715105e6d8ae681b4</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>321</act:code>
-  <act:description>321</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7717b49fd7ba66aa96ab472b6a17cf73</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Handelsertrag Bereich C</act:name>
-  <act:id type="new">ffd8454725649d4daadff40676a5e7e5</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>322</act:code>
-  <act:description>322</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7717b49fd7ba66aa96ab472b6a17cf73</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>H'ertrag aus Leistungen an Konzerngesell.</act:name>
-  <act:id type="new">120fdc04c47781d399c546c81e90bd5b</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>325</act:code>
-  <act:description>325</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7717b49fd7ba66aa96ab472b6a17cf73</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ertragsminderungen Handel</act:name>
-  <act:id type="new">f3571f6d50217ea51221b8790534aac0</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>329</act:code>
-  <act:description>329</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7717b49fd7ba66aa96ab472b6a17cf73</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Dienstleistungsertrag</act:name>
-  <act:id type="new">ea5ae607c469cbade094f3be80c50fca</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>34</act:code>
-  <act:description>34</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f200b18acf0fd0a6b030858081393bf7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Dienstleistungsertrag Bereich A</act:name>
-  <act:id type="new">dc65df7256a17cd2e3b735484b29fed5</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>340</act:code>
-  <act:description>340</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ea5ae607c469cbade094f3be80c50fca</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Dienstleistungsertrag Bereich B</act:name>
-  <act:id type="new">79c9e301f8de3a379822857725df5ae9</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>341</act:code>
-  <act:description>341</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ea5ae607c469cbade094f3be80c50fca</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Dienstleistungsertrag Bereich C</act:name>
-  <act:id type="new">5924f4e3a53c4af89e15d8af77e77385</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>342</act:code>
-  <act:description>342</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ea5ae607c469cbade094f3be80c50fca</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>D'ertrag aus Leistungen an Konzerngesell.</act:name>
-  <act:id type="new">955d69ea2c9f69c2b1caf283ea9eb7f0</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>345</act:code>
-  <act:description>345</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ea5ae607c469cbade094f3be80c50fca</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>B'änderungen angefangene und fertige DL</act:name>
-  <act:id type="new">be7e9be311a8fd8359ebd723dc80d3f9</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>348</act:code>
-  <act:description>348</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ea5ae607c469cbade094f3be80c50fca</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ertragsminderungen Dienstleistungen</act:name>
-  <act:id type="new">81ff10b6cb87c8d8dcfed0933c2a2282</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>349</act:code>
-  <act:description>349</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ea5ae607c469cbade094f3be80c50fca</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Ertrag</act:name>
-  <act:id type="new">9971c453723ce515418e3ce47f8e7e1b</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>36</act:code>
-  <act:description>36</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f200b18acf0fd0a6b030858081393bf7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Nebenertrag aus Lieferung und Leistung</act:name>
-  <act:id type="new">8edf49d6a4bffcf8fb33ce4e3614b0d2</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>360</act:code>
-  <act:description>360</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9971c453723ce515418e3ce47f8e7e1b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erträge aus Lizenzen, Patenten etc.</act:name>
-  <act:id type="new">f543c736ef85a49ab8506b36cb6d2de7</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>361</act:code>
-  <act:description>361</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9971c453723ce515418e3ce47f8e7e1b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Ertrag aus Leist. an Konzernges.</act:name>
-  <act:id type="new">523cd3be558c853f7aa62d4f86afd585</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>365</act:code>
-  <act:description>365</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9971c453723ce515418e3ce47f8e7e1b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ertrag aus Personalausleihung</act:name>
-  <act:id type="new">81bdfee63e379fb81b732d627aad65c8</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>367</act:code>
-  <act:description>367</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9971c453723ce515418e3ce47f8e7e1b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sonstiger Ertrag aus Liefer./Leistungen</act:name>
-  <act:id type="new">2525ba20a55bcc4ac8cc816bf1fba435</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>368</act:code>
-  <act:description>368</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9971c453723ce515418e3ce47f8e7e1b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ertragsminderung auf übrigem Ertrag</act:name>
-  <act:id type="new">a6fb014736962f8897b7523961767ab5</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>369</act:code>
-  <act:description>369</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9971c453723ce515418e3ce47f8e7e1b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Eigenleistungen und Eigenverbrauch</act:name>
-  <act:id type="new">b9806266c5d10119537f7e1009cea4aa</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>37</act:code>
-  <act:description>37</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f200b18acf0fd0a6b030858081393bf7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Eigenleistungen</act:name>
-  <act:id type="new">621d015bebd8b7b0350e3a4c3f556279</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>370</act:code>
-  <act:description>370</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">b9806266c5d10119537f7e1009cea4aa</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>E'verbrauch an selbstherges. Produkten</act:name>
-  <act:id type="new">b69f4fee887b9c022632354a5b832fa1</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>371</act:code>
-  <act:description>371</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">b9806266c5d10119537f7e1009cea4aa</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Eigenverbrauch an Handelswaren</act:name>
-  <act:id type="new">6ab0a13354cf91b6be85e41ac006f4ad</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>372</act:code>
-  <act:description>372</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">b9806266c5d10119537f7e1009cea4aa</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Eigenverbrauch an Dienstleistungen</act:name>
-  <act:id type="new">6b703bc329ac88c6f942bb7a1699751b</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>374</act:code>
-  <act:description>374</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">b9806266c5d10119537f7e1009cea4aa</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>B'änderungen angef./fert. Arb. aus P/DL</act:name>
-  <act:id type="new">15928b1c3c7b061f2db3f20e60f13ea1</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>38</act:code>
-  <act:description>38</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f200b18acf0fd0a6b030858081393bf7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>B'änderungen angef./fertig. Arbeiten Prod.</act:name>
-  <act:id type="new">f0d9d6a436005db9370df2493e7dd3f8</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>380</act:code>
-  <act:description>380</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">15928b1c3c7b061f2db3f20e60f13ea1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>B'änderungen angef./fert. Arbeiten DL</act:name>
-  <act:id type="new">9cd820a44c59620f87d515f261a550c3</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>384</act:code>
-  <act:description>384</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">15928b1c3c7b061f2db3f20e60f13ea1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>E'minderungen aus P.-, H.- und DL-Ertr.</act:name>
-  <act:id type="new">c2d17179a91579049e3d86afa8000528</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>39</act:code>
-  <act:description>39</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f200b18acf0fd0a6b030858081393bf7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ertragsminderungen</act:name>
-  <act:id type="new">bedac091ead41f6261d3d0cb2a164d11</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>390</act:code>
-  <act:description>390</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">c2d17179a91579049e3d86afa8000528</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Material- und Warenaufwand</act:name>
-  <act:id type="new">4bc660da3649f5dd42f9ec4f797d2e97</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>4</act:code>
-  <act:description>4</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Materialaufwand</act:name>
-  <act:id type="new">d797d2298d86d988e15bd8f8b3da5f22</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>40</act:code>
-  <act:description>40</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4bc660da3649f5dd42f9ec4f797d2e97</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Materialaufwand Bereich A</act:name>
-  <act:id type="new">530c3276965dc0477866de29e3fd38ee</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>400</act:code>
-  <act:description>400</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">d797d2298d86d988e15bd8f8b3da5f22</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Materialaufwand Bereich B</act:name>
-  <act:id type="new">dee86bba71a9756ce16e61cd7d5f881c</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>401</act:code>
-  <act:description>401</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">d797d2298d86d988e15bd8f8b3da5f22</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Materialaufwand Bereich C</act:name>
-  <act:id type="new">0a4dceb38f9ada318a2070a3e605c10f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>402</act:code>
-  <act:description>402</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">d797d2298d86d988e15bd8f8b3da5f22</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fremdarbeiten</act:name>
-  <act:id type="new">6e62f3cb584c579dcc9e0001f25aca14</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>406</act:code>
-  <act:description>406</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">d797d2298d86d988e15bd8f8b3da5f22</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Direkte Einkaufsspesen</act:name>
-  <act:id type="new">7b0cd21c08618eb8ca7c7ba843413d49</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>407</act:code>
-  <act:description>407</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">d797d2298d86d988e15bd8f8b3da5f22</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bestandesveränderungen, Materialverluste</act:name>
-  <act:id type="new">b9d5be6d7b3f09875b0c7f14822d5e7b</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>408</act:code>
-  <act:description>408</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">d797d2298d86d988e15bd8f8b3da5f22</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Einkaufspreisminderungen Produktion</act:name>
-  <act:id type="new">3977f72a5da4b0cd6f73a396b245512e</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>409</act:code>
-  <act:description>409</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">d797d2298d86d988e15bd8f8b3da5f22</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Handelswarenaufwand</act:name>
-  <act:id type="new">ee9b51391da307ae291332c5d0ebc0e9</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>42</act:code>
-  <act:description>42</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4bc660da3649f5dd42f9ec4f797d2e97</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Handelswarenaufwand Bereich A</act:name>
-  <act:id type="new">b288620c6e82b9cbef0a8ff1e83dff72</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>420</act:code>
-  <act:description>420</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee9b51391da307ae291332c5d0ebc0e9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Handelswarenaufwand Bereich B</act:name>
-  <act:id type="new">1eb3e286715a1db5fdc1ea15de8d9874</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>421</act:code>
-  <act:description>421</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee9b51391da307ae291332c5d0ebc0e9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Handelswarenaufwand Bereich C</act:name>
-  <act:id type="new">3a8bd9577469029f34ebd982ab1c2512</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>422</act:code>
-  <act:description>422</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee9b51391da307ae291332c5d0ebc0e9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Direkte Einkaufsspesen Handel</act:name>
-  <act:id type="new">93e748d2407c26453700bfcbc7652ca6</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>427</act:code>
-  <act:description>427</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee9b51391da307ae291332c5d0ebc0e9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>B'veränderungen Warenverluste Handelswa.</act:name>
-  <act:id type="new">2bf425723a05b050806f62c288f4b410</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>428</act:code>
-  <act:description>428</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee9b51391da307ae291332c5d0ebc0e9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Einkaufspreisminderungen Handel</act:name>
-  <act:id type="new">5458c03ebcaf45954db1be30ef2df888</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>429</act:code>
-  <act:description>429</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ee9b51391da307ae291332c5d0ebc0e9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwand für Drittleistungen</act:name>
-  <act:id type="new">47e2dc0afc23bb591b14864ea94e6d1d</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>44</act:code>
-  <act:description>44</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4bc660da3649f5dd42f9ec4f797d2e97</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwand für Drittleistungen Bereich A</act:name>
-  <act:id type="new">c97d1abfc6f43c6fa6f9d83c309b0072</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>440</act:code>
-  <act:description>440</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">47e2dc0afc23bb591b14864ea94e6d1d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwand für Drittleistungen Bereich B</act:name>
-  <act:id type="new">545997faf2bdf2fdc3054544baff5a34</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>441</act:code>
-  <act:description>441</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">47e2dc0afc23bb591b14864ea94e6d1d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwand für Drittleistungen Bereich C</act:name>
-  <act:id type="new">526127456cbf71b4141ce221e29530ab</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>442</act:code>
-  <act:description>442</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">47e2dc0afc23bb591b14864ea94e6d1d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Direkte Spesen für Drittleistungen</act:name>
-  <act:id type="new">995320a362dc06713f33d3008db2afdb</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>447</act:code>
-  <act:description>447</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">47e2dc0afc23bb591b14864ea94e6d1d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwandminderungen für Drittleistu. (DL)</act:name>
-  <act:id type="new">becfa2b53802266b480a4146156ff090</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>449</act:code>
-  <act:description>449</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">47e2dc0afc23bb591b14864ea94e6d1d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Energieaufwand zur Leistungserstellung</act:name>
-  <act:id type="new">29fabbc0f61db678fa68957b9631afbd</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>45</act:code>
-  <act:description>45</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4bc660da3649f5dd42f9ec4f797d2e97</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Elektrizität</act:name>
-  <act:id type="new">b782fdbff64232420baa700cd1f8bc1f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>450</act:code>
-  <act:description>450</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">29fabbc0f61db678fa68957b9631afbd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Gas</act:name>
-  <act:id type="new">1590c3f163d6a8935c0363b980ccce76</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>451</act:code>
-  <act:description>451</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">29fabbc0f61db678fa68957b9631afbd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Brennstoffe</act:name>
-  <act:id type="new">870da44d658f1822ea6e4ff704a0e10b</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>452</act:code>
-  <act:description>452</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">29fabbc0f61db678fa68957b9631afbd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebsstoffe</act:name>
-  <act:id type="new">fd93186bf0d7a3fee05367a56a4ad7e3</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>453</act:code>
-  <act:description>453</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">29fabbc0f61db678fa68957b9631afbd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Wasser</act:name>
-  <act:id type="new">af4160bb97fae0e35639cbd52c00411d</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>454</act:code>
-  <act:description>454</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">29fabbc0f61db678fa68957b9631afbd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Aufwand</act:name>
-  <act:id type="new">f6874af4a0318974d9e903076b82c13f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>46</act:code>
-  <act:description>46</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4bc660da3649f5dd42f9ec4f797d2e97</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Materialaufwand Produktion</act:name>
-  <act:id type="new">dbc6b1f9b30963f0408be4e26dbe3092</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>460</act:code>
-  <act:description>460</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f6874af4a0318974d9e903076b82c13f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Materialaufwand Handel</act:name>
-  <act:id type="new">0f691695e17f0e416ce0136072904951</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>462</act:code>
-  <act:description>462</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f6874af4a0318974d9e903076b82c13f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Übriger Aufwand für Drittleistungen</act:name>
-  <act:id type="new">542a85e7f44720a300c4360f9a764da1</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>464</act:code>
-  <act:description>464</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f6874af4a0318974d9e903076b82c13f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwand für Verpackung</act:name>
-  <act:id type="new">7c4297cfbf5fa65349c435b5e7c76cb6</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>465</act:code>
-  <act:description>465</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">f6874af4a0318974d9e903076b82c13f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Direkte Einkaufsspesen</act:name>
-  <act:id type="new">9f68365671cc8241576b8e19ed4298e3</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>47</act:code>
-  <act:description>47</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4bc660da3649f5dd42f9ec4f797d2e97</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Direkte Einkaufsspesen</act:name>
-  <act:id type="new">dfebaf5141ea8e92969b74c37fac76f8</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>470</act:code>
-  <act:description>470</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9f68365671cc8241576b8e19ed4298e3</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>B'veränderungen, Mat.- u. Warenverluste</act:name>
-  <act:id type="new">a83441c68b7a678030befaa920f33311</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>48</act:code>
-  <act:description>48</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4bc660da3649f5dd42f9ec4f797d2e97</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bestandesveränderungen Produktionsmat.</act:name>
-  <act:id type="new">810fba97ca9a50221e813fb0d9681fba</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>480</act:code>
-  <act:description>480</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a83441c68b7a678030befaa920f33311</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bestandesveränderungen Handelswaren</act:name>
-  <act:id type="new">72e20817969103681fd5032496eae5be</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>482</act:code>
-  <act:description>482</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a83441c68b7a678030befaa920f33311</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwandminderung</act:name>
-  <act:id type="new">017672229893bc42c8a5a7c07f341c4a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>49</act:code>
-  <act:description>49</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4bc660da3649f5dd42f9ec4f797d2e97</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwandminderungen</act:name>
-  <act:id type="new">b27f0faee4fe2d209434dbd74a4778cd</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>490</act:code>
-  <act:description>490</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">017672229893bc42c8a5a7c07f341c4a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Personalaufwand</act:name>
-  <act:id type="new">34a491affc9895d16227627418af32c9</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>5</act:code>
-  <act:description>5</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Personalaufwand Produktion</act:name>
-  <act:id type="new">ca0f7c157ec91618e06a7c07852a869a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>50</act:code>
-  <act:description>50</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">34a491affc9895d16227627418af32c9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand Produktion Bereich A</act:name>
-  <act:id type="new">70ff4f16010d01b8e0dd6709d78ff735</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>500</act:code>
-  <act:description>500</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca0f7c157ec91618e06a7c07852a869a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand Produktion Bereich B</act:name>
-  <act:id type="new">2e55570bcebe6b4cf9888caf1269977d</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>501</act:code>
-  <act:description>501</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca0f7c157ec91618e06a7c07852a869a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand Produktion Bereich C</act:name>
-  <act:id type="new">8e96e61104ec81d7ff28c44bea69f585</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>502</act:code>
-  <act:description>502</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca0f7c157ec91618e06a7c07852a869a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sozialversicherungsaufwand Produktion</act:name>
-  <act:id type="new">037fcfc13abb5c014cacabd8eb18b07f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>507</act:code>
-  <act:description>507</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca0f7c157ec91618e06a7c07852a869a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Personalaufwand Produktion</act:name>
-  <act:id type="new">f6f9fa7a4ec37d5dc803074f79202751</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>508</act:code>
-  <act:description>508</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca0f7c157ec91618e06a7c07852a869a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Arbeitsleistungen Dritter Produktion</act:name>
-  <act:id type="new">58a609df5eaa0b3311172f989b4e29c9</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>509</act:code>
-  <act:description>509</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ca0f7c157ec91618e06a7c07852a869a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Personalaufwand Handel</act:name>
-  <act:id type="new">10d40de428d49f7aaedd99d527579f48</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>52</act:code>
-  <act:description>52</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">34a491affc9895d16227627418af32c9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand Handel Bereich A</act:name>
-  <act:id type="new">44f62c7f8629604078202c276177d2bf</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>520</act:code>
-  <act:description>520</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">10d40de428d49f7aaedd99d527579f48</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand Handel Bereich B</act:name>
-  <act:id type="new">11a9cd7513d516f539265cf9ae2de16b</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>521</act:code>
-  <act:description>521</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">10d40de428d49f7aaedd99d527579f48</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand Handel Bereich C</act:name>
-  <act:id type="new">b8adc1de04830ca90a95cb3b5c209c63</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>522</act:code>
-  <act:description>522</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">10d40de428d49f7aaedd99d527579f48</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sozialversicherungsaufwand Handel</act:name>
-  <act:id type="new">eedc771a85c97ec5a96bc92962be9404</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>527</act:code>
-  <act:description>527</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">10d40de428d49f7aaedd99d527579f48</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Personalaufwand Handel</act:name>
-  <act:id type="new">ccbc1fa8fdb8f7b9b10daa7ece9efff4</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>528</act:code>
-  <act:description>528</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">10d40de428d49f7aaedd99d527579f48</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Arbeitsleistungen Dritter Handel</act:name>
-  <act:id type="new">f5c7c9d29bce8677f61e90f7046ef0d3</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>529</act:code>
-  <act:description>529</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">10d40de428d49f7aaedd99d527579f48</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Personalaufwand Dienstleistungen</act:name>
-  <act:id type="new">21ece8a35be72b3ac7f2572820280740</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>54</act:code>
-  <act:description>54</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">34a491affc9895d16227627418af32c9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand DL Bereich A</act:name>
-  <act:id type="new">b956a840204e4737496b9b362c45566a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>540</act:code>
-  <act:description>540</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21ece8a35be72b3ac7f2572820280740</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand DL Bereich B</act:name>
-  <act:id type="new">2d1a6fb2d22a72861d2e8bb1d4fa5ceb</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>541</act:code>
-  <act:description>541</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21ece8a35be72b3ac7f2572820280740</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand DL Bereich C</act:name>
-  <act:id type="new">a64fb888b10964b0eeb2418f6d94f435</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>542</act:code>
-  <act:description>542</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21ece8a35be72b3ac7f2572820280740</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sozialversicherungsaufwand DL</act:name>
-  <act:id type="new">aa2e7561e106e2c75e4a1f2cb6d498c1</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>547</act:code>
-  <act:description>547</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21ece8a35be72b3ac7f2572820280740</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Personalaufwand DL</act:name>
-  <act:id type="new">93dc0907e034f757947c9d5c30f26d0f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>548</act:code>
-  <act:description>548</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21ece8a35be72b3ac7f2572820280740</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Arbeitsleistungen Dritter DL</act:name>
-  <act:id type="new">ac34d9cd6df5edcbbd53b52089dd175d</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>549</act:code>
-  <act:description>549</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">21ece8a35be72b3ac7f2572820280740</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Personalaufwand Verwaltung</act:name>
-  <act:id type="new">1c5161b96c463ad0d5a2420cfbd51efa</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>56</act:code>
-  <act:description>56</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">34a491affc9895d16227627418af32c9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lohnaufwand Verwaltung</act:name>
-  <act:id type="new">ca2944c824fcf1e774490be3f8c8f0a6</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>560</act:code>
-  <act:description>560</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1c5161b96c463ad0d5a2420cfbd51efa</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sozialversicherungsaufwand Verwaltung</act:name>
-  <act:id type="new">c30b8eb13da269027428be84e513f0fe</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>567</act:code>
-  <act:description>567</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1c5161b96c463ad0d5a2420cfbd51efa</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Personalaufwand Verwaltung</act:name>
-  <act:id type="new">b329d87cbc52ad5fe38bf8382ca1a8b1</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>568</act:code>
-  <act:description>568</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1c5161b96c463ad0d5a2420cfbd51efa</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Arbeitsleistung Dritter Verwaltung</act:name>
-  <act:id type="new">121c9cd2d3cece643d1097a634520668</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>569</act:code>
-  <act:description>569</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1c5161b96c463ad0d5a2420cfbd51efa</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sozialversicherungsaufwand</act:name>
-  <act:id type="new">ffc8c3b282d82f646c28881f3874c134</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>57</act:code>
-  <act:description>57</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">34a491affc9895d16227627418af32c9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>AHV, IV, EO, ALV</act:name>
-  <act:id type="new">8e8827db4369c4390d747b46e891993b</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>570</act:code>
-  <act:description>570</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ffc8c3b282d82f646c28881f3874c134</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>FAK</act:name>
-  <act:id type="new">10e1925a2912f97f35e1717a42791d06</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>571</act:code>
-  <act:description>571</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ffc8c3b282d82f646c28881f3874c134</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Berufliche Vorsorge</act:name>
-  <act:id type="new">e1f270e10422ffba47630aaff76db4e4</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>572</act:code>
-  <act:description>572</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ffc8c3b282d82f646c28881f3874c134</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Unfallversicherung</act:name>
-  <act:id type="new">8ae4fe2ead984ee48d2da4461a75e9cc</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>573</act:code>
-  <act:description>573</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ffc8c3b282d82f646c28881f3874c134</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Krankentaggeldversicherung</act:name>
-  <act:id type="new">a532d642f365545b35c2b54b95de7703</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>574</act:code>
-  <act:description>574</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ffc8c3b282d82f646c28881f3874c134</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Quellensteuer</act:name>
-  <act:id type="new">c4b83950b1222f587a2717e7e9663640</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>579</act:code>
-  <act:description>579</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ffc8c3b282d82f646c28881f3874c134</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Personalaufwand</act:name>
-  <act:id type="new">a98b65260aa9ff1bad78786fbe7a05b9</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>58</act:code>
-  <act:description>58</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">34a491affc9895d16227627418af32c9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Personalbeschaffung</act:name>
-  <act:id type="new">87fe8ee08f7f475a97e6f2753d58e6fb</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>580</act:code>
-  <act:description>580</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a98b65260aa9ff1bad78786fbe7a05b9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aus- und Weiterbildung</act:name>
-  <act:id type="new">27bbb8813eb4e2d7ea60924facb203ab</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>581</act:code>
-  <act:description>581</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a98b65260aa9ff1bad78786fbe7a05b9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Spesenentschädigungen effektiv</act:name>
-  <act:id type="new">99de34c25d7e067ee233bc6563ee9f8b</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>582</act:code>
-  <act:description>582</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a98b65260aa9ff1bad78786fbe7a05b9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Spesenentschädigungen pauschal</act:name>
-  <act:id type="new">c9ece9eea1a4439624c00cccdae898d9</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>583</act:code>
-  <act:description>583</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a98b65260aa9ff1bad78786fbe7a05b9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Personalkantine</act:name>
-  <act:id type="new">e674d3c9db20a2749814c822b04389df</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>584</act:code>
-  <act:description>584</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a98b65260aa9ff1bad78786fbe7a05b9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sonstiger Personalaufwand</act:name>
-  <act:id type="new">43f4d34e5abd02481886e6a775f27e50</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>588</act:code>
-  <act:description>588</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a98b65260aa9ff1bad78786fbe7a05b9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Privatanteile Personalaufwand</act:name>
-  <act:id type="new">36c1ed88d8e21dc5314939a4e13fc42a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>589</act:code>
-  <act:description>589</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a98b65260aa9ff1bad78786fbe7a05b9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Arbeitsleistungen Dritter</act:name>
-  <act:id type="new">ec1ebfdec911e165304f5b0c74caa59f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>59</act:code>
-  <act:description>59</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">34a491affc9895d16227627418af32c9</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Arbeitsleistungen Dritter</act:name>
-  <act:id type="new">6f3916fe910fda6eb733c4b2c92b6a6d</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>590</act:code>
-  <act:description>590</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ec1ebfdec911e165304f5b0c74caa59f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sonstiger Betriebsaufwand</act:name>
-  <act:id type="new">58fa26c6900b9562a176c1d4121dece1</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>6</act:code>
-  <act:description>6</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Raumaufwand</act:name>
-  <act:id type="new">05b13a66a2561135d206d4b0997ed2fb</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>60</act:code>
-  <act:description>60</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fremdmieten Geschäftslokalitäten</act:name>
-  <act:id type="new">6ed9f2c8fb4f5db783e6884b185f727e</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>600</act:code>
-  <act:description>600</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">05b13a66a2561135d206d4b0997ed2fb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Eigenmiete Geschäftslokalitäten</act:name>
-  <act:id type="new">377b7b584119cbeb773df7727ec25c1b</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>601</act:code>
-  <act:description>601</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">05b13a66a2561135d206d4b0997ed2fb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Nebenkosten</act:name>
-  <act:id type="new">38023b385654a6bb9502000e56f97890</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>603</act:code>
-  <act:description>603</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">05b13a66a2561135d206d4b0997ed2fb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Reinigung</act:name>
-  <act:id type="new">2ae3d8156a8b520b17a4b74a714653d9</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>604</act:code>
-  <act:description>604</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">05b13a66a2561135d206d4b0997ed2fb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Unterhalt Geschäftsräume</act:name>
-  <act:id type="new">f50693cf941e33b0e654f4d4acdbeae7</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>605</act:code>
-  <act:description>605</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">05b13a66a2561135d206d4b0997ed2fb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Leasing Immobilien</act:name>
-  <act:id type="new">2565720177b2a57696ff97f2beb2a8a8</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>606</act:code>
-  <act:description>606</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">05b13a66a2561135d206d4b0997ed2fb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Privatanteile Raumaufwand</act:name>
-  <act:id type="new">ecf2630c2bda78ece1defa046d21feb1</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>609</act:code>
-  <act:description>609</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">05b13a66a2561135d206d4b0997ed2fb</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>URE / Leasingaufwand mobile Sachanlagen</act:name>
-  <act:id type="new">656fd4e055d2b43a2ef0dd41e97125ee</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>61</act:code>
-  <act:description>61</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Unterhalt, Reparaturen, Ersatz (URE)</act:name>
-  <act:id type="new">431d0beb0816c744fb503b7ac61ef984</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>610</act:code>
-  <act:description>610</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">656fd4e055d2b43a2ef0dd41e97125ee</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>URE von Produktionsanlagen</act:name>
-  <act:id type="new">e8ce9437439584062637ca5887b0e7d7</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>610.0</act:code>
-  <act:description>610.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">431d0beb0816c744fb503b7ac61ef984</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>URE von Verkaufseinrichtungen</act:name>
-  <act:id type="new">d78f6516c764dcb9913c60ebd38741eb</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>611.0</act:code>
-  <act:description>611.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">431d0beb0816c744fb503b7ac61ef984</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>URE von Lagereinrichtungen</act:name>
-  <act:id type="new">750758c820d05b69ea35dc8e49d6df2b</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>612.0</act:code>
-  <act:description>612.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">431d0beb0816c744fb503b7ac61ef984</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>URE von Büroeinrichtungen</act:name>
-  <act:id type="new">9985cdf5cdfec8414f566e8ab5446c70</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>613.0</act:code>
-  <act:description>613.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">431d0beb0816c744fb503b7ac61ef984</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>URE von Personaleinrichtungen</act:name>
-  <act:id type="new">84e9331ff8c7041bab90f8e55c1e8c73</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>614.0</act:code>
-  <act:description>614.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">431d0beb0816c744fb503b7ac61ef984</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Leasingaufwand mobile Sachanlagen</act:name>
-  <act:id type="new">ccb77587a67b5d9fc04e1c5194d192b8</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>616</act:code>
-  <act:description>616</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">656fd4e055d2b43a2ef0dd41e97125ee</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Leasingaufwand mobile Sachanlagen</act:name>
-  <act:id type="new">837091ba23c476c4ad5a26e69c57d50a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>616.0</act:code>
-  <act:description>616.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">ccb77587a67b5d9fc04e1c5194d192b8</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fahrzeug- und Transportaufwand</act:name>
-  <act:id type="new">fc874fe84a4f36ee1c1f13e43687ca81</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>62</act:code>
-  <act:description>62</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fahrzeugaufwand</act:name>
-  <act:id type="new">80134735d1989fd725141d82f2d27a25</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>620</act:code>
-  <act:description>620</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">fc874fe84a4f36ee1c1f13e43687ca81</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Reparaturen, Service und Reinigung Fz</act:name>
-  <act:id type="new">65154fe1cdccb608c7c04d5a2b33cf40</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>620.0</act:code>
-  <act:description>620.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">80134735d1989fd725141d82f2d27a25</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebsstoffe</act:name>
-  <act:id type="new">40cbb5092578315b9b5fa665b2277c1a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>621.0</act:code>
-  <act:description>621.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">80134735d1989fd725141d82f2d27a25</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Versicherungen</act:name>
-  <act:id type="new">6a2829915133284608a57565b9613c2b</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>622.0</act:code>
-  <act:description>622.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">80134735d1989fd725141d82f2d27a25</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Verkehrsabgaben, Beiträge, Gebühren</act:name>
-  <act:id type="new">c55e248c99c072f886644b6fdd299f84</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>623.0</act:code>
-  <act:description>623.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">80134735d1989fd725141d82f2d27a25</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fahrzeugleasing, Fahrzeugmieten</act:name>
-  <act:id type="new">96b72864213efe996d8a148c63e0028c</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>626.0</act:code>
-  <act:description>626.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">80134735d1989fd725141d82f2d27a25</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Privatanteil Fahrzeugaufwand</act:name>
-  <act:id type="new">5172f3f8d4d6042ce14f9c9701dc4bcb</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>627.0</act:code>
-  <act:description>627.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">80134735d1989fd725141d82f2d27a25</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Transportaufwand</act:name>
-  <act:id type="new">2eaefc2ca2f5520a5956c60a4f643897</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>628</act:code>
-  <act:description>628</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">fc874fe84a4f36ee1c1f13e43687ca81</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Frachten, Spediteur, Cargo Domizil</act:name>
-  <act:id type="new">ff874202df88c49206e81fa5b120c4e3</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>628.0</act:code>
-  <act:description>628.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">2eaefc2ca2f5520a5956c60a4f643897</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sachvers., Abgaben, Gebühren, Bewillig.</act:name>
-  <act:id type="new">4d7277d594a63e6f46aef35956ef62a7</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>63</act:code>
-  <act:description>63</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sachversicherungen</act:name>
-  <act:id type="new">a13affc9217bde9c2e2a6715be444e7f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>630</act:code>
-  <act:description>630</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4d7277d594a63e6f46aef35956ef62a7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>V'präm. f. Elementarsch., Glasbr., Einb.</act:name>
-  <act:id type="new">b91d6b56c6212700a00940e92b210c9f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>630.0</act:code>
-  <act:description>630.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a13affc9217bde9c2e2a6715be444e7f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>V'präm. f. Betriebshaftpf. u. Garantie</act:name>
-  <act:id type="new">b6af4c96860b883329f84ecde5791159</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>631.0</act:code>
-  <act:description>631.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a13affc9217bde9c2e2a6715be444e7f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>V'präm. f. Betriebsunterbrechung</act:name>
-  <act:id type="new">3e1737df81769606ee71726e124edab3</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>632.0</act:code>
-  <act:description>632.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a13affc9217bde9c2e2a6715be444e7f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Kreditverischerungsprämien</act:name>
-  <act:id type="new">f6505da93b69149acf2f4e9b7c0d233b</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>633.0</act:code>
-  <act:description>633.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a13affc9217bde9c2e2a6715be444e7f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Abgaben, Gebühren, Bewilligungen</act:name>
-  <act:id type="new">1c9aec9940dfdbb518af65f7bb205481</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>636</act:code>
-  <act:description>636</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">4d7277d594a63e6f46aef35956ef62a7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Abgaben und Gebühren</act:name>
-  <act:id type="new">ffe2700bd59600b353c6b972311019bd</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>636.0</act:code>
-  <act:description>636.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1c9aec9940dfdbb518af65f7bb205481</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bewilligungen und Gewerbepatente</act:name>
-  <act:id type="new">402dcf296e4b1e9f7c1ae6fe25fead79</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>637.0</act:code>
-  <act:description>637.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1c9aec9940dfdbb518af65f7bb205481</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Energie- und Entsorgungsaufwand</act:name>
-  <act:id type="new">0d45bb1a32fbc2adf84bd9fb6947ab17</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>64</act:code>
-  <act:description>64</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Energieaufwand</act:name>
-  <act:id type="new">7a39f2a47c8df083a4b4c1f7cd7befd7</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>640</act:code>
-  <act:description>640</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0d45bb1a32fbc2adf84bd9fb6947ab17</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Elektrizität</act:name>
-  <act:id type="new">f2e498eba1b7ed279d73a3e317a2840c</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>640.0</act:code>
-  <act:description>640.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7a39f2a47c8df083a4b4c1f7cd7befd7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Gas</act:name>
-  <act:id type="new">70350d022b217d04a49e3811a566ab26</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>641.0</act:code>
-  <act:description>641.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7a39f2a47c8df083a4b4c1f7cd7befd7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Brennstoffe, Heizmaterial</act:name>
-  <act:id type="new">51d9ba029816936557ebb8747a4f633c</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>642.0</act:code>
-  <act:description>642.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7a39f2a47c8df083a4b4c1f7cd7befd7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Wasser</act:name>
-  <act:id type="new">e72c8e578220feccff87c9744e839501</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>643.0</act:code>
-  <act:description>643.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7a39f2a47c8df083a4b4c1f7cd7befd7</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Entsorgungsaufwand</act:name>
-  <act:id type="new">e21e6c693f751e904f27be7b71a36623</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>646</act:code>
-  <act:description>646</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0d45bb1a32fbc2adf84bd9fb6947ab17</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Entsorgungsaufwand</act:name>
-  <act:id type="new">0871fdfd676583ea617a747f4884a480</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>646.0</act:code>
-  <act:description>646.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">e21e6c693f751e904f27be7b71a36623</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Verwaltungs- und Informatikaufwand</act:name>
-  <act:id type="new">84a760d1a7fe76a6f5a66cd576feaa9f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>65</act:code>
-  <act:description>65</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Verwaltungsaufwand</act:name>
-  <act:id type="new">32c8a1ea1c9d41e77e9cdc4e65faf2c6</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>650</act:code>
-  <act:description>650</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">84a760d1a7fe76a6f5a66cd576feaa9f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Büromat., Drucksach., Fotokop., Fachlit.</act:name>
-  <act:id type="new">3bb8318439bfe09f6acc04b74c2f9dfa</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>650.0</act:code>
-  <act:description>650.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">32c8a1ea1c9d41e77e9cdc4e65faf2c6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Telefon, Telefax, Internet, Porti</act:name>
-  <act:id type="new">7f723ad1eef2068e2fa8ab3dc6eaaeb5</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>651.0</act:code>
-  <act:description>651.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">32c8a1ea1c9d41e77e9cdc4e65faf2c6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Beiträge, Spenden, Vergabungen, Trinkgelder</act:name>
-  <act:id type="new">8162df1d9575c9abea9281008eb338d7</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>652.0</act:code>
-  <act:description>652.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">32c8a1ea1c9d41e77e9cdc4e65faf2c6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Buchführungs- und Beratungsaufwand</act:name>
-  <act:id type="new">25a41008eb70f5b3140dae7432e120f8</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>653.0</act:code>
-  <act:description>653.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">32c8a1ea1c9d41e77e9cdc4e65faf2c6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Verwaltungsrat, GV, Revisionsstellen</act:name>
-  <act:id type="new">dde92947b370169bfebcb099d0bfbc8a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>654.0</act:code>
-  <act:description>654.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">32c8a1ea1c9d41e77e9cdc4e65faf2c6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Privatanteile Verwaltungsaufwand</act:name>
-  <act:id type="new">861234c8a28ea04affd7342b1fb368df</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>655.0</act:code>
-  <act:description>655.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">32c8a1ea1c9d41e77e9cdc4e65faf2c6</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Informatik</act:name>
-  <act:id type="new">3e3ac38b0c53a91094318ec33b784c5e</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>656</act:code>
-  <act:description>656</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">84a760d1a7fe76a6f5a66cd576feaa9f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Leasing und Miete Hard- und Software</act:name>
-  <act:id type="new">fb502c2c7d361802b3276024d6aaf3ef</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>656.0</act:code>
-  <act:description>656.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3e3ac38b0c53a91094318ec33b784c5e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Lizenzen und Wartung</act:name>
-  <act:id type="new">224b7924b17503dd161aecf42b09d2b3</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>657.0</act:code>
-  <act:description>657.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3e3ac38b0c53a91094318ec33b784c5e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Beratung und Entwicklung</act:name>
-  <act:id type="new">8ca65e83ff41b36e7140797e64d7cda1</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>658.0</act:code>
-  <act:description>658.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">3e3ac38b0c53a91094318ec33b784c5e</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Werbeaufwand</act:name>
-  <act:id type="new">0eeb784bbaba39d87049f92034eae25a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>66</act:code>
-  <act:description>66</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Werbeinserate, elektronische Medien</act:name>
-  <act:id type="new">dbd40f51f69a38ae92ac7cb26b7a372e</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>660</act:code>
-  <act:description>660</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0eeb784bbaba39d87049f92034eae25a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Werbedrucks., -mat., Reklameart., Muster</act:name>
-  <act:id type="new">5c55917cffc25f6cf8d6f1f208f1a5a7</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>661</act:code>
-  <act:description>661</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0eeb784bbaba39d87049f92034eae25a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Schaufen., Dekoration, Fachmes., Ausstell.</act:name>
-  <act:id type="new">e06d4a341b8c1c59b37160975332abe6</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>662</act:code>
-  <act:description>662</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0eeb784bbaba39d87049f92034eae25a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Reisespesen, Kundenbetreuung</act:name>
-  <act:id type="new">9c1933b77f8d3cf1f48f45a9b0f7a8b5</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>664</act:code>
-  <act:description>664</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0eeb784bbaba39d87049f92034eae25a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Werbebeiträge, Sponsoring</act:name>
-  <act:id type="new">39500b976f4088a4a2864f5627931a15</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>666</act:code>
-  <act:description>666</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0eeb784bbaba39d87049f92034eae25a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Öffentlichkeitsarbeit / Public Relation</act:name>
-  <act:id type="new">0dcee5d5f8fc54ac2c48de228fc3067a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>667</act:code>
-  <act:description>667</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0eeb784bbaba39d87049f92034eae25a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Werbeberatung, Marktanalysen</act:name>
-  <act:id type="new">461a21a40343a6424440261ed3c588ff</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>668</act:code>
-  <act:description>668</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">0eeb784bbaba39d87049f92034eae25a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Betriebsaufwand</act:name>
-  <act:id type="new">881a2864824eabe5efda20960671d801</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>67</act:code>
-  <act:description>67</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Wirtschaftsauskünfte, Betreibungen</act:name>
-  <act:id type="new">51d6087e6a2fdadd4d9c022469925264</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>670</act:code>
-  <act:description>670</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">881a2864824eabe5efda20960671d801</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebssicherheit und Bewachung</act:name>
-  <act:id type="new">708b4f3d3347008175d6da9950026a2c</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>671</act:code>
-  <act:description>671</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">881a2864824eabe5efda20960671d801</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Forschung und Entwicklung</act:name>
-  <act:id type="new">0aa751f6bde911c027a58c8d7994b2f5</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>672</act:code>
-  <act:description>672</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">881a2864824eabe5efda20960671d801</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Finanzerfolg</act:name>
-  <act:id type="new">744a248e08fac386b838efc48c36a3ac</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>68</act:code>
-  <act:description>68</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Finanzaufwand</act:name>
-  <act:id type="new">578a216435cf95ca1234c034b53940f2</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>680</act:code>
-  <act:description>680</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">744a248e08fac386b838efc48c36a3ac</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Zinsaufw. aus F'verb. ggn. Dritten</act:name>
-  <act:id type="new">30f95999bc103c3555e41bdda1dad0bb</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>680.0</act:code>
-  <act:description>680.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">578a216435cf95ca1234c034b53940f2</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Zinsaufw. aus F'verb. ggn. Konzernges.</act:name>
-  <act:id type="new">fb2095a2fa39b1b00da13e7a395b660a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>681.0</act:code>
-  <act:description>681.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">578a216435cf95ca1234c034b53940f2</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Zinsaufw. aus F'verb. ggn. Aktionären</act:name>
-  <act:id type="new">16a807e29ceb534393669317623034d6</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>682.0</act:code>
-  <act:description>682.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">578a216435cf95ca1234c034b53940f2</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Zinsaufw. F'verb. ggn. Vorsorgeeinr.</act:name>
-  <act:id type="new">6360f71ae9f827fb91031c5dda6d27da</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>683.0</act:code>
-  <act:description>683.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">578a216435cf95ca1234c034b53940f2</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Finanzaufwand</act:name>
-  <act:id type="new">9d8cd7fe687d738f3a5491562bddf251</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>684.0</act:code>
-  <act:description>684.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">578a216435cf95ca1234c034b53940f2</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Finanzertrag</act:name>
-  <act:id type="new">899b19c52b12e44349a539a5e6d32d82</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>685</act:code>
-  <act:description>685</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">744a248e08fac386b838efc48c36a3ac</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erträge aus fl. Mitteln u. Wertschriften</act:name>
-  <act:id type="new">4232b3ba822566aa3f6070e0425a3361</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>685.0</act:code>
-  <act:description>685.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">899b19c52b12e44349a539a5e6d32d82</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erträge aus Finanzanlagen</act:name>
-  <act:id type="new">1e5613d7a8b90e5c5f41a9045b686288</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>686.0</act:code>
-  <act:description>686.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">899b19c52b12e44349a539a5e6d32d82</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erträge aus F'anlagen bei Konzernges.</act:name>
-  <act:id type="new">8b96ee294e36036b27465194831b46c7</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>687.0</act:code>
-  <act:description>687.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">899b19c52b12e44349a539a5e6d32d82</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erträge aud F'anlagen bei Aktionären</act:name>
-  <act:id type="new">48b730bf90a3e350181e45156521d5bf</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>688.0</act:code>
-  <act:description>688.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">899b19c52b12e44349a539a5e6d32d82</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ãœbriger Finanzertrag</act:name>
-  <act:id type="new">74a386db50c394eddd7213d14cca37ba</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>689.0</act:code>
-  <act:description>689.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">899b19c52b12e44349a539a5e6d32d82</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Abschreibungen</act:name>
-  <act:id type="new">dff1aa96e566c066db1aea76853b07bd</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>69</act:code>
-  <act:description>69</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">58fa26c6900b9562a176c1d4121dece1</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Auf Finanzanlagen</act:name>
-  <act:id type="new">7c96947e69272e0aca6bd4b197778526</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>690</act:code>
-  <act:description>690</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">dff1aa96e566c066db1aea76853b07bd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>auf Beteiligungen an Konzernges.</act:name>
-  <act:id type="new">c63d3ba9610d67413435d1838c80fc1f</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>691</act:code>
-  <act:description>691</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">dff1aa96e566c066db1aea76853b07bd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>auf mobilen Sachanlagen</act:name>
-  <act:id type="new">a62e2c9244f45c5ebfc51de038cb7e39</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>692</act:code>
-  <act:description>692</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">dff1aa96e566c066db1aea76853b07bd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>auf immobilen Sachanlagen</act:name>
-  <act:id type="new">5923a9ffda66b4052964cfd0d4f0f407</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>693</act:code>
-  <act:description>693</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">dff1aa96e566c066db1aea76853b07bd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>auf immateriellen Anlagen</act:name>
-  <act:id type="new">19ad22abec649e0d6e5c9e98ea78b58a</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>694</act:code>
-  <act:description>694</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">dff1aa96e566c066db1aea76853b07bd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>auf aktiviertem Aufwand</act:name>
-  <act:id type="new">1853ebad62634299d348f74956af6b87</act:id>
-  <act:type>EXPENSE</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>695</act:code>
-  <act:description>695</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">dff1aa96e566c066db1aea76853b07bd</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebliche Nebenerfolge</act:name>
-  <act:id type="new">a9fcae3ddb11db1bd46d0e734fbe907b</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>7</act:code>
-  <act:description>7</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg aus Nebenbetrieben</act:name>
-  <act:id type="new">8a3d807da063dc92b2cbc12572cf7d8d</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>70</act:code>
-  <act:description>70</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a9fcae3ddb11db1bd46d0e734fbe907b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg aus Nebenbetrieben</act:name>
-  <act:id type="new">b44672f90114ca34f5b2d37805ae6602</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>700</act:code>
-  <act:description>700</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">8a3d807da063dc92b2cbc12572cf7d8d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg aus Nebenbetrieb 1</act:name>
-  <act:id type="new">7f9bd74fff29ada160db8cc270ff981e</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>701.0</act:code>
-  <act:description>701.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">b44672f90114ca34f5b2d37805ae6602</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg aus Nebenbetrieb 2</act:name>
-  <act:id type="new">388c27cc906a494c695fef25707506a4</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>702.0</act:code>
-  <act:description>702.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">b44672f90114ca34f5b2d37805ae6602</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg aus Finanzanlagen</act:name>
-  <act:id type="new">8075e989187ad6c3339cb87b0abff990</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>74</act:code>
-  <act:description>74</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a9fcae3ddb11db1bd46d0e734fbe907b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ertrag aus Finanzalnlagen</act:name>
-  <act:id type="new">b798922e21467e017485e64c66f1f82b</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>740</act:code>
-  <act:description>740</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">8075e989187ad6c3339cb87b0abff990</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwand aus Finanzanlagen</act:name>
-  <act:id type="new">ce785cbfbcf98db77448af33bd0405dd</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>741</act:code>
-  <act:description>741</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">8075e989187ad6c3339cb87b0abff990</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebliche Liegenschaften</act:name>
-  <act:id type="new">9dbf7ed31946285f543eab736fd36e7d</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>75</act:code>
-  <act:description>75</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a9fcae3ddb11db1bd46d0e734fbe907b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebliche Liegenschaft 1</act:name>
-  <act:id type="new">82e5f3f10ffb226777605854a7d31c86</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>750</act:code>
-  <act:description>750</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9dbf7ed31946285f543eab736fd36e7d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ertrag betriebliche Liegenschaft 1</act:name>
-  <act:id type="new">77dd5267d7bc6d9dba938dd6f5faf75d</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>750.0</act:code>
-  <act:description>750.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">82e5f3f10ffb226777605854a7d31c86</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwand betriebliche Liegenschaft 1</act:name>
-  <act:id type="new">99cc2078585f576a7f7aace8cc102dcb</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>751.0</act:code>
-  <act:description>751.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">82e5f3f10ffb226777605854a7d31c86</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebliche Liegenschaft 2</act:name>
-  <act:id type="new">c389e2a8f18c4e3923da6a2676275764</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>752</act:code>
-  <act:description>752</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">9dbf7ed31946285f543eab736fd36e7d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Etrag betriebliche Liegenschaft 2</act:name>
-  <act:id type="new">f88b01dcd8a6d664c115d09cf97c5ca5</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>752.0</act:code>
-  <act:description>752.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">c389e2a8f18c4e3923da6a2676275764</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwand betriebliche Liegenschaft 2 </act:name>
-  <act:id type="new">d9b90d062be319ed5fed749fab967836</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>753.0</act:code>
-  <act:description>753.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">c389e2a8f18c4e3923da6a2676275764</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Gew. aus Veräusserung v. betr. Anlagever.</act:name>
-  <act:id type="new">bb06ce503ac898ed1497b5654d4a921f</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>79</act:code>
-  <act:description>79</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a9fcae3ddb11db1bd46d0e734fbe907b</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Gewinne aus Finanzanlagen</act:name>
-  <act:id type="new">8d9ff5812a0fd30f7baf3923276b5c52</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>790</act:code>
-  <act:description>790</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">bb06ce503ac898ed1497b5654d4a921f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Gewinne aus mobilen Sachanlagen</act:name>
-  <act:id type="new">ba0187a4d2617c7025acbb2b86a95c85</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>791</act:code>
-  <act:description>791</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">bb06ce503ac898ed1497b5654d4a921f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Gewinne aus immobilen Sachanlagen</act:name>
-  <act:id type="new">e93ac127b970417d3ad7f4176c42e4e1</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>792</act:code>
-  <act:description>792</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">bb06ce503ac898ed1497b5654d4a921f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Gewinne aus immateriellen Anlagen</act:name>
-  <act:id type="new">336599a54acbbeb58a846cac1e1e2dba</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>793</act:code>
-  <act:description>793</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">bb06ce503ac898ed1497b5654d4a921f</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>A.O. und Betriebsfremder Erfolg; Steuern</act:name>
-  <act:id type="new">47b446803b3608bc139eb9ba686d59fc</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>8</act:code>
-  <act:description>8</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ausserordentlicher Erfolg</act:name>
-  <act:id type="new">8267109f656887478c08b539f0c6da62</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>80</act:code>
-  <act:description>80</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">47b446803b3608bc139eb9ba686d59fc</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ausserordentlicher Ertrag</act:name>
-  <act:id type="new">35274d4b32319cb5cadd77b915ae1669</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>800</act:code>
-  <act:description>800</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">8267109f656887478c08b539f0c6da62</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ausserordentlicher Aufwand</act:name>
-  <act:id type="new">13971e8ef904ab0ff80c59e7e532d835</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>801</act:code>
-  <act:description>801</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">8267109f656887478c08b539f0c6da62</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Betriebsfremder Erfolg</act:name>
-  <act:id type="new">026bf1d1cebe2cf7fffc0b54f72a0c3a</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>82</act:code>
-  <act:description>82</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">47b446803b3608bc139eb9ba686d59fc</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebsfremder Unternehmensteil</act:name>
-  <act:id type="new">7a68996c02e8bbf22b89833cd9129e83</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>820</act:code>
-  <act:description>820</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">026bf1d1cebe2cf7fffc0b54f72a0c3a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebsfr. Unternehmensteil 1</act:name>
-  <act:id type="new">1ad36cea59994e7b75647c724388b733</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>820.0</act:code>
-  <act:description>820.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7a68996c02e8bbf22b89833cd9129e83</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebsfr. Unternehmensteil 2</act:name>
-  <act:id type="new">b13dce4e261fabd7ecf41efe01054f08</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>822.0</act:code>
-  <act:description>822.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7a68996c02e8bbf22b89833cd9129e83</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebsfremde Finanzanlagen</act:name>
-  <act:id type="new">7868518cfc0930f9998996823191b9d5</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>840</act:code>
-  <act:description>840</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">026bf1d1cebe2cf7fffc0b54f72a0c3a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Ertrag betriebsfremde Finanzanlagen</act:name>
-  <act:id type="new">9cb091cfb89333103cf313b93af7b658</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>840.0</act:code>
-  <act:description>840.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7868518cfc0930f9998996823191b9d5</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Aufwand betriebsfremde Finanzanlagen</act:name>
-  <act:id type="new">e3257a5923cf7ea88afac12cfc1c58a6</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>841.0</act:code>
-  <act:description>841.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7868518cfc0930f9998996823191b9d5</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebsfremde Liegenschaften</act:name>
-  <act:id type="new">409ec8ea3b6dec38d1253f88c4b40bde</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>850</act:code>
-  <act:description>850</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">026bf1d1cebe2cf7fffc0b54f72a0c3a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebsfremde Liegenschaft 1</act:name>
-  <act:id type="new">199fb86a4ad9a1f4331006fcaeb3ac59</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>850.0</act:code>
-  <act:description>850.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">409ec8ea3b6dec38d1253f88c4b40bde</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolg betriebsfremde Liegenschaft 2</act:name>
-  <act:id type="new">623e1c8f12f4a50a55db59099214cee8</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>852.0</act:code>
-  <act:description>852.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">409ec8ea3b6dec38d1253f88c4b40bde</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sonstiger betriebsfremder Erfolg</act:name>
-  <act:id type="new">a871c6ac9600d9d79c6ece57b5f70187</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>870</act:code>
-  <act:description>870</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">026bf1d1cebe2cf7fffc0b54f72a0c3a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sonstiger betriebsfremder Ertrag</act:name>
-  <act:id type="new">e9af422f12e7163934cea016b214b048</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>870.0</act:code>
-  <act:description>870.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a871c6ac9600d9d79c6ece57b5f70187</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sonstiger betriebsfremder Aufwand</act:name>
-  <act:id type="new">0c53b79d4f417a2f70cd93df125b7e5c</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>871.0</act:code>
-  <act:description>871.0</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">a871c6ac9600d9d79c6ece57b5f70187</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Minderheitsanteile am Ergebnis</act:name>
-  <act:id type="new">2d0691a41182f04324c34171b93e8f3b</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>880</act:code>
-  <act:description>880</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">026bf1d1cebe2cf7fffc0b54f72a0c3a</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Steuern</act:name>
-  <act:id type="new">0f266f24ba3047e1527ef452995a2c0f</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>89</act:code>
-  <act:description>89</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">47b446803b3608bc139eb9ba686d59fc</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Abschluss</act:name>
-  <act:id type="new">854449aeb147d57494ffed019def8eba</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>9</act:code>
-  <act:description>9</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolgsrechnung</act:name>
-  <act:id type="new">d496b1686ab179e8e1c5092e781c1872</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>90</act:code>
-  <act:description>90</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">854449aeb147d57494ffed019def8eba</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Erfolgsrechnung</act:name>
-  <act:id type="new">4e572d911792b485d7bd133f8c6c31a4</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>900</act:code>
-  <act:description>900</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">d496b1686ab179e8e1c5092e781c1872</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bilanz</act:name>
-  <act:id type="new">b27ee8ab7578b799d3a197e735cacba8</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>91</act:code>
-  <act:description>91</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">854449aeb147d57494ffed019def8eba</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Bilanz</act:name>
-  <act:id type="new">d5cc78feb5db56fd3740a2e93df1e31b</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>910</act:code>
-  <act:description>910</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">b27ee8ab7578b799d3a197e735cacba8</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Gewinnverwendung</act:name>
-  <act:id type="new">e3641f9ea829ad6ce5c66bedd76d2d3c</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>92</act:code>
-  <act:description>92</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">854449aeb147d57494ffed019def8eba</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Hilfskonten Gewinnverwendung</act:name>
-  <act:id type="new">8e1bfabbb814fd904128bf117a7b9bb4</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>920</act:code>
-  <act:description>920</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">e3641f9ea829ad6ce5c66bedd76d2d3c</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sammel- und Fehlbuchungen</act:name>
-  <act:id type="new">7cf6f12e6b6fbbc4dd29b9e66463ddca</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>99</act:code>
-  <act:description>99</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">854449aeb147d57494ffed019def8eba</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Sammelbuchungen</act:name>
-  <act:id type="new">25c6417cda320841fe2eaa9e3d3b1428</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>990</act:code>
-  <act:description>990</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7cf6f12e6b6fbbc4dd29b9e66463ddca</act:parent>
-</gnc:account>
-<gnc:account version="2.0.0">
-  <act:name>Fehlbuchungen</act:name>
-  <act:id type="new">8b08191acf0e4b228f43df7542996f6a</act:id>
-  <act:type>INCOME</act:type>
-  <act:commodity>
-    <cmdty:space>ISO4217</cmdty:space>
-    <cmdty:id>CHF</cmdty:id>
-  </act:commodity>
-  <act:commodity-scu>100</act:commodity-scu>
-  <act:code>991</act:code>
-  <act:description>991</act:description>
-  <act:slots>
-    <slot>
-      <slot:key>placeholder</slot:key>
-      <slot:value type="string">false</slot:value>
-    </slot>
-    <slot>
-      <slot:key>notes</slot:key>
-      <slot:value type="string"></slot:value>
-    </slot>
-  </act:slots>
-  <act:parent type="new">7cf6f12e6b6fbbc4dd29b9e66463ddca</act:parent>
-</gnc:account>
-</gnc-account-example>
diff --git a/data/accounts/de_CH/acctchrt_chkmu19.gnucash-xea b/data/accounts/de_CH/acctchrt_kmu.gnucash-xea
similarity index 89%
rename from data/accounts/de_CH/acctchrt_chkmu19.gnucash-xea
rename to data/accounts/de_CH/acctchrt_kmu.gnucash-xea
index b7801fe7e..a586678b9 100644
--- a/data/accounts/de_CH/acctchrt_chkmu19.gnucash-xea
+++ b/data/accounts/de_CH/acctchrt_kmu.gnucash-xea
@@ -1,50 +1,53 @@
 <?xml version="1.0" encoding="utf-8" ?>
 <gnc-account-example
-     xmlns:gnc="http://www.gnucash.org/XML/gnc"
-     xmlns:act="http://www.gnucash.org/XML/act"
-     xmlns:book="http://www.gnucash.org/XML/book"
-     xmlns:cd="http://www.gnucash.org/XML/cd"
-     xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
-     xmlns:price="http://www.gnucash.org/XML/price"
-     xmlns:slot="http://www.gnucash.org/XML/slot"
-     xmlns:split="http://www.gnucash.org/XML/split"
-     xmlns:sx="http://www.gnucash.org/XML/sx"
-     xmlns:trn="http://www.gnucash.org/XML/trn"
-     xmlns:ts="http://www.gnucash.org/XML/ts"
-     xmlns:fs="http://www.gnucash.org/XML/fs"
-     xmlns:bgt="http://www.gnucash.org/XML/bgt"
-     xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
-     xmlns:lot="http://www.gnucash.org/XML/lot"
-     xmlns:addr="http://www.gnucash.org/XML/addr"
-     xmlns:billterm="http://www.gnucash.org/XML/billterm"
-     xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
-     xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
-     xmlns:cust="http://www.gnucash.org/XML/cust"
-     xmlns:employee="http://www.gnucash.org/XML/employee"
-     xmlns:entry="http://www.gnucash.org/XML/entry"
-     xmlns:invoice="http://www.gnucash.org/XML/invoice"
-     xmlns:job="http://www.gnucash.org/XML/job"
-     xmlns:order="http://www.gnucash.org/XML/order"
-     xmlns:owner="http://www.gnucash.org/XML/owner"
-     xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
-     xmlns:tte="http://www.gnucash.org/XML/tte"
-     xmlns:vendor="http://www.gnucash.org/XML/vendor">
-	     <gnc-act:title>
-      KMU Kontenrahmen 2019
-    </gnc-act:title>
-    <gnc-act:short-description>
-     Kontenrahmen fuer Schweizer KMU Neue Auflage
-    </gnc-act:short-description>
-    <gnc-act:long-description>
-     Kontenrahmen fuer Schweizer KMU gem Sterchi I Mattle I Helbling publiziert vom veb.ch
-    </gnc-act:long-description>
-    <gnc-act:exclude-from-select-all>1</gnc-act:exclude-from-select-all>
+  xmlns:gnc="http://www.gnucash.org/XML/gnc"
+  xmlns:act="http://www.gnucash.org/XML/act"
+  xmlns:book="http://www.gnucash.org/XML/book"
+  xmlns:cd="http://www.gnucash.org/XML/cd"
+  xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
+  xmlns:price="http://www.gnucash.org/XML/price"
+  xmlns:slot="http://www.gnucash.org/XML/slot"
+  xmlns:split="http://www.gnucash.org/XML/split"
+  xmlns:sx="http://www.gnucash.org/XML/sx"
+  xmlns:trn="http://www.gnucash.org/XML/trn"
+  xmlns:ts="http://www.gnucash.org/XML/ts"
+  xmlns:fs="http://www.gnucash.org/XML/fs"
+  xmlns:bgt="http://www.gnucash.org/XML/bgt"
+  xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
+  xmlns:lot="http://www.gnucash.org/XML/lot"
+  xmlns:addr="http://www.gnucash.org/XML/addr"
+  xmlns:billterm="http://www.gnucash.org/XML/billterm"
+  xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
+  xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
+  xmlns:cust="http://www.gnucash.org/XML/cust"
+  xmlns:employee="http://www.gnucash.org/XML/employee"
+  xmlns:entry="http://www.gnucash.org/XML/entry"
+  xmlns:invoice="http://www.gnucash.org/XML/invoice"
+  xmlns:job="http://www.gnucash.org/XML/job"
+  xmlns:order="http://www.gnucash.org/XML/order"
+  xmlns:owner="http://www.gnucash.org/XML/owner"
+  xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
+  xmlns:tte="http://www.gnucash.org/XML/tte"
+  xmlns:vendor="http://www.gnucash.org/XML/vendor">
+
+<gnc-act:title>
+  KMU Kontenrahmen 2013
+</gnc-act:title>
+<gnc-act:short-description>
+  Kontenrahmen fuer Schweizer KMU ab 2013
+</gnc-act:short-description>
+<gnc-act:long-description>
+Kontenrahmen fuer Schweizer KMU gem Sterchi I Mattle I Helbling publiziert vom veb.ch.
+Dies ist der Grundplan gemäss offiziellen Plan. 
+</gnc-act:long-description>
+<gnc-act:exclude-from-select-all>1</gnc-act:exclude-from-select-all>
+
 <gnc:account version="2.0.0">
   <act:name>Root Account</act:name>
   <act:id type="guid">8cd23636f1e04a74a35c13ae23427c14</act:id>
   <act:type>ROOT</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -54,7 +57,7 @@
   <act:id type="guid">e3f7b59890ec44688241f322db0a7392</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -67,7 +70,7 @@
   <act:id type="guid">264d9071ae2945a186436dc8e4b95dab</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -80,7 +83,7 @@
   <act:id type="guid">a602999aceb84ba3b9a1654ba9ba66c0</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -93,7 +96,7 @@
   <act:id type="guid">379fab16b4884fddae0d6d7e959d4471</act:id>
   <act:type>CASH</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -106,7 +109,7 @@
   <act:id type="guid">29563b55669b47f991244a4e6d579c75</act:id>
   <act:type>BANK</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -119,7 +122,7 @@
   <act:id type="guid">e6619891e57446c8978fa2e92023c58a</act:id>
   <act:type>BANK</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -132,7 +135,7 @@
   <act:id type="guid">e888673f62eb40dca11fa15887bf46b0</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -145,7 +148,7 @@
   <act:id type="guid">eb0cf039f7154b35af988ccef891e35f</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -158,7 +161,7 @@
   <act:id type="guid">4d13e5097e204258877368d3735ee5e4</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -171,7 +174,7 @@
   <act:id type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -184,7 +187,7 @@
   <act:id type="guid">559a32ef6fc643cb987de492b524d031</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -197,7 +200,7 @@
   <act:id type="guid">0a40362a5183425790a6df0cd8045277</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -210,7 +213,7 @@
   <act:id type="guid">05a6995154174d008d7ebec87f7295f1</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -223,7 +226,7 @@
   <act:id type="guid">c9d2781eb3fb44d6a64913d85504a57f</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -236,7 +239,7 @@
   <act:id type="guid">b8c8adaa14ab41c4915538ee6b709d42</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -249,7 +252,7 @@
   <act:id type="guid">07a04830ee204bb1a08803eee99c7674</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -262,7 +265,7 @@
   <act:id type="guid">45bab5223ab042deb9751fa1256fe95b</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -275,7 +278,7 @@
   <act:id type="guid">29967c024d5a403bb0a90e9ddb7c8beb</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -288,7 +291,7 @@
   <act:id type="guid">0f0cb8cc307b4cf19da688ead07174bc</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -301,7 +304,7 @@
   <act:id type="guid">545d0c4d02ed43aeaf5190d72ef0f795</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -314,7 +317,7 @@
   <act:id type="guid">ab9f2c03af2d4f25a7939a75c70ab2f5</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -327,7 +330,7 @@
   <act:id type="guid">ea98b3c5c9c9434f92b5eb621b22038d</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -340,7 +343,7 @@
   <act:id type="guid">cfc6925f45c641d0a73962fd0ea0fabd</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -353,7 +356,7 @@
   <act:id type="guid">edcd8672409a4bf6a895eac7c8703d34</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -366,7 +369,7 @@
   <act:id type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -379,7 +382,7 @@
   <act:id type="guid">6f6144410f7d45868ee34569bf9c3d5d</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -392,7 +395,7 @@
   <act:id type="guid">b543dd80e3654ac1a1c36ca61c826c66</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -405,7 +408,7 @@
   <act:id type="guid">337eb05111ae4beb9598168fa1a0a964</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -418,7 +421,7 @@
   <act:id type="guid">68df215725d540f88f6eaf1ba2b266b9</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -431,7 +434,7 @@
   <act:id type="guid">2d2c77dfd938491fb84c8b078716338f</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -444,7 +447,7 @@
   <act:id type="guid">2ecfb89a8c0f466b9b43ab19a166f6d1</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -457,7 +460,7 @@
   <act:id type="guid">cf367633674040ce8f4e098b6e1c821f</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -470,7 +473,7 @@
   <act:id type="guid">a2953b6a540e4dff8f667cc7e26d9673</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -483,7 +486,7 @@
   <act:id type="guid">ffead78845184361a9749202532344a9</act:id>
   <act:type>RECEIVABLE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -496,7 +499,7 @@
   <act:id type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -509,7 +512,7 @@
   <act:id type="guid">c58b830157164df9aa197f9a0a0d3525</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -522,7 +525,7 @@
   <act:id type="guid">9571591f31f0413a86fb4e60c181271a</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -535,7 +538,7 @@
   <act:id type="guid">e395f07daef54a4d9f1dd96c0f69b3e2</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -548,7 +551,7 @@
   <act:id type="guid">6982fd93c9f34a76801c8e9dbae14d9b</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -561,7 +564,7 @@
   <act:id type="guid">6df29a65023a479bbe7d8cfe584b7753</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -574,7 +577,7 @@
   <act:id type="guid">b819f6775e6e4d8f9ac82381d9b02380</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -587,7 +590,7 @@
   <act:id type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -600,7 +603,7 @@
   <act:id type="guid">e7ef6a0f90ed4b3781336a11d3560cc1</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -613,7 +616,7 @@
   <act:id type="guid">e8594be72dae4697b7353e4c42282429</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -626,7 +629,7 @@
   <act:id type="guid">974d79602d3f4abb8226f51ebaa1a560</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -639,7 +642,7 @@
   <act:id type="guid">5eca184e768945c2b148a2b7752458e6</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -652,7 +655,7 @@
   <act:id type="guid">526e701c624b460789c94600964cfc33</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -665,7 +668,7 @@
   <act:id type="guid">b2341b1b75b6493ab7ca6ed71264c4c8</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -678,7 +681,7 @@
   <act:id type="guid">a59b2cc3b1f5453ab9d154b04eedac61</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -691,7 +694,7 @@
   <act:id type="guid">edd98d2517c547c5973a0af80db3ff7a</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -704,7 +707,7 @@
   <act:id type="guid">662daad6d7ee42a8a5e9d237fe41e292</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -717,7 +720,7 @@
   <act:id type="guid">119bb844f3ad4d94863098c3b2d06803</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -730,7 +733,7 @@
   <act:id type="guid">d0e005ee0f924d68aa5c27de625c106b</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -743,7 +746,7 @@
   <act:id type="guid">7fe070f51db8420b97eb23e5a1bd2445</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -756,7 +759,7 @@
   <act:id type="guid">1a70c4acc8a746aeba59021390ac3f89</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -769,7 +772,7 @@
   <act:id type="guid">6cc852b809f94f08aeaf137ab01e8742</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -782,7 +785,7 @@
   <act:id type="guid">450c0971814c4becafd9cfc6ad26897a</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -795,7 +798,7 @@
   <act:id type="guid">e4a20cc0882947ebae367ebb71d839bf</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -808,7 +811,7 @@
   <act:id type="guid">369839f3074246bbb175123d8ffcc907</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -821,7 +824,7 @@
   <act:id type="guid">030d28c8ebb44210811f3f363178c730</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -834,7 +837,7 @@
   <act:id type="guid">69a403bd13524112bd20975a94efb78e</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -847,7 +850,7 @@
   <act:id type="guid">f1957abd46ea4229be38aabe591b50ac</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -860,7 +863,7 @@
   <act:id type="guid">1ab77bb7d37f4fa396d9cedc0653e04d</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -873,7 +876,7 @@
   <act:id type="guid">160cf2bacf0e45328263e3e4e0584c1e</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -886,7 +889,7 @@
   <act:id type="guid">126586438d5442f6be2cf49da35d3023</act:id>
   <act:type>ASSET</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -899,7 +902,7 @@
   <act:id type="guid">294235978d5d48508b11c17fc3a3742b</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -912,7 +915,7 @@
   <act:id type="guid">518d005b62f247ea8239409f2eaea223</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -925,7 +928,7 @@
   <act:id type="guid">ab39e01994b845fb94a6e95a6a454e0b</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -938,7 +941,7 @@
   <act:id type="guid">8d59aebe9a3948e4b994cb29b913e229</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -951,7 +954,7 @@
   <act:id type="guid">6703b28cdfab44f5986a5cf0fd7f35c1</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -964,7 +967,7 @@
   <act:id type="guid">78ccf5ae04854b00be1b2ce393a427a3</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -977,7 +980,7 @@
   <act:id type="guid">d0a8a51f74344c9ea18f2ae049099fc3</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -990,7 +993,7 @@
   <act:id type="guid">52da9c39b0fe4309896afdcfdf211e2c</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1003,7 +1006,7 @@
   <act:id type="guid">21a8e719e3f245eb8a9430f822ca766d</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1016,7 +1019,7 @@
   <act:id type="guid">0062147bc2e54d3fb2d47340daaeb197</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1029,7 +1032,7 @@
   <act:id type="guid">3df14c48fea4401880cec2542179d78e</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1042,7 +1045,7 @@
   <act:id type="guid">d53d7c11942a46d0980360e5e7167d1f</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1055,7 +1058,7 @@
   <act:id type="guid">4902b5e9fd254394b092bdac7d380ee8</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1068,7 +1071,7 @@
   <act:id type="guid">57cbb66f8fa14ee9b8db09aa6dbc0101</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1081,7 +1084,7 @@
   <act:id type="guid">1caa50dbc0794127acae0b2627681b56</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1094,7 +1097,7 @@
   <act:id type="guid">dbab7e71720b45efad4b2ba093158939</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1107,7 +1110,7 @@
   <act:id type="guid">597d61cbc2fe4612b6af64059a795672</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1120,7 +1123,7 @@
   <act:id type="guid">f844a18cbdf84120a763b309688087fa</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1133,7 +1136,7 @@
   <act:id type="guid">a270ba393d11451bad379ba0d9f35787</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1146,7 +1149,7 @@
   <act:id type="guid">70427c3d46274bf28dbd4030b4fee653</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1159,7 +1162,7 @@
   <act:id type="guid">85bf526f7e6c446a9be5bacf09034e7b</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1172,7 +1175,7 @@
   <act:id type="guid">e54521e6300543c5979ef296329bd3ba</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1185,7 +1188,7 @@
   <act:id type="guid">e5e7a14ef75e4d3bb30c6e8d185a4288</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1198,7 +1201,7 @@
   <act:id type="guid">722dc33a7f5c450683c8ceb182caff33</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1211,7 +1214,7 @@
   <act:id type="guid">1d1932966fe84c7d9d1b69c3d5de56da</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1224,7 +1227,7 @@
   <act:id type="guid">0d9782c1f3674163bd57a79dda6db114</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1237,7 +1240,7 @@
   <act:id type="guid">0e788cacedc7435a9bc364996b55c2bb</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1250,7 +1253,7 @@
   <act:id type="guid">33c4e2da22d04abf94a6f8b66c12d125</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1263,7 +1266,7 @@
   <act:id type="guid">59af9b1c47b1481faa831f2e9486ee78</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1276,7 +1279,7 @@
   <act:id type="guid">e28344b55f234a64afe228884b9bef81</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1289,7 +1292,7 @@
   <act:id type="guid">2632ae5a632a4214860adc582d630d89</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1302,7 +1305,7 @@
   <act:id type="guid">52e84a57d83b4f6aa0b57823943be630</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1315,7 +1318,7 @@
   <act:id type="guid">883bf9dc29bf4f73ac88c9bfa3221a5d</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1328,7 +1331,7 @@
   <act:id type="guid">82143ea43dcd4cdbbf5b469c0773f9b6</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1341,7 +1344,7 @@
   <act:id type="guid">4f942372d53b486e985f0524ef484a48</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1354,7 +1357,7 @@
   <act:id type="guid">920c76782e364787b20faddddcc356fe</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1367,7 +1370,7 @@
   <act:id type="guid">35e6318959294d84994376047bef94a7</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1380,7 +1383,7 @@
   <act:id type="guid">8675198475f143f3b840fe9822bf097b</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1393,7 +1396,7 @@
   <act:id type="guid">8918ab18185146bca6db267cf17dbba5</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1406,7 +1409,7 @@
   <act:id type="guid">984b64f48ab74d30a2c1d8d259ab817b</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1419,7 +1422,7 @@
   <act:id type="guid">6fa91e39a5f7488cb7d04fc6c2a56810</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1432,7 +1435,7 @@
   <act:id type="guid">780726e389184e1ab7f7fbfe16d5f17b</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1445,7 +1448,7 @@
   <act:id type="guid">9bb074b99e4d4a40b9151c2289c10073</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1458,7 +1461,7 @@
   <act:id type="guid">4df7a3d99e0e407796920758f2708f7d</act:id>
   <act:type>LIABILITY</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1471,7 +1474,7 @@
   <act:id type="guid">112eb0f3756a430aa69b0907a54e0901</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1484,7 +1487,7 @@
   <act:id type="guid">cf1a254d6a7f4a8880971b2c63302ac8</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1497,7 +1500,7 @@
   <act:id type="guid">283b5946ac854e458023ac02dec55e16</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1510,7 +1513,7 @@
   <act:id type="guid">0605c6e4a0fb4fefa3ab69327afa9b39</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1523,7 +1526,7 @@
   <act:id type="guid">ffadde9940ad4cf0b9654f0823c5d351</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1536,7 +1539,7 @@
   <act:id type="guid">7664026179364bcc979394ae4918b019</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1549,7 +1552,7 @@
   <act:id type="guid">f381d3cda1c34bf0a3444dab963b2343</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1562,7 +1565,7 @@
   <act:id type="guid">02a04d06c1334dfb8af05d9ad161d138</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1575,7 +1578,7 @@
   <act:id type="guid">f22875f5c5ff446bb3e3dcbc6b0607cb</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1588,7 +1591,7 @@
   <act:id type="guid">2ada001a61514bfb9b2852aee6fec360</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1601,7 +1604,7 @@
   <act:id type="guid">821e9e8a464b43c2b521a8400f469212</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1614,7 +1617,7 @@
   <act:id type="guid">b3a8192ccee440c1a0d34662682cced9</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1627,7 +1630,7 @@
   <act:id type="guid">fbb69d024c454632948625450e3f56a6</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1640,7 +1643,7 @@
   <act:id type="guid">62954e9240e242e7886e82a2fe9075dc</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1653,7 +1656,7 @@
   <act:id type="guid">69513288a86f4fa09247ce3550b8b5e2</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1666,7 +1669,7 @@
   <act:id type="guid">286ea0c72e664134869eb7040cc1b2fa</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1679,7 +1682,7 @@
   <act:id type="guid">a8cb56ff219440f091f260f272a7e111</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1692,7 +1695,7 @@
   <act:id type="guid">9336a497814046b0a9fa219b4333bd03</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1705,7 +1708,7 @@
   <act:id type="guid">c2d5092240de4a058420e649983d6e6d</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1718,7 +1721,7 @@
   <act:id type="guid">3dd4ad61f7bb46c89e09f75619633b3b</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1731,7 +1734,7 @@
   <act:id type="guid">3e476a14f60940599d5da6ea47c57260</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1744,7 +1747,7 @@
   <act:id type="guid">d3a29ff165704fa9ad4dd970189effab</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1757,7 +1760,7 @@
   <act:id type="guid">5dd9a5822b06481d805756c18293bfdd</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1770,7 +1773,7 @@
   <act:id type="guid">17ef00426d0b4066ad5297325ecf16a4</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1783,7 +1786,7 @@
   <act:id type="guid">6fd08c95e4d842d988fdf2ac76914781</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1796,7 +1799,7 @@
   <act:id type="guid">cfc48367c9614fa5b323f170141c1114</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1809,7 +1812,7 @@
   <act:id type="guid">22936c9ba2bb497fb8189982dc498482</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1822,7 +1825,7 @@
   <act:id type="guid">a82f018d74944c638d39c34b92d384d1</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1835,7 +1838,7 @@
   <act:id type="guid">a845f9c9f0214c438ca1b3a0ecadd338</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1848,7 +1851,7 @@
   <act:id type="guid">be254bd0442f411294580dcade4518a1</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1861,7 +1864,7 @@
   <act:id type="guid">88881f27434d467eafdb411015df811f</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1874,7 +1877,7 @@
   <act:id type="guid">40ae3f3a0d61437eaa9b3e3274b1957f</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1887,7 +1890,7 @@
   <act:id type="guid">f9aa84463ff2462498ea60128f9114fe</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1900,7 +1903,7 @@
   <act:id type="guid">60ba0279f36e46fa912c72206ed91b75</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1913,7 +1916,7 @@
   <act:id type="guid">6f27632a88df484fb21253cbf8e0cc95</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1926,7 +1929,7 @@
   <act:id type="guid">ddd87c65af9b471687873e3f6c255086</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1939,7 +1942,7 @@
   <act:id type="guid">85ea8bc334c247b39ec7a279738c6037</act:id>
   <act:type>EXPENSE</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1952,7 +1955,7 @@
   <act:id type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1965,7 +1968,7 @@
   <act:id type="guid">c8c43650635e436ea24b4c03dc1d19ad</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1978,7 +1981,7 @@
   <act:id type="guid">b741158e82af43a983a729b6964f48c4</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -1991,7 +1994,7 @@
   <act:id type="guid">5ba3c1d4c947457c92d7192079c58e93</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2004,7 +2007,7 @@
   <act:id type="guid">2c9626ccfeb14b52b68b48c5f6312e0f</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2017,7 +2020,7 @@
   <act:id type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2030,7 +2033,7 @@
   <act:id type="guid">903948bc18da4853a4616dbfaa0c1a3e</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2043,7 +2046,7 @@
   <act:id type="guid">1df187c1bb304c159923780dd417c729</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2056,7 +2059,7 @@
   <act:id type="guid">6c9b91aa0b794904a03805bcffbb6744</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2069,7 +2072,7 @@
   <act:id type="guid">e3b24b1150134fa598bcf620da52a2e6</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2082,7 +2085,7 @@
   <act:id type="guid">7e43a5e29f77460dbda26d475492bd52</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2095,7 +2098,7 @@
   <act:id type="guid">99c8d4fa6bac4de0b2d505f65e9b8c6b</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2108,7 +2111,7 @@
   <act:id type="guid">3b10783f477e440b971e3dce693236e5</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>
@@ -2121,7 +2124,7 @@
   <act:id type="guid">be48f890d33444f883f41069641daaa3</act:id>
   <act:type>INCOME</act:type>
   <act:commodity>
-    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:space>ISO4217</cmdty:space>
     <cmdty:id>CHF</cmdty:id>
   </act:commodity>
   <act:commodity-scu>100</act:commodity-scu>

commit 4510a52f795bc09c8e20c4cbf7c76a075c04ccd4
Author: Marco Blind <mblind at bluewin.ch>
Date:   Sun Nov 24 23:55:12 2019 +0100

    L12N:de_CH: Kontenplan für KMU, gültig seit 2013, Teil 1

diff --git a/data/accounts/de_CH/acctchrt_chkmu19.gnucash-xea b/data/accounts/de_CH/acctchrt_chkmu19.gnucash-xea
new file mode 100644
index 000000000..b7801fe7e
--- /dev/null
+++ b/data/accounts/de_CH/acctchrt_chkmu19.gnucash-xea
@@ -0,0 +1,2133 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<gnc-account-example
+     xmlns:gnc="http://www.gnucash.org/XML/gnc"
+     xmlns:act="http://www.gnucash.org/XML/act"
+     xmlns:book="http://www.gnucash.org/XML/book"
+     xmlns:cd="http://www.gnucash.org/XML/cd"
+     xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
+     xmlns:price="http://www.gnucash.org/XML/price"
+     xmlns:slot="http://www.gnucash.org/XML/slot"
+     xmlns:split="http://www.gnucash.org/XML/split"
+     xmlns:sx="http://www.gnucash.org/XML/sx"
+     xmlns:trn="http://www.gnucash.org/XML/trn"
+     xmlns:ts="http://www.gnucash.org/XML/ts"
+     xmlns:fs="http://www.gnucash.org/XML/fs"
+     xmlns:bgt="http://www.gnucash.org/XML/bgt"
+     xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
+     xmlns:lot="http://www.gnucash.org/XML/lot"
+     xmlns:addr="http://www.gnucash.org/XML/addr"
+     xmlns:billterm="http://www.gnucash.org/XML/billterm"
+     xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
+     xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
+     xmlns:cust="http://www.gnucash.org/XML/cust"
+     xmlns:employee="http://www.gnucash.org/XML/employee"
+     xmlns:entry="http://www.gnucash.org/XML/entry"
+     xmlns:invoice="http://www.gnucash.org/XML/invoice"
+     xmlns:job="http://www.gnucash.org/XML/job"
+     xmlns:order="http://www.gnucash.org/XML/order"
+     xmlns:owner="http://www.gnucash.org/XML/owner"
+     xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
+     xmlns:tte="http://www.gnucash.org/XML/tte"
+     xmlns:vendor="http://www.gnucash.org/XML/vendor">
+	     <gnc-act:title>
+      KMU Kontenrahmen 2019
+    </gnc-act:title>
+    <gnc-act:short-description>
+     Kontenrahmen fuer Schweizer KMU Neue Auflage
+    </gnc-act:short-description>
+    <gnc-act:long-description>
+     Kontenrahmen fuer Schweizer KMU gem Sterchi I Mattle I Helbling publiziert vom veb.ch
+    </gnc-act:long-description>
+    <gnc-act:exclude-from-select-all>1</gnc-act:exclude-from-select-all>
+<gnc:account version="2.0.0">
+  <act:name>Root Account</act:name>
+  <act:id type="guid">8cd23636f1e04a74a35c13ae23427c14</act:id>
+  <act:type>ROOT</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Aktiven</act:name>
+  <act:id type="guid">e3f7b59890ec44688241f322db0a7392</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1</act:code>
+  <act:description>1</act:description>
+  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Umlaufvermögen</act:name>
+  <act:id type="guid">264d9071ae2945a186436dc8e4b95dab</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>10</act:code>
+  <act:description>10</act:description>
+  <act:parent type="guid">e3f7b59890ec44688241f322db0a7392</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Flüssige Mittel</act:name>
+  <act:id type="guid">a602999aceb84ba3b9a1654ba9ba66c0</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>100</act:code>
+  <act:description>100</act:description>
+  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Kasse</act:name>
+  <act:id type="guid">379fab16b4884fddae0d6d7e959d4471</act:id>
+  <act:type>CASH</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1000</act:code>
+  <act:description>1000</act:description>
+  <act:parent type="guid">a602999aceb84ba3b9a1654ba9ba66c0</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Post</act:name>
+  <act:id type="guid">29563b55669b47f991244a4e6d579c75</act:id>
+  <act:type>BANK</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1010</act:code>
+  <act:description>1010</act:description>
+  <act:parent type="guid">a602999aceb84ba3b9a1654ba9ba66c0</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Bank (Kontokorrent)</act:name>
+  <act:id type="guid">e6619891e57446c8978fa2e92023c58a</act:id>
+  <act:type>BANK</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1020</act:code>
+  <act:description>1020</act:description>
+  <act:parent type="guid">a602999aceb84ba3b9a1654ba9ba66c0</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Forderungen aus Lieferungen und Leistungen</act:name>
+  <act:id type="guid">e888673f62eb40dca11fa15887bf46b0</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>110</act:code>
+  <act:description>110</act:description>
+  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Forderungen aus Lieferungen und Leistungen (Debitoren)</act:name>
+  <act:id type="guid">eb0cf039f7154b35af988ccef891e35f</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1100</act:code>
+  <act:description>1100</act:description>
+  <act:parent type="guid">e888673f62eb40dca11fa15887bf46b0</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Delkredere</act:name>
+  <act:id type="guid">4d13e5097e204258877368d3735ee5e4</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1109</act:code>
+  <act:description>1109</act:description>
+  <act:parent type="guid">e888673f62eb40dca11fa15887bf46b0</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Vorräte und nicht fakturierte Dienstleistungen</act:name>
+  <act:id type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>120</act:code>
+  <act:description>120</act:description>
+  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Handelswaren</act:name>
+  <act:id type="guid">559a32ef6fc643cb987de492b524d031</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1200</act:code>
+  <act:description>1200</act:description>
+  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Rohstoffe</act:name>
+  <act:id type="guid">0a40362a5183425790a6df0cd8045277</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1210</act:code>
+  <act:description>1210</act:description>
+  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Werkstoffe</act:name>
+  <act:id type="guid">05a6995154174d008d7ebec87f7295f1</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1220</act:code>
+  <act:description>1220</act:description>
+  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Hilfs- und Verbrauchsmaterial</act:name>
+  <act:id type="guid">c9d2781eb3fb44d6a64913d85504a57f</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1230</act:code>
+  <act:description>1230</act:description>
+  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Waren in Konsignation</act:name>
+  <act:id type="guid">b8c8adaa14ab41c4915538ee6b709d42</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1250</act:code>
+  <act:description>1250</act:description>
+  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Fertige Erzeugnisse</act:name>
+  <act:id type="guid">07a04830ee204bb1a08803eee99c7674</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1260</act:code>
+  <act:description>1260</act:description>
+  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Unfertige Erzeugnisse</act:name>
+  <act:id type="guid">45bab5223ab042deb9751fa1256fe95b</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1270</act:code>
+  <act:description>1270</act:description>
+  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Nicht fakturierte Dienstleistungen</act:name>
+  <act:id type="guid">29967c024d5a403bb0a90e9ddb7c8beb</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1280</act:code>
+  <act:description>1280</act:description>
+  <act:parent type="guid">5fe44b460f5b45cf89b52a12f2f0abad</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Aktive Rechnungsabgrenzung</act:name>
+  <act:id type="guid">0f0cb8cc307b4cf19da688ead07174bc</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>130</act:code>
+  <act:description>130</act:description>
+  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Bezahlter Aufwand des Folgejahres</act:name>
+  <act:id type="guid">545d0c4d02ed43aeaf5190d72ef0f795</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1300</act:code>
+  <act:description>1300</act:description>
+  <act:parent type="guid">0f0cb8cc307b4cf19da688ead07174bc</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Noch nicht erhaltener Ertrag</act:name>
+  <act:id type="guid">ab9f2c03af2d4f25a7939a75c70ab2f5</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1301</act:code>
+  <act:description>1301</act:description>
+  <act:parent type="guid">0f0cb8cc307b4cf19da688ead07174bc</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Kurzfristig gehaltene Aktiven mit Börsenkurs</act:name>
+  <act:id type="guid">ea98b3c5c9c9434f92b5eb621b22038d</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>106</act:code>
+  <act:description>106</act:description>
+  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertschriften</act:name>
+  <act:id type="guid">cfc6925f45c641d0a73962fd0ea0fabd</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1060</act:code>
+  <act:description>1060</act:description>
+  <act:parent type="guid">ea98b3c5c9c9434f92b5eb621b22038d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Wertschriften</act:name>
+  <act:id type="guid">edcd8672409a4bf6a895eac7c8703d34</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1069</act:code>
+  <act:description>1069</act:description>
+  <act:parent type="guid">ea98b3c5c9c9434f92b5eb621b22038d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ãœbrige kurzfristige Forderungen</act:name>
+  <act:id type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>114</act:code>
+  <act:description>114</act:description>
+  <act:parent type="guid">264d9071ae2945a186436dc8e4b95dab</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Vorschüsse und Darlehen</act:name>
+  <act:id type="guid">6f6144410f7d45868ee34569bf9c3d5d</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1140</act:code>
+  <act:description>1140</act:description>
+  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Vorschüsse und Darlehen</act:name>
+  <act:id type="guid">b543dd80e3654ac1a1c36ca61c826c66</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1149</act:code>
+  <act:description>1149</act:description>
+  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Vorsteuer MWST Material, Waren, Dienstleistungen, Energie</act:name>
+  <act:id type="guid">337eb05111ae4beb9598168fa1a0a964</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1170</act:code>
+  <act:description>1170</act:description>
+  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Vorsteuer MWST Investitionen, übriger Betriebsaufwand</act:name>
+  <act:id type="guid">68df215725d540f88f6eaf1ba2b266b9</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1171</act:code>
+  <act:description>1171</act:description>
+  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Verrechnungssteuer</act:name>
+  <act:id type="guid">2d2c77dfd938491fb84c8b078716338f</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1176</act:code>
+  <act:description>1176</act:description>
+  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Forderungen gegenüber Sozialversicherungen und Vorsorgeeinrichtungen</act:name>
+  <act:id type="guid">2ecfb89a8c0f466b9b43ab19a166f6d1</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1180</act:code>
+  <act:description>1180</act:description>
+  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Quellensteuer</act:name>
+  <act:id type="guid">cf367633674040ce8f4e098b6e1c821f</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1189</act:code>
+  <act:description>1189</act:description>
+  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Sonstige kurzfristige Forderungen</act:name>
+  <act:id type="guid">a2953b6a540e4dff8f667cc7e26d9673</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1190</act:code>
+  <act:description>1190</act:description>
+  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen sonstige kurzfristige Forderungen</act:name>
+  <act:id type="guid">ffead78845184361a9749202532344a9</act:id>
+  <act:type>RECEIVABLE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1199</act:code>
+  <act:description>1199</act:description>
+  <act:parent type="guid">fb0919cfbd2a4c35b5a73a14bb8cb9eb</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Anlagevermögen</act:name>
+  <act:id type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>14</act:code>
+  <act:description>14</act:description>
+  <act:parent type="guid">e3f7b59890ec44688241f322db0a7392</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Finanzanlagen</act:name>
+  <act:id type="guid">c58b830157164df9aa197f9a0a0d3525</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>140</act:code>
+  <act:description>140</act:description>
+  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertschriften</act:name>
+  <act:id type="guid">9571591f31f0413a86fb4e60c181271a</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1400</act:code>
+  <act:description>1400</act:description>
+  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Wertschriften</act:name>
+  <act:id type="guid">e395f07daef54a4d9f1dd96c0f69b3e2</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1409</act:code>
+  <act:description>1409</act:description>
+  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Darlehnen</act:name>
+  <act:id type="guid">6982fd93c9f34a76801c8e9dbae14d9b</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1440</act:code>
+  <act:description>1440</act:description>
+  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Hypotheken</act:name>
+  <act:id type="guid">6df29a65023a479bbe7d8cfe584b7753</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1441</act:code>
+  <act:description>1441</act:description>
+  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen langfristige Forderungen</act:name>
+  <act:id type="guid">b819f6775e6e4d8f9ac82381d9b02380</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1449</act:code>
+  <act:description>1449</act:description>
+  <act:parent type="guid">c58b830157164df9aa197f9a0a0d3525</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Mobile Sachanlagen</act:name>
+  <act:id type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>150</act:code>
+  <act:description>150</act:description>
+  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Maschinen und Apparate</act:name>
+  <act:id type="guid">e7ef6a0f90ed4b3781336a11d3560cc1</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1500</act:code>
+  <act:description>1500</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Maschinen und Apparate</act:name>
+  <act:id type="guid">e8594be72dae4697b7353e4c42282429</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1509</act:code>
+  <act:description>1509</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Mobiliar und Einrichtungen</act:name>
+  <act:id type="guid">974d79602d3f4abb8226f51ebaa1a560</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1510</act:code>
+  <act:description>1510</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Mobiliar und Einrichtungen</act:name>
+  <act:id type="guid">5eca184e768945c2b148a2b7752458e6</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1519</act:code>
+  <act:description>1519</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Büromaschinen, Informatik, Kommunikationstechnologie</act:name>
+  <act:id type="guid">526e701c624b460789c94600964cfc33</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1520</act:code>
+  <act:description>1520</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Büromaschinen, Informatik, Kommunikationstechnologie</act:name>
+  <act:id type="guid">b2341b1b75b6493ab7ca6ed71264c4c8</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1529</act:code>
+  <act:description>1529</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Fahrzeuge</act:name>
+  <act:id type="guid">a59b2cc3b1f5453ab9d154b04eedac61</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1530</act:code>
+  <act:description>1530</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Fahrzeuge</act:name>
+  <act:id type="guid">edd98d2517c547c5973a0af80db3ff7a</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1539</act:code>
+  <act:description>1539</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Werkzeuge und Geräte</act:name>
+  <act:id type="guid">662daad6d7ee42a8a5e9d237fe41e292</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1540</act:code>
+  <act:description>1540</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Werkzeuge und Geräte</act:name>
+  <act:id type="guid">119bb844f3ad4d94863098c3b2d06803</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1549</act:code>
+  <act:description>1549</act:description>
+  <act:parent type="guid">acf6d436b0124b95b08aea0ef142eb9a</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Immobile Sachanlagen</act:name>
+  <act:id type="guid">d0e005ee0f924d68aa5c27de625c106b</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>160</act:code>
+  <act:description>160</act:description>
+  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Geschäftsliegenschaften</act:name>
+  <act:id type="guid">7fe070f51db8420b97eb23e5a1bd2445</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1600</act:code>
+  <act:description>1600</act:description>
+  <act:parent type="guid">d0e005ee0f924d68aa5c27de625c106b</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Geschäftsliegenschafte</act:name>
+  <act:id type="guid">1a70c4acc8a746aeba59021390ac3f89</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1609</act:code>
+  <act:description>1609</act:description>
+  <act:parent type="guid">d0e005ee0f924d68aa5c27de625c106b</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Immaterielle Anlagen</act:name>
+  <act:id type="guid">6cc852b809f94f08aeaf137ab01e8742</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>170</act:code>
+  <act:description>170</act:description>
+  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Patente, Know-how, Lizenzen, Rechte, Entwicklungen</act:name>
+  <act:id type="guid">450c0971814c4becafd9cfc6ad26897a</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1700</act:code>
+  <act:description>1700</act:description>
+  <act:parent type="guid">6cc852b809f94f08aeaf137ab01e8742</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Patente, Know-how, Lizenzen, Rechte, Entwicklungen</act:name>
+  <act:id type="guid">e4a20cc0882947ebae367ebb71d839bf</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1709</act:code>
+  <act:description>1709</act:description>
+  <act:parent type="guid">6cc852b809f94f08aeaf137ab01e8742</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Goodwill</act:name>
+  <act:id type="guid">369839f3074246bbb175123d8ffcc907</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1770</act:code>
+  <act:description>1770</act:description>
+  <act:parent type="guid">6cc852b809f94f08aeaf137ab01e8742</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Goodwill</act:name>
+  <act:id type="guid">030d28c8ebb44210811f3f363178c730</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1779</act:code>
+  <act:description>1779</act:description>
+  <act:parent type="guid">6cc852b809f94f08aeaf137ab01e8742</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Beteiligungen</act:name>
+  <act:id type="guid">69a403bd13524112bd20975a94efb78e</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>148</act:code>
+  <act:description>148</act:description>
+  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Beteiligungen</act:name>
+  <act:id type="guid">f1957abd46ea4229be38aabe591b50ac</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1480</act:code>
+  <act:description>1480</act:description>
+  <act:parent type="guid">69a403bd13524112bd20975a94efb78e</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Wertberichtigungen Beteiligungen</act:name>
+  <act:id type="guid">1ab77bb7d37f4fa396d9cedc0653e04d</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1489</act:code>
+  <act:description>1489</act:description>
+  <act:parent type="guid">69a403bd13524112bd20975a94efb78e</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Nicht einbezahltes Grund-, Gesellschafter- oder Stiftungskapital</act:name>
+  <act:id type="guid">160cf2bacf0e45328263e3e4e0584c1e</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>180</act:code>
+  <act:description>180</act:description>
+  <act:parent type="guid">b54127bcfd3a43b4b8ef187fa85b514d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Nicht einbezahltes Aktien-, Stamm-, Anteilschein- oder Stiftungskapital</act:name>
+  <act:id type="guid">126586438d5442f6be2cf49da35d3023</act:id>
+  <act:type>ASSET</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>1850</act:code>
+  <act:description>1850</act:description>
+  <act:parent type="guid">160cf2bacf0e45328263e3e4e0584c1e</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Passiven</act:name>
+  <act:id type="guid">294235978d5d48508b11c17fc3a3742b</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2</act:code>
+  <act:description>2</act:description>
+  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Kurzfristiges Fremdkapital</act:name>
+  <act:id type="guid">518d005b62f247ea8239409f2eaea223</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>20</act:code>
+  <act:description>20</act:description>
+  <act:parent type="guid">294235978d5d48508b11c17fc3a3742b</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Verbindlichkeiten aus Lieferungen und Leistungen</act:name>
+  <act:id type="guid">ab39e01994b845fb94a6e95a6a454e0b</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>200</act:code>
+  <act:description>200</act:description>
+  <act:parent type="guid">518d005b62f247ea8239409f2eaea223</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Verbindlichkeiten aus Lieferungen und Leistungen (Kreditoren)</act:name>
+  <act:id type="guid">8d59aebe9a3948e4b994cb29b913e229</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2000</act:code>
+  <act:description>2000</act:description>
+  <act:parent type="guid">ab39e01994b845fb94a6e95a6a454e0b</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Erhaltene Anzahlungen</act:name>
+  <act:id type="guid">6703b28cdfab44f5986a5cf0fd7f35c1</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2030</act:code>
+  <act:description>2030</act:description>
+  <act:parent type="guid">ab39e01994b845fb94a6e95a6a454e0b</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Kurzfristige verzinsliche Verbindlichkeiten</act:name>
+  <act:id type="guid">78ccf5ae04854b00be1b2ce393a427a3</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>210</act:code>
+  <act:description>210</act:description>
+  <act:parent type="guid">518d005b62f247ea8239409f2eaea223</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Bankverbindlichkeiten</act:name>
+  <act:id type="guid">d0a8a51f74344c9ea18f2ae049099fc3</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2100</act:code>
+  <act:description>2100</act:description>
+  <act:parent type="guid">78ccf5ae04854b00be1b2ce393a427a3</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Verbindlichkeiten aus Finanzierungsleasing</act:name>
+  <act:id type="guid">52da9c39b0fe4309896afdcfdf211e2c</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2120</act:code>
+  <act:description>2120</act:description>
+  <act:parent type="guid">78ccf5ae04854b00be1b2ce393a427a3</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ãœbrige verzinsliche Verbindlichkeiten</act:name>
+  <act:id type="guid">21a8e719e3f245eb8a9430f822ca766d</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2140</act:code>
+  <act:description>2140</act:description>
+  <act:parent type="guid">78ccf5ae04854b00be1b2ce393a427a3</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ãœbrige kurzfristige Verbindlichkeiten</act:name>
+  <act:id type="guid">0062147bc2e54d3fb2d47340daaeb197</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>220</act:code>
+  <act:description>220</act:description>
+  <act:parent type="guid">518d005b62f247ea8239409f2eaea223</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Geschuldete MWST (Umsatzsteuer)</act:name>
+  <act:id type="guid">3df14c48fea4401880cec2542179d78e</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2200</act:code>
+  <act:description>2200</act:description>
+  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Abrechnungskonto MWST</act:name>
+  <act:id type="guid">d53d7c11942a46d0980360e5e7167d1f</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2201</act:code>
+  <act:description>2201</act:description>
+  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Verrechnungssteuer</act:name>
+  <act:id type="guid">4902b5e9fd254394b092bdac7d380ee8</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2206</act:code>
+  <act:description>2206</act:description>
+  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Direkte Steuern</act:name>
+  <act:id type="guid">57cbb66f8fa14ee9b8db09aa6dbc0101</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2208</act:code>
+  <act:description>2208</act:description>
+  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Sonstige kurzfristige Verbindlichkeiten</act:name>
+  <act:id type="guid">1caa50dbc0794127acae0b2627681b56</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2210</act:code>
+  <act:description>2210</act:description>
+  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Beschlossene Ausschüttungen</act:name>
+  <act:id type="guid">dbab7e71720b45efad4b2ba093158939</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2261</act:code>
+  <act:description>2261</act:description>
+  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Sozialversicherungen und Vorsorgeeinrichtungen</act:name>
+  <act:id type="guid">597d61cbc2fe4612b6af64059a795672</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2270</act:code>
+  <act:description>2270</act:description>
+  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Quellensteuer</act:name>
+  <act:id type="guid">f844a18cbdf84120a763b309688087fa</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2279</act:code>
+  <act:description>2279</act:description>
+  <act:parent type="guid">0062147bc2e54d3fb2d47340daaeb197</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Passive Rechnungsabgrenzungen und kurzfristige Rückstellungen</act:name>
+  <act:id type="guid">a270ba393d11451bad379ba0d9f35787</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>230</act:code>
+  <act:description>230</act:description>
+  <act:parent type="guid">518d005b62f247ea8239409f2eaea223</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Noch nicht bezahlter Aufwand</act:name>
+  <act:id type="guid">70427c3d46274bf28dbd4030b4fee653</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2300</act:code>
+  <act:description>2300</act:description>
+  <act:parent type="guid">a270ba393d11451bad379ba0d9f35787</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Erhaltener Ertrag des Folgejahres</act:name>
+  <act:id type="guid">85bf526f7e6c446a9be5bacf09034e7b</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2301</act:code>
+  <act:description>2301</act:description>
+  <act:parent type="guid">a270ba393d11451bad379ba0d9f35787</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Kurzfristige Rückstellungen</act:name>
+  <act:id type="guid">e54521e6300543c5979ef296329bd3ba</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2330</act:code>
+  <act:description>2330</act:description>
+  <act:parent type="guid">a270ba393d11451bad379ba0d9f35787</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Langfristiges Fremdkapital</act:name>
+  <act:id type="guid">e5e7a14ef75e4d3bb30c6e8d185a4288</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>24</act:code>
+  <act:description>24</act:description>
+  <act:parent type="guid">294235978d5d48508b11c17fc3a3742b</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Langfristige verzinsliche Verbindlichkeiten</act:name>
+  <act:id type="guid">722dc33a7f5c450683c8ceb182caff33</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>240</act:code>
+  <act:description>240</act:description>
+  <act:parent type="guid">e5e7a14ef75e4d3bb30c6e8d185a4288</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Bankverbindlichkeiten</act:name>
+  <act:id type="guid">1d1932966fe84c7d9d1b69c3d5de56da</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2400</act:code>
+  <act:description>2400</act:description>
+  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Verbindlichkeiten aus Finanzierungsleasing</act:name>
+  <act:id type="guid">0d9782c1f3674163bd57a79dda6db114</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2420</act:code>
+  <act:description>2420</act:description>
+  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Darlehen</act:name>
+  <act:id type="guid">0e788cacedc7435a9bc364996b55c2bb</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2450</act:code>
+  <act:description>2450</act:description>
+  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Obligationenanleihen</act:name>
+  <act:id type="guid">33c4e2da22d04abf94a6f8b66c12d125</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2430</act:code>
+  <act:description>2430</act:description>
+  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Hypotheken</act:name>
+  <act:id type="guid">59af9b1c47b1481faa831f2e9486ee78</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2451</act:code>
+  <act:description>2451</act:description>
+  <act:parent type="guid">722dc33a7f5c450683c8ceb182caff33</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ãœbrige langfristige Verbindlichkeiten</act:name>
+  <act:id type="guid">e28344b55f234a64afe228884b9bef81</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>250</act:code>
+  <act:description>250</act:description>
+  <act:parent type="guid">e5e7a14ef75e4d3bb30c6e8d185a4288</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ãœbrige langfristige Verbindlichkeiten (unverzinslich)</act:name>
+  <act:id type="guid">2632ae5a632a4214860adc582d630d89</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2500</act:code>
+  <act:description>2500</act:description>
+  <act:parent type="guid">e28344b55f234a64afe228884b9bef81</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Rückstellungen sowie vom Gesetz vorgesehene ähnliche Positionen</act:name>
+  <act:id type="guid">52e84a57d83b4f6aa0b57823943be630</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>260</act:code>
+  <act:description>260</act:description>
+  <act:parent type="guid">e5e7a14ef75e4d3bb30c6e8d185a4288</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Rückstellungen</act:name>
+  <act:id type="guid">883bf9dc29bf4f73ac88c9bfa3221a5d</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2600</act:code>
+  <act:description>2600</act:description>
+  <act:parent type="guid">52e84a57d83b4f6aa0b57823943be630</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Eigenkapital (juristische Personen)</act:name>
+  <act:id type="guid">82143ea43dcd4cdbbf5b469c0773f9b6</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>28</act:code>
+  <act:description>28</act:description>
+  <act:parent type="guid">294235978d5d48508b11c17fc3a3742b</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Grund-, Gesellschafter- oder Stiftungskapital</act:name>
+  <act:id type="guid">4f942372d53b486e985f0524ef484a48</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>280</act:code>
+  <act:description>280</act:description>
+  <act:parent type="guid">82143ea43dcd4cdbbf5b469c0773f9b6</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Aktien-, Stamm-, Anteilschein- oder Stiftungskapital</act:name>
+  <act:id type="guid">920c76782e364787b20faddddcc356fe</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2800</act:code>
+  <act:description>2800</act:description>
+  <act:parent type="guid">4f942372d53b486e985f0524ef484a48</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Reserven und Jahresgewinn oder Jahresverlus</act:name>
+  <act:id type="guid">35e6318959294d84994376047bef94a7</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>290</act:code>
+  <act:description>290</act:description>
+  <act:parent type="guid">82143ea43dcd4cdbbf5b469c0773f9b6</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Gesetzliche Kapitalreserve</act:name>
+  <act:id type="guid">8675198475f143f3b840fe9822bf097b</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2900</act:code>
+  <act:description>2900</act:description>
+  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Aufwertungsreserve</act:name>
+  <act:id type="guid">8918ab18185146bca6db267cf17dbba5</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2940</act:code>
+  <act:description>2940</act:description>
+  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Gesetzliche Gewinnreserve</act:name>
+  <act:id type="guid">984b64f48ab74d30a2c1d8d259ab817b</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2950</act:code>
+  <act:description>2950</act:description>
+  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Freiwillige Gewinnreserven</act:name>
+  <act:id type="guid">6fa91e39a5f7488cb7d04fc6c2a56810</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2960</act:code>
+  <act:description>2960</act:description>
+  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Gewinnvortrag oder Verlustvortrag</act:name>
+  <act:id type="guid">780726e389184e1ab7f7fbfe16d5f17b</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2970</act:code>
+  <act:description>2970</act:description>
+  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Jahresgewinn oder Jahresverlust</act:name>
+  <act:id type="guid">9bb074b99e4d4a40b9151c2289c10073</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2979</act:code>
+  <act:description>2979</act:description>
+  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Eigene Aktien, Stammanteile oder Anteilscheine (Minusposten)</act:name>
+  <act:id type="guid">4df7a3d99e0e407796920758f2708f7d</act:id>
+  <act:type>LIABILITY</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>2980</act:code>
+  <act:description>2980</act:description>
+  <act:parent type="guid">35e6318959294d84994376047bef94a7</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Betrieblicher Ertrag aus Lieferungen und Leistungen</act:name>
+  <act:id type="guid">112eb0f3756a430aa69b0907a54e0901</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3</act:code>
+  <act:description>3</act:description>
+  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Produktionserlöse</act:name>
+  <act:id type="guid">cf1a254d6a7f4a8880971b2c63302ac8</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3000</act:code>
+  <act:description>3000</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Handelserlöse</act:name>
+  <act:id type="guid">283b5946ac854e458023ac02dec55e16</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3200</act:code>
+  <act:description>3200</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Dienstleistungserlöse</act:name>
+  <act:id type="guid">0605c6e4a0fb4fefa3ab69327afa9b39</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3400</act:code>
+  <act:description>3400</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Übrige Erlöse aus Lieferungen und Leistungen</act:name>
+  <act:id type="guid">ffadde9940ad4cf0b9654f0823c5d351</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3600</act:code>
+  <act:description>3600</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Eigenleistungen</act:name>
+  <act:id type="guid">7664026179364bcc979394ae4918b019</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3700</act:code>
+  <act:description>3700</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Erlösminderungen</act:name>
+  <act:id type="guid">f381d3cda1c34bf0a3444dab963b2343</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3800</act:code>
+  <act:description>3800</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Verluste Forderungen (Debitoren), Veränderung Delkredere</act:name>
+  <act:id type="guid">02a04d06c1334dfb8af05d9ad161d138</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3805</act:code>
+  <act:description>3805</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Eigenverbrauch</act:name>
+  <act:id type="guid">f22875f5c5ff446bb3e3dcbc6b0607cb</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3710</act:code>
+  <act:description>3710</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Bestandesänderungen unfertige Erzeugnisse</act:name>
+  <act:id type="guid">2ada001a61514bfb9b2852aee6fec360</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3900</act:code>
+  <act:description>3900</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Bestandesänderungen fertige Erzeugnisse</act:name>
+  <act:id type="guid">821e9e8a464b43c2b521a8400f469212</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3901</act:code>
+  <act:description>3901</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Bestandesänderungen nicht fakturierte Dienstleistungen</act:name>
+  <act:id type="guid">b3a8192ccee440c1a0d34662682cced9</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>3940</act:code>
+  <act:description>3940</act:description>
+  <act:parent type="guid">112eb0f3756a430aa69b0907a54e0901</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Aufwand für Material, Handelswaren, Dienstleistungen und Energie</act:name>
+  <act:id type="guid">fbb69d024c454632948625450e3f56a6</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>4</act:code>
+  <act:description>4</act:description>
+  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Materialaufwand Produktion</act:name>
+  <act:id type="guid">62954e9240e242e7886e82a2fe9075dc</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>4000</act:code>
+  <act:description>4000</act:description>
+  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Handelswarenaufwand</act:name>
+  <act:id type="guid">69513288a86f4fa09247ce3550b8b5e2</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>4200</act:code>
+  <act:description>4200</act:description>
+  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Aufwand für bezogene Dienstleistungen</act:name>
+  <act:id type="guid">286ea0c72e664134869eb7040cc1b2fa</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>4400</act:code>
+  <act:description>4400</act:description>
+  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Energieaufwand zur Leistungserstellung</act:name>
+  <act:id type="guid">a8cb56ff219440f091f260f272a7e111</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>4500</act:code>
+  <act:description>4500</act:description>
+  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Aufwandminderungen</act:name>
+  <act:id type="guid">9336a497814046b0a9fa219b4333bd03</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>4900</act:code>
+  <act:description>4900</act:description>
+  <act:parent type="guid">fbb69d024c454632948625450e3f56a6</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Personalaufwand</act:name>
+  <act:id type="guid">c2d5092240de4a058420e649983d6e6d</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>5</act:code>
+  <act:description>5</act:description>
+  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Lohnaufwand</act:name>
+  <act:id type="guid">3dd4ad61f7bb46c89e09f75619633b3b</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>5000</act:code>
+  <act:description>5000</act:description>
+  <act:parent type="guid">c2d5092240de4a058420e649983d6e6d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Sozialversicherungsaufwand</act:name>
+  <act:id type="guid">3e476a14f60940599d5da6ea47c57260</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>5700</act:code>
+  <act:description>5700</act:description>
+  <act:parent type="guid">c2d5092240de4a058420e649983d6e6d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ãœbriger Personalaufwand</act:name>
+  <act:id type="guid">d3a29ff165704fa9ad4dd970189effab</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>5800</act:code>
+  <act:description>5800</act:description>
+  <act:parent type="guid">c2d5092240de4a058420e649983d6e6d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Leistungen Dritter</act:name>
+  <act:id type="guid">5dd9a5822b06481d805756c18293bfdd</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>5900</act:code>
+  <act:description>5900</act:description>
+  <act:parent type="guid">c2d5092240de4a058420e649983d6e6d</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ãœbriger betrieblicher Aufwand, Abschreibungen und Wertberichtigungen sowie Finanzergebnis</act:name>
+  <act:id type="guid">17ef00426d0b4066ad5297325ecf16a4</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6</act:code>
+  <act:description>6</act:description>
+  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Raumaufwand</act:name>
+  <act:id type="guid">6fd08c95e4d842d988fdf2ac76914781</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6000</act:code>
+  <act:description>6000</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Unterhalt, Reparaturen, Ersatz mobile Sachanlagen</act:name>
+  <act:id type="guid">cfc48367c9614fa5b323f170141c1114</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6100</act:code>
+  <act:description>6100</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Fahrzeug- und Transportaufwand</act:name>
+  <act:id type="guid">22936c9ba2bb497fb8189982dc498482</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6200</act:code>
+  <act:description>6200</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Sachversicherungen, Abgaben, Gebühren, Bewilligungen</act:name>
+  <act:id type="guid">a82f018d74944c638d39c34b92d384d1</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6300</act:code>
+  <act:description>6300</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Energie- und Entsorgungsaufwand</act:name>
+  <act:id type="guid">a845f9c9f0214c438ca1b3a0ecadd338</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6400</act:code>
+  <act:description>6400</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Verwaltungsaufwand</act:name>
+  <act:id type="guid">be254bd0442f411294580dcade4518a1</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6500</act:code>
+  <act:description>6500</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Werbeaufwand</act:name>
+  <act:id type="guid">88881f27434d467eafdb411015df811f</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6600</act:code>
+  <act:description>6600</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Sonstiger betrieblicher Aufwand</act:name>
+  <act:id type="guid">40ae3f3a0d61437eaa9b3e3274b1957f</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6700</act:code>
+  <act:description>6700</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Abschreibungen und Wertberichtigungen auf Positionen des Anlagevermögens</act:name>
+  <act:id type="guid">f9aa84463ff2462498ea60128f9114fe</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6800</act:code>
+  <act:description>6800</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Leasingaufwand mobile Sachanlagen</act:name>
+  <act:id type="guid">60ba0279f36e46fa912c72206ed91b75</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6105</act:code>
+  <act:description>6105</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Informatikaufwand inkl. Leasing</act:name>
+  <act:id type="guid">6f27632a88df484fb21253cbf8e0cc95</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6570</act:code>
+  <act:description>6570</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Finanzaufwand</act:name>
+  <act:id type="guid">ddd87c65af9b471687873e3f6c255086</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6900</act:code>
+  <act:description>6900</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Finanzertrag</act:name>
+  <act:id type="guid">85ea8bc334c247b39ec7a279738c6037</act:id>
+  <act:type>EXPENSE</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>6950</act:code>
+  <act:description>6950</act:description>
+  <act:parent type="guid">17ef00426d0b4066ad5297325ecf16a4</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Betrieblicher Nebenerfolg</act:name>
+  <act:id type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>7</act:code>
+  <act:description>7</act:description>
+  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ertrag Nebenbetrieb</act:name>
+  <act:id type="guid">c8c43650635e436ea24b4c03dc1d19ad</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>7000</act:code>
+  <act:description>7000</act:description>
+  <act:parent type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ertrag betriebliche Liegenschaft</act:name>
+  <act:id type="guid">b741158e82af43a983a729b6964f48c4</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>7500</act:code>
+  <act:description>7500</act:description>
+  <act:parent type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Aufwand betriebliche Liegenschaft</act:name>
+  <act:id type="guid">5ba3c1d4c947457c92d7192079c58e93</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>7510</act:code>
+  <act:description>7510</act:description>
+  <act:parent type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Aufwand Nebenbetrieb</act:name>
+  <act:id type="guid">2c9626ccfeb14b52b68b48c5f6312e0f</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>7010</act:code>
+  <act:description>7010</act:description>
+  <act:parent type="guid">ff17758ba51149a3a16c2e50f4dd12f3</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Betriebsfremder, ausserordentlicher, einmaliger oder perioden-fremder Aufwand und Ertrag</act:name>
+  <act:id type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>8</act:code>
+  <act:description>8</act:description>
+  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Betriebsfremder Aufwand</act:name>
+  <act:id type="guid">903948bc18da4853a4616dbfaa0c1a3e</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>8000</act:code>
+  <act:description>8000</act:description>
+  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Direkte Steuern</act:name>
+  <act:id type="guid">1df187c1bb304c159923780dd417c729</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>8900</act:code>
+  <act:description>8900</act:description>
+  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Betriebsfremder Ertrag</act:name>
+  <act:id type="guid">6c9b91aa0b794904a03805bcffbb6744</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>8100</act:code>
+  <act:description>8100</act:description>
+  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ausserordentlicher, einmaliger oder periodenfremder Aufwand</act:name>
+  <act:id type="guid">e3b24b1150134fa598bcf620da52a2e6</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>8500</act:code>
+  <act:description>8500</act:description>
+  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Ausserordentlicher, einmaliger oder periodenfremder Ertrag</act:name>
+  <act:id type="guid">7e43a5e29f77460dbda26d475492bd52</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>8510</act:code>
+  <act:description>8510</act:description>
+  <act:parent type="guid">67be6ac625cc4b8f8ee6706b0434a335</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Abschluss</act:name>
+  <act:id type="guid">99c8d4fa6bac4de0b2d505f65e9b8c6b</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>9</act:code>
+  <act:description>9</act:description>
+  <act:parent type="guid">8cd23636f1e04a74a35c13ae23427c14</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Jahresgewinn oder Jahresverlust</act:name>
+  <act:id type="guid">3b10783f477e440b971e3dce693236e5</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>9200</act:code>
+  <act:description>9200</act:description>
+  <act:parent type="guid">99c8d4fa6bac4de0b2d505f65e9b8c6b</act:parent>
+</gnc:account>
+<gnc:account version="2.0.0">
+  <act:name>Hilfskonten Gewinnverwendung</act:name>
+  <act:id type="guid">be48f890d33444f883f41069641daaa3</act:id>
+  <act:type>INCOME</act:type>
+  <act:commodity>
+    <cmdty:space>CURRENCY</cmdty:space>
+    <cmdty:id>CHF</cmdty:id>
+  </act:commodity>
+  <act:commodity-scu>100</act:commodity-scu>
+  <act:code>920</act:code>
+  <act:description>920</act:description>
+  <act:parent type="guid">3b10783f477e440b971e3dce693236e5</act:parent>
+</gnc:account>
+</gnc-account-example>
+



Summary of changes:
 CMakeLists.txt                                     |    6 +
 cmake/CMakeLists.txt                               |    4 +-
 cmake/configure-appdata.cmake                      |   33 +
 ...-data.cmake => configure-gnucash-desktop.cmake} |    8 +-
 data/accounts/de_CH/CMakeLists.txt                 |    2 +-
 data/accounts/de_CH/acctchrt_chkmu.gnucash-xea     | 9253 --------------------
 data/accounts/de_CH/acctchrt_kmu.gnucash-xea       | 2038 +++++
 gnucash/gnome/CMakeLists.txt                       |   10 +-
 gnucash/gnome/gnucash.appdata.xml.in.in            |    2 +-
 gnucash/gnome/gnucash.releases.xml                 |    1 +
 gnucash/import-export/aqb/assistant-ab-initial.c   |   94 +-
 .../import-export/bi-import/dialog-bi-import-gui.c |    7 +-
 .../customer-import/dialog-customer-import-gui.c   |    9 +-
 gnucash/report/reports/CMakeLists.txt              |   53 +-
 libgnucash/engine/iso-4217-currencies.xml          |    4 +-
 libgnucash/tax/CMakeLists.txt                      |    4 +-
 po/POTFILES.in                                     |   69 +
 17 files changed, 2282 insertions(+), 9315 deletions(-)
 create mode 100644 cmake/configure-appdata.cmake
 rename cmake/{insert-vcs-data.cmake => configure-gnucash-desktop.cmake} (75%)
 delete mode 100644 data/accounts/de_CH/acctchrt_chkmu.gnucash-xea
 create mode 100644 data/accounts/de_CH/acctchrt_kmu.gnucash-xea
 create mode 100644 gnucash/gnome/gnucash.releases.xml



More information about the gnucash-changes mailing list