diff --git a/R/postings/buchungen_mod.R b/R/postings/buchungen_mod.R
index b21fca1..72e4ba7 100755
--- a/R/postings/buchungen_mod.R
+++ b/R/postings/buchungen_mod.R
@@ -1,9 +1,17 @@
-# module_buchungen.R
+##
+## Datum : 2026-04-29_08-17
+## Name : Christian Oswald
+## Datei : buchungen_mod.R
+## Projekt : gemfin-shiny
+## Kommentar: Modul für die Anzeige der Buchungen - praktisch Hauptformular
+##
+## * UI ----
buchungenUI <- function(id) {
ns <- NS(id)
tagList(
useShinyjs(),
+ ## ** Tabelle ----
h3("Hauptbuchungen"),
fluidRow(
column(8, reactableOutput(ns("buchungen_table")),
@@ -13,21 +21,23 @@ buchungenUI <- function(id) {
),
hr(),
+ ## ** Gegenbuchungen ----
h3("Details / Gegenbuchungen"),
uiOutput(ns("details_table")) ,
-
-
- ),
-
+ ),
+ ## ** Eingabefelder ----
column(4,
selectizeInput(ns("contact"), label = "Kontakt", choices = get_contact_choices(conn),
selected = NA, width = "100%"),
textAreaInput(ns("note"), label = "Verwendungszweck", value = NA, width = "100%"),
+
+ ## ** Anhänge ----
h3("Dateien"),
uiOutput(ns("attachments_ui")),
fileInput(ns("anhang"), NULL, multiple = TRUE,
accept = c(".pdf", ".jpg", ".png", ".xlsx", ".docx"),
width = "100%"),
+ ## ** Buttons ----
div(
style = "display: flex; flex-direction: column; gap: 10px; align-items: flex-start;",
@@ -44,12 +54,7 @@ buchungenUI <- function(id) {
size = "sm", style = "material-flat", color = "success", block = TRUE, icon = icon("floppy-disk")),
)
)
- ),
-
-
-
-
-
+ )
)
}
@@ -57,19 +62,18 @@ buchungenServer <- function(id, conn, r_global) {
moduleServer(id, function(input, output, session) {
ns <- session$ns
- # ── Reactive Variablen ----
+ ## ** Reactive Variablen ----
postings_data <- reactiveVal(read_buch_tabelle(conn))
sel_details <- reactiveVal(NULL)
- selected_trans_id <- reactiveVal(NULL)
+ selected_entry_id <- reactiveVal(NULL)
reset_trigger <- reactiveVal(NULL)
current_main_idx <- reactiveVal(NULL)
- # ── Filter ----
+ ## ** Filter ----
aktiver_filter <- reactive(r_global$buchungen_filter)
-
gefilterte_daten <- reactive({
d <- postings_data()
f <- aktiver_filter()
@@ -84,8 +88,7 @@ buchungenServer <- function(id, conn, r_global) {
else d
})
-
- # ── Haupttabelle rendern ----
+ ## ** Haupttabelle rendern ----
output$buchungen_table <- renderReactable({
reset_trigger()
f_reactable(
@@ -96,15 +99,24 @@ buchungenServer <- function(id, conn, r_global) {
filterable = TRUE,
)
})
-
+ ## ** Auswahl anzeigen ----
sel <- reactive(getReactableState("buchungen_table", "selected"))
observeEvent(sel(), ignoreInit = T, {
+ idwert <- gefilterte_daten()$id[sel()]
+ record <- read_posting(conn, idwert)
+ record_entry <- read_entry(conn, record$entry_id)
+ updateSelectizeInput(session, "contact", selected = record_entry$contact_id)
+ updateTextAreaInput(session, "note", value = record_entry$purpose)
+
+
+
+
output$details_table <- renderUI({
req(sel())
- # Daten laden
+ ## *** Daten-Gegenbuchungen laden ----
df <- read_buch_entries(conn, gefilterte_daten()$entry_id[sel()])
sel_details(df)
-
+ ## *** Gegenbuchungen rendern ----
rows <- lapply(1:nrow(df), function(ind) {
fluidRow(class = "details-row",
# HIER: Index an die ID hängen!
@@ -121,14 +133,11 @@ buchungenServer <- function(id, conn, r_global) {
})
tagList(rows)
})
-
-
})
observeEvent(input$save_trans, {
req(sel_details())
n_rows <- nrow(sel_details())
-
# Alle Zeilen in einer Liste sammeln
all_records <- lapply(1:n_rows, function(ind) {
data.frame(
@@ -140,10 +149,19 @@ buchungenServer <- function(id, conn, r_global) {
stringsAsFactors = FALSE
)
})
-
# Zu einem großen Dataframe zusammenfügen
final_df <- do.call(rbind, all_records)
- browser()
+
+
+
+
+
+
+
+
+
+
+
# Datenbank-Update-Logik
tryCatch({
@@ -166,19 +184,20 @@ buchungenServer <- function(id, conn, r_global) {
## ** Anhänge ----
output$attachments_ui <- renderUI({
req(sel_details())
- entry_id <-
- dbxSelect(conn, paste0("SELECT entry_id FROM postings WHERE id=",
- sel_details()$id[1])) %>% pull
- att <- dbxSelect(conn, paste0(
- "SELECT * FROM attachments WHERE entry_id = ", entry_id
- ))
+ selected_entry_id(dbxSelect(conn, paste0("SELECT entry_id FROM postings WHERE id=",
+ sel_details()$id[1])) %>%
+ pull )
+ print(selected_entry_id())
+ att <- dbxSelect(conn, paste0("SELECT * FROM attachments WHERE entry_id = ", selected_entry_id() ))
if (nrow(att) == 0) return(p("Keine Anhänge vorhanden."))
-
+ ## *** Anhänge anzeigen ----
tagList(lapply(seq_len(nrow(att)), function(i) {
ext <- tools::file_ext(att$original_name[i])
- filename <- paste0("attachments/", att$id[i], ".", ext)
+ filename <- paste0("www/documents/", att$id[i], ".", ext)
+ ## *** Anhang öffnen ----
observeEvent(input[[paste0("open_att_", att$id[i])]], {
+ browser()
showModal(modalDialog(
tags$iframe(src = filename, width = "100%", height = "600px",
style = "border:none;"),
@@ -189,6 +208,7 @@ buchungenServer <- function(id, conn, r_global) {
))
}, ignoreInit = TRUE, once = FALSE)
+ ## *** Buttons Anhänge ----
div(
actionLink(ns(paste0("open_att_", att$id[i])), att$original_name[i]),
actionLink(ns(paste0("del_att_", att$id[i])), "✕",
diff --git a/db/data_transfer.R b/db/data_transfer.R
index d2bb307..0f310c3 100755
--- a/db/data_transfer.R
+++ b/db/data_transfer.R
@@ -450,7 +450,7 @@ if(ok){
anz <- length(eintraege)
for(ind in 1:length(eintraege)){
if( exists(paste0(zielpfad, eintraege[ind])) ){
- cat(ind, " von ", anz, "\n")
+ cat(ind, " von ", anz, "\n")
file.copy(
from = paste0(pfad, vorhanden[ind]),
to = "~/Documents/workspace/gemfin-shiny/www/documents/")
@@ -498,3 +498,27 @@ dbDisconnect(con_f)
print("Migration finished.")
+
+## * Dateien umbenennen ----
+library("tools")
+atts <- dbReadTable(conn, "attachments")
+sum(duplicated(atts$id)) == 0
+pfad <- "www/attachments/"
+for( ind in 1:nrow(atts)){
+ datei <- atts$original_name[ind]
+ if( file.exists(paste0(pfad, datei)) ){
+ # print(ind)
+ ext <- file_ext(datei)
+ idwert <- atts$id[ind]
+ if(is.na(idwert)) break
+ name_neu <- paste0(idwert,".",ext)
+ print(name_neu)
+ file.copy(from = paste0(pfad, datei), to=paste0("www/documents/", name_neu), overwrite = T)
+ }
+}
+atts %>%
+ filter(id == 1379)
+
+which( "1379.pdf" %in% atts$original_name)
+
+
diff --git a/global.R b/global.R
index cd10111..60d743f 100755
--- a/global.R
+++ b/global.R
@@ -12,8 +12,8 @@ library("conflicted")
library("R.utils")
library("shinyjs")
-conflicts_prefer(dplyr::select)
-conflicts_prefer(dplyr::filter)
+conflicts_prefer()
+conflicts_prefer()
conn <- dbConnect(RSQLite::SQLite(), "db/development.sqlite")
@@ -21,3 +21,25 @@ sourceDirectory("R/")
source("~/R/rfunc/fehler_add.R")
+conflicts_prefer(
+ ggplot2::`%+%`,
+ shinyjs::alert,
+ shinydashboard::box,
+ rJava::clone,
+ dplyr::select,
+ dplyr::filter,
+ tidyr::extract,
+ shinyjs::hidden,
+ dplyr::ident,
+ dplyr::lag,
+ shiny::printStackTrace,
+ shinyjs::removeClass,
+ shinyjs::reset,
+ shiny::runExample,
+ shiny::setProgress,
+ shinyjs::show,
+ dplyr::sql,
+ shiny::validate,
+ .quiet = TRUE
+)
+
diff --git a/www/documents/1.pdf b/www/documents/1.pdf
deleted file mode 100644
index 15ef3a6..0000000
Binary files a/www/documents/1.pdf and /dev/null differ
diff --git a/www/documents/592.pdf b/www/documents/1000.pdf
similarity index 100%
rename from www/documents/592.pdf
rename to www/documents/1000.pdf
diff --git a/www/documents/579.pdf b/www/documents/1001.pdf
similarity index 100%
rename from www/documents/579.pdf
rename to www/documents/1001.pdf
diff --git a/www/documents/541.pdf b/www/documents/1002.pdf
similarity index 100%
rename from www/documents/541.pdf
rename to www/documents/1002.pdf
diff --git a/www/documents/636.pdf b/www/documents/1003.pdf
similarity index 100%
rename from www/documents/636.pdf
rename to www/documents/1003.pdf
diff --git a/www/documents/567.pdf b/www/documents/1004.pdf
similarity index 100%
rename from www/documents/567.pdf
rename to www/documents/1004.pdf
diff --git a/www/documents/550.pdf b/www/documents/1005.pdf
similarity index 100%
rename from www/documents/550.pdf
rename to www/documents/1005.pdf
diff --git a/www/documents/553.pdf b/www/documents/1006.pdf
similarity index 100%
rename from www/documents/553.pdf
rename to www/documents/1006.pdf
diff --git a/www/documents/554.pdf b/www/documents/1007.pdf
similarity index 100%
rename from www/documents/554.pdf
rename to www/documents/1007.pdf
diff --git a/www/documents/552.pdf b/www/documents/1008.pdf
similarity index 100%
rename from www/documents/552.pdf
rename to www/documents/1008.pdf
diff --git a/www/documents/555.pdf b/www/documents/1009.pdf
similarity index 100%
rename from www/documents/555.pdf
rename to www/documents/1009.pdf
diff --git a/www/documents/569.pdf b/www/documents/1010.pdf
similarity index 100%
rename from www/documents/569.pdf
rename to www/documents/1010.pdf
diff --git a/www/documents/572.pdf b/www/documents/1011.pdf
similarity index 100%
rename from www/documents/572.pdf
rename to www/documents/1011.pdf
diff --git a/www/documents/574.pdf b/www/documents/1012.pdf
similarity index 100%
rename from www/documents/574.pdf
rename to www/documents/1012.pdf
diff --git a/www/documents/578.pdf b/www/documents/1013.pdf
similarity index 100%
rename from www/documents/578.pdf
rename to www/documents/1013.pdf
diff --git a/www/documents/575.pdf b/www/documents/1014.pdf
similarity index 100%
rename from www/documents/575.pdf
rename to www/documents/1014.pdf
diff --git a/www/documents/576.pdf b/www/documents/1015.pdf
similarity index 100%
rename from www/documents/576.pdf
rename to www/documents/1015.pdf
diff --git a/www/documents/577.pdf b/www/documents/1016.pdf
similarity index 100%
rename from www/documents/577.pdf
rename to www/documents/1016.pdf
diff --git a/www/documents/581.pdf b/www/documents/1017.pdf
similarity index 100%
rename from www/documents/581.pdf
rename to www/documents/1017.pdf
diff --git a/www/documents/596.pdf b/www/documents/1018.pdf
similarity index 100%
rename from www/documents/596.pdf
rename to www/documents/1018.pdf
diff --git a/www/documents/590.pdf b/www/documents/1019.pdf
similarity index 100%
rename from www/documents/590.pdf
rename to www/documents/1019.pdf
diff --git a/www/documents/585.pdf b/www/documents/1020.pdf
similarity index 100%
rename from www/documents/585.pdf
rename to www/documents/1020.pdf
diff --git a/www/documents/586.pdf b/www/documents/1021.pdf
similarity index 100%
rename from www/documents/586.pdf
rename to www/documents/1021.pdf
diff --git a/www/documents/587.pdf b/www/documents/1022.pdf
similarity index 100%
rename from www/documents/587.pdf
rename to www/documents/1022.pdf
diff --git a/www/documents/588.pdf b/www/documents/1023.pdf
similarity index 100%
rename from www/documents/588.pdf
rename to www/documents/1023.pdf
diff --git a/www/documents/591.pdf b/www/documents/1024.pdf
similarity index 100%
rename from www/documents/591.pdf
rename to www/documents/1024.pdf
diff --git a/www/documents/584.pdf b/www/documents/1025.pdf
similarity index 100%
rename from www/documents/584.pdf
rename to www/documents/1025.pdf
diff --git a/www/documents/583.pdf b/www/documents/1026.pdf
similarity index 100%
rename from www/documents/583.pdf
rename to www/documents/1026.pdf
diff --git a/www/documents/589.pdf b/www/documents/1027.pdf
similarity index 100%
rename from www/documents/589.pdf
rename to www/documents/1027.pdf
diff --git a/www/documents/595.pdf b/www/documents/1029.pdf
similarity index 100%
rename from www/documents/595.pdf
rename to www/documents/1029.pdf
diff --git a/www/documents/605.pdf b/www/documents/1030.pdf
similarity index 100%
rename from www/documents/605.pdf
rename to www/documents/1030.pdf
diff --git a/www/documents/637.pdf b/www/documents/1031.pdf
similarity index 100%
rename from www/documents/637.pdf
rename to www/documents/1031.pdf
diff --git a/www/documents/604.pdf b/www/documents/1032.pdf
similarity index 100%
rename from www/documents/604.pdf
rename to www/documents/1032.pdf
diff --git a/www/documents/600.pdf b/www/documents/1033.pdf
similarity index 100%
rename from www/documents/600.pdf
rename to www/documents/1033.pdf
diff --git a/www/documents/602.pdf b/www/documents/1034.pdf
similarity index 100%
rename from www/documents/602.pdf
rename to www/documents/1034.pdf
diff --git a/www/documents/601.pdf b/www/documents/1035.pdf
similarity index 100%
rename from www/documents/601.pdf
rename to www/documents/1035.pdf
diff --git a/www/documents/603.pdf b/www/documents/1036.pdf
similarity index 100%
rename from www/documents/603.pdf
rename to www/documents/1036.pdf
diff --git a/www/documents/609.pdf b/www/documents/1037.pdf
similarity index 100%
rename from www/documents/609.pdf
rename to www/documents/1037.pdf
diff --git a/www/documents/610.pdf b/www/documents/1038.pdf
similarity index 100%
rename from www/documents/610.pdf
rename to www/documents/1038.pdf
diff --git a/www/documents/606.pdf b/www/documents/1039.pdf
similarity index 100%
rename from www/documents/606.pdf
rename to www/documents/1039.pdf
diff --git a/www/documents/607.pdf b/www/documents/1040.pdf
similarity index 100%
rename from www/documents/607.pdf
rename to www/documents/1040.pdf
diff --git a/www/documents/608.pdf b/www/documents/1041.pdf
similarity index 100%
rename from www/documents/608.pdf
rename to www/documents/1041.pdf
diff --git a/www/documents/611.pdf b/www/documents/1042.pdf
similarity index 100%
rename from www/documents/611.pdf
rename to www/documents/1042.pdf
diff --git a/www/documents/612.pdf b/www/documents/1043.pdf
similarity index 100%
rename from www/documents/612.pdf
rename to www/documents/1043.pdf
diff --git a/www/documents/613.pdf b/www/documents/1044.pdf
similarity index 100%
rename from www/documents/613.pdf
rename to www/documents/1044.pdf
diff --git a/www/documents/614.pdf b/www/documents/1045.pdf
similarity index 100%
rename from www/documents/614.pdf
rename to www/documents/1045.pdf
diff --git a/www/documents/615.pdf b/www/documents/1046.pdf
similarity index 100%
rename from www/documents/615.pdf
rename to www/documents/1046.pdf
diff --git a/www/documents/616.pdf b/www/documents/1047.pdf
similarity index 100%
rename from www/documents/616.pdf
rename to www/documents/1047.pdf
diff --git a/www/documents/638.pdf b/www/documents/1048.pdf
similarity index 100%
rename from www/documents/638.pdf
rename to www/documents/1048.pdf
diff --git a/www/documents/667.pdf b/www/documents/1049.pdf
similarity index 100%
rename from www/documents/667.pdf
rename to www/documents/1049.pdf
diff --git a/www/documents/621.pdf b/www/documents/1050.pdf
similarity index 100%
rename from www/documents/621.pdf
rename to www/documents/1050.pdf
diff --git a/www/documents/625.pdf b/www/documents/1051.pdf
similarity index 100%
rename from www/documents/625.pdf
rename to www/documents/1051.pdf
diff --git a/www/documents/626.pdf b/www/documents/1052.pdf
similarity index 100%
rename from www/documents/626.pdf
rename to www/documents/1052.pdf
diff --git a/www/documents/627.pdf b/www/documents/1053.pdf
similarity index 100%
rename from www/documents/627.pdf
rename to www/documents/1053.pdf
diff --git a/www/documents/628.pdf b/www/documents/1054.pdf
similarity index 100%
rename from www/documents/628.pdf
rename to www/documents/1054.pdf
diff --git a/www/documents/629.pdf b/www/documents/1055.pdf
similarity index 100%
rename from www/documents/629.pdf
rename to www/documents/1055.pdf
diff --git a/www/documents/630.pdf b/www/documents/1056.pdf
similarity index 100%
rename from www/documents/630.pdf
rename to www/documents/1056.pdf
diff --git a/www/documents/655.pdf b/www/documents/1060.pdf
similarity index 100%
rename from www/documents/655.pdf
rename to www/documents/1060.pdf
diff --git a/www/documents/657.pdf b/www/documents/1062.pdf
similarity index 100%
rename from www/documents/657.pdf
rename to www/documents/1062.pdf
diff --git a/www/documents/653.pdf b/www/documents/1063.pdf
similarity index 100%
rename from www/documents/653.pdf
rename to www/documents/1063.pdf
diff --git a/www/documents/631.pdf b/www/documents/1064.pdf
similarity index 100%
rename from www/documents/631.pdf
rename to www/documents/1064.pdf
diff --git a/www/documents/632.pdf b/www/documents/1065.pdf
similarity index 100%
rename from www/documents/632.pdf
rename to www/documents/1065.pdf
diff --git a/www/documents/677.pdf b/www/documents/1066.pdf
similarity index 100%
rename from www/documents/677.pdf
rename to www/documents/1066.pdf
diff --git a/www/documents/647.pdf b/www/documents/1067.pdf
similarity index 100%
rename from www/documents/647.pdf
rename to www/documents/1067.pdf
diff --git a/www/documents/648.pdf b/www/documents/1068.pdf
similarity index 100%
rename from www/documents/648.pdf
rename to www/documents/1068.pdf
diff --git a/www/documents/639.pdf b/www/documents/1070.pdf
similarity index 100%
rename from www/documents/639.pdf
rename to www/documents/1070.pdf
diff --git a/www/documents/640.pdf b/www/documents/1071.pdf
similarity index 100%
rename from www/documents/640.pdf
rename to www/documents/1071.pdf
diff --git a/www/documents/641.pdf b/www/documents/1072.pdf
similarity index 100%
rename from www/documents/641.pdf
rename to www/documents/1072.pdf
diff --git a/www/documents/642.pdf b/www/documents/1073.pdf
similarity index 100%
rename from www/documents/642.pdf
rename to www/documents/1073.pdf
diff --git a/www/documents/643.pdf b/www/documents/1074.pdf
similarity index 100%
rename from www/documents/643.pdf
rename to www/documents/1074.pdf
diff --git a/www/documents/644.pdf b/www/documents/1075.pdf
similarity index 100%
rename from www/documents/644.pdf
rename to www/documents/1075.pdf
diff --git a/www/documents/646.pdf b/www/documents/1076.pdf
similarity index 100%
rename from www/documents/646.pdf
rename to www/documents/1076.pdf
diff --git a/www/documents/668.pdf b/www/documents/1077.pdf
similarity index 100%
rename from www/documents/668.pdf
rename to www/documents/1077.pdf
diff --git a/www/documents/670.pdf b/www/documents/1078.pdf
similarity index 100%
rename from www/documents/670.pdf
rename to www/documents/1078.pdf
diff --git a/www/documents/665.pdf b/www/documents/1079.pdf
similarity index 100%
rename from www/documents/665.pdf
rename to www/documents/1079.pdf
diff --git a/www/documents/669.pdf b/www/documents/1080.pdf
similarity index 100%
rename from www/documents/669.pdf
rename to www/documents/1080.pdf
diff --git a/www/documents/662.pdf b/www/documents/1081.pdf
similarity index 100%
rename from www/documents/662.pdf
rename to www/documents/1081.pdf
diff --git a/www/documents/659.pdf b/www/documents/1082.pdf
similarity index 100%
rename from www/documents/659.pdf
rename to www/documents/1082.pdf
diff --git a/www/documents/660.pdf b/www/documents/1083.pdf
similarity index 100%
rename from www/documents/660.pdf
rename to www/documents/1083.pdf
diff --git a/www/documents/661.pdf b/www/documents/1084.pdf
similarity index 100%
rename from www/documents/661.pdf
rename to www/documents/1084.pdf
diff --git a/www/documents/671.pdf b/www/documents/1085.pdf
similarity index 100%
rename from www/documents/671.pdf
rename to www/documents/1085.pdf
diff --git a/www/documents/666.pdf b/www/documents/1086.pdf
similarity index 100%
rename from www/documents/666.pdf
rename to www/documents/1086.pdf
diff --git a/www/documents/676.pdf b/www/documents/1087.pdf
similarity index 100%
rename from www/documents/676.pdf
rename to www/documents/1087.pdf
diff --git a/www/documents/673.pdf b/www/documents/1088.pdf
similarity index 100%
rename from www/documents/673.pdf
rename to www/documents/1088.pdf
diff --git a/www/documents/674.pdf b/www/documents/1089.pdf
similarity index 100%
rename from www/documents/674.pdf
rename to www/documents/1089.pdf
diff --git a/www/documents/675.pdf b/www/documents/1090.pdf
similarity index 100%
rename from www/documents/675.pdf
rename to www/documents/1090.pdf
diff --git a/www/documents/1091.pdf b/www/documents/1091.pdf
new file mode 100644
index 0000000..6f05a6c
Binary files /dev/null and b/www/documents/1091.pdf differ
diff --git a/www/documents/1092.pdf b/www/documents/1092.pdf
new file mode 100644
index 0000000..35d9b1e
Binary files /dev/null and b/www/documents/1092.pdf differ
diff --git a/www/documents/678.pdf b/www/documents/1093.pdf
similarity index 100%
rename from www/documents/678.pdf
rename to www/documents/1093.pdf
diff --git a/www/documents/679.pdf b/www/documents/1094.pdf
similarity index 100%
rename from www/documents/679.pdf
rename to www/documents/1094.pdf
diff --git a/www/documents/1096.pdf b/www/documents/1096.pdf
new file mode 100644
index 0000000..91105ee
Binary files /dev/null and b/www/documents/1096.pdf differ
diff --git a/www/documents/685.pdf b/www/documents/1097.pdf
similarity index 100%
rename from www/documents/685.pdf
rename to www/documents/1097.pdf
diff --git a/www/documents/684.pdf b/www/documents/1098.pdf
similarity index 100%
rename from www/documents/684.pdf
rename to www/documents/1098.pdf
diff --git a/www/documents/1099.pdf b/www/documents/1099.pdf
new file mode 100644
index 0000000..c397fe0
Binary files /dev/null and b/www/documents/1099.pdf differ
diff --git a/www/documents/11.pdf b/www/documents/11.pdf
deleted file mode 100644
index 112f1b6..0000000
Binary files a/www/documents/11.pdf and /dev/null differ
diff --git a/www/documents/1100.pdf b/www/documents/1100.pdf
new file mode 100644
index 0000000..0766cc0
Binary files /dev/null and b/www/documents/1100.pdf differ
diff --git a/www/documents/1101.pdf b/www/documents/1101.pdf
new file mode 100644
index 0000000..fb48595
Binary files /dev/null and b/www/documents/1101.pdf differ
diff --git a/www/documents/1102.pdf b/www/documents/1102.pdf
new file mode 100644
index 0000000..dfdba49
Binary files /dev/null and b/www/documents/1102.pdf differ
diff --git a/www/documents/1103.pdf b/www/documents/1103.pdf
new file mode 100644
index 0000000..d751df1
Binary files /dev/null and b/www/documents/1103.pdf differ
diff --git a/www/documents/1104.pdf b/www/documents/1104.pdf
new file mode 100644
index 0000000..ad33679
Binary files /dev/null and b/www/documents/1104.pdf differ
diff --git a/www/documents/1105.pdf b/www/documents/1105.pdf
new file mode 100644
index 0000000..84cd375
Binary files /dev/null and b/www/documents/1105.pdf differ
diff --git a/www/documents/1106.pdf b/www/documents/1106.pdf
new file mode 100644
index 0000000..2f1f0d9
Binary files /dev/null and b/www/documents/1106.pdf differ
diff --git a/www/documents/1107.pdf b/www/documents/1107.pdf
new file mode 100644
index 0000000..8d5b6b2
Binary files /dev/null and b/www/documents/1107.pdf differ
diff --git a/www/documents/1108.pdf b/www/documents/1108.pdf
new file mode 100644
index 0000000..2779e5f
Binary files /dev/null and b/www/documents/1108.pdf differ
diff --git a/www/documents/1109.pdf b/www/documents/1109.pdf
new file mode 100644
index 0000000..d79ad80
Binary files /dev/null and b/www/documents/1109.pdf differ
diff --git a/www/documents/1110.pdf b/www/documents/1110.pdf
new file mode 100644
index 0000000..f047e61
Binary files /dev/null and b/www/documents/1110.pdf differ
diff --git a/www/documents/1111.pdf b/www/documents/1111.pdf
new file mode 100644
index 0000000..9c4e1c7
Binary files /dev/null and b/www/documents/1111.pdf differ
diff --git a/www/documents/485.pdf b/www/documents/1112.pdf
similarity index 100%
rename from www/documents/485.pdf
rename to www/documents/1112.pdf
diff --git a/www/documents/484.pdf b/www/documents/1113.pdf
similarity index 100%
rename from www/documents/484.pdf
rename to www/documents/1113.pdf
diff --git a/www/documents/542.pdf b/www/documents/1114.pdf
similarity index 100%
rename from www/documents/542.pdf
rename to www/documents/1114.pdf
diff --git a/www/documents/543.pdf b/www/documents/1115.pdf
similarity index 100%
rename from www/documents/543.pdf
rename to www/documents/1115.pdf
diff --git a/www/documents/544.pdf b/www/documents/1116.pdf
similarity index 100%
rename from www/documents/544.pdf
rename to www/documents/1116.pdf
diff --git a/www/documents/549.pdf b/www/documents/1117.pdf
similarity index 100%
rename from www/documents/549.pdf
rename to www/documents/1117.pdf
diff --git a/www/documents/546.pdf b/www/documents/1118.pdf
similarity index 100%
rename from www/documents/546.pdf
rename to www/documents/1118.pdf
diff --git a/www/documents/547.pdf b/www/documents/1119.pdf
similarity index 100%
rename from www/documents/547.pdf
rename to www/documents/1119.pdf
diff --git a/www/documents/624.pdf b/www/documents/1120.pdf
similarity index 100%
rename from www/documents/624.pdf
rename to www/documents/1120.pdf
diff --git a/www/documents/622.pdf b/www/documents/1121.pdf
similarity index 100%
rename from www/documents/622.pdf
rename to www/documents/1121.pdf
diff --git a/www/documents/623.pdf b/www/documents/1122.pdf
similarity index 100%
rename from www/documents/623.pdf
rename to www/documents/1122.pdf
diff --git a/www/documents/19780.pdf b/www/documents/1124.pdf
similarity index 100%
rename from www/documents/19780.pdf
rename to www/documents/1124.pdf
diff --git a/www/documents/19781.pdf b/www/documents/1125.pdf
similarity index 100%
rename from www/documents/19781.pdf
rename to www/documents/1125.pdf
diff --git a/www/documents/19782.pdf b/www/documents/1126.pdf
similarity index 100%
rename from www/documents/19782.pdf
rename to www/documents/1126.pdf
diff --git a/www/documents/651.pdf b/www/documents/1130.pdf
similarity index 100%
rename from www/documents/651.pdf
rename to www/documents/1130.pdf
diff --git a/www/documents/647771-4866178_144dpi_75%.pdf b/www/documents/1131.pdf
similarity index 100%
rename from www/documents/647771-4866178_144dpi_75%.pdf
rename to www/documents/1131.pdf
diff --git a/www/documents/647771-4881677.pdf b/www/documents/1132.pdf
similarity index 100%
rename from www/documents/647771-4881677.pdf
rename to www/documents/1132.pdf
diff --git a/www/documents/19832.pdf b/www/documents/1133.pdf
similarity index 100%
rename from www/documents/19832.pdf
rename to www/documents/1133.pdf
diff --git a/www/documents/19834.pdf b/www/documents/1135.pdf
similarity index 100%
rename from www/documents/19834.pdf
rename to www/documents/1135.pdf
diff --git a/www/documents/19831.pdf b/www/documents/1136.pdf
similarity index 100%
rename from www/documents/19831.pdf
rename to www/documents/1136.pdf
diff --git a/www/documents/19830.pdf b/www/documents/1137.pdf
similarity index 100%
rename from www/documents/19830.pdf
rename to www/documents/1137.pdf
diff --git a/www/documents/19829.pdf b/www/documents/1138.pdf
similarity index 100%
rename from www/documents/19829.pdf
rename to www/documents/1138.pdf
diff --git a/www/documents/Dokument_16102025081944_001.pdf b/www/documents/1139.pdf
similarity index 100%
rename from www/documents/Dokument_16102025081944_001.pdf
rename to www/documents/1139.pdf
diff --git a/www/documents/Dokument_25102025165124_001.pdf b/www/documents/1141.pdf
similarity index 100%
rename from www/documents/Dokument_25102025165124_001.pdf
rename to www/documents/1141.pdf
diff --git a/www/documents/Dokument_25102025165156_001.pdf b/www/documents/1142.pdf
similarity index 100%
rename from www/documents/Dokument_25102025165156_001.pdf
rename to www/documents/1142.pdf
diff --git a/www/documents/Dokument_25102025165317_001.pdf b/www/documents/1145.pdf
similarity index 100%
rename from www/documents/Dokument_25102025165317_001.pdf
rename to www/documents/1145.pdf
diff --git a/www/documents/Dokument_25102025165441_001.pdf b/www/documents/1149.pdf
similarity index 100%
rename from www/documents/Dokument_25102025165441_001.pdf
rename to www/documents/1149.pdf
diff --git a/www/documents/19806.pdf b/www/documents/1150.pdf
similarity index 100%
rename from www/documents/19806.pdf
rename to www/documents/1150.pdf
diff --git a/www/documents/4884490.pdf b/www/documents/1151.pdf
similarity index 100%
rename from www/documents/4884490.pdf
rename to www/documents/1151.pdf
diff --git a/www/documents/4885008.pdf b/www/documents/1154.pdf
similarity index 100%
rename from www/documents/4885008.pdf
rename to www/documents/1154.pdf
diff --git a/www/documents/4861326.pdf b/www/documents/1157.pdf
similarity index 100%
rename from www/documents/4861326.pdf
rename to www/documents/1157.pdf
diff --git a/www/documents/486331.pdf b/www/documents/1162.pdf
similarity index 100%
rename from www/documents/486331.pdf
rename to www/documents/1162.pdf
diff --git a/www/documents/2025-10_Entgeltbescheinigungen-MIN_199.pdf b/www/documents/1163.pdf
similarity index 100%
rename from www/documents/2025-10_Entgeltbescheinigungen-MIN_199.pdf
rename to www/documents/1163.pdf
diff --git a/www/documents/2025-10_Entgeltbescheinigungen-BUW_139.pdf b/www/documents/1165.pdf
similarity index 100%
rename from www/documents/2025-10_Entgeltbescheinigungen-BUW_139.pdf
rename to www/documents/1165.pdf
diff --git a/www/documents/2025-10_Entgeltbescheinigungen-BUW_186.pdf b/www/documents/1166.pdf
similarity index 100%
rename from www/documents/2025-10_Entgeltbescheinigungen-BUW_186.pdf
rename to www/documents/1166.pdf
diff --git a/www/documents/2025-10_Entgeltbescheinigungen-BUW_570.pdf b/www/documents/1167.pdf
similarity index 100%
rename from www/documents/2025-10_Entgeltbescheinigungen-BUW_570.pdf
rename to www/documents/1167.pdf
diff --git a/www/documents/Konto_0000608869-Auszug_2025_0002.pdf b/www/documents/1169.pdf
similarity index 100%
rename from www/documents/Konto_0000608869-Auszug_2025_0002.pdf
rename to www/documents/1169.pdf
diff --git a/www/documents/Konto_0000608869-Auszug_2025_0003.pdf b/www/documents/1171.pdf
similarity index 100%
rename from www/documents/Konto_0000608869-Auszug_2025_0003.pdf
rename to www/documents/1171.pdf
diff --git a/www/documents/Konto_0000608869-Auszug_2025_0004.pdf b/www/documents/1172.pdf
similarity index 100%
rename from www/documents/Konto_0000608869-Auszug_2025_0004.pdf
rename to www/documents/1172.pdf
diff --git a/www/documents/Konto_0000608869-Auszug_2025_0005.pdf b/www/documents/1173.pdf
similarity index 100%
rename from www/documents/Konto_0000608869-Auszug_2025_0005.pdf
rename to www/documents/1173.pdf
diff --git a/www/documents/Konto_0000608869-Auszug_2025_0006.pdf b/www/documents/1174.pdf
similarity index 100%
rename from www/documents/Konto_0000608869-Auszug_2025_0006.pdf
rename to www/documents/1174.pdf
diff --git a/www/documents/Konto_0000608869-Auszug_2025_0007.pdf b/www/documents/1175.pdf
similarity index 100%
rename from www/documents/Konto_0000608869-Auszug_2025_0007.pdf
rename to www/documents/1175.pdf
diff --git a/www/documents/19909.pdf b/www/documents/1177.pdf
similarity index 100%
rename from www/documents/19909.pdf
rename to www/documents/1177.pdf
diff --git a/www/documents/19908.pdf b/www/documents/1178.pdf
similarity index 100%
rename from www/documents/19908.pdf
rename to www/documents/1178.pdf
diff --git a/www/documents/19910.pdf b/www/documents/1179.pdf
similarity index 100%
rename from www/documents/19910.pdf
rename to www/documents/1179.pdf
diff --git a/www/documents/19858.pdf b/www/documents/1180.pdf
similarity index 100%
rename from www/documents/19858.pdf
rename to www/documents/1180.pdf
diff --git a/www/documents/19859.pdf b/www/documents/1181.pdf
similarity index 100%
rename from www/documents/19859.pdf
rename to www/documents/1181.pdf
diff --git a/www/documents/19901.pdf b/www/documents/1182.pdf
similarity index 100%
rename from www/documents/19901.pdf
rename to www/documents/1182.pdf
diff --git a/www/documents/Konto_0000608869-Auszug_2025_0008.pdf b/www/documents/1183.pdf
similarity index 100%
rename from www/documents/Konto_0000608869-Auszug_2025_0008.pdf
rename to www/documents/1183.pdf
diff --git a/www/documents/29.10.2025_2120175689_705903084186_Rechnung GK.pdf b/www/documents/1184.pdf
similarity index 100%
rename from www/documents/29.10.2025_2120175689_705903084186_Rechnung GK.pdf
rename to www/documents/1184.pdf
diff --git a/www/documents/19917.pdf b/www/documents/1185.pdf
similarity index 100%
rename from www/documents/19917.pdf
rename to www/documents/1185.pdf
diff --git a/www/documents/19785.pdf b/www/documents/1186.pdf
similarity index 100%
rename from www/documents/19785.pdf
rename to www/documents/1186.pdf
diff --git a/www/documents/EUCON_Belegprüfung_zur_Rg_Fa._Panter.pdf b/www/documents/1187.pdf
similarity index 100%
rename from www/documents/EUCON_Belegprüfung_zur_Rg_Fa._Panter.pdf
rename to www/documents/1187.pdf
diff --git a/www/documents/2025-28-03-A007-Saarbrücken.pdf b/www/documents/1188.pdf
similarity index 100%
rename from www/documents/2025-28-03-A007-Saarbrücken.pdf
rename to www/documents/1188.pdf
diff --git a/www/documents/24765.pdf b/www/documents/1190.pdf
similarity index 100%
rename from www/documents/24765.pdf
rename to www/documents/1190.pdf
diff --git a/www/documents/24766.pdf b/www/documents/1191.pdf
similarity index 100%
rename from www/documents/24766.pdf
rename to www/documents/1191.pdf
diff --git a/www/documents/24767.pdf b/www/documents/1192.pdf
similarity index 100%
rename from www/documents/24767.pdf
rename to www/documents/1192.pdf
diff --git a/www/documents/Abrechnungsbeleg-2025-02.pdf b/www/documents/1196.pdf
similarity index 100%
rename from www/documents/Abrechnungsbeleg-2025-02.pdf
rename to www/documents/1196.pdf
diff --git a/www/documents/Abrechnungsbeleg-2025-03.pdf b/www/documents/1197.pdf
similarity index 100%
rename from www/documents/Abrechnungsbeleg-2025-03.pdf
rename to www/documents/1197.pdf
diff --git a/www/documents/Rasandimala Abrechnungsbeleg-2025-03.pdf b/www/documents/1198.pdf
similarity index 100%
rename from www/documents/Rasandimala Abrechnungsbeleg-2025-03.pdf
rename to www/documents/1198.pdf
diff --git a/www/documents/12.pdf b/www/documents/12.pdf
deleted file mode 100644
index b1c84de..0000000
Binary files a/www/documents/12.pdf and /dev/null differ
diff --git a/www/documents/Report50201.pdf b/www/documents/1201.pdf
similarity index 100%
rename from www/documents/Report50201.pdf
rename to www/documents/1201.pdf
diff --git a/www/documents/19927.pdf b/www/documents/1202.pdf
similarity index 100%
rename from www/documents/19927.pdf
rename to www/documents/1202.pdf
diff --git a/www/documents/29.10.2025_2120198125_705903084187_Rechnung GK.pdf b/www/documents/1203.pdf
similarity index 100%
rename from www/documents/29.10.2025_2120198125_705903084187_Rechnung GK.pdf
rename to www/documents/1203.pdf
diff --git a/www/documents/29.10.2025_2120175686_705903084185_Rechnung GK.pdf b/www/documents/1204.pdf
similarity index 100%
rename from www/documents/29.10.2025_2120175686_705903084185_Rechnung GK.pdf
rename to www/documents/1204.pdf
diff --git a/www/documents/15112025170405_002.pdf b/www/documents/1205.pdf
similarity index 100%
rename from www/documents/15112025170405_002.pdf
rename to www/documents/1205.pdf
diff --git a/www/documents/15112025170405_001.pdf b/www/documents/1206.pdf
similarity index 100%
rename from www/documents/15112025170405_001.pdf
rename to www/documents/1206.pdf
diff --git a/www/documents/15112025170405_144dpi_75%.pdf b/www/documents/1207.pdf
similarity index 100%
rename from www/documents/15112025170405_144dpi_75%.pdf
rename to www/documents/1207.pdf
diff --git a/www/documents/15112025170233_144dpi_75%.pdf b/www/documents/1208.pdf
similarity index 100%
rename from www/documents/15112025170233_144dpi_75%.pdf
rename to www/documents/1208.pdf
diff --git a/www/documents/15112025170233_002_144dpi_75%.pdf b/www/documents/1209.pdf
similarity index 100%
rename from www/documents/15112025170233_002_144dpi_75%.pdf
rename to www/documents/1209.pdf
diff --git a/www/documents/15112025170233_001_144dpi_75%.pdf b/www/documents/1210.pdf
similarity index 100%
rename from www/documents/15112025170233_001_144dpi_75%.pdf
rename to www/documents/1210.pdf
diff --git a/www/documents/15112025170232_144dpi_75%.pdf b/www/documents/1211.pdf
similarity index 100%
rename from www/documents/15112025170232_144dpi_75%.pdf
rename to www/documents/1211.pdf
diff --git a/www/documents/10112025120719_144dpi_75%.pdf b/www/documents/1212.pdf
similarity index 100%
rename from www/documents/10112025120719_144dpi_75%.pdf
rename to www/documents/1212.pdf
diff --git a/www/documents/19922.pdf b/www/documents/1213.pdf
similarity index 100%
rename from www/documents/19922.pdf
rename to www/documents/1213.pdf
diff --git a/www/documents/19920.pdf b/www/documents/1214.pdf
similarity index 100%
rename from www/documents/19920.pdf
rename to www/documents/1214.pdf
diff --git a/www/documents/19921.pdf b/www/documents/1215.pdf
similarity index 100%
rename from www/documents/19921.pdf
rename to www/documents/1215.pdf
diff --git a/www/documents/19934.pdf b/www/documents/1216.pdf
similarity index 100%
rename from www/documents/19934.pdf
rename to www/documents/1216.pdf
diff --git a/www/documents/19933.pdf b/www/documents/1217.pdf
similarity index 100%
rename from www/documents/19933.pdf
rename to www/documents/1217.pdf
diff --git a/www/documents/19963.pdf b/www/documents/1218.pdf
similarity index 100%
rename from www/documents/19963.pdf
rename to www/documents/1218.pdf
diff --git a/www/documents/005531.pdf b/www/documents/1221.pdf
similarity index 100%
rename from www/documents/005531.pdf
rename to www/documents/1221.pdf
diff --git a/www/documents/Umsaetze_DE79452604750010793200_09-02-2026_16-40.pdf b/www/documents/1222.pdf
similarity index 100%
rename from www/documents/Umsaetze_DE79452604750010793200_09-02-2026_16-40.pdf
rename to www/documents/1222.pdf
diff --git a/www/documents/2026-01_Entgeltbescheinigungen_Giessmann.pdf b/www/documents/1223.pdf
similarity index 100%
rename from www/documents/2026-01_Entgeltbescheinigungen_Giessmann.pdf
rename to www/documents/1223.pdf
diff --git a/www/documents/2026-01_Entgeltbescheinigungen_Hipfel.pdf b/www/documents/1224.pdf
similarity index 100%
rename from www/documents/2026-01_Entgeltbescheinigungen_Hipfel.pdf
rename to www/documents/1224.pdf
diff --git a/www/documents/2026-01_Entgeltbescheinigungen_Zobel.pdf b/www/documents/1225.pdf
similarity index 100%
rename from www/documents/2026-01_Entgeltbescheinigungen_Zobel.pdf
rename to www/documents/1225.pdf
diff --git a/www/documents/2026-01_Rasandimala Entgeltbescheinigungen_233.pdf b/www/documents/1226.pdf
similarity index 100%
rename from www/documents/2026-01_Rasandimala Entgeltbescheinigungen_233.pdf
rename to www/documents/1226.pdf
diff --git a/www/documents/20323.pdf b/www/documents/1227.pdf
similarity index 100%
rename from www/documents/20323.pdf
rename to www/documents/1227.pdf
diff --git a/www/documents/20356.pdf b/www/documents/1228.pdf
similarity index 100%
rename from www/documents/20356.pdf
rename to www/documents/1228.pdf
diff --git a/www/documents/20197.pdf b/www/documents/1229.pdf
similarity index 100%
rename from www/documents/20197.pdf
rename to www/documents/1229.pdf
diff --git a/www/documents/20198.pdf b/www/documents/1230.pdf
similarity index 100%
rename from www/documents/20198.pdf
rename to www/documents/1230.pdf
diff --git a/www/documents/20301.pdf b/www/documents/1231.pdf
similarity index 100%
rename from www/documents/20301.pdf
rename to www/documents/1231.pdf
diff --git a/www/documents/20302.pdf b/www/documents/1232.pdf
similarity index 100%
rename from www/documents/20302.pdf
rename to www/documents/1232.pdf
diff --git a/www/documents/20303.pdf b/www/documents/1233.pdf
similarity index 100%
rename from www/documents/20303.pdf
rename to www/documents/1233.pdf
diff --git a/www/documents/20304.pdf b/www/documents/1234.pdf
similarity index 100%
rename from www/documents/20304.pdf
rename to www/documents/1234.pdf
diff --git a/www/documents/20250.pdf b/www/documents/1235.pdf
similarity index 100%
rename from www/documents/20250.pdf
rename to www/documents/1235.pdf
diff --git a/www/documents/310855.pdf b/www/documents/1239.pdf
similarity index 100%
rename from www/documents/310855.pdf
rename to www/documents/1239.pdf
diff --git a/www/documents/310856.pdf b/www/documents/1240.pdf
similarity index 100%
rename from www/documents/310856.pdf
rename to www/documents/1240.pdf
diff --git a/www/documents/310857.pdf b/www/documents/1241.pdf
similarity index 100%
rename from www/documents/310857.pdf
rename to www/documents/1241.pdf
diff --git a/www/documents/310858.pdf b/www/documents/1242.pdf
similarity index 100%
rename from www/documents/310858.pdf
rename to www/documents/1242.pdf
diff --git a/www/documents/310859.pdf b/www/documents/1243.pdf
similarity index 100%
rename from www/documents/310859.pdf
rename to www/documents/1243.pdf
diff --git a/www/documents/310860.pdf b/www/documents/1244.pdf
similarity index 100%
rename from www/documents/310860.pdf
rename to www/documents/1244.pdf
diff --git a/www/documents/310862.pdf b/www/documents/1245.pdf
similarity index 100%
rename from www/documents/310862.pdf
rename to www/documents/1245.pdf
diff --git a/www/documents/310863.pdf b/www/documents/1246.pdf
similarity index 100%
rename from www/documents/310863.pdf
rename to www/documents/1246.pdf
diff --git a/www/documents/310864.pdf b/www/documents/1247.pdf
similarity index 100%
rename from www/documents/310864.pdf
rename to www/documents/1247.pdf
diff --git a/www/documents/310865.pdf b/www/documents/1248.pdf
similarity index 100%
rename from www/documents/310865.pdf
rename to www/documents/1248.pdf
diff --git a/www/documents/310866.pdf b/www/documents/1249.pdf
similarity index 100%
rename from www/documents/310866.pdf
rename to www/documents/1249.pdf
diff --git a/www/documents/310867.pdf b/www/documents/1250.pdf
similarity index 100%
rename from www/documents/310867.pdf
rename to www/documents/1250.pdf
diff --git a/www/documents/310868.pdf b/www/documents/1251.pdf
similarity index 100%
rename from www/documents/310868.pdf
rename to www/documents/1251.pdf
diff --git a/www/documents/310869.pdf b/www/documents/1252.pdf
similarity index 100%
rename from www/documents/310869.pdf
rename to www/documents/1252.pdf
diff --git a/www/documents/310870.pdf b/www/documents/1253.pdf
similarity index 100%
rename from www/documents/310870.pdf
rename to www/documents/1253.pdf
diff --git a/www/documents/310871.pdf b/www/documents/1254.pdf
similarity index 100%
rename from www/documents/310871.pdf
rename to www/documents/1254.pdf
diff --git a/www/documents/310872.pdf b/www/documents/1255.pdf
similarity index 100%
rename from www/documents/310872.pdf
rename to www/documents/1255.pdf
diff --git a/www/documents/310873.pdf b/www/documents/1256.pdf
similarity index 100%
rename from www/documents/310873.pdf
rename to www/documents/1256.pdf
diff --git a/www/documents/310874.pdf b/www/documents/1257.pdf
similarity index 100%
rename from www/documents/310874.pdf
rename to www/documents/1257.pdf
diff --git a/www/documents/310875.pdf b/www/documents/1258.pdf
similarity index 100%
rename from www/documents/310875.pdf
rename to www/documents/1258.pdf
diff --git a/www/documents/310876.pdf b/www/documents/1259.pdf
similarity index 100%
rename from www/documents/310876.pdf
rename to www/documents/1259.pdf
diff --git a/www/documents/310877.pdf b/www/documents/1260.pdf
similarity index 100%
rename from www/documents/310877.pdf
rename to www/documents/1260.pdf
diff --git a/www/documents/310878.pdf b/www/documents/1261.pdf
similarity index 100%
rename from www/documents/310878.pdf
rename to www/documents/1261.pdf
diff --git a/www/documents/310879.pdf b/www/documents/1262.pdf
similarity index 100%
rename from www/documents/310879.pdf
rename to www/documents/1262.pdf
diff --git a/www/documents/310880.pdf b/www/documents/1263.pdf
similarity index 100%
rename from www/documents/310880.pdf
rename to www/documents/1263.pdf
diff --git a/www/documents/310881.pdf b/www/documents/1264.pdf
similarity index 100%
rename from www/documents/310881.pdf
rename to www/documents/1264.pdf
diff --git a/www/documents/310882.pdf b/www/documents/1265.pdf
similarity index 100%
rename from www/documents/310882.pdf
rename to www/documents/1265.pdf
diff --git a/www/documents/310883.pdf b/www/documents/1266.pdf
similarity index 100%
rename from www/documents/310883.pdf
rename to www/documents/1266.pdf
diff --git a/www/documents/310884.pdf b/www/documents/1267.pdf
similarity index 100%
rename from www/documents/310884.pdf
rename to www/documents/1267.pdf
diff --git a/www/documents/310885.pdf b/www/documents/1268.pdf
similarity index 100%
rename from www/documents/310885.pdf
rename to www/documents/1268.pdf
diff --git a/www/documents/310886.pdf b/www/documents/1269.pdf
similarity index 100%
rename from www/documents/310886.pdf
rename to www/documents/1269.pdf
diff --git a/www/documents/310887.pdf b/www/documents/1270.pdf
similarity index 100%
rename from www/documents/310887.pdf
rename to www/documents/1270.pdf
diff --git a/www/documents/310888.pdf b/www/documents/1271.pdf
similarity index 100%
rename from www/documents/310888.pdf
rename to www/documents/1271.pdf
diff --git a/www/documents/310889.pdf b/www/documents/1272.pdf
similarity index 100%
rename from www/documents/310889.pdf
rename to www/documents/1272.pdf
diff --git a/www/documents/310890.pdf b/www/documents/1273.pdf
similarity index 100%
rename from www/documents/310890.pdf
rename to www/documents/1273.pdf
diff --git a/www/documents/310891.pdf b/www/documents/1274.pdf
similarity index 100%
rename from www/documents/310891.pdf
rename to www/documents/1274.pdf
diff --git a/www/documents/310892.pdf b/www/documents/1275.pdf
similarity index 100%
rename from www/documents/310892.pdf
rename to www/documents/1275.pdf
diff --git a/www/documents/310893.pdf b/www/documents/1276.pdf
similarity index 100%
rename from www/documents/310893.pdf
rename to www/documents/1276.pdf
diff --git a/www/documents/310894.pdf b/www/documents/1277.pdf
similarity index 100%
rename from www/documents/310894.pdf
rename to www/documents/1277.pdf
diff --git a/www/documents/310895.pdf b/www/documents/1278.pdf
similarity index 100%
rename from www/documents/310895.pdf
rename to www/documents/1278.pdf
diff --git a/www/documents/310896.pdf b/www/documents/1279.pdf
similarity index 100%
rename from www/documents/310896.pdf
rename to www/documents/1279.pdf
diff --git a/www/documents/310897.pdf b/www/documents/1280.pdf
similarity index 100%
rename from www/documents/310897.pdf
rename to www/documents/1280.pdf
diff --git a/www/documents/310898.pdf b/www/documents/1281.pdf
similarity index 100%
rename from www/documents/310898.pdf
rename to www/documents/1281.pdf
diff --git a/www/documents/310899.pdf b/www/documents/1282.pdf
similarity index 100%
rename from www/documents/310899.pdf
rename to www/documents/1282.pdf
diff --git a/www/documents/310900.pdf b/www/documents/1283.pdf
similarity index 100%
rename from www/documents/310900.pdf
rename to www/documents/1283.pdf
diff --git a/www/documents/336062.pdf b/www/documents/1284.pdf
similarity index 100%
rename from www/documents/336062.pdf
rename to www/documents/1284.pdf
diff --git a/www/documents/336063.pdf b/www/documents/1285.pdf
similarity index 100%
rename from www/documents/336063.pdf
rename to www/documents/1285.pdf
diff --git a/www/documents/336064.pdf b/www/documents/1286.pdf
similarity index 100%
rename from www/documents/336064.pdf
rename to www/documents/1286.pdf
diff --git a/www/documents/336065.pdf b/www/documents/1287.pdf
similarity index 100%
rename from www/documents/336065.pdf
rename to www/documents/1287.pdf
diff --git a/www/documents/336066.pdf b/www/documents/1288.pdf
similarity index 100%
rename from www/documents/336066.pdf
rename to www/documents/1288.pdf
diff --git a/www/documents/336067.pdf b/www/documents/1289.pdf
similarity index 100%
rename from www/documents/336067.pdf
rename to www/documents/1289.pdf
diff --git a/www/documents/336068.pdf b/www/documents/1290.pdf
similarity index 100%
rename from www/documents/336068.pdf
rename to www/documents/1290.pdf
diff --git a/www/documents/336069.pdf b/www/documents/1291.pdf
similarity index 100%
rename from www/documents/336069.pdf
rename to www/documents/1291.pdf
diff --git a/www/documents/336070.pdf b/www/documents/1292.pdf
similarity index 100%
rename from www/documents/336070.pdf
rename to www/documents/1292.pdf
diff --git a/www/documents/336071.pdf b/www/documents/1293.pdf
similarity index 100%
rename from www/documents/336071.pdf
rename to www/documents/1293.pdf
diff --git a/www/documents/336072.pdf b/www/documents/1294.pdf
similarity index 100%
rename from www/documents/336072.pdf
rename to www/documents/1294.pdf
diff --git a/www/documents/336073.pdf b/www/documents/1295.pdf
similarity index 100%
rename from www/documents/336073.pdf
rename to www/documents/1295.pdf
diff --git a/www/documents/336074.pdf b/www/documents/1296.pdf
similarity index 100%
rename from www/documents/336074.pdf
rename to www/documents/1296.pdf
diff --git a/www/documents/336075.pdf b/www/documents/1297.pdf
similarity index 100%
rename from www/documents/336075.pdf
rename to www/documents/1297.pdf
diff --git a/www/documents/336076.pdf b/www/documents/1298.pdf
similarity index 100%
rename from www/documents/336076.pdf
rename to www/documents/1298.pdf
diff --git a/www/documents/336077.pdf b/www/documents/1299.pdf
similarity index 100%
rename from www/documents/336077.pdf
rename to www/documents/1299.pdf
diff --git a/www/documents/336078.pdf b/www/documents/1300.pdf
similarity index 100%
rename from www/documents/336078.pdf
rename to www/documents/1300.pdf
diff --git a/www/documents/336079.pdf b/www/documents/1301.pdf
similarity index 100%
rename from www/documents/336079.pdf
rename to www/documents/1301.pdf
diff --git a/www/documents/336080.pdf b/www/documents/1302.pdf
similarity index 100%
rename from www/documents/336080.pdf
rename to www/documents/1302.pdf
diff --git a/www/documents/336082.pdf b/www/documents/1303.pdf
similarity index 100%
rename from www/documents/336082.pdf
rename to www/documents/1303.pdf
diff --git a/www/documents/336098.pdf b/www/documents/1304.pdf
similarity index 100%
rename from www/documents/336098.pdf
rename to www/documents/1304.pdf
diff --git a/www/documents/336099.pdf b/www/documents/1305.pdf
similarity index 100%
rename from www/documents/336099.pdf
rename to www/documents/1305.pdf
diff --git a/www/documents/336101.pdf b/www/documents/1306.pdf
similarity index 100%
rename from www/documents/336101.pdf
rename to www/documents/1306.pdf
diff --git a/www/documents/336102.pdf b/www/documents/1307.pdf
similarity index 100%
rename from www/documents/336102.pdf
rename to www/documents/1307.pdf
diff --git a/www/documents/336103.pdf b/www/documents/1308.pdf
similarity index 100%
rename from www/documents/336103.pdf
rename to www/documents/1308.pdf
diff --git a/www/documents/336104.pdf b/www/documents/1309.pdf
similarity index 100%
rename from www/documents/336104.pdf
rename to www/documents/1309.pdf
diff --git a/www/documents/336105.pdf b/www/documents/1310.pdf
similarity index 100%
rename from www/documents/336105.pdf
rename to www/documents/1310.pdf
diff --git a/www/documents/336106.pdf b/www/documents/1311.pdf
similarity index 100%
rename from www/documents/336106.pdf
rename to www/documents/1311.pdf
diff --git a/www/documents/336107.pdf b/www/documents/1312.pdf
similarity index 100%
rename from www/documents/336107.pdf
rename to www/documents/1312.pdf
diff --git a/www/documents/2022-Mahl, Hans Dieter.pdf b/www/documents/1314.pdf
similarity index 100%
rename from www/documents/2022-Mahl, Hans Dieter.pdf
rename to www/documents/1314.pdf
diff --git a/www/documents/20332.pdf b/www/documents/1315.pdf
similarity index 100%
rename from www/documents/20332.pdf
rename to www/documents/1315.pdf
diff --git a/www/documents/20310.pdf b/www/documents/1316.pdf
similarity index 100%
rename from www/documents/20310.pdf
rename to www/documents/1316.pdf
diff --git a/www/documents/20311-01.pdf b/www/documents/1317.pdf
similarity index 100%
rename from www/documents/20311-01.pdf
rename to www/documents/1317.pdf
diff --git a/www/documents/20311-02.pdf b/www/documents/1318.pdf
similarity index 100%
rename from www/documents/20311-02.pdf
rename to www/documents/1318.pdf
diff --git a/www/documents/20319.pdf b/www/documents/1319.pdf
similarity index 100%
rename from www/documents/20319.pdf
rename to www/documents/1319.pdf
diff --git a/www/documents/20331-01.pdf b/www/documents/1320.pdf
similarity index 100%
rename from www/documents/20331-01.pdf
rename to www/documents/1320.pdf
diff --git a/www/documents/20331-02.pdf b/www/documents/1321.pdf
similarity index 100%
rename from www/documents/20331-02.pdf
rename to www/documents/1321.pdf
diff --git a/www/documents/20196.pdf b/www/documents/1322.pdf
similarity index 100%
rename from www/documents/20196.pdf
rename to www/documents/1322.pdf
diff --git a/www/documents/20200.pdf b/www/documents/1323.pdf
similarity index 100%
rename from www/documents/20200.pdf
rename to www/documents/1323.pdf
diff --git a/www/documents/20199.pdf b/www/documents/1324.pdf
similarity index 100%
rename from www/documents/20199.pdf
rename to www/documents/1324.pdf
diff --git a/www/documents/20331-03.pdf b/www/documents/1325.pdf
similarity index 100%
rename from www/documents/20331-03.pdf
rename to www/documents/1325.pdf
diff --git a/www/documents/20331-04.pdf b/www/documents/1326.pdf
similarity index 100%
rename from www/documents/20331-04.pdf
rename to www/documents/1326.pdf
diff --git a/www/documents/20331-05.pdf b/www/documents/1327.pdf
similarity index 100%
rename from www/documents/20331-05.pdf
rename to www/documents/1327.pdf
diff --git a/www/documents/20331-06.pdf b/www/documents/1328.pdf
similarity index 100%
rename from www/documents/20331-06.pdf
rename to www/documents/1328.pdf
diff --git a/www/documents/20331-07.pdf b/www/documents/1329.pdf
similarity index 100%
rename from www/documents/20331-07.pdf
rename to www/documents/1329.pdf
diff --git a/www/documents/20331-08.pdf b/www/documents/1330.pdf
similarity index 100%
rename from www/documents/20331-08.pdf
rename to www/documents/1330.pdf
diff --git a/www/documents/20331-09.pdf b/www/documents/1331.pdf
similarity index 100%
rename from www/documents/20331-09.pdf
rename to www/documents/1331.pdf
diff --git a/www/documents/20331-10.pdf b/www/documents/1332.pdf
similarity index 100%
rename from www/documents/20331-10.pdf
rename to www/documents/1332.pdf
diff --git a/www/documents/20331-11.pdf b/www/documents/1333.pdf
similarity index 100%
rename from www/documents/20331-11.pdf
rename to www/documents/1333.pdf
diff --git a/www/documents/20352.pdf b/www/documents/1338.pdf
similarity index 100%
rename from www/documents/20352.pdf
rename to www/documents/1338.pdf
diff --git a/www/documents/20353.pdf b/www/documents/1339.pdf
similarity index 100%
rename from www/documents/20353.pdf
rename to www/documents/1339.pdf
diff --git a/www/documents/20350.pdf b/www/documents/1340.pdf
similarity index 100%
rename from www/documents/20350.pdf
rename to www/documents/1340.pdf
diff --git a/www/documents/20351.pdf b/www/documents/1341.pdf
similarity index 100%
rename from www/documents/20351.pdf
rename to www/documents/1341.pdf
diff --git a/www/documents/1.Abschlagsrechnung 009-26.pdf b/www/documents/1342.pdf
similarity index 100%
rename from www/documents/1.Abschlagsrechnung 009-26.pdf
rename to www/documents/1342.pdf
diff --git a/www/documents/2026-01-12 Rechnung EGTec Elektrotechnik.pdf b/www/documents/1343.pdf
similarity index 100%
rename from www/documents/2026-01-12 Rechnung EGTec Elektrotechnik.pdf
rename to www/documents/1343.pdf
diff --git a/www/documents/img20260204_19420353.pdf b/www/documents/1344.pdf
similarity index 100%
rename from www/documents/img20260204_19420353.pdf
rename to www/documents/1344.pdf
diff --git a/www/documents/20260210_Rechnung_Lidl.pdf b/www/documents/1345.pdf
similarity index 100%
rename from www/documents/20260210_Rechnung_Lidl.pdf
rename to www/documents/1345.pdf
diff --git a/www/documents/20260210_Rechnung_Kaufland.pdf b/www/documents/1346.pdf
similarity index 100%
rename from www/documents/20260210_Rechnung_Kaufland.pdf
rename to www/documents/1346.pdf
diff --git a/www/documents/336061.pdf b/www/documents/1347.pdf
similarity index 100%
rename from www/documents/336061.pdf
rename to www/documents/1347.pdf
diff --git a/www/documents/2026-02_Entgeltbescheinigungen_588.pdf b/www/documents/1348.pdf
similarity index 100%
rename from www/documents/2026-02_Entgeltbescheinigungen_588.pdf
rename to www/documents/1348.pdf
diff --git a/www/documents/2026-02_Entgeltbescheinigungen_142.pdf b/www/documents/1349.pdf
similarity index 100%
rename from www/documents/2026-02_Entgeltbescheinigungen_142.pdf
rename to www/documents/1349.pdf
diff --git a/www/documents/2026-02_Entgeltbescheinigungen_191.pdf b/www/documents/1350.pdf
similarity index 100%
rename from www/documents/2026-02_Entgeltbescheinigungen_191.pdf
rename to www/documents/1350.pdf
diff --git a/www/documents/2026-02_Entgeltbescheinigungen_233.pdf b/www/documents/1351.pdf
similarity index 100%
rename from www/documents/2026-02_Entgeltbescheinigungen_233.pdf
rename to www/documents/1351.pdf
diff --git a/www/documents/2026-02-02_Jahresuebersicht_2025.pdf b/www/documents/1352.pdf
similarity index 100%
rename from www/documents/2026-02-02_Jahresuebersicht_2025.pdf
rename to www/documents/1352.pdf
diff --git a/www/documents/20363.pdf b/www/documents/1353.pdf
similarity index 100%
rename from www/documents/20363.pdf
rename to www/documents/1353.pdf
diff --git a/www/documents/20320.pdf b/www/documents/1354.pdf
similarity index 100%
rename from www/documents/20320.pdf
rename to www/documents/1354.pdf
diff --git a/www/documents/20362.pdf b/www/documents/1355.pdf
similarity index 100%
rename from www/documents/20362.pdf
rename to www/documents/1355.pdf
diff --git a/www/documents/20362 (2).pdf b/www/documents/1356.pdf
similarity index 100%
rename from www/documents/20362 (2).pdf
rename to www/documents/1356.pdf
diff --git a/www/documents/336084.pdf b/www/documents/1357.pdf
similarity index 100%
rename from www/documents/336084.pdf
rename to www/documents/1357.pdf
diff --git a/www/documents/336083.pdf b/www/documents/1358.pdf
similarity index 100%
rename from www/documents/336083.pdf
rename to www/documents/1358.pdf
diff --git a/www/documents/20483.pdf b/www/documents/1359.pdf
similarity index 100%
rename from www/documents/20483.pdf
rename to www/documents/1359.pdf
diff --git a/www/documents/20432.pdf b/www/documents/1360.pdf
similarity index 100%
rename from www/documents/20432.pdf
rename to www/documents/1360.pdf
diff --git a/www/documents/20478.pdf b/www/documents/1361.pdf
similarity index 100%
rename from www/documents/20478.pdf
rename to www/documents/1361.pdf
diff --git a/www/documents/20482.pdf b/www/documents/1362.pdf
similarity index 100%
rename from www/documents/20482.pdf
rename to www/documents/1362.pdf
diff --git a/www/documents/20470.pdf b/www/documents/1363.pdf
similarity index 100%
rename from www/documents/20470.pdf
rename to www/documents/1363.pdf
diff --git a/www/documents/2026-03_Entgeltbescheinigungen BUW_Hipfel.pdf b/www/documents/1364.pdf
similarity index 100%
rename from www/documents/2026-03_Entgeltbescheinigungen BUW_Hipfel.pdf
rename to www/documents/1364.pdf
diff --git a/www/documents/2026-03_Entgeltbescheinigungen BUW_Giessmann.pdf b/www/documents/1365.pdf
similarity index 100%
rename from www/documents/2026-03_Entgeltbescheinigungen BUW_Giessmann.pdf
rename to www/documents/1365.pdf
diff --git a/www/documents/2026-03_Entgeltbescheinigungen BUW_Zobel.pdf b/www/documents/1366.pdf
similarity index 100%
rename from www/documents/2026-03_Entgeltbescheinigungen BUW_Zobel.pdf
rename to www/documents/1366.pdf
diff --git a/www/documents/2026-03_Entgeltbescheinigungen MIN_Rasandimala.pdf b/www/documents/1367.pdf
similarity index 100%
rename from www/documents/2026-03_Entgeltbescheinigungen MIN_Rasandimala.pdf
rename to www/documents/1367.pdf
diff --git a/www/documents/20490.pdf b/www/documents/1368.pdf
similarity index 100%
rename from www/documents/20490.pdf
rename to www/documents/1368.pdf
diff --git a/www/documents/20491-1.pdf b/www/documents/1369.pdf
similarity index 100%
rename from www/documents/20491-1.pdf
rename to www/documents/1369.pdf
diff --git a/www/documents/20491-2.pdf b/www/documents/1370.pdf
similarity index 100%
rename from www/documents/20491-2.pdf
rename to www/documents/1370.pdf
diff --git a/www/documents/20491-3.pdf b/www/documents/1371.pdf
similarity index 100%
rename from www/documents/20491-3.pdf
rename to www/documents/1371.pdf
diff --git a/www/documents/20475.pdf b/www/documents/1372.pdf
similarity index 100%
rename from www/documents/20475.pdf
rename to www/documents/1372.pdf
diff --git a/www/documents/20597.pdf b/www/documents/1373.pdf
similarity index 100%
rename from www/documents/20597.pdf
rename to www/documents/1373.pdf
diff --git a/www/documents/20573.pdf b/www/documents/1374.pdf
similarity index 100%
rename from www/documents/20573.pdf
rename to www/documents/1374.pdf
diff --git a/www/documents/20593.pdf b/www/documents/1375.pdf
similarity index 100%
rename from www/documents/20593.pdf
rename to www/documents/1375.pdf
diff --git a/www/documents/20572.pdf b/www/documents/1376.pdf
similarity index 100%
rename from www/documents/20572.pdf
rename to www/documents/1376.pdf
diff --git a/www/documents/20439.pdf b/www/documents/1377.pdf
similarity index 100%
rename from www/documents/20439.pdf
rename to www/documents/1377.pdf
diff --git a/www/documents/336086.pdf b/www/documents/1378.pdf
similarity index 100%
rename from www/documents/336086.pdf
rename to www/documents/1378.pdf
diff --git a/www/documents/20615.pdf b/www/documents/1379.pdf
similarity index 100%
rename from www/documents/20615.pdf
rename to www/documents/1379.pdf
diff --git a/www/documents/20609.pdf b/www/documents/1380.pdf
similarity index 100%
rename from www/documents/20609.pdf
rename to www/documents/1380.pdf
diff --git a/www/documents/17.pdf b/www/documents/17.pdf
deleted file mode 100644
index 3f52f14..0000000
--- a/www/documents/17.pdf
+++ /dev/null
@@ -1,9619 +0,0 @@
-%PDF-1.3
-%
-1 0 obj
-<<
-/CreationDate (D:20240203100607+01'00')
-/Creator (Canon )
-/ModDate (D:20240203100748+01'00')
-/Producer ( )
->>
-endobj
-2 0 obj
-<<
-/Metadata 3 0 R
-/Pages 4 0 R
-/Type /Catalog
->>
-endobj
-3 0 obj
-<<
-/Length 2926
-/Subtype /XML
-/Type /Metadata
->>
-stream
-
-
-
-
- 2024-02-03T10:06:07+01:00
- Canon
- 2024-02-03T10:07:48+01:00
-
- application/pdf
- uuid:bbef6b30-30f8-4b01-b797-bbe8e9217263
- uuid:7ef00570-5023-46e9-a00b-1c932b3ed295
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-endstream
-endobj
-4 0 obj
-<<
-/Count 1
-/Kids [5 0 R]
-/Type /Pages
->>
-endobj
-5 0 obj
-<<
-/Contents [6 0 R 7 0 R 8 0 R]
-/CropBox [48.587246 288.283997 298.555847 497.305817]
-/MediaBox [0 0 589.44 842.16]
-/Parent 4 0 R
-/Resources <<
-/Font <<
-/F3 9 0 R
->>
-/ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/Subtype 10 0 R
-/XObject <<
-/Obj4 11 0 R
->>
->>
-/Type /Page
->>
-endobj
-6 0 obj
-<<
-/Length 27
->>
-stream
-% CANON_PFINF_TYPE0_TEXTON
-
-endstream
-endobj
-7 0 obj
-<<
-/Length 44
->>
-stream
-q
-589.44 0 0 842.16 0.00 0.00 cm
-/Obj4 Do
-Q
-
-endstream
-endobj
-8 0 obj
-<<
-/Length 5113
->>
-stream
-BT
-3 Tr
-0.00 Tc
-/F3 10.0 Tf
-1 0 0 1 76.08 783.84 Tm
-<45696E7A61684C756E67737175697474756E67> Tj
-0.00 Tc
-1 0 0 1 76.56 761.04 Tm
- Tj
-1 0 0 1 126.48 760.56 Tm
- Tj
-/F3 8.5 Tf
-1 0 0 1 76.56 749.76 Tm
-<7338523039313031313720> Tj
-/F3 8.0 Tf
-1 0 0 1 130.32 749.04 Tm
-<4D33353731543137> Tj
-0.00 Tc
-/F3 10.0 Tf
-1 0 0 1 339.60 784.08 Tm
-<45696E7A61686C756E67737175697474756E67> Tj
-/F3 9.5 Tf
-1 0 0 1 341.04 761.28 Tm
-<537561726B6173736520> Tj
-1 0 0 1 390.72 762.48 Tm
-<536161726272FC636B656E> Tj
-/F3 11.5 Tf
-1 0 0 1 341.28 750.00 Tm
-<73696E6F67726F72727220> Tj
-/F3 9.5 Tf
-1 0 0 1 395.04 750.96 Tm
-<666669353F3131313F> Tj
-/F3 10.0 Tf
-1 0 0 1 341.28 726.72 Tm
-<446174756D3A20> Tj
-/F3 13.0 Tf
-1 0 0 1 377.28 727.68 Tm
-<32362E31322E3230323320> Tj
-1 0 0 1 446.40 729.60 Tm
-<5A6569743A20> Tj
-/F3 8.5 Tf
-1 0 0 1 476.16 730.56 Tm
-<3133313231> Tj
-0.00 Tc
-/F3 13.0 Tf
-1 0 0 1 110.88 726.72 Tm
-<32352E31322E3230323320> Tj
-/F3 11.5 Tf
-1 0 0 1 180.72 725.76 Tm
-<5A6572743A313F3A3337> Tj
-0.00 Tc
-/F3 43.5 Tf
-1 0 0 1 66.00 716.64 Tm
-<742A> Tj
-0.00 Tc
-/F3 10.0 Tf
-1 0 0 1 75.60 693.12 Tm
-<4B6F6E746F2D4E722E3A> Tj
-/F3 8.5 Tf
-1 0 0 1 74.88 681.60 Tm
-<42492E5A3A> Tj
-/F3 10.0 Tf
-1 0 0 1 75.12 670.32 Tm
-<5472616E73616B74696F6E736E722C> Tj
-0.00 Tc
-1 0 0 1 74.88 648.24 Tm
-<3065627563687420> Tj
-/F3 9.0 Tf
-1 0 0 1 114.24 647.76 Tm
-<77657264656E3A> Tj
-0.00 Tc
-/F3 17.0 Tf
-1 0 0 1 114.24 609.36 Tm
-<533F72> Tj
-0.00 Tc
-/F3 8.5 Tf
-1 0 0 1 160.32 691.92 Tm
-<30303030363038383639> Tj
-1 0 0 1 159.84 680.40 Tm
-<3539303530313031> Tj
-1 0 0 1 159.84 669.12 Tm
-<30303430> Tj
-0.00 Tc
-/F3 10.0 Tf
-1 0 0 1 159.36 646.56 Tm
-<3533302C303020> Tj
-/F3 7.0 Tf
-1 0 0 1 193.68 645.84 Tm
-<455552> Tj
-/F3 19.5 Tf
-1 0 0 1 157.44 611.52 Tm
-<2F626F> Tj
-0.00 Tc
-/F3 16.5 Tf
-1 0 0 1 332.88 679.68 Tm
- Tj
-0.00 Tc
-/F3 8.5 Tf
-1 0 0 1 427.44 694.56 Tm
-<30303030363038383639> Tj
-1 0 0 1 427.44 683.04 Tm
-<3539303530313031> Tj
-1 0 0 1 427.92 671.52 Tm
-<30303F33> Tj
-0.00 Tc
-/F3 10.0 Tf
-1 0 0 1 428.64 648.48 Tm
-<3137352C303020> Tj
-/F3 7.0 Tf
-1 0 0 1 462.72 649.20 Tm
-<455552> Tj
-0.00 Tc
-/F3 10.0 Tf
-1 0 0 1 343.20 669.12 Tm
-<5472616E73616874696F6E736E7220> Tj
-/F3 6.0 Tf
-1 0 0 1 414.24 668.88 Tm
-<27> Tj
-/F3 9.5 Tf
-1 0 0 1 343.68 646.32 Tm
-<4F65627563687420> Tj
-/F3 9.0 Tf
-1 0 0 1 383.04 647.76 Tm
-<77657264656E3A> Tj
-0.00 Tc
-/F3 17.5 Tf
-1 0 0 1 377.28 605.76 Tm
- Tj
-/F3 12.0 Tf
-1 0 0 1 403.44 610.08 Tm
-<615920> Tj
-/F3 20.5 Tf
-1 0 0 1 421.92 611.52 Tm
-<74> Tj
-0.00 Tc
-/F3 13.5 Tf
-1 0 0 1 67.44 474.24 Tm
-<45696E7A61686C756E67737375697474756E7320> Tj
-/F3 19.5 Tf
-1 0 0 1 192.00 464.64 Tm
-<35705B20> Tj
-1 0 0 1 227.04 464.88 Tm
-<2F4A35> Tj
-/F3 10.0 Tf
-1 0 0 1 67.68 451.20 Tm
- Tj
-/F3 9.5 Tf
-1 0 0 1 117.60 450.48 Tm
- Tj
-/F3 8.5 Tf
-1 0 0 1 67.68 439.92 Tm
-<3838523039313031313720> Tj
-/F3 8.0 Tf
-1 0 0 1 121.20 438.72 Tm
-<4D33353731543137> Tj
-0.00 Tc
-/F3 10.0 Tf
-1 0 0 1 66.72 417.36 Tm
-<446174756D3A20> Tj
-/F3 13.5 Tf
-1 0 0 1 102.00 416.88 Tm
-<30332C30312C3230327B20> Tj
-/F3 13.0 Tf
-1 0 0 1 171.84 415.68 Tm
-<5A6569743A20> Tj
-/F3 9.0 Tf
-1 0 0 1 201.60 415.20 Tm
-<31363A3339> Tj
-0.00 Tc
-/F3 10.0 Tf
-1 0 0 1 66.48 382.80 Tm
-<4B6F6E746F2D4E722C20> Tj
-/F3 16.5 Tf
-1 0 0 1 112.80 382.32 Tm
-<3A20> Tj
-/F3 8.5 Tf
-1 0 0 1 151.44 381.84 Tm
-<30303030363038383639> Tj
-/F3 16.5 Tf
-1 0 0 1 66.00 371.52 Tm
-<424C5A3A20> Tj
-/F3 9.0 Tf
-1 0 0 1 150.96 370.32 Tm
-<3539303530313069> Tj
-/F3 10.5 Tf
-1 0 0 1 66.24 360.00 Tm
-<5472616E73614C4C726F6E736E722C3A20> Tj
-/F3 8.5 Tf
-1 0 0 1 150.96 359.04 Tm
-<30313233> Tj
-0.00 Tc
-/F3 9.5 Tf
-1 0 0 1 65.76 337.44 Tm
-<4F65627563687420> Tj
-/F3 11.5 Tf
-1 0 0 1 105.36 336.96 Tm
-<77657264656E3A20> Tj
-1 0 0 1 150.72 335.76 Tm
-<7B7B302C303020> Tj
-/F3 7.0 Tf
-1 0 0 1 184.80 335.28 Tm
-<455552> Tj
-0.00 Tc
-/F3 13.5 Tf
-1 0 0 1 320.16 468.48 Tm
-<497A616E74756E67737175697474756E67> Tj
-/F3 9.5 Tf
-1 0 0 1 333.12 446.16 Tm
-<537061726B6173736520> Tj
-1 0 0 1 383.04 446.16 Tm
- Tj
-/F3 8.5 Tf
-1 0 0 1 333.12 434.88 Tm
- Tj
-/F3 8.0 Tf
-1 0 0 1 386.88 434.88 Tm
-<4D33353731543137> Tj
-0.00 Tc
-/F3 9.0 Tf
-1 0 0 1 454.32 459.36 Tm
-<2E535020> Tj
-/F3 9.5 Tf
-1 0 0 1 472.08 461.04 Tm
-<762820> Tj
-/F3 17.5 Tf
-1 0 0 1 483.12 461.76 Tm
-<4920> Tj
-/F3 13.5 Tf
-1 0 0 1 493.20 461.52 Tm
-<3136> Tj
-0.00 Tc
-/F3 9.5 Tf
-1 0 0 1 332.40 411.84 Tm
-<44617475726E3A20> Tj
-/F3 13.0 Tf
-1 0 0 1 367.92 412.08 Tm
-<31342E30312E3230323120> Tj
-1 0 0 1 437.76 411.84 Tm
-<5A6569743A20> Tj
-/F3 9.0 Tf
-1 0 0 1 467.52 411.84 Tm
-<31333A3533> Tj
-0.00 Tc
-/F3 16.5 Tf
-1 0 0 1 332.88 377.76 Tm
-<4B6F6E746F2D4E722C3A20> Tj
-/F3 8.5 Tf
-1 0 0 1 417.60 378.00 Tm
-<30303030363038383639> Tj
-/F3 16.5 Tf
-1 0 0 1 332.40 366.24 Tm
-<424C5A3A20> Tj
-/F3 8.5 Tf
-1 0 0 1 417.36 366.24 Tm
-<3539303530313031> Tj
-/F3 11.0 Tf
-1 0 0 1 332.64 354.72 Tm
-<5472616E73616874696F6E736E722E3A20> Tj
-/F3 8.0 Tf
-1 0 0 1 417.60 354.96 Tm
-<30303335> Tj
-0.00 Tc
-/F3 9.5 Tf
-1 0 0 1 332.64 332.64 Tm
-<4F65627563687420> Tj
-/F3 11.5 Tf
-1 0 0 1 372.24 332.88 Tm
-<77657264656E3A20> Tj
-/F3 10.0 Tf
-1 0 0 1 417.60 332.40 Tm
-<383F302C303020> Tj
-/F3 7.0 Tf
-1 0 0 1 451.68 332.16 Tm
-<455552> Tj
-ET
-
-endstream
-endobj
-9 0 obj
-<<
-/BaseFont /Helvetica
-/Encoding /WinAnsiEncoding
-/Subtype /Type1
-/Type /Font
->>
-endobj
-10 0 obj
-<<
-/Length 712
->>
-stream
-EinzahLungsquittung
-parhasse aarbrc[ens8R0910117 M3571T17
-EinzahlungsquittungSuarkasse Saarbrckensinogrorrr ffi5?111?Datum: 26.12.2023 Zeit: 13121
-25.12.2023 Zert:1?:37
-t*
-Konto-Nr.:BI.Z:Transaktionsnr,
-0ebucht werden:
-S?r
-0000608869590501010040
-530,00 EUR/bo
-to-Nr
-00006088695905010100?3
-175,00 EUR
-Transahtionsnr 'Oebucht werden:
-r, aY t
-Einzahlungssuittuns 5p[ /J5parkasse aarbrcken88R0910117 M3571T17
-Datum: 03,01,202{ Zeit: 16:39
-Konto-Nr, : 0000608869BLZ: 5905010iTransaLLronsnr,: 0123
-Oebucht werden: {{0,00 EUR
-IzantungsquittungSparkasse aarbrckenBRo91011? M3571T17
-.SP v( I 16
-Daturn: 14.01.2021 Zeit: 13:53
-Konto-Nr,: 0000608869BLZ: 59050101Transahtionsnr.: 0035
-Oebucht werden: 8?0,00 EUR
-
-endstream
-endobj
-11 0 obj
-<<
-/BitsPerComponent 8
-/ColorSpace /DeviceRGB
-/Filter /DCTDecode
-/Height 3509
-/Length 357516
-/Name /Obj4
-/Subtype /Image
-/Type /XObject
-/Width 2456
->>
-stream
- JFIF ,,
-
$.' ",#(7),01444'9=82<.342
2!!22222222222222222222222222222222222222222222222222
-
- } !1AQa"q2#BR$3br
-%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQaq"2B #3Rbr
-$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
! ? Zb
-Q@@S E PI@ Qڀ
-( QH ZJ ZJ ZJ ( (
-(
-J ( Q@)i SK8 M &ɥ=h c\ Z(
-(
-(
-( @3F?7Fv`8ʁS(
-@M)?
-@iuJh )ڀ|q}Qϥ KvQr{J k64?h 1(Aǭ )8=7>r HNsY n|
' >Q4E\qR=)h wv7s)֍ Vf|) /psڜ *sZ l}R@7ÏjPQϭ i0r>oP A=