merge
This commit is contained in:
@@ -16,7 +16,7 @@ Module cATILLA_Speditionsbuch
|
|||||||
Public Sub LOAD(datum As Date)
|
Public Sub LOAD(datum As Date)
|
||||||
Try
|
Try
|
||||||
Using conn As SqlConnection = GetNewOpenConnectionFMZOLL()
|
Using conn As SqlConnection = GetNewOpenConnectionFMZOLL()
|
||||||
Using cmd As New SqlCommand("SELECT * FROM Speditionsbuch WHERE FilialenNr=4801 and SB_Zeitstempel > '" & datum.ToShortDateString & " 00:00:00' and Bar=0 ", conn)
|
Using cmd As New SqlCommand("SELECT * FROM Speditionsbuch WHERE FilialenNr IN (4801,4802) and SB_Zeitstempel > '" & datum.ToShortDateString & " 00:00:00' and Bar=0 ", conn)
|
||||||
|
|
||||||
Dim dr = cmd.ExecuteReader()
|
Dim dr = cmd.ExecuteReader()
|
||||||
While dr.Read
|
While dr.Read
|
||||||
|
|||||||
@@ -334,7 +334,7 @@ Public Class cZOLL_IMPORT
|
|||||||
Dim filiale = getFiliale(LRN, filialeBez)
|
Dim filiale = getFiliale(LRN, filialeBez)
|
||||||
Select Case filiale
|
Select Case filiale
|
||||||
Case "5501" : VERAG_PROG_ALLGEMEIN.cAllgemein.FIRMA = "IMEX"
|
Case "5501" : VERAG_PROG_ALLGEMEIN.cAllgemein.FIRMA = "IMEX"
|
||||||
Case "4801" : VERAG_PROG_ALLGEMEIN.cAllgemein.FIRMA = "ATILLA" : Return False 'Keine Atoerfassung
|
Case "4801", "4802" : VERAG_PROG_ALLGEMEIN.cAllgemein.FIRMA = "ATILLA" : Return False 'Keine Atoerfassung
|
||||||
Case "5801" : VERAG_PROG_ALLGEMEIN.cAllgemein.FIRMA = "FRONTOFFICE"
|
Case "5801" : VERAG_PROG_ALLGEMEIN.cAllgemein.FIRMA = "FRONTOFFICE"
|
||||||
End Select
|
End Select
|
||||||
Dim abfertigungsnummer = getAbfertigungsnummer(LRN)
|
Dim abfertigungsnummer = getAbfertigungsnummer(LRN)
|
||||||
@@ -884,7 +884,7 @@ Public Class cZOLL_IMPORT
|
|||||||
Select Case SENDUNG.FilialenNr
|
Select Case SENDUNG.FilialenNr
|
||||||
Case 4803, 4809, 7001
|
Case 4803, 4809, 7001
|
||||||
strManNl = "SUB"
|
strManNl = "SUB"
|
||||||
Case 4801
|
Case 4801, 4802
|
||||||
strManNl = "SUW"
|
strManNl = "SUW"
|
||||||
Case 5003
|
Case 5003
|
||||||
strManNl = "SBG" 'ANDERER SERVER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
strManNl = "SBG" 'ANDERER SERVER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
@@ -1032,7 +1032,7 @@ Public Class cZOLL_IMPORT
|
|||||||
Select Case SPEDITIONSBUCH.FilialenNr
|
Select Case SPEDITIONSBUCH.FilialenNr
|
||||||
Case 4803, 4809, 7001
|
Case 4803, 4809, 7001
|
||||||
strManNl = "SUB"
|
strManNl = "SUB"
|
||||||
Case 4801
|
Case 4801, 4802
|
||||||
strManNl = "SUW"
|
strManNl = "SUW"
|
||||||
Case 5003
|
Case 5003
|
||||||
strManNl = "SBG" 'ANDERER SERVER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
strManNl = "SBG" 'ANDERER SERVER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
@@ -1133,7 +1133,8 @@ Public Class cZOLL_IMPORT
|
|||||||
SPEDITIONSBUCH.Personalnummer = If(IsNumeric(p), p, Nothing)
|
SPEDITIONSBUCH.Personalnummer = If(IsNumeric(p), p, Nothing)
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Fehler ATLAS Personal: " & vbNewLine & ex.Message & vbNewLine & ex.StackTrace)
|
|
||||||
|
VERAG_PROG_ALLGEMEIN.cErrorHandler.ERR("Fehler ATLAS Personal: " & vbNewLine & ex.Message, ex.StackTrace, System.Reflection.MethodInfo.GetCurrentMethod.Name)
|
||||||
End Try
|
End Try
|
||||||
Next
|
Next
|
||||||
Else
|
Else
|
||||||
@@ -1272,7 +1273,8 @@ Public Class cZOLL_IMPORT
|
|||||||
SPEDITIONSBUCH.Personalnummer = If(IsNumeric(p), p, Nothing)
|
SPEDITIONSBUCH.Personalnummer = If(IsNumeric(p), p, Nothing)
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Fehler ATLAS Personal: " & vbNewLine & ex.Message & vbNewLine & ex.StackTrace)
|
VERAG_PROG_ALLGEMEIN.cErrorHandler.ERR("Fehler ATLAS Personal: " & vbNewLine & ex.Message, ex.StackTrace, System.Reflection.MethodInfo.GetCurrentMethod.Name)
|
||||||
|
|
||||||
End Try
|
End Try
|
||||||
Next
|
Next
|
||||||
Else
|
Else
|
||||||
@@ -1540,7 +1542,8 @@ Public Class cZOLL_IMPORT
|
|||||||
SPEDITIONSBUCH.Personalnummer = If(IsNumeric(p), p, Nothing)
|
SPEDITIONSBUCH.Personalnummer = If(IsNumeric(p), p, Nothing)
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Fehler EZOLL Personal: " & vbNewLine & ex.Message & vbNewLine & ex.StackTrace)
|
VERAG_PROG_ALLGEMEIN.cErrorHandler.ERR("Fehler EZOLL Personal: " & vbNewLine & ex.Message, ex.StackTrace, System.Reflection.MethodInfo.GetCurrentMethod.Name)
|
||||||
|
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
'Anhang
|
'Anhang
|
||||||
@@ -1680,7 +1683,8 @@ Public Class cZOLL_IMPORT
|
|||||||
SPEDITIONSBUCH.Personalnummer = If(IsNumeric(p), p, Nothing)
|
SPEDITIONSBUCH.Personalnummer = If(IsNumeric(p), p, Nothing)
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Fehler EZOLL Personal: " & vbNewLine & ex.Message & vbNewLine & ex.StackTrace)
|
VERAG_PROG_ALLGEMEIN.cErrorHandler.ERR("Fehler EZOLL Personal: " & vbNewLine & ex.Message, ex.StackTrace, System.Reflection.MethodInfo.GetCurrentMethod.Name)
|
||||||
|
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
'Anhang
|
'Anhang
|
||||||
|
|||||||
@@ -472,10 +472,10 @@ Public Class cZollsysteme_Aktenbeschriftung
|
|||||||
VERAG_NCTS.Company = "ATILLA"
|
VERAG_NCTS.Company = "ATILLA"
|
||||||
VERAG_NCTS.Department = "SUB"
|
VERAG_NCTS.Department = "SUB"
|
||||||
Case "6"
|
Case "6"
|
||||||
If LRN.StartsWith("4801") Then
|
If LRN.StartsWith("4801") Or LRN.StartsWith("4802") Then
|
||||||
VERAG_NCTS.Company = "ATILLA"
|
VERAG_NCTS.Company = "ATILLA"
|
||||||
Else
|
Else
|
||||||
VERAG_NCTS.Company = "VERAG"
|
VERAG_NCTS.Company = "VERAG"
|
||||||
End If
|
End If
|
||||||
VERAG_NCTS.Department = "SUB"
|
VERAG_NCTS.Department = "SUB"
|
||||||
Case "8"
|
Case "8"
|
||||||
|
|||||||
@@ -1402,7 +1402,7 @@ Module Mail
|
|||||||
|
|
||||||
|
|
||||||
sqlstr &= " SELECT [Grenzstelle], SUM(Speditionsbuch.Abfertigungsanzahl) as Anzahl FROM Speditionsbuch WHERE Abfertigungsart IN (26,28) "
|
sqlstr &= " SELECT [Grenzstelle], SUM(Speditionsbuch.Abfertigungsanzahl) as Anzahl FROM Speditionsbuch WHERE Abfertigungsart IN (26,28) "
|
||||||
sqlstr &= " AND [Grenzstelle] <> 'SFD' and FilialenNr NOT IN ( 4801,4806 ) "
|
sqlstr &= " AND [Grenzstelle] <> 'SFD' and FilialenNr NOT IN ( 4801,4802,4806 ) "
|
||||||
sqlstr &= " and Abfertigungsdatum between '" & von.ToShortDateString & "' and '" & bis.ToShortDateString & "' " &
|
sqlstr &= " and Abfertigungsdatum between '" & von.ToShortDateString & "' and '" & bis.ToShortDateString & "' " &
|
||||||
" GROUP BY [Grenzstelle]" &
|
" GROUP BY [Grenzstelle]" &
|
||||||
" ORDER BY Anzahl DESC"
|
" ORDER BY Anzahl DESC"
|
||||||
|
|||||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' übernehmen, indem Sie "*" eingeben:
|
' übernehmen, indem Sie "*" eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("1.0.4.4")>
|
<Assembly: AssemblyVersion("1.0.4.5")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.4.4")>
|
<Assembly: AssemblyFileVersion("1.0.4.5")>
|
||||||
|
|||||||
@@ -351,7 +351,7 @@ Public Class frmMain
|
|||||||
'End If
|
'End If
|
||||||
If cbxBrg_de2_VeragAG.Checked Then 'DE
|
If cbxBrg_de2_VeragAG.Checked Then 'DE
|
||||||
|
|
||||||
Dim DE_DIFFERENZ As Double = 2500000 ' UNBEKANNT DIFFENREZ!!!
|
Dim DE_DIFFERENZ As Double = 1000000 ' UNBEKANNT DIFFENREZ!!!
|
||||||
|
|
||||||
'DE WOCHE
|
'DE WOCHE
|
||||||
Dim woche_de2 As Double = BRG.getBrgSumFromFMZOLL_Zabis(Now.AddDays(-6).ToShortDateString, Now.ToShortDateString, "50", "60", brg_DE_NEU)
|
Dim woche_de2 As Double = BRG.getBrgSumFromFMZOLL_Zabis(Now.AddDays(-6).ToShortDateString, Now.ToShortDateString, "50", "60", brg_DE_NEU)
|
||||||
|
|||||||
@@ -153,6 +153,12 @@
|
|||||||
<Compile Include="cATEZWorker.vb" />
|
<Compile Include="cATEZWorker.vb" />
|
||||||
<Compile Include="cOREGONWorker.vb" />
|
<Compile Include="cOREGONWorker.vb" />
|
||||||
<Compile Include="cMAVIWorker.vb" />
|
<Compile Include="cMAVIWorker.vb" />
|
||||||
|
<Compile Include="frmDatenarchivarchiv.Designer.vb">
|
||||||
|
<DependentUpon>frmDatenarchivarchiv.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="frmDatenarchivarchiv.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="frmInfo.Designer.vb">
|
<Compile Include="frmInfo.Designer.vb">
|
||||||
<DependentUpon>frmInfo.vb</DependentUpon>
|
<DependentUpon>frmInfo.vb</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -236,6 +242,9 @@
|
|||||||
</Compile>
|
</Compile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="frmDatenarchivarchiv.resx">
|
||||||
|
<DependentUpon>frmDatenarchivarchiv.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmInfo.resx">
|
<EmbeddedResource Include="frmInfo.resx">
|
||||||
<DependentUpon>frmInfo.vb</DependentUpon>
|
<DependentUpon>frmInfo.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
|||||||
@@ -1240,7 +1240,7 @@ Public Class cWorker_NCTS
|
|||||||
If MRN <> "" Then NCTS_TMP.ncts_MRN = MRN : NCTS_TMP.SAVE()
|
If MRN <> "" Then NCTS_TMP.ncts_MRN = MRN : NCTS_TMP.SAVE()
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
saveDY_NCTS = NCTS_TMP
|
saveDY_NCTS = NCTS_TMP
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Shared Sub SaveNCTS_FirmaNL(ByRef NCTS_TMP As DAKOSY_Worker.cDakosyNCTSOut, DY_TMP As DAKOSY_Worker.cDakosy_Zollanmeldungen, division As String)
|
Shared Sub SaveNCTS_FirmaNL(ByRef NCTS_TMP As DAKOSY_Worker.cDakosyNCTSOut, DY_TMP As DAKOSY_Worker.cDakosy_Zollanmeldungen, division As String)
|
||||||
@@ -1699,8 +1699,13 @@ Public Class cWorker_NCTS
|
|||||||
If DY_TMP IsNot Nothing Then STATUS.dySt_dyId = DY_TMP.dy_Id
|
If DY_TMP IsNot Nothing Then STATUS.dySt_dyId = DY_TMP.dy_Id
|
||||||
STATUS.SAVE()
|
STATUS.SAVE()
|
||||||
|
|
||||||
' BEREITSTELLUNG DER DATEN AN FREMDSYSTEME
|
'=======BEREITSTELLUNG DER DATEN AN FREMDSYSTEME=======
|
||||||
cVERAG_out_ncts.copyFileFTP_VERAGncts_DY(NCTS_TMP, DY_TMP)
|
cVERAG_out_ncts.copyFileFTP_VERAGncts_DY(NCTS_TMP, DY_TMP)
|
||||||
|
'======================================================
|
||||||
|
|
||||||
|
'=====ATEZ BEREITSTELLUNG==========
|
||||||
|
checkATEZ_Bereitstellung(DY_TMP, d)
|
||||||
|
'==================================
|
||||||
|
|
||||||
FORM.addDGVEinarbeitung("NCTS: Erledigungsmeldung", STATUS.dySt_BezugsNr)
|
FORM.addDGVEinarbeitung("NCTS: Erledigungsmeldung", STATUS.dySt_BezugsNr)
|
||||||
End If
|
End If
|
||||||
@@ -1997,6 +2002,9 @@ Public Class cWorker_NCTS
|
|||||||
NCTS_TMP.insertIntoSpedBuch(DY_TMP)
|
NCTS_TMP.insertIntoSpedBuch(DY_TMP)
|
||||||
|
|
||||||
|
|
||||||
|
'=====ATEZ BEREITSTELLUNG==========
|
||||||
|
checkATEZ_Bereitstellung(DY_TMP, d)
|
||||||
|
'==================================
|
||||||
|
|
||||||
FORM.addDGVEinarbeitung("NCTS: Überlassungsmeldung", STATUS.dySt_BezugsNr)
|
FORM.addDGVEinarbeitung("NCTS: Überlassungsmeldung", STATUS.dySt_BezugsNr)
|
||||||
End If
|
End If
|
||||||
@@ -2014,6 +2022,20 @@ Public Class cWorker_NCTS
|
|||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Shared Sub checkATEZ_Bereitstellung(DY_TMP As DAKOSY_Worker.cDakosy_Zollanmeldungen, filePath As String)
|
||||||
|
If DY_TMP Is Nothing Then Exit Sub
|
||||||
|
Dim ATEZ = VERAG_PROG_ALLGEMEIN.cATEZ_NCTS_DATA.LOAD_ByBezugsNr(DY_TMP.dy_BezugsNr)
|
||||||
|
If ATEZ IsNot Nothing AndAlso ATEZ.hasEntry Then
|
||||||
|
' If ATEZ.status IsNot Nothing Then
|
||||||
|
'If ATEZ.status < 40 Then
|
||||||
|
Dim fio As New IO.FileInfo(filePath)
|
||||||
|
FileCopy(filePath, "\\ftps.verag.ag\FTP\ATEZ\OUT\" & fio.Name.Replace("lock_", ""))
|
||||||
|
'End If
|
||||||
|
' End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Shared Function readNCTS_AnrechnungReferenzbetraege(FORM As frmDYNachrichtenVerarbeitung, d As String) As String
|
Shared Function readNCTS_AnrechnungReferenzbetraege(FORM As frmDYNachrichtenVerarbeitung, d As String) As String
|
||||||
Try
|
Try
|
||||||
@@ -2071,6 +2093,10 @@ Public Class cWorker_NCTS
|
|||||||
If DY_TMP IsNot Nothing Then STATUS.dySt_dyId = DY_TMP.dy_Id
|
If DY_TMP IsNot Nothing Then STATUS.dySt_dyId = DY_TMP.dy_Id
|
||||||
STATUS.SAVE()
|
STATUS.SAVE()
|
||||||
|
|
||||||
|
'=====ATEZ BEREITSTELLUNG==========
|
||||||
|
checkATEZ_Bereitstellung(DY_TMP, d)
|
||||||
|
'==================================
|
||||||
|
|
||||||
FORM.addDGVEinarbeitung("NCTS: AnrechnungReferenzbetäege", STATUS.dySt_BezugsNr)
|
FORM.addDGVEinarbeitung("NCTS: AnrechnungReferenzbetäege", STATUS.dySt_BezugsNr)
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
|
|||||||
@@ -5875,7 +5875,7 @@ Public Class frmDYNachrichtenVerarbeitung
|
|||||||
Case "5701"
|
Case "5701"
|
||||||
firma = "AMBAR"
|
firma = "AMBAR"
|
||||||
niederlassung = "AMBAR"
|
niederlassung = "AMBAR"
|
||||||
Case "4801"
|
Case "4801", "4802"
|
||||||
firma = "ATILLA"
|
firma = "ATILLA"
|
||||||
niederlassung = "SUB"
|
niederlassung = "SUB"
|
||||||
'Case "4801"
|
'Case "4801"
|
||||||
@@ -6196,7 +6196,8 @@ Public Class frmDYNachrichtenVerarbeitung
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
'Wenn gefunden
|
'Wenn gefunden
|
||||||
If sendToID >= 0 Then
|
If (art = "F" AndAlso If(sendToID, "") <> "") OrElse sendToID >= 0 Then
|
||||||
|
|
||||||
Dim statusAVISO = SQL.DLookup("Status", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
Dim statusAVISO = SQL.DLookup("Status", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
||||||
|
|
||||||
Select Case statusAVISO
|
Select Case statusAVISO
|
||||||
@@ -6205,7 +6206,7 @@ Public Class frmDYNachrichtenVerarbeitung
|
|||||||
'Nicht
|
'Nicht
|
||||||
Case Else
|
Case Else
|
||||||
Dim code = VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungenCodes.ZOLL_Dokumentenbeschau
|
Dim code = VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungenCodes.ZOLL_Dokumentenbeschau
|
||||||
VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungen.INSERT_BENACHRICHTIGUNG(DY_TMP.dy_AvisoId, DY_TMP.dy_SendungsId, code, art, sendToID, "ZOLL: Dokumentenbeschau", 1, , (TXT_DokBeschau & vbNewLine & TXT_Mitteilung).Trim,,, If(EZA_TMP.eza_firma, ""))
|
VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungen.INSERT_BENACHRICHTIGUNG(DY_TMP.dy_AvisoId, DY_TMP.dy_SendungsId, code, art, sendToID, "ZOLL: Dokumentenbeschau", 1, , (TXT_DokBeschau & vbNewLine & TXT_Mitteilung).Trim,,, If(EZA_TMP IsNot Nothing, If(EZA_TMP.eza_firma, ""), ""))
|
||||||
End Select
|
End Select
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -6249,7 +6250,7 @@ Public Class frmDYNachrichtenVerarbeitung
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
'Wenn gefunden
|
'Wenn gefunden
|
||||||
If sendToID >= 0 Then
|
If (art = "F" AndAlso If(sendToID, "") <> "") OrElse sendToID >= 0 Then
|
||||||
Dim statusAVISO = SQL.DLookup("Status", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
Dim statusAVISO = SQL.DLookup("Status", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
||||||
Dim GrenzstelleAVISO = SQL.DLookup("Grenzstelle", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
Dim GrenzstelleAVISO = SQL.DLookup("Grenzstelle", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
||||||
If GrenzstelleAVISO = "???" Then
|
If GrenzstelleAVISO = "???" Then
|
||||||
@@ -6258,7 +6259,7 @@ Public Class frmDYNachrichtenVerarbeitung
|
|||||||
'Nicht
|
'Nicht
|
||||||
Case Else
|
Case Else
|
||||||
Dim code = VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungenCodes.ZOLL_Rueckweisung
|
Dim code = VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungenCodes.ZOLL_Rueckweisung
|
||||||
VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungen.INSERT_BENACHRICHTIGUNG(DY_TMP.dy_AvisoId, DY_TMP.dy_SendungsId, code, art, sendToID, "ZOLL: Rückweisung", 1, , (TXT_Rückweisung & vbNewLine & TXT_Mitteilung).Trim,,, If(EZA_TMP.eza_firma, ""))
|
VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungen.INSERT_BENACHRICHTIGUNG(DY_TMP.dy_AvisoId, DY_TMP.dy_SendungsId, code, art, sendToID, "ZOLL: Rückweisung", 1, , (TXT_Rückweisung & vbNewLine & TXT_Mitteilung).Trim,,, If(EZA_TMP IsNot Nothing, If(EZA_TMP.eza_firma, ""), ""))
|
||||||
End Select
|
End Select
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
@@ -6312,7 +6313,7 @@ Public Class frmDYNachrichtenVerarbeitung
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
'Wenn gefunden
|
'Wenn gefunden
|
||||||
If sendToID >= 0 Then
|
If (art = "F" AndAlso If(sendToID, "") <> "") OrElse sendToID >= 0 Then
|
||||||
' If sendToID = 153 Or sendToID = 174 Then '--> NUR TOBI/MATHIAS!!
|
' If sendToID = 153 Or sendToID = 174 Then '--> NUR TOBI/MATHIAS!!
|
||||||
Dim statusAVISO = SQL.DLookup("Status", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
Dim statusAVISO = SQL.DLookup("Status", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
||||||
Dim GrenzstelleAVISO = SQL.DLookup("Grenzstelle", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
Dim GrenzstelleAVISO = SQL.DLookup("Grenzstelle", "Aviso", "AvisoID='" & DY_TMP.dy_AvisoId & "'", "AVISO")
|
||||||
@@ -6322,7 +6323,7 @@ Public Class frmDYNachrichtenVerarbeitung
|
|||||||
'Nicht
|
'Nicht
|
||||||
Case Else
|
Case Else
|
||||||
Dim code = VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungenCodes.ZOLL_Mitteilung
|
Dim code = VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungenCodes.ZOLL_Mitteilung
|
||||||
VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungen.INSERT_BENACHRICHTIGUNG(DY_TMP.dy_AvisoId, DY_TMP.dy_SendungsId, code, art, sendToID, "ZOLL: Mitteilung", 1, , (TXT_Mitteilung & TXT_Mitteilung_Zollbeamter).Trim,,, If(EZA_TMP.eza_firma, ""))
|
VERAG_PROG_ALLGEMEIN.cAvisoBenachrichtigungen.INSERT_BENACHRICHTIGUNG(DY_TMP.dy_AvisoId, DY_TMP.dy_SendungsId, code, art, sendToID, "ZOLL: Mitteilung", 1, , (TXT_Mitteilung & TXT_Mitteilung_Zollbeamter).Trim,,, If(EZA_TMP IsNot Nothing, If(EZA_TMP.eza_firma, ""), ""))
|
||||||
End Select
|
End Select
|
||||||
End If
|
End If
|
||||||
' End If
|
' End If
|
||||||
|
|||||||
405
initATLASAufschubkonten/frmDatenarchivarchiv.Designer.vb
generated
Normal file
405
initATLASAufschubkonten/frmDatenarchivarchiv.Designer.vb
generated
Normal file
@@ -0,0 +1,405 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class frmDatenarchivarchiv
|
||||||
|
Inherits System.Windows.Forms.Form
|
||||||
|
|
||||||
|
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
Try
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
Finally
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Try
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Wird vom Windows Form-Designer benötigt.
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
|
||||||
|
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
|
||||||
|
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmDatenarchivarchiv))
|
||||||
|
Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
|
||||||
|
Me.Label1 = New System.Windows.Forms.Label()
|
||||||
|
Me.Label2 = New System.Windows.Forms.Label()
|
||||||
|
Me.Label3 = New System.Windows.Forms.Label()
|
||||||
|
Me.Label4 = New System.Windows.Forms.Label()
|
||||||
|
Me.Label5 = New System.Windows.Forms.Label()
|
||||||
|
Me.Label6 = New System.Windows.Forms.Label()
|
||||||
|
Me.Label7 = New System.Windows.Forms.Label()
|
||||||
|
Me.Label8 = New System.Windows.Forms.Label()
|
||||||
|
Me.Button1 = New System.Windows.Forms.Button()
|
||||||
|
Me.Label9 = New System.Windows.Forms.Label()
|
||||||
|
Me.Label10 = New System.Windows.Forms.Label()
|
||||||
|
Me.txtBis = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
|
Me.txtVon = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
|
Me.txtMax = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
|
Me.txtUOrdner3 = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
|
Me.txtUOrdner2 = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
|
Me.txtUOrdner1 = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
|
Me.txtOrdner = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
|
Me.txtKategorie = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'ProgressBar1
|
||||||
|
'
|
||||||
|
Me.ProgressBar1.Location = New System.Drawing.Point(29, 123)
|
||||||
|
Me.ProgressBar1.Name = "ProgressBar1"
|
||||||
|
Me.ProgressBar1.Size = New System.Drawing.Size(664, 23)
|
||||||
|
Me.ProgressBar1.TabIndex = 0
|
||||||
|
'
|
||||||
|
'Label1
|
||||||
|
'
|
||||||
|
Me.Label1.AutoSize = True
|
||||||
|
Me.Label1.Location = New System.Drawing.Point(350, 153)
|
||||||
|
Me.Label1.Name = "Label1"
|
||||||
|
Me.Label1.Size = New System.Drawing.Size(24, 13)
|
||||||
|
Me.Label1.TabIndex = 1
|
||||||
|
Me.Label1.Text = "0/0"
|
||||||
|
'
|
||||||
|
'Label2
|
||||||
|
'
|
||||||
|
Me.Label2.AutoSize = True
|
||||||
|
Me.Label2.Location = New System.Drawing.Point(26, 19)
|
||||||
|
Me.Label2.Name = "Label2"
|
||||||
|
Me.Label2.Size = New System.Drawing.Size(174, 13)
|
||||||
|
Me.Label2.TabIndex = 1
|
||||||
|
Me.Label2.Text = "Daten in ArchivArchiv verschieben:"
|
||||||
|
'
|
||||||
|
'Label3
|
||||||
|
'
|
||||||
|
Me.Label3.AutoSize = True
|
||||||
|
Me.Label3.Location = New System.Drawing.Point(26, 56)
|
||||||
|
Me.Label3.Name = "Label3"
|
||||||
|
Me.Label3.Size = New System.Drawing.Size(55, 13)
|
||||||
|
Me.Label3.TabIndex = 2
|
||||||
|
Me.Label3.Text = "Kategorie:"
|
||||||
|
'
|
||||||
|
'Label4
|
||||||
|
'
|
||||||
|
Me.Label4.AutoSize = True
|
||||||
|
Me.Label4.Location = New System.Drawing.Point(160, 56)
|
||||||
|
Me.Label4.Name = "Label4"
|
||||||
|
Me.Label4.Size = New System.Drawing.Size(42, 13)
|
||||||
|
Me.Label4.TabIndex = 4
|
||||||
|
Me.Label4.Text = "Ordner:"
|
||||||
|
'
|
||||||
|
'Label5
|
||||||
|
'
|
||||||
|
Me.Label5.AutoSize = True
|
||||||
|
Me.Label5.Location = New System.Drawing.Point(294, 56)
|
||||||
|
Me.Label5.Name = "Label5"
|
||||||
|
Me.Label5.Size = New System.Drawing.Size(62, 13)
|
||||||
|
Me.Label5.TabIndex = 6
|
||||||
|
Me.Label5.Text = "U Ordner 1:"
|
||||||
|
'
|
||||||
|
'Label6
|
||||||
|
'
|
||||||
|
Me.Label6.AutoSize = True
|
||||||
|
Me.Label6.Location = New System.Drawing.Point(428, 56)
|
||||||
|
Me.Label6.Name = "Label6"
|
||||||
|
Me.Label6.Size = New System.Drawing.Size(62, 13)
|
||||||
|
Me.Label6.TabIndex = 8
|
||||||
|
Me.Label6.Text = "U Ordner 2:"
|
||||||
|
'
|
||||||
|
'Label7
|
||||||
|
'
|
||||||
|
Me.Label7.AutoSize = True
|
||||||
|
Me.Label7.Location = New System.Drawing.Point(562, 56)
|
||||||
|
Me.Label7.Name = "Label7"
|
||||||
|
Me.Label7.Size = New System.Drawing.Size(62, 13)
|
||||||
|
Me.Label7.TabIndex = 10
|
||||||
|
Me.Label7.Text = "U Ordner 3:"
|
||||||
|
'
|
||||||
|
'Label8
|
||||||
|
'
|
||||||
|
Me.Label8.AutoSize = True
|
||||||
|
Me.Label8.Location = New System.Drawing.Point(562, 2)
|
||||||
|
Me.Label8.Name = "Label8"
|
||||||
|
Me.Label8.Size = New System.Drawing.Size(33, 13)
|
||||||
|
Me.Label8.TabIndex = 13
|
||||||
|
Me.Label8.Text = "MAX:"
|
||||||
|
'
|
||||||
|
'Button1
|
||||||
|
'
|
||||||
|
Me.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
||||||
|
Me.Button1.Location = New System.Drawing.Point(278, 194)
|
||||||
|
Me.Button1.Name = "Button1"
|
||||||
|
Me.Button1.Size = New System.Drawing.Size(165, 33)
|
||||||
|
Me.Button1.TabIndex = 14
|
||||||
|
Me.Button1.Text = "Start"
|
||||||
|
Me.Button1.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'Label9
|
||||||
|
'
|
||||||
|
Me.Label9.AutoSize = True
|
||||||
|
Me.Label9.Location = New System.Drawing.Point(428, 2)
|
||||||
|
Me.Label9.Name = "Label9"
|
||||||
|
Me.Label9.Size = New System.Drawing.Size(23, 13)
|
||||||
|
Me.Label9.TabIndex = 17
|
||||||
|
Me.Label9.Text = "bis:"
|
||||||
|
'
|
||||||
|
'Label10
|
||||||
|
'
|
||||||
|
Me.Label10.AutoSize = True
|
||||||
|
Me.Label10.Location = New System.Drawing.Point(294, 2)
|
||||||
|
Me.Label10.Name = "Label10"
|
||||||
|
Me.Label10.Size = New System.Drawing.Size(28, 13)
|
||||||
|
Me.Label10.TabIndex = 15
|
||||||
|
Me.Label10.Text = "von:"
|
||||||
|
'
|
||||||
|
'txtBis
|
||||||
|
'
|
||||||
|
Me.txtBis._DateTimeOnly = False
|
||||||
|
Me.txtBis._numbersOnly = False
|
||||||
|
Me.txtBis._numbersOnlyKommastellen = ""
|
||||||
|
Me.txtBis._numbersOnlyTrennzeichen = True
|
||||||
|
Me.txtBis._Prozent = False
|
||||||
|
Me.txtBis._ShortDateNew = True
|
||||||
|
Me.txtBis._ShortDateOnly = False
|
||||||
|
Me.txtBis._TimeOnly = False
|
||||||
|
Me.txtBis._TimeOnly_Seconds = False
|
||||||
|
Me.txtBis._value = "31.12.2020"
|
||||||
|
Me.txtBis._Waehrung = False
|
||||||
|
Me.txtBis._WaehrungZeichen = True
|
||||||
|
Me.txtBis.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.txtBis.Location = New System.Drawing.Point(431, 19)
|
||||||
|
Me.txtBis.MaxLength = 10
|
||||||
|
Me.txtBis.MaxLineLength = -1
|
||||||
|
Me.txtBis.MaxLines_Warning = ""
|
||||||
|
Me.txtBis.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.txtBis.Name = "txtBis"
|
||||||
|
Me.txtBis.Size = New System.Drawing.Size(128, 20)
|
||||||
|
Me.txtBis.TabIndex = 18
|
||||||
|
Me.txtBis.Text = "31.12.2020"
|
||||||
|
'
|
||||||
|
'txtVon
|
||||||
|
'
|
||||||
|
Me.txtVon._DateTimeOnly = False
|
||||||
|
Me.txtVon._numbersOnly = False
|
||||||
|
Me.txtVon._numbersOnlyKommastellen = ""
|
||||||
|
Me.txtVon._numbersOnlyTrennzeichen = True
|
||||||
|
Me.txtVon._Prozent = False
|
||||||
|
Me.txtVon._ShortDateNew = True
|
||||||
|
Me.txtVon._ShortDateOnly = False
|
||||||
|
Me.txtVon._TimeOnly = False
|
||||||
|
Me.txtVon._TimeOnly_Seconds = False
|
||||||
|
Me.txtVon._value = "01.01.2020"
|
||||||
|
Me.txtVon._Waehrung = False
|
||||||
|
Me.txtVon._WaehrungZeichen = True
|
||||||
|
Me.txtVon.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.txtVon.Location = New System.Drawing.Point(297, 19)
|
||||||
|
Me.txtVon.MaxLength = 10
|
||||||
|
Me.txtVon.MaxLineLength = -1
|
||||||
|
Me.txtVon.MaxLines_Warning = ""
|
||||||
|
Me.txtVon.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.txtVon.Name = "txtVon"
|
||||||
|
Me.txtVon.Size = New System.Drawing.Size(128, 20)
|
||||||
|
Me.txtVon.TabIndex = 16
|
||||||
|
Me.txtVon.Text = "01.01.2020"
|
||||||
|
'
|
||||||
|
'txtMax
|
||||||
|
'
|
||||||
|
Me.txtMax._DateTimeOnly = False
|
||||||
|
Me.txtMax._numbersOnly = False
|
||||||
|
Me.txtMax._numbersOnlyKommastellen = ""
|
||||||
|
Me.txtMax._numbersOnlyTrennzeichen = True
|
||||||
|
Me.txtMax._Prozent = False
|
||||||
|
Me.txtMax._ShortDateNew = False
|
||||||
|
Me.txtMax._ShortDateOnly = False
|
||||||
|
Me.txtMax._TimeOnly = False
|
||||||
|
Me.txtMax._TimeOnly_Seconds = False
|
||||||
|
Me.txtMax._value = "1000"
|
||||||
|
Me.txtMax._Waehrung = False
|
||||||
|
Me.txtMax._WaehrungZeichen = True
|
||||||
|
Me.txtMax.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.txtMax.Location = New System.Drawing.Point(565, 19)
|
||||||
|
Me.txtMax.MaxLineLength = -1
|
||||||
|
Me.txtMax.MaxLines_Warning = ""
|
||||||
|
Me.txtMax.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.txtMax.Name = "txtMax"
|
||||||
|
Me.txtMax.Size = New System.Drawing.Size(128, 20)
|
||||||
|
Me.txtMax.TabIndex = 12
|
||||||
|
Me.txtMax.Text = "1000"
|
||||||
|
Me.txtMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
|
||||||
|
'
|
||||||
|
'txtUOrdner3
|
||||||
|
'
|
||||||
|
Me.txtUOrdner3._DateTimeOnly = False
|
||||||
|
Me.txtUOrdner3._numbersOnly = False
|
||||||
|
Me.txtUOrdner3._numbersOnlyKommastellen = ""
|
||||||
|
Me.txtUOrdner3._numbersOnlyTrennzeichen = True
|
||||||
|
Me.txtUOrdner3._Prozent = False
|
||||||
|
Me.txtUOrdner3._ShortDateNew = False
|
||||||
|
Me.txtUOrdner3._ShortDateOnly = False
|
||||||
|
Me.txtUOrdner3._TimeOnly = False
|
||||||
|
Me.txtUOrdner3._TimeOnly_Seconds = False
|
||||||
|
Me.txtUOrdner3._value = ""
|
||||||
|
Me.txtUOrdner3._Waehrung = False
|
||||||
|
Me.txtUOrdner3._WaehrungZeichen = True
|
||||||
|
Me.txtUOrdner3.Enabled = False
|
||||||
|
Me.txtUOrdner3.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.txtUOrdner3.Location = New System.Drawing.Point(565, 73)
|
||||||
|
Me.txtUOrdner3.MaxLineLength = -1
|
||||||
|
Me.txtUOrdner3.MaxLines_Warning = ""
|
||||||
|
Me.txtUOrdner3.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.txtUOrdner3.Name = "txtUOrdner3"
|
||||||
|
Me.txtUOrdner3.Size = New System.Drawing.Size(128, 20)
|
||||||
|
Me.txtUOrdner3.TabIndex = 11
|
||||||
|
'
|
||||||
|
'txtUOrdner2
|
||||||
|
'
|
||||||
|
Me.txtUOrdner2._DateTimeOnly = False
|
||||||
|
Me.txtUOrdner2._numbersOnly = False
|
||||||
|
Me.txtUOrdner2._numbersOnlyKommastellen = ""
|
||||||
|
Me.txtUOrdner2._numbersOnlyTrennzeichen = True
|
||||||
|
Me.txtUOrdner2._Prozent = False
|
||||||
|
Me.txtUOrdner2._ShortDateNew = False
|
||||||
|
Me.txtUOrdner2._ShortDateOnly = False
|
||||||
|
Me.txtUOrdner2._TimeOnly = False
|
||||||
|
Me.txtUOrdner2._TimeOnly_Seconds = False
|
||||||
|
Me.txtUOrdner2._value = ""
|
||||||
|
Me.txtUOrdner2._Waehrung = False
|
||||||
|
Me.txtUOrdner2._WaehrungZeichen = True
|
||||||
|
Me.txtUOrdner2.Enabled = False
|
||||||
|
Me.txtUOrdner2.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.txtUOrdner2.Location = New System.Drawing.Point(431, 73)
|
||||||
|
Me.txtUOrdner2.MaxLineLength = -1
|
||||||
|
Me.txtUOrdner2.MaxLines_Warning = ""
|
||||||
|
Me.txtUOrdner2.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.txtUOrdner2.Name = "txtUOrdner2"
|
||||||
|
Me.txtUOrdner2.Size = New System.Drawing.Size(128, 20)
|
||||||
|
Me.txtUOrdner2.TabIndex = 9
|
||||||
|
'
|
||||||
|
'txtUOrdner1
|
||||||
|
'
|
||||||
|
Me.txtUOrdner1._DateTimeOnly = False
|
||||||
|
Me.txtUOrdner1._numbersOnly = False
|
||||||
|
Me.txtUOrdner1._numbersOnlyKommastellen = ""
|
||||||
|
Me.txtUOrdner1._numbersOnlyTrennzeichen = True
|
||||||
|
Me.txtUOrdner1._Prozent = False
|
||||||
|
Me.txtUOrdner1._ShortDateNew = False
|
||||||
|
Me.txtUOrdner1._ShortDateOnly = False
|
||||||
|
Me.txtUOrdner1._TimeOnly = False
|
||||||
|
Me.txtUOrdner1._TimeOnly_Seconds = False
|
||||||
|
Me.txtUOrdner1._value = ""
|
||||||
|
Me.txtUOrdner1._Waehrung = False
|
||||||
|
Me.txtUOrdner1._WaehrungZeichen = True
|
||||||
|
Me.txtUOrdner1.Enabled = False
|
||||||
|
Me.txtUOrdner1.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.txtUOrdner1.Location = New System.Drawing.Point(297, 73)
|
||||||
|
Me.txtUOrdner1.MaxLineLength = -1
|
||||||
|
Me.txtUOrdner1.MaxLines_Warning = ""
|
||||||
|
Me.txtUOrdner1.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.txtUOrdner1.Name = "txtUOrdner1"
|
||||||
|
Me.txtUOrdner1.Size = New System.Drawing.Size(128, 20)
|
||||||
|
Me.txtUOrdner1.TabIndex = 7
|
||||||
|
'
|
||||||
|
'txtOrdner
|
||||||
|
'
|
||||||
|
Me.txtOrdner._DateTimeOnly = False
|
||||||
|
Me.txtOrdner._numbersOnly = False
|
||||||
|
Me.txtOrdner._numbersOnlyKommastellen = ""
|
||||||
|
Me.txtOrdner._numbersOnlyTrennzeichen = True
|
||||||
|
Me.txtOrdner._Prozent = False
|
||||||
|
Me.txtOrdner._ShortDateNew = False
|
||||||
|
Me.txtOrdner._ShortDateOnly = False
|
||||||
|
Me.txtOrdner._TimeOnly = False
|
||||||
|
Me.txtOrdner._TimeOnly_Seconds = False
|
||||||
|
Me.txtOrdner._value = "AVISO_ANHAENGE"
|
||||||
|
Me.txtOrdner._Waehrung = False
|
||||||
|
Me.txtOrdner._WaehrungZeichen = True
|
||||||
|
Me.txtOrdner.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.txtOrdner.Location = New System.Drawing.Point(163, 73)
|
||||||
|
Me.txtOrdner.MaxLineLength = -1
|
||||||
|
Me.txtOrdner.MaxLines_Warning = ""
|
||||||
|
Me.txtOrdner.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.txtOrdner.Name = "txtOrdner"
|
||||||
|
Me.txtOrdner.Size = New System.Drawing.Size(128, 20)
|
||||||
|
Me.txtOrdner.TabIndex = 5
|
||||||
|
Me.txtOrdner.Text = "AVISO_ANHAENGE"
|
||||||
|
'
|
||||||
|
'txtKategorie
|
||||||
|
'
|
||||||
|
Me.txtKategorie._DateTimeOnly = False
|
||||||
|
Me.txtKategorie._numbersOnly = False
|
||||||
|
Me.txtKategorie._numbersOnlyKommastellen = ""
|
||||||
|
Me.txtKategorie._numbersOnlyTrennzeichen = True
|
||||||
|
Me.txtKategorie._Prozent = False
|
||||||
|
Me.txtKategorie._ShortDateNew = False
|
||||||
|
Me.txtKategorie._ShortDateOnly = False
|
||||||
|
Me.txtKategorie._TimeOnly = False
|
||||||
|
Me.txtKategorie._TimeOnly_Seconds = False
|
||||||
|
Me.txtKategorie._value = "DOKUMENTE"
|
||||||
|
Me.txtKategorie._Waehrung = False
|
||||||
|
Me.txtKategorie._WaehrungZeichen = True
|
||||||
|
Me.txtKategorie.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.txtKategorie.Location = New System.Drawing.Point(29, 73)
|
||||||
|
Me.txtKategorie.MaxLineLength = -1
|
||||||
|
Me.txtKategorie.MaxLines_Warning = ""
|
||||||
|
Me.txtKategorie.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.txtKategorie.Name = "txtKategorie"
|
||||||
|
Me.txtKategorie.Size = New System.Drawing.Size(128, 20)
|
||||||
|
Me.txtKategorie.TabIndex = 3
|
||||||
|
Me.txtKategorie.Text = "DOKUMENTE"
|
||||||
|
'
|
||||||
|
'frmDatenarchivarchiv
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.BackColor = System.Drawing.Color.White
|
||||||
|
Me.ClientSize = New System.Drawing.Size(722, 239)
|
||||||
|
Me.Controls.Add(Me.txtBis)
|
||||||
|
Me.Controls.Add(Me.Label9)
|
||||||
|
Me.Controls.Add(Me.txtVon)
|
||||||
|
Me.Controls.Add(Me.Label10)
|
||||||
|
Me.Controls.Add(Me.Button1)
|
||||||
|
Me.Controls.Add(Me.Label8)
|
||||||
|
Me.Controls.Add(Me.txtMax)
|
||||||
|
Me.Controls.Add(Me.txtUOrdner3)
|
||||||
|
Me.Controls.Add(Me.Label7)
|
||||||
|
Me.Controls.Add(Me.txtUOrdner2)
|
||||||
|
Me.Controls.Add(Me.Label6)
|
||||||
|
Me.Controls.Add(Me.txtUOrdner1)
|
||||||
|
Me.Controls.Add(Me.Label5)
|
||||||
|
Me.Controls.Add(Me.txtOrdner)
|
||||||
|
Me.Controls.Add(Me.Label4)
|
||||||
|
Me.Controls.Add(Me.txtKategorie)
|
||||||
|
Me.Controls.Add(Me.Label3)
|
||||||
|
Me.Controls.Add(Me.Label2)
|
||||||
|
Me.Controls.Add(Me.Label1)
|
||||||
|
Me.Controls.Add(Me.ProgressBar1)
|
||||||
|
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||||
|
Me.Name = "frmDatenarchivarchiv"
|
||||||
|
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
||||||
|
Me.Text = "frmDatenarchivarchiv"
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
Me.PerformLayout()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Friend WithEvents ProgressBar1 As ProgressBar
|
||||||
|
Friend WithEvents Label1 As Label
|
||||||
|
Friend WithEvents Label2 As Label
|
||||||
|
Friend WithEvents Label3 As Label
|
||||||
|
Friend WithEvents txtKategorie As VERAG_PROG_ALLGEMEIN.MyTextBox
|
||||||
|
Friend WithEvents txtOrdner As VERAG_PROG_ALLGEMEIN.MyTextBox
|
||||||
|
Friend WithEvents Label4 As Label
|
||||||
|
Friend WithEvents txtUOrdner1 As VERAG_PROG_ALLGEMEIN.MyTextBox
|
||||||
|
Friend WithEvents Label5 As Label
|
||||||
|
Friend WithEvents txtUOrdner2 As VERAG_PROG_ALLGEMEIN.MyTextBox
|
||||||
|
Friend WithEvents Label6 As Label
|
||||||
|
Friend WithEvents txtUOrdner3 As VERAG_PROG_ALLGEMEIN.MyTextBox
|
||||||
|
Friend WithEvents Label7 As Label
|
||||||
|
Friend WithEvents txtMax As VERAG_PROG_ALLGEMEIN.MyTextBox
|
||||||
|
Friend WithEvents Label8 As Label
|
||||||
|
Friend WithEvents Button1 As Button
|
||||||
|
Friend WithEvents txtBis As VERAG_PROG_ALLGEMEIN.MyTextBox
|
||||||
|
Friend WithEvents Label9 As Label
|
||||||
|
Friend WithEvents txtVon As VERAG_PROG_ALLGEMEIN.MyTextBox
|
||||||
|
Friend WithEvents Label10 As Label
|
||||||
|
End Class
|
||||||
980
initATLASAufschubkonten/frmDatenarchivarchiv.resx
Normal file
980
initATLASAufschubkonten/frmDatenarchivarchiv.resx
Normal file
@@ -0,0 +1,980 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAABAAEAgIAAAAEAGAAoyAAAFgAAACgAAACAAAAAAAEAAAEAGAAAAAAAAMgAAMQOAADEDgAAAAAAAAAA
|
||||||
|
AACRbEd5TB+CWC59USZ8USV9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ8USV9USaCWC55TB+RbEd4Sx5mMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwB4Sx5/VClmMwBuPg5r
|
||||||
|
OglrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOgluPg5mMwB/VCl0RhhmMwBmMwBnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFmMwBmMwB0RhhzRBVmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBz
|
||||||
|
RBV3Sh1mMwBnNQJmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBnNQJmMwB3Sh18UCRmMwBqOQdnNAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFqOQdmMwB8UCR9USZmMwBrOQhn
|
||||||
|
NAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9
|
||||||
|
USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBmMwDm4N3/////////
|
||||||
|
///////39fR0SSZmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCAXUL/////////////////
|
||||||
|
//////////////////////////////////////////////90SSZmMwBmMwBmMwBmMwBmMwB0SSb39fT/
|
||||||
|
//////////////9mMwBmMwBmMwBmMwBmMwBmMwBmMwCAXUL///////////////////+YfWtmMwBmMwBm
|
||||||
|
MwBmMwB0SSbu6+n////////////39fR0SSZmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwD39fT/////
|
||||||
|
///////////Bs6pmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwC3p5zUy8X////////////////L
|
||||||
|
v7itmo1mMwBmMwCYfWv///////90SSZmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhn
|
||||||
|
NAFmMwBmMwBmMwB0SSb////////////////////////Lv7hmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwDu6+n///////////////////////////////////////////////////////////+j
|
||||||
|
jH1mMwBmMwBmMwBmMwBmMwBmMwDm4N3///////////////+MblhmMwBmMwBmMwBmMwBmMwBmMwC3p5z/
|
||||||
|
///////////////m4N1mMwBmMwBmMwBmMwBmMwBmMwCYfWv////////////////Bs6pmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwB0SSb///////////////////+jjH1mMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCt
|
||||||
|
mo3////////////////////////////////////m4N2Mbli3p5z///////+jjH1mMwBmMwBmMwBmMwBm
|
||||||
|
MwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwCMblj///////////////////////////+M
|
||||||
|
blhmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDUy8X/////////////////////////////
|
||||||
|
///////////////////////////////Lv7hmMwBmMwBmMwBmMwBmMwBmMwDBs6r///////////////+3
|
||||||
|
p5xmMwBmMwBmMwBmMwBmMwBmMwDm4N3///////////////+3p5xmMwBmMwBmMwBmMwBmMwBmMwBmMwDU
|
||||||
|
y8X///////////////+AXUJmMwBmMwBmMwBmMwBmMwBmMwBmMwCYfWv///////////////////90SSZm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwDLv7j////////////////////////////////////////////39fTm
|
||||||
|
4N3///////+3p5xmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwC3
|
||||||
|
p5z////////////////////////////d1tFmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwC3
|
||||||
|
p5z////////////////39fRmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwCjjH3////////////////Lv7hmMwBmMwBmMwBmMwBmMwCAXUL///////////////////90
|
||||||
|
SSZmMwBmMwBmMwBmMwBmMwBmMwBmMwCAXUL39fT////////////Lv7hmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwC3p5z////////////////39fRmMwBmMwBmMwBmMwBmMwBmMwBmMwC3p5z////////////////////U
|
||||||
|
y8WAXUJmMwBmMwC3p5z39fT////////////////////Uy8VmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9
|
||||||
|
USZ9USZmMwBrOQhnNAFmMwBmMwBmMwDBs6r////////////////u6+n///////////+tmo1mMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCMblj///////////////////90SSZmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCMblj////////////////m4N1mMwBmMwBmMwBm
|
||||||
|
MwBmMwC3p5z////////////////Uy8VmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwC3p5z/////////
|
||||||
|
///////////////////////////////////////////////////////Uy8VmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwD39fT////////////////Lv7hmMwBmMwBmMwBmMwBmMwCAXULu6+n////////////////39fRm
|
||||||
|
MwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwDm4N3/////////////
|
||||||
|
//+jjH3////////////u6+lmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwB0SSb/////////////
|
||||||
|
//////+jjH1mMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwD3
|
||||||
|
9fT///////////////90SSZmMwBmMwBmMwBmMwDm4N3///////////////+jjH1mMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwDu6+n/////////////////////////////////////////////////////
|
||||||
|
//////+3p5xmMwBmMwBmMwBmMwBmMwBmMwCjjH3///////////////////+MblhmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwCMblj///////////////////90SSZmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhn
|
||||||
|
NAFmMwBmMwBmMwD39fT///////////////9mMwDLv7j///////////+3p5xmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwDm4N3////////////////Bs6pmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDUy8X///////////////+YfWtmMwBmMwBmMwCAXUL/////////
|
||||||
|
///////39fR0SSZmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCYfWv/////////////////////
|
||||||
|
//////////////////////////////////////+jjH1mMwBmMwBmMwBmMwBmMwBmMwC3p5z/////////
|
||||||
|
//////////9mMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDUy8X///////////////+jjH1mMwBmMwBmMwBm
|
||||||
|
MwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwCMblj////////////////m4N1mMwCAXUL39fT/
|
||||||
|
///////39fSAXUJmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDBs6r////////////////Uy8VmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwC3p5z/////////////
|
||||||
|
///////////////////////////////////////u6+lmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwDUy8X////////////u6+lmMwBmMwBmMwBmMwCMblj///////////////////90SSZmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwC3p5z///////////////////9mMwBmMwBmMwB0SSb/////////////////////
|
||||||
|
//////////////+3p5xmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwCjjH3/
|
||||||
|
///////////////Uy8VmMwBmMwC3p5z////////////Lv7hmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwC3p5z////////////////////////////////////////////////////m4N1mMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwCjjH3////////////////////////////////////////////////////////////d
|
||||||
|
1tGMblhmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCAXUL///////////////+tmo1mMwBmMwBmMwCt
|
||||||
|
mo3////////////////m4N1mMwBmMwBmMwBmMwBmMwBmMwBmMwC3p5z///////////////////90SSZm
|
||||||
|
MwBmMwBmMwDm4N3////////////////////////////////Uy8VmMwBmMwBmMwBmMwBnNAFrOQhmMwB9
|
||||||
|
USZ9USZmMwBrOQhnNAFmMwBmMwC3p5z///////////////+3p5xmMwBmMwB0SSb39fT///////////+Y
|
||||||
|
fWtmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCMblj/////////////////////////////////////////
|
||||||
|
//////////////9mMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwB0SSb/////////////////////////////
|
||||||
|
//////////////////////////////////////+YfWtmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwC3
|
||||||
|
p5z////////////39fR0SSZmMwBmMwDBs6r////////////////Uy8VmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwCjjH3///////////////////+jjH1mMwBmMwBmMwDBs6r////////////////////////////////3
|
||||||
|
9fRmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwDUy8X///////////////+t
|
||||||
|
mo1mMwBmMwBmMwCtmo3////////////m4N1mMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwD39fT/////
|
||||||
|
//////////////////////////////////////////////+YfWtmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwDu6+n///////////////90SSZmMwBmMwBmMwBmMwBmMwCjjH3m4N3////////////////39fR0SSZm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDu6+n///////////+3p5xmMwBmMwDUy8X/////////////
|
||||||
|
//+3p5xmMwBmMwBmMwBmMwBmMwBmMwBmMwB0SSb////////////////////Bs6pmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhn
|
||||||
|
NAFmMwBmMwDu6+n///////////////+MblhmMwBmMwBmMwBmMwDu6+n///////////+tmo1mMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwDd1tH////////////////Bs6pmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDUy8X///////////////+YfWtmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwB0SSbu6+n///////////////+3p5xmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCjjH3/////////
|
||||||
|
///39fSAXUJmMwD39fT///////////////+MblhmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDUy8X/////
|
||||||
|
///////////39fRmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDBs6r////Uy8W3p5y3p5yYfWtmMwBmMwBm
|
||||||
|
MwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwB0SSb///////////////////90SSZmMwBmMwBmMwBm
|
||||||
|
MwCtmo3////////////u6+l0SSZmMwBmMwBmMwBmMwBmMwBmMwBmMwDBs6r////////////////m4N1m
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwC3p5z/////////
|
||||||
|
//////+3p5xmMwBmMwBmMwBmMwBmMwBmMwBmMwDLv7j////////////////Bs6pmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwDUy8X////////////Lv7h0SSb///////////////////90SSZmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwCYfWv///////////////////+3p5xmMwBmMwBmMwBmMwBmMwBmMwBmMwDu
|
||||||
|
6+n///////////////+jjH1mMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwCYfWv/////
|
||||||
|
///////////u6+lmMwBmMwBmMwBmMwBmMwBmMwDd1tH///////////+3p5xmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwCjjH3///////////////////90SSZmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwCYfWv////////////////Uy8VmMwBmMwBmMwBmMwBmMwBmMwBmMwDm4N3/////
|
||||||
|
//////////+3p5xmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCAXUL///////////////+tmo3/
|
||||||
|
///////////////m4N1mMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDBs6r/////////////////
|
||||||
|
//+YfWtmMwBmMwBmMwBmMwBmMwCtmo3////////////////u6+lmMwBmMwBmMwBmMwBnNAFrOQhmMwB9
|
||||||
|
USZ9USZmMwBrOQhnNAFmMwC3p5z////////////////Uy8VmMwBmMwBmMwBmMwBmMwBmMwCYfWv/////
|
||||||
|
//////////+AXUJmMwBmMwBmMwBmMwBmMwBmMwCAXUL///////////////////+MblhmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwB0SSb////////////////u6+lmMwBm
|
||||||
|
MwBmMwBmMwBmMwCAXULLv7j///////////////////+MblhmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwC3p5z////////////////////////////////Lv7hmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwDd1tH///////////////////+3p5x0SSZmMwBmMwC3p5z///////////////////+t
|
||||||
|
mo1mMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwDLv7j////////////////Bs6pm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwDd1tH////////////Uy8VmMwBmMwBmMwBmMwBmMwBmMwBmMwD39fT/
|
||||||
|
//////////////////////////////////////////////////////////90SSZmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwDm4N3////////////////////////////////////////////////////////////Bs6pmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDu6+n///////////////////////////+3
|
||||||
|
p5xmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDUy8X/////////////////////////
|
||||||
|
///////////////////////////Lv7hmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhn
|
||||||
|
NAFmMwDm4N3///////////////+tmo1mMwBmMwBmMwBmMwBmMwBmMwBmMwCAXUL///////////////+Y
|
||||||
|
fWtmMwBmMwBmMwBmMwBmMwBmMwDUy8X/////////////////////////////////////////////////
|
||||||
|
//////////+YfWtmMwBmMwBmMwBmMwBmMwBmMwDLv7j/////////////////////////////////////
|
||||||
|
///////////////////Uy8VmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCj
|
||||||
|
jH3///////////////////////////+MblhmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwCtmo339fT///////////////////////////////////////+tmo1mMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAF0SSb///////////////////+MblhmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwDLv7j////////////u6+l0SSZmMwBmMwBmMwBmMwBmMwC3p5z/////////////////
|
||||||
|
//////////////////////////////////////////+3p5xmMwBmMwBmMwBmMwBmMwBmMwC3p5z/////
|
||||||
|
///////////////////////////////////////m4N23p5yMblhmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwDd1tH///////////////////////9mMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwCjjH23p5z39fT////////////////Uy8W3
|
||||||
|
p5xmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9
|
||||||
|
USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhn
|
||||||
|
NAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9
|
||||||
|
USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ9USZmMwBrOQhnNAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNAFrOQhmMwB9USZ8UCRmMwBqOQdn
|
||||||
|
NAFmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBnNAFqOQdmMwB8UCR3Sh1mMwBnNQJmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBnNQJmMwB3Sh1zRBVmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBz
|
||||||
|
RBV0RhhmMwBmMwBnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFnNAFn
|
||||||
|
NAFnNAFnNAFnNAFnNAFnNAFmMwBmMwB0Rhh/VClmMwBuPg5rOglrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhr
|
||||||
|
OQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOQhrOgluPg5mMwB/VCl4Sx5mMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBmMwBm
|
||||||
|
MwBmMwBmMwBmMwB4Sx6RbEd5TB+CWC59USZ8USV9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ9
|
||||||
|
USZ9USZ9USZ9USZ9USZ9USZ9USZ9USZ8USV9USaCWC55TB+RbEf/////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
///////////////////////////////////////d3fOrq+Krq+Krq+Krq+Krq+Krq+Lp6ff/////////
|
||||||
|
///////////////////////////p6ferq+Krq+Krq+Krq+Krq+Krq+Krq+L///////////+rq+Krq+Kr
|
||||||
|
q+Krq+Krq+Krq+Krq+Krq+Krq+Krq+Krq+Krq+Krq+Krq+Ld3fP/////////////////////////////
|
||||||
|
//////////+rq+Krq+Krq+Krq+Krq+K4uOb////////////////////d3fOrq+Krq+Krq+Krq+Lp6ff/
|
||||||
|
///////////////p6ferq+Krq+Krq+Krq+Krq+Krq+K4uOb///////////////////+rq+Krq+Krq+Kr
|
||||||
|
q+Krq+Krq+Krq+L///////////////////+rq+Krq+Krq+Krq+Krq+K4uOb/////////////////////
|
||||||
|
///////////p6ferq+Krq+Krq+Krq+Krq+LFxer////////////////////////////////d3fMpKcID
|
||||||
|
A70DA70DA70DA70DA72Ojtn////////////////////////////////////FxeoDA70DA70DA70DA70D
|
||||||
|
A70DA71ERMf///////////8pKcIDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA71+ftTR0e////////////////////////////8pKcIDA70DA70DA70DA70pKcL/////////////
|
||||||
|
//////+rq+IDA70DA70DA70DA72Ojtn////////////////d3fMDA70DA70DA70DA70DA70DA71ERMf/
|
||||||
|
//////////////////8pKcIDA70DA70DA70DA70DA70pKcL///////////////////8pKcIDA70DA70D
|
||||||
|
A70DA71ERMf///////////////////////////////+rq+IDA70DA70DA70DA70DA71ZWcv/////////
|
||||||
|
//////////////////////////+rq+IDA70DA70DA70DA70DA70DA73p6ff/////////////////////
|
||||||
|
//////////+rq+IDA70DA70DA70DA70DA70DA71+ftT///////////9ZWcsDA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA72Ojtn///////////////////////9sbNAD
|
||||||
|
A70DA70DA70DA70DA73p6ff///////////////+OjtkDA70DA70DA70DA70DA73p6ff/////////////
|
||||||
|
//8pKcIDA70DA70DA70DA70DA70DA7309Pv///////////////9sbNADA70DA70DA70DA70DA70DA73p
|
||||||
|
6ff///////////////9ZWcsDA70DA70DA70DA70DA7309Pv///////////////////////////8pKcID
|
||||||
|
A70DA70DA70DA70DA70DA73////////////////////////////////////09PspKcIDA70DA70DA70D
|
||||||
|
A70DA72rq+L///////////////////////////////+OjtkDA70DA70DA70DA70DA70DA72rq+L/////
|
||||||
|
//////+dnd0DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A71ZWcv09Pv///////////////+dnd0DA70DA70DA70DA70DA73Fxer///////////////9ZWcsDA70D
|
||||||
|
A70DA70DA70DA72Ojtn///////////////9ZWcsDA70DA70DA70DA70DA70DA73d3fP/////////////
|
||||||
|
//+dnd0DA70DA70DA70DA70DA70DA73Fxer///////////////+OjtkDA70DA70DA70DA70DA73R0e//
|
||||||
|
//////////////////////+4uOYDA70DA70DA70DA70DA70DA70DA73d3fP/////////////////////
|
||||||
|
//////////////+rq+IDA70DA70DA70DA70DA70pKcL09Pv///////////////////////////9ZWcsD
|
||||||
|
A70DA70DA70DA70DA70DA73Fxer///////////+rq+IDA70DA70DA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA70DA71ZWcv///////////////+rq+IDA70DA70DA70DA70D
|
||||||
|
A72rq+L///////////////8pKcIDA70DA70DA70DA70DA70DA73p6ff///////////+OjtkDA70DA70D
|
||||||
|
A70DA70DA70DA72rq+L///////////////+rq+IDA70DA70DA70DA70DA70DA72rq+L/////////////
|
||||||
|
//+rq+IDA70DA70DA70DA70DA72rq+L///////////////////////9ZWcsDA70DA70DA70DA70DA70D
|
||||||
|
A70DA73Fxer////////////////////////////////////09PspKcIDA70DA70DA70DA70DA71+ftSr
|
||||||
|
q+Krq+Krq+Krq+Krq+Krq+Krq+IpKcIDA70DA70DA70DA70DA70DA73d3fP////////////R0e8DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA72dnd3/
|
||||||
|
///////////d3fMDA70DA70DA70DA70DA71+ftT////////////p6fcDA70DA70DA70DA70DA70DA70D
|
||||||
|
A72Ojtn///////////+rq+IDA70DA70DA70DA70DA70DA72dnd3////////////////R0e8DA70DA70D
|
||||||
|
A70DA70DA70DA71+ftT////////////////R0e8DA70DA70DA70DA70DA72dnd3/////////////////
|
||||||
|
///R0e8DA70DA70DA70DA70DA70DA70DA70DA72dnd3/////////////////////////////////////
|
||||||
|
//+rq+IDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA73////////////////09PsDA70DA70DA70DA70DA70DA72dnd3////////////09Purq+JZWcsD
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA73p6ff////////09PsDA70DA70DA70DA70DA71ZWcv/////////
|
||||||
|
///FxeoDA70DA70DA70DA70DA70DA70DA70DA73p6ff////////R0e8DA70DA70DA70DA70DA70DA71s
|
||||||
|
bND////////////////09PsDA70DA70DA70DA70DA70DA71ZWcv////////////////09PsDA70DA70D
|
||||||
|
A70DA70DA71ZWcv///////////////////+OjtkDA70DA70DA70DA70DA70DA70DA70DA71+ftT/////
|
||||||
|
///////////////////////////////////09PspKcIDA70DA70DA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA71ZWcv///////////////////8pKcIDA70DA70DA70DA70D
|
||||||
|
A71sbND///////////////////////+rq+IDA70DA70DA70DA70DA70DA70DA72Ojtn///////////9E
|
||||||
|
RMcDA70DA70DA70DA70DA73///////////+rq+IDA70DA70DA70DA70DA70DA70DA70DA72Ojtn/////
|
||||||
|
///09PsDA70DA70DA70DA70DA70DA70pKcL///////////////////9ERMcDA70DA70DA70DA70DA70D
|
||||||
|
A73///////////////////8pKcIDA70DA70DA70DA70pKcL////////////////09PsDA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA71ERMf///////////////////////////////////////////+rq+IDA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA72Ojtn/////////
|
||||||
|
//////////9+ftQDA70DA70DA70DA70DA70pKcL///////////////////////////+OjtkDA70DA70D
|
||||||
|
A70DA70DA70DA70DA7309Pv///////9+ftQDA70DA70DA70DA70DA73d3fP///////+OjtkDA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA73p6ff///////8pKcIDA70DA70DA70DA70DA70DA7309Pv/////////
|
||||||
|
//////9+ftQDA70DA70DA70DA70DA70DA73d3fP///////////////9+ftQDA70DA70DA70DA70DA73d
|
||||||
|
3fP///////////+rq+IDA70DA70DA70DA70DA70DA70DA70DA70DA70DA7309Pv/////////////////
|
||||||
|
///////////////////////09PspKcIDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA72rq+L///////////////////+dnd0DA70DA70DA70DA70DA70DA73p6ff/////
|
||||||
|
///////////////////p6fcDA70DA70DA70DA70DA70DA70DA73Fxer///////+rq+IDA70DA70DA70D
|
||||||
|
A70DA724uOb///////9ZWcsDA70DA70DA70DA70DA70DA70DA70DA70DA72Ojtn///////9+ftQDA70D
|
||||||
|
A70DA70DA70DA70DA73Fxer///////////////+dnd0DA70DA70DA70DA70DA70DA724uOb/////////
|
||||||
|
//////+dnd0DA70DA70DA70DA70DA73Fxer///////////8pKcIDA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA73R0e////////////////////////////////////////////+rq+IDA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA73Fxer///////////////////+4uOYD
|
||||||
|
A70DA70DA70DA70DA70DA73Fxer///////////////////////////9+ftQDA70DA70DA70DA70DA70D
|
||||||
|
A72dnd3////////FxeoDA70DA70DA70DA70DA72dnd3///////8pKcIDA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA73R0e////+dnd0DA70DA70DA70DA70DA70DA72rq+L///////////////+4uOYDA70D
|
||||||
|
A70DA70DA70DA70DA72dnd3///////////////+4uOYDA70DA70DA70DA70DA72rq+L///////+4uOYD
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA72rq+L/////////////////////////////////
|
||||||
|
///////////09PspKcIDA70DA70DA70DA70DA73R0e////////////9ZWcsDA70DA70DA70DA70DA70D
|
||||||
|
A73p6ff////////////////////d3fMDA70DA70DA70DA70DA70DA72rq+L/////////////////////
|
||||||
|
//////+rq+IDA70DA70DA70DA70DA70DA71sbND////////d3fMDA70DA70DA70DA70DA71+ftT////d
|
||||||
|
3fMDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA71sbND///+4uOYDA70DA70DA70DA70DA70D
|
||||||
|
A72Ojtn////////////////d3fMDA70DA70DA70DA70DA70DA71+ftT////////////////d3fMDA70D
|
||||||
|
A70DA70DA70DA71+ftT///////9sbNADA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA72dnd3/
|
||||||
|
//////////////////////////////////////////////+rq+IDA70DA70DA70DA70DA71sbND/////
|
||||||
|
//////8DA70DA70DA70DA70DA70DA70pKcL///////////////////////////8DA70DA70DA70DA70D
|
||||||
|
A70DA72Ojtn////////////////////////////d3fMDA70DA70DA70DA70DA70DA71ERMf/////////
|
||||||
|
//8pKcIDA70DA70DA70DA70pKcL////FxeoDA70DA70DA70DA70DA70pKcKOjtkDA70DA70DA70DA70D
|
||||||
|
A73R0e/d3fMDA70DA70DA70DA70DA70DA71ZWcv///////////////////8DA70DA70DA70DA70DA70D
|
||||||
|
A70pKcL////////////////09PsDA70DA70DA70DA70DA71ZWcv////d3fMDA70DA70DA70DA70DA70D
|
||||||
|
A71ZWcsDA70DA70DA70DA70DA71ZWcv////////////////////////////////////////////////0
|
||||||
|
9PspKcIDA70DA70DA70DA70DA73p6ff////p6fcDA70DA70DA70DA70DA70DA71sbND/////////////
|
||||||
|
//////////////9ZWcsDA70DA70DA70DA70DA71ZWcv////////////////////////////p6fcDA70D
|
||||||
|
A70DA70DA70DA70DA71ERMf///////////9ZWcsDA70DA70DA70DA70DA7309Purq+IDA70DA70DA70D
|
||||||
|
A70DA71ZWcvp6fcDA70DA70DA70DA70DA71sbND///8DA70DA70DA70DA70DA70DA70DA73/////////
|
||||||
|
//////////9ZWcsDA70DA70DA70DA70DA70DA7309Pv///////////////9ZWcsDA70DA70DA70DA70D
|
||||||
|
A73///+OjtkDA70DA70DA70DA70DA70DA724uOZZWcsDA70DA70DA70DA70pKcL/////////////////
|
||||||
|
//////////////////////////////////+rq+IDA70DA70DA70DA70DA72Ojtn////FxeoDA70DA70D
|
||||||
|
A70DA70DA70DA72dnd3///////////////////////////9+ftQDA70DA70DA70DA70DA70DA73/////
|
||||||
|
///////////////////////p6fcDA70DA70DA70DA70DA70DA71ERMf///////////+OjtkDA70DA70D
|
||||||
|
A70DA70DA73R0e9+ftQDA70DA70DA70DA70DA72Ojtn///+dnd0DA70DA70DA70DA70DA73R0e9ZWcsD
|
||||||
|
A70DA70DA70DA70DA70DA73d3fP///////////////9+ftQDA70DA70DA70DA70DA70DA73R0e//////
|
||||||
|
//////////9+ftQDA70DA70DA70DA70DA73R0e8DA70DA70DA70DA70DA70DA70pKcL09Pt+ftQDA70D
|
||||||
|
A70DA70DA70DA73p6ff////////////////////////////////////////////////09PspKcIDA70D
|
||||||
|
A70DA70DA70DA73p6ferq+IDA70DA70DA70DA70DA70DA72rq+L///////////////////////////+r
|
||||||
|
q+IDA70DA70DA70DA70DA70DA73d3fP////////////////////////d3fMDA70DA70DA70DA70DA70D
|
||||||
|
A71ZWcv///////////+rq+IDA70DA70DA70DA70DA72rq+JZWcsDA70DA70DA70DA70DA72rq+L////0
|
||||||
|
9PspKcIDA70DA70DA70DA71sbNB+ftQDA70DA70DA70DA70DA70DA73Fxer///////////////+rq+ID
|
||||||
|
A70DA70DA70DA70DA70DA72rq+L///////////////+rq+IDA70DA70DA70DA70DA71ZWcsDA70DA70D
|
||||||
|
A70DA70DA70DA72dnd3///+rq+IDA70DA70DA70DA70DA73Fxer/////////////////////////////
|
||||||
|
//////////////////////+rq+IDA70DA70DA70DA70DA72rq+Kdnd0DA70DA70DA70DA70DA70DA73R
|
||||||
|
0e/////////////////////////////FxeoDA70DA70DA70DA70DA70DA73Fxer/////////////////
|
||||||
|
//////+rq+IDA70DA70DA70DA70DA70DA71+ftT////////////R0e8DA70DA70DA70DA70DA72OjtkD
|
||||||
|
A70DA70DA70DA70DA70DA73Fxer///////+rq+IDA70DA70DA70DA70DA71sbNADA70DA70DA70DA70D
|
||||||
|
A70DA72dnd3////////////////FxeoDA70DA70DA70DA70DA70DA72dnd3////////////////FxeoD
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA73p6ff////FxeoDA70DA70DA70DA70DA72r
|
||||||
|
q+L////////////////////////////////////////////////////09PspKcIDA70DA70DA70DA70p
|
||||||
|
KcJZWcsDA70DA70DA70DA70DA70DA7309Pv////////////////////////////p6fcDA70DA70DA70D
|
||||||
|
A70DA70DA72dnd3////////////////////09PspKcIDA70DA70DA70DA70DA70DA72rq+L/////////
|
||||||
|
///09PsDA70DA70DA70DA70DA70pKcIDA70DA70DA70DA70DA70DA73d3fP////////09PspKcIDA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA70DA71+ftT////////////////p6fcDA70DA70DA70DA70D
|
||||||
|
A70DA71ZWcv////////////////d3fMDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA71sbND/
|
||||||
|
///////d3fMDA70DA70DA70DA70DA71+ftT/////////////////////////////////////////////
|
||||||
|
//////////+rq+IDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70pKcL/////////////////
|
||||||
|
//////////////////8pKcIDA70DA70DA70DA70DA71+ftT////////////////p6fdZWcsDA70DA70D
|
||||||
|
A70DA70DA70DA70DA73p6ff///////////////8pKcIDA70DA70DA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA73///////////////+rq+IDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA71ERMf/////
|
||||||
|
//////////////8pKcIDA70DA70DA70DA70DA70pKcL///////////////////8pKcIDA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA73Fxer///////////8pKcIDA70DA70DA70DA71ZWcv/////////////
|
||||||
|
///////////////////////////////////////////09PspKcIDA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA71+ftT///////////////////////////////////9ZWcsDA70DA70DA70DA70DA70pKcKr
|
||||||
|
q+Krq+Krq+JsbNADA70DA70DA70DA70DA70DA70DA70DA71sbND///////////////////9+ftQDA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA71ERMf////////////////09PspKcIDA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA7309Pv///////////////9ZWcsDA70DA70DA70DA70DA70DA73p6ff/
|
||||||
|
//////////////9ZWcsDA70DA70DA70DA70DA70DA70DA70DA70DA71ERMf///////////////9ZWcsD
|
||||||
|
A70DA70DA70DA70DA73///////////////////////////////////////////////////////////+r
|
||||||
|
q+IDA70DA70DA70DA70DA70DA70DA70DA70DA70DA72dnd3/////////////////////////////////
|
||||||
|
//+dnd0DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA73p
|
||||||
|
6ff///////////////////+dnd0DA70DA70DA70DA70DA70DA70DA70DA70DA70DA71+ftT/////////
|
||||||
|
//////////+rq+IDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA73d3fP///////////////+d
|
||||||
|
nd0DA70DA70DA70DA70DA70DA73Fxer///////////////+OjtkDA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA72rq+L///////////////+OjtkDA70DA70DA70DA70DA73d3fP/////////////////////////
|
||||||
|
///////////////////////////////09PspKcIDA70DA70DA70DA70DA70DA70DA70DA70DA724uOb/
|
||||||
|
//////////////////////////////////+rq+IDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA72rq+L///////////////////////+4uOYDA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA72dnd3////////////////////09PspKcIDA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA72rq+L///////////////+rq+IDA70DA70DA70DA70DA70DA72rq+L///////////////+r
|
||||||
|
q+IDA70DA70DA70DA70DA70DA70DA70DA70DA7309Pv///////////////+rq+IDA70DA70DA70DA70D
|
||||||
|
A724uOb///////////////////////////////////////////////////////////+rq+IDA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA73d3fP////////////////////////////////////R0e8DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA72dnd3/////////////////////
|
||||||
|
///////d3fMDA70DA70DA70DA70DA70DA70DA70DA70DA70DA724uOb///////////////////////+r
|
||||||
|
q+IDA70DA70DA70DA70DA70DA70DA70DA70DA70DA72dnd3////////////////R0e8DA70DA70DA70D
|
||||||
|
A70DA70DA71+ftT////////////////R0e8DA70DA70DA70DA70DA70DA70DA70DA72Ojtn/////////
|
||||||
|
///////////FxeoDA70DA70DA70DA70DA72dnd3/////////////////////////////////////////
|
||||||
|
///////////////////09PspKcIDA70DA70DA70DA70DA70DA70DA70DA7309Pv/////////////////
|
||||||
|
///////////////////09PsDA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70DA70p
|
||||||
|
KcLFxer///////////////////////////////////8DA70DA70DA70DA70DA70DA70DA70DA70DA70D
|
||||||
|
A73R0e/////////////////////////09PspKcIDA70DA70DA70DA70DA70DA70DA70DA70DA71sbND/
|
||||||
|
///////////////09PsDA70DA70DA70DA70DA70DA71ZWcv////////////////09PsDA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA73R0e/////////////////////09PsDA70DA70DA70DA70DA71+ftT/////////
|
||||||
|
//////////////////////////////////////////////////////+rq+IDA70DA70DA70DA70DA70D
|
||||||
|
A70DA71ZWcv///////////////////////////////////////////8pKcIDA70DA70DA70DA70DA70D
|
||||||
|
A70DA70DA70DA70DA70pKcKrq+Krq+L///////////////////////////////////////////9ZWcsD
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA70DA7309Pv///////////////////////////+rq+IDA70DA70D
|
||||||
|
A70DA70DA70DA70DA70DA70DA70DA73///////////////////8pKcIDA70DA70DA70DA70DA70DA73/
|
||||||
|
//////////////////8pKcIDA70DA70DA70DA70DA70DA71ZWcv///////////////////////////8p
|
||||||
|
KcIDA70DA70DA70DA71ERMf/////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
59
initATLASAufschubkonten/frmDatenarchivarchiv.vb
Normal file
59
initATLASAufschubkonten/frmDatenarchivarchiv.vb
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
Imports DocumentFormat.OpenXml.Wordprocessing
|
||||||
|
|
||||||
|
Public Class frmDatenarchivarchiv
|
||||||
|
|
||||||
|
|
||||||
|
Dim SQL As New VERAG_PROG_ALLGEMEIN.SQL
|
||||||
|
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
||||||
|
Try
|
||||||
|
Me.Cursor = Cursors.WaitCursor
|
||||||
|
If txtMax._value = "" Then Me.Cursor = Cursors.Default : Exit Sub
|
||||||
|
If Not IsNumeric(txtMax._value) Then Me.Cursor = Cursors.Default : Exit Sub
|
||||||
|
If Not IsDate(txtVon._value) Then Me.Cursor = Cursors.Default : Exit Sub
|
||||||
|
If Not IsDate(txtBis._value) Then Me.Cursor = Cursors.Default : Exit Sub
|
||||||
|
If txtKategorie.Text Is String.Empty Then Me.Cursor = Cursors.Default : Exit Sub
|
||||||
|
If txtOrdner.Text Is String.Empty Then Me.Cursor = Cursors.Default : Exit Sub
|
||||||
|
|
||||||
|
Dim DT = SQL.loadDgvBySql(" SELECT TOP (" & txtMax._value & ") [da_id] FROM [tblDatenarchiv] inner join tblDatenarchiv_Collection on da_id=coll_daId
|
||||||
|
where da_vorlage=0 and coll_date BETWEEN '" & txtVon._value & "' and '" & txtBis._value & "' and coll_pfad NOT LIKE '%\\stor01.verag.ost.dmn\DatenArchivArchiv%' and coll_pfad NOT LIKE '\\DELETED\%'
|
||||||
|
AND da_kategorie='" & txtKategorie.Text & "' and da_ordner='" & txtOrdner.Text & "'
|
||||||
|
and da_id>=392150 group by [da_id] order by [da_id] ", "FMZOLL")
|
||||||
|
|
||||||
|
If DT Is Nothing Then Me.Cursor = Cursors.Default : Exit Sub
|
||||||
|
If DT.Rows.Count = 0 Then Me.Cursor = Cursors.Default : Exit Sub
|
||||||
|
|
||||||
|
If vbYes = MsgBox("Es werden '" & DT.Rows.Count & "' Einträge verschoben - fortfahren?", vbYesNoCancel) Then
|
||||||
|
|
||||||
|
ProgressBar1.Minimum = 1
|
||||||
|
ProgressBar1.Maximum = DT.Rows.Count
|
||||||
|
ProgressBar1.Step = 1
|
||||||
|
ProgressBar1.Value = 1
|
||||||
|
|
||||||
|
For Each ROW In DT.Rows
|
||||||
|
'Dim DS = New VERAG_PROG_ALLGEMEIN.cDATENSERVER(txtKategorie._value, txtOrdner._value, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, txtMax._value)
|
||||||
|
|
||||||
|
Dim DS = New VERAG_PROG_ALLGEMEIN.cDATENSERVER(ROW("da_id"))
|
||||||
|
If DS.DATA_LIST.LIST.Count > 0 Then
|
||||||
|
DS.moveTo_ARCHIVARCHIV()
|
||||||
|
End If
|
||||||
|
ProgressBar1.PerformStep()
|
||||||
|
|
||||||
|
Label1.Text = ProgressBar1.Value & "/" & DT.Rows.Count
|
||||||
|
|
||||||
|
If DT.Rows.Count < 100 Then
|
||||||
|
Me.Refresh()
|
||||||
|
Else
|
||||||
|
If ProgressBar1.Value Mod 20 = 0 Then
|
||||||
|
Me.Refresh()
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
End If
|
||||||
|
|
||||||
|
Catch ex As Exception
|
||||||
|
VERAG_PROG_ALLGEMEIN.cErrorHandler.ERR(ex.Message, ex.StackTrace, System.Reflection.MethodBase.GetCurrentMethod.Name)
|
||||||
|
End Try
|
||||||
|
Me.Cursor = Cursors.Default
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
428
initATLASAufschubkonten/frmStartOptions.Designer.vb
generated
428
initATLASAufschubkonten/frmStartOptions.Designer.vb
generated
@@ -43,6 +43,7 @@ Partial Class frmStartOptions
|
|||||||
Me.Button12 = New System.Windows.Forms.Button()
|
Me.Button12 = New System.Windows.Forms.Button()
|
||||||
Me.cbxSyskaWdh = New System.Windows.Forms.CheckBox()
|
Me.cbxSyskaWdh = New System.Windows.Forms.CheckBox()
|
||||||
Me.Button10 = New System.Windows.Forms.Button()
|
Me.Button10 = New System.Windows.Forms.Button()
|
||||||
|
Me.txtEZOLLAnhDat = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
Me.piceZollAnh = New System.Windows.Forms.PictureBox()
|
Me.piceZollAnh = New System.Windows.Forms.PictureBox()
|
||||||
Me.lblEZOLLDat = New System.Windows.Forms.LinkLabel()
|
Me.lblEZOLLDat = New System.Windows.Forms.LinkLabel()
|
||||||
Me.Button6 = New System.Windows.Forms.Button()
|
Me.Button6 = New System.Windows.Forms.Button()
|
||||||
@@ -62,15 +63,11 @@ Partial Class frmStartOptions
|
|||||||
Me.tbcntr = New System.Windows.Forms.TabControl()
|
Me.tbcntr = New System.Windows.Forms.TabControl()
|
||||||
Me.TabPage1 = New System.Windows.Forms.TabPage()
|
Me.TabPage1 = New System.Windows.Forms.TabPage()
|
||||||
Me.LinkLabel38 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel38 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox17 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel37 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel37 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox16 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.Button15 = New System.Windows.Forms.Button()
|
Me.Button15 = New System.Windows.Forms.Button()
|
||||||
Me.Button8 = New System.Windows.Forms.Button()
|
Me.Button8 = New System.Windows.Forms.Button()
|
||||||
Me.LinkLabel28 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel28 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.LinkLabel4 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel4 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox13 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.picC0008 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel26 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel26 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.Label2 = New System.Windows.Forms.Label()
|
Me.Label2 = New System.Windows.Forms.Label()
|
||||||
Me.LinkLabel5 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel5 = New System.Windows.Forms.LinkLabel()
|
||||||
@@ -78,35 +75,26 @@ Partial Class frmStartOptions
|
|||||||
Me.LinkLabel23 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel23 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.LinkLabel7 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel7 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.LinkLabel24 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel24 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.Label5 = New System.Windows.Forms.Label()
|
Me.Label5 = New System.Windows.Forms.Label()
|
||||||
Me.LinkLabel8 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel8 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.LinkLabel21 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel21 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox2 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel22 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel22 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.LinkLabel9 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel9 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.Label4 = New System.Windows.Forms.Label()
|
Me.Label4 = New System.Windows.Forms.Label()
|
||||||
Me.LinkLabel10 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel10 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.Label1 = New System.Windows.Forms.Label()
|
Me.Label1 = New System.Windows.Forms.Label()
|
||||||
Me.PictureBox3 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel11 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel11 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox4 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel12 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel12 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox5 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel13 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel13 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox6 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel14 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel14 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox7 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel15 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel15 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.LinkLabel16 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel16 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox8 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.TabPage2 = New System.Windows.Forms.TabPage()
|
Me.TabPage2 = New System.Windows.Forms.TabPage()
|
||||||
Me.Button11 = New System.Windows.Forms.Button()
|
Me.Button11 = New System.Windows.Forms.Button()
|
||||||
Me.Label15 = New System.Windows.Forms.Label()
|
Me.Label15 = New System.Windows.Forms.Label()
|
||||||
Me.Label14 = New System.Windows.Forms.Label()
|
Me.Label14 = New System.Windows.Forms.Label()
|
||||||
Me.cbxOUT_NCTS_TESTORDNER = New System.Windows.Forms.CheckBox()
|
Me.cbxOUT_NCTS_TESTORDNER = New System.Windows.Forms.CheckBox()
|
||||||
Me.cbxISettEZA_VERAG = New System.Windows.Forms.CheckBox()
|
Me.cbxISettEZA_VERAG = New System.Windows.Forms.CheckBox()
|
||||||
Me.PictureBox15 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.Label9 = New System.Windows.Forms.Label()
|
Me.Label9 = New System.Windows.Forms.Label()
|
||||||
Me.Button2 = New System.Windows.Forms.Button()
|
Me.Button2 = New System.Windows.Forms.Button()
|
||||||
Me.Label10 = New System.Windows.Forms.Label()
|
Me.Label10 = New System.Windows.Forms.Label()
|
||||||
@@ -116,7 +104,6 @@ Partial Class frmStartOptions
|
|||||||
Me.cbxISett_EKOL = New System.Windows.Forms.CheckBox()
|
Me.cbxISett_EKOL = New System.Windows.Forms.CheckBox()
|
||||||
Me.cbxISett_TOBB = New System.Windows.Forms.CheckBox()
|
Me.cbxISett_TOBB = New System.Windows.Forms.CheckBox()
|
||||||
Me.cbxISett_OREGON = New System.Windows.Forms.CheckBox()
|
Me.cbxISett_OREGON = New System.Windows.Forms.CheckBox()
|
||||||
Me.PictureBox14 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.Label8 = New System.Windows.Forms.Label()
|
Me.Label8 = New System.Windows.Forms.Label()
|
||||||
Me.Button1 = New System.Windows.Forms.Button()
|
Me.Button1 = New System.Windows.Forms.Button()
|
||||||
Me.Label7 = New System.Windows.Forms.Label()
|
Me.Label7 = New System.Windows.Forms.Label()
|
||||||
@@ -151,12 +138,10 @@ Partial Class frmStartOptions
|
|||||||
Me.Button9 = New System.Windows.Forms.Button()
|
Me.Button9 = New System.Windows.Forms.Button()
|
||||||
Me.Label3 = New System.Windows.Forms.Label()
|
Me.Label3 = New System.Windows.Forms.Label()
|
||||||
Me.PictureBox12 = New System.Windows.Forms.PictureBox()
|
Me.PictureBox12 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.MyTextBox1 = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
Me.LinkLabel20 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel20 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox11 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel19 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel19 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox10 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel18 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel18 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.PictureBox9 = New System.Windows.Forms.PictureBox()
|
|
||||||
Me.LinkLabel17 = New System.Windows.Forms.LinkLabel()
|
Me.LinkLabel17 = New System.Windows.Forms.LinkLabel()
|
||||||
Me.cbxHistory = New System.Windows.Forms.CheckBox()
|
Me.cbxHistory = New System.Windows.Forms.CheckBox()
|
||||||
Me.btn = New System.Windows.Forms.Button()
|
Me.btn = New System.Windows.Forms.Button()
|
||||||
@@ -183,10 +168,33 @@ Partial Class frmStartOptions
|
|||||||
Me.txtVRGOut_BezugsNr = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
Me.txtVRGOut_BezugsNr = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
Me.MyTextBox1 = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
Me.MyTextBox1 = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
Me.txtGJ_UNISPED = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
Me.txtGJ_UNISPED = New VERAG_PROG_ALLGEMEIN.MyTextBox()
|
||||||
|
Me.Button17 = New System.Windows.Forms.Button()
|
||||||
|
Me.piceZollAnh = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox17 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox16 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox13 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.picC0008 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox2 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox3 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox4 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox5 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox6 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox7 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox8 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox15 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox14 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox12 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox11 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox10 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.PictureBox9 = New System.Windows.Forms.PictureBox()
|
||||||
Me.pnl.SuspendLayout()
|
Me.pnl.SuspendLayout()
|
||||||
CType(Me.piceZollAnh, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
Me.tbcntr.SuspendLayout()
|
Me.tbcntr.SuspendLayout()
|
||||||
Me.TabPage1.SuspendLayout()
|
Me.TabPage1.SuspendLayout()
|
||||||
|
Me.TabPage2.SuspendLayout()
|
||||||
|
CType(Me.dgvMRN, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
Me.TabPage3.SuspendLayout()
|
||||||
|
CType(Me.piceZollAnh, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
CType(Me.PictureBox17, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.PictureBox17, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
CType(Me.PictureBox16, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.PictureBox16, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
CType(Me.PictureBox13, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.PictureBox13, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
@@ -199,7 +207,6 @@ Partial Class frmStartOptions
|
|||||||
CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
CType(Me.PictureBox7, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.PictureBox7, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
CType(Me.PictureBox8, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.PictureBox8, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.TabPage2.SuspendLayout()
|
|
||||||
CType(Me.PictureBox15, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.PictureBox15, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
CType(Me.PictureBox14, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.PictureBox14, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.TabPage3.SuspendLayout()
|
Me.TabPage3.SuspendLayout()
|
||||||
@@ -491,6 +498,30 @@ Partial Class frmStartOptions
|
|||||||
Me.Button10.UseVisualStyleBackColor = True
|
Me.Button10.UseVisualStyleBackColor = True
|
||||||
Me.Button10.Visible = False
|
Me.Button10.Visible = False
|
||||||
'
|
'
|
||||||
|
'txtEZOLLAnhDat
|
||||||
|
'
|
||||||
|
Me.txtEZOLLAnhDat._DateTimeOnly = False
|
||||||
|
Me.txtEZOLLAnhDat._numbersOnly = False
|
||||||
|
Me.txtEZOLLAnhDat._numbersOnlyKommastellen = ""
|
||||||
|
Me.txtEZOLLAnhDat._numbersOnlyTrennzeichen = True
|
||||||
|
Me.txtEZOLLAnhDat._Prozent = False
|
||||||
|
Me.txtEZOLLAnhDat._ShortDateNew = True
|
||||||
|
Me.txtEZOLLAnhDat._ShortDateOnly = False
|
||||||
|
Me.txtEZOLLAnhDat._TimeOnly = False
|
||||||
|
Me.txtEZOLLAnhDat._TimeOnly_Seconds = False
|
||||||
|
Me.txtEZOLLAnhDat._value = ""
|
||||||
|
Me.txtEZOLLAnhDat._Waehrung = False
|
||||||
|
Me.txtEZOLLAnhDat._WaehrungZeichen = True
|
||||||
|
Me.txtEZOLLAnhDat.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.txtEZOLLAnhDat.Location = New System.Drawing.Point(408, 190)
|
||||||
|
Me.txtEZOLLAnhDat.MaxLength = 10
|
||||||
|
Me.txtEZOLLAnhDat.MaxLineLength = -1
|
||||||
|
Me.txtEZOLLAnhDat.MaxLines_Warning = ""
|
||||||
|
Me.txtEZOLLAnhDat.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.txtEZOLLAnhDat.Name = "txtEZOLLAnhDat"
|
||||||
|
Me.txtEZOLLAnhDat.Size = New System.Drawing.Size(87, 20)
|
||||||
|
Me.txtEZOLLAnhDat.TabIndex = 55
|
||||||
|
'
|
||||||
'piceZollAnh
|
'piceZollAnh
|
||||||
'
|
'
|
||||||
Me.piceZollAnh.BackgroundImage = CType(resources.GetObject("piceZollAnh.BackgroundImage"), System.Drawing.Image)
|
Me.piceZollAnh.BackgroundImage = CType(resources.GetObject("piceZollAnh.BackgroundImage"), System.Drawing.Image)
|
||||||
@@ -690,6 +721,7 @@ Partial Class frmStartOptions
|
|||||||
'
|
'
|
||||||
Me.TabPage1.Controls.Add(Me.PictureBox20)
|
Me.TabPage1.Controls.Add(Me.PictureBox20)
|
||||||
Me.TabPage1.Controls.Add(Me.LinkLabel45)
|
Me.TabPage1.Controls.Add(Me.LinkLabel45)
|
||||||
|
Me.TabPage1.Controls.Add(Me.Button17)
|
||||||
Me.TabPage1.Controls.Add(Me.LinkLabel38)
|
Me.TabPage1.Controls.Add(Me.LinkLabel38)
|
||||||
Me.TabPage1.Controls.Add(Me.PictureBox17)
|
Me.TabPage1.Controls.Add(Me.PictureBox17)
|
||||||
Me.TabPage1.Controls.Add(Me.LinkLabel37)
|
Me.TabPage1.Controls.Add(Me.LinkLabel37)
|
||||||
@@ -827,28 +859,6 @@ Partial Class frmStartOptions
|
|||||||
Me.LinkLabel4.TabStop = True
|
Me.LinkLabel4.TabStop = True
|
||||||
Me.LinkLabel4.Text = "C0008 - NCTS Länder"
|
Me.LinkLabel4.Text = "C0008 - NCTS Länder"
|
||||||
'
|
'
|
||||||
'PictureBox13
|
|
||||||
'
|
|
||||||
Me.PictureBox13.BackgroundImage = CType(resources.GetObject("PictureBox13.BackgroundImage"), System.Drawing.Image)
|
|
||||||
Me.PictureBox13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
|
||||||
Me.PictureBox13.Location = New System.Drawing.Point(129, 120)
|
|
||||||
Me.PictureBox13.Name = "PictureBox13"
|
|
||||||
Me.PictureBox13.Size = New System.Drawing.Size(18, 18)
|
|
||||||
Me.PictureBox13.TabIndex = 54
|
|
||||||
Me.PictureBox13.TabStop = False
|
|
||||||
Me.PictureBox13.Visible = False
|
|
||||||
'
|
|
||||||
'picC0008
|
|
||||||
'
|
|
||||||
Me.picC0008.BackgroundImage = CType(resources.GetObject("picC0008.BackgroundImage"), System.Drawing.Image)
|
|
||||||
Me.picC0008.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
|
||||||
Me.picC0008.Location = New System.Drawing.Point(129, 32)
|
|
||||||
Me.picC0008.Name = "picC0008"
|
|
||||||
Me.picC0008.Size = New System.Drawing.Size(18, 18)
|
|
||||||
Me.picC0008.TabIndex = 7
|
|
||||||
Me.picC0008.TabStop = False
|
|
||||||
Me.picC0008.Visible = False
|
|
||||||
'
|
|
||||||
'LinkLabel26
|
'LinkLabel26
|
||||||
'
|
'
|
||||||
Me.LinkLabel26.AutoSize = True
|
Me.LinkLabel26.AutoSize = True
|
||||||
@@ -925,17 +935,6 @@ Partial Class frmStartOptions
|
|||||||
Me.LinkLabel24.TabStop = True
|
Me.LinkLabel24.TabStop = True
|
||||||
Me.LinkLabel24.Text = "Eingangsnachrichten abrufen TEST"
|
Me.LinkLabel24.Text = "Eingangsnachrichten abrufen TEST"
|
||||||
'
|
'
|
||||||
'PictureBox1
|
|
||||||
'
|
|
||||||
Me.PictureBox1.BackgroundImage = CType(resources.GetObject("PictureBox1.BackgroundImage"), System.Drawing.Image)
|
|
||||||
Me.PictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
|
||||||
Me.PictureBox1.Location = New System.Drawing.Point(205, 60)
|
|
||||||
Me.PictureBox1.Name = "PictureBox1"
|
|
||||||
Me.PictureBox1.Size = New System.Drawing.Size(18, 18)
|
|
||||||
Me.PictureBox1.TabIndex = 12
|
|
||||||
Me.PictureBox1.TabStop = False
|
|
||||||
Me.PictureBox1.Visible = False
|
|
||||||
'
|
|
||||||
'Label5
|
'Label5
|
||||||
'
|
'
|
||||||
Me.Label5.AutoSize = True
|
Me.Label5.AutoSize = True
|
||||||
@@ -1098,17 +1097,6 @@ Partial Class frmStartOptions
|
|||||||
Me.LinkLabel13.TabStop = True
|
Me.LinkLabel13.TabStop = True
|
||||||
Me.LinkLabel13.Text = "I0400 - Währungsliste"
|
Me.LinkLabel13.Text = "I0400 - Währungsliste"
|
||||||
'
|
'
|
||||||
'PictureBox6
|
|
||||||
'
|
|
||||||
Me.PictureBox6.BackgroundImage = CType(resources.GetObject("PictureBox6.BackgroundImage"), System.Drawing.Image)
|
|
||||||
Me.PictureBox6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
|
||||||
Me.PictureBox6.Location = New System.Drawing.Point(127, 90)
|
|
||||||
Me.PictureBox6.Name = "PictureBox6"
|
|
||||||
Me.PictureBox6.Size = New System.Drawing.Size(18, 18)
|
|
||||||
Me.PictureBox6.TabIndex = 23
|
|
||||||
Me.PictureBox6.TabStop = False
|
|
||||||
Me.PictureBox6.Visible = False
|
|
||||||
'
|
|
||||||
'LinkLabel14
|
'LinkLabel14
|
||||||
'
|
'
|
||||||
Me.LinkLabel14.AutoSize = True
|
Me.LinkLabel14.AutoSize = True
|
||||||
@@ -1171,7 +1159,6 @@ Partial Class frmStartOptions
|
|||||||
Me.TabPage2.Controls.Add(Me.Label14)
|
Me.TabPage2.Controls.Add(Me.Label14)
|
||||||
Me.TabPage2.Controls.Add(Me.cbxOUT_NCTS_TESTORDNER)
|
Me.TabPage2.Controls.Add(Me.cbxOUT_NCTS_TESTORDNER)
|
||||||
Me.TabPage2.Controls.Add(Me.cbxISettEZA_VERAG)
|
Me.TabPage2.Controls.Add(Me.cbxISettEZA_VERAG)
|
||||||
Me.TabPage2.Controls.Add(Me.PictureBox15)
|
|
||||||
Me.TabPage2.Controls.Add(Me.Label9)
|
Me.TabPage2.Controls.Add(Me.Label9)
|
||||||
Me.TabPage2.Controls.Add(Me.Button2)
|
Me.TabPage2.Controls.Add(Me.Button2)
|
||||||
Me.TabPage2.Controls.Add(Me.Label10)
|
Me.TabPage2.Controls.Add(Me.Label10)
|
||||||
@@ -1181,7 +1168,6 @@ Partial Class frmStartOptions
|
|||||||
Me.TabPage2.Controls.Add(Me.cbxISett_EKOL)
|
Me.TabPage2.Controls.Add(Me.cbxISett_EKOL)
|
||||||
Me.TabPage2.Controls.Add(Me.cbxISett_TOBB)
|
Me.TabPage2.Controls.Add(Me.cbxISett_TOBB)
|
||||||
Me.TabPage2.Controls.Add(Me.cbxISett_OREGON)
|
Me.TabPage2.Controls.Add(Me.cbxISett_OREGON)
|
||||||
Me.TabPage2.Controls.Add(Me.PictureBox14)
|
|
||||||
Me.TabPage2.Controls.Add(Me.Label8)
|
Me.TabPage2.Controls.Add(Me.Label8)
|
||||||
Me.TabPage2.Controls.Add(Me.Button1)
|
Me.TabPage2.Controls.Add(Me.Button1)
|
||||||
Me.TabPage2.Controls.Add(Me.Label7)
|
Me.TabPage2.Controls.Add(Me.Label7)
|
||||||
@@ -1195,6 +1181,8 @@ Partial Class frmStartOptions
|
|||||||
Me.TabPage2.Controls.Add(Me.txtVRGOutEZA_BezugsNr)
|
Me.TabPage2.Controls.Add(Me.txtVRGOutEZA_BezugsNr)
|
||||||
Me.TabPage2.Controls.Add(Me.MyComboBox1)
|
Me.TabPage2.Controls.Add(Me.MyComboBox1)
|
||||||
Me.TabPage2.Controls.Add(Me.txtVRGOut_BezugsNr)
|
Me.TabPage2.Controls.Add(Me.txtVRGOut_BezugsNr)
|
||||||
|
Me.TabPage2.Controls.Add(Me.PictureBox15)
|
||||||
|
Me.TabPage2.Controls.Add(Me.PictureBox14)
|
||||||
Me.TabPage2.Location = New System.Drawing.Point(4, 22)
|
Me.TabPage2.Location = New System.Drawing.Point(4, 22)
|
||||||
Me.TabPage2.Name = "TabPage2"
|
Me.TabPage2.Name = "TabPage2"
|
||||||
Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
|
Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
|
||||||
@@ -1258,17 +1246,6 @@ Partial Class frmStartOptions
|
|||||||
Me.cbxISettEZA_VERAG.Text = "VERAG"
|
Me.cbxISettEZA_VERAG.Text = "VERAG"
|
||||||
Me.cbxISettEZA_VERAG.UseVisualStyleBackColor = True
|
Me.cbxISettEZA_VERAG.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'PictureBox15
|
|
||||||
'
|
|
||||||
Me.PictureBox15.BackgroundImage = CType(resources.GetObject("PictureBox15.BackgroundImage"), System.Drawing.Image)
|
|
||||||
Me.PictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
|
||||||
Me.PictureBox15.Location = New System.Drawing.Point(596, 255)
|
|
||||||
Me.PictureBox15.Name = "PictureBox15"
|
|
||||||
Me.PictureBox15.Size = New System.Drawing.Size(18, 18)
|
|
||||||
Me.PictureBox15.TabIndex = 67
|
|
||||||
Me.PictureBox15.TabStop = False
|
|
||||||
Me.PictureBox15.Visible = False
|
|
||||||
'
|
|
||||||
'Label9
|
'Label9
|
||||||
'
|
'
|
||||||
Me.Label9.AutoSize = True
|
Me.Label9.AutoSize = True
|
||||||
@@ -1373,17 +1350,6 @@ Partial Class frmStartOptions
|
|||||||
Me.cbxISett_OREGON.Text = "OREGON"
|
Me.cbxISett_OREGON.Text = "OREGON"
|
||||||
Me.cbxISett_OREGON.UseVisualStyleBackColor = True
|
Me.cbxISett_OREGON.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'PictureBox14
|
|
||||||
'
|
|
||||||
Me.PictureBox14.BackgroundImage = CType(resources.GetObject("PictureBox14.BackgroundImage"), System.Drawing.Image)
|
|
||||||
Me.PictureBox14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
|
||||||
Me.PictureBox14.Location = New System.Drawing.Point(596, 65)
|
|
||||||
Me.PictureBox14.Name = "PictureBox14"
|
|
||||||
Me.PictureBox14.Size = New System.Drawing.Size(18, 18)
|
|
||||||
Me.PictureBox14.TabIndex = 56
|
|
||||||
Me.PictureBox14.TabStop = False
|
|
||||||
Me.PictureBox14.Visible = False
|
|
||||||
'
|
|
||||||
'Label8
|
'Label8
|
||||||
'
|
'
|
||||||
Me.Label8.AutoSize = True
|
Me.Label8.AutoSize = True
|
||||||
@@ -1753,6 +1719,30 @@ Partial Class frmStartOptions
|
|||||||
Me.Label3.TabIndex = 14
|
Me.Label3.TabIndex = 14
|
||||||
Me.Label3.Text = "Routine Manager IMEX"
|
Me.Label3.Text = "Routine Manager IMEX"
|
||||||
'
|
'
|
||||||
|
'MyTextBox1
|
||||||
|
'
|
||||||
|
Me.MyTextBox1._DateTimeOnly = False
|
||||||
|
Me.MyTextBox1._numbersOnly = True
|
||||||
|
Me.MyTextBox1._numbersOnlyKommastellen = ""
|
||||||
|
Me.MyTextBox1._numbersOnlyTrennzeichen = True
|
||||||
|
Me.MyTextBox1._Prozent = False
|
||||||
|
Me.MyTextBox1._ShortDateNew = False
|
||||||
|
Me.MyTextBox1._ShortDateOnly = False
|
||||||
|
Me.MyTextBox1._TimeOnly = False
|
||||||
|
Me.MyTextBox1._TimeOnly_Seconds = False
|
||||||
|
Me.MyTextBox1._value = "100000"
|
||||||
|
Me.MyTextBox1._Waehrung = False
|
||||||
|
Me.MyTextBox1._WaehrungZeichen = True
|
||||||
|
Me.MyTextBox1.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.MyTextBox1.Location = New System.Drawing.Point(151, 132)
|
||||||
|
Me.MyTextBox1.MaxLineLength = -1
|
||||||
|
Me.MyTextBox1.MaxLines_Warning = ""
|
||||||
|
Me.MyTextBox1.MaxLines_Warning_Label = Nothing
|
||||||
|
Me.MyTextBox1.Name = "MyTextBox1"
|
||||||
|
Me.MyTextBox1.Size = New System.Drawing.Size(53, 20)
|
||||||
|
Me.MyTextBox1.TabIndex = 11
|
||||||
|
Me.MyTextBox1.Text = "100000"
|
||||||
|
'
|
||||||
'PictureBox12
|
'PictureBox12
|
||||||
'
|
'
|
||||||
Me.PictureBox12.BackgroundImage = CType(resources.GetObject("PictureBox12.BackgroundImage"), System.Drawing.Image)
|
Me.PictureBox12.BackgroundImage = CType(resources.GetObject("PictureBox12.BackgroundImage"), System.Drawing.Image)
|
||||||
@@ -1775,17 +1765,6 @@ Partial Class frmStartOptions
|
|||||||
Me.LinkLabel20.TabStop = True
|
Me.LinkLabel20.TabStop = True
|
||||||
Me.LinkLabel20.Text = "UID-Prüfung VERAG"
|
Me.LinkLabel20.Text = "UID-Prüfung VERAG"
|
||||||
'
|
'
|
||||||
'PictureBox11
|
|
||||||
'
|
|
||||||
Me.PictureBox11.BackgroundImage = CType(resources.GetObject("PictureBox11.BackgroundImage"), System.Drawing.Image)
|
|
||||||
Me.PictureBox11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
|
||||||
Me.PictureBox11.Location = New System.Drawing.Point(620, 94)
|
|
||||||
Me.PictureBox11.Name = "PictureBox11"
|
|
||||||
Me.PictureBox11.Size = New System.Drawing.Size(18, 18)
|
|
||||||
Me.PictureBox11.TabIndex = 35
|
|
||||||
Me.PictureBox11.TabStop = False
|
|
||||||
Me.PictureBox11.Visible = False
|
|
||||||
'
|
|
||||||
'LinkLabel19
|
'LinkLabel19
|
||||||
'
|
'
|
||||||
Me.LinkLabel19.AutoSize = True
|
Me.LinkLabel19.AutoSize = True
|
||||||
@@ -1797,17 +1776,6 @@ Partial Class frmStartOptions
|
|||||||
Me.LinkLabel19.TabStop = True
|
Me.LinkLabel19.TabStop = True
|
||||||
Me.LinkLabel19.Text = "Währungskurse EZB 90D"
|
Me.LinkLabel19.Text = "Währungskurse EZB 90D"
|
||||||
'
|
'
|
||||||
'PictureBox10
|
|
||||||
'
|
|
||||||
Me.PictureBox10.BackgroundImage = CType(resources.GetObject("PictureBox10.BackgroundImage"), System.Drawing.Image)
|
|
||||||
Me.PictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
|
||||||
Me.PictureBox10.Location = New System.Drawing.Point(620, 73)
|
|
||||||
Me.PictureBox10.Name = "PictureBox10"
|
|
||||||
Me.PictureBox10.Size = New System.Drawing.Size(18, 18)
|
|
||||||
Me.PictureBox10.TabIndex = 33
|
|
||||||
Me.PictureBox10.TabStop = False
|
|
||||||
Me.PictureBox10.Visible = False
|
|
||||||
'
|
|
||||||
'LinkLabel18
|
'LinkLabel18
|
||||||
'
|
'
|
||||||
Me.LinkLabel18.AutoSize = True
|
Me.LinkLabel18.AutoSize = True
|
||||||
@@ -1819,17 +1787,6 @@ Partial Class frmStartOptions
|
|||||||
Me.LinkLabel18.TabStop = True
|
Me.LinkLabel18.TabStop = True
|
||||||
Me.LinkLabel18.Text = "Währungskurse EZB"
|
Me.LinkLabel18.Text = "Währungskurse EZB"
|
||||||
'
|
'
|
||||||
'PictureBox9
|
|
||||||
'
|
|
||||||
Me.PictureBox9.BackgroundImage = CType(resources.GetObject("PictureBox9.BackgroundImage"), System.Drawing.Image)
|
|
||||||
Me.PictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
|
||||||
Me.PictureBox9.Location = New System.Drawing.Point(620, 46)
|
|
||||||
Me.PictureBox9.Name = "PictureBox9"
|
|
||||||
Me.PictureBox9.Size = New System.Drawing.Size(18, 18)
|
|
||||||
Me.PictureBox9.TabIndex = 31
|
|
||||||
Me.PictureBox9.TabStop = False
|
|
||||||
Me.PictureBox9.Visible = False
|
|
||||||
'
|
|
||||||
'LinkLabel17
|
'LinkLabel17
|
||||||
'
|
'
|
||||||
Me.LinkLabel17.AutoSize = True
|
Me.LinkLabel17.AutoSize = True
|
||||||
@@ -2243,6 +2200,227 @@ Partial Class frmStartOptions
|
|||||||
Me.txtGJ_UNISPED.Size = New System.Drawing.Size(53, 20)
|
Me.txtGJ_UNISPED.Size = New System.Drawing.Size(53, 20)
|
||||||
Me.txtGJ_UNISPED.TabIndex = 68
|
Me.txtGJ_UNISPED.TabIndex = 68
|
||||||
'
|
'
|
||||||
|
'Button17
|
||||||
|
'
|
||||||
|
Me.Button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
||||||
|
Me.Button17.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer))
|
||||||
|
Me.Button17.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
|
Me.Button17.Location = New System.Drawing.Point(581, 179)
|
||||||
|
Me.Button17.Name = "Button17"
|
||||||
|
Me.Button17.Size = New System.Drawing.Size(211, 24)
|
||||||
|
Me.Button17.TabIndex = 61
|
||||||
|
Me.Button17.Text = "DATENARCHIV_ARCHIV"
|
||||||
|
Me.Button17.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'piceZollAnh
|
||||||
|
'
|
||||||
|
Me.piceZollAnh.BackgroundImage = CType(resources.GetObject("piceZollAnh.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.piceZollAnh.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.piceZollAnh.Location = New System.Drawing.Point(500, 190)
|
||||||
|
Me.piceZollAnh.Name = "piceZollAnh"
|
||||||
|
Me.piceZollAnh.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.piceZollAnh.TabIndex = 56
|
||||||
|
Me.piceZollAnh.TabStop = False
|
||||||
|
Me.piceZollAnh.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox17
|
||||||
|
'
|
||||||
|
Me.PictureBox17.BackgroundImage = CType(resources.GetObject("PictureBox17.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox17.Location = New System.Drawing.Point(630, 120)
|
||||||
|
Me.PictureBox17.Name = "PictureBox17"
|
||||||
|
Me.PictureBox17.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox17.TabIndex = 60
|
||||||
|
Me.PictureBox17.TabStop = False
|
||||||
|
Me.PictureBox17.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox16
|
||||||
|
'
|
||||||
|
Me.PictureBox16.BackgroundImage = CType(resources.GetObject("PictureBox16.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox16.Location = New System.Drawing.Point(400, 120)
|
||||||
|
Me.PictureBox16.Name = "PictureBox16"
|
||||||
|
Me.PictureBox16.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox16.TabIndex = 58
|
||||||
|
Me.PictureBox16.TabStop = False
|
||||||
|
Me.PictureBox16.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox13
|
||||||
|
'
|
||||||
|
Me.PictureBox13.BackgroundImage = CType(resources.GetObject("PictureBox13.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox13.Location = New System.Drawing.Point(129, 120)
|
||||||
|
Me.PictureBox13.Name = "PictureBox13"
|
||||||
|
Me.PictureBox13.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox13.TabIndex = 54
|
||||||
|
Me.PictureBox13.TabStop = False
|
||||||
|
Me.PictureBox13.Visible = False
|
||||||
|
'
|
||||||
|
'picC0008
|
||||||
|
'
|
||||||
|
Me.picC0008.BackgroundImage = CType(resources.GetObject("picC0008.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.picC0008.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.picC0008.Location = New System.Drawing.Point(129, 32)
|
||||||
|
Me.picC0008.Name = "picC0008"
|
||||||
|
Me.picC0008.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.picC0008.TabIndex = 7
|
||||||
|
Me.picC0008.TabStop = False
|
||||||
|
Me.picC0008.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox1
|
||||||
|
'
|
||||||
|
Me.PictureBox1.BackgroundImage = CType(resources.GetObject("PictureBox1.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox1.Location = New System.Drawing.Point(205, 60)
|
||||||
|
Me.PictureBox1.Name = "PictureBox1"
|
||||||
|
Me.PictureBox1.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox1.TabIndex = 12
|
||||||
|
Me.PictureBox1.TabStop = False
|
||||||
|
Me.PictureBox1.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox2
|
||||||
|
'
|
||||||
|
Me.PictureBox2.BackgroundImage = CType(resources.GetObject("PictureBox2.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox2.Location = New System.Drawing.Point(421, 32)
|
||||||
|
Me.PictureBox2.Name = "PictureBox2"
|
||||||
|
Me.PictureBox2.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox2.TabIndex = 14
|
||||||
|
Me.PictureBox2.TabStop = False
|
||||||
|
Me.PictureBox2.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox3
|
||||||
|
'
|
||||||
|
Me.PictureBox3.BackgroundImage = CType(resources.GetObject("PictureBox3.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox3.Location = New System.Drawing.Point(405, 60)
|
||||||
|
Me.PictureBox3.Name = "PictureBox3"
|
||||||
|
Me.PictureBox3.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox3.TabIndex = 17
|
||||||
|
Me.PictureBox3.TabStop = False
|
||||||
|
Me.PictureBox3.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox4
|
||||||
|
'
|
||||||
|
Me.PictureBox4.BackgroundImage = CType(resources.GetObject("PictureBox4.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox4.Location = New System.Drawing.Point(683, 60)
|
||||||
|
Me.PictureBox4.Name = "PictureBox4"
|
||||||
|
Me.PictureBox4.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox4.TabIndex = 19
|
||||||
|
Me.PictureBox4.TabStop = False
|
||||||
|
Me.PictureBox4.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox5
|
||||||
|
'
|
||||||
|
Me.PictureBox5.BackgroundImage = CType(resources.GetObject("PictureBox5.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox5.Location = New System.Drawing.Point(640, 32)
|
||||||
|
Me.PictureBox5.Name = "PictureBox5"
|
||||||
|
Me.PictureBox5.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox5.TabIndex = 21
|
||||||
|
Me.PictureBox5.TabStop = False
|
||||||
|
Me.PictureBox5.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox6
|
||||||
|
'
|
||||||
|
Me.PictureBox6.BackgroundImage = CType(resources.GetObject("PictureBox6.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox6.Location = New System.Drawing.Point(127, 90)
|
||||||
|
Me.PictureBox6.Name = "PictureBox6"
|
||||||
|
Me.PictureBox6.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox6.TabIndex = 23
|
||||||
|
Me.PictureBox6.TabStop = False
|
||||||
|
Me.PictureBox6.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox7
|
||||||
|
'
|
||||||
|
Me.PictureBox7.BackgroundImage = CType(resources.GetObject("PictureBox7.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox7.Location = New System.Drawing.Point(400, 90)
|
||||||
|
Me.PictureBox7.Name = "PictureBox7"
|
||||||
|
Me.PictureBox7.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox7.TabIndex = 25
|
||||||
|
Me.PictureBox7.TabStop = False
|
||||||
|
Me.PictureBox7.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox8
|
||||||
|
'
|
||||||
|
Me.PictureBox8.BackgroundImage = CType(resources.GetObject("PictureBox8.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox8.Location = New System.Drawing.Point(630, 90)
|
||||||
|
Me.PictureBox8.Name = "PictureBox8"
|
||||||
|
Me.PictureBox8.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox8.TabIndex = 29
|
||||||
|
Me.PictureBox8.TabStop = False
|
||||||
|
Me.PictureBox8.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox15
|
||||||
|
'
|
||||||
|
Me.PictureBox15.BackgroundImage = CType(resources.GetObject("PictureBox15.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox15.Location = New System.Drawing.Point(596, 255)
|
||||||
|
Me.PictureBox15.Name = "PictureBox15"
|
||||||
|
Me.PictureBox15.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox15.TabIndex = 67
|
||||||
|
Me.PictureBox15.TabStop = False
|
||||||
|
Me.PictureBox15.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox14
|
||||||
|
'
|
||||||
|
Me.PictureBox14.BackgroundImage = CType(resources.GetObject("PictureBox14.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox14.Location = New System.Drawing.Point(596, 65)
|
||||||
|
Me.PictureBox14.Name = "PictureBox14"
|
||||||
|
Me.PictureBox14.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox14.TabIndex = 56
|
||||||
|
Me.PictureBox14.TabStop = False
|
||||||
|
Me.PictureBox14.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox12
|
||||||
|
'
|
||||||
|
Me.PictureBox12.BackgroundImage = CType(resources.GetObject("PictureBox12.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox12.Location = New System.Drawing.Point(127, 130)
|
||||||
|
Me.PictureBox12.Name = "PictureBox12"
|
||||||
|
Me.PictureBox12.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox12.TabIndex = 37
|
||||||
|
Me.PictureBox12.TabStop = False
|
||||||
|
Me.PictureBox12.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox11
|
||||||
|
'
|
||||||
|
Me.PictureBox11.BackgroundImage = CType(resources.GetObject("PictureBox11.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox11.Location = New System.Drawing.Point(620, 94)
|
||||||
|
Me.PictureBox11.Name = "PictureBox11"
|
||||||
|
Me.PictureBox11.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox11.TabIndex = 35
|
||||||
|
Me.PictureBox11.TabStop = False
|
||||||
|
Me.PictureBox11.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox10
|
||||||
|
'
|
||||||
|
Me.PictureBox10.BackgroundImage = CType(resources.GetObject("PictureBox10.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox10.Location = New System.Drawing.Point(620, 73)
|
||||||
|
Me.PictureBox10.Name = "PictureBox10"
|
||||||
|
Me.PictureBox10.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox10.TabIndex = 33
|
||||||
|
Me.PictureBox10.TabStop = False
|
||||||
|
Me.PictureBox10.Visible = False
|
||||||
|
'
|
||||||
|
'PictureBox9
|
||||||
|
'
|
||||||
|
Me.PictureBox9.BackgroundImage = CType(resources.GetObject("PictureBox9.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.PictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
|
||||||
|
Me.PictureBox9.Location = New System.Drawing.Point(620, 46)
|
||||||
|
Me.PictureBox9.Name = "PictureBox9"
|
||||||
|
Me.PictureBox9.Size = New System.Drawing.Size(18, 18)
|
||||||
|
Me.PictureBox9.TabIndex = 31
|
||||||
|
Me.PictureBox9.TabStop = False
|
||||||
|
Me.PictureBox9.Visible = False
|
||||||
|
'
|
||||||
'frmStartOptions
|
'frmStartOptions
|
||||||
'
|
'
|
||||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
@@ -2258,10 +2436,15 @@ Partial Class frmStartOptions
|
|||||||
Me.WindowState = System.Windows.Forms.FormWindowState.Minimized
|
Me.WindowState = System.Windows.Forms.FormWindowState.Minimized
|
||||||
Me.pnl.ResumeLayout(False)
|
Me.pnl.ResumeLayout(False)
|
||||||
Me.pnl.PerformLayout()
|
Me.pnl.PerformLayout()
|
||||||
CType(Me.piceZollAnh, System.ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
Me.tbcntr.ResumeLayout(False)
|
Me.tbcntr.ResumeLayout(False)
|
||||||
Me.TabPage1.ResumeLayout(False)
|
Me.TabPage1.ResumeLayout(False)
|
||||||
Me.TabPage1.PerformLayout()
|
Me.TabPage1.PerformLayout()
|
||||||
|
Me.TabPage2.ResumeLayout(False)
|
||||||
|
Me.TabPage2.PerformLayout()
|
||||||
|
CType(Me.dgvMRN, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Me.TabPage3.ResumeLayout(False)
|
||||||
|
Me.TabPage3.PerformLayout()
|
||||||
|
CType(Me.piceZollAnh, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
CType(Me.PictureBox17, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.PictureBox17, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
CType(Me.PictureBox16, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.PictureBox16, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
CType(Me.PictureBox13, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.PictureBox13, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
@@ -2274,8 +2457,6 @@ Partial Class frmStartOptions
|
|||||||
CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
CType(Me.PictureBox7, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.PictureBox7, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
CType(Me.PictureBox8, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.PictureBox8, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
Me.TabPage2.ResumeLayout(False)
|
|
||||||
Me.TabPage2.PerformLayout()
|
|
||||||
CType(Me.PictureBox15, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.PictureBox15, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
CType(Me.PictureBox14, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.PictureBox14, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
Me.TabPage3.ResumeLayout(False)
|
Me.TabPage3.ResumeLayout(False)
|
||||||
@@ -2452,4 +2633,5 @@ Partial Class frmStartOptions
|
|||||||
Friend WithEvents PictureBox18 As PictureBox
|
Friend WithEvents PictureBox18 As PictureBox
|
||||||
Friend WithEvents LinkLabel45 As LinkLabel
|
Friend WithEvents LinkLabel45 As LinkLabel
|
||||||
Friend WithEvents PictureBox20 As PictureBox
|
Friend WithEvents PictureBox20 As PictureBox
|
||||||
|
Friend WithEvents Button17 As Button
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -454,6 +454,9 @@
|
|||||||
CQkJEjM9AwMAOTMC2xlgxuQAAAAASUVORK5CYII=
|
CQkJEjM9AwMAOTMC2xlgxuQAAAAASUVORK5CYII=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
|
<metadata name="clmnMRN.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>True</value>
|
||||||
|
</metadata>
|
||||||
<data name="PictureBox15.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="PictureBox15.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAABGdBTUEAALGPC/xhBQAABEhJREFUSEtj
|
iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAABGdBTUEAALGPC/xhBQAABEhJREFUSEtj
|
||||||
|
|||||||
@@ -708,6 +708,7 @@ Public Class frmStartOptions
|
|||||||
Case "5701" : Standort = "AMB"
|
Case "5701" : Standort = "AMB"
|
||||||
Case "5801" : Standort = "FO"
|
Case "5801" : Standort = "FO"
|
||||||
Case "4801" : Standort = "ATL"
|
Case "4801" : Standort = "ATL"
|
||||||
|
Case "4802" : Standort = "ATL"
|
||||||
Case "5003" : Standort = "SBG"
|
Case "5003" : Standort = "SBG"
|
||||||
Case "5103" : Standort = "WAI"
|
Case "5103" : Standort = "WAI"
|
||||||
Case "5303" : Standort = "NKD"
|
Case "5303" : Standort = "NKD"
|
||||||
@@ -3133,18 +3134,18 @@ Public Class frmStartOptions
|
|||||||
End If
|
End If
|
||||||
SDL.Sachbearbeiter = "ASFINAG"
|
SDL.Sachbearbeiter = "ASFINAG"
|
||||||
|
|
||||||
Dim Validto = SQL.checkNullStr(oRDR.GetValue("DatumVertragsabschluss"))
|
Dim Validto = SQl.checkNullStr(oRDR.GetValue("DatumVertragsabschluss"))
|
||||||
|
|
||||||
SDL.KartenNr = SQL.checkNullStr(oRDR.GetValue("CardNumber"))
|
SDL.KartenNr = SQl.checkNullStr(oRDR.GetValue("CardNumber"))
|
||||||
If Validto <> "" Then
|
If Validto <> "" Then
|
||||||
SDL.GültigBis = DateAdd("d", -1, DateAdd("m", 1, DateSerial("20" & Mid(Validto, 1, 2), Mid(Validto, 3, 2), 1)))
|
SDL.GültigBis = DateAdd("d", -1, DateAdd("m", 1, DateSerial("20" & Mid(Validto, 1, 2), Mid(Validto, 3, 2), 1)))
|
||||||
End If
|
End If
|
||||||
|
|
||||||
SDL.OBUID = SQL.checkNullStr(oRDR.GetValue("OBUID"))
|
SDL.OBUID = SQl.checkNullStr(oRDR.GetValue("OBUID"))
|
||||||
SDL.Vertragsabschlussdatum = SQL.checkNullStr(oRDR.GetValue("DatumVertragsabschluss"))
|
SDL.Vertragsabschlussdatum = SQl.checkNullStr(oRDR.GetValue("DatumVertragsabschluss"))
|
||||||
SDL.Kategorie = SQL.checkNullStr(oRDR.GetValue("Kategorie"))
|
SDL.Kategorie = SQl.checkNullStr(oRDR.GetValue("Kategorie"))
|
||||||
SDL.Schadstoffklasse = SQL.checkNullStr(oRDR.GetValue("Schadstoffklasse"))
|
SDL.Schadstoffklasse = SQl.checkNullStr(oRDR.GetValue("Schadstoffklasse"))
|
||||||
SDL.Status = SQL.checkNullStr(oRDR.GetValue("Status"))
|
SDL.Status = SQl.checkNullStr(oRDR.GetValue("Status"))
|
||||||
SDL.SAVE()
|
SDL.SAVE()
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -3569,4 +3570,8 @@ Public Class frmStartOptions
|
|||||||
MsgBox(ex.Message & ex.StackTrace)
|
MsgBox(ex.Message & ex.StackTrace)
|
||||||
End Try
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
|
Private Sub Button17_Click(sender As Object, e As EventArgs) Handles Button17.Click
|
||||||
|
Dim f As New frmDatenarchivarchiv
|
||||||
|
f.ShowDialog()
|
||||||
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
@@ -752,7 +752,7 @@ Public Class frmTCNachrichtenVerarbeitung
|
|||||||
If TC.telanm_BezugsNr.ToString.StartsWith("5501") Then
|
If TC.telanm_BezugsNr.ToString.StartsWith("5501") Then
|
||||||
TC.telanm_firma = "IMEX" 'VERAG WO
|
TC.telanm_firma = "IMEX" 'VERAG WO
|
||||||
End If
|
End If
|
||||||
If TC.telanm_BezugsNr.ToString.StartsWith("4801") Then
|
If TC.telanm_BezugsNr.ToString.StartsWith("4801") Or TC.telanm_BezugsNr.ToString.StartsWith("4802") Then
|
||||||
TC.telanm_firma = "IMEX" 'VERAG WO
|
TC.telanm_firma = "IMEX" 'VERAG WO
|
||||||
End If
|
End If
|
||||||
TC.telanm_niederlassung = "SUB"
|
TC.telanm_niederlassung = "SUB"
|
||||||
|
|||||||
Reference in New Issue
Block a user