diff --git a/QW2021C.csproj b/QW2021C.csproj index 79b4e24..857378e 100644 --- a/QW2021C.csproj +++ b/QW2021C.csproj @@ -723,52 +723,82 @@ CrystalReport1.rpt Component - + True True - Erdgas.rpt + UKC.rpt Component - - Rpt_Auswertung_GesamtSponsoren.rpt + + Rpt_Auswertung_Gesamt_Top_24.rpt True Component True - + + Rpt_Auswertung_Gesamt_Top_20.rpt True + Component True + + Rpt_Auswertung_Gesamt.rpt + True Component + True - + True True - Rpt_Auswertung_Gesamt_top_20.rpt + Rpt_Auswertung_Gesamt_Old.rpt Component - + True True - Rpt_Auswertung_Gesamt_top_24.rpt + Rpt_Auswertung_Gesamt_top_20_Old.rpt Component - + True True - Rpt_Auswertung_Ort.rpt + Rpt_Auswertung_Gesamt_top_24_old.rpt Component - + + Rpt_Auswertung_Ort_Top_24.rpt True + Component True + + Rpt_Auswertung_Ort_Top_20.rpt + True Component + True - + + Rpt_Auswertung_Ort.rpt True + Component True - Rpt_Auswertung_Ort_Top_24.rpt + + + True + True + Rpt_Auswertung_Ort_old.rpt + Component + + + True + True + Rpt_Auswertung_Ort_Top_20_old.rpt + Component + + + True + True + Rpt_Auswertung_Ort_Top_24_old.rpt Component @@ -928,37 +958,57 @@ ButtonFeatures.aspx CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator CrystalReport1.cs - + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator - Erdgas.cs + UKC.cs - + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator - Rpt_Auswertung_GesamtSponsoren.cs + Rpt_Auswertung_Gesamt_Top_24.cs + + + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator + Rpt_Auswertung_Gesamt_Top_20.cs CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator Rpt_Auswertung_Gesamt.cs - + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator - Rpt_Auswertung_Gesamt_top_20.cs + Rpt_Auswertung_Gesamt_Old.cs - + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator - Rpt_Auswertung_Gesamt_top_24.cs + Rpt_Auswertung_Gesamt_top_20_Old.cs - + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator - Rpt_Auswertung_Ort.cs + Rpt_Auswertung_Gesamt_top_24_old.cs + + + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator + Rpt_Auswertung_Ort_Top_24.cs CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator Rpt_Auswertung_Ort_Top_20.cs - + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator - Rpt_Auswertung_Ort_Top_24.cs + Rpt_Auswertung_Ort.cs + + + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator + Rpt_Auswertung_Ort_old.cs + + + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator + Rpt_Auswertung_Ort_Top_20_old.cs + + + CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator + Rpt_Auswertung_Ort_Top_24_old.cs CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator diff --git a/Resultate/Auswertungen.aspx b/Resultate/Auswertungen.aspx index f9ec4f9..28d27c6 100644 --- a/Resultate/Auswertungen.aspx +++ b/Resultate/Auswertungen.aspx @@ -53,7 +53,7 @@ - +

@@ -77,7 +77,7 @@
- +
diff --git a/Resultate/Report.aspx.cs b/Resultate/Report.aspx.cs index dabc700..1eab5d0 100644 --- a/Resultate/Report.aspx.cs +++ b/Resultate/Report.aspx.cs @@ -28,7 +28,7 @@ namespace QW2021C.Resultate //FormulaFieldDefinition crFormulaFieldDefinition; //FormulaFieldDefinition=crim //Section section; - + //int LoopFormula; //string FormulaName; //crFormulaFieldDefinitions = cr.DataDefinition. @@ -40,9 +40,27 @@ namespace QW2021C.Resultate // Console.WriteLine(FormulaName); //} + DataTable dt = new DataTable(); switch (report) { case "Vierkampf.rpt": + + foreach (DataColumn c in ds.Tables[1].Columns) + { + if (c.ColumnName.ToString() == "Rang" || c.ColumnName.ToString() == "BestPunkte") + { + dt.Columns.Add(c.ColumnName, System.Type.GetType("System.Int32")); + } + else + { + dt.Columns.Add(c.ColumnName); + } + } + + foreach (DataRow dr in ds.Tables[1].Rows) + { + dt.ImportRow(dr); + } CrystalDecisions.CrystalReports.Engine.TextObject MyTextObject; MyTextObject = cr.ReportDefinition.ReportObjects["txtheader0"] as TextObject; MyTextObject.Text = Session["Kopfzeile1"].ToString(); @@ -59,13 +77,30 @@ namespace QW2021C.Resultate MyTextObject.Text = Session["Datum"].ToString(); MyTextObject = cr.ReportDefinition.ReportObjects["txtwettkampfnr"] as TextObject; MyTextObject.Text = Session["Wettkampfnr"].ToString(); - cr.SetDataSource(ds.Tables[1]); + cr.SetDataSource(dt); CrystalReportViewer1.ReportSource = cr; CrystalReportViewer1.RefreshReport(); CrystalDecisions.Shared.ConnectionInfo ci = new CrystalDecisions.Shared.ConnectionInfo(); break; - case "erdgas.rpt": + case "ukc.rpt": + + foreach (DataColumn c in ds.Tables[1].Columns) + { + if (c.ColumnName.ToString() == "Rang" || c.ColumnName.ToString() == "BestPunkte") + { + dt.Columns.Add(c.ColumnName, System.Type.GetType("System.Int32")); + } + else + { + dt.Columns.Add(c.ColumnName); + } + } + + foreach (DataRow dr in ds.Tables[1].Rows) + { + dt.ImportRow(dr); + } //CrystalDecisions.CrystalReports.Engine.TextObject MyTextObject; MyTextObject = cr.ReportDefinition.ReportObjects["txtheader0"] as TextObject; MyTextObject.Text = Session["Kopfzeile1"].ToString(); @@ -82,7 +117,7 @@ namespace QW2021C.Resultate MyTextObject.Text = Session["Datum"].ToString(); MyTextObject = cr.ReportDefinition.ReportObjects["txtwettkampfnr"] as TextObject; MyTextObject.Text = Session["Wettkampfnr"].ToString(); - cr.SetDataSource(ds.Tables[1]); + cr.SetDataSource(dt); CrystalReportViewer1.ReportSource = cr; CrystalReportViewer1.RefreshReport(); @@ -98,7 +133,7 @@ namespace QW2021C.Resultate } - DataTable dt = new DataTable(); + foreach (DataColumn c in ds.Tables[1].Columns) { if (c.ColumnName.ToString() == "Rang" || c.ColumnName.ToString() == "BestPunkte") @@ -138,10 +173,11 @@ namespace QW2021C.Resultate { // CrystalDecisions.CrystalReports.Engine.TextObject MyTextObject; - MyTextObject = cr.ReportDefinition.ReportObjects["Text" + i.ToString()] as TextObject; - MyTextObject.Text = ""; + try { + MyTextObject = cr.ReportDefinition.ReportObjects["Text" + i.ToString()] as TextObject; + MyTextObject.Text = ""; MyTextObject.Text = splitter[i - 1].ToString(); } catch diff --git a/Resultate/Reports/Erdgas.rpt b/Resultate/Reports/Erdgas.rpt deleted file mode 100644 index 99191b5..0000000 Binary files a/Resultate/Reports/Erdgas.rpt and /dev/null differ diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt.cs b/Resultate/Reports/Rpt_Auswertung_Gesamt.cs index 5b57cc1..16ad486 100644 --- a/Resultate/Reports/Rpt_Auswertung_Gesamt.cs +++ b/Resultate/Reports/Rpt_Auswertung_Gesamt.cs @@ -82,7 +82,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section DetailSection3 { + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection4 { get { return this.ReportDefinition.Sections[4]; } @@ -90,7 +90,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { + public CrystalDecisions.CrystalReports.Engine.Section DetailSection3 { get { return this.ReportDefinition.Sections[5]; } @@ -98,7 +98,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 { + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { get { return this.ReportDefinition.Sections[6]; } @@ -106,7 +106,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section Section4 { + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 { get { return this.ReportDefinition.Sections[7]; } @@ -114,11 +114,19 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section Section5 { + public CrystalDecisions.CrystalReports.Engine.Section Section4 { get { return this.ReportDefinition.Sections[8]; } } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section5 { + get { + return this.ReportDefinition.Sections[9]; + } + } } [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt.rpt b/Resultate/Reports/Rpt_Auswertung_Gesamt.rpt index 6c7fe77..3b5bcf7 100644 Binary files a/Resultate/Reports/Rpt_Auswertung_Gesamt.rpt and b/Resultate/Reports/Rpt_Auswertung_Gesamt.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_GesamtSponsoren.rpt b/Resultate/Reports/Rpt_Auswertung_GesamtSponsoren.rpt deleted file mode 100644 index 29195ce..0000000 Binary files a/Resultate/Reports/Rpt_Auswertung_GesamtSponsoren.rpt and /dev/null differ diff --git a/Resultate/Reports/Rpt_Auswertung_GesamtSponsoren.cs b/Resultate/Reports/Rpt_Auswertung_Gesamt_Old.cs similarity index 89% rename from Resultate/Reports/Rpt_Auswertung_GesamtSponsoren.cs rename to Resultate/Reports/Rpt_Auswertung_Gesamt_Old.cs index 47bc378..77d7af3 100644 --- a/Resultate/Reports/Rpt_Auswertung_GesamtSponsoren.cs +++ b/Resultate/Reports/Rpt_Auswertung_Gesamt_Old.cs @@ -16,14 +16,14 @@ namespace QW2021C.Resultate.Reports { using CrystalDecisions.CrystalReports.Engine; - public class Rpt_Auswertung_GesamtSponsoren : ReportClass { + public class Rpt_Auswertung_Gesamt_Old : ReportClass { - public Rpt_Auswertung_GesamtSponsoren() { + public Rpt_Auswertung_Gesamt_Old() { } public override string ResourceName { get { - return "Rpt_Auswertung_GesamtSponsoren.rpt"; + return "Rpt_Auswertung_Gesamt_Old.rpt"; } set { // Do nothing @@ -41,7 +41,7 @@ namespace QW2021C.Resultate.Reports { public override string FullResourceName { get { - return "QW2021C.Resultate.Reports.Rpt_Auswertung_GesamtSponsoren.rpt"; + return "QW2021C.Resultate.Reports.Rpt_Auswertung_Gesamt_Old.rpt"; } set { // Do nothing @@ -80,19 +80,11 @@ namespace QW2021C.Resultate.Reports { } } - [Browsable(false)] - [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection4 { - get { - return this.ReportDefinition.Sections[4]; - } - } - [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] public CrystalDecisions.CrystalReports.Engine.Section DetailSection3 { get { - return this.ReportDefinition.Sections[5]; + return this.ReportDefinition.Sections[4]; } } @@ -100,7 +92,7 @@ namespace QW2021C.Resultate.Reports { [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { get { - return this.ReportDefinition.Sections[6]; + return this.ReportDefinition.Sections[5]; } } @@ -108,7 +100,7 @@ namespace QW2021C.Resultate.Reports { [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 { get { - return this.ReportDefinition.Sections[7]; + return this.ReportDefinition.Sections[6]; } } @@ -116,7 +108,7 @@ namespace QW2021C.Resultate.Reports { [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] public CrystalDecisions.CrystalReports.Engine.Section Section4 { get { - return this.ReportDefinition.Sections[8]; + return this.ReportDefinition.Sections[7]; } } @@ -124,15 +116,15 @@ namespace QW2021C.Resultate.Reports { [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] public CrystalDecisions.CrystalReports.Engine.Section Section5 { get { - return this.ReportDefinition.Sections[9]; + return this.ReportDefinition.Sections[8]; } } } [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] - public class CachedRpt_Auswertung_GesamtSponsoren : Component, ICachedReport { + public class CachedRpt_Auswertung_Gesamt_Old : Component, ICachedReport { - public CachedRpt_Auswertung_GesamtSponsoren() { + public CachedRpt_Auswertung_Gesamt_Old() { } [Browsable(false)] @@ -169,7 +161,7 @@ namespace QW2021C.Resultate.Reports { } public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { - Rpt_Auswertung_GesamtSponsoren rpt = new Rpt_Auswertung_GesamtSponsoren(); + Rpt_Auswertung_Gesamt_Old rpt = new Rpt_Auswertung_Gesamt_Old(); rpt.Site = this.Site; return rpt; } diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt_Old.rpt b/Resultate/Reports/Rpt_Auswertung_Gesamt_Old.rpt new file mode 100644 index 0000000..6c7fe77 Binary files /dev/null and b/Resultate/Reports/Rpt_Auswertung_Gesamt_Old.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20.cs b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20.cs index e31ca2c..1d5ab56 100644 --- a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20.cs +++ b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20.cs @@ -16,14 +16,14 @@ namespace QW2021C.Resultate.Reports { using CrystalDecisions.CrystalReports.Engine; - public class Rpt_Auswertung_Gesamt_top_20 : ReportClass { + public class Rpt_Auswertung_Gesamt_Top_20 : ReportClass { - public Rpt_Auswertung_Gesamt_top_20() { + public Rpt_Auswertung_Gesamt_Top_20() { } public override string ResourceName { get { - return "Rpt_Auswertung_Gesamt_top_20.rpt"; + return "Rpt_Auswertung_Gesamt_Top_20.rpt"; } set { // Do nothing @@ -41,7 +41,7 @@ namespace QW2021C.Resultate.Reports { public override string FullResourceName { get { - return "QW2021C.Resultate.Reports.Rpt_Auswertung_Gesamt_top_20.rpt"; + return "QW2021C.Resultate.Reports.Rpt_Auswertung_Gesamt_Top_20.rpt"; } set { // Do nothing @@ -82,7 +82,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section Section3 { + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection4 { get { return this.ReportDefinition.Sections[4]; } @@ -90,7 +90,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { + public CrystalDecisions.CrystalReports.Engine.Section DetailSection3 { get { return this.ReportDefinition.Sections[5]; } @@ -98,7 +98,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 { + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { get { return this.ReportDefinition.Sections[6]; } @@ -106,7 +106,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section Section4 { + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 { get { return this.ReportDefinition.Sections[7]; } @@ -114,17 +114,25 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section Section5 { + public CrystalDecisions.CrystalReports.Engine.Section Section4 { get { return this.ReportDefinition.Sections[8]; } } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section5 { + get { + return this.ReportDefinition.Sections[9]; + } + } } [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] - public class CachedRpt_Auswertung_Gesamt_top_20 : Component, ICachedReport { + public class CachedRpt_Auswertung_Gesamt_Top_20 : Component, ICachedReport { - public CachedRpt_Auswertung_Gesamt_top_20() { + public CachedRpt_Auswertung_Gesamt_Top_20() { } [Browsable(false)] @@ -161,7 +169,7 @@ namespace QW2021C.Resultate.Reports { } public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { - Rpt_Auswertung_Gesamt_top_20 rpt = new Rpt_Auswertung_Gesamt_top_20(); + Rpt_Auswertung_Gesamt_Top_20 rpt = new Rpt_Auswertung_Gesamt_Top_20(); rpt.Site = this.Site; return rpt; } diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20.rpt b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20.rpt index 3336109..624db8f 100644 Binary files a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20.rpt and b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20_Old.cs b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20_Old.cs new file mode 100644 index 0000000..2d98dc6 --- /dev/null +++ b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20_Old.cs @@ -0,0 +1,185 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +namespace QW2021C.Resultate.Reports { + using System; + using System.ComponentModel; + using CrystalDecisions.Shared; + using CrystalDecisions.ReportSource; + using CrystalDecisions.CrystalReports.Engine; + + + public class Rpt_Auswertung_Gesamt_top_20_Old : ReportClass { + + public Rpt_Auswertung_Gesamt_top_20_Old() { + } + + public override string ResourceName { + get { + return "Rpt_Auswertung_Gesamt_top_20_Old.rpt"; + } + set { + // Do nothing + } + } + + public override bool NewGenerator { + get { + return true; + } + set { + // Do nothing + } + } + + public override string FullResourceName { + get { + return "QW2021C.Resultate.Reports.Rpt_Auswertung_Gesamt_top_20_Old.rpt"; + } + set { + // Do nothing + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section1 { + get { + return this.ReportDefinition.Sections[0]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section2 { + get { + return this.ReportDefinition.Sections[1]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection1 { + get { + return this.ReportDefinition.Sections[2]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection2 { + get { + return this.ReportDefinition.Sections[3]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section3 { + get { + return this.ReportDefinition.Sections[4]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { + get { + return this.ReportDefinition.Sections[5]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 { + get { + return this.ReportDefinition.Sections[6]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section4 { + get { + return this.ReportDefinition.Sections[7]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section5 { + get { + return this.ReportDefinition.Sections[8]; + } + } + } + + [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] + public class CachedRpt_Auswertung_Gesamt_top_20_Old : Component, ICachedReport { + + public CachedRpt_Auswertung_Gesamt_top_20_Old() { + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool IsCacheable { + get { + return true; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool ShareDBLogonInfo { + get { + return false; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual System.TimeSpan CacheTimeOut { + get { + return CachedReportConstants.DEFAULT_TIMEOUT; + } + set { + // + } + } + + public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { + Rpt_Auswertung_Gesamt_top_20_Old rpt = new Rpt_Auswertung_Gesamt_top_20_Old(); + rpt.Site = this.Site; + return rpt; + } + + public virtual string GetCustomizedCacheKey(RequestContext request) { + String key = null; + // // The following is the code used to generate the default + // // cache key for caching report jobs in the ASP.NET Cache. + // // Feel free to modify this code to suit your needs. + // // Returning key == null causes the default cache key to + // // be generated. + // + // key = RequestContext.BuildCompleteCacheKey( + // request, + // null, // sReportFilename + // this.GetType(), + // this.ShareDBLogonInfo ); + return key; + } + } +} diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20_Old.rpt b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20_Old.rpt new file mode 100644 index 0000000..3336109 Binary files /dev/null and b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_20_Old.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24.cs b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24.cs index 48652db..e42cc79 100644 --- a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24.cs +++ b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24.cs @@ -16,14 +16,14 @@ namespace QW2021C.Resultate.Reports { using CrystalDecisions.CrystalReports.Engine; - public class Rpt_Auswertung_Gesamt_top_24 : ReportClass { + public class Rpt_Auswertung_Gesamt_Top_24 : ReportClass { - public Rpt_Auswertung_Gesamt_top_24() { + public Rpt_Auswertung_Gesamt_Top_24() { } public override string ResourceName { get { - return "Rpt_Auswertung_Gesamt_top_24.rpt"; + return "Rpt_Auswertung_Gesamt_Top_24.rpt"; } set { // Do nothing @@ -41,7 +41,7 @@ namespace QW2021C.Resultate.Reports { public override string FullResourceName { get { - return "QW2021C.Resultate.Reports.Rpt_Auswertung_Gesamt_top_24.rpt"; + return "QW2021C.Resultate.Reports.Rpt_Auswertung_Gesamt_Top_24.rpt"; } set { // Do nothing @@ -82,7 +82,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section Section3 { + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection4 { get { return this.ReportDefinition.Sections[4]; } @@ -90,7 +90,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { + public CrystalDecisions.CrystalReports.Engine.Section DetailSection3 { get { return this.ReportDefinition.Sections[5]; } @@ -98,7 +98,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 { + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { get { return this.ReportDefinition.Sections[6]; } @@ -106,7 +106,7 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section Section4 { + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 { get { return this.ReportDefinition.Sections[7]; } @@ -114,17 +114,25 @@ namespace QW2021C.Resultate.Reports { [Browsable(false)] [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] - public CrystalDecisions.CrystalReports.Engine.Section Section5 { + public CrystalDecisions.CrystalReports.Engine.Section Section4 { get { return this.ReportDefinition.Sections[8]; } } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section5 { + get { + return this.ReportDefinition.Sections[9]; + } + } } [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] - public class CachedRpt_Auswertung_Gesamt_top_24 : Component, ICachedReport { + public class CachedRpt_Auswertung_Gesamt_Top_24 : Component, ICachedReport { - public CachedRpt_Auswertung_Gesamt_top_24() { + public CachedRpt_Auswertung_Gesamt_Top_24() { } [Browsable(false)] @@ -161,7 +169,7 @@ namespace QW2021C.Resultate.Reports { } public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { - Rpt_Auswertung_Gesamt_top_24 rpt = new Rpt_Auswertung_Gesamt_top_24(); + Rpt_Auswertung_Gesamt_Top_24 rpt = new Rpt_Auswertung_Gesamt_Top_24(); rpt.Site = this.Site; return rpt; } diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24.rpt b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24.rpt index 20b7226..cf64ba9 100644 Binary files a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24.rpt and b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24_old.cs b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24_old.cs new file mode 100644 index 0000000..1fd3a6c --- /dev/null +++ b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24_old.cs @@ -0,0 +1,185 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +namespace QW2021C.Resultate.Reports { + using System; + using System.ComponentModel; + using CrystalDecisions.Shared; + using CrystalDecisions.ReportSource; + using CrystalDecisions.CrystalReports.Engine; + + + public class Rpt_Auswertung_Gesamt_top_24_old : ReportClass { + + public Rpt_Auswertung_Gesamt_top_24_old() { + } + + public override string ResourceName { + get { + return "Rpt_Auswertung_Gesamt_top_24_old.rpt"; + } + set { + // Do nothing + } + } + + public override bool NewGenerator { + get { + return true; + } + set { + // Do nothing + } + } + + public override string FullResourceName { + get { + return "QW2021C.Resultate.Reports.Rpt_Auswertung_Gesamt_top_24_old.rpt"; + } + set { + // Do nothing + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section1 { + get { + return this.ReportDefinition.Sections[0]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section2 { + get { + return this.ReportDefinition.Sections[1]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection1 { + get { + return this.ReportDefinition.Sections[2]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection2 { + get { + return this.ReportDefinition.Sections[3]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section3 { + get { + return this.ReportDefinition.Sections[4]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { + get { + return this.ReportDefinition.Sections[5]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 { + get { + return this.ReportDefinition.Sections[6]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section4 { + get { + return this.ReportDefinition.Sections[7]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section5 { + get { + return this.ReportDefinition.Sections[8]; + } + } + } + + [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] + public class CachedRpt_Auswertung_Gesamt_top_24_old : Component, ICachedReport { + + public CachedRpt_Auswertung_Gesamt_top_24_old() { + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool IsCacheable { + get { + return true; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool ShareDBLogonInfo { + get { + return false; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual System.TimeSpan CacheTimeOut { + get { + return CachedReportConstants.DEFAULT_TIMEOUT; + } + set { + // + } + } + + public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { + Rpt_Auswertung_Gesamt_top_24_old rpt = new Rpt_Auswertung_Gesamt_top_24_old(); + rpt.Site = this.Site; + return rpt; + } + + public virtual string GetCustomizedCacheKey(RequestContext request) { + String key = null; + // // The following is the code used to generate the default + // // cache key for caching report jobs in the ASP.NET Cache. + // // Feel free to modify this code to suit your needs. + // // Returning key == null causes the default cache key to + // // be generated. + // + // key = RequestContext.BuildCompleteCacheKey( + // request, + // null, // sReportFilename + // this.GetType(), + // this.ShareDBLogonInfo ); + return key; + } + } +} diff --git a/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24_old.rpt b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24_old.rpt new file mode 100644 index 0000000..e6c43c9 Binary files /dev/null and b/Resultate/Reports/Rpt_Auswertung_Gesamt_top_24_old.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Ort.rpt b/Resultate/Reports/Rpt_Auswertung_Ort.rpt index 1dde2ef..5e10838 100644 Binary files a/Resultate/Reports/Rpt_Auswertung_Ort.rpt and b/Resultate/Reports/Rpt_Auswertung_Ort.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Ort_Top_20.rpt b/Resultate/Reports/Rpt_Auswertung_Ort_Top_20.rpt index ade77fb..feca4ee 100644 Binary files a/Resultate/Reports/Rpt_Auswertung_Ort_Top_20.rpt and b/Resultate/Reports/Rpt_Auswertung_Ort_Top_20.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Ort_Top_20_old.cs b/Resultate/Reports/Rpt_Auswertung_Ort_Top_20_old.cs new file mode 100644 index 0000000..28f7262 --- /dev/null +++ b/Resultate/Reports/Rpt_Auswertung_Ort_Top_20_old.cs @@ -0,0 +1,185 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +namespace QW2021C.Resultate.Reports { + using System; + using System.ComponentModel; + using CrystalDecisions.Shared; + using CrystalDecisions.ReportSource; + using CrystalDecisions.CrystalReports.Engine; + + + public class Rpt_Auswertung_Ort_Top_20_old : ReportClass { + + public Rpt_Auswertung_Ort_Top_20_old() { + } + + public override string ResourceName { + get { + return "Rpt_Auswertung_Ort_Top_20_old.rpt"; + } + set { + // Do nothing + } + } + + public override bool NewGenerator { + get { + return true; + } + set { + // Do nothing + } + } + + public override string FullResourceName { + get { + return "QW2021C.Resultate.Reports.Rpt_Auswertung_Ort_Top_20_old.rpt"; + } + set { + // Do nothing + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section1 { + get { + return this.ReportDefinition.Sections[0]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section2 { + get { + return this.ReportDefinition.Sections[1]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection3 { + get { + return this.ReportDefinition.Sections[2]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection2 { + get { + return this.ReportDefinition.Sections[3]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section3 { + get { + return this.ReportDefinition.Sections[4]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { + get { + return this.ReportDefinition.Sections[5]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection3 { + get { + return this.ReportDefinition.Sections[6]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section4 { + get { + return this.ReportDefinition.Sections[7]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section5 { + get { + return this.ReportDefinition.Sections[8]; + } + } + } + + [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] + public class CachedRpt_Auswertung_Ort_Top_20_old : Component, ICachedReport { + + public CachedRpt_Auswertung_Ort_Top_20_old() { + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool IsCacheable { + get { + return true; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool ShareDBLogonInfo { + get { + return false; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual System.TimeSpan CacheTimeOut { + get { + return CachedReportConstants.DEFAULT_TIMEOUT; + } + set { + // + } + } + + public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { + Rpt_Auswertung_Ort_Top_20_old rpt = new Rpt_Auswertung_Ort_Top_20_old(); + rpt.Site = this.Site; + return rpt; + } + + public virtual string GetCustomizedCacheKey(RequestContext request) { + String key = null; + // // The following is the code used to generate the default + // // cache key for caching report jobs in the ASP.NET Cache. + // // Feel free to modify this code to suit your needs. + // // Returning key == null causes the default cache key to + // // be generated. + // + // key = RequestContext.BuildCompleteCacheKey( + // request, + // null, // sReportFilename + // this.GetType(), + // this.ShareDBLogonInfo ); + return key; + } + } +} diff --git a/Resultate/Reports/Rpt_Auswertung_Ort_Top_20_old.rpt b/Resultate/Reports/Rpt_Auswertung_Ort_Top_20_old.rpt new file mode 100644 index 0000000..ade77fb Binary files /dev/null and b/Resultate/Reports/Rpt_Auswertung_Ort_Top_20_old.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Ort_Top_24.rpt b/Resultate/Reports/Rpt_Auswertung_Ort_Top_24.rpt index 758948a..010b6ba 100644 Binary files a/Resultate/Reports/Rpt_Auswertung_Ort_Top_24.rpt and b/Resultate/Reports/Rpt_Auswertung_Ort_Top_24.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Ort_Top_24_old.cs b/Resultate/Reports/Rpt_Auswertung_Ort_Top_24_old.cs new file mode 100644 index 0000000..92799dd --- /dev/null +++ b/Resultate/Reports/Rpt_Auswertung_Ort_Top_24_old.cs @@ -0,0 +1,185 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +namespace QW2021C.Resultate.Reports { + using System; + using System.ComponentModel; + using CrystalDecisions.Shared; + using CrystalDecisions.ReportSource; + using CrystalDecisions.CrystalReports.Engine; + + + public class Rpt_Auswertung_Ort_Top_24_old : ReportClass { + + public Rpt_Auswertung_Ort_Top_24_old() { + } + + public override string ResourceName { + get { + return "Rpt_Auswertung_Ort_Top_24_old.rpt"; + } + set { + // Do nothing + } + } + + public override bool NewGenerator { + get { + return true; + } + set { + // Do nothing + } + } + + public override string FullResourceName { + get { + return "QW2021C.Resultate.Reports.Rpt_Auswertung_Ort_Top_24_old.rpt"; + } + set { + // Do nothing + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section1 { + get { + return this.ReportDefinition.Sections[0]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section2 { + get { + return this.ReportDefinition.Sections[1]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection3 { + get { + return this.ReportDefinition.Sections[2]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection2 { + get { + return this.ReportDefinition.Sections[3]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section3 { + get { + return this.ReportDefinition.Sections[4]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { + get { + return this.ReportDefinition.Sections[5]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection3 { + get { + return this.ReportDefinition.Sections[6]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section4 { + get { + return this.ReportDefinition.Sections[7]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section5 { + get { + return this.ReportDefinition.Sections[8]; + } + } + } + + [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] + public class CachedRpt_Auswertung_Ort_Top_24_old : Component, ICachedReport { + + public CachedRpt_Auswertung_Ort_Top_24_old() { + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool IsCacheable { + get { + return true; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool ShareDBLogonInfo { + get { + return false; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual System.TimeSpan CacheTimeOut { + get { + return CachedReportConstants.DEFAULT_TIMEOUT; + } + set { + // + } + } + + public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { + Rpt_Auswertung_Ort_Top_24_old rpt = new Rpt_Auswertung_Ort_Top_24_old(); + rpt.Site = this.Site; + return rpt; + } + + public virtual string GetCustomizedCacheKey(RequestContext request) { + String key = null; + // // The following is the code used to generate the default + // // cache key for caching report jobs in the ASP.NET Cache. + // // Feel free to modify this code to suit your needs. + // // Returning key == null causes the default cache key to + // // be generated. + // + // key = RequestContext.BuildCompleteCacheKey( + // request, + // null, // sReportFilename + // this.GetType(), + // this.ShareDBLogonInfo ); + return key; + } + } +} diff --git a/Resultate/Reports/Rpt_Auswertung_Ort_Top_24_old.rpt b/Resultate/Reports/Rpt_Auswertung_Ort_Top_24_old.rpt new file mode 100644 index 0000000..758948a Binary files /dev/null and b/Resultate/Reports/Rpt_Auswertung_Ort_Top_24_old.rpt differ diff --git a/Resultate/Reports/Rpt_Auswertung_Ort_old.cs b/Resultate/Reports/Rpt_Auswertung_Ort_old.cs new file mode 100644 index 0000000..8d6bb4a --- /dev/null +++ b/Resultate/Reports/Rpt_Auswertung_Ort_old.cs @@ -0,0 +1,185 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +namespace QW2021C.Resultate.Reports { + using System; + using System.ComponentModel; + using CrystalDecisions.Shared; + using CrystalDecisions.ReportSource; + using CrystalDecisions.CrystalReports.Engine; + + + public class Rpt_Auswertung_Ort_old : ReportClass { + + public Rpt_Auswertung_Ort_old() { + } + + public override string ResourceName { + get { + return "Rpt_Auswertung_Ort_old.rpt"; + } + set { + // Do nothing + } + } + + public override bool NewGenerator { + get { + return true; + } + set { + // Do nothing + } + } + + public override string FullResourceName { + get { + return "QW2021C.Resultate.Reports.Rpt_Auswertung_Ort_old.rpt"; + } + set { + // Do nothing + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section1 { + get { + return this.ReportDefinition.Sections[0]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section2 { + get { + return this.ReportDefinition.Sections[1]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection3 { + get { + return this.ReportDefinition.Sections[2]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection2 { + get { + return this.ReportDefinition.Sections[3]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section3 { + get { + return this.ReportDefinition.Sections[4]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 { + get { + return this.ReportDefinition.Sections[5]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection3 { + get { + return this.ReportDefinition.Sections[6]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section4 { + get { + return this.ReportDefinition.Sections[7]; + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public CrystalDecisions.CrystalReports.Engine.Section Section5 { + get { + return this.ReportDefinition.Sections[8]; + } + } + } + + [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] + public class CachedRpt_Auswertung_Ort_old : Component, ICachedReport { + + public CachedRpt_Auswertung_Ort_old() { + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool IsCacheable { + get { + return true; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual bool ShareDBLogonInfo { + get { + return false; + } + set { + // + } + } + + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public virtual System.TimeSpan CacheTimeOut { + get { + return CachedReportConstants.DEFAULT_TIMEOUT; + } + set { + // + } + } + + public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { + Rpt_Auswertung_Ort_old rpt = new Rpt_Auswertung_Ort_old(); + rpt.Site = this.Site; + return rpt; + } + + public virtual string GetCustomizedCacheKey(RequestContext request) { + String key = null; + // // The following is the code used to generate the default + // // cache key for caching report jobs in the ASP.NET Cache. + // // Feel free to modify this code to suit your needs. + // // Returning key == null causes the default cache key to + // // be generated. + // + // key = RequestContext.BuildCompleteCacheKey( + // request, + // null, // sReportFilename + // this.GetType(), + // this.ShareDBLogonInfo ); + return key; + } + } +} diff --git a/Resultate/Reports/Rpt_Auswertung_Ort_old.rpt b/Resultate/Reports/Rpt_Auswertung_Ort_old.rpt new file mode 100644 index 0000000..4a897f7 Binary files /dev/null and b/Resultate/Reports/Rpt_Auswertung_Ort_old.rpt differ diff --git a/Resultate/Reports/Erdgas.cs b/Resultate/Reports/UKC.cs similarity index 94% rename from Resultate/Reports/Erdgas.cs rename to Resultate/Reports/UKC.cs index 0ec5e28..ee975de 100644 --- a/Resultate/Reports/Erdgas.cs +++ b/Resultate/Reports/UKC.cs @@ -16,14 +16,14 @@ namespace QW2021C.Resultate.Reports { using CrystalDecisions.CrystalReports.Engine; - public class Erdgas : ReportClass { + public class UKC : ReportClass { - public Erdgas() { + public UKC() { } public override string ResourceName { get { - return "Erdgas.rpt"; + return "UKC.rpt"; } set { // Do nothing @@ -41,7 +41,7 @@ namespace QW2021C.Resultate.Reports { public override string FullResourceName { get { - return "QW2021C.Resultate.Reports.Erdgas.rpt"; + return "QW2021C.Resultate.Reports.UKC.rpt"; } set { // Do nothing @@ -106,9 +106,9 @@ namespace QW2021C.Resultate.Reports { } [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")] - public class CachedErdgas : Component, ICachedReport { + public class CachedUKC : Component, ICachedReport { - public CachedErdgas() { + public CachedUKC() { } [Browsable(false)] @@ -145,7 +145,7 @@ namespace QW2021C.Resultate.Reports { } public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { - Erdgas rpt = new Erdgas(); + UKC rpt = new UKC(); rpt.Site = this.Site; return rpt; } diff --git a/Resultate/Reports/UKC.rpt b/Resultate/Reports/UKC.rpt new file mode 100644 index 0000000..9758436 Binary files /dev/null and b/Resultate/Reports/UKC.rpt differ diff --git a/Resultate/Reports/Vierkampf.rpt b/Resultate/Reports/Vierkampf.rpt index b31fde0..959dfeb 100644 Binary files a/Resultate/Reports/Vierkampf.rpt and b/Resultate/Reports/Vierkampf.rpt differ diff --git a/Workdir/26042021204010_Rpt.xml b/Workdir/26042021204010_Rpt.xml new file mode 100644 index 0000000..558da7f --- /dev/null +++ b/Workdir/26042021204010_Rpt.xml @@ -0,0 +1,1145 @@ + + + + 1. LCR + + <_data> + 7 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 13.50 + 13.50 + 220 + TOG + + + + + <_data> + 4 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 01:51:21 + 561 + TOG + + + + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + TOG + 1 + 1 + + + <_data> + 7 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 10.10 + 205 + SUI + + + + + <_data> + 2 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 10.00 + 10.00 + 549 + SUI + + + + + <_data> + 10 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 12.12 + 72 + SUI + + + + + <_data> + 5 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 23.23 + 23.23 + 335 + SUI + + + + + <_data> + 9 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 12.00 + 81 + SUI + + + + + <_data> + 4 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 24.24 + 24.24 + 352 + SUI + + + + + <_data> + 6 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 6.00 + 6.00 + 301 + SUI + + + + + <_data> + 4 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 19.19 + 413 + SUI + + + + + <_data> + 8 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 12.50 + 12.50 + 200 + SUI + + + + + <_data> + 6 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 3 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 01:50:36 + 576 + SUI + + + + + <_data> + 6 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 14.50 + 14.50 + 240 + SUI + + + + + <_data> + 5 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 01:54:93 + 495 + SUI + + + + + <_data> + 3 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 2 + 2 + + + <_data> + 10 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 02:06:03 + 323 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 19.50 + 19.50 + 338 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 1 + 1 + + + <_data> + 5 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 15.50 + 15.50 + 260 + SUI + + + + + <_data> + 6 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 01:57:38 + 453 + SUI + + + + + <_data> + 4 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 3 + 3 + + + <_data> + 9 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 11.50 + 11.50 + 180 + SUI + + + + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 2 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 01:49:82 + 587 + SUI + + + + + <_data> + 3 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 17.50 + 17.50 + 299 + SUI + + + + + <_data> + 8 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 02:04:32 + 347 + SUI + + + + + <_data> + 5 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.30 + 1.30 + 518 + SUI + 2 + 2 + + + <_data> + 2 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 21.21 + 458 + SUI + + + + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 11.00 + 11.00 + 609 + SUI + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + POL + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 20.20 + 20.20 + 285 + POL + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 10.50 + 10.50 + 159 + SUI + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.10 + 1.10 + 329 + SUI + 2 + 2 + + + <_data> + 1 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 01:47:52 + 631 + SUI + + + + + <_data> + 2 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 18.50 + 18.50 + 319 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 02:05:77 + 327 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.15 + 1.15 + 377 + SUI + 3 + 3 + + + <_data> + 12 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 10.10 + 10.10 + 106 + SUI + + + + + <_data> + 3 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 9.90 + 358 + SUI + + + + + <_data> + 11 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 11.11 + 11.11 + 125 + SUI + + + + + <_data> + 1 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 8.80 + 606 + SUI + + + + + <_data> + 7 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 5.00 + 5.00 + 236 + SUI + + + + + <_data> + 1 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 30.00 + 646 + SUI + + + + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 12.12 + 252 + SUI + + + + + <_data> + 3 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 9.00 + 9.00 + 488 + SUI + + + + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 15.15 + 322 + SUI + + + + + <_data> + 4 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 8.00 + 8.00 + 427 + SUI + + + + + <_data> + 6 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 22.22 + 22.22 + 319 + SUI + + + + + <_data> + 5 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 10.00 + 339 + SUI + + + + + <_data> + 1 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 30.30 + 30.30 + 451 + SUI + + + + + <_data> + 10 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 12.12 + 12.12 + 144 + GER + + + + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 10.10 + 321 + GER + + + + + <_data> + 11 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 13.13 + 19 + SUI + + + + + <_data> + 8 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 15.15 + 15.15 + 198 + SUI + + + + + <_data> + 4 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 9.99 + 341 + SUI + + + + + <_data> + 2 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 28.28 + 28.28 + 418 + SUI + + + + + <_data> + 5 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 7.00 + 7.00 + 365 + SUI + + + + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 20.20 + 435 + SUI + + + + + <_data> + 4 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 16.50 + 16.50 + 280 + SUI + + + + + <_data> + 7 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 02:03:51 + 359 + SUI + + + + + <_data> + 8 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 3 + 3 + + + <_data> + 9 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 13.13 + 13.13 + 162 + SUI + + + + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 8.88 + 585 + SUI + + + + + <_data> + 7 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + SUI + + + + + <_data> + 3 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 25.25 + 25.25 + 369 + SUI + + + + + \ No newline at end of file diff --git a/Workdir/26042021204113_Rpt.xml b/Workdir/26042021204113_Rpt.xml new file mode 100644 index 0000000..558da7f --- /dev/null +++ b/Workdir/26042021204113_Rpt.xml @@ -0,0 +1,1145 @@ + + + + 1. LCR + + <_data> + 7 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 13.50 + 13.50 + 220 + TOG + + + + + <_data> + 4 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 01:51:21 + 561 + TOG + + + + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + TOG + 1 + 1 + + + <_data> + 7 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 10.10 + 205 + SUI + + + + + <_data> + 2 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 10.00 + 10.00 + 549 + SUI + + + + + <_data> + 10 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 12.12 + 72 + SUI + + + + + <_data> + 5 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 23.23 + 23.23 + 335 + SUI + + + + + <_data> + 9 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 12.00 + 81 + SUI + + + + + <_data> + 4 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 24.24 + 24.24 + 352 + SUI + + + + + <_data> + 6 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 6.00 + 6.00 + 301 + SUI + + + + + <_data> + 4 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 19.19 + 413 + SUI + + + + + <_data> + 8 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 12.50 + 12.50 + 200 + SUI + + + + + <_data> + 6 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 3 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 01:50:36 + 576 + SUI + + + + + <_data> + 6 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 14.50 + 14.50 + 240 + SUI + + + + + <_data> + 5 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 01:54:93 + 495 + SUI + + + + + <_data> + 3 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 2 + 2 + + + <_data> + 10 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 02:06:03 + 323 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 19.50 + 19.50 + 338 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 1 + 1 + + + <_data> + 5 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 15.50 + 15.50 + 260 + SUI + + + + + <_data> + 6 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 01:57:38 + 453 + SUI + + + + + <_data> + 4 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 3 + 3 + + + <_data> + 9 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 11.50 + 11.50 + 180 + SUI + + + + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 2 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 01:49:82 + 587 + SUI + + + + + <_data> + 3 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 17.50 + 17.50 + 299 + SUI + + + + + <_data> + 8 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 02:04:32 + 347 + SUI + + + + + <_data> + 5 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.30 + 1.30 + 518 + SUI + 2 + 2 + + + <_data> + 2 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 21.21 + 458 + SUI + + + + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 11.00 + 11.00 + 609 + SUI + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + POL + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 20.20 + 20.20 + 285 + POL + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 10.50 + 10.50 + 159 + SUI + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.10 + 1.10 + 329 + SUI + 2 + 2 + + + <_data> + 1 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 01:47:52 + 631 + SUI + + + + + <_data> + 2 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 18.50 + 18.50 + 319 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 02:05:77 + 327 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.15 + 1.15 + 377 + SUI + 3 + 3 + + + <_data> + 12 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 10.10 + 10.10 + 106 + SUI + + + + + <_data> + 3 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 9.90 + 358 + SUI + + + + + <_data> + 11 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 11.11 + 11.11 + 125 + SUI + + + + + <_data> + 1 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 8.80 + 606 + SUI + + + + + <_data> + 7 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 5.00 + 5.00 + 236 + SUI + + + + + <_data> + 1 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 30.00 + 646 + SUI + + + + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 12.12 + 252 + SUI + + + + + <_data> + 3 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 9.00 + 9.00 + 488 + SUI + + + + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 15.15 + 322 + SUI + + + + + <_data> + 4 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 8.00 + 8.00 + 427 + SUI + + + + + <_data> + 6 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 22.22 + 22.22 + 319 + SUI + + + + + <_data> + 5 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 10.00 + 339 + SUI + + + + + <_data> + 1 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 30.30 + 30.30 + 451 + SUI + + + + + <_data> + 10 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 12.12 + 12.12 + 144 + GER + + + + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 10.10 + 321 + GER + + + + + <_data> + 11 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 13.13 + 19 + SUI + + + + + <_data> + 8 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 15.15 + 15.15 + 198 + SUI + + + + + <_data> + 4 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 9.99 + 341 + SUI + + + + + <_data> + 2 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 28.28 + 28.28 + 418 + SUI + + + + + <_data> + 5 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 7.00 + 7.00 + 365 + SUI + + + + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 20.20 + 435 + SUI + + + + + <_data> + 4 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 16.50 + 16.50 + 280 + SUI + + + + + <_data> + 7 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 02:03:51 + 359 + SUI + + + + + <_data> + 8 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 3 + 3 + + + <_data> + 9 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 13.13 + 13.13 + 162 + SUI + + + + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 8.88 + 585 + SUI + + + + + <_data> + 7 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + SUI + + + + + <_data> + 3 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 25.25 + 25.25 + 369 + SUI + + + + + \ No newline at end of file diff --git a/Workdir/26042021204414_Rpt.xml b/Workdir/26042021204414_Rpt.xml new file mode 100644 index 0000000..558da7f --- /dev/null +++ b/Workdir/26042021204414_Rpt.xml @@ -0,0 +1,1145 @@ + + + + 1. LCR + + <_data> + 7 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 13.50 + 13.50 + 220 + TOG + + + + + <_data> + 4 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 01:51:21 + 561 + TOG + + + + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + TOG + 1 + 1 + + + <_data> + 7 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 10.10 + 205 + SUI + + + + + <_data> + 2 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 10.00 + 10.00 + 549 + SUI + + + + + <_data> + 10 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 12.12 + 72 + SUI + + + + + <_data> + 5 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 23.23 + 23.23 + 335 + SUI + + + + + <_data> + 9 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 12.00 + 81 + SUI + + + + + <_data> + 4 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 24.24 + 24.24 + 352 + SUI + + + + + <_data> + 6 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 6.00 + 6.00 + 301 + SUI + + + + + <_data> + 4 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 19.19 + 413 + SUI + + + + + <_data> + 8 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 12.50 + 12.50 + 200 + SUI + + + + + <_data> + 6 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 3 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 01:50:36 + 576 + SUI + + + + + <_data> + 6 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 14.50 + 14.50 + 240 + SUI + + + + + <_data> + 5 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 01:54:93 + 495 + SUI + + + + + <_data> + 3 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 2 + 2 + + + <_data> + 10 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 02:06:03 + 323 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 19.50 + 19.50 + 338 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 1 + 1 + + + <_data> + 5 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 15.50 + 15.50 + 260 + SUI + + + + + <_data> + 6 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 01:57:38 + 453 + SUI + + + + + <_data> + 4 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 3 + 3 + + + <_data> + 9 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 11.50 + 11.50 + 180 + SUI + + + + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 2 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 01:49:82 + 587 + SUI + + + + + <_data> + 3 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 17.50 + 17.50 + 299 + SUI + + + + + <_data> + 8 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 02:04:32 + 347 + SUI + + + + + <_data> + 5 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.30 + 1.30 + 518 + SUI + 2 + 2 + + + <_data> + 2 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 21.21 + 458 + SUI + + + + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 11.00 + 11.00 + 609 + SUI + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + POL + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 20.20 + 20.20 + 285 + POL + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 10.50 + 10.50 + 159 + SUI + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.10 + 1.10 + 329 + SUI + 2 + 2 + + + <_data> + 1 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 01:47:52 + 631 + SUI + + + + + <_data> + 2 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 18.50 + 18.50 + 319 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 02:05:77 + 327 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.15 + 1.15 + 377 + SUI + 3 + 3 + + + <_data> + 12 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 10.10 + 10.10 + 106 + SUI + + + + + <_data> + 3 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 9.90 + 358 + SUI + + + + + <_data> + 11 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 11.11 + 11.11 + 125 + SUI + + + + + <_data> + 1 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 8.80 + 606 + SUI + + + + + <_data> + 7 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 5.00 + 5.00 + 236 + SUI + + + + + <_data> + 1 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 30.00 + 646 + SUI + + + + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 12.12 + 252 + SUI + + + + + <_data> + 3 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 9.00 + 9.00 + 488 + SUI + + + + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 15.15 + 322 + SUI + + + + + <_data> + 4 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 8.00 + 8.00 + 427 + SUI + + + + + <_data> + 6 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 22.22 + 22.22 + 319 + SUI + + + + + <_data> + 5 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 10.00 + 339 + SUI + + + + + <_data> + 1 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 30.30 + 30.30 + 451 + SUI + + + + + <_data> + 10 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 12.12 + 12.12 + 144 + GER + + + + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 10.10 + 321 + GER + + + + + <_data> + 11 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 13.13 + 19 + SUI + + + + + <_data> + 8 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 15.15 + 15.15 + 198 + SUI + + + + + <_data> + 4 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 9.99 + 341 + SUI + + + + + <_data> + 2 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 28.28 + 28.28 + 418 + SUI + + + + + <_data> + 5 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 7.00 + 7.00 + 365 + SUI + + + + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 20.20 + 435 + SUI + + + + + <_data> + 4 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 16.50 + 16.50 + 280 + SUI + + + + + <_data> + 7 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 02:03:51 + 359 + SUI + + + + + <_data> + 8 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 3 + 3 + + + <_data> + 9 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 13.13 + 13.13 + 162 + SUI + + + + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 8.88 + 585 + SUI + + + + + <_data> + 7 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + SUI + + + + + <_data> + 3 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 25.25 + 25.25 + 369 + SUI + + + + + \ No newline at end of file diff --git a/Workdir/26042021204921_Rpt.xml b/Workdir/26042021204921_Rpt.xml new file mode 100644 index 0000000..558da7f --- /dev/null +++ b/Workdir/26042021204921_Rpt.xml @@ -0,0 +1,1145 @@ + + + + 1. LCR + + <_data> + 7 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 13.50 + 13.50 + 220 + TOG + + + + + <_data> + 4 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 01:51:21 + 561 + TOG + + + + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + TOG + 1 + 1 + + + <_data> + 7 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 10.10 + 205 + SUI + + + + + <_data> + 2 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 10.00 + 10.00 + 549 + SUI + + + + + <_data> + 10 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 12.12 + 72 + SUI + + + + + <_data> + 5 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 23.23 + 23.23 + 335 + SUI + + + + + <_data> + 9 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 12.00 + 81 + SUI + + + + + <_data> + 4 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 24.24 + 24.24 + 352 + SUI + + + + + <_data> + 6 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 6.00 + 6.00 + 301 + SUI + + + + + <_data> + 4 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 19.19 + 413 + SUI + + + + + <_data> + 8 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 12.50 + 12.50 + 200 + SUI + + + + + <_data> + 6 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 3 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 01:50:36 + 576 + SUI + + + + + <_data> + 6 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 14.50 + 14.50 + 240 + SUI + + + + + <_data> + 5 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 01:54:93 + 495 + SUI + + + + + <_data> + 3 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 2 + 2 + + + <_data> + 10 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 02:06:03 + 323 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 19.50 + 19.50 + 338 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 1 + 1 + + + <_data> + 5 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 15.50 + 15.50 + 260 + SUI + + + + + <_data> + 6 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 01:57:38 + 453 + SUI + + + + + <_data> + 4 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 3 + 3 + + + <_data> + 9 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 11.50 + 11.50 + 180 + SUI + + + + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 2 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 01:49:82 + 587 + SUI + + + + + <_data> + 3 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 17.50 + 17.50 + 299 + SUI + + + + + <_data> + 8 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 02:04:32 + 347 + SUI + + + + + <_data> + 5 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.30 + 1.30 + 518 + SUI + 2 + 2 + + + <_data> + 2 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 21.21 + 458 + SUI + + + + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 11.00 + 11.00 + 609 + SUI + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + POL + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 20.20 + 20.20 + 285 + POL + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 10.50 + 10.50 + 159 + SUI + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.10 + 1.10 + 329 + SUI + 2 + 2 + + + <_data> + 1 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 01:47:52 + 631 + SUI + + + + + <_data> + 2 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 18.50 + 18.50 + 319 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 02:05:77 + 327 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.15 + 1.15 + 377 + SUI + 3 + 3 + + + <_data> + 12 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 10.10 + 10.10 + 106 + SUI + + + + + <_data> + 3 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 9.90 + 358 + SUI + + + + + <_data> + 11 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 11.11 + 11.11 + 125 + SUI + + + + + <_data> + 1 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 8.80 + 606 + SUI + + + + + <_data> + 7 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 5.00 + 5.00 + 236 + SUI + + + + + <_data> + 1 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 30.00 + 646 + SUI + + + + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 12.12 + 252 + SUI + + + + + <_data> + 3 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 9.00 + 9.00 + 488 + SUI + + + + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 15.15 + 322 + SUI + + + + + <_data> + 4 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 8.00 + 8.00 + 427 + SUI + + + + + <_data> + 6 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 22.22 + 22.22 + 319 + SUI + + + + + <_data> + 5 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 10.00 + 339 + SUI + + + + + <_data> + 1 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 30.30 + 30.30 + 451 + SUI + + + + + <_data> + 10 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 12.12 + 12.12 + 144 + GER + + + + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 10.10 + 321 + GER + + + + + <_data> + 11 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 13.13 + 19 + SUI + + + + + <_data> + 8 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 15.15 + 15.15 + 198 + SUI + + + + + <_data> + 4 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 9.99 + 341 + SUI + + + + + <_data> + 2 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 28.28 + 28.28 + 418 + SUI + + + + + <_data> + 5 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 7.00 + 7.00 + 365 + SUI + + + + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 20.20 + 435 + SUI + + + + + <_data> + 4 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 16.50 + 16.50 + 280 + SUI + + + + + <_data> + 7 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 02:03:51 + 359 + SUI + + + + + <_data> + 8 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 3 + 3 + + + <_data> + 9 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 13.13 + 13.13 + 162 + SUI + + + + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 8.88 + 585 + SUI + + + + + <_data> + 7 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + SUI + + + + + <_data> + 3 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 25.25 + 25.25 + 369 + SUI + + + + + \ No newline at end of file diff --git a/Workdir/26042021205325_Rpt.xml b/Workdir/26042021205325_Rpt.xml new file mode 100644 index 0000000..558da7f --- /dev/null +++ b/Workdir/26042021205325_Rpt.xml @@ -0,0 +1,1145 @@ + + + + 1. LCR + + <_data> + 7 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 13.50 + 13.50 + 220 + TOG + + + + + <_data> + 4 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 01:51:21 + 561 + TOG + + + + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + TOG + 1 + 1 + + + <_data> + 7 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 10.10 + 205 + SUI + + + + + <_data> + 2 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 10.00 + 10.00 + 549 + SUI + + + + + <_data> + 10 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 12.12 + 72 + SUI + + + + + <_data> + 5 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 23.23 + 23.23 + 335 + SUI + + + + + <_data> + 9 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 12.00 + 81 + SUI + + + + + <_data> + 4 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 24.24 + 24.24 + 352 + SUI + + + + + <_data> + 6 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 6.00 + 6.00 + 301 + SUI + + + + + <_data> + 4 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 19.19 + 413 + SUI + + + + + <_data> + 8 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 12.50 + 12.50 + 200 + SUI + + + + + <_data> + 6 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 3 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 01:50:36 + 576 + SUI + + + + + <_data> + 6 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 14.50 + 14.50 + 240 + SUI + + + + + <_data> + 5 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 01:54:93 + 495 + SUI + + + + + <_data> + 3 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 2 + 2 + + + <_data> + 10 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 02:06:03 + 323 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 19.50 + 19.50 + 338 + SUI + + + + + <_data> + 1 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 1 + 1 + + + <_data> + 5 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 15.50 + 15.50 + 260 + SUI + + + + + <_data> + 6 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 01:57:38 + 453 + SUI + + + + + <_data> + 4 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.35 + 1.35 + 565 + SUI + 3 + 3 + + + <_data> + 9 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 11.50 + 11.50 + 180 + SUI + + + + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 1 + 1 + + + <_data> + 2 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 01:49:82 + 587 + SUI + + + + + <_data> + 3 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 17.50 + 17.50 + 299 + SUI + + + + + <_data> + 8 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 02:04:32 + 347 + SUI + + + + + <_data> + 5 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.30 + 1.30 + 518 + SUI + 2 + 2 + + + <_data> + 2 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 21.21 + 458 + SUI + + + + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 11.00 + 11.00 + 609 + SUI + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + POL + + + + + <_data> + 7 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 20.20 + 20.20 + 285 + POL + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 10.50 + 10.50 + 159 + SUI + + + + + <_data> + 10 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.10 + 1.10 + 329 + SUI + 2 + 2 + + + <_data> + 1 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 01:47:52 + 631 + SUI + + + + + <_data> + 2 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 18.50 + 18.50 + 319 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 02:05:77 + 327 + SUI + + + + + <_data> + 9 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.15 + 1.15 + 377 + SUI + 3 + 3 + + + <_data> + 12 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 10.10 + 10.10 + 106 + SUI + + + + + <_data> + 3 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 9.90 + 358 + SUI + + + + + <_data> + 11 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 11.11 + 11.11 + 125 + SUI + + + + + <_data> + 1 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 8.80 + 606 + SUI + + + + + <_data> + 7 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 5.00 + 5.00 + 236 + SUI + + + + + <_data> + 1 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 30.00 + 646 + SUI + + + + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 12.12 + 252 + SUI + + + + + <_data> + 3 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 9.00 + 9.00 + 488 + SUI + + + + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 15.15 + 322 + SUI + + + + + <_data> + 4 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 8.00 + 8.00 + 427 + SUI + + + + + <_data> + 6 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 22.22 + 22.22 + 319 + SUI + + + + + <_data> + 5 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 10.00 + 339 + SUI + + + + + <_data> + 1 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 30.30 + 30.30 + 451 + SUI + + + + + <_data> + 10 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 12.12 + 12.12 + 144 + GER + + + + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 10.10 + 321 + GER + + + + + <_data> + 11 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 13.13 + 19 + SUI + + + + + <_data> + 8 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 15.15 + 15.15 + 198 + SUI + + + + + <_data> + 4 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 9.99 + 341 + SUI + + + + + <_data> + 2 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 28.28 + 28.28 + 418 + SUI + + + + + <_data> + 5 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Kugelstoss + 7.00 + 7.00 + 365 + SUI + + + + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 20.20 + 435 + SUI + + + + + <_data> + 4 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Speerwurf + 16.50 + 16.50 + 280 + SUI + + + + + <_data> + 7 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 02:03:51 + 359 + SUI + + + + + <_data> + 8 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + Hochsprung + 1.20 + 1.20 + 424 + SUI + 3 + 3 + + + <_data> + 9 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 13.13 + 13.13 + 162 + SUI + + + + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 8.88 + 585 + SUI + + + + + <_data> + 7 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 11.11 + 170 + SUI + + + + + <_data> + 3 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + Ballwurf + 25.25 + 25.25 + 369 + SUI + + + + + \ No newline at end of file diff --git a/Workdir/26042021212140_Rpt.xml b/Workdir/26042021212140_Rpt.xml new file mode 100644 index 0000000..9df1b96 --- /dev/null +++ b/Workdir/26042021212140_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_mehrkampf> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_mehrkampf> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_mehrkampf> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_mehrkampf> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_mehrkampf> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_mehrkampf> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_mehrkampf> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_mehrkampf> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_mehrkampf> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_mehrkampf> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_mehrkampf> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_mehrkampf> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_mehrkampf> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_mehrkampf> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_mehrkampf> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_mehrkampf> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_mehrkampf> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_mehrkampf> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_mehrkampf> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_mehrkampf> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_mehrkampf> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_mehrkampf> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_mehrkampf> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_mehrkampf> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_mehrkampf> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_mehrkampf> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_mehrkampf> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_mehrkampf> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_mehrkampf> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021212200_Rpt.xml b/Workdir/26042021212200_Rpt.xml new file mode 100644 index 0000000..51bd1c0 --- /dev/null +++ b/Workdir/26042021212200_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_data> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_data> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_data> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_data> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_data> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_data> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_data> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_data> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_data> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_data> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_data> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_data> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_data> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_data> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_data> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_data> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_data> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_data> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_data> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_data> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_data> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021212517_Rpt.xml b/Workdir/26042021212517_Rpt.xml new file mode 100644 index 0000000..9df1b96 --- /dev/null +++ b/Workdir/26042021212517_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_mehrkampf> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_mehrkampf> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_mehrkampf> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_mehrkampf> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_mehrkampf> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_mehrkampf> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_mehrkampf> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_mehrkampf> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_mehrkampf> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_mehrkampf> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_mehrkampf> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_mehrkampf> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_mehrkampf> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_mehrkampf> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_mehrkampf> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_mehrkampf> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_mehrkampf> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_mehrkampf> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_mehrkampf> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_mehrkampf> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_mehrkampf> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_mehrkampf> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_mehrkampf> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_mehrkampf> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_mehrkampf> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_mehrkampf> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_mehrkampf> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_mehrkampf> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_mehrkampf> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021212552_Rpt.xml b/Workdir/26042021212552_Rpt.xml new file mode 100644 index 0000000..9df1b96 --- /dev/null +++ b/Workdir/26042021212552_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_mehrkampf> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_mehrkampf> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_mehrkampf> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_mehrkampf> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_mehrkampf> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_mehrkampf> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_mehrkampf> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_mehrkampf> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_mehrkampf> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_mehrkampf> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_mehrkampf> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_mehrkampf> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_mehrkampf> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_mehrkampf> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_mehrkampf> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_mehrkampf> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_mehrkampf> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_mehrkampf> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_mehrkampf> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_mehrkampf> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_mehrkampf> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_mehrkampf> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_mehrkampf> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_mehrkampf> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_mehrkampf> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_mehrkampf> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_mehrkampf> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_mehrkampf> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_mehrkampf> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021212649_Rpt.xml b/Workdir/26042021212649_Rpt.xml new file mode 100644 index 0000000..9df1b96 --- /dev/null +++ b/Workdir/26042021212649_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_mehrkampf> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_mehrkampf> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_mehrkampf> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_mehrkampf> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_mehrkampf> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_mehrkampf> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_mehrkampf> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_mehrkampf> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_mehrkampf> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_mehrkampf> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_mehrkampf> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_mehrkampf> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_mehrkampf> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_mehrkampf> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_mehrkampf> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_mehrkampf> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_mehrkampf> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_mehrkampf> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_mehrkampf> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_mehrkampf> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_mehrkampf> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_mehrkampf> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_mehrkampf> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_mehrkampf> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_mehrkampf> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_mehrkampf> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_mehrkampf> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_mehrkampf> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_mehrkampf> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021213147_Rpt.xml b/Workdir/26042021213147_Rpt.xml new file mode 100644 index 0000000..9df1b96 --- /dev/null +++ b/Workdir/26042021213147_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_mehrkampf> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_mehrkampf> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_mehrkampf> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_mehrkampf> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_mehrkampf> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_mehrkampf> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_mehrkampf> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_mehrkampf> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_mehrkampf> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_mehrkampf> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_mehrkampf> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_mehrkampf> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_mehrkampf> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_mehrkampf> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_mehrkampf> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_mehrkampf> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_mehrkampf> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_mehrkampf> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_mehrkampf> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_mehrkampf> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_mehrkampf> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_mehrkampf> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_mehrkampf> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_mehrkampf> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_mehrkampf> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_mehrkampf> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_mehrkampf> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_mehrkampf> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_mehrkampf> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021213306_Rpt.xml b/Workdir/26042021213306_Rpt.xml new file mode 100644 index 0000000..51bd1c0 --- /dev/null +++ b/Workdir/26042021213306_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_data> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_data> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_data> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_data> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_data> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_data> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_data> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_data> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_data> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_data> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_data> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_data> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_data> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_data> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_data> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_data> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_data> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_data> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_data> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_data> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_data> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021213553_Rpt.xml b/Workdir/26042021213553_Rpt.xml new file mode 100644 index 0000000..9df1b96 --- /dev/null +++ b/Workdir/26042021213553_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_mehrkampf> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_mehrkampf> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_mehrkampf> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_mehrkampf> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_mehrkampf> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_mehrkampf> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_mehrkampf> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_mehrkampf> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_mehrkampf> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_mehrkampf> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_mehrkampf> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_mehrkampf> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_mehrkampf> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_mehrkampf> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_mehrkampf> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_mehrkampf> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_mehrkampf> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_mehrkampf> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_mehrkampf> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_mehrkampf> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_mehrkampf> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_mehrkampf> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_mehrkampf> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_mehrkampf> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_mehrkampf> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_mehrkampf> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_mehrkampf> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_mehrkampf> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_mehrkampf> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021213608_Rpt.xml b/Workdir/26042021213608_Rpt.xml new file mode 100644 index 0000000..51bd1c0 --- /dev/null +++ b/Workdir/26042021213608_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_data> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_data> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_data> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_data> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_data> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_data> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_data> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_data> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_data> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_data> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_data> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_data> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_data> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_data> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_data> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_data> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_data> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_data> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_data> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_data> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_data> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021213706_Rpt.xml b/Workdir/26042021213706_Rpt.xml new file mode 100644 index 0000000..51bd1c0 --- /dev/null +++ b/Workdir/26042021213706_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_data> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_data> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_data> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_data> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_data> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_data> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_data> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_data> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_data> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_data> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_data> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_data> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_data> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_data> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_data> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_data> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_data> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_data> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_data> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_data> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_data> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file diff --git a/Workdir/26042021213810_Rpt.xml b/Workdir/26042021213810_Rpt.xml new file mode 100644 index 0000000..51bd1c0 --- /dev/null +++ b/Workdir/26042021213810_Rpt.xml @@ -0,0 +1,876 @@ + + + + 1. LCR + + <_data> + 1 + Roy Annabelle + 2011 + 248109 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.99 + 341 + Ballwurf + 28.28 + 418 + + 0 + 0 + + 0 + 0 + + + + + + + 759 + + 9 + + <_data> + 2 + Meili Sophie + 2010 + 249493 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.88 + 585 + Ballwurf + 13.13 + 162 + + 0 + 0 + + 0 + 0 + + + + + + + 747 + + 10 + + <_data> + 3 + Desiderio Gaia + 2011 + 247161 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 8.80 + 606 + Ballwurf + 11.11 + 125 + + 0 + 0 + + 0 + 0 + + + + + + + 731 + + 5 + + <_data> + 4 + Ouattara July-Mae + 2010 + 247961 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.00 + 339 + Ballwurf + 22.22 + 319 + + 0 + 0 + + 0 + 0 + + + + + + + 658 + + 6 + + <_data> + 5 + Rosenberg Seraina + 2010 + 252182 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 25.25 + 369 + + 0 + 0 + + 0 + 0 + + + + + + + 539 + + 11 + + <_data> + 6 + Maiwald Luna + 2010 + 248105 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 10.10 + 321 + Ballwurf + 12.12 + 144 + + 0 + 0 + + 0 + 0 + + + + + + + 465 + + 7 + + <_data> + 7 + Crola Edda + 2011 + 245048 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 9.90 + 358 + Ballwurf + 10.10 + 106 + + 0 + 0 + + 0 + 0 + + + + + + + 464 + + 4 + + <_data> + 8 + Ngwenya Olivia + 2010 + 244191 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 11.11 + 170 + Ballwurf + 20.20 + 285 + + 0 + 0 + + 0 + 0 + + + + + + + 455 + + 3 + + <_data> + 9 + Chabloz Eloïse + 2010 + 248098 + LAC TV Unterstrass Zürich + U12W + U12W + + 0 + 0 + Ballwurf + 30.30 + 451 + + 0 + 0 + + 0 + 0 + + + + + + + 451 + + 12 + + <_data> + 10 + Puhan Tilda + 2010 + 173433 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.00 + 81 + Ballwurf + 24.24 + 352 + + 0 + 0 + + 0 + 0 + + + + + + + 433 + + 2 + + <_data> + 11 + Probst Elin Katharina + 2010 + 173432 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 12.12 + 72 + Ballwurf + 23.23 + 335 + + 0 + 0 + + 0 + 0 + + + + + + + 407 + + 1 + + <_data> + 12 + Merkel Jaël Anne + 2011 + 248107 + LAC TV Unterstrass Zürich + U12W + U12W + 60m + 13.13 + 19 + Ballwurf + 15.15 + 198 + + 0 + 0 + + 0 + 0 + + + + + + + 217 + + 8 + + <_data> + 1 + Kehrle Jan + 2009 + 176149 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 21.21 + 458 + Kugelstoss + 11.00 + 609 + + 0 + 0 + + 0 + 0 + + + + + + + 1067 + + 15 + + <_data> + 2 + Leisinger Carlo + 2009 + 247162 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 30.00 + 646 + Kugelstoss + 5.00 + 236 + + 0 + 0 + + 0 + 0 + + + + + + + 882 + + 16 + + <_data> + 3 + Guye Raffael + 2009 + 248282 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 20.20 + 435 + Kugelstoss + 7.00 + 365 + + 0 + 0 + + 0 + 0 + + + + + + + 800 + + 19 + + <_data> + 4 + Bonaventura Bru + 2008 + 167942 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 10.10 + 205 + Kugelstoss + 10.00 + 549 + + 0 + 0 + + 0 + 0 + + + + + + + 754 + + 13 + + <_data> + 5 + Capaul Andri + 2008 + 247312 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 15.15 + 322 + Kugelstoss + 8.00 + 427 + + 0 + 0 + + 0 + 0 + + + + + + + 749 + + 18 + + <_data> + 6 + Bründler Jacob + 2009 + 247246 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 12.12 + 252 + Kugelstoss + 9.00 + 488 + + 0 + 0 + + 0 + 0 + + + + + + + 740 + + 17 + + <_data> + 7 + Huber Nevio + 2009 + 173454 + LAC TV Unterstrass Zürich + U14M + U14M + Drehwurf + 19.19 + 413 + Kugelstoss + 6.00 + 301 + + 0 + 0 + + 0 + 0 + + + + + + + 714 + + 14 + + <_data> + 1 + Folly Ayele Carine + 2006 + 161296 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:51:21 + 561 + Hochsprung + 1.35 + 565 + Speerwurf + 13.50 + 220 + + 0 + 0 + + + + + + + 1346 + + 20 + + <_data> + 2 + Grošin Malena + 2007 + 173471 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:54:93 + 495 + Hochsprung + 1.35 + 565 + Speerwurf + 14.50 + 240 + + 0 + 0 + + + + + + + 1300 + + 22 + + <_data> + 3 + Jakob Ariane + 2007 + 174285 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:57:38 + 453 + Hochsprung + 1.35 + 565 + Speerwurf + 15.50 + 260 + + 0 + 0 + + + + + + + 1278 + + 24 + + <_data> + 4 + Meissner Ella + 2007 + 173473 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:06:03 + 323 + Hochsprung + 1.35 + 565 + Speerwurf + 19.50 + 338 + + 0 + 0 + + + + + + + 1226 + + 23 + + <_data> + 5 + Fischer Mia + 2006 + 173469 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:50:36 + 576 + Hochsprung + 1.20 + 424 + Speerwurf + 12.50 + 200 + + 0 + 0 + + + + + + + 1200 + + 21 + + <_data> + 6 + Dufner Anne + 2007 + 174525 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:49:82 + 587 + Hochsprung + 1.20 + 424 + Speerwurf + 11.50 + 180 + + 0 + 0 + + + + + + + 1191 + + 25 + + <_data> + 7 + Körner Leonie + 2006 + 176148 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:04:32 + 347 + Hochsprung + 1.30 + 518 + Speerwurf + 17.50 + 299 + + 0 + 0 + + + + + + + 1164 + + 26 + + <_data> + 8 + Bischoff Lena + 2007 + 244201 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 01:47:52 + 631 + Hochsprung + 1.10 + 329 + Speerwurf + 10.50 + 159 + + 0 + 0 + + + + + + + 1119 + + 27 + + <_data> + 9 + Kaiser Soraya Nerea + 2006 + 249198 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:03:51 + 359 + Hochsprung + 1.20 + 424 + Speerwurf + 16.50 + 280 + + 0 + 0 + + + + + + + 1063 + + 29 + + <_data> + 10 + Leemann Hanna + 2006 + 244203 + LAC TV Unterstrass Zürich + U16W + U16W + 600m + 02:05:77 + 327 + Hochsprung + 1.15 + 377 + Speerwurf + 18.50 + 319 + + 0 + 0 + + + + + + + 1023 + + 28 + + \ No newline at end of file