mahnwesen

This commit is contained in:
Ralph Soika 2023-02-01 16:10:26 +01:00
parent 146ad9a17b
commit c0c50bc178
10 changed files with 1412 additions and 647 deletions

View file

@ -8,12 +8,16 @@ import java.text.ParseException;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.logging.Logger; import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.inject.Inject; import javax.inject.Inject;
import org.imixs.marty.team.TeamService;
import org.imixs.workflow.FileData; import org.imixs.workflow.FileData;
import org.imixs.workflow.ItemCollection; import org.imixs.workflow.ItemCollection;
import org.imixs.workflow.SignalAdapter; import org.imixs.workflow.SignalAdapter;
@ -32,387 +36,437 @@ import com.alexanderlogistics.KreditorDebitorService;
/** /**
* Der DatevCargosoftImportAdapter liest eine von Cargosoft bereitgestellte * Der DatevCargosoftImportAdapter liest eine von Cargosoft bereitgestellte
* DATEV Datei ein und erzeugt Ausgangsrechnungs Workitems. Die Cargosoft DATEV * DATEV Datei ein und erzeugt Ausgangsrechnungs Workitems. Die Cargosoft DATEV
* Datei enthlät auch Eingangsrechnugen, welche von diesem Adapter ignoriert * Datei enthält auch Eingangsrechnugen, welche von diesem Adapter ignoriert
* werden. * werden.
* <p> * <p>
* In der Spalte Belegart-4 steht das Fäligkeitsdatum. * In der Spalte Belegart-4 steht das Fäligkeitsdatum.
* <p> * <p>
* Beim Import wird auch der Kreditor geprüft und aus diesem das * Beim Import wird auch der Kreditor geprüft und aus diesem das
* Länderkennzeichen übernommen. * Länderkennzeichen übernommen.
* <p>
* Zusätzlich wird anhand der 1. Positionsnummer eine Zuordnung zu einem Bereich
* gemacht. Dazu werden aus den Bereichen die Konfigurations Items 'pos.mapping'
* ausgelesen, welche Regular Expressions enthalten können. Gibt es einen match,
* wird der Space der Rechnung zugeordnet.
* *
* @version 1.0 * @version 1.0
* @author rsoika * @author rsoika
*/ */
public class DatevCargosoftImportAdapter implements SignalAdapter { public class DatevCargosoftImportAdapter implements SignalAdapter {
private static Logger logger = Logger.getLogger(DatevCargosoftImportAdapter.class.getName()); private static Logger logger = Logger.getLogger(DatevCargosoftImportAdapter.class.getName());
public static final String ENCODING = "ISO-8859-1"; public static final String ENCODING = "ISO-8859-1";
public static final String CHILD_ITEM_PROPERTY = "_ChildItems"; public static final String CHILD_ITEM_PROPERTY = "_ChildItems";
public static final String REGEX_IMPORTTEXTPATTERN = "^R[1-8] .*$"; public static final String REGEX_IMPORTTEXTPATTERN = "^R[1-8] .*$";
@Inject @Inject
WorkflowService workflowService; WorkflowService workflowService;
@Inject @Inject
DocumentService documentService; DocumentService documentService;
@Inject @Inject
KreditorDebitorService kreditorDebitorService; KreditorDebitorService kreditorDebitorService;
/** @Inject
* This method finds or create the Datev Export and adds a reference TeamService teamService;
* ($workitemref) to the current invoice.
*
* @throws PluginException
*/
@Override
public ItemCollection execute(ItemCollection workitem, ItemCollection event)
throws AdapterException, PluginException {
logger.info("...parse datev file import..."); /**
try { * This method finds or create the Datev Export and adds a reference
List<String> log = readData(workitem); * ($workitemref) to the current invoice.
workitem.setItemValue("import.log", log); *
} catch (ModelException e) { * @throws PluginException
throw new AdapterException(PluginException.class.getSimpleName(), DatevImportAdapter.DATEV_IMPORT_ERROR, */
"Failed to import datev data!", e); @Override
public ItemCollection execute(ItemCollection workitem, ItemCollection event)
throws AdapterException, PluginException {
} logger.info("...parse datev file import...");
return workitem; try {
}
/** // Datei einlesen
* Liest die datenzeilen ab Zeile 3 aus und bildet worktiems gruppiert nach List<String> log = readData(workitem);
* belegnummer workitem.setItemValue("import.log", log);
* } catch (ModelException e) {
* <p> throw new AdapterException(PluginException.class.getSimpleName(), DatevImportAdapter.DATEV_IMPORT_ERROR,
* Belegfeld-1 ist hier ein eindeutiger Schlüssel für die Erzeugung von "Failed to import datev data!", e);
* Splitbuchungen
*
* @param document
* @throws PluginException
* @throws ModelException
* @throws ProcessingErrorException
* @throws AccessDeniedException
*/
private List<String> readData(ItemCollection workitem)
throws PluginException, AccessDeniedException, ProcessingErrorException, ModelException {
List<String> logBuffer = new ArrayList<String>();
int line = 0;
int positions = 0;
int invoices = 0;
int dupplicates = 0;
int rueckstellungen=0;
int eingangsrechnungen=0;
String dataLine; }
// Start Datum Wirtschaftsjahr berechnen (JJJJMMTT) return workitem;
String wjBeginn = workitem.getItemValueString("datev.WJ-Beginn"); }
String wjBeginnMonat = wjBeginn.substring(4, 6);
SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyyMMdd");
ItemCollection invoiceWorkitem = null; /**
List<ItemCollection> splitBuchungen = new ArrayList<ItemCollection>(); * Liest die datenzeilen ab Zeile 3 aus und bildet worktiems gruppiert nach
* belegnummer
*
* <p>
* Belegfeld-1 ist hier ein eindeutiger Schlüssel für die Erzeugung von
* Splitbuchungen
*
* @param document
* @throws PluginException
* @throws ModelException
* @throws ProcessingErrorException
* @throws AccessDeniedException
*/
private List<String> readData(ItemCollection workitem)
throws PluginException, AccessDeniedException, ProcessingErrorException, ModelException {
List<String> logBuffer = new ArrayList<String>();
int line = 0;
int positions = 0;
int invoices = 0;
int dupplicates = 0;
int rueckstellungen = 0;
int eingangsrechnungen = 0;
FileData fileData = workitem.getFileData().get(0); String dataLine;
ByteArrayInputStream imputStream = new ByteArrayInputStream(fileData.getContent()); // Start Datum Wirtschaftsjahr berechnen (JJJJMMTT)
String wjBeginn = workitem.getItemValueString("datev.WJ-Beginn");
String wjBeginnMonat = wjBeginn.substring(4, 6);
SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyyMMdd");
log(logBuffer, "Importdatei: " + fileData.getName()); // load spaces Pos Expressions
try { Map<String, List<String>> spaces = loadSpacesConfig();
BufferedReader in = new BufferedReader(new InputStreamReader(imputStream, ENCODING));
// skip header ItemCollection invoiceWorkitem = null;
in.readLine(); List<ItemCollection> splitBuchungen = new ArrayList<ItemCollection>();
in.readLine();
// read content.... FileData fileData = workitem.getFileData().get(0);
line = 0; ByteArrayInputStream imputStream = new ByteArrayInputStream(fileData.getContent());
int blockSize = 0;
while ((dataLine = in.readLine()) != null) {
line++;
if (blockSize >= 100) {
blockSize = 0;
logger.info(line + " entries read....");
}
// alle werte parsen log(logBuffer, "Importdatei: " + fileData.getName());
String[] header1List = dataLine.split(";(?=([^\"]*\"[^\"]*\")*[^\"]*$)", 99); try {
if (header1List.length < 6) { BufferedReader in = new BufferedReader(new InputStreamReader(imputStream, ENCODING));
throw new PluginException(DatevCargosoftImportAdapter.class.getName(),
DatevImportAdapter.DATEV_IMPORT_ERROR, "Invalid data in line " + line);
}
String belegNummer = DatevImportAdapter.csvVal(header1List[10]); // skip header
String gegenKonto = DatevImportAdapter.csvVal(header1List[7]); in.readLine();
String text = DatevImportAdapter.csvVal(header1List[13]); in.readLine();
String buchungsTag = DatevImportAdapter.csvVal(header1List[9]);
// cargosoft laesst gerne die führende 0 weg....
if (buchungsTag.length() == 3) {
buchungsTag = "0" + buchungsTag;
}
// berechne Buchungsdatum DDMM
String tag = buchungsTag.substring(0, 2);
String monat = buchungsTag.substring(2, 4);
String jahr = wjBeginn.substring(0, 4);
// compute next year if start of WJ is not January
if (Integer.parseInt(wjBeginnMonat) > Integer.parseInt(monat)) {
jahr = Integer.parseInt(jahr + 1) + "";
}
Date dateBuchung = dateFormatter.parse(jahr + monat + tag);
// Fälligkeit
Date dueDate = new Date();
try {
dateFormatter.parse(DatevImportAdapter.csvVal(header1List[23]));
} catch (Exception e) {
dueDate = new Date();
}
String paymentTerm = DatevImportAdapter.csvVal(header1List[31]);
String waehrung = DatevImportAdapter.csvVal(header1List[2]);
// kurse // read content....
double kurs = parseBetrag(DatevImportAdapter.csvVal(header1List[3])); line = 0;
double basisumsatz = parseBetrag(DatevImportAdapter.csvVal(header1List[4])); int blockSize = 0;
while ((dataLine = in.readLine()) != null) {
line++;
if (blockSize >= 100) {
blockSize = 0;
logger.info(line + " entries read....");
}
// Skip Eingangsrechnungen // alle werte parsen
if (!gegenKonto.startsWith("1")) { String[] header1List = dataLine.split(";(?=([^\"]*\"[^\"]*\")*[^\"]*$)", 99);
eingangsrechnungen++; if (header1List.length < 6) {
// skip throw new PluginException(DatevCargosoftImportAdapter.class.getName(),
continue; DatevImportAdapter.DATEV_IMPORT_ERROR, "Invalid data in line " + line);
} }
// Skip Rückstellung String belegNummer = DatevImportAdapter.csvVal(header1List[10]);
// text darf nicht mit R1 bis R8 beginnen String gegenKonto = DatevImportAdapter.csvVal(header1List[7]);
// ^R[1-8] . String text = DatevImportAdapter.csvVal(header1List[13]);
if (text.matches(REGEX_IMPORTTEXTPATTERN)) { String buchungsTag = DatevImportAdapter.csvVal(header1List[9]);
rueckstellungen++; // cargosoft laesst gerne die führende 0 weg....
// skip if (buchungsTag.length() == 3) {
continue; buchungsTag = "0" + buchungsTag;
} }
// berechne Buchungsdatum DDMM
String tag = buchungsTag.substring(0, 2);
String monat = buchungsTag.substring(2, 4);
String jahr = wjBeginn.substring(0, 4);
// compute next year if start of WJ is not January
if (Integer.parseInt(wjBeginnMonat) > Integer.parseInt(monat)) {
jahr = Integer.parseInt(jahr + 1) + "";
}
Date dateBuchung = dateFormatter.parse(jahr + monat + tag);
// Fälligkeit
Date dueDate = new Date();
try {
dateFormatter.parse(DatevImportAdapter.csvVal(header1List[23]));
} catch (Exception e) {
dueDate = new Date();
}
String paymentTerm = DatevImportAdapter.csvVal(header1List[31]);
String waehrung = DatevImportAdapter.csvVal(header1List[2]);
positions++;
logger.info("...read dbtr: " + gegenKonto + " beleg-nr: " + belegNummer);
// Erzeuge einen Buchungssatz // kurse
ItemCollection dataItemCol = new ItemCollection(); double kurs = parseBetrag(DatevImportAdapter.csvVal(header1List[3]));
dataItemCol.setItemValue("datev.text", text); double basisumsatz = parseBetrag(DatevImportAdapter.csvVal(header1List[4]));
dataItemCol.setItemValue("datev.umsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[0])));
dataItemCol.setItemValue("datev.shzeichen", DatevImportAdapter.csvVal(header1List[1]));
dataItemCol.setItemValue("datev.wkz", waehrung);
dataItemCol.setItemValue("datev.kurs", parseBetrag(DatevImportAdapter.csvVal(header1List[3])));
dataItemCol.setItemValue("datev.basisumsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[4])));
dataItemCol.setItemValue("datev.konto", DatevImportAdapter.csvVal(header1List[6]));
// Haben wir schon eine Invoice Workitem angelegt? // Skip Eingangsrechnungen
if (invoiceWorkitem == null) { if (!gegenKonto.startsWith("1")) {
logger.info("...create new workitem...."); eingangsrechnungen++;
// erzeuge ein neues // skip
try { continue;
invoiceWorkitem = createEmptyInvoice(belegNummer, text, gegenKonto, dateBuchung, dueDate, }
paymentTerm, waehrung, kurs, basisumsatz);
invoices++;
} catch (AdapterException e) {
dupplicates++;
continue;
}
}
// ist es noch die selbe Belegnummer? // Skip Rückstellung
if (belegNummer.equals(invoiceWorkitem.getItemValueString("invoice.number"))) { // text darf nicht mit R1 bis R8 beginnen
// adde die Splitbuchung // ^R[1-8] .
splitBuchungen.add(dataItemCol); if (text.matches(REGEX_IMPORTTEXTPATTERN)) {
logger.info("...add splitbuchung.2..."); rueckstellungen++;
} else { // skip
logger.info("...close workitem...."); continue;
}
// nein - also invoice schließen positions++;
closeInvoiceWorkitem(invoiceWorkitem, splitBuchungen); logger.info("...read dbtr: " + gegenKonto + " beleg-nr: " + belegNummer);
invoiceWorkitem = null;
// neue Splitbuchungstabelle anlegen
splitBuchungen = new ArrayList<ItemCollection>();
// invoice zurücksetzten
// erzeuge ein neues
try {
invoiceWorkitem = createEmptyInvoice(belegNummer, text, gegenKonto, dateBuchung, dueDate,
paymentTerm, waehrung, kurs, basisumsatz);
invoices++;
} catch (AdapterException e) {
dupplicates++;
continue;
}
splitBuchungen.add(dataItemCol);
}
} // wile end // Erzeuge einen Buchungssatz
closeInvoiceWorkitem(invoiceWorkitem, splitBuchungen); ItemCollection dataItemCol = new ItemCollection();
dataItemCol.setItemValue("datev.text", text);
dataItemCol.setItemValue("datev.umsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[0])));
dataItemCol.setItemValue("datev.shzeichen", DatevImportAdapter.csvVal(header1List[1]));
dataItemCol.setItemValue("datev.wkz", waehrung);
dataItemCol.setItemValue("datev.kurs", parseBetrag(DatevImportAdapter.csvVal(header1List[3])));
dataItemCol.setItemValue("datev.basisumsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[4])));
dataItemCol.setItemValue("datev.konto", DatevImportAdapter.csvVal(header1List[6]));
} catch (IOException | ParseException e) { // Haben wir schon eine Invoice Workitem angelegt?
throw new PluginException(DatevCargosoftImportAdapter.class.getName(), if (invoiceWorkitem == null) {
DatevImportAdapter.DATEV_IMPORT_ERROR, "Unable to read file", e); logger.info("...create new workitem....");
} // erzeuge ein neues
try {
invoiceWorkitem = createEmptyInvoice(belegNummer, text, gegenKonto, dateBuchung, dueDate,
paymentTerm, waehrung, kurs, basisumsatz);
invoices++;
} catch (AdapterException e) {
dupplicates++;
continue;
}
}
log(logBuffer, line + " Zeilen eingelesen "); // ist es noch die selbe Belegnummer?
log(logBuffer, positions + " Rechnungspositionen eingelesen "); if (belegNummer.equals(invoiceWorkitem.getItemValueString("invoice.number"))) {
log(logBuffer, invoices + " Rechnungen importiert "); // adde die Splitbuchung
splitBuchungen.add(dataItemCol);
if (rueckstellungen>0) { logger.info("...add splitbuchung.2...");
log(logBuffer, rueckstellungen + " Rückstellungen wurden übersprungen."); } else {
} logger.info("...close workitem....");
if (eingangsrechnungen>0) {
log(logBuffer, eingangsrechnungen + " Eingangsrechnungen wurden übersprungen.");
}
if (dupplicates > 0) {
log(logBuffer, dupplicates + " Rechnungen wurden übersprungen da diese bereits importiert wurden!");
}
// return log // nein - also invoice schließen
return logBuffer; closeInvoiceWorkitem(invoiceWorkitem, splitBuchungen,spaces);
invoiceWorkitem = null;
// neue Splitbuchungstabelle anlegen
splitBuchungen = new ArrayList<ItemCollection>();
// invoice zurücksetzten
// erzeuge ein neues
try {
invoiceWorkitem = createEmptyInvoice(belegNummer, text, gegenKonto, dateBuchung, dueDate,
paymentTerm, waehrung, kurs, basisumsatz);
invoices++;
} catch (AdapterException e) {
dupplicates++;
continue;
}
splitBuchungen.add(dataItemCol);
}
} } // wile end
closeInvoiceWorkitem(invoiceWorkitem, splitBuchungen,spaces);
/** } catch (IOException | ParseException e) {
* This method returns a new empty invoice ItemCollection. throw new PluginException(DatevCargosoftImportAdapter.class.getName(),
* <p> DatevImportAdapter.DATEV_IMPORT_ERROR, "Unable to read file", e);
* The method tests if an invoice with this number already exits. If so, the }
* method throws a AdapterException
*
* @param belegNummer
* @param text
* @param gegenKonto
* @param dateBuchung
* @param dueDate
* @param paymentTerm
* @param currency
* @param kurs
* @param basisUmsatz
* @return
* @throws AdapterException
*/
private ItemCollection createEmptyInvoice(String belegNummer, String text, String gegenKonto, Date dateBuchung,
Date dueDate, String paymentTerm, String currency, double kurs, double basisUmsatz)
throws AdapterException {
// test if invoice was already imported before log(logBuffer, line + " Zeilen eingelesen ");
String sQuery = "((type:workitem OR type:workitemarchive) AND $modelversion:rechnungsausgang* AND invoice.number:\"" log(logBuffer, positions + " Rechnungspositionen eingelesen ");
+ belegNummer + "\")"; log(logBuffer, invoices + " Rechnungen importiert ");
try {
// find the textblock...
List<ItemCollection> result = documentService.find(sQuery, 1, 0);
if (result.size() > 0) {
throw new AdapterException(DatevCargosoftImportAdapter.class.getName(), "DUPPLICATE",
"Invoice already imported");
}
} catch (QueryException e) {
logger.warning("failed to search invoices by query: " + e.getMessage());
}
ItemCollection invoiceWorkitem = new ItemCollection(); if (rueckstellungen > 0) {
invoiceWorkitem.setItemValue("invoice.number", belegNummer); log(logBuffer, rueckstellungen + " Rückstellungen wurden übersprungen.");
invoiceWorkitem.setItemValue("invoice.currency", currency); }
invoiceWorkitem.setItemValue("invoice.text", text); if (eingangsrechnungen > 0) {
invoiceWorkitem.setItemValue("invoice.date", dateBuchung); log(logBuffer, eingangsrechnungen + " Eingangsrechnungen wurden übersprungen.");
invoiceWorkitem.setItemValue("dbtr.number", gegenKonto); }
invoiceWorkitem.setItemValue("invoice.duedate", dueDate);
invoiceWorkitem.setItemValue("invoice.reminder", dueDate);
invoiceWorkitem.setItemValue("payment.term", paymentTerm);
invoiceWorkitem.setItemValue("invoice.rate", kurs); if (dupplicates > 0) {
invoiceWorkitem.setItemValue("invoice.base.amount", basisUmsatz); log(logBuffer, dupplicates + " Rechnungen wurden übersprungen da diese bereits importiert wurden!");
}
return invoiceWorkitem; // return log
} return logBuffer;
private void log(List<String> log, String message) { }
log.add(new Date() + ": " + message + "\n");
}
/** /**
* . entfernen , mit punkt ersetzten * Helper method that loads all expressions from the spaces
* * @return List of list of expressions
* @param value */
* @return private Map<String,List<String>> loadSpacesConfig() {
*/ Map<String,List<String>> result =new HashMap<>();
public Double parseBetrag(String value) { // als erstes lesen wir die pos.mappings aus den Spaces ein, auf die dann eine
// Rechnung emapped werden kann.
List<ItemCollection> spaces_subs = teamService.getSpaces();
for (ItemCollection stub: spaces_subs) {
// load full workitem
ItemCollection space = documentService.load(stub.getUniqueID());
if (space!=null) {
result.put(space.getUniqueID(),space.getItemValueList("pos.mapping", String.class));
}
}
return result;
}
value = value.replace(".", ""); /**
value = value.replace(",", "."); * This method returns a new empty invoice ItemCollection.
* <p>
* The method tests if an invoice with this number already exits. If so, the
* method throws a AdapterException
*
* @param belegNummer
* @param text
* @param gegenKonto
* @param dateBuchung
* @param dueDate
* @param paymentTerm
* @param currency
* @param kurs
* @param basisUmsatz
* @return
* @throws AdapterException
*/
private ItemCollection createEmptyInvoice(String belegNummer, String text, String gegenKonto, Date dateBuchung,
Date dueDate, String paymentTerm, String currency, double kurs, double basisUmsatz)
throws AdapterException {
return new Double(value); // test if invoice was already imported before
} String sQuery = "((type:workitem OR type:workitemarchive) AND $modelversion:rechnungsausgang* AND invoice.number:\""
+ belegNummer + "\")";
try {
// find the textblock...
List<ItemCollection> result = documentService.find(sQuery, 1, 0);
if (result.size() > 0) {
throw new AdapterException(DatevCargosoftImportAdapter.class.getName(), "DUPPLICATE",
"Invoice already imported");
}
} catch (QueryException e) {
logger.warning("failed to search invoices by query: " + e.getMessage());
}
/** ItemCollection invoiceWorkitem = new ItemCollection();
* Diese Hilfsmethod schließt das Invoice Workitem ab invoiceWorkitem.setItemValue("invoice.number", belegNummer);
* invoiceWorkitem.setItemValue("invoice.currency", currency);
* @throws ModelException invoiceWorkitem.setItemValue("invoice.text", text);
* @throws PluginException invoiceWorkitem.setItemValue("invoice.date", dateBuchung);
* @throws ProcessingErrorException invoiceWorkitem.setItemValue("dbtr.number", gegenKonto);
* @throws AccessDeniedException invoiceWorkitem.setItemValue("invoice.duedate", dueDate);
*/ invoiceWorkitem.setItemValue("invoice.reminder", dueDate);
private void closeInvoiceWorkitem(ItemCollection invoiceWorkitem, List<ItemCollection> splitBuchungen) invoiceWorkitem.setItemValue("payment.term", paymentTerm);
throws AccessDeniedException, ProcessingErrorException, PluginException, ModelException {
if (invoiceWorkitem == null) {
return; // no op
}
// berechne Total: invoiceWorkitem.setItemValue("invoice.rate", kurs);
double total = 0; invoiceWorkitem.setItemValue("invoice.base.amount", basisUmsatz);
for (ItemCollection zeile : splitBuchungen) {
if ("H".equals(zeile.getItemValueString("datev.shzeichen"))) {
total = total + zeile.getItemValueDouble("datev.umsatz");
} else {
total = total - zeile.getItemValueDouble("datev.umsatz");
}
}
invoiceWorkitem.setItemValue("invoice.total", total); return invoiceWorkitem;
invoiceWorkitem.setItemValue("invoice.saldo", total); }
// implode die Splitbuchungen
implodeChildList(invoiceWorkitem, splitBuchungen);
// set dbtr.name private void log(List<String> log, String message) {
ItemCollection dbtrItemCol = kreditorDebitorService log.add(new Date() + ": " + message + "\n");
.findDebitor(invoiceWorkitem.getItemValueString("dbtr.number")); }
if (dbtrItemCol != null) {
invoiceWorkitem.setItemValue("dbtr.name", dbtrItemCol.getItemValueString("_VENDOR_Name"));
// Anhand der Creditoren Stammdaten errrechnen wir die Sprache für diese
// Rechnung
String country = dbtrItemCol.getItemValueString("_VENDOR_COUNTRY");
invoiceWorkitem.setItemValue("dbtr.country", country);
if (country.equalsIgnoreCase("de") || country.equalsIgnoreCase("ch")
|| country.equalsIgnoreCase("at")) {
invoiceWorkitem.setItemValue("invoice.language", "DE");
} else {
invoiceWorkitem.setItemValue("invoice.language", "EN");
}
}
// Processe die Invoice /**
invoiceWorkitem.model("rechnungsausgang-de-1.0").task(5001).event(980); * . entfernen , mit punkt ersetzten
workflowService.processWorkItem(invoiceWorkitem); *
* @param value
* @return
*/
public Double parseBetrag(String value) {
} value = value.replace(".", "");
value = value.replace(",", ".");
/** return new Double(value);
* Convert the List of ItemCollections back into a List of Map elements }
*
* @param workitem /**
*/ * Diese Hilfsmethod schließt das Invoice Workitem ab
@SuppressWarnings({ "rawtypes" }) *
private void implodeChildList(ItemCollection workitem, List<ItemCollection> childItems) { * @throws ModelException
List<Map> mapOrderItems = new ArrayList<Map>(); * @throws PluginException
// convert the child ItemCollection elements into a List of Map * @throws ProcessingErrorException
if (childItems != null) { * @throws AccessDeniedException
logger.fine("Convert child items into Map..."); */
// iterate over all order items.. private void closeInvoiceWorkitem(ItemCollection invoiceWorkitem, List<ItemCollection> splitBuchungen,
for (ItemCollection orderItem : childItems) { Map<String, List<String>> expressionsMap)
mapOrderItems.add(orderItem.getAllItems()); throws AccessDeniedException, ProcessingErrorException, PluginException, ModelException {
} if (invoiceWorkitem == null) {
workitem.replaceItemValue(CHILD_ITEM_PROPERTY, mapOrderItems); return; // no op
} }
}
// berechne Total:
double total = 0;
for (ItemCollection zeile : splitBuchungen) {
if ("H".equals(zeile.getItemValueString("datev.shzeichen"))) {
total = total + zeile.getItemValueDouble("datev.umsatz");
} else {
total = total - zeile.getItemValueDouble("datev.umsatz");
}
}
invoiceWorkitem.setItemValue("invoice.total", total);
invoiceWorkitem.setItemValue("invoice.saldo", total);
// implode die Splitbuchungen
implodeChildList(invoiceWorkitem, splitBuchungen);
// set dbtr.name
ItemCollection dbtrItemCol = kreditorDebitorService
.findDebitor(invoiceWorkitem.getItemValueString("dbtr.number"));
if (dbtrItemCol != null) {
invoiceWorkitem.setItemValue("dbtr.name", dbtrItemCol.getItemValueString("_VENDOR_Name"));
// Anhand der Creditoren Stammdaten errrechnen wir die Sprache für diese
// Rechnung
String country = dbtrItemCol.getItemValueString("_VENDOR_COUNTRY");
invoiceWorkitem.setItemValue("dbtr.country", country);
if (country.equalsIgnoreCase("de") || country.equalsIgnoreCase("ch") || country.equalsIgnoreCase("at")) {
invoiceWorkitem.setItemValue("invoice.language", "DE");
} else {
invoiceWorkitem.setItemValue("invoice.language", "EN");
}
}
// Jezt noch das Space mapping
// dazu kucken wir in alle spaces den config wert 'pos.mapping'
String text = invoiceWorkitem.getItemValueString("invoice.text");
if (!text.isEmpty()) {
for (Map.Entry<String, List<String> > entry : expressionsMap.entrySet()) {
List<String> expressionsList=entry.getValue();
for (String expr : expressionsList) {
Pattern p = Pattern.compile(expr);
Matcher m = p.matcher(text);
if (m.find()) {
// we have a match
invoiceWorkitem.setItemValue("space.ref", entry.getKey());
break;
}
}
}
}
// Processe die Invoice
invoiceWorkitem.model("rechnungsausgang-de-1.0").task(5001).event(980);
workflowService.processWorkItem(invoiceWorkitem);
}
/**
* Convert the List of ItemCollections back into a List of Map elements
*
* @param workitem
*/
@SuppressWarnings({ "rawtypes" })
private void implodeChildList(ItemCollection workitem, List<ItemCollection> childItems) {
List<Map> mapOrderItems = new ArrayList<Map>();
// convert the child ItemCollection elements into a List of Map
if (childItems != null) {
logger.fine("Convert child items into Map...");
// iterate over all order items..
for (ItemCollection orderItem : childItems) {
mapOrderItems.add(orderItem.getAllItems());
}
workitem.replaceItemValue(CHILD_ITEM_PROPERTY, mapOrderItems);
}
}
} }

View file

@ -82,6 +82,7 @@ public class MahnlaufExecuteAdapter implements SignalAdapter {
double saldo = 0; double saldo = 0;
int dunningLevel=0;
String currency = ""; String currency = "";
for (String uniqueId : refList) { for (String uniqueId : refList) {
ItemCollection invoice = workflowService.getWorkItem(uniqueId); ItemCollection invoice = workflowService.getWorkItem(uniqueId);
@ -112,6 +113,22 @@ public class MahnlaufExecuteAdapter implements SignalAdapter {
mahnlaufService.processInvoice(invoice.event(MahnlaufService.EVENT_MAHNLAUF_EXECUTE)); mahnlaufService.processInvoice(invoice.event(MahnlaufService.EVENT_MAHNLAUF_EXECUTE));
} }
switch (invoice.getTaskID()) {
case 5200:
dunningLevel=1;
break;
case 5210:
dunningLevel=2;
break;
case 5220:
dunningLevel=3;
break;
default:
dunningLevel=1;
break;
}
// create a workitem stub for the mail message // create a workitem stub for the mail message
ItemCollection invoiceStub = new ItemCollection(); ItemCollection invoiceStub = new ItemCollection();
@ -142,7 +159,26 @@ public class MahnlaufExecuteAdapter implements SignalAdapter {
mahnLaufWorkitem.setItemValue("dunning.details", invoiceList); mahnLaufWorkitem.setItemValue("dunning.details", invoiceList);
mahnLaufWorkitem.setItemValue("dunning.saldo", saldo); mahnLaufWorkitem.setItemValue("dunning.saldo", saldo);
mahnLaufWorkitem.setItemValue("dunning.currency", currency); mahnLaufWorkitem.setItemValue("dunning.currency", currency);
mahnLaufWorkitem.setItemValue("dunning.level", dunningLevel);
// compute subject
switch (dunningLevel) {
case 2:
mahnLaufWorkitem.setItemValue("mail.subject_de", "2. MAHNUNG");
mahnLaufWorkitem.setItemValue("mail.subject_en", "2. REMINDER");
break;
case 3:
mahnLaufWorkitem.setItemValue("mail.subject_de", "LETZTE AUSSERGERICHTLICHE MAHNUNG");
mahnLaufWorkitem.setItemValue("mail.subject_en", "LAST REMINDER");
break;
default:
mahnLaufWorkitem.setItemValue("mail.subject_de", "1. MAHNUNG");
mahnLaufWorkitem.setItemValue("mail.subject_en", "1. REMINDER");
break;
}
return mahnLaufWorkitem; return mahnLaufWorkitem;
} }

View file

@ -9,7 +9,8 @@ alexander_sub_positionen=
alexander_sub_positionen_read= alexander_sub_positionen_read=
alexander_sub_responsible= alexander_sub_responsible=
space.sub_custom=Konfiguration
space.help_custom=Bitte verwenden Sie hier Reguläre Ausdrücke wie z.B. /\bEX-SAL\b/ Dieser Ausdruck sucht nach dem Wert "EX-SAL" in einem String und achtet darauf, dass es nicht Teil eines größeren Ausdrucks ist (z.B. "EX-SALES").
ERROR_INVALID_IBANBIC=Die Eingabe der IBAN/BIC is ungültig. Bitte überprüfen Sie Ihre Eingaben. ERROR_INVALID_IBANBIC=Die Eingabe der IBAN/BIC is ungültig. Bitte überprüfen Sie Ihre Eingaben.

View file

@ -9,7 +9,7 @@ alexander_sub_positionen=
alexander_sub_positionen_read= alexander_sub_positionen_read=
alexander_sub_responsible= alexander_sub_responsible=
space.sub_custom=Konfiguration
ERROR_INVALID_IBANBIC=Your input of the IBAN/BIC is invalid. Please check your data. ERROR_INVALID_IBANBIC=Your input of the IBAN/BIC is invalid. Please check your data.

View file

@ -0,0 +1,38 @@
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:i="http://xmlns.jcp.org/jsf/composite/imixs"
xmlns:marty="http://java.sun.com/jsf/composite/marty"
xmlns:ui="http://java.sun.com/jsf/facelets">
<div class="imixs-form-panel">
<div class="imixs-form-section-3">
<!-- MandantCategory -->
<dl>
<dt>
Positionskennzeichen
</dt>
<dd>
<h:inputTextarea value="#{workitem.itemList['pos.mapping']}"
converter="org.imixs.VectorConverter" />
</dd>
</dl>
</div>
</div>
</ui:composition>

View file

@ -4,10 +4,14 @@ import java.text.DateFormat;
import java.text.DecimalFormat; import java.text.DecimalFormat;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import java.util.logging.Logger; import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import junit.framework.Assert;
/** /**
* This test generates random test data * This test generates random test data
* *
@ -46,5 +50,26 @@ public class TestFormat {
kurs = 0; kurs = 0;
logger.info(rateFormat.format(kurs)); logger.info(rateFormat.format(kurs));
} }
@Test
public void testRegex() {
String text="RG-EX-SAL-2211-036";
String expr="\\bEX-SAL";
Pattern p = Pattern.compile(expr);
p = Pattern.compile(expr);
Matcher m = p.matcher(text);
if (m.find()) {
System.out.println("Ich bin ein Held");
}
}
} }

View file

@ -1,321 +1,3 @@
"EXTF";"510";21;"Buchungsstapel";7;"20220721060421653";"";"CS";"cargoservice";"";"";"";"20220101";"4";"20220601";"20220630";"202206ALL";"CS";"";"";0;"EUR";"";"";"";"";"";"";"";"";"" "EXTF";"510";21;"Buchungsstapel";7;"20220721060421653";"";"CS";"cargoservice";"";"";"";"20220101";"4";"20220601";"20220630";"202206ALL";"CS";"";"";0;"EUR";"";"";"";"";"";"";"";"";""
Umsatz (ohne Soll-/Haben-Kennzeichen);Soll-Haben-Kennzeichen;WKZ Umsatz;Kurs;Basisumsatz;WKZ Basisumsatz;Konto;Gegenkonto;BU-Schlüssel;Belegdatum;Belegfeld 1;Belegfeld 2;Skonto;Buchungstext;Postensperre;Diverse Adressnummer;Geschäftspartnerbank;Sachverhalt;Zinssperre;Beleglink;Beleginfo-Art 1;Beleginfo-Inhalt 1;Beleginfo-Art 2;Beleginfo-Inhalt 2;Beleginfo-Art 3;Beleginfo-Inhalt 3;Beleginfo-Art 4;Beleginfo-Inhalt 4;Beleginfo-Art 5;Beleginfo-Inhalt 5;Beleginfo-Art 6;Beleginfo-Inhalt 6;Beleginfo-Art 7;Beleginfo-Inhalt 7;Beleginfo-Art 8;Beleginfo-Inhalt 8;KOST1-Kostenstelle;KOST2-Kostenstelle;KOST-Menge;EU-Mitgliedstaatu. USt-IdNr.;EU-Steuersatz;Abw. Versteuerungsart;Sachverhalt L+L;Funktionsergänzung L+L;BU 49 Hauptfunktionstyp;BU 49 Hauptfunktionsnummer;BU 49 Funktionsergänzung;Zusatzinformation-Art 1;Zusatzinformation-Inhalt 1;Zusatzinformation-Art 2;Zusatzinformation-Inhalt 2;Zusatzinformation-Art 3;Zusatzinformation-Inhalt 3;Zusatzinformation-Art 4;Zusatzinformation-Inhalt 4;Zusatzinformation-Art 5;Zusatzinformation-Inhalt 5;Zusatzinformation-Art 6;Zusatzinformation-Inhalt 6;Zusatzinformation-Art 7;Zusatzinformation-Inhalt 7;Zusatzinformation-Art 8;Zusatzinformation-Inhalt 8;Zusatzinformation-Art 9;Zusatzinformation-Inhalt 9;Zusatzinformation-Art 10;Zusatzinformation-Inhalt 10;Zusatzinformation-Art 11;Zusatzinformation-Inhalt 11;Zusatzinformation-Art 12;Zusatzinformation-Inhalt 12;Zusatzinformation-Art 13;Zusatzinformation-Inhalt 13;Zusatzinformation-Art 14;Zusatzinformation-Inhalt 14;Zusatzinformation-Art 15;Zusatzinformation-Inhalt 15;Zusatzinformation-Art 16;Zusatzinformation-Inhalt 16;Zusatzinformation-Art 17;Zusatzinformation-Inhalt 17;Zusatzinformation-Art 18;Zusatzinformation-Inhalt 18;Zusatzinformation-Art 19;Zusatzinformation-Inhalt 19;Zusatzinformation-Art 20;Zusatzinformation-Inhalt 20;Stück;Gewicht;Zahlweise;Forderungsart;Veranlagungsjahr;Zugeordnete Fälligkeit;Skontotyp;Auftragsnummer;Buchungstyp;USt-Schlüssel (Anzahlungen);EU-Mitgliedstaat (Anzahlungen);Sachverhalt L+L (Anzahlungen);EU-Steuersatz (Anzahlungen);Erlöskonto (Anzahlungen);Herkunft-Kz;Leerfeld;KOST-Datum;SEPAMandatsreferenz;Skontosperre;Gesellschaftername;Beteiligtennummer;Identifikationsnummer;Zeichnernummer;Postensperre bis;Bezeichnung SoBil-Sachverhalt;Kennzeichen SoBil-Buchung;Festschreibung;Leistungsdatum;Datum Zuord. Steuerperiode Umsatz (ohne Soll-/Haben-Kennzeichen);Soll-Haben-Kennzeichen;WKZ Umsatz;Kurs;Basisumsatz;WKZ Basisumsatz;Konto;Gegenkonto;BU-Schl<68>ssel;Belegdatum;Belegfeld 1;Belegfeld 2;Skonto;Buchungstext;Postensperre;Diverse Adressnummer;Gesch<63>ftspartnerbank;Sachverhalt;Zinssperre;Beleglink;Beleginfo-Art 1;Beleginfo-Inhalt 1;Beleginfo-Art 2;Beleginfo-Inhalt 2;Beleginfo-Art 3;Beleginfo-Inhalt 3;Beleginfo-Art 4;Beleginfo-Inhalt 4;Beleginfo-Art 5;Beleginfo-Inhalt 5;Beleginfo-Art 6;Beleginfo-Inhalt 6;Beleginfo-Art 7;Beleginfo-Inhalt 7;Beleginfo-Art 8;Beleginfo-Inhalt 8;KOST1-Kostenstelle;KOST2-Kostenstelle;KOST-Menge;EU-Mitgliedstaatu. USt-IdNr.;EU-Steuersatz;Abw. Versteuerungsart;Sachverhalt L+L;Funktionserg<72>nzung L+L;BU 49 Hauptfunktionstyp;BU 49 Hauptfunktionsnummer;BU 49 Funktionserg<72>nzung;Zusatzinformation-Art 1;Zusatzinformation-Inhalt 1;Zusatzinformation-Art 2;Zusatzinformation-Inhalt 2;Zusatzinformation-Art 3;Zusatzinformation-Inhalt 3;Zusatzinformation-Art 4;Zusatzinformation-Inhalt 4;Zusatzinformation-Art 5;Zusatzinformation-Inhalt 5;Zusatzinformation-Art 6;Zusatzinformation-Inhalt 6;Zusatzinformation-Art 7;Zusatzinformation-Inhalt 7;Zusatzinformation-Art 8;Zusatzinformation-Inhalt 8;Zusatzinformation-Art 9;Zusatzinformation-Inhalt 9;Zusatzinformation-Art 10;Zusatzinformation-Inhalt 10;Zusatzinformation-Art 11;Zusatzinformation-Inhalt 11;Zusatzinformation-Art 12;Zusatzinformation-Inhalt 12;Zusatzinformation-Art 13;Zusatzinformation-Inhalt 13;Zusatzinformation-Art 14;Zusatzinformation-Inhalt 14;Zusatzinformation-Art 15;Zusatzinformation-Inhalt 15;Zusatzinformation-Art 16;Zusatzinformation-Inhalt 16;Zusatzinformation-Art 17;Zusatzinformation-Inhalt 17;Zusatzinformation-Art 18;Zusatzinformation-Inhalt 18;Zusatzinformation-Art 19;Zusatzinformation-Inhalt 19;Zusatzinformation-Art 20;Zusatzinformation-Inhalt 20;St<53>ck;Gewicht;Zahlweise;Forderungsart;Veranlagungsjahr;Zugeordnete F<>lligkeit;Skontotyp;Auftragsnummer;Buchungstyp;USt-Schl<68>ssel (Anzahlungen);EU-Mitgliedstaat (Anzahlungen);Sachverhalt L+L (Anzahlungen);EU-Steuersatz (Anzahlungen);Erl<72>skonto (Anzahlungen);Herkunft-Kz;Leerfeld;KOST-Datum;SEPAMandatsreferenz;Skontosperre;Gesellschaftername;Beteiligtennummer;Identifikationsnummer;Zeichnernummer;Postensperre bis;Bezeichnung SoBil-Sachverhalt;Kennzeichen SoBil-Buchung;Festschreibung;Leistungsdatum;Datum Zuord. Steuerperiode
1359,96;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177348";"";"";"G LA-HOL-2204-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" 150,00;"H";"EUR";0,000000;0,00;;8010;10168;;1212;"188087";;;"R EX-SAL-2211-036";0;;;0;;;;;Faelligkeit;20221212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1399,27;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177350";"";"";"G LA-HOL-2206-018";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3732,36;"S";"EUR";0,000000;0,00;"";"8011";"13342";"";"2007";"177369";"";"";"G IM-GCA-2206-006";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE250152875";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
910,33;"S";"EUR";0,000000;0,00;"";"8011";"13342";"";"2007";"177377";"";"";"G IM-GCA-2206-009";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE250152875";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
353,77;"S";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"177416";"";"";"G LA-ZEL-2206-078";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
376,44;"S";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"177417";"";"";"G IM-ZEL-2206-288";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
47,60;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"0106";"202202537";"";"";"LG LA-ZEL-2204-068";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
47,60;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"0106";"202202538";"";"";"LG LA-ZEL-2204-069";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
47,60;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"0106";"202202539";"";"";"LG LA-ZEL-2204-070";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
650,00;"S";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"LR IM-GCA-2206-102";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
700,00;"S";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"LR IM-GCA-2206-140";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
228,00;"S";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"LR IM-GCA-2206-168";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
471,24;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"3006";"202202387";"";"";"LR LA-ZEL-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
763,77;"S";"EUR";0,000000;0,00;"";"3231";"70153";"";"1106";"5225479709";"";"";"LR IM-GCA-2205-189";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
720,00;"S";"EUR";0,000000;0,00;"";"3231";"70280";"";"0106";"5132044926";"";"";"LR IM-GCA-2204-135";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1094,80;"S";"EUR";0,000000;0,00;"";"3407";"71401";"";"0106";"554343";"";"";"LR IM-ZEL-2110-275";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
75,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"0106";"DEIM3326913";"";"";"LR LA-ZEL-2205-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
75,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"0806";"DEIM3359248";"";"";"LR LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
75,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"0806";"DEIM3359246";"";"";"LR LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
600,00;"S";"EUR";0,000000;0,00;"";"3211";"70191";"";"1406";"22133409";"";"";"LR LA-ZEL-2206-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
762,00;"S";"EUR";0,000000;0,00;"";"3211";"70191";"";"1506";"22134422";"";"";"LR LA-ZEL-2206-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
100,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"1606";"DEIM3371383";"";"";"LR LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
120,48;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381079";"";"";"LR LA-ZEL-2205-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1000,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381133";"";"";"LR LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
892,50;"S";"EUR";0,000000;0,00;"";"3407";"71401";"";"2206";"554827";"";"";"LR IM-ZEL-2206-153";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1606,50;"S";"EUR";0,000000;0,00;"";"3407";"71401";"";"2206";"554836";"";"";"LR IM-ZEL-2205-250";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
28,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381968";"";"";"LR IM-PAP-2206-014";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
6022,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381957";"";"";"LR IM-PAP-2205-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
100,72;"S";"EUR";0,000000;0,00;"";"3407";"71207";"";"2906";"22117007";"";"";"LR LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3000,00;"S";"EUR";0,000000;0,00;"";"3217";"74048";"";"3006";"CP.2022-956";"";"";"LR LA-ZEL-2204-120";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0656752950";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
672,77;"S";"EUR";0,000000;0,00;"";"3217";"74048";"";"3006";"CP.2022-956";"";"";"LR LA-ZEL-2204-122";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0656752950";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
500,00;"S";"EUR";0,000000;0,00;"";"3217";"74048";"";"3006";"CP.2022-956";"";"";"LR LA-ZEL-2204-119";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0656752950";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2748,90;"S";"EUR";0,000000;0,00;"";"3407";"77459";"";"0407";"4000191";"";"";"LR LA-HOL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1350,00;"S";"EUR";0,000000;0,00;"";"3217";"74965";"";"2206";"776/06/FV/ULT/2022";"";"";"LR IM-PAP-2206-326";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1300,00;"S";"EUR";0,000000;0,00;"";"3217";"74965";"";"1706";"579/06/FV/ULT/2022";"";"";"LR IM-PAP-2206-154";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
930,00;"S";"EUR";0,000000;0,00;"";"3217";"75937";"";"0407";"FV019/07/2022/WAW";"";"";"LR IM-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL5272862830";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
151,08;"S";"EUR";0,000000;0,00;"";"3407";"71207";"";"0407";"22117590";"";"";"LR LA-ZEL-2206-063";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2106";"001040/221";"";"";"LR IM-ZEL-2206-257";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1406";"001041/221";"";"";"LR IM-ZEL-2206-079";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2406";"001042/221";"";"";"LR IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2206";"001043/221";"";"";"LR IM-ZEL-2206-259";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1506";"001044/221";"";"";"LR IM-ZEL-2206-169";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1306";"001045/221";"";"";"LR IM-ZEL-2206-076";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1606";"001047/221";"";"";"LR IM-ZEL-2206-164";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2106";"001046/221";"";"";"LR IM-ZEL-2206-258";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
950,00;"S";"EUR";0,000000;0,00;"";"3217";"73845";"";"0407";"2022-07/9";"";"";"LR IM-ZEL-2206-311";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9281841410";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3230,00;"S";"EUR";0,000000;0,00;"";"3217";"70153";"";"0106";"5225334733";"";"";"LR IM-PAP-2203-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
766,02;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"2506";"5225511552";"";"";"LR LA-PAP-2205-017";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1252,00;"S";"EUR";0,000000;0,00;"";"3217";"70153";"";"2406";"5225510101";"";"";"LR IM-PAP-2204-141";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1100,00;"S";"EUR";0,000000;0,00;"";"3217";"77505";"";"2406";"2022/06/69";"";"";"LR IM-ZEL-2206-280";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"7811892042";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
32,00;"S";"EUR";0,000000;0,00;"";"3217";"74954";"";"0507";"145340";"";"";"LR IM-ZEL-2204-174";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL005408179B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
870,00;"S";"EUR";0,000000;0,00;"";"3217";"77401";"";"0106";"F/FS/0984/04/2022";"";"";"LR IM-ZEL-2204-177";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9291794907";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
48,00;"S";"EUR";0,000000;0,00;"";"3217";"71692";"";"2406";"DEIM3385952+";"";"";"LR LA-ZEL-2206-085";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
69450,15;"S";"EUR";0,000000;0,00;"";"3406";"70897";"";"0807";"22015392";"";"";"LR EX-SAL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE812119489";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
117,81;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1107";"202202547";"";"";"LR LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
353,43;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1107";"202202548";"";"";"LR LA-ZEL-2206-091";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
942,48;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1207";"202202596";"";"";"LR LA-ZEL-2206-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
300,00;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"2106";"5225501034";"";"";"LR LA-PAP-2206-028";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
75,00;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"2106";"5225501041";"";"";"LR LA-PAP-2206-028";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
161,46;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"1806";"5225495304";"";"";"LR LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
5200,00;"S";"EUR";0,000000;0,00;"";"3210";"70153";"";"1407";"5225561489";"";"";"LR EX-SAL-2206-105";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1531,53;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202652";"";"";"LR LA-ZEL-2206-047";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1413,72;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202654";"";"";"LR LA-ZEL-2206-053";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
471,24;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202677";"";"";"LR LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
117,81;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202681";"";"";"LR LA-ZEL-2207-025";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
195,48;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177344";"";"";"R LA-ZEL-2205-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
4966,20;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177345";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
405,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177346";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
75,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177347";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1574,60;"H";"EUR";0,000000;0,00;"";"8011";"11773";"";"2007";"177349";"";"";"R IM-GCA-2206-156";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
101,15;"H";"EUR";0,000000;0,00;"";"8407";"11773";"";"2007";"177349";"";"";"R IM-GCA-2206-156";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2759,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177351";"";"";"R LA-ZEL-2205-052";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
90,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177352";"";"";"R LA-ZEL-2205-052";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2207,20;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177353";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
180,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177354";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
123,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177355";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
4609,20;"H";"EUR";0,000000;0,00;"";"8011";"11773";"";"2007";"177356";"";"";"R IM-GCA-2206-157";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
303,45;"H";"EUR";0,000000;0,00;"";"8407";"11773";"";"2007";"177356";"";"";"R IM-GCA-2206-157";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
4414,40;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177357";"";"";"R LA-ZEL-2205-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
90,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177358";"";"";"R LA-ZEL-2205-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3340,20;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177359";"";"";"R LA-ZEL-2206-043";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
180,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177360";"";"";"R LA-ZEL-2206-043";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1730,25;"H";"EUR";0,000000;0,00;"";"8011";"11773";"";"2007";"177362";"";"";"R IM-GCA-2206-158";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
53,55;"H";"EUR";0,000000;0,00;"";"8407";"11773";"";"2007";"177362";"";"";"R IM-GCA-2206-158";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
6124,41;"H";"EUR";0,000000;0,00;"";"8011";"15907";"";"2007";"177363";"";"";"R IM-GCA-2206-005";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE324028205";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
95,00;"H";"EUR";0,000000;0,00;"";"8336";"17369";"";"2007";"177364";"";"";"R IM-ZEL-2206-347";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ25411411";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
95,00;"H";"EUR";0,000000;0,00;"";"8336";"17369";"";"2007";"177365";"";"";"R IM-ZEL-2206-255";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ25411411";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
67508,72;"H";"EUR";0,000000;0,00;"";"8010";"12799";"";"2007";"177366";"";"";"R EX-SAL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
5016,00;"H";"USD";1,030000;4869,90;"EUR";"8010";"13374";"";"2007";"177367";"";"";"R EX-SAL-2206-134";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2868,00;"H";"EUR";0,000000;0,00;"";"8011";"12030";"";"2007";"177368";"";"";"R IM-GCA-2206-216";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1432,78;"H";"EUR";0,000000;0,00;"";"8010";"13374";"";"2007";"177370";"";"";"R EX-SAL-2206-134";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
10032,00;"H";"USD";1,030000;9739,81;"EUR";"8010";"13374";"";"2007";"177371";"";"";"R EX-SAL-2206-125";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2716,99;"H";"EUR";0,000000;0,00;"";"8010";"13374";"";"2007";"177372";"";"";"R EX-SAL-2206-125";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
5016,00;"H";"USD";1,030000;4869,90;"EUR";"8010";"13374";"";"2007";"177373";"";"";"R EX-SAL-2206-133";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1553,00;"H";"EUR";0,000000;0,00;"";"8011";"12030";"";"2007";"177374";"";"";"R IM-GCA-2206-208";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1329,24;"H";"EUR";0,000000;0,00;"";"8010";"13374";"";"2007";"177375";"";"";"R EX-SAL-2206-133";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
855,00;"H";"EUR";0,000000;0,00;"";"8336";"17369";"";"2007";"177376";"";"";"R IM-ZEL-2206-372";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ25411411";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
65,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177378";"";"";"R IM-ZEL-2206-189";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
243,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177379";"";"";"R IM-ZEL-2206-184";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
86,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177380";"";"";"R IM-ZEL-2206-202";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
143,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177381";"";"";"R IM-ZEL-2206-197";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
143,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177382";"";"";"R IM-ZEL-2206-198";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
110,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177383";"";"";"R IM-ZEL-2206-195";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
240,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177384";"";"";"R IM-ZEL-2205-254";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
345,50;"H";"EUR";0,000000;0,00;"";"8011";"17513";"";"2007";"177385";"";"";"R IM-GCA-2206-230";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"LV40103114438";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1161,96;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177386";"";"";"R IM-ZEL-2206-278";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
100,00;"H";"EUR";0,000000;0,00;"";"8011";"12584";"";"2007";"177387";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1161,96;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177388";"";"";"R IM-ZEL-2206-317";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1161,96;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177389";"";"";"R IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
5574,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177390";"";"";"R LA-ZEL-2206-018";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
9720,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177391";"";"";"R LA-ZEL-2205-091";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
551,80;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177392";"";"";"R LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
65,00;"H";"EUR";0,000000;0,00;"";"8011";"14873";"";"2007";"177393";"";"";"R IM-GCA-2206-152";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1000,00;"H";"EUR";0,000000;0,00;"";"8011";"12584";"";"2007";"177394";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
40,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177395";"";"";"R LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
670,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177396";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
556,70;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177397";"";"";"R LA-ZEL-2206-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
90,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177398";"";"";"R LA-ZEL-2206-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
331,86;"H";"EUR";0,000000;0,00;"";"8407";"10073";"";"2007";"177399";"";"";"R LA-ZEL-2201-053";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE811778973";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
305,44;"H";"EUR";0,000000;0,00;"";"8407";"10073";"";"2007";"177400";"";"";"R LA-ZEL-2203-013";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE811778973";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
13214,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177403";"";"";"R LA-ZEL-2206-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
5039,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177404";"";"";"R LA-ZEL-2206-058";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1393,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177405";"";"";"R LA-ZEL-2206-050";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
977,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177406";"";"";"R LA-ZEL-2206-051";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
6236,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177407";"";"";"R LA-ZEL-2206-085";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1858,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177408";"";"";"R LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
4693,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177409";"";"";"R LA-ZEL-2206-049";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2787,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177410";"";"";"R LA-ZEL-2206-088";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
161,46;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"177413";"";"";"R LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
4180,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177418";"";"";"R LA-ZEL-2206-059";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
7563,39;"H";"EUR";0,000000;0,00;"";"3850";"16979";"";"2007";"177419";"";"";"R LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
22333,88;"H";"EUR";0,000000;0,00;"";"3851";"16979";"";"2007";"177419";"";"";"R LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1345,38;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177419";"";"";"R LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2787,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177420";"";"";"R LA-ZEL-2206-086";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
240,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177421";"";"";"R LA-ZEL-2205-058";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1800,00;"H";"USD";1,053430;1708,70;"EUR";"8010";"14169";"";"2007";"177424";"";"";"R EX-SAL-2205-161";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE815760766";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
7762,98;"H";"EUR";0,000000;0,00;"";"3850";"16979";"";"2007";"177426";"";"";"R LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
22959,17;"H";"EUR";0,000000;0,00;"";"3851";"16979";"";"2007";"177426";"";"";"R LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1382,50;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177426";"";"";"R LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3264,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177427";"";"";"R LA-ZEL-2205-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
150,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177428";"";"";"R LA-ZEL-2206-004";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
7330,09;"H";"EUR";0,000000;0,00;"";"3850";"16979";"";"2007";"177429";"";"";"R LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
21656,32;"H";"EUR";0,000000;0,00;"";"3851";"16979";"";"2007";"177429";"";"";"R LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1304,39;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177429";"";"";"R LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3431,86;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177430";"";"";"R LA-ZEL-2206-014";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
886,31;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177431";"";"";"R LA-ZEL-2206-038";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2295,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177432";"";"";"R LA-ZEL-2206-039";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
48,00;"H";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"177433";"";"";"R LA-ZEL-2206-078";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
38,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177434";"";"";"R LA-ZEL-2205-068";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
900,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177436";"";"";"R LA-ZEL-2205-089";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1875,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177437";"";"";"R LA-ZEL-2205-090";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3693,97;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177442";"";"";"R LA-ZEL-2204-120";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1130,92;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177443";"";"";"R LA-ZEL-2204-122";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
845,88;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177445";"";"";"R LA-ZEL-2204-119";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
484,68;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177446";"";"";"R LA-ZEL-2204-121";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
729,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177447";"";"";"R LA-ZEL-2204-117";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3370,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177448";"";"";"R LA-ZEL-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
464,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177449";"";"";"R LA-ZEL-2206-082";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
4212,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177450";"";"";"R LA-ZEL-2206-070";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
407,76;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177451";"";"";"R LA-ZEL-2204-118";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
23857,60;"H";"EUR";0,000000;0,00;"";"8010";"17403";"";"2007";"177452";"";"";"R EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE120310716";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
300,00;"H";"EUR";0,000000;0,00;"";"8010";"17403";"";"2007";"177453";"";"";"R EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE120310716";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1362,00;"H";"EUR";0,000000;0,00;"";"8011";"10319";"";"2007";"177454";"";"";"R LA-ZEL-2206-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE812785308";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
6098,00;"H";"EUR";0,000000;0,00;"";"8011";"12030";"";"2007";"177455";"";"";"R IM-GCA-2206-166";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1950,00;"S";"EUR";0,000000;0,00;"";"3206";"71992";"";"2007";"118847";"";"";"R1 IM-GCA-2206-216";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ40763811";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
65,00;"S";"EUR";0,000000;0,00;"";"3207";"70783";"";"2007";"118848";"";"";"R1 EX-SAL-2206-133";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1000,00;"S";"EUR";0,000000;0,00;"";"3206";"76626";"";"2007";"118849";"";"";"R1 IM-ZEL-2206-278";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ28858646";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
950,00;"S";"EUR";0,000000;0,00;"";"3206";"74808";"";"2007";"118850";"";"";"R1 IM-ZEL-2206-317";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ7903253105";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
852,00;"S";"EUR";0,000000;0,00;"";"3206";"72752";"";"2007";"118851";"";"";"R1 IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
70,00;"S";"EUR";0,000000;0,00;"";"8001";"12030";"";"2007";"118852";"";"";"R1 IM-GCA-2206-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
70,00;"S";"EUR";0,000000;0,00;"";"8001";"12030";"";"2007";"118853";"";"";"R1 DTHC";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
825,00;"S";"EUR";0,000000;0,00;"";"3206";"74170";"";"2007";"118855";"";"";"R1 NL ai";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
99,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118856";"";"";"R1 LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
84,64;"S";"EUR";0,000000;0,00;"";"3211";"71207";"";"2007";"118857";"";"";"R1 LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
99,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118859";"";"";"R1 LA-ZEL-2206-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
792,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118869";"";"";"R1 LA-ZEL-2206-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
396,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118870";"";"";"R1 LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1345,38;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118875";"";"";"R1 LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
575,00;"S";"EUR";0,000000;0,00;"";"3211";"71207";"";"2007";"118882";"";"";"R1 LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
675,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118883";"";"";"R1 LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1382,58;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118884";"";"";"R1 LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1304,39;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118885";"";"";"R1 LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
55815,86;"S";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118894";"";"";"R1 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
22898,78;"S";"EUR";0,000000;0,00;"";"3207";"76268";"";"2007";"118895";"";"";"R1 Verzollung + Zoll/Eust";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"811588998";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
32917,08;"S";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118896";"";"";"R1 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
446,40;"S";"EUR";0,000000;0,00;"";"3207";"76342";"";"2007";"118897";"";"";"R1 NL + DZ / 2 Ctr";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
32693,88;"S";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118898";"";"";"R1 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
302,00;"H";"EUR";0,000000;0,00;"";"3206";"70176";"";"2007";"113277";"";"";"R2 IM-GCA-2206-006";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE306837954";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
112,00;"H";"EUR";0,000000;0,00;"";"3206";"70176";"";"2007";"114116";"";"";"R2 IM-GCA-2206-009";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE306837954";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
85,00;"H";"EUR";0,000000;0,00;"";"3206";"70783";"";"2007";"114941";"";"";"R2 IM-GCA-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
460,00;"H";"EUR";0,000000;0,00;"";"3206";"71992";"";"2007";"116411";"";"";"R2 IM-GCA-2206-166";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ40763811";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
43,31;"H";"EUR";0,000000;0,00;"";"8001";"15979";"";"2007";"116593";"";"";"R2 IM-GCA-2206-095";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE124323806";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
14,46;"H";"EUR";0,000000;0,00;"";"8001";"16011";"";"2007";"116594";"";"";"R2 IM-GCA-2206-095";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE315607319";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
5,72;"H";"EUR";0,000000;0,00;"";"8001";"16011";"";"2007";"117160";"";"";"R2 IM-GCA-2206-142";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE315607319";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
185,85;"H";"EUR";0,000000;0,00;"";"8001";"16011";"";"2007";"117279";"";"";"R2 IM-GCA-2206-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE315607319";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
107,22;"H";"EUR";0,000000;0,00;"";"8001";"16093";"";"2007";"117280";"";"";"R2 IM-GCA-2206-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE198939997";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
376,44;"H";"EUR";0,000000;0,00;"";"3206";"70447";"";"2007";"117824";"";"";"R2 IM-ZEL-2206-288";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
72,00;"H";"EUR";0,000000;0,00;"";"3206";"70289";"";"2007";"117857";"";"";"R2 IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
791,85;"H";"EUR";0,000000;0,00;"";"3206";"74170";"";"2007";"117938";"";"";"R2 IM-GCA-2206-204";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
90,00;"H";"EUR";0,000000;0,00;"";"3206";"70783";"";"2007";"118265";"";"";"R2 IM-GCA-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
75,00;"H";"EUR";0,000000;0,00;"";"3206";"70280";"";"2007";"118608";"";"";"R2 IM-GCA-2206-030";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
223,20;"H";"EUR";0,000000;0,00;"";"3207";"76342";"";"2007";"118646";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
31658,26;"H";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118686";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
70,00;"H";"EUR";0,000000;0,00;"";"8001";"12030";"";"2007";"118853";"";"";"R2 IM-GCA-2206-101";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
55815,86;"H";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118894";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
32917,08;"H";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118896";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1000,00;"H";"USD";1,098500;910,33;"EUR";"8001";"13342";"";"2007";"114118";"";"";"R3 IM-GCA-2206-009";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE250152875";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3230,00;"H";"EUR";0,000000;0,00;"";"3206";"70153";"";"0106";"114210";"";"";"R3 IM-PAP-2203-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1108,00;"H";"EUR";0,000000;0,00;"";"3206";"70153";"";"2406";"114933";"";"";"R3 IM-PAP-2204-141";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
32,00;"H";"EUR";0,000000;0,00;"";"3206";"74954";"";"0507";"115545";"";"";"R3 IM-ZEL-2204-174";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL005408179B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
850,00;"H";"EUR";0,000000;0,00;"";"3206";"71399";"";"0106";"116794";"";"";"R3 IM-GCA-2205-182";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE147839881";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1225,00;"H";"EUR";0,000000;0,00;"";"3206";"71399";"";"0206";"116794";"";"";"R3 IM-GCA-2205-182";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE147839881";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1350,00;"H";"EUR";0,000000;0,00;"";"3206";"71401";"";"2206";"117181";"";"";"R3 IM-ZEL-2205-250";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
930,00;"H";"EUR";0,000000;0,00;"";"3206";"75937";"";"0407";"117259";"";"";"R3 IM-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL5272862830";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"1306";"117264";"";"";"R3 IM-ZEL-2206-076";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
950,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"1506";"117308";"";"";"R3 IM-ZEL-2206-169";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"1606";"117313";"";"";"R3 IM-ZEL-2206-164";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
353,77;"H";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"117754";"";"";"R3 LA-ZEL-2206-078";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
190,00;"H";"EUR";0,000000;0,00;"";"3207";"74800";"";"3006";"117947";"";"";"R3 EX-LUF-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE811228786";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
950,00;"H";"EUR";0,000000;0,00;"";"3206";"73845";"";"0407";"117991";"";"";"R3 IM-ZEL-2206-311";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9281841410";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2206";"118003";"";"";"R3 IM-ZEL-2206-259";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2106";"118004";"";"";"R3 IM-ZEL-2206-258";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2106";"118005";"";"";"R3 IM-ZEL-2206-257";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
58361,47;"H";"EUR";0,000000;0,00;"";"3207";"70897";"";"0807";"118024";"";"";"R3 EX-SAL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE812119489";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
205,00;"H";"EUR";0,000000;0,00;"";"3207";"74800";"";"3006";"118030";"";"";"R3 EX-LUF-2206-085";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE811228786";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1359,96;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118128";"";"";"R3 LA-HOL-2204-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1399,27;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118142";"";"";"R3 LA-HOL-2206-018";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1300,00;"H";"EUR";0,000000;0,00;"";"3206";"74965";"";"1706";"118364";"";"";"R3 IM-PAP-2206-154";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1350,00;"H";"EUR";0,000000;0,00;"";"3206";"74965";"";"2206";"118382";"";"";"R3 IM-PAP-2206-326";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
25,00;"H";"EUR";0,000000;0,00;"";"3207";"76918";"";"3006";"118544";"";"";"R3 EX-LUF-2206-060";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE303537001";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
100,00;"H";"EUR";0,000000;0,00;"";"3206";"77401";"";"0106";"118691";"";"";"R3 IM-ZEL-2204-177";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9291794907";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
852,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2406";"118851";"";"";"R3 IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
84,64;"H";"EUR";0,000000;0,00;"";"3211";"71207";"";"2906";"118857";"";"";"R3 LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
75,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"115283";"";"";"R4 IM-GCA-2206-100";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
85,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"116297";"";"";"R4 IM-GCA-2206-203";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
92,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117123";"";"";"R4 IM-GCA-2206-237";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
75,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117806";"";"";"R4 IM-GCA-2206-248";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
64,50;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117856";"";"";"R4 IM-GCA-2206-131";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
86,50;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117939";"";"";"R4 IM-GCA-2206-204";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
65,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"118020";"";"";"R4 IM-GCA-2206-238";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
100,00;"H";"EUR";0,000000;0,00;"";"3211";"71692";"";"2007";"118854";"";"";"R5 LA-ZEL-2206-005";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
90,00;"S";"EUR";0,000000;0,00;"";"8001";"10211";"";"2007";"117161";"";"";"R6 IM-ZEL-2205-254";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1800,00;"S";"USD";1,053430;1708,70;"EUR";"8002";"14169";"";"2007";"117229";"";"";"R6 EX-SAL-2205-161";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE815760766";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
430,00;"S";"EUR";0,000000;0,00;"";"3206";"71530";"";"2306";"118717";"";"";"R7 IM-GCA-2206-266";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE276842677";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
253,47;"H";"EUR";0,000000;0,00;"";"3407";"76955";"";"1706";"80049";"";"";"SE IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE237921382";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
753,72;"H";"EUR";0,000000;0,00;"";"3407";"76955";"";"1706";"80048";"";"";"SE IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE237921382";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
71,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-237";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
42,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-238";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
71,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-203";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
86,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-204";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
64,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-252";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
69,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-157";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
64,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-156";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
69,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-100";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
66,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-129";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
64,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-131";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
66,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
69,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-248";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1578,00;"H";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"SE IM-GCA-2206-140";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
471,24;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"3006";"202202387";"";"";"SE LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
302,16;"H";"EUR";0,000000;0,00;"";"3407";"71207";"";"0807";"22118069";"";"";"SE LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
805,77;"H";"EUR";0,000000;0,00;"";"3407";"71207";"";"1307";"22118354";"";"";"SE LA-ZEL-2207-032";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
763,77;"H";"EUR";0,000000;0,00;"";"3231";"70153";"";"1106";"5225479709";"";"";"SE IM-GCA-2206-189";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-020";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-104";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-105";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-147";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-149";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-180";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-181";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
7189,82;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-175";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3594,91;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-232";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3594,91;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-233";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1958,25;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-234";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1958,25;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-237";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3913,32;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-238";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1128,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-183";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1128,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-182";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
952,54;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-058";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
119,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-017";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
851,45;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
23,80;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-056";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
187,46;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-051";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
102,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-017";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
105,06;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
802,58;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-006";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
697,85;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-055";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
17,51;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2204-060";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
35,02;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2204-061";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
389,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-020";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
386,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2975,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-044";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1996,50;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
339,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-094";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2550,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-095";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
401,25;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-029";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1488,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-041";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3370,95;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-243";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-299";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-300";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
6310,76;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-015";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
518,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-028";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
707,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-053";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
394,07;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-043";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
867,24;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-065";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
4909,55;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-068";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1713,85;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-045";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3790,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
6700,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-077";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
1537,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-007";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
158,12;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-003";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
301,12;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-047";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
9553,96;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
6200,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-070";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
6400,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-069";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
3100,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-073";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
2363,74;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
161,46;"S";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"177415";"";"";"SR LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""

Can't render this file because it has a wrong number of fields in line 2.

View file

@ -0,0 +1,3 @@
"EXTF";"510";21;"Buchungsstapel";7;"20220721060421653";"";"CS";"cargoservice";"";"";"";"20220101";"4";"20220601";"20220630";"202206ALL";"CS";"";"";0;"EUR";"";"";"";"";"";"";"";"";""
Umsatz (ohne Soll-/Haben-Kennzeichen);Soll-Haben-Kennzeichen;WKZ Umsatz;Kurs;Basisumsatz;WKZ Basisumsatz;Konto;Gegenkonto;BU-Schl<68>ssel;Belegdatum;Belegfeld 1;Belegfeld 2;Skonto;Buchungstext;Postensperre;Diverse Adressnummer;Gesch<63>ftspartnerbank;Sachverhalt;Zinssperre;Beleglink;Beleginfo-Art 1;Beleginfo-Inhalt 1;Beleginfo-Art 2;Beleginfo-Inhalt 2;Beleginfo-Art 3;Beleginfo-Inhalt 3;Beleginfo-Art 4;Beleginfo-Inhalt 4;Beleginfo-Art 5;Beleginfo-Inhalt 5;Beleginfo-Art 6;Beleginfo-Inhalt 6;Beleginfo-Art 7;Beleginfo-Inhalt 7;Beleginfo-Art 8;Beleginfo-Inhalt 8;KOST1-Kostenstelle;KOST2-Kostenstelle;KOST-Menge;EU-Mitgliedstaatu. USt-IdNr.;EU-Steuersatz;Abw. Versteuerungsart;Sachverhalt L+L;Funktionserg<72>nzung L+L;BU 49 Hauptfunktionstyp;BU 49 Hauptfunktionsnummer;BU 49 Funktionserg<72>nzung;Zusatzinformation-Art 1;Zusatzinformation-Inhalt 1;Zusatzinformation-Art 2;Zusatzinformation-Inhalt 2;Zusatzinformation-Art 3;Zusatzinformation-Inhalt 3;Zusatzinformation-Art 4;Zusatzinformation-Inhalt 4;Zusatzinformation-Art 5;Zusatzinformation-Inhalt 5;Zusatzinformation-Art 6;Zusatzinformation-Inhalt 6;Zusatzinformation-Art 7;Zusatzinformation-Inhalt 7;Zusatzinformation-Art 8;Zusatzinformation-Inhalt 8;Zusatzinformation-Art 9;Zusatzinformation-Inhalt 9;Zusatzinformation-Art 10;Zusatzinformation-Inhalt 10;Zusatzinformation-Art 11;Zusatzinformation-Inhalt 11;Zusatzinformation-Art 12;Zusatzinformation-Inhalt 12;Zusatzinformation-Art 13;Zusatzinformation-Inhalt 13;Zusatzinformation-Art 14;Zusatzinformation-Inhalt 14;Zusatzinformation-Art 15;Zusatzinformation-Inhalt 15;Zusatzinformation-Art 16;Zusatzinformation-Inhalt 16;Zusatzinformation-Art 17;Zusatzinformation-Inhalt 17;Zusatzinformation-Art 18;Zusatzinformation-Inhalt 18;Zusatzinformation-Art 19;Zusatzinformation-Inhalt 19;Zusatzinformation-Art 20;Zusatzinformation-Inhalt 20;St<53>ck;Gewicht;Zahlweise;Forderungsart;Veranlagungsjahr;Zugeordnete F<>lligkeit;Skontotyp;Auftragsnummer;Buchungstyp;USt-Schl<68>ssel (Anzahlungen);EU-Mitgliedstaat (Anzahlungen);Sachverhalt L+L (Anzahlungen);EU-Steuersatz (Anzahlungen);Erl<72>skonto (Anzahlungen);Herkunft-Kz;Leerfeld;KOST-Datum;SEPAMandatsreferenz;Skontosperre;Gesellschaftername;Beteiligtennummer;Identifikationsnummer;Zeichnernummer;Postensperre bis;Bezeichnung SoBil-Sachverhalt;Kennzeichen SoBil-Buchung;Festschreibung;Leistungsdatum;Datum Zuord. Steuerperiode
150,00;"H";"EUR";0,000000;0,00;;8010;10168;;1212;"188087";;;"R EX-SAL-2211-036";0;;;0;;;;;Faelligkeit;20221212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Can't render this file because it has a wrong number of fields in line 2.

View file

@ -0,0 +1,925 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- origin at X=0.0 Y=0.0 -->
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:imixs="http://www.imixs.org/bpmn2" xmlns:tl="http://www.w3.org/2001/XMLSchema" id="Definitions_1" exporter="org.eclipse.bpmn2.modeler.core" exporterVersion="1.5.4.RC1-v20220528-0836-B1" name="Definitions 1" targetNamespace="http://www.imixs.org/bpmn2">
<bpmn2:extensionElements>
<imixs:item name="txtworkflowmodelversion" type="xs:string">
<imixs:value><![CDATA[mahnlauf-de-1.0]]></imixs:value>
</imixs:item>
<imixs:item name="txtfieldmapping" type="xs:string">
<imixs:value><![CDATA[Prozess-Verantwortliche| namprocessmanager]]></imixs:value>
<imixs:value><![CDATA[Prozess-Assistenz | namprocessassist]]></imixs:value>
<imixs:value><![CDATA[Buchhaltung | namprocessteam]]></imixs:value>
<imixs:value><![CDATA[Debitor-Mail|dbtr.mail]]></imixs:value>
</imixs:item>
<imixs:item name="txttimefieldmapping" type="xs:string">
<imixs:value><![CDATA[Wiedervorlage | datDate]]></imixs:value>
<imixs:value><![CDATA[Start | datFrom]]></imixs:value>
<imixs:value><![CDATA[Ende | datTo]]></imixs:value>
</imixs:item>
<imixs:item name="txtplugins" type="xs:string">
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.ResultPlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.RulePlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.marty.profile.ProfilePlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.marty.plugins.SequenceNumberPlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.marty.team.TeamPlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.marty.profile.DeputyPlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.OwnerPlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.HistoryPlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.LogPlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.ApplicationPlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.marty.plugins.CommentPlugin]]></imixs:value>
<imixs:value><![CDATA[org.imixs.marty.profile.MailPlugin]]></imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:signal id="Signal_1" name="com.alexanderlogistics.ZahlungsavisExportAdapter"/>
<bpmn2:signal id="Signal_2" name="com.alexanderlogistics.ZahlungseingangSaldoAdapter"/>
<bpmn2:signal id="Signal_3" name="com.alexanderlogistics.mahnlauf.MahnlaufExecuteAdapter"/>
<bpmn2:message id="Message_2" name="Html-Header">
<bpmn2:documentation id="Documentation_22"><![CDATA[<html>
<head>
<style type="text/css">
html, body, div, p, pre, h1, h2, h3, ul, ol, span, a, table, td, form, img,
li {
font-family: Arial;
font-style: normal;
font-variant: normal;
font-weight: normal;
font-size: 11pt;
}
body {
margin: 0;
padding: 1em;
min-width: 41em;
}
h2 {
font-size: 12pt;
font-weight: bold;
}
th {
border-bottom: 1px solid #ccc;
}
td { border:none;min-width:120px; }
th { font-weight: bold;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title><itemvalue>$workflowstatus</itemvalue></title>
</head>
<body>]]></bpmn2:documentation>
</bpmn2:message>
<bpmn2:message id="Message_7" name="Html-Footer">
<bpmn2:documentation id="Documentation_15"><![CDATA[</body>
</html>]]></bpmn2:documentation>
</bpmn2:message>
<bpmn2:collaboration id="Collaboration_1" name="Zahlungseingang">
<bpmn2:participant id="Participant_1" name="Mahnlauf" processRef="Process_1"/>
<bpmn2:participant id="Participant_2" name="SEPA-Export Pool" processRef="eingangsrechnung-de"/>
</bpmn2:collaboration>
<bpmn2:process id="eingangsrechnung-de" name="SEPA-Export" isExecutable="false"/>
<bpmn2:process id="Process_1" name="Mahnlauf" definitionalCollaborationRef="Collaboration_1" isExecutable="false">
<bpmn2:laneSet id="LaneSet_1" name="Lane Set 1">
<bpmn2:lane id="Lane_1" name="Buchhaltung">
<bpmn2:flowNodeRef>StartEvent_1</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>Task_1</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>IntermediateCatchEvent_3</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>EndEvent_3</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>IntermediateCatchEvent_1</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>IntermediateCatchEvent_5</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>ExclusiveGateway_2</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>IntermediateCatchEvent_4</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>Task_2</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>ExclusiveGateway_1</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>IntermediateCatchEvent_2</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>IntermediateCatchEvent_7</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>IntermediateCatchEvent_6</bpmn2:flowNodeRef>
<bpmn2:flowNodeRef>Task_3</bpmn2:flowNodeRef>
</bpmn2:lane>
</bpmn2:laneSet>
<bpmn2:startEvent id="StartEvent_1" name="Start">
<bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
</bpmn2:startEvent>
<bpmn2:task id="Task_2" imixs:processid="1900" name="Versendet">
<bpmn2:extensionElements>
<imixs:item name="txtworkflowsummary" type="xs:string">
<imixs:value><![CDATA[<itemvalue format="dd.MM.yyyy">$lasteventdate</itemvalue> - <itemvalue>dbtr.name</itemvalue> (<itemvalue>dbtr.number</itemvalue>)]]></imixs:value>
</imixs:item>
<imixs:item name="keyupdateacl" type="xs:boolean">
<imixs:value>true</imixs:value>
</imixs:item>
<imixs:item name="keyownershipfields" type="xs:string"/>
<imixs:item name="keyaddwritefields" type="xs:string"/>
<imixs:item name="keyaddreadfields" type="xs:string"/>
<imixs:item name="txtimageurl" type="xs:string">
<imixs:value><![CDATA[typcn-mail||||typcn-tick,imixs-success]]></imixs:value>
</imixs:item>
<imixs:item name="txteditorid" type="xs:string">
<imixs:value><![CDATA[form_basic_read]]></imixs:value>
</imixs:item>
<imixs:item name="txttype" type="xs:string">
<imixs:value><![CDATA[workitemarchive]]></imixs:value>
</imixs:item>
<imixs:item name="txtworkflowabstract" type="CDATA">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="namaddreadaccess" type="xs:string">
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:documentation id="Documentation_4"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
<bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
<bpmn2:incoming>SequenceFlow_15</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
</bpmn2:task>
<bpmn2:sequenceFlow id="SequenceFlow_10" sourceRef="Task_2" targetRef="EndEvent_3"/>
<bpmn2:endEvent id="EndEvent_3" name="End">
<bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
<bpmn2:incoming>SequenceFlow_13</bpmn2:incoming>
</bpmn2:endEvent>
<bpmn2:task id="Task_1" imixs:processid="1000" name="Erfassung">
<bpmn2:extensionElements>
<imixs:item name="txtworkflowsummary" type="xs:string">
<imixs:value><![CDATA[<itemvalue format="dd.MM.yyyy">$lasteventdate</itemvalue> - <itemvalue>dbtr.name</itemvalue> (<itemvalue>dbtr.number</itemvalue>)]]></imixs:value>
</imixs:item>
<imixs:item name="txteditorid" type="xs:string">
<imixs:value><![CDATA[alexander/form_basic]]></imixs:value>
</imixs:item>
<imixs:item name="txtimageurl" type="xs:string">
<imixs:value><![CDATA[typcn-mail||]]></imixs:value>
</imixs:item>
<imixs:item name="txttype" type="xs:string">
<imixs:value><![CDATA[workitem]]></imixs:value>
</imixs:item>
<imixs:item name="keyupdateacl" type="xs:boolean">
<imixs:value>true</imixs:value>
</imixs:item>
<imixs:item name="keyownershipfields" type="xs:string">
<imixs:value><![CDATA[namprocessteam]]></imixs:value>
</imixs:item>
<imixs:item name="keyaddreadfields" type="xs:string"/>
<imixs:item name="keyaddwritefields" type="xs:string"/>
<imixs:item name="txtworkflowabstract" type="CDATA">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="namaddreadaccess" type="xs:string">
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
</imixs:item>
<imixs:item name="namaddwriteaccess" type="xs:string">
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:documentation id="Documentation_3"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
<bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
<bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
<bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
<bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
</bpmn2:task>
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_6" imixs:activityid="10" name="Speichern">
<bpmn2:extensionElements>
<imixs:item name="keylogtimeformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyarchive" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="txtmailsubject" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyaccessmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyscheduledactivity" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfmailbody" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyversion" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyaddwritefields" type="xs:string"/>
<imixs:item name="numnextactivityid" type="xs:int">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyfollowup" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keypublicresult" type="xs:string">
<imixs:value><![CDATA[1]]></imixs:value>
</imixs:item>
<imixs:item name="keylogdateformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipfields" type="xs:string"/>
<imixs:item name="numnextid" type="xs:int">
<imixs:value><![CDATA[5000]]></imixs:value>
</imixs:item>
<imixs:item name="txtnextprocesstree" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="txtactivityresult" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="txtname" type="xs:string">
<imixs:value><![CDATA[Speichern]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfresultlog" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyupdateacl" type="xs:boolean">
<imixs:value>false</imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:documentation id="Documentation_10"><![CDATA[Zwischenspeichern]]></bpmn2:documentation>
<bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
</bpmn2:intermediateCatchEvent>
<bpmn2:sequenceFlow id="SequenceFlow_6" sourceRef="IntermediateCatchEvent_6" targetRef="Task_2"/>
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_3" imixs:activityid="10" name="Speichern">
<bpmn2:extensionElements>
<imixs:item name="keylogtimeformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyarchive" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="txtmailsubject" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyaccessmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyscheduledactivity" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfmailbody" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyversion" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyaddwritefields" type="xs:string"/>
<imixs:item name="numnextactivityid" type="xs:int">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyfollowup" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keypublicresult" type="xs:string">
<imixs:value><![CDATA[1]]></imixs:value>
</imixs:item>
<imixs:item name="keylogdateformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipfields" type="xs:string"/>
<imixs:item name="numnextid" type="xs:int">
<imixs:value><![CDATA[5000]]></imixs:value>
</imixs:item>
<imixs:item name="txtnextprocesstree" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="txtactivityresult" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="txtname" type="xs:string">
<imixs:value><![CDATA[Speichern]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfresultlog" type="xs:string">
<imixs:value><![CDATA[Mahnlauf aktualisiert.]]></imixs:value>
</imixs:item>
<imixs:item name="keyupdateacl" type="xs:boolean">
<imixs:value>false</imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:documentation id="Documentation_12"><![CDATA[Zwischenspeichern]]></bpmn2:documentation>
<bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
</bpmn2:intermediateCatchEvent>
<bpmn2:sequenceFlow id="SequenceFlow_14" sourceRef="IntermediateCatchEvent_3" targetRef="Task_1"/>
<bpmn2:sequenceFlow id="SequenceFlow_4" sourceRef="StartEvent_1" targetRef="Task_1"/>
<bpmn2:dataObject id="DataObject_1" name="Form">
<bpmn2:documentation id="Documentation_17"><![CDATA[<?xml version="1.0"?>
<imixs-form>
<imixs-form-section columns="2">
<item name="dbtr.number" type="text" required="true" label="Debitor:" />
<item name="dbtr.mail" type="text" required="true" label="E-Mail:" />
</imixs-form-section>
<imixs-form-section columns="1">
<item name="description" type="textarea" label="Bemerkung für E-Mail an Debitor:" />
</imixs-form-section>
<imixs-form-section label="Offene Posten" path="alexander/section_opliste_mahnlauf" readonly="false" />
</imixs-form>]]></bpmn2:documentation>
<bpmn2:dataState id="DataState_1"/>
</bpmn2:dataObject>
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_1" imixs:activityid="20" name="Mahnen">
<bpmn2:extensionElements>
<imixs:item name="keylogtimeformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyarchive" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="txtmailsubject" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyaccessmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyscheduledactivity" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfmailbody" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyversion" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyaddwritefields" type="xs:string"/>
<imixs:item name="numnextactivityid" type="xs:int">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyfollowup" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keypublicresult" type="xs:string">
<imixs:value><![CDATA[1]]></imixs:value>
</imixs:item>
<imixs:item name="keylogdateformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipfields" type="xs:string"/>
<imixs:item name="numnextid" type="xs:int">
<imixs:value><![CDATA[5000]]></imixs:value>
</imixs:item>
<imixs:item name="txtnextprocesstree" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="txtactivityresult" type="xs:string">
<imixs:value><![CDATA[<item name="action">home</item>
<item name="process">Mahnwesen</item>]]></imixs:value>
</imixs:item>
<imixs:item name="txtname" type="xs:string">
<imixs:value><![CDATA[Speichern]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfresultlog" type="xs:string">
<imixs:value><![CDATA[Mahnung erstellt und versendet]]></imixs:value>
</imixs:item>
<imixs:item name="keyupdateacl" type="xs:boolean">
<imixs:value>false</imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:documentation id="Documentation_1"><![CDATA[Mahnstufe hochsetzen und E-Mail an Debitor versenden]]></bpmn2:documentation>
<bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>
<bpmn2:dataOutput id="DataOutput_1" name="Signal_2_Output"/>
<bpmn2:dataOutputAssociation id="DataOutputAssociation_1">
<bpmn2:sourceRef>DataOutput_1</bpmn2:sourceRef>
</bpmn2:dataOutputAssociation>
<bpmn2:outputSet id="OutputSet_2" name="Output Set 2">
<bpmn2:dataOutputRefs>DataOutput_1</bpmn2:dataOutputRefs>
</bpmn2:outputSet>
<bpmn2:signalEventDefinition id="SignalEventDefinition_2" signalRef="Signal_3"/>
</bpmn2:intermediateCatchEvent>
<bpmn2:sequenceFlow id="SequenceFlow_2" sourceRef="Task_1" targetRef="IntermediateCatchEvent_1"/>
<bpmn2:exclusiveGateway id="ExclusiveGateway_1" gatewayDirection="Diverging" default="SequenceFlow_9">
<bpmn2:incoming>SequenceFlow_7</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
<bpmn2:outgoing>SequenceFlow_9</bpmn2:outgoing>
</bpmn2:exclusiveGateway>
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_2" imixs:activityid="151" name="[Mail DE]">
<bpmn2:extensionElements>
<imixs:item name="rtfmailbody" type="CDATA">
<imixs:value><![CDATA[<bpmn2:message>Html-Header</bpmn2:message>
<textblock>E-Mail - Mahnlauf-<itemvalue>dunning.level</itemvalue> (DE)</textblock>
<pre>
<itemvalue>description</itemvalue>
</pre>
<p>
Debitor: <itemvalue>dbtr.name</itemvalue> (<itemvalue>dbtr.number</itemvalue>)
</p>
<table>
<theader>
<tr>
<th>Rechnungsnummer</th>
<th>Datum</th>
<th>Fälligkeit</th>
<th>Rechnungsbetrag</th>
<th>Saldo</th>
<th>Mahnstufe</th>
</tr>
</theader>
<tbody>
<for-each item="dunning.details">
<tr>
<td><itemvalue>invoice.number</itemvalue></td>
<td style="text-align:center;"><itemvalue format="dd.MM.yyyy">invoice.date</itemvalue></td>
<td style="text-align:center;"><itemvalue format="dd.MM.yyyy">invoice.duedate</itemvalue></td>
<td style="text-align:right;"><itemvalue format="#,###,##0.00" locale="de_DE">invoice.total</itemvalue> <itemvalue>invoice.currency</itemvalue></td>
<td style="text-align:right;"><itemvalue format="#,###,##0.00" locale="de_DE">invoice.saldo</itemvalue> <itemvalue>invoice.currency</itemvalue></td>
<td style="text-align:center;"><itemvalue>$workflowstatus</itemvalue></td>
</tr>
</for-each>
<tr>
<td /><td /><td /><td style="text-align:right;font-weight:bold">Saldo</td><td style="text-align:right;"><itemvalue format="#,###,##0.00" locale="de_DE">dunning.saldo</itemvalue> <itemvalue>dunning.currency</itemvalue></td>
</tr>
</tbody>
</table>
<textblock>E-Mail - Mahnlauf Footer (DE)</textblock>
<bpmn2:message>Html-Footer</bpmn2:message>
]]></imixs:value>
</imixs:item>
<imixs:item name="txtmailsubject" type="xs:string">
<imixs:value><![CDATA[<itemvalue>mail.subject_de</itemvalue>]]></imixs:value>
</imixs:item>
<imixs:item name="nammailreceiver" type="xs:string"/>
<imixs:item name="keypublicresult" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="nammailreceiverbcc" type="xs:string">
<imixs:value><![CDATA[ausgangsmahnungen@alexander-logistics.com]]></imixs:value>
</imixs:item>
<imixs:item name="keymailreceiverfields" type="xs:string">
<imixs:value><![CDATA[dbtr.mail]]></imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_11</bpmn2:outgoing>
<bpmn2:messageEventDefinition id="MessageEventDefinition_1"/>
</bpmn2:intermediateCatchEvent>
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_4" imixs:activityid="152" name="[Mail EN]">
<bpmn2:extensionElements>
<imixs:item name="rtfmailbody" type="CDATA">
<imixs:value><![CDATA[<bpmn2:message>Html-Header</bpmn2:message>
<textblock>E-Mail - Mahnlauf-<itemvalue>dunning.level</itemvalue> (EN)</textblock>
<p>
<itemvalue>description</itemvalue>
</p>
<p>
Debitor: <itemvalue>dbtr.name</itemvalue> (<itemvalue>dbtr.number</itemvalue>)
</p>
<table>
<theader>
<tr>
<th>Invoice No.</th>
<th>Date</th>
<th>Expiry Date</th>
<th>Invoice Amount</th>
<th>Balance</th>
<th>Dunning Level</th>
</tr>
</theader>
<tbody>
<for-each item="dunning.details">
<tr>
<td><itemvalue>invoice.number</itemvalue></td>
<td style="text-align:center;"><itemvalue format="dd.MM.yyyy">invoice.date</itemvalue></td>
<td style="text-align:center;"><itemvalue format="dd.MM.yyyy">invoice.duedate</itemvalue></td>
<td style="text-align:right;"><itemvalue format="#,###,##0.00" locale="de_DE">invoice.total</itemvalue> <itemvalue>invoice.currency</itemvalue></td>
<td style="text-align:right;"><itemvalue format="#,###,##0.00" locale="de_DE">invoice.saldo</itemvalue> <itemvalue>invoice.currency</itemvalue></td>
<td style="text-align:center;"><itemvalue>workflowstatus_en</itemvalue></td>
</tr>
</for-each>
<tr>
<td /><td /><td /><td style="text-align:right;font-weight:bold">Saldo</td><td style="text-align:right;"><itemvalue format="#,###,##0.00" locale="de_DE">dunning.saldo</itemvalue> <itemvalue>dunning.currency</itemvalue></td>
</tr>
</tbody>
</table>
<textblock>E-Mail - Mahnlauf Footer (EN)</textblock>
<bpmn2:message>Html-Footer</bpmn2:message>
]]></imixs:value>
</imixs:item>
<imixs:item name="txtmailsubject" type="xs:string">
<imixs:value><![CDATA[<itemvalue>mail.subject_en</itemvalue>]]></imixs:value>
</imixs:item>
<imixs:item name="nammailreceiver" type="xs:string"/>
<imixs:item name="keypublicresult" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="nammailreceiverbcc" type="xs:string">
<imixs:value><![CDATA[ausgangsmahnungen@alexander-logistics.com]]></imixs:value>
</imixs:item>
<imixs:item name="keymailreceiverfields" type="xs:string">
<imixs:value><![CDATA[dbtr.mail]]></imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:incoming>SequenceFlow_9</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
<bpmn2:messageEventDefinition id="MessageEventDefinition_2"/>
</bpmn2:intermediateCatchEvent>
<bpmn2:sequenceFlow id="SequenceFlow_7" sourceRef="IntermediateCatchEvent_1" targetRef="ExclusiveGateway_1"/>
<bpmn2:sequenceFlow id="SequenceFlow_8" sourceRef="ExclusiveGateway_1" targetRef="IntermediateCatchEvent_2">
<bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" id="FormalExpression_1">workitem['invoice.language'] &amp;&amp; workitem['invoice.language'][0]==&quot;DE&quot; </bpmn2:conditionExpression>
</bpmn2:sequenceFlow>
<bpmn2:sequenceFlow id="SequenceFlow_9" sourceRef="ExclusiveGateway_1" targetRef="IntermediateCatchEvent_4"/>
<bpmn2:exclusiveGateway id="ExclusiveGateway_2" gatewayDirection="Converging">
<bpmn2:incoming>SequenceFlow_11</bpmn2:incoming>
<bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing>
</bpmn2:exclusiveGateway>
<bpmn2:sequenceFlow id="SequenceFlow_11" sourceRef="IntermediateCatchEvent_2" targetRef="ExclusiveGateway_2"/>
<bpmn2:sequenceFlow id="SequenceFlow_12" sourceRef="IntermediateCatchEvent_4" targetRef="ExclusiveGateway_2"/>
<bpmn2:sequenceFlow id="SequenceFlow_15" sourceRef="ExclusiveGateway_2" targetRef="Task_2"/>
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_5" imixs:activityid="100" name="[add ref]">
<bpmn2:extensionElements>
<imixs:item name="keylogtimeformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyarchive" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="txtmailsubject" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyaccessmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyscheduledactivity" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfmailbody" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyversion" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyaddwritefields" type="xs:string"/>
<imixs:item name="numnextactivityid" type="xs:int">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyfollowup" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keypublicresult" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keylogdateformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipfields" type="xs:string"/>
<imixs:item name="numnextid" type="xs:int">
<imixs:value><![CDATA[5000]]></imixs:value>
</imixs:item>
<imixs:item name="txtnextprocesstree" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="txtactivityresult" type="xs:string">
<imixs:value><![CDATA[<item name="process">Mahnwesen</item>]]></imixs:value>
</imixs:item>
<imixs:item name="txtname" type="xs:string">
<imixs:value><![CDATA[Speichern]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfresultlog" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyupdateacl" type="xs:boolean">
<imixs:value>false</imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
<bpmn2:signalEventDefinition id="SignalEventDefinition_1"/>
</bpmn2:intermediateCatchEvent>
<bpmn2:sequenceFlow id="SequenceFlow_1" sourceRef="IntermediateCatchEvent_5" targetRef="Task_1"/>
<bpmn2:task id="Task_3" imixs:processid="1800" name="Storniert">
<bpmn2:extensionElements>
<imixs:item name="txtworkflowsummary" type="xs:string">
<imixs:value><![CDATA[<itemvalue format="dd.MM.yyyy">$lasteventdate</itemvalue> - <itemvalue>dbtr.name</itemvalue> (<itemvalue>dbtr.number</itemvalue>)]]></imixs:value>
</imixs:item>
<imixs:item name="keyupdateacl" type="xs:boolean">
<imixs:value>true</imixs:value>
</imixs:item>
<imixs:item name="keyownershipfields" type="xs:string"/>
<imixs:item name="keyaddwritefields" type="xs:string"/>
<imixs:item name="keyaddreadfields" type="xs:string"/>
<imixs:item name="txtimageurl" type="xs:string">
<imixs:value><![CDATA[typcn-mail||||typcn-tick,imixs-success]]></imixs:value>
</imixs:item>
<imixs:item name="txteditorid" type="xs:string">
<imixs:value><![CDATA[form_basic_read]]></imixs:value>
</imixs:item>
<imixs:item name="txttype" type="xs:string">
<imixs:value><![CDATA[workitemarchive]]></imixs:value>
</imixs:item>
<imixs:item name="txtworkflowabstract" type="CDATA">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="namaddreadaccess" type="xs:string">
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:documentation id="Documentation_9"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
<bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_13</bpmn2:outgoing>
</bpmn2:task>
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_7" imixs:activityid="40" name="Stornieren">
<bpmn2:extensionElements>
<imixs:item name="keylogtimeformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyarchive" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="txtmailsubject" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyaccessmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyscheduledactivity" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfmailbody" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="keyversion" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyaddwritefields" type="xs:string"/>
<imixs:item name="numnextactivityid" type="xs:int">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="keyfollowup" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keypublicresult" type="xs:string">
<imixs:value><![CDATA[1]]></imixs:value>
</imixs:item>
<imixs:item name="keylogdateformat" type="xs:string">
<imixs:value><![CDATA[2]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipfields" type="xs:string"/>
<imixs:item name="numnextid" type="xs:int">
<imixs:value><![CDATA[5000]]></imixs:value>
</imixs:item>
<imixs:item name="txtnextprocesstree" type="xs:string">
<imixs:value><![CDATA[]]></imixs:value>
</imixs:item>
<imixs:item name="txtactivityresult" type="xs:string">
<imixs:value><![CDATA[<item name="action">home</item>]]></imixs:value>
</imixs:item>
<imixs:item name="txtname" type="xs:string">
<imixs:value><![CDATA[Speichern]]></imixs:value>
</imixs:item>
<imixs:item name="keyownershipmode" type="xs:string">
<imixs:value><![CDATA[0]]></imixs:value>
</imixs:item>
<imixs:item name="rtfresultlog" type="xs:string">
<imixs:value><![CDATA[Mahnlauf abgebrochen.]]></imixs:value>
</imixs:item>
<imixs:item name="keyupdateacl" type="xs:boolean">
<imixs:value>false</imixs:value>
</imixs:item>
<imixs:item name="txtbusinessrule" type="CDATA">
<imixs:value><![CDATA[var result={};
var refField="txtcomment";
result.isValid=true;
if ( ( workitem.get(refField) == null || ''==workitem.get(refField)[0]) ) {
result.isValid=false;
result.errorMessage='Bitte geben Sie einen Kommentar ein.';
}]]></imixs:value>
</imixs:item>
</bpmn2:extensionElements>
<bpmn2:documentation id="Documentation_13"><![CDATA[Mahnlauf abbrechen]]></bpmn2:documentation>
<bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>
<bpmn2:outputSet id="OutputSet_1" name="Output Set 2"/>
</bpmn2:intermediateCatchEvent>
<bpmn2:sequenceFlow id="SequenceFlow_3" sourceRef="Task_1" targetRef="IntermediateCatchEvent_7"/>
<bpmn2:sequenceFlow id="SequenceFlow_5" sourceRef="IntermediateCatchEvent_7" targetRef="Task_3"/>
<bpmn2:sequenceFlow id="SequenceFlow_13" sourceRef="Task_3" targetRef="EndEvent_3"/>
<bpmn2:association id="Association_2" sourceRef="DataObject_1" targetRef="Task_1"/>
</bpmn2:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1" name="Default Process Diagram">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1">
<bpmndi:BPMNShape id="BPMNShape_Participant_1" bpmnElement="Participant_1" isHorizontal="true">
<dc:Bounds height="361.0" width="1181.0" x="100.0" y="150.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_29" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="51.0" width="14.0" x="106.0" y="305.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_Lane_1" bpmnElement="Lane_1" isHorizontal="true">
<dc:Bounds height="361.0" width="1151.0" x="130.0" y="150.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_37" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="69.0" width="14.0" x="136.0" y="296.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_1" bpmnElement="StartEvent_1">
<dc:Bounds height="36.0" width="36.0" x="180.0" y="301.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_1" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="14.0" width="25.0" x="185.0" y="337.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_Task_1" bpmnElement="Task_1">
<dc:Bounds height="50.0" width="110.0" x="290.0" y="294.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_4" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="14.0" width="55.0" x="317.0" y="312.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_EndEvent_2" bpmnElement="EndEvent_3">
<dc:Bounds height="36.0" width="36.0" x="920.0" y="301.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_85" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="14.0" width="22.0" x="927.0" y="337.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_Task_2" bpmnElement="Task_2">
<dc:Bounds height="50.0" width="110.0" x="762.0" y="294.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_5" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="14.0" width="55.0" x="789.0" y="312.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_6" bpmnElement="IntermediateCatchEvent_6">
<dc:Bounds height="36.0" width="36.0" x="799.0" y="216.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_10" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="14.0" width="56.0" x="789.0" y="252.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_3" bpmnElement="IntermediateCatchEvent_3">
<dc:Bounds height="36.0" width="36.0" x="327.0" y="392.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_21" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="14.0" width="56.0" x="317.0" y="428.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_DataObject_1" bpmnElement="DataObject_1">
<dc:Bounds height="50.0" width="36.0" x="290.0" y="188.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_13">
<dc:Bounds height="14.0" width="28.0" x="294.0" y="238.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_1" bpmnElement="IntermediateCatchEvent_1">
<dc:Bounds height="36.0" width="36.0" x="430.0" y="301.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_2" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="14.0" width="45.0" x="426.0" y="337.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_1" bpmnElement="ExclusiveGateway_1" isMarkerVisible="true">
<dc:Bounds height="50.0" width="50.0" x="562.0" y="294.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_18" labelStyle="BPMNLabelStyle_1"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_2" bpmnElement="IntermediateCatchEvent_2">
<dc:Bounds height="36.0" width="36.0" x="632.0" y="237.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_19" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="14.0" width="49.0" x="626.0" y="273.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_4" bpmnElement="IntermediateCatchEvent_4">
<dc:Bounds height="36.0" width="36.0" x="632.0" y="350.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_20" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="14.0" width="49.0" x="626.0" y="386.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_2" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
<dc:Bounds height="50.0" width="50.0" x="687.0" y="294.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_30" labelStyle="BPMNLabelStyle_1"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_Message_1" bpmnElement="Message_2">
<dc:Bounds height="20.0" width="30.0" x="119.0" y="59.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_35">
<dc:Bounds height="14.0" width="70.0" x="99.0" y="79.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_Message_4" bpmnElement="Message_7">
<dc:Bounds height="20.0" width="30.0" x="220.0" y="59.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_40">
<dc:Bounds height="14.0" width="64.0" x="203.0" y="79.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_5" bpmnElement="IntermediateCatchEvent_5">
<dc:Bounds height="36.0" width="36.0" x="240.0" y="392.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_3">
<dc:Bounds height="14.0" width="44.0" x="236.0" y="428.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_Task_3" bpmnElement="Task_3">
<dc:Bounds height="50.0" width="110.0" x="935.0" y="410.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_7">
<dc:Bounds height="14.0" width="46.0" x="967.0" y="428.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_7" bpmnElement="IntermediateCatchEvent_7">
<dc:Bounds height="36.0" width="36.0" x="632.0" y="417.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_8">
<dc:Bounds height="14.0" width="57.0" x="622.0" y="453.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_10" sourceElement="BPMNShape_Task_2" targetElement="BPMNShape_EndEvent_2">
<di:waypoint xsi:type="dc:Point" x="872.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="896.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="920.0" y="319.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_26"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="BPMNShape_IntermediateCatchEvent_6" targetElement="BPMNShape_Task_2">
<di:waypoint xsi:type="dc:Point" x="817.0" y="252.0"/>
<di:waypoint xsi:type="dc:Point" x="817.0" y="273.0"/>
<di:waypoint xsi:type="dc:Point" x="817.0" y="294.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_14"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_14" sourceElement="BPMNShape_IntermediateCatchEvent_3" targetElement="BPMNShape_Task_1">
<di:waypoint xsi:type="dc:Point" x="345.0" y="392.0"/>
<di:waypoint xsi:type="dc:Point" x="345.0" y="368.0"/>
<di:waypoint xsi:type="dc:Point" x="345.0" y="344.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_22"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="BPMNShape_1" targetElement="BPMNShape_Task_1">
<di:waypoint xsi:type="dc:Point" x="216.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="253.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="290.0" y="319.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_11"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_Association_2" bpmnElement="Association_2" sourceElement="BPMNShape_DataObject_1" targetElement="BPMNShape_Task_1">
<di:waypoint xsi:type="dc:Point" x="326.0" y="213.0"/>
<di:waypoint xsi:type="dc:Point" x="345.0" y="213.0"/>
<di:waypoint xsi:type="dc:Point" x="345.0" y="294.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_17"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="BPMNShape_Task_1" targetElement="BPMNShape_IntermediateCatchEvent_1">
<di:waypoint xsi:type="dc:Point" x="400.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="415.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="430.0" y="319.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_16"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="SequenceFlow_7" sourceElement="BPMNShape_IntermediateCatchEvent_1" targetElement="BPMNShape_ExclusiveGateway_1">
<di:waypoint xsi:type="dc:Point" x="466.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="514.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="562.0" y="319.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_23"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="BPMNShape_ExclusiveGateway_1" targetElement="BPMNShape_IntermediateCatchEvent_2">
<di:waypoint xsi:type="dc:Point" x="587.0" y="294.0"/>
<di:waypoint xsi:type="dc:Point" x="587.0" y="255.0"/>
<di:waypoint xsi:type="dc:Point" x="632.0" y="255.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_25"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_9" sourceElement="BPMNShape_ExclusiveGateway_1" targetElement="BPMNShape_IntermediateCatchEvent_4">
<di:waypoint xsi:type="dc:Point" x="587.0" y="344.0"/>
<di:waypoint xsi:type="dc:Point" x="587.0" y="368.0"/>
<di:waypoint xsi:type="dc:Point" x="632.0" y="368.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_28"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_11" bpmnElement="SequenceFlow_11" sourceElement="BPMNShape_IntermediateCatchEvent_2" targetElement="BPMNShape_ExclusiveGateway_2">
<di:waypoint xsi:type="dc:Point" x="668.0" y="255.0"/>
<di:waypoint xsi:type="dc:Point" x="712.0" y="255.0"/>
<di:waypoint xsi:type="dc:Point" x="712.0" y="294.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_32"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_12" sourceElement="BPMNShape_IntermediateCatchEvent_4" targetElement="BPMNShape_ExclusiveGateway_2">
<di:waypoint xsi:type="dc:Point" x="668.0" y="368.0"/>
<di:waypoint xsi:type="dc:Point" x="712.0" y="368.0"/>
<di:waypoint xsi:type="dc:Point" x="712.0" y="344.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_33"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_15" sourceElement="BPMNShape_ExclusiveGateway_2" targetElement="BPMNShape_Task_2">
<di:waypoint xsi:type="dc:Point" x="737.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="749.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="762.0" y="319.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_34"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="BPMNShape_IntermediateCatchEvent_5" targetElement="BPMNShape_Task_1">
<di:waypoint xsi:type="dc:Point" x="258.0" y="392.0"/>
<di:waypoint xsi:type="dc:Point" x="258.0" y="327.0"/>
<di:waypoint xsi:type="dc:Point" x="290.0" y="327.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_6"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_3" sourceElement="BPMNShape_Task_1" targetElement="BPMNShape_IntermediateCatchEvent_7">
<di:waypoint xsi:type="dc:Point" x="363.0" y="344.0"/>
<di:waypoint xsi:type="dc:Point" x="363.0" y="435.0"/>
<di:waypoint xsi:type="dc:Point" x="632.0" y="435.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_9"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="BPMNShape_IntermediateCatchEvent_7" targetElement="BPMNShape_Task_3">
<di:waypoint xsi:type="dc:Point" x="668.0" y="435.0"/>
<di:waypoint xsi:type="dc:Point" x="801.0" y="435.0"/>
<di:waypoint xsi:type="dc:Point" x="935.0" y="435.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_12"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_13" sourceElement="BPMNShape_Task_3" targetElement="BPMNShape_EndEvent_2">
<di:waypoint xsi:type="dc:Point" x="990.0" y="410.0"/>
<di:waypoint xsi:type="dc:Point" x="990.0" y="319.0"/>
<di:waypoint xsi:type="dc:Point" x="956.0" y="319.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_15"/>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
<bpmndi:BPMNLabelStyle id="BPMNLabelStyle_1">
<dc:Font name="arial" size="9.0"/>
</bpmndi:BPMNLabelStyle>
</bpmndi:BPMNDiagram>
</bpmn2:definitions>

View file

@ -1569,6 +1569,7 @@ Betrag: <itemvalue>invoice.total</itemvalue> <itemvalue>invoice.currency</itemva
<imixs:item name="txtactivityresult" type="xs:string"> <imixs:item name="txtactivityresult" type="xs:string">
<imixs:value><![CDATA[<dunning name="period">7</dunning> <imixs:value><![CDATA[<dunning name="period">7</dunning>
<item name="workflowstatus_en">1. Dunning</item> <item name="workflowstatus_en">1. Dunning</item>
]]></imixs:value> ]]></imixs:value>
</imixs:item> </imixs:item>
<imixs:item name="txtname" type="xs:string"> <imixs:item name="txtname" type="xs:string">