Compare commits

..

No commits in common. 'master' and '8c9795efc6baf0a543056c4d5cf6febacb090972' have entirely different histories.

@ -11,33 +11,7 @@
<ej:Button ID="btnaktualiseren" runat="server" Type="Button" Text="Anmelde-Daten mit TAF-Daten aktualisieren" OnClick="btnaktualiseren_Click"></ej:Button>
<asp:SqlDataSource ID="SqlDataSource3" runat="server" ConnectionString="<%$ ConnectionStrings:QWToolConnectionstring %>"
SelectCommand="SELECT [Anmeldenr] ,Lizenznr,dbo.Get_Lizenzmapping(Lizenznr) as MergedLizenz
,[bez]
,[Name]
,[Vorname]
,[GebDat]
,[Geschlecht]
,[Kategorie]
,[Nationalitaet]
,[VereinNr]
,[Wettkampf1]
,[Wettkampf2]
,[Wettkampf3]
,[Wettkampf4]
,[Mutiertam]
,[BenutzerNr]
,[aktiv]
,[mantlnr]
,[Mannschaftnralt_sik]
,[Mannschaftsnr1]
,[Mannschaftsnr2]
,[Mannschaftsnr3]
,[Mannschaftsnr4]
,[Mannschaftnralt1]
,[Mannschaftnralt2]
,[Mannschaftnralt3]
,[Mannschaftnralt4]
,[mannschaftsnr] FROM [Anmeldung]"
SelectCommand="SELECT * FROM [Anmeldung]"
DeleteCommand="DELETE FROM [Anmeldung] WHERE [Anmeldenr] = @Anmeldenr"
UpdateCommand="UPDATE [Anmeldung] SET [Lizenznr] = @Lizenznr, [bez] = @bez, [Name] = @Name, [Vorname] = @Vorname, [GebDat] = @GebDat, [Geschlecht] = @Geschlecht, [Kategorie] = @Kategorie, [Nationalitaet] = @Nationalitaet, [VereinNr] = @VereinNr, [Wettkampf1] = @Wettkampf1, [Wettkampf2] = @Wettkampf2, [Wettkampf3] = @Wettkampf3, [Wettkampf4] = @Wettkampf4, [Mutiertam] = getdate(), [BenutzerNr] = @userid, [aktiv] = @aktiv, [mantlnr] = @mantlnr, [Mannschaftnralt_sik] = @Mannschaftnralt_sik, [Mannschaftsnr1] = @Mannschaftsnr1, [Mannschaftsnr2] = @Mannschaftsnr2, [Mannschaftsnr3] = @Mannschaftsnr3, [Mannschaftsnr4] = @Mannschaftsnr4, [Mannschaftnralt1] = @Mannschaftnralt1, [Mannschaftnralt2] = @Mannschaftnralt2, [Mannschaftnralt3] = @Mannschaftnralt3, [Mannschaftnralt4] = @Mannschaftnralt4, [mannschaftsnr] = @mannschaftsnr WHERE [Anmeldenr] = @Anmeldenr" InsertCommand="INSERT INTO [Anmeldung] ([Lizenznr], [bez], [Name], [Vorname], [GebDat], [Geschlecht], [Kategorie], [Nationalitaet], [VereinNr], [Wettkampf1], [Wettkampf2], [Wettkampf3], [Wettkampf4], [Mutiertam], [BenutzerNr], [aktiv], [mantlnr], [Mannschaftnralt_sik], [Mannschaftsnr1], [Mannschaftsnr2], [Mannschaftsnr3], [Mannschaftsnr4], [Mannschaftnralt1], [Mannschaftnralt2], [Mannschaftnralt3], [Mannschaftnralt4], [mannschaftsnr]) VALUES (@Lizenznr, @bez, @Name, @Vorname, @GebDat, @Geschlecht, @Kategorie, @Nationalitaet, @VereinNr, @Wettkampf1, @Wettkampf2, @Wettkampf3, @Wettkampf4, @Mutiertam, @BenutzerNr, @aktiv, @mantlnr, @Mannschaftnralt_sik, @Mannschaftsnr1, @Mannschaftsnr2, @Mannschaftsnr3, @Mannschaftsnr4, @Mannschaftnralt1, @Mannschaftnralt2, @Mannschaftnralt3, @Mannschaftnralt4, @mannschaftsnr) WHERE [Anmeldenr] = @Anmeldenr">
<DeleteParameters>
@ -105,15 +79,11 @@
</UpdateParameters>
</asp:SqlDataSource>
<ej:Grid runat="server" ID="AdminAnmeldung" AllowPaging="True" CssClass="" DataSourceCachingMode="None" DataSourceID="SqlDataSource3" EnableLoadOnDemand="False" Locale="de-CH" MinWidth="0">
<ClientSideEvents RowDataBound="rowDataBound" />
<Columns>
<ej:Column AllowEditing="False" DataType="number" Field="Anmeldenr" HeaderText="Nr." IsIdentity="True" IsPrimaryKey="True" Width="60px">
</ej:Column>
<ej:Column DataType="string" Field="Lizenznr" HeaderText="Lic." Width="80px">
</ej:Column>
<ej:Column DataType="string" Field="MergedLizenz" HeaderText="OLic." Width="0px">
</ej:Column>
<ej:Column DataType="string" Field="bez" HeaderText="Bez." Width="40px" >
</ej:Column>
<ej:Column DataType="string" Field="Name" Width="100px">
@ -170,15 +140,7 @@
<EditSettings AllowEditing="True" />
</ej:Grid>
<script type="text/javascript">
function rowDataBound(args) {
if (args.data.Lizenznr != args.data.MergedLizenz)
args.row.css("backgroundColor", "#F3C3C3").css("color", "black");/*custom css applied to the row */
}
</script>
</asp:Content>

@ -15,28 +15,28 @@ namespace QW2021C.Administration
{
/// <summary>
/// btnaktualiseren-Steuerelement.
/// btnaktualiseren-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::Syncfusion.JavaScript.Web.Button btnaktualiseren;
/// <summary>
/// SqlDataSource3-Steuerelement.
/// SqlDataSource3-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.SqlDataSource SqlDataSource3;
/// <summary>
/// AdminAnmeldung-Steuerelement.
/// AdminAnmeldung-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::Syncfusion.JavaScript.Web.Grid AdminAnmeldung;

@ -3,13 +3,11 @@
<%@ Register Assembly="Syncfusion.EJ, Version=18.3460.0.35, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" Namespace="Syncfusion.JavaScript.Models" TagPrefix="ej" %>
<%@ Register Src="~/Menu/Menu.ascx" TagPrefix="shu" TagName="Menu" %>
<%@ Register assembly="Syncfusion.EJ" namespace="Syncfusion.JavaScript.Models" tagprefix="ej" %>
<asp:Content ID="MainContent" ContentPlaceHolderID="MainContent" runat="Server">
<asp:Label runat="server"><h4>Teilnehmer-Erfassung</h4></asp:Label>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:QWToolConnectionstring %>"
SelectCommand="SELECT *, dbo.Get_Lizenzmapping(dbo.teilnehmer.license) as LM FROM [Teilnehmer] where teilnehmernr > -999999"
SelectCommand="SELECT * FROM [Teilnehmer] where teilnehmernr > -999999"
DeleteCommand="DELETE FROM [Teilnehmer] WHERE [Teilnehmernr] = @Teilnehmernr"
UpdateCommand="UPDATE [Teilnehmer] SET [Vereinnr] = @Vereinnr, [Name] = @Name, [Vorname] = @Vorname, [GebDat] = @GebDat, [Geschlecht] = @Geschlecht, [Nationalitaet] = @Nationalitaet, [Kategorie] = @Kategorie, [Mutiert_am] = @Mutiert_am, [BenutzerNr] = @BenutzerNr, [aktiv] = @aktiv, [error] = @error, [license] = @license, [KidID]=@KidID WHERE [Teilnehmernr] = @Teilnehmernr"
InsertCommand="INSERT INTO [Teilnehmer] ([Teilnehmernr], [Vereinnr], [Name], [Vorname], [GebDat], [Geschlecht], [Nationalitaet], [Kategorie], [Mutiert_am], [BenutzerNr], [aktiv], [error], [license]) VALUES (@Teilnehmernr, @Vereinnr, @Name, @Vorname, @GebDat, @Geschlecht, @Nationalitaet, @Kategorie, @Mutiert_am, @BenutzerNr, @aktiv, @error, @license)">
@ -80,7 +78,7 @@
<asp:Label runat="server">Achtung</asp:Label>
<ej:Grid ID="Fehlergrid" runat="server" EnableLoadOnDemand="False" Locale="de-DE" MinWidth="0" AllowPaging="True" AllowSorting="True" CssClass="" DataSourceCachingMode="None" DataSourceID="SqlDataSource1" >
<ej:Grid ID="Fehlergrid" runat="server" EnableLoadOnDemand="False" Locale="de-DE" MinWidth="0" AllowPaging="True" AllowSorting="True" CssClass="" DataSourceCachingMode="None" DataSourceID="SqlDataSource1">
<Columns>
<ej:Column DataType="number" Field="Teilnehmernr" IsPrimaryKey="True">
</ej:Column>
@ -122,7 +120,6 @@
<ej:Grid ID="Grid1" runat="server" CssClass="" DataSourceCachingMode="None"
DataSourceID="SqlDataSource1" EnableLoadOnDemand="False" Locale="de-DE" MinWidth="0" AllowPaging="True" AllowSorting="True"
OnServerEditRow="Grid1_ServerEditRow">
<ClientSideEvents RowDataBound="rowDataBound" />
<Columns>
<ej:Column DataType="number" Field="Teilnehmernr" IsPrimaryKey="True">
</ej:Column>
@ -153,21 +150,8 @@
</ej:Column>
<ej:Column DataType="string" Field="license" AllowEditing="false">
</ej:Column>
<ej:Column DataType="string" Field="LM" AllowEditing="false" Visible="false">
</ej:Column>
</Columns>
<EditSettings AllowEditing="true" AllowDeleting="true"></EditSettings>
<ToolbarSettings ShowToolbar="true" ToolbarItems="edit,delete,update,cancel"></ToolbarSettings>
</ej:Grid>
<script type="text/javascript">
function rowDataBound(args) {
if (args.data.LM != args.data.license)
args.row.css("backgroundColor", "#F3C3C3").css("color", "black");/*custom css applied to the row */
}
</script>
</asp:Content>

@ -81,12 +81,7 @@ namespace QW2021C.Administration
db.Get_Tabeldata_for_Update("Select * from teilnehmer where teilnehmernr=" + data["Teilnehmernr"].ToString());
foreach (KeyValuePair<string, object> keyval in data)
try
{
db.dsdaten.Tables[0].Rows[0][keyval.Key] = keyval.Value;
}
catch { }
db.dsdaten.Tables[0].Rows[0][keyval.Key] = keyval.Value;
db.Update_Tabeldata();
this.Grid1.DataBind();
//Check_Teilnehmer();

@ -15,82 +15,82 @@ namespace QW2021C.Administration
{
/// <summary>
/// SqlDataSource1-Steuerelement.
/// SqlDataSource1-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.SqlDataSource SqlDataSource1;
/// <summary>
/// SqlDataSource2-Steuerelement.
/// SqlDataSource2-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.SqlDataSource SqlDataSource2;
/// <summary>
/// SqlDataSource3-Steuerelement.
/// SqlDataSource3-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.SqlDataSource SqlDataSource3;
/// <summary>
/// SqlDataSource4-Steuerelement.
/// SqlDataSource4-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.SqlDataSource SqlDataSource4;
/// <summary>
/// SqlDataSource5-Steuerelement.
/// SqlDataSource5-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.SqlDataSource SqlDataSource5;
/// <summary>
/// Panel1-Steuerelement.
/// Panel1-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Panel Panel1;
/// <summary>
/// Fehlergrid-Steuerelement.
/// Fehlergrid-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::Syncfusion.JavaScript.Web.Grid Fehlergrid;
/// <summary>
/// Button1-Steuerelement.
/// Button1-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::Syncfusion.JavaScript.Web.Button Button1;
/// <summary>
/// Grid1-Steuerelement.
/// Grid1-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::Syncfusion.JavaScript.Web.Grid Grid1;

@ -42,7 +42,7 @@ namespace QW2021C.Administration
protected void btnexport_Click(object Sender, Syncfusion.JavaScript.Web.ButtonEventArgs e)
{
clsDB db = new clsDB();
db.Get_Tabledata("Select sqlscript from sqlqueries where sqlscriptnumber=5", false, true);
db.Get_Tabledata("Select sqlscript from sqlqueries where sqlscriptnumber=2", false, true);
string sql;
sql = db.dsdaten.Tables[0].Rows[0][0].ToString();
string where = "";

@ -122,6 +122,8 @@ namespace QW2021C.Administration
int vereine = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0][0]);
this.lblathleten.Text = athleten.ToString();
this.lblvereine.Text = vereine.ToString();
}
}
}

@ -115,7 +115,7 @@ namespace QW2021C.Administration
if (r[6].ToString() != "" && r[6].ToString() != "Lizenz-Nr.")
{
db.dsdaten.Tables.Clear();
db.Get_Tabledata(sql + " and lizenznr='" + r[6].ToString() + "'", false, true);
db.Get_Tabledata(sql + " where lizenznr='" + r[6].ToString() + "'", false, true);
if (db.dsdaten.Tables[0].Rows.Count > 0)
{
foreach (Gruppencounter g in Gruppenzaehler)
@ -138,6 +138,8 @@ namespace QW2021C.Administration
{
if (kr["Kategorie"].ToString() == nr["Kategorie"].ToString())
{
krow.ItemArray = nr.ItemArray;
krow["Bewerb"] = "UKC";
usekidid = true;

@ -1,128 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{42E33F05-D798-4F84-A594-12B713EC8AE7}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>AlabusTransfer</RootNamespace>
<AssemblyName>AlabusTransfer</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>E:\Software-Projekte\QW-Tool\QW2021C\AlabusTransfer\Publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>1</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>B2D3805DDB68949D8F04A76502815D29F892EBAE</ManifestCertificateThumbprint>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>AlabusTransfer_TemporaryKey.pfx</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<SignManifests>true</SignManifests>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Configuration.ConfigurationManager, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\QW2021C\packages\System.Configuration.ConfigurationManager.6.0.0\lib\net461\System.Configuration.ConfigurationManager.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<Reference Include="System.Data.OracleClient" />
<Reference Include="System.Net" />
<Reference Include="System.Security" />
<Reference Include="System.Security.AccessControl, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\QW2021C\packages\System.Security.AccessControl.6.0.0\lib\net461\System.Security.AccessControl.dll</HintPath>
</Reference>
<Reference Include="System.Security.Permissions, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\QW2021C\packages\System.Security.Permissions.6.0.0\lib\net461\System.Security.Permissions.dll</HintPath>
</Reference>
<Reference Include="System.Security.Principal.Windows, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\QW2021C\packages\System.Security.Principal.Windows.5.0.0\lib\net461\System.Security.Principal.Windows.dll</HintPath>
</Reference>
<Reference Include="System.ServiceProcess" />
<Reference Include="System.Transactions" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<Compile Include="Helper\clsdb.cs" />
<Compile Include="Helper\clsMailClient.cs" />
<Compile Include="Helper\Log.cs" />
<Compile Include="Helper\zipHelper.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="AlabusTransfer_TemporaryKey.pfx" />
<None Include="App.config" />
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.8">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.8 %28x86 und x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="AlabusTransfer.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
<userSettings>
<AlabusTransfer.Properties.Settings>
<setting name="URL" serializeAs="String">
<value>https://alabus.swiss-athletics.ch/rest/License/Athletica/ExportStammDataFull</value>
</setting>
<setting name="UID" serializeAs="String">
<value>40307</value>
</setting>
<setting name="PWD" serializeAs="String">
<value>Turicum18</value>
</setting>
<setting name="TransferPath" serializeAs="String">
<value>E:\Software-Projekte\QW-Tool\QW2021C\Upload\transfer\</value>
</setting>
<setting name="QWToolConnectionstring" serializeAs="String">
<value>Data Source=shu00;Initial Catalog=qw2021_prod;User ID=sa;Password=*shu29</value>
</setting>
<setting name="NoDownload" serializeAs="String">
<value>No</value>
</setting>
<setting name="LogLevel" serializeAs="String">
<value>1</value>
</setting>
<setting name="VereinFiler" serializeAs="String">
<value>.ZH.,.ZZ.</value>
</setting>
<setting name="mailserver" serializeAs="String">
<value>mail.shub.ch</value>
</setting>
<setting name="sender" serializeAs="String">
<value>qwtool@shub.ch</value>
</setting>
<setting name="empfaenger" serializeAs="String">
<value>qwtool@shub.ch</value>
</setting>
<setting name="cred" serializeAs="String">
<value>ToolQW*2022</value>
</setting>
</AlabusTransfer.Properties.Settings>
</userSettings>
</configuration>

@ -1,39 +0,0 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security;
using System.Text;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Configuration;
using Convert = System.Convert;
namespace AlabusTransfer.Helper
{
public class Log
{
public void insert_entry(int loglevel, int userid, string description)
{
clsDB db = new clsDB();
db.insert_log(1, userid, description);
}
private int get_level()
{
return Convert.ToInt32(AlabusTransfer.Properties.Settings.Default.LogLevel);
}
}
}

@ -1,28 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net.Mail;
using System.Net;
namespace AlabusTransfer.Helper
{
internal class clsMailClient
{
public void CreateTestMessage(string Betreff, string Nachricht)
{
var smtpClient = new SmtpClient(Properties.Settings.Default.mailserver)
{
Port = 587,
Credentials = new NetworkCredential(Properties.Settings.Default.sender, Properties.Settings.Default.cred),
EnableSsl = true,
};
smtpClient.Send(Properties.Settings.Default.sender, Properties.Settings.Default.empfaenger, Betreff, Nachricht);
}
}
}

@ -1,733 +0,0 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using System.Configuration;
public class clsDB
{
public string Connectionstring = "";
public DataSet dsdaten = new DataSet();
private SqlDataAdapter dadaten;
public clsDB()
{
// Me.Connectionstring = Get_Connectionstring(parcoursnr)
if (this.Connectionstring == "")
this.Connectionstring = Get_Connectionstring();
}
public string Get_Connectionstring()
{
return AlabusTransfer.Properties.Settings.Default.QWToolConnectionstring;
}
public string Get_Option(int onr)
{
try
{
SqlConnection sqlconnect = new SqlConnection();
DataSet ds = new DataSet();
ds.Tables.Clear();
sqlconnect.ConnectionString = this.Connectionstring;
sqlconnect.Open();
SqlDataAdapter da = new SqlDataAdapter("", sqlconnect);
SqlCommand sqlcmd = new SqlCommand();
sqlcmd.Connection = sqlconnect;
sqlcmd.CommandType = CommandType.Text;
sqlcmd.CommandText = "Select * from optionen where optionnr=" + onr.ToString();
// sqlcmd.CommandText = "Select * from optionen where mandantnr=" + mandantnr.ToString + " and optionnr=" + onr.ToString
da.SelectCommand = sqlcmd;
da.Fill(ds, "Daten");
// If ds.Tables(0).Rows.Count = 0 Then
// sqlcmd.CommandText = "Select * from optionen where mandantnr=1 and optionnr=" + onr.ToString
// da.Fill(ds, "Daten")
// End If
return ds.Tables[0].Rows[0]["Inhalt"].ToString();
}
catch (Exception ex)
{
return "";
}
}
public DataSet Get_Tabledata(int sqlscriptnumber, string vereinnr, int userid)
{
Get_Tabledata("Select sqlscript from sqlqueries where sqlscriptnumber=" + sqlscriptnumber.ToString(),false,true);
string sql = dsdaten.Tables[0].Rows[0][0].ToString();
dsdaten.Tables.Clear();
sql = sql.Replace("@vereinnr", vereinnr);
sql = sql.Replace("@userid", userid.ToString());
Get_Tabledata(sql, false, true);
return dsdaten;
}
public DataSet Get_Tabledata(string Tablename, bool StoredProc = false, bool is_SQL_String = false)
{
SqlConnection sqlconnect = new SqlConnection();
DataSet ds = new DataSet();
ds.Tables.Clear();
sqlconnect.ConnectionString = this.Connectionstring;
sqlconnect.Open();
SqlDataAdapter da = new SqlDataAdapter("", sqlconnect);
SqlCommand sqlcmd = new SqlCommand();
sqlcmd.Connection = sqlconnect;
if (StoredProc == true)
{
sqlcmd.CommandType = CommandType.StoredProcedure;
if (Tablename.IndexOf("@@Mandantnr@@") > 0)
Tablename = Tablename.Replace("@@Mandantnr@@", "");
sqlcmd.CommandText = Tablename;
}
else
{
sqlcmd.CommandType = CommandType.Text;
sqlcmd.CommandText = "Select * from " + Tablename;
}
if (is_SQL_String == true)
sqlcmd.CommandText = Tablename;
// sqlcmd.CommandType = CommandType.StoredProcedure
// sqlcmd.CommandText = "Berufsliste"
da.SelectCommand = sqlcmd;
da.Fill(dsdaten, "Daten");
sqlconnect.Close();
return dsdaten;
}
public void Get_Tabledata(string tablename, string wherestatement = "", string SQL = "", string args = "", bool SP = false, DataTable SP_Params = null/* TODO Change to default(_) if this is not a reference type */)
{
if (SP == true)
{
}
try
{
dsdaten.Clear();
dsdaten.Tables.Clear();
dadaten = new SqlDataAdapter(SQL, this.Connectionstring);
if (SP == true)
{
SqlCommand sqlcmd = new SqlCommand();
SqlConnection sqlconnect = new SqlConnection();
sqlconnect.ConnectionString = this.Connectionstring;
sqlcmd.CommandType = CommandType.StoredProcedure;
sqlcmd.CommandText = tablename;
foreach (DataRow r in SP_Params.Rows)
{
sqlcmd.Parameters.Add(r["Paramname"].ToString(), SqlDbType.VarChar);
sqlcmd.Parameters[sqlcmd.Parameters.Count - 1].Value = r["Paramvalue"];
}
sqlcmd.Connection = sqlconnect;
try
{
dadaten.SelectCommand = sqlcmd;
dadaten.Fill(dsdaten, tablename);
return;
}
catch (Exception ex)
{
sqlconnect.Open();
sqlcmd.ExecuteNonQuery();
sqlconnect.Close();
}
}
if (SQL != "")
{
SQL = SQL.Replace("&ARGS&", args);
dadaten = new SqlDataAdapter(SQL, this.Connectionstring);
}
else
dadaten = new SqlDataAdapter("select * from [" + tablename + "] " + wherestatement, this.Connectionstring);
dadaten.Fill(dsdaten, tablename);
}
catch (Exception ex)
{
int a = 1;
}
}
public void Get_Tabeldata_for_Update(string Tablename, bool StoredProc = false, bool is_SQL_String = false)
{
dsdaten.Clear();
dsdaten.Tables.Clear();
dadaten = new SqlDataAdapter(Tablename, this.Connectionstring);
dadaten.Fill(dsdaten, Tablename);
}
public void Update_Tabeldata()
{
SqlCommandBuilder cb = new SqlCommandBuilder(dadaten);
dadaten.Update(dsdaten, dsdaten.Tables[0].TableName);
}
public DataTable Get_Menu(string Menutype, bool loggedoffmenu)
{
SqlConnection SQLconnect = new SqlConnection();
DataSet ds = new DataSet();
ds.Tables.Clear();
SQLconnect.ConnectionString = this.Connectionstring;
SQLconnect.Open();
SqlDataAdapter da = new SqlDataAdapter("", SQLconnect);
SqlCommand sqlcmd = new SqlCommand();
sqlcmd.Connection = SQLconnect;
sqlcmd.CommandType = CommandType.Text;
clsDB dh = new clsDB();
// ds = dh.Get_Tabledata("Select Mandanttype from mandant where mandantnr=" + mandantnr.ToString, False, True)
// Dim mandanttyp As Integer
// mandanttyp = ds.Tables(0).Rows(0).Item(0)
// ds.Tables.Clear()
// If Get_Option(11, mandantnr) = "1/2" And
// Menutype = 3 Then
// sqlcmd.CommandText = "Select * from web_menu where mandanttype>=" + mandanttyp.ToString + " and aktiv=1 and menutext<>'Schüler' and ( menutype=10 or menutype=1 or menutype = " + Menutype.ToString + ") order by menutype, sort"
// Else
if (loggedoffmenu==true)
{
sqlcmd.CommandText = "Select * from web_menu where aktiv=1 and ( menutype=100 or menutype=1 or menutype = " + Menutype.ToString() + ") order by menutype, sort";
}
else
{
sqlcmd.CommandText = "Select * from web_menu where aktiv=1 and ( menutype <> 100 and menutype=10 or menutype=1 or menutype = " + Menutype.ToString() + ") order by menutype, sort";
}
// End If
da.SelectCommand = sqlcmd;
da.Fill(ds, "Daten");
sqlcmd.Dispose();
SQLconnect.Close();
return ds.Tables[0];
}
public void add_user()
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("add_user", myConnection);
myCommand.CommandType = CommandType.StoredProcedure;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
//return null;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
//return 0;
}
public void generate_password(string usernr, int pwgen)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("Generate_Password", myConnection);
myCommand.Parameters.Add(new SqlParameter("@usernr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, usernr));
myCommand.Parameters.Add(new SqlParameter("@nurpw", SqlDbType.Int, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, pwgen));
myCommand.CommandType = CommandType.StoredProcedure;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
//return null;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
//return 0;
}
public void insert_log(int loglevel, int userid, string description)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("sp_insert_logentry", myConnection);
myCommand.Parameters.Add(new SqlParameter("@userid", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, userid));
myCommand.Parameters.Add(new SqlParameter("@entrydescription", SqlDbType.VarChar, 4096, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, description));
myCommand.Parameters.Add(new SqlParameter("@level", SqlDbType.VarChar, 4096, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, loglevel));
myCommand.CommandType = CommandType.StoredProcedure;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
//return null;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
//return 0;
}
public void add_new_mannschaft(string verein, string usernr)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("add_mannschaft", myConnection);
myCommand.Parameters.Add(new SqlParameter("@vereinnr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, verein));
myCommand.Parameters.Add(new SqlParameter("@usernr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, usernr));
myCommand.CommandType = CommandType.StoredProcedure;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
//return null;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
//return 0;
}
public int Add_New_Teilnehmer(string vereinnr, string usernr)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("add_Teilnehmer", myConnection);
myCommand.Parameters.Add(new SqlParameter("@vereinnr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, vereinnr));
myCommand.Parameters.Add(new SqlParameter("@usernr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, usernr));
myCommand.CommandType = CommandType.StoredProcedure;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
return 0;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
return 0;
}
public int Check_Teilnehmer(string vereinnr, string usernr)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("chk_Teilnehmer", myConnection);
myCommand.Parameters.Add(new SqlParameter("@vereinnr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, vereinnr));
myCommand.Parameters.Add(new SqlParameter("@usernr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, usernr));
myCommand.CommandType = CommandType.StoredProcedure;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
return 0;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
return 0;
}
public int Add_Athlet(string Vereinnr, int Athlete_id, string user)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("add_athlet", myConnection);
myCommand.CommandType = CommandType.StoredProcedure;
myCommand.Parameters.Add(new SqlParameter("@vereinnr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, Vereinnr));
myCommand.Parameters.Add(new SqlParameter("@athletid", SqlDbType.Int, 4, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, Athlete_id));
myCommand.Parameters.Add(new SqlParameter("@usernr", SqlDbType.Int, 4, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, user));
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
return 0;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
return 0;
}
public void Add_Nicht_angemeldete_Teilnehmer(string vereinnr, string usernr)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("add_all_Teilnehmer", myConnection);
myCommand.Parameters.Add(new SqlParameter("@vereinnr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, vereinnr));
myCommand.Parameters.Add(new SqlParameter("@usernr", SqlDbType.VarChar, 255, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, usernr));
myCommand.CommandType = CommandType.StoredProcedure;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
}
public void truncate_table(string tablename)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("truncate table " + tablename, myConnection);
myCommand.CommandType = CommandType.Text;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
}
public string migrate_taf_resultate(string ortnr, string deldata)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("[dbo].[Migrate_TAF_Import]", myConnection);
// if (deldata == "False") ortnr = "0";
myCommand.Parameters.Add(new SqlParameter("@ortnr", SqlDbType.Int, 3, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, ortnr));
myCommand.Parameters.Add(new SqlParameter("@return", SqlDbType.Int, 3, ParameterDirection.Output, true, 10, 0, "", DataRowVersion.Proposed, 0));
myCommand.Parameters.Add(new SqlParameter("@statistics", SqlDbType.VarChar, 8096, ParameterDirection.Output, true, 10, 0, "", DataRowVersion.Proposed, ""));
myCommand.CommandType = CommandType.StoredProcedure;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
return myCommand.Parameters["@statistics"].Value.ToString();
}
catch (Exception ex)
{
return "Fehler:"+ex.Message;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
}
public void update_verein(string targetfolder)
{
truncate_table("base_account_import");
String Filter = AlabusTransfer.Properties.Settings.Default.VereinFiler;
string[] filters = Filter.Split(',');
Get_Tabeldata_for_Update ("Select * from base_account_import",false,true);
DataSet verein = new DataSet();
verein.ReadXml(targetfolder + "\\verein.xml");
foreach (DataRow r in verein.Tables[0].Rows)
{
DataRow rn = dsdaten.Tables[0].NewRow();
Boolean useit;
useit = false;
foreach(var filt in filters)
{
if (r["accountcode"].ToString().IndexOf(filt) > 0) useit = true;
}
if (useit == true)
{
rn["account_code"] = r["accountCode"];
rn["account_name"] = r["accountName"];
rn["account_short"] = r["accountShort"];
rn["account_type"] = r["accountType"];
rn["lg"] = r["lg"];
dsdaten.Tables[0].Rows.Add(rn);
}
}
Update_Tabeldata();
}
public string get_unicode(string inputstring, DataTable unicodes)
{
string res = "";
string res1 = "";
char[] characters = inputstring.ToCharArray();
foreach (char c in characters)
{
res1 = "";
foreach (DataRow r in unicodes.Rows)
{
int ascii = (int)c;
if (ascii == Convert.ToInt32(r[0]))
{
res1 = r[1].ToString();
}
}
if (res1=="")
{
res = res + c.ToString();
}
else
{
res = res + res1;
}
}
return res;
}
public void update_athlete(string targetfolder)
{
dsdaten.Tables.Clear();
Get_Tabledata("Select * from charconvert", false, true);
DataTable unicodes = new DataTable();
unicodes = dsdaten.Tables[0].Copy();
dsdaten.Tables.Clear();
String Filter = AlabusTransfer.Properties.Settings.Default.VereinFiler;
string[] filters = Filter.Split(',');
DataSet athlete = new DataSet();
athlete.ReadXml(targetfolder + "\\athlete.xml");
foreach (DataRow r in athlete.Tables[0].Rows)
{
Boolean useit;
useit = false;
foreach (var filt in filters)
{
if (r["accountcode"].ToString().IndexOf(filt) > 0) useit = true;
}
if (useit == true)
{
Get_Tabeldata_for_Update("Select * from base_athlete where license=" + r["license"].ToString(), false, true);
if (dsdaten.Tables[0].Rows.Count == 0)
{
DataRow rn = dsdaten.Tables[0].NewRow();
//string a = "";
//ASCIIEncoding ascii = new ASCIIEncoding();
//Byte[] bytes = ascii.GetBytes(r["Lastname"].ToString());
//String decoded = ascii.GetString(bytes);
//if (decoded.IndexOf("o?in") > -1)
//{
// decoded = decoded.Replace("o?in", "ošin");
// r["Lastname"] = decoded;
//}
r["lastname"] = get_unicode(r["lastname"].ToString(),unicodes);
r["firstname"] = get_unicode(r["firstname"].ToString(),unicodes);
rn["lastname"] = r["lastname"];
rn["firstname"] = r["firstname"];
rn["birth_date"] = r["birthdate"].ToString().Substring(3,2)+"."+ r["birthdate"].ToString().Substring(0, 2) + "."+r["birthdate"].ToString().Substring(6, 4);
rn["sex"] = r["sex"];
rn["nationality"] = r["nationality"];
rn["account_code"] = r["accountcode"];
rn["second_account_code"] = r["secondaccountcode"];
rn["account_info"] = r["lastKnownAccountInfo"];
rn["license_Paid"] = r["licensepaid"];
rn["license_Cat"] = r["licensecat"];
rn["license"] = r["license"];
dsdaten.Tables[0].Rows.Add(rn);
Update_Tabeldata();
}
else
{
DataRow rn = dsdaten.Tables[0].NewRow();
//string a = "";
//ASCIIEncoding ascii = new ASCIIEncoding();
//Byte[] bytes = ascii.GetBytes(r["Lastname"].ToString());
//String decoded = ascii.GetString(bytes);
//if (decoded.IndexOf("o?in")>-1)
//{
// decoded = decoded.Replace("o?in", "ošin");
// r["Lastname"] = decoded;
//}
if (r["License"].ToString() == "173471")
{
string a = "";
}
r["lastname"] = get_unicode(r["lastname"].ToString(),unicodes);
r["firstname"] = get_unicode(r["firstname"].ToString(),unicodes);
dsdaten.Tables[0].Rows[0]["lastname"] = r["lastname"];
dsdaten.Tables[0].Rows[0]["firstname"] = r["firstname"];
dsdaten.Tables[0].Rows[0]["birth_date"] = r["birthdate"].ToString().Substring(3, 2) + "." + r["birthdate"].ToString().Substring(0, 2) + "." + r["birthdate"].ToString().Substring(6, 4); ;
dsdaten.Tables[0].Rows[0]["sex"] = r["sex"];
dsdaten.Tables[0].Rows[0]["nationality"] = r["nationality"];
dsdaten.Tables[0].Rows[0]["account_code"] = r["accountcode"];
dsdaten.Tables[0].Rows[0]["second_account_code"] = r["secondaccountcode"];
dsdaten.Tables[0].Rows[0]["account_info"] = r["lastKnownAccountInfo"];
dsdaten.Tables[0].Rows[0]["license_paid"] = r["licensepaid"];
dsdaten.Tables[0].Rows[0]["license_cat"] = r["licensecat"];
//dsdaten.Tables[0].AcceptChanges();
Update_Tabeldata();
}
}
}
}
public DataSet Get_Reportdata(string Orte, string U1012, string erdgas, string vierkampf, int ortnr)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("dbo.res_resultate_aufbereiten", myConnection);
myCommand.Parameters.Add("@orte", SqlDbType.VarChar, 1024);
myCommand.Parameters.Add("@U10U12", SqlDbType.VarChar, 1);
if (vierkampf == "J")
{
myCommand.Parameters.Add("@resqw", SqlDbType.Int, 4);
myCommand.Parameters.Add("@resew", SqlDbType.Int, 4);
myCommand.Parameters.Add("@resortnr", SqlDbType.Int, 4);
myCommand.Parameters[4].Value = ortnr;
myCommand.Parameters[3].Value = 0;
myCommand.Parameters[2].Value = 1;
}
if (erdgas == "J")
{
myCommand.Parameters.Add("@resqw", SqlDbType.Int, 4);
myCommand.Parameters.Add("@resew", SqlDbType.Int, 4);
myCommand.Parameters.Add("@resortnr", SqlDbType.Int, 4);
myCommand.Parameters[4].Value = ortnr;
myCommand.Parameters[3].Value = 1;
myCommand.Parameters[2].Value = 0;
}
myCommand.Parameters[0].Value = Orte;
myCommand.Parameters[1].Value = U1012;
myCommand.CommandType = CommandType.StoredProcedure;
myCommand.CommandTimeout = 600;
SqlDataAdapter da = new SqlDataAdapter(myCommand);
try
{
myConnection.Open();
da.Fill(dsdaten, "Daten");
//myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
return dsdaten;
}
public void Insert_Disziplin_select(int ortnr)
{
}
public void Import_Statistik()
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("sp_import_statistik", myConnection);
myCommand.CommandType = CommandType.StoredProcedure;
try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
//return null;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
//return 0;
}
public string get_importstatistik()
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("dbo.sp_import_statistik", myConnection);
myCommand.Parameters.Add("@fnkt", SqlDbType.Int, 4);
myCommand.Parameters[0].Value = 2;
myCommand.CommandType = CommandType.StoredProcedure;
myCommand.CommandTimeout = 600;
SqlDataAdapter da = new SqlDataAdapter(myCommand);
dsdaten.Tables.Clear();
try
{
myConnection.Open();
da.Fill(dsdaten, "Daten");
//myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
return dsdaten.Tables[0].Rows[0][0].ToString();
}
}

@ -1,30 +0,0 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Web;
namespace AlabusTransfer.Helper
{
public class zipHelper
{
public void Decompress(FileInfo fileToDecompress)
{
using (FileStream originalFileStream = fileToDecompress.OpenRead())
{
string currentFileName = fileToDecompress.FullName;
string newFileName = currentFileName.Remove(currentFileName.Length - fileToDecompress.Extension.Length);
using (FileStream decompressedFileStream = File.Create(newFileName))
{
using (GZipStream decompressionStream = new GZipStream(originalFileStream, CompressionMode.Decompress))
{
decompressionStream.CopyTo(decompressedFileStream);
Console.WriteLine("Decompressed: {0}", fileToDecompress.Name);
}
}
}
}
}
}

@ -1,110 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Net;
using System.Configuration;
namespace AlabusTransfer
{
internal class Program
{
static Helper.Log Log = new Helper.Log();
static void Main(string[] args)
{
Log.insert_entry(0, 0, "Start Alabus-Abgleich");
string url = Properties.Settings.Default.URL;
CallRestMethod(url);
Log.insert_entry(0, 0, "Ende Alabus-Abgleich");
clsDB db = new clsDB();
Helper.clsMailClient mc = new Helper.clsMailClient();
mc.CreateTestMessage("QW-Tool: Autom. Alabus-Import", db.get_importstatistik());
Log.insert_entry(0, 0, "Mail versandt");
}
static void CallRestMethod(string url)
{
//var wc = new WebClient();
//var data = wc.DownloadString(url);
Log.insert_entry(0, 0, "Start Alabus-Download");
string dbconnection = Properties.Settings.Default.QWToolConnectionstring;
String userName = Properties.Settings.Default.UID;
String passWord = Properties.Settings.Default.PWD;
Uri restUri = new Uri(url);
string localTarget = Properties.Settings.Default.TransferPath + "DataDownload.gz";
// String userName = "40307";
// String passWord = "Turicum18";
string noDownload = Properties.Settings.Default.NoDownload;
if (noDownload != "YES")
{
string credentials = Convert.ToBase64String(System.Text.Encoding.ASCII.GetBytes(userName + ":" + passWord));
using (var webClient = new WebClient())
{
webClient.Headers[HttpRequestHeader.Authorization] = "Basic " + credentials;
webClient.DownloadFile(restUri, localTarget);
}
}
Log.insert_entry(0, 0, "Ende Alabus-Download");
unzip_file();
load_data();
}
static void unzip_file()/* TODO ERROR: Skipped SkippedTokensTrivia */
{
Log.insert_entry(0, 0, "Start Unzip");
string filename = "DataDownload.gz";
string targetFolder = Properties.Settings.Default.TransferPath;
filename = targetFolder + "\\" + filename;
string extension;
extension = System.IO.Path.GetExtension(filename);
if (extension == ".gz")
{
Helper.zipHelper csh = new Helper.zipHelper();
var fi = new System.IO.FileInfo(filename);
csh.Decompress(fi);
System.Data.DataSet DS = new System.Data.DataSet();
string fn;
fn = System.IO.Path.GetFileNameWithoutExtension(filename);
DS.ReadXml(targetFolder + "\\" + fn);
System.Data.DataSet dsverein = new System.Data.DataSet();
dsverein.Tables.Add(DS.Tables["account"].Copy());
System.Data.DataSet dsathlete = new System.Data.DataSet();
dsathlete.Tables.Add(DS.Tables["athlete"].Copy());
dsverein.WriteXml(targetFolder + "\\verein.xml");
dsathlete.WriteXml(targetFolder + "\\athlete.xml");
}
Log.insert_entry(0, 0, "Ende Unzipü");
}
static void load_data()
{
Log.insert_entry(0, 0, "Start Data Load");
clsDB db = new clsDB();
string targetFolder = Properties.Settings.Default.TransferPath;
db.update_verein(targetFolder);
db.update_athlete(targetFolder);
Log.insert_entry(0, 0, "Ende Data Load");
db.Import_Statistik();
Log.insert_entry(0, 0, "Statistik nachgeführt");
}
}
}

@ -1,36 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind.
[assembly: AssemblyTitle("AlabusTransfer")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("AlabusTransfer")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
[assembly: ComVisible(false)]
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
[assembly: Guid("42e33f05-d798-4f84-a594-12b713ec8ae7")]
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
//
// Hauptversion
// Nebenversion
// Buildnummer
// Revision
//
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

@ -1,170 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
namespace AlabusTransfer.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.1.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default {
get {
return defaultInstance;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("https://alabus.swiss-athletics.ch/rest/License/Athletica/ExportStammDataFull")]
public string URL {
get {
return ((string)(this["URL"]));
}
set {
this["URL"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("40307")]
public string UID {
get {
return ((string)(this["UID"]));
}
set {
this["UID"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Turicum18")]
public string PWD {
get {
return ((string)(this["PWD"]));
}
set {
this["PWD"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("E:\\Software-Projekte\\QW-Tool\\QW2021C\\Upload\\transfer\\")]
public string TransferPath {
get {
return ((string)(this["TransferPath"]));
}
set {
this["TransferPath"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Data Source=shu00;Initial Catalog=qw2021_prod;User ID=sa;Password=*shu29")]
public string QWToolConnectionstring {
get {
return ((string)(this["QWToolConnectionstring"]));
}
set {
this["QWToolConnectionstring"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("No")]
public string NoDownload {
get {
return ((string)(this["NoDownload"]));
}
set {
this["NoDownload"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("1")]
public string LogLevel {
get {
return ((string)(this["LogLevel"]));
}
set {
this["LogLevel"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute(".ZH.,.ZZ.")]
public string VereinFiler {
get {
return ((string)(this["VereinFiler"]));
}
set {
this["VereinFiler"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("mail.shub.ch")]
public string mailserver {
get {
return ((string)(this["mailserver"]));
}
set {
this["mailserver"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("qwtool@shub.ch")]
public string sender {
get {
return ((string)(this["sender"]));
}
set {
this["sender"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("qwtool@shub.ch")]
public string empfaenger {
get {
return ((string)(this["empfaenger"]));
}
set {
this["empfaenger"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("ToolQW*2022")]
public string cred {
get {
return ((string)(this["cred"]));
}
set {
this["cred"] = value;
}
}
}
}

@ -1,42 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="AlabusTransfer.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="URL" Type="System.String" Scope="User">
<Value Profile="(Default)">https://alabus.swiss-athletics.ch/rest/License/Athletica/ExportStammDataFull</Value>
</Setting>
<Setting Name="UID" Type="System.String" Scope="User">
<Value Profile="(Default)">40307</Value>
</Setting>
<Setting Name="PWD" Type="System.String" Scope="User">
<Value Profile="(Default)">Turicum18</Value>
</Setting>
<Setting Name="TransferPath" Type="System.String" Scope="User">
<Value Profile="(Default)">E:\Software-Projekte\QW-Tool\QW2021C\Upload\transfer\</Value>
</Setting>
<Setting Name="QWToolConnectionstring" Type="System.String" Scope="User">
<Value Profile="(Default)">Data Source=shu00;Initial Catalog=qw2021_prod;User ID=sa;Password=*shu29</Value>
</Setting>
<Setting Name="NoDownload" Type="System.String" Scope="User">
<Value Profile="(Default)">No</Value>
</Setting>
<Setting Name="LogLevel" Type="System.String" Scope="User">
<Value Profile="(Default)">1</Value>
</Setting>
<Setting Name="VereinFiler" Type="System.String" Scope="User">
<Value Profile="(Default)">.ZH.,.ZZ.</Value>
</Setting>
<Setting Name="mailserver" Type="System.String" Scope="User">
<Value Profile="(Default)">mail.shub.ch</Value>
</Setting>
<Setting Name="sender" Type="System.String" Scope="User">
<Value Profile="(Default)">qwtool@shub.ch</Value>
</Setting>
<Setting Name="empfaenger" Type="System.String" Scope="User">
<Value Profile="(Default)">qwtool@shub.ch</Value>
</Setting>
<Setting Name="cred" Type="System.String" Scope="User">
<Value Profile="(Default)">ToolQW*2022</Value>
</Setting>
</Settings>
</SettingsFile>

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="System.Configuration.ConfigurationManager" version="6.0.0" targetFramework="net48" />
<package id="System.Security.AccessControl" version="6.0.0" targetFramework="net48" />
<package id="System.Security.Permissions" version="6.0.0" targetFramework="net48" />
<package id="System.Security.Principal.Windows" version="5.0.0" targetFramework="net48" />
</packages>

@ -1,823 +0,0 @@
{
"$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
"version": "2.1.0",
"runs": [
{
"tool": {
"driver": {
"name": "Dependency Analysis",
"semanticVersion": "0.3.310801",
"informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview",
"rules": [
{
"id": "UA103",
"name": "ReferenceToBeDeleted",
"fullDescription": {
"text": "References that need to be deleted in order to upgrade the project to chosen TFM"
},
"helpUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
},
{
"id": "UA106",
"name": "PackageToBeAdded",
"fullDescription": {
"text": "Packages that need to be added in order to upgrade the project to chosen TFM"
},
"helpUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
},
{
"id": "UA108",
"name": "FrameworkReferenceToBeAdded",
"fullDescription": {
"text": "Framework Reference that need to be added in order to upgrade the project to chosen TFM"
},
"helpUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
}
]
}
},
"results": [
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Web.Extensions needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Web needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Configuration needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Web.Services needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Web.DynamicData needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Web.Entity needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Web.ApplicationServices needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Web.Optimization needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.ServiceModel needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Net.Http.WebRequest needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package System.Configuration.ConfigurationManager, Version=5.0.0 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package System.ServiceModel.Primitives, Version=4.8.1 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package System.ServiceModel.Http, Version=4.8.1 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package System.ServiceModel.Duplex, Version=4.8.1 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package System.ServiceModel.NetTcp, Version=4.8.1 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package System.ServiceModel.Security, Version=4.8.1 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package System.ServiceModel.Federation, Version=4.8.1 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package System.Net.Http, Version=4.3.0 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.310801 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA108",
"message": {
"text": "Framework Reference to Microsoft.AspNetCore.App needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/QW2021C.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA103",
"message": {
"text": "Reference to System.Configuration needs to be deleted."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/AlabusTransfer/AlabusTransfer.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package System.Configuration.ConfigurationManager, Version=5.0.0 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/AlabusTransfer/AlabusTransfer.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.310801 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/AlabusTransfer/AlabusTransfer.csproj"
},
"region": {}
}
}
]
},
{
"ruleId": "UA106",
"message": {
"text": "Package Microsoft.Windows.Compatibility, Version=6.0.0 needs to be added."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/AlabusTransfer/AlabusTransfer.csproj"
},
"region": {}
}
}
]
}
],
"columnKind": "utf16CodeUnits"
},
{
"tool": {
"driver": {
"name": "API Upgradability",
"semanticVersion": "0.3.310801",
"informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview",
"rules": [
{
"id": "UA0005",
"fullDescription": {
"text": "Do not use HttpContext.Current"
},
"helpUri": "about:blank"
},
{
"id": "UA0013_A",
"fullDescription": {
"text": "Replace usage of System.Web.IHttpModule, System.Web.IHttpHandler"
},
"helpUri": "about:blank"
},
{
"id": "UA0013_C",
"fullDescription": {
"text": "Replace usage of System.Web.Optimization.BundleCollection"
},
"helpUri": "about:blank"
}
]
}
},
"results": [
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/Downloader.aspx.cs"
},
"region": {
"startLine": 32
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/Upload.aspx.cs"
},
"region": {
"startLine": 50
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/Upload.aspx.cs"
},
"region": {
"startLine": 80
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/Upload.aspx.cs"
},
"region": {
"startLine": 89
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/ExportAnmeldung.aspx.cs"
},
"region": {
"startLine": 171
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/ExportAnmeldung.aspx.cs"
},
"region": {
"startLine": 117
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/saveFilescsv.ashx.cs"
},
"region": {
"startLine": 16
}
}
}
]
},
{
"ruleId": "UA0013_A",
"message": {
"text": "HTTP modules and HTTP handlers should be rewritten as middleware in ASP.NET Core. https://docs.microsoft.com/aspnet/core/migration/http-modulesIHttpModule"
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/saveFilescsv.ashx.cs"
},
"region": {
"startLine": 11
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Resultate/Resultate_saveFiles.ashx.cs"
},
"region": {
"startLine": 16
}
}
}
]
},
{
"ruleId": "UA0013_A",
"message": {
"text": "HTTP modules and HTTP handlers should be rewritten as middleware in ASP.NET Core. https://docs.microsoft.com/aspnet/core/migration/http-modulesIHttpModule"
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Resultate/Resultate_saveFiles.ashx.cs"
},
"region": {
"startLine": 11
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Helper/Messagebox.cs"
},
"region": {
"startLine": 29
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Helper/Messagebox.cs"
},
"region": {
"startLine": 58
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/saveFiles.ashx.cs"
},
"region": {
"startLine": 16
}
}
}
]
},
{
"ruleId": "UA0013_A",
"message": {
"text": "HTTP modules and HTTP handlers should be rewritten as middleware in ASP.NET Core. https://docs.microsoft.com/aspnet/core/migration/http-modulesIHttpModule"
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/saveFiles.ashx.cs"
},
"region": {
"startLine": 11
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/Wettkampfeinteilung.aspx.cs"
},
"region": {
"startLine": 57
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Administration/Wettkampfeinteilung.aspx.cs"
},
"region": {
"startLine": 192
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/Resultate/Resultat_Upload.aspx.cs"
},
"region": {
"startLine": 69
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/UserFunktionen/Anmeldung.aspx.cs"
},
"region": {
"startLine": 513
}
}
}
]
},
{
"ruleId": "UA0005",
"message": {
"text": "HttpContext does not have a Current property; get the context from a controller or use HttpContextAccessor instead."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/UserFunktionen/Anmeldung.aspx.cs"
},
"region": {
"startLine": 471
}
}
}
]
},
{
"ruleId": "UA0013_C",
"message": {
"text": "Script and style bundling works differently in ASP.NET Core. BundleCollection should be replaced by alternative bundling technologies. https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification"
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///E:/Software-Projekte/QW-Tool/QW2021C/App_Start/BundleConfig.cs"
},
"region": {
"startLine": 13
}
}
}
]
}
],
"columnKind": "utf16CodeUnits"
}
]
}

@ -69,8 +69,8 @@ public class clsDB
}
}
public DataSet Get_Tabledata(int sqlscriptnumber, string vereinnr, int userid)
{
Get_Tabledata("Select sqlscript from sqlqueries where sqlscriptnumber=" + sqlscriptnumber.ToString(), false, true);
{
Get_Tabledata("Select sqlscript from sqlqueries where sqlscriptnumber=" + sqlscriptnumber.ToString(),false,true);
string sql = dsdaten.Tables[0].Rows[0][0].ToString();
dsdaten.Tables.Clear();
sql = sql.Replace("@vereinnr", vereinnr);
@ -199,7 +199,7 @@ public class clsDB
// Menutype = 3 Then
// sqlcmd.CommandText = "Select * from web_menu where mandanttype>=" + mandanttyp.ToString + " and aktiv=1 and menutext<>'Schüler' and ( menutype=10 or menutype=1 or menutype = " + Menutype.ToString + ") order by menutype, sort"
// Else
if (loggedoffmenu == true)
if (loggedoffmenu==true)
{
sqlcmd.CommandText = "Select * from web_menu where aktiv=1 and ( menutype=100 or menutype=1 or menutype = " + Menutype.ToString() + ") order by menutype, sort";
@ -412,14 +412,14 @@ public class clsDB
}
catch (Exception ex)
{
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
}
public void truncate_table(string tablename)
@ -449,7 +449,7 @@ public class clsDB
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("[dbo].[Migrate_TAF_Import]", myConnection);
// if (deldata == "False") ortnr = "0";
// if (deldata == "False") ortnr = "0";
myCommand.Parameters.Add(new SqlParameter("@ortnr", SqlDbType.Int, 3, ParameterDirection.Input, true, 10, 0, "", DataRowVersion.Proposed, ortnr));
myCommand.Parameters.Add(new SqlParameter("@return", SqlDbType.Int, 3, ParameterDirection.Output, true, 10, 0, "", DataRowVersion.Proposed, 0));
myCommand.Parameters.Add(new SqlParameter("@statistics", SqlDbType.VarChar, 8096, ParameterDirection.Output, true, 10, 0, "", DataRowVersion.Proposed, ""));
@ -463,7 +463,7 @@ public class clsDB
}
catch (Exception ex)
{
return "Fehler:" + ex.Message;
return "Fehler:"+ex.Message;
}
finally
{
@ -477,7 +477,7 @@ public class clsDB
truncate_table("base_account_import");
String Filter = ConfigurationSettings.AppSettings["VereinFilter"];
string[] filters = Filter.Split(',');
Get_Tabeldata_for_Update("Select * from base_account_import", false, true);
Get_Tabeldata_for_Update ("Select * from base_account_import",false,true);
DataSet verein = new DataSet();
verein.ReadXml(targetfolder + "\\verein.xml");
foreach (DataRow r in verein.Tables[0].Rows)
@ -485,7 +485,7 @@ public class clsDB
DataRow rn = dsdaten.Tables[0].NewRow();
Boolean useit;
useit = false;
foreach (var filt in filters)
foreach(var filt in filters)
{
if (r["accountcode"].ToString().IndexOf(filt) > 0) useit = true;
@ -493,12 +493,12 @@ public class clsDB
if (useit == true)
{
rn["account_code"] = r["accountCode"];
rn["account_name"] = r["accountName"];
rn["account_short"] = r["accountShort"];
rn["account_type"] = r["accountType"];
rn["lg"] = r["lg"];
dsdaten.Tables[0].Rows.Add(rn);
rn["account_code"] = r["accountCode"];
rn["account_name"] = r["accountName"];
rn["account_short"] = r["accountShort"];
rn["account_type"] = r["accountType"];
rn["lg"] = r["lg"];
dsdaten.Tables[0].Rows.Add(rn);
}
}
@ -518,15 +518,15 @@ public class clsDB
foreach (DataRow r in unicodes.Rows)
{
int ascii = (int)c;
if (ascii == Convert.ToInt32(r[0]))
{
res1 = r[1].ToString();
}
}
if (res1 == "")
{
if (res1=="")
{
res = res + c.ToString();
}
else
@ -561,7 +561,7 @@ public class clsDB
}
if (useit == true)
{
Get_Tabeldata_for_Update("Select * from base_athlete where license=" + r["license"].ToString(), false, true);
if (dsdaten.Tables[0].Rows.Count == 0)
{
@ -576,11 +576,11 @@ public class clsDB
// r["Lastname"] = decoded;
//}
r["lastname"] = get_unicode(r["lastname"].ToString(), unicodes);
r["firstname"] = get_unicode(r["firstname"].ToString(), unicodes);
r["lastname"] = get_unicode(r["lastname"].ToString(),unicodes);
r["firstname"] = get_unicode(r["firstname"].ToString(),unicodes);
rn["lastname"] = r["lastname"];
rn["firstname"] = r["firstname"];
rn["birth_date"] = r["birthdate"].ToString().Substring(3, 2) + "." + r["birthdate"].ToString().Substring(0, 2) + "." + r["birthdate"].ToString().Substring(6, 4);
rn["birth_date"] = r["birthdate"].ToString().Substring(3,2)+"."+ r["birthdate"].ToString().Substring(0, 2) + "."+r["birthdate"].ToString().Substring(6, 4);
rn["sex"] = r["sex"];
rn["nationality"] = r["nationality"];
rn["account_code"] = r["accountcode"];
@ -595,25 +595,25 @@ public class clsDB
else
{
DataRow rn = dsdaten.Tables[0].NewRow();
//string a = "";
//ASCIIEncoding ascii = new ASCIIEncoding();
//Byte[] bytes = ascii.GetBytes(r["Lastname"].ToString());
//String decoded = ascii.GetString(bytes);
//if (decoded.IndexOf("o?in")>-1)
//{
// decoded = decoded.Replace("o?in", "ošin");
// r["Lastname"] = decoded;
//}
//string a = "";
//ASCIIEncoding ascii = new ASCIIEncoding();
//Byte[] bytes = ascii.GetBytes(r["Lastname"].ToString());
//String decoded = ascii.GetString(bytes);
//if (decoded.IndexOf("o?in")>-1)
//{
// decoded = decoded.Replace("o?in", "ošin");
// r["Lastname"] = decoded;
//}
if (r["License"].ToString() == "173471")
{
string a = "";
}
r["lastname"] = get_unicode(r["lastname"].ToString(), unicodes);
r["firstname"] = get_unicode(r["firstname"].ToString(), unicodes);
r["lastname"] = get_unicode(r["lastname"].ToString(),unicodes);
r["firstname"] = get_unicode(r["firstname"].ToString(),unicodes);
dsdaten.Tables[0].Rows[0]["lastname"] = r["lastname"];
dsdaten.Tables[0].Rows[0]["firstname"] = r["firstname"];
dsdaten.Tables[0].Rows[0]["birth_date"] = r["birthdate"].ToString().Substring(3, 2) + "." + r["birthdate"].ToString().Substring(0, 2) + "." + r["birthdate"].ToString().Substring(6, 4); ;
dsdaten.Tables[0].Rows[0]["sex"] = r["sex"];
@ -629,7 +629,7 @@ public class clsDB
}
}
}
public DataSet Get_Reportdata(string Orte, string U1012, string erdgas, string vierkampf, int ortnr, int anzahl_atheleten)
public DataSet Get_Reportdata(string Orte, string U1012, string erdgas, string vierkampf, int ortnr)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
@ -641,12 +641,9 @@ public class clsDB
myCommand.Parameters.Add("@resqw", SqlDbType.Int, 4);
myCommand.Parameters.Add("@resew", SqlDbType.Int, 4);
myCommand.Parameters.Add("@resortnr", SqlDbType.Int, 4);
myCommand.Parameters.Add("@anz_athleten", SqlDbType.Int, 4);
myCommand.Parameters[4].Value = ortnr;
myCommand.Parameters[3].Value = 0;
myCommand.Parameters[2].Value = 1;
myCommand.Parameters[5].Value = anzahl_atheleten;
}
if (erdgas == "J")
@ -691,72 +688,5 @@ public class clsDB
}
public string get_importstatistik()
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("dbo.sp_import_statistik", myConnection);
myCommand.Parameters.Add("@fnkt", SqlDbType.Int, 4);
myCommand.Parameters[0].Value = 1;
myCommand.CommandType = CommandType.StoredProcedure;
myCommand.CommandTimeout = 600;
SqlDataAdapter da = new SqlDataAdapter(myCommand);
dsdaten.Tables.Clear();
try
{
myConnection.Open();
da.Fill(dsdaten, "Daten");
//myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
return dsdaten.Tables[0].Rows[0][0].ToString();
}
public void merge_athlete(int id_athlete, int teilnehmernr, string lizenz)
{
Get_Tabeldata_for_Update("Select * from teilnehmer where teilnehmernr=" + teilnehmernr.ToString(), false, true);
DataRow r = dsdaten.Tables[0].Rows[0];
r["base_lizenz"] = lizenz;
Update_Tabeldata();
}
public int zusammenlegung(string verein)
{
SqlConnection myConnection = new SqlConnection(this.Connectionstring);
SqlCommand myCommand = new SqlCommand("dbo.sp_mergeathleten", myConnection);
myCommand.Parameters.Add("@fnkt", SqlDbType.Int, 4);
myCommand.Parameters.Add("@Verein", SqlDbType.VarChar, 255);
myCommand.Parameters[0].Value = 0;
myCommand.Parameters[1].Value = verein;
myCommand.CommandType = CommandType.StoredProcedure;
myCommand.CommandTimeout = 600;
SqlDataAdapter da = new SqlDataAdapter(myCommand);
dsdaten.Tables.Clear();
try
{
myConnection.Open();
da.Fill(dsdaten, "Daten");
//myCommand.ExecuteNonQuery();
}
catch (Exception ex)
{
return 0;
}
finally
{
if (myConnection.State == ConnectionState.Open)
myConnection.Close();
}
return dsdaten.Tables[0].Rows.Count;
}
}

@ -8,7 +8,10 @@ img {
margin-right: auto;
}
</style>
.auto-style1 {
padding-top: 50px;
padding-bottom:50px; }
</style>
<img src="Bilder/ZALogo.jpg" alt="zürich atletics" style="" >
<div class="jumbotron">
@ -19,13 +22,6 @@ img {
<p>
<asp:Label ID="lblheader2" runat="server"></asp:Label>
</p>
<p>
<asp:Label ID="lblHeader3" runat="server"></asp:Label>
</p>
<p>
<span style="color:red"><asp:Literal ID="Literal1" runat="server" Text="<b>Neue Funktion</b><br>"></asp:Literal></span>
<span style="font-size:16px"><asp:Literal ID="Literal2" runat="server" Text="Zusammenführen nicht lizenzierte Teilnehmer / lizenzierte Athleten. Details dazu in der Hilfe verfügbar<br>"></asp:Literal></span><br />
</p>
</div>
<table class="container">
<tr>

@ -11,17 +11,11 @@ namespace QW2021C
{
protected void Page_Load(object sender, EventArgs e)
{
this.lblHeader3.Text = "";
clsDB db = new clsDB();
db.Get_Tabledata("Select * from applikation", false, true);
this.lblHeader.Text = db.dsdaten.Tables[0].Rows[0]["CenterTitle"].ToString();
this.lblheader2.Text = db.dsdaten.Tables[0].Rows[0]["CenterText"].ToString();
this.lblheader2.Text= db.dsdaten.Tables[0].Rows[0]["CenterText"].ToString();
this.lblnews.Text = db.dsdaten.Tables[0].Rows[0]["Rightnews"].ToString();
this.lblnews.Text = this.lblnews.Text + db.get_importstatistik();
}
}
}
}

@ -15,55 +15,28 @@ namespace QW2021C
{
/// <summary>
/// lblHeader-Steuerelement.
/// lblHeader-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblHeader;
/// <summary>
/// lblheader2-Steuerelement.
/// lblheader2-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblheader2;
/// <summary>
/// lblHeader3-Steuerelement.
/// lblnews-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblHeader3;
/// <summary>
/// Literal1-Steuerelement.
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Literal Literal1;
/// <summary>
/// Literal2-Steuerelement.
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Literal Literal2;
/// <summary>
/// lblnews-Steuerelement.
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblnews;

@ -1 +0,0 @@
Anmeldenr;Lizenznr;Name;Vorname;Jahrgang;Verein;Club-Name;Geschlecht;Nationalitaet;GebDat;Bez;Kategorie;GruppeNr;GruppeName;Startzeit;Bewerb;Kanton;KidID;W1;W2;W3;W4
1 Anmeldenr Lizenznr Name Vorname Jahrgang Verein Club-Name Geschlecht Nationalitaet GebDat Bez Kategorie GruppeNr GruppeName Startzeit Bewerb Kanton KidID W1 W2 W3 W4

@ -1 +0,0 @@
Anmeldenr;Lizenznr;Name;Vorname;Jahrgang;Verein;Club-Name;Geschlecht;Nationalitaet;GebDat;Bez;Kategorie;GruppeNr;GruppeName;Startzeit;Bewerb;Kanton;KidID;W1;W2;W3;W4
1 Anmeldenr Lizenznr Name Vorname Jahrgang Verein Club-Name Geschlecht Nationalitaet GebDat Bez Kategorie GruppeNr GruppeName Startzeit Bewerb Kanton KidID W1 W2 W3 W4

@ -1 +0,0 @@
Anmeldenr;Lizenznr;Name;Vorname;Jahrgang;Verein;Club-Name;Geschlecht;Nationalitaet;GebDat;Bez;Kategorie;GruppeNr;GruppeName;Startzeit;Bewerb;Kanton;KidID;W1;W2;W3;W4
1 Anmeldenr Lizenznr Name Vorname Jahrgang Verein Club-Name Geschlecht Nationalitaet GebDat Bez Kategorie GruppeNr GruppeName Startzeit Bewerb Kanton KidID W1 W2 W3 W4

@ -1,286 +0,0 @@
Anmeldenr;Lizenznr;Name;Vorname;Jahrgang;Verein;Club-Name;Geschlecht;Nationalitaet;GebDat;Bez;Kategorie;GruppeNr;GruppeName;Startzeit;Bewerb;Kanton;KidID;W1;W2;W3;W4
6;255982;Straube;Tommy;2011;1.ZH.1828;LC Uster;M;SUI;15.11.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
8;256044;Haas;Leandro;2011;1.ZH.1828;LC Uster;M;SUI;04.12.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
147;259257;In-Albon;Mino;2012;1.ZH.1828;LC Uster;M;SUI;25.09.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;X
240;259605;Leonhardt;Julius;2011;1.ZH.1828;LC Uster;M;SUI;11.07.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
241;259499;Ackermann;Vin;2012;1.ZH.1828;LC Uster;M;SUI;12.11.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;X
242;259281;Salzmann;Aaron;2011;1.ZH.1828;LC Uster;M;SUI;09.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
510;259609;Neumann;Nemo;2011;1.ZH.1828;LC Uster;M;SUI;05.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
574;255495;Rüdt;Marlon;2011;1.ZH.1822;LV Winterthur;M;SUI;15.10.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;X
576;255156;Simperl;Marius;2011;1.ZH.1822;LV Winterthur;M;SUI;04.03.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
591;258937;Brügge;Björn;2011;1.ZH.1822;LV Winterthur;M;GER;13.07.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
598;258956;Jost;Nicolas;2012;1.ZH.1822;LV Winterthur;M;SUI;16.08.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
600;258934;Lamprecht;Maurus;2011;1.ZH.1822;LV Winterthur;M;SUI;23.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;;
1153;A:999898;Lüscher;Rico;2012;1.ZH.1887;Turnverein Wiesendangen;M;SUI;03.01.2012;;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
1156;A:999896;Hofer;Nevio;2011;1.ZH.1887;Turnverein Wiesendangen;M;SUI;10.07.2011;;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
650;257961;Grob;Cyril;2011;1.ZH.1832;LV Zürcher Oberland;M;SUI;24.02.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;
652;255086;Caflisch;Livio;2011;1.ZH.1832;LV Zürcher Oberland;M;SUI;07.04.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
659;256648;Ruf;Andri;2011;1.ZH.1832;LV Zürcher Oberland;M;SUI;08.07.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
662;259675;Steiner;Eric;2012;1.ZH.1832;LV Zürcher Oberland;M;SUI;10.07.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
934;255070;Schmid;Fabio;2011;1.ZH.1862;LA Wyland;M;SUI;28.01.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;X;
852;259843;Weybora;Florin;2012;1.ZH.1827;Leichtathletik-Club Dübendorf;M;AUT;06.05.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;;;
750;255308;Krebs;Jonas;2011;1.ZH.1820;TV Dietlikon;M;SUI;10.09.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
404;256195;Ulli;Florian;2012;1.ZH.1819;TV Kloten LA;M;SUI;10.09.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;;
697;259825;Figura;Alberto;2011;1.ZH.1819;TV Kloten LA;M;SUI;20.09.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
738;A:999928;Baumgartner;Tom;2011;1.ZH.1819;TV Kloten LA;M;SUI;01.11.2011;;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;;
338;256523;Wittel;Jörn;2011;1.ZH.1871;TV Otelfingen;M;GER;07.02.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
342;259712;Schelbert;Tim;2012;1.ZH.1871;TV Otelfingen;M;SUI;01.09.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
53;246679;Grond;Dyah;2011;1.ZH.1845;LV Albis;M;SUI;28.08.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
94;255330;Stuckert;Dennis;2011;1.ZH.1845;LV Albis;M;SUI;06.03.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
116;255710;Grabherr;Dominic;2011;1.ZH.1845;LV Albis;M;SUI;07.06.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
122;255712;Nievergelt;Flurin;2011;1.ZH.1845;LV Albis;M;SUI;28.03.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
123;255711;Palermo;Domenico;2011;1.ZH.1845;LV Albis;M;SUI;03.06.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
134;256818;Basso;Leo;2011;1.ZH.1845;LV Albis;M;SUI;12.10.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
303;253455;Schnidrig;LEvin;2012;1.ZH.1845;LV Albis;M;SUI;16.02.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
308;259710;Rüegg;Levin;2011;1.ZH.1845;LV Albis;M;SUI;05.08.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
309;259713;Ott;Leano;2012;1.ZH.1845;LV Albis;M;SUI;25.10.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
321;255195;Zurbuchen;Remo;2011;1.ZH.1811;LC Regensdorf;M;SUI;30.09.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
322;259072;Hongler;Noah;2012;1.ZH.1811;LC Regensdorf;M;SUI;22.01.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
323;255196;Siegrist;Fabrice;2012;1.ZH.1811;LC Regensdorf;M;SUI;16.02.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
581;256752;Maurer;Johanna;2011;1.ZH.1822;LV Winterthur;W;SUI;18.06.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
582;255004;Popp;Luzia;2011;1.ZH.1822;LV Winterthur;W;SUI;07.05.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
595;258952;Fröse;Jasmin;2012;1.ZH.1822;LV Winterthur;W;SUI;22.02.2012;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
601;258939;Müller;Anna;2011;1.ZH.1822;LV Winterthur;W;SUI;29.09.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
606;258954;Rebitzer;Viktoria;2012;1.ZH.1822;LV Winterthur;W;SUI;15.12.2012;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
607;258940;Salzinger;Joana;2011;1.ZH.1822;LV Winterthur;W;SUI;13.05.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
609;258942;Tauscher;Malin;2012;1.ZH.1822;LV Winterthur;W;SUI;01.03.2012;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
610;258935;Üre Villoria;Nelia;2011;1.ZH.1822;LV Winterthur;W;SUI;03.06.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;;X
612;258930;Wilkens;Elin;2011;1.ZH.1822;LV Winterthur;W;SUI;17.10.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
614;259545;Zinth;Martha;2011;1.ZH.1822;LV Winterthur;W;GER;07.02.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
732;259837;Furter;Jennifer;2011;1.ZH.1822;LV Winterthur;W;SUI;14.05.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
84;251478;Perks;Lucia;2011;1.ZH.1845;LV Albis;W;SUI;08.06.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;;X;X
117;253460;Gugerli;Greta;2011;1.ZH.1845;LV Albis;W;SUI;16.09.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
119;249481;Meier;Angelina;2011;1.ZH.1845;LV Albis;W;SUI;25.08.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
125;255708;Sangermano;Lorena;2011;1.ZH.1845;LV Albis;W;SUI;18.06.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
130;250319;Cosabic;Ilma;2011;1.ZH.1845;LV Albis;W;99;26.12.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
131;256671;Kadriaj;Alina;2011;1.ZH.1845;LV Albis;W;SUI;25.09.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;;X;X
302;253462;Walter;Elin;2012;1.ZH.1845;LV Albis;W;SUI;16.10.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;;X;X
307;259711;Tutu;Merle Nerina;2012;1.ZH.1845;LV Albis;W;SUI;29.01.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
393;259779;Zekic;Alya;2012;1.ZH.1845;LV Albis;W;SUI;07.09.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;;X
394;259777;Notarnicola;Valentina;2011;1.ZH.1845;LV Albis;W;SUI;04.01.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
395;259776;Notarnicola;Romina;2012;1.ZH.1845;LV Albis;W;SUI;09.04.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
396;259778;Nogler;Ladina;2012;1.ZH.1845;LV Albis;W;SUI;06.11.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
744;259870;Spauwen;Rahel;2012;1.ZH.1845;LV Albis;W;SUI;04.04.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
746;259872;Fabian;Melina;2012;1.ZH.1845;LV Albis;W;SUI;07.03.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
138;258176;Van Elst;Aniek;2012;1.ZH.1845;LV Albis;W;NED;14.07.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;;;;
313;255203;Spottek;Mia;2011;1.ZH.1811;LC Regensdorf;W;SUI;25.07.2011;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
314;255205;Boutiuc;Scarlet;2011;1.ZH.1811;LC Regensdorf;W;SUI;21.01.2011;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
315;259073;Schweizer;Ella;2012;1.ZH.1811;LC Regensdorf;W;SUI;31.03.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
316;255207;Wollscheid;Zoe;2011;1.ZH.1811;LC Regensdorf;W;SUI;28.03.2011;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
317;259076;Desait;Céline;2012;1.ZH.1811;LC Regensdorf;W;SUI;12.09.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
318;259077;Cuche;Pauline;2012;1.ZH.1811;LC Regensdorf;W;SUI;09.07.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
333;256458;Burkhalter;Paula;2011;1.ZH.1871;TV Otelfingen;W;SUI;03.07.2011;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
334;256459;Fort;Elena;2011;1.ZH.1871;TV Otelfingen;W;SUI;04.02.2011;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;;;
340;259294;Glauser;Soraya;2012;1.ZH.1871;TV Otelfingen;W;SUI;06.09.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
341;259295;Landolt;Lisa;2012;1.ZH.1871;TV Otelfingen;W;SUI;07.12.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
639;253745;Scheurer;Mya;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;05.02.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
647;256286;Wolf;Lilli;2011;1.ZH.1832;LV Zürcher Oberland;W;SUI;17.01.2011;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
660;259405;Rauber;Hannah;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;12.08.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
667;A:999937;Achermann;Yana;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;15.09.2012;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;;X;
668;A:999936;Heusser;Ladina;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;19.05.2012;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;;X;X
670;A:999934;Knabenhans;Anina;2011;1.ZH.1832;LV Zürcher Oberland;W;SUI;16.01.2011;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
672;A:999933;Zollinger;Elina;2011;1.ZH.1832;LV Zürcher Oberland;W;SUI;03.05.2011;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
10;259383;Zwyssig;Léanne Céline;2012;1.ZH.1828;LC Uster;W;SUI;02.06.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;;;;
145;259280;Zwiker;Leena;2012;1.ZH.1828;LC Uster;W;SUI;04.09.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;
148;259247;Messikommer;Lily;2012;1.ZH.1828;LC Uster;W;SUI;05.04.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;X
150;257003;Ziörjen;Romina;2012;1.ZH.1828;LC Uster;W;SUI;03.08.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
151;256981;Schwarz;Avania;2011;1.ZH.1828;LC Uster;W;SUI;10.09.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;
269;259388;Müller;Emma;2011;1.ZH.1828;LC Uster;W;SUI;08.08.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;
928;249300;Maurer;Kira Leila;2011;1.ZH.1862;LA Wyland;W;SUI;06.04.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;;X
936;249299;Kälin;Sanni;2011;1.ZH.1862;LA Wyland;W;SUI;07.03.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;X
942;259250;Frauenfelder;Rina;2012;1.ZH.1862;LA Wyland;W;SUI;24.09.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;
810;249203;Müller;Alicia;2011;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;01.03.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
405;257439;Chiapparini;Julia;2011;1.ZH.1819;TV Kloten LA;W;SUI;02.09.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
406;257481;Clerc;Leonie;2011;1.ZH.1819;TV Kloten LA;W;SUI;10.03.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
407;258016;Koller;Linnea;2011;1.ZH.1819;TV Kloten LA;W;SUI;09.08.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
411;A:999986;Signer;Liya;2012;1.ZH.1819;TV Kloten LA;W;SUI;14.06.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
401;254172;Quartu;Peace;2011;1.ZH.1819;TV Kloten LA;W;SUI;09.01.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;;;;
696;259821;Ammann;Shirin;2012;1.ZH.1819;TV Kloten LA;W;SUI;17.04.2012;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;X;
698;259822;Barattini;Anna;2012;1.ZH.1819;TV Kloten LA;W;ITA;30.05.2012;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;X;;
1144;A:999902;Milovanovic;Lena;2012;1.ZH.1819;TV Kloten LA;W;SUI;09.03.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;X;;
1152;A:999900;Furrer;Celia;2012;1.ZH.1887;Turnverein Wiesendangen;W;SUI;23.01.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
1154;A:999899;Binder;Malea;2012;1.ZH.1887;Turnverein Wiesendangen;W;SUI;01.10.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
1155;A:999897;Furrer;Rania;2011;1.ZH.1887;Turnverein Wiesendangen;W;SUI;27.08.2011;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
512;173725;Beranek-Chiu;Noah;2009;1.ZH.1822;LV Winterthur;M;GER;21.12.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
526;251627;Homberger;Tim Emerick;2009;1.ZH.1822;LV Winterthur;M;SUI;26.10.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
535;252659;Laib;Luc;2009;1.ZH.1822;LV Winterthur;M;SUI;09.12.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
537;253900;Lerch;Leon;2009;1.ZH.1822;LV Winterthur;M;SUI;21.05.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
546;252015;Ohlendorf;Norman;2010;1.ZH.1822;LV Winterthur;M;GER;04.10.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
555;252009;Srikannan;Santhosh;2010;1.ZH.1822;LV Winterthur;M;SUI;03.08.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;;X
559;252008;van Seumeren;Cornelius;2010;1.ZH.1822;LV Winterthur;M;SUI;08.12.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;;X
564;173723;Wollnik;Robin;2009;1.ZH.1822;LV Winterthur;M;GER;02.11.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
570;255829;Hug;Matti;2009;1.ZH.1822;LV Winterthur;M;SUI;17.09.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
579;256756;Horisberger;Levi;2009;1.ZH.1822;LV Winterthur;M;SUI;30.01.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
584;256757;Stähli;Jonas;2009;1.ZH.1822;LV Winterthur;M;SUI;09.05.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
599;259157;Kromer;Gian;2009;1.ZH.1822;LV Winterthur;M;SUI;20.07.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
642;176506;Vogt;Marc;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;15.03.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;;;
645;254356;Züst;Levin;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;09.01.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
646;255311;Gut;Lenny;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;13.09.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
649;257960;Frauchiger;Nelson;2010;1.ZH.1832;LV Zürcher Oberland;M;SUI;14.07.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
653;256716;Fussen;Milo;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;22.09.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;X
657;256732;Lechner;Mika;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;01.12.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
666;A:999938;Hess;Jonas;2010;1.ZH.1832;LV Zürcher Oberland;M;SUI;13.04.2010;;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;X
938;256225;Merk;Niklas;2009;1.ZH.1862;LA Wyland;M;SUI;10.03.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
940;255072;Stegemann;Leon;2010;1.ZH.1862;LA Wyland;M;SUI;11.08.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;
748;253122;Güler;Eray;2010;1.ZH.1820;TV Dietlikon;M;SUI;23.01.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;
19;253118;Bengo-Oliveri;Henry;2009;1.ZH.1845;LV Albis;M;UGA;01.01.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
28;249485;Brodda;Henri Caspar;2010;1.ZH.1845;LV Albis;M;SUI;13.02.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;;X
69;253448;Kourpas;Adam;2010;1.ZH.1845;LV Albis;M;GBR;03.10.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;X;X
1172;A:999886;Nji;Steve Mbeng;2010;1.ZH.1845;LV Albis;M;SUI;07.03.2010;;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;;X;X;X
95;247238;Tschochner;Fabian;2010;1.ZH.1845;LV Albis;M;GER;08.11.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;X;X
101;249483;Waldmeier;Janis;2009;1.ZH.1845;LV Albis;M;SUI;28.04.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
794;245932;Kresken;Tim;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;19.12.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;;;;
811;171052;Müller;Jan;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;16.08.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;;;;
337;256456;Steinholtz;Zachary;2009;1.ZH.1871;TV Otelfingen;M;SUI;06.05.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
403;255397;Wirz;Navin;2009;1.ZH.1819;TV Kloten LA;M;SUI;21.08.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;;
410;A:999989;Pepic;Novak;2010;1.ZH.1819;TV Kloten LA;M;SUI;01.02.2010;;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;;
173;248706;Siegrist;Joel;2009;1.ZH.1811;LC Regensdorf;M;SUI;17.07.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
179;176199;Wilhelm;Alejandro;2010;1.ZH.1811;LC Regensdorf;M;SUI;08.01.2010;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;X;
183;259067;Döbeli;Lukas;2010;1.ZH.1811;LC Regensdorf;M;SUI;27.02.2010;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;X;
325;259085;Van der Heijden;Alexander;2010;1.ZH.1811;LC Regensdorf;M;SUI;01.01.2010;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;X;X
2;249353;Nesterak;Tim Dennis;2009;1.ZH.1828;LC Uster;M;SUI;22.01.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;;
7;256742;Vischer;Cédric;2009;1.ZH.1828;LC Uster;M;SUI;26.09.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;;X
11;259349;Müller;Carlo;2009;1.ZH.1828;LC Uster;M;SUI;26.11.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;X;
1149;246337;Krüsi;Benedikt;2009;1.ZH.1887;Turnverein Wiesendangen;M;SUI;23.06.2009;N;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
1158;A:999894;Binder;Rouven;2010;1.ZH.1887;Turnverein Wiesendangen;M;SUI;21.02.2010;;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
1159;A:999893;Furrer;Nino;2009;1.ZH.1887;Turnverein Wiesendangen;M;SUI;04.11.2009;;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
156;252908;Canzillon;Kina;2009;1.ZH.1811;LC Regensdorf;W;FRA;17.07.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
158;255191;Favre-Bulle;Gabriela;2009;1.ZH.1811;LC Regensdorf;W;SUI;24.08.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
161;253180;Heiderich;Leonie;2010;1.ZH.1811;LC Regensdorf;W;SUI;20.09.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;
162;255202;Hürzeler;Noemi;2010;1.ZH.1811;LC Regensdorf;W;SUI;28.02.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;X
165;255200;Mamais;Sofia;2010;1.ZH.1811;LC Regensdorf;W;SUI;01.10.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
171;248719;Schildknecht;Maude Vivienne;2009;1.ZH.1811;LC Regensdorf;W;SUI;30.08.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
172;253198;Schwedhelm;Jula;2010;1.ZH.1811;LC Regensdorf;W;GER;23.09.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;
175;252909;Suter;Kisha;2009;1.ZH.1811;LC Regensdorf;W;SUI;08.04.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
176;253184;Thöni;Lily Mia;2010;1.ZH.1811;LC Regensdorf;W;SUI;31.03.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;
398;253588;Barattini;Martina;2010;1.ZH.1819;TV Kloten LA;W;SUI;20.04.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;;
399;247793;Gläser;Sarah;2009;1.ZH.1819;TV Kloten LA;W;SUI;27.04.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;;
402;255394;Ulli;Céline;2010;1.ZH.1819;TV Kloten LA;W;SUI;08.09.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;;
515;248457;Bohn;Hannah Luna;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
516;252007;Brügger;Lenja;2010;1.ZH.1822;LV Winterthur;W;SUI;14.06.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
518;252017;Erny;Liana;2010;1.ZH.1822;LV Winterthur;W;SUI;22.05.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;;X;X
519;173367;Facchinetti;Elisa;2009;1.ZH.1822;LV Winterthur;W;SUI;14.12.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;;X
521;252144;Fiorucci;Malena;2010;1.ZH.1822;LV Winterthur;W;SUI;08.06.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
541;252006;Meier;Jael;2009;1.ZH.1822;LV Winterthur;W;SUI;30.04.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
542;252914;Mohn;Jonna;2009;1.ZH.1822;LV Winterthur;W;SUI;28.07.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;;;X
560;252660;Vock;Marta;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
567;254758;Egli;Somea;2009;1.ZH.1822;LV Winterthur;W;SUI;02.10.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
569;254856;Gürtler;Elin;2010;1.ZH.1822;LV Winterthur;W;SUI;12.02.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
572;255079;Lehner;Lea;2010;1.ZH.1822;LV Winterthur;W;SUI;14.04.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
586;257488;Heeb;Leandra;2009;1.ZH.1822;LV Winterthur;W;SUI;19.09.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
589;258933;Banyoczki;Cya;2010;1.ZH.1822;LV Winterthur;W;SUI;09.01.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
590;258925;Bitter;Anjali Maya;2009;1.ZH.1822;LV Winterthur;W;GER;25.04.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
597;258938;Joost;Lina;2010;1.ZH.1822;LV Winterthur;W;SUI;22.09.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
603;258936;Pahud;Sari;2010;1.ZH.1822;LV Winterthur;W;SUI;25.07.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
917;252164;Aeschimann;Lina;2010;1.ZH.1862;LA Wyland;W;SUI;01.10.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
919;249306;Berger;Ayana;2009;1.ZH.1862;LA Wyland;W;SUI;03.08.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;;X;
924;249308;Kälin;Mia;2009;1.ZH.1862;LA Wyland;W;SUI;13.07.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
925;253798;Klemenz;Amélie;2010;1.ZH.1862;LA Wyland;W;SUI;19.08.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
931;244702;Stoll;Caroline;2009;1.ZH.1862;LA Wyland;W;SUI;17.03.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;;;X
937;255069;Merk;Malin;2010;1.ZH.1862;LA Wyland;W;SUI;07.11.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
939;255068;Prister;Lene;2010;1.ZH.1862;LA Wyland;W;SUI;03.05.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;;X;
920;249304;Griesser;Lenja;2010;1.ZH.1862;LA Wyland;W;SUI;02.02.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
35;247789;Chechele;Mara;2010;1.ZH.1845;LV Albis;W;SUI;23.07.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
48;172495;Gallo;Giada;2009;1.ZH.1845;LV Albis;W;SUI;02.07.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
55;174574;Gugerli;Carla;2009;1.ZH.1845;LV Albis;W;SUI;09.11.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
57;249487;Häfliger;Elin;2009;1.ZH.1845;LV Albis;W;SUI;14.07.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;;X;X
85;246691;Plüss;Livia;2010;1.ZH.1845;LV Albis;W;SUI;19.06.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
93;253451;Stalder;Alina;2010;1.ZH.1845;LV Albis;W;SUI;12.04.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
96;246694;Utzinger;Larissa;2010;1.ZH.1845;LV Albis;W;SUI;02.03.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
102;249484;Walter;Michelle;2010;1.ZH.1845;LV Albis;W;SUI;22.09.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;;X;X
107;174573;Wicki;Ciara;2010;1.ZH.1845;LV Albis;W;SUI;14.11.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
330;248960;Beeler;Sasha;2009;1.ZH.1871;TV Otelfingen;W;SUI;09.04.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
332;256457;Burkhalter;Hanna;2010;1.ZH.1871;TV Otelfingen;W;SUI;02.01.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
335;256520;Glauser;Lavinia;2009;1.ZH.1871;TV Otelfingen;W;SUI;23.07.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
108;250321;Wicki;Serena;2009;1.ZH.1845;LV Albis;W;SUI;29.08.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
120;255704;Moser;Aline;2010;1.ZH.1845;LV Albis;W;SUI;06.12.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;
312;259717;Haldemann;Lina;2009;1.ZH.1845;LV Albis;W;SUI;14.10.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
743;259871;Steinke;Lara;2010;1.ZH.1845;LV Albis;W;GER;21.04.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
79;246687;Mutti;Mara;2010;1.ZH.1845;LV Albis;W;SUI;06.10.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;;;;
629;251296;Auer;Laura;2009;1.ZH.1832;LV Zürcher Oberland;W;SUI;25.08.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
631;245549;Keiser;Angelina;2009;1.ZH.1832;LV Zürcher Oberland;W;SUI;11.03.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;;;
656;256638;Kühnis;Maris;2010;1.ZH.1832;LV Zürcher Oberland;W;SUI;01.07.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;;X
661;259594;Debrunner;Janina;2010;1.ZH.1832;LV Zürcher Oberland;W; ;30.04.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;;X;X
663;259674;Steiner;Jana;2010;1.ZH.1832;LV Zürcher Oberland;W;SUI;01.08.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
665;A:999939;Widmer;Johanna;2009;1.ZH.1832;LV Zürcher Oberland;W;SUI;23.09.2009;;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
671;A:999940;De Vylder;Aisha;2010;1.ZH.1832;LV Zürcher Oberland;W;SUI;04.04.2010;;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
3;253820;Schmid;Léane;2010;1.ZH.1828;LC Uster;W;SUI;30.06.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
5;251505;Yapi;Laeticia;2010;1.ZH.1828;LC Uster;W;SUI;26.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;X;X
9;256986;Bertolini;Flavia;2010;1.ZH.1828;LC Uster;W;SUI;14.10.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
139;253123;Toller;Liv;2010;1.ZH.1828;LC Uster;W;SUI;17.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
141;256714;Rrahmani;Elsa;2009;1.ZH.1828;LC Uster;W;KOS;04.07.2009;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;X;
755;254473;Barletta;Myrhiam;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;ITA;04.03.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;;;;
797;245934;Kunz;Sophie;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;18.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;;;;
830;245937;Tamas;Elena;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;08.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;;;;
831;174616;Tresch;Oliana;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;02.09.2009;N;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;;;;
843;257391;Obradovic;Marija;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;CRO;23.12.2009;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;;;;
1148;246255;Sigg;Elin;2009;1.ZH.1887;Turnverein Wiesendangen;W;SUI;07.07.2009;N;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;;
1157;A:999895;Pavic;Nikolina;2010;1.ZH.1887;Turnverein Wiesendangen;W;SUI;25.05.2010;;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;;
514;176205;Bisang;Jeremias;2007;1.ZH.1822;LV Winterthur;M;SUI;05.09.2007;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;X
523;253924;Graber;Henry;2008;1.ZH.1822;LV Winterthur;M;SUI;26.11.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
529;175424;Käser;Silvan;2008;1.ZH.1822;LV Winterthur;M;SUI;22.04.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;X
536;248541;Lamprecht;Corvin;2008;1.ZH.1822;LV Winterthur;M;SUI;30.06.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;X
553;253631;Serhani;Rachid;2007;1.ZH.1822;LV Winterthur;M;SUI;15.11.2007;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
556;255336;Stähli;Tobias;2007;1.ZH.1822;LV Winterthur;M;SUI;03.06.2007;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
733;259644;Weibel;Lionel;2008;1.ZH.1822;LV Winterthur;M;SUI;04.09.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
734;A:999930;Magalhaes;Jarrel Damien;2008;1.ZH.1822;LV Winterthur;M;SUI;12.02.2008;;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
793;161330;Klaus;Michael;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;08.04.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
918;249309;Aeschimann;Phineas;2008;1.ZH.1862;LA Wyland;M;SUI;12.08.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
921;244706;Griesser;Nino;2008;1.ZH.1862;LA Wyland;M;SUI;28.10.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
929;176171;Schneeberger;Moritz;2008;1.ZH.1862;LA Wyland;M;SUI;04.09.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
1150;174247;Krüsi;Julian;2007;1.ZH.1887;Turnverein Wiesendangen;M;SUI;17.05.2007;N;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;;;
1151;246340;Schmid;Andrin;2007;1.ZH.1887;Turnverein Wiesendangen;M;SUI;30.05.2007;N;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;;;
152;173598;Beyeler;Levin;2008;1.ZH.1811;LC Regensdorf;M;SUI;13.04.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;;X;
166;165311;Marcantonio;Fabio;2007;1.ZH.1811;LC Regensdorf;M;SUI;14.02.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
328;254705;Radosarljevic;Luka;2008;1.ZH.1811;LC Regensdorf;M;SUI;01.12.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
475;244746;Totaro;Luca;2008;1.ZH.1828;LC Uster;M;SUI;07.10.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
1099;173387;Zisler;Constantin;2007;1.ZH.1828;LC Uster;M;AUT;12.07.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;;;
75;169996;Moret;Timo;2008;1.ZH.1845;LV Albis;M;SUI;01.05.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
97;166336;Van der Aar;Lars;2007;1.ZH.1845;LV Albis;M;NED;12.04.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
636;166007;Pfister;Marc;2007;1.ZH.1832;LV Zürcher Oberland;M;SUI;20.02.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
654;256684;Keller;Severin;2008;1.ZH.1832;LV Zürcher Oberland;M;SUI;31.08.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;;;
749;244803;Häberli;Tom Luca;2007;1.ZH.1820;TV Dietlikon;M;SUI;25.08.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
753;256868;Koch;Fabian;2008;1.ZH.1820;TV Dietlikon;M;SUI;07.02.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
339;257441;Uebelhart;Jannis;2008;1.ZH.1871;TV Otelfingen;M;SUI;13.05.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
760;253964;Brasse;Leni;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;19.02.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
786;171044;Heusser;Marla;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;09.07.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
788;164024;Imhof;Fabienne;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;30.03.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
814;244806;Niederberger;Selina;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;22.02.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
822;173780;Rutz;Linda;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;30.07.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;;
826;163411;Schmid;Desirée;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;17.08.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;;X;X
758;163400;Bieder;Laura;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;22.11.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;;;;
791;244686;Kerényi;Lea;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;21.03.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;;;;
343;244115;Adel;Victoria;2007;1.ZH.1828;LC Uster;W;IRL;30.08.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
637;246924;Ramsauer;Mia;2008;1.ZH.1832;LV Zürcher Oberland;W;SUI;06.10.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;;X;X
153;248712;Biaggi;Jael;2007;1.ZH.1811;LC Regensdorf;W;SUI;13.04.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;X
159;248716;Fuchser;Fiona;2008;1.ZH.1811;LC Regensdorf;W;SUI;08.05.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
168;244758;Müller;Lennja;2008;1.ZH.1811;LC Regensdorf;W;SUI;10.10.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
169;247288;Reichler;Ella;2008;1.ZH.1811;LC Regensdorf;W;SUI;25.04.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
178;252907;Witschi;Lisa;2008;1.ZH.1811;LC Regensdorf;W;SUI;13.10.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;X
182;256772;Bugmann;Selina;2008;1.ZH.1811;LC Regensdorf;W;SUI;24.10.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
329;245103;Lorenzo;Leonie Luana;2007;1.ZH.1811;LC Regensdorf;W;SUI;28.12.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;
17;176016;Baer;Irina;2007;1.ZH.1845;LV Albis;W;SUI;21.09.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
49;172494;Gallo;Marzia;2007;1.ZH.1845;LV Albis;W;SUI;12.08.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
52;246678;Grollimund;Annik;2008;1.ZH.1845;LV Albis;W;SUI;26.11.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
91;171970;Schuster;Joy;2007;1.ZH.1845;LV Albis;W;SUI;27.04.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
104;166339;Wärdell;Hanna;2008;1.ZH.1845;LV Albis;W;SUI;08.01.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
517;243983;Bühler;Alicia;2008;1.ZH.1822;LV Winterthur;W;SUI;19.09.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;
520;168121;Fierz;Tyra;2007;1.ZH.1822;LV Winterthur;W;SUI;04.02.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
524;248458;Gubler;Céline;2008;1.ZH.1822;LV Winterthur;W;SUI;15.06.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
525;171762;Hinderling;Jana;2007;1.ZH.1822;LV Winterthur;W;SUI;02.11.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;X
528;243979;Imafidon;Ronia;2008;1.ZH.1822;LV Winterthur;W;SUI;01.04.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
530;173228;Keel;Lena;2007;1.ZH.1822;LV Winterthur;W;SUI;28.01.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;;X
532;253632;Kifle;Nebyat;2008;1.ZH.1822;LV Winterthur;W;GER;17.12.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
538;251652;Mancuso;Giulia;2007;1.ZH.1822;LV Winterthur;W;SUI;03.09.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;
547;252012;Pfister;Linda;2008;1.ZH.1822;LV Winterthur;W;SUI;01.08.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;;X
549;243981;Rusova;Jana;2008;1.ZH.1822;LV Winterthur;W;CZE;26.04.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;;X
551;170240;Schnyder;Jacqueline;2008;1.ZH.1822;LV Winterthur;W;SUI;28.05.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
552;164856;Schnyder;Vanessa;2007;1.ZH.1822;LV Winterthur;W;SUI;22.01.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;X
566;255335;Dos Santos;Maria Vitoria;2008;1.ZH.1822;LV Winterthur;W;SUI;31.10.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
573;254757;Meissner;Neele;2008;1.ZH.1822;LV Winterthur;W;SUI;15.07.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;
613;258370;Züger;Michelle;2007;1.ZH.1822;LV Winterthur;W;SUI;10.10.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;X
923;173375;Gürtler;Anna;2007;1.ZH.1862;LA Wyland;W;SUI;25.01.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
926;173376;Lüthi;Nadja;2007;1.ZH.1862;LA Wyland;W;SUI;27.03.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;
927;173377;Maurer;Elena Lara;2007;1.ZH.1862;LA Wyland;W;SUI;26.07.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;;X
930;255073;Schulthess;Sanna;2008;1.ZH.1862;LA Wyland;W;SUI;03.08.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
943;258536;Zürcher;Anja;2008;1.ZH.1862;LA Wyland;W;SUI;31.12.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;;X
1 Anmeldenr Lizenznr Name Vorname Jahrgang Verein Club-Name Geschlecht Nationalitaet GebDat Bez Kategorie GruppeNr GruppeName Startzeit Bewerb Kanton KidID W1 W2 W3 W4
2 6 255982 Straube Tommy 2011 1.ZH.1828 LC Uster M SUI 15.11.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
3 8 256044 Haas Leandro 2011 1.ZH.1828 LC Uster M SUI 04.12.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
4 147 259257 In-Albon Mino 2012 1.ZH.1828 LC Uster M SUI 25.09.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X
5 240 259605 Leonhardt Julius 2011 1.ZH.1828 LC Uster M SUI 11.07.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
6 241 259499 Ackermann Vin 2012 1.ZH.1828 LC Uster M SUI 12.11.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X
7 242 259281 Salzmann Aaron 2011 1.ZH.1828 LC Uster M SUI 09.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
8 510 259609 Neumann Nemo 2011 1.ZH.1828 LC Uster M SUI 05.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
9 574 255495 Rüdt Marlon 2011 1.ZH.1822 LV Winterthur M SUI 15.10.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
10 576 255156 Simperl Marius 2011 1.ZH.1822 LV Winterthur M SUI 04.03.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
11 591 258937 Brügge Björn 2011 1.ZH.1822 LV Winterthur M GER 13.07.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X
12 598 258956 Jost Nicolas 2012 1.ZH.1822 LV Winterthur M SUI 16.08.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
13 600 258934 Lamprecht Maurus 2011 1.ZH.1822 LV Winterthur M SUI 23.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
14 1153 A:999898 Lüscher Rico 2012 1.ZH.1887 Turnverein Wiesendangen M SUI 03.01.2012 U12M 1 Gr. 1 U12M 10:15 4-K ZH X
15 1156 A:999896 Hofer Nevio 2011 1.ZH.1887 Turnverein Wiesendangen M SUI 10.07.2011 U12M 1 Gr. 1 U12M 10:15 4-K ZH X
16 650 257961 Grob Cyril 2011 1.ZH.1832 LV Zürcher Oberland M SUI 24.02.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
17 652 255086 Caflisch Livio 2011 1.ZH.1832 LV Zürcher Oberland M SUI 07.04.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
18 659 256648 Ruf Andri 2011 1.ZH.1832 LV Zürcher Oberland M SUI 08.07.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
19 662 259675 Steiner Eric 2012 1.ZH.1832 LV Zürcher Oberland M SUI 10.07.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
20 934 255070 Schmid Fabio 2011 1.ZH.1862 LA Wyland M SUI 28.01.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
21 852 259843 Weybora Florin 2012 1.ZH.1827 Leichtathletik-Club Dübendorf M AUT 06.05.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH
22 750 255308 Krebs Jonas 2011 1.ZH.1820 TV Dietlikon M SUI 10.09.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
23 404 256195 Ulli Florian 2012 1.ZH.1819 TV Kloten LA M SUI 10.09.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
24 697 259825 Figura Alberto 2011 1.ZH.1819 TV Kloten LA M SUI 20.09.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
25 738 A:999928 Baumgartner Tom 2011 1.ZH.1819 TV Kloten LA M SUI 01.11.2011 U12M 2 Gr. 2 U12M 10:20 4-K ZH X
26 338 256523 Wittel Jörn 2011 1.ZH.1871 TV Otelfingen M GER 07.02.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
27 342 259712 Schelbert Tim 2012 1.ZH.1871 TV Otelfingen M SUI 01.09.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
28 53 246679 Grond Dyah 2011 1.ZH.1845 LV Albis M SUI 28.08.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
29 94 255330 Stuckert Dennis 2011 1.ZH.1845 LV Albis M SUI 06.03.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
30 116 255710 Grabherr Dominic 2011 1.ZH.1845 LV Albis M SUI 07.06.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
31 122 255712 Nievergelt Flurin 2011 1.ZH.1845 LV Albis M SUI 28.03.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
32 123 255711 Palermo Domenico 2011 1.ZH.1845 LV Albis M SUI 03.06.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
33 134 256818 Basso Leo 2011 1.ZH.1845 LV Albis M SUI 12.10.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
34 303 253455 Schnidrig LEvin 2012 1.ZH.1845 LV Albis M SUI 16.02.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
35 308 259710 Rüegg Levin 2011 1.ZH.1845 LV Albis M SUI 05.08.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
36 309 259713 Ott Leano 2012 1.ZH.1845 LV Albis M SUI 25.10.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
37 321 255195 Zurbuchen Remo 2011 1.ZH.1811 LC Regensdorf M SUI 30.09.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
38 322 259072 Hongler Noah 2012 1.ZH.1811 LC Regensdorf M SUI 22.01.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
39 323 255196 Siegrist Fabrice 2012 1.ZH.1811 LC Regensdorf M SUI 16.02.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
40 581 256752 Maurer Johanna 2011 1.ZH.1822 LV Winterthur W SUI 18.06.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
41 582 255004 Popp Luzia 2011 1.ZH.1822 LV Winterthur W SUI 07.05.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
42 595 258952 Fröse Jasmin 2012 1.ZH.1822 LV Winterthur W SUI 22.02.2012 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
43 601 258939 Müller Anna 2011 1.ZH.1822 LV Winterthur W SUI 29.09.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
44 606 258954 Rebitzer Viktoria 2012 1.ZH.1822 LV Winterthur W SUI 15.12.2012 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
45 607 258940 Salzinger Joana 2011 1.ZH.1822 LV Winterthur W SUI 13.05.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
46 609 258942 Tauscher Malin 2012 1.ZH.1822 LV Winterthur W SUI 01.03.2012 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
47 610 258935 Üre Villoria Nelia 2011 1.ZH.1822 LV Winterthur W SUI 03.06.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
48 612 258930 Wilkens Elin 2011 1.ZH.1822 LV Winterthur W SUI 17.10.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
49 614 259545 Zinth Martha 2011 1.ZH.1822 LV Winterthur W GER 07.02.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
50 732 259837 Furter Jennifer 2011 1.ZH.1822 LV Winterthur W SUI 14.05.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
51 84 251478 Perks Lucia 2011 1.ZH.1845 LV Albis W SUI 08.06.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
52 117 253460 Gugerli Greta 2011 1.ZH.1845 LV Albis W SUI 16.09.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
53 119 249481 Meier Angelina 2011 1.ZH.1845 LV Albis W SUI 25.08.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
54 125 255708 Sangermano Lorena 2011 1.ZH.1845 LV Albis W SUI 18.06.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
55 130 250319 Cosabic Ilma 2011 1.ZH.1845 LV Albis W 99 26.12.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
56 131 256671 Kadriaj Alina 2011 1.ZH.1845 LV Albis W SUI 25.09.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
57 302 253462 Walter Elin 2012 1.ZH.1845 LV Albis W SUI 16.10.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
58 307 259711 Tutu Merle Nerina 2012 1.ZH.1845 LV Albis W SUI 29.01.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
59 393 259779 Zekic Alya 2012 1.ZH.1845 LV Albis W SUI 07.09.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
60 394 259777 Notarnicola Valentina 2011 1.ZH.1845 LV Albis W SUI 04.01.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
61 395 259776 Notarnicola Romina 2012 1.ZH.1845 LV Albis W SUI 09.04.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
62 396 259778 Nogler Ladina 2012 1.ZH.1845 LV Albis W SUI 06.11.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
63 744 259870 Spauwen Rahel 2012 1.ZH.1845 LV Albis W SUI 04.04.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
64 746 259872 Fabian Melina 2012 1.ZH.1845 LV Albis W SUI 07.03.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
65 138 258176 Van Elst Aniek 2012 1.ZH.1845 LV Albis W NED 14.07.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH
66 313 255203 Spottek Mia 2011 1.ZH.1811 LC Regensdorf W SUI 25.07.2011 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
67 314 255205 Boutiuc Scarlet 2011 1.ZH.1811 LC Regensdorf W SUI 21.01.2011 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
68 315 259073 Schweizer Ella 2012 1.ZH.1811 LC Regensdorf W SUI 31.03.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
69 316 255207 Wollscheid Zoe 2011 1.ZH.1811 LC Regensdorf W SUI 28.03.2011 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
70 317 259076 Desait Céline 2012 1.ZH.1811 LC Regensdorf W SUI 12.09.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
71 318 259077 Cuche Pauline 2012 1.ZH.1811 LC Regensdorf W SUI 09.07.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
72 333 256458 Burkhalter Paula 2011 1.ZH.1871 TV Otelfingen W SUI 03.07.2011 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
73 334 256459 Fort Elena 2011 1.ZH.1871 TV Otelfingen W SUI 04.02.2011 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X
74 340 259294 Glauser Soraya 2012 1.ZH.1871 TV Otelfingen W SUI 06.09.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
75 341 259295 Landolt Lisa 2012 1.ZH.1871 TV Otelfingen W SUI 07.12.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
76 639 253745 Scheurer Mya 2012 1.ZH.1832 LV Zürcher Oberland W SUI 05.02.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
77 647 256286 Wolf Lilli 2011 1.ZH.1832 LV Zürcher Oberland W SUI 17.01.2011 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
78 660 259405 Rauber Hannah 2012 1.ZH.1832 LV Zürcher Oberland W SUI 12.08.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
79 667 A:999937 Achermann Yana 2012 1.ZH.1832 LV Zürcher Oberland W SUI 15.09.2012 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X
80 668 A:999936 Heusser Ladina 2012 1.ZH.1832 LV Zürcher Oberland W SUI 19.05.2012 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X
81 670 A:999934 Knabenhans Anina 2011 1.ZH.1832 LV Zürcher Oberland W SUI 16.01.2011 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
82 672 A:999933 Zollinger Elina 2011 1.ZH.1832 LV Zürcher Oberland W SUI 03.05.2011 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
83 10 259383 Zwyssig Léanne Céline 2012 1.ZH.1828 LC Uster W SUI 02.06.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH
84 145 259280 Zwiker Leena 2012 1.ZH.1828 LC Uster W SUI 04.09.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
85 148 259247 Messikommer Lily 2012 1.ZH.1828 LC Uster W SUI 05.04.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
86 150 257003 Ziörjen Romina 2012 1.ZH.1828 LC Uster W SUI 03.08.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
87 151 256981 Schwarz Avania 2011 1.ZH.1828 LC Uster W SUI 10.09.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
88 269 259388 Müller Emma 2011 1.ZH.1828 LC Uster W SUI 08.08.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
89 928 249300 Maurer Kira Leila 2011 1.ZH.1862 LA Wyland W SUI 06.04.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
90 936 249299 Kälin Sanni 2011 1.ZH.1862 LA Wyland W SUI 07.03.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
91 942 259250 Frauenfelder Rina 2012 1.ZH.1862 LA Wyland W SUI 24.09.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
92 810 249203 Müller Alicia 2011 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 01.03.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
93 405 257439 Chiapparini Julia 2011 1.ZH.1819 TV Kloten LA W SUI 02.09.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
94 406 257481 Clerc Leonie 2011 1.ZH.1819 TV Kloten LA W SUI 10.03.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
95 407 258016 Koller Linnea 2011 1.ZH.1819 TV Kloten LA W SUI 09.08.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
96 411 A:999986 Signer Liya 2012 1.ZH.1819 TV Kloten LA W SUI 14.06.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
97 401 254172 Quartu Peace 2011 1.ZH.1819 TV Kloten LA W SUI 09.01.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH
98 696 259821 Ammann Shirin 2012 1.ZH.1819 TV Kloten LA W SUI 17.04.2012 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X X
99 698 259822 Barattini Anna 2012 1.ZH.1819 TV Kloten LA W ITA 30.05.2012 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X X
100 1144 A:999902 Milovanovic Lena 2012 1.ZH.1819 TV Kloten LA W SUI 09.03.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X X
101 1152 A:999900 Furrer Celia 2012 1.ZH.1887 Turnverein Wiesendangen W SUI 23.01.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
102 1154 A:999899 Binder Malea 2012 1.ZH.1887 Turnverein Wiesendangen W SUI 01.10.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
103 1155 A:999897 Furrer Rania 2011 1.ZH.1887 Turnverein Wiesendangen W SUI 27.08.2011 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
104 512 173725 Beranek-Chiu Noah 2009 1.ZH.1822 LV Winterthur M GER 21.12.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
105 526 251627 Homberger Tim Emerick 2009 1.ZH.1822 LV Winterthur M SUI 26.10.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
106 535 252659 Laib Luc 2009 1.ZH.1822 LV Winterthur M SUI 09.12.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
107 537 253900 Lerch Leon 2009 1.ZH.1822 LV Winterthur M SUI 21.05.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
108 546 252015 Ohlendorf Norman 2010 1.ZH.1822 LV Winterthur M GER 04.10.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
109 555 252009 Srikannan Santhosh 2010 1.ZH.1822 LV Winterthur M SUI 03.08.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
110 559 252008 van Seumeren Cornelius 2010 1.ZH.1822 LV Winterthur M SUI 08.12.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
111 564 173723 Wollnik Robin 2009 1.ZH.1822 LV Winterthur M GER 02.11.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
112 570 255829 Hug Matti 2009 1.ZH.1822 LV Winterthur M SUI 17.09.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
113 579 256756 Horisberger Levi 2009 1.ZH.1822 LV Winterthur M SUI 30.01.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
114 584 256757 Stähli Jonas 2009 1.ZH.1822 LV Winterthur M SUI 09.05.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
115 599 259157 Kromer Gian 2009 1.ZH.1822 LV Winterthur M SUI 20.07.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
116 642 176506 Vogt Marc 2009 1.ZH.1832 LV Zürcher Oberland M SUI 15.03.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X
117 645 254356 Züst Levin 2009 1.ZH.1832 LV Zürcher Oberland M SUI 09.01.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
118 646 255311 Gut Lenny 2009 1.ZH.1832 LV Zürcher Oberland M SUI 13.09.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
119 649 257960 Frauchiger Nelson 2010 1.ZH.1832 LV Zürcher Oberland M SUI 14.07.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
120 653 256716 Fussen Milo 2009 1.ZH.1832 LV Zürcher Oberland M SUI 22.09.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
121 657 256732 Lechner Mika 2009 1.ZH.1832 LV Zürcher Oberland M SUI 01.12.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
122 666 A:999938 Hess Jonas 2010 1.ZH.1832 LV Zürcher Oberland M SUI 13.04.2010 U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
123 938 256225 Merk Niklas 2009 1.ZH.1862 LA Wyland M SUI 10.03.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
124 940 255072 Stegemann Leon 2010 1.ZH.1862 LA Wyland M SUI 11.08.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
125 748 253122 Güler Eray 2010 1.ZH.1820 TV Dietlikon M SUI 23.01.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X
126 19 253118 Bengo-Oliveri Henry 2009 1.ZH.1845 LV Albis M UGA 01.01.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
127 28 249485 Brodda Henri Caspar 2010 1.ZH.1845 LV Albis M SUI 13.02.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X
128 69 253448 Kourpas Adam 2010 1.ZH.1845 LV Albis M GBR 03.10.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X
129 1172 A:999886 Nji Steve Mbeng 2010 1.ZH.1845 LV Albis M SUI 07.03.2010 U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X
130 95 247238 Tschochner Fabian 2010 1.ZH.1845 LV Albis M GER 08.11.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X
131 101 249483 Waldmeier Janis 2009 1.ZH.1845 LV Albis M SUI 28.04.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
132 794 245932 Kresken Tim 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 19.12.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH
133 811 171052 Müller Jan 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 16.08.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH
134 337 256456 Steinholtz Zachary 2009 1.ZH.1871 TV Otelfingen M SUI 06.05.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
135 403 255397 Wirz Navin 2009 1.ZH.1819 TV Kloten LA M SUI 21.08.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X
136 410 A:999989 Pepic Novak 2010 1.ZH.1819 TV Kloten LA M SUI 01.02.2010 U14M 12 Gr. 3 U14M 11:35 4-K ZH X
137 173 248706 Siegrist Joel 2009 1.ZH.1811 LC Regensdorf M SUI 17.07.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X
138 179 176199 Wilhelm Alejandro 2010 1.ZH.1811 LC Regensdorf M SUI 08.01.2010 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
139 183 259067 Döbeli Lukas 2010 1.ZH.1811 LC Regensdorf M SUI 27.02.2010 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
140 325 259085 Van der Heijden Alexander 2010 1.ZH.1811 LC Regensdorf M SUI 01.01.2010 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X X X
141 2 249353 Nesterak Tim Dennis 2009 1.ZH.1828 LC Uster M SUI 22.01.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
142 7 256742 Vischer Cédric 2009 1.ZH.1828 LC Uster M SUI 26.09.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X X
143 11 259349 Müller Carlo 2009 1.ZH.1828 LC Uster M SUI 26.11.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X X
144 1149 246337 Krüsi Benedikt 2009 1.ZH.1887 Turnverein Wiesendangen M SUI 23.06.2009 N U14M 13 Gr. 4 U14M 12:25 4-K ZH X
145 1158 A:999894 Binder Rouven 2010 1.ZH.1887 Turnverein Wiesendangen M SUI 21.02.2010 U14M 13 Gr. 4 U14M 12:25 4-K ZH X
146 1159 A:999893 Furrer Nino 2009 1.ZH.1887 Turnverein Wiesendangen M SUI 04.11.2009 U14M 13 Gr. 4 U14M 12:25 4-K ZH X
147 156 252908 Canzillon Kina 2009 1.ZH.1811 LC Regensdorf W FRA 17.07.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
148 158 255191 Favre-Bulle Gabriela 2009 1.ZH.1811 LC Regensdorf W SUI 24.08.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
149 161 253180 Heiderich Leonie 2010 1.ZH.1811 LC Regensdorf W SUI 20.09.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
150 162 255202 Hürzeler Noemi 2010 1.ZH.1811 LC Regensdorf W SUI 28.02.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X
151 165 255200 Mamais Sofia 2010 1.ZH.1811 LC Regensdorf W SUI 01.10.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
152 171 248719 Schildknecht Maude Vivienne 2009 1.ZH.1811 LC Regensdorf W SUI 30.08.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
153 172 253198 Schwedhelm Jula 2010 1.ZH.1811 LC Regensdorf W GER 23.09.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
154 175 252909 Suter Kisha 2009 1.ZH.1811 LC Regensdorf W SUI 08.04.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
155 176 253184 Thöni Lily Mia 2010 1.ZH.1811 LC Regensdorf W SUI 31.03.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
156 398 253588 Barattini Martina 2010 1.ZH.1819 TV Kloten LA W SUI 20.04.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
157 399 247793 Gläser Sarah 2009 1.ZH.1819 TV Kloten LA W SUI 27.04.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
158 402 255394 Ulli Céline 2010 1.ZH.1819 TV Kloten LA W SUI 08.09.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
159 515 248457 Bohn Hannah Luna 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
160 516 252007 Brügger Lenja 2010 1.ZH.1822 LV Winterthur W SUI 14.06.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
161 518 252017 Erny Liana 2010 1.ZH.1822 LV Winterthur W SUI 22.05.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X
162 519 173367 Facchinetti Elisa 2009 1.ZH.1822 LV Winterthur W SUI 14.12.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X
163 521 252144 Fiorucci Malena 2010 1.ZH.1822 LV Winterthur W SUI 08.06.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
164 541 252006 Meier Jael 2009 1.ZH.1822 LV Winterthur W SUI 30.04.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
165 542 252914 Mohn Jonna 2009 1.ZH.1822 LV Winterthur W SUI 28.07.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X
166 560 252660 Vock Marta 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
167 567 254758 Egli Somea 2009 1.ZH.1822 LV Winterthur W SUI 02.10.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
168 569 254856 Gürtler Elin 2010 1.ZH.1822 LV Winterthur W SUI 12.02.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
169 572 255079 Lehner Lea 2010 1.ZH.1822 LV Winterthur W SUI 14.04.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
170 586 257488 Heeb Leandra 2009 1.ZH.1822 LV Winterthur W SUI 19.09.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
171 589 258933 Banyoczki Cya 2010 1.ZH.1822 LV Winterthur W SUI 09.01.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
172 590 258925 Bitter Anjali Maya 2009 1.ZH.1822 LV Winterthur W GER 25.04.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
173 597 258938 Joost Lina 2010 1.ZH.1822 LV Winterthur W SUI 22.09.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
174 603 258936 Pahud Sari 2010 1.ZH.1822 LV Winterthur W SUI 25.07.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
175 917 252164 Aeschimann Lina 2010 1.ZH.1862 LA Wyland W SUI 01.10.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
176 919 249306 Berger Ayana 2009 1.ZH.1862 LA Wyland W SUI 03.08.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X
177 924 249308 Kälin Mia 2009 1.ZH.1862 LA Wyland W SUI 13.07.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
178 925 253798 Klemenz Amélie 2010 1.ZH.1862 LA Wyland W SUI 19.08.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
179 931 244702 Stoll Caroline 2009 1.ZH.1862 LA Wyland W SUI 17.03.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X
180 937 255069 Merk Malin 2010 1.ZH.1862 LA Wyland W SUI 07.11.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
181 939 255068 Prister Lene 2010 1.ZH.1862 LA Wyland W SUI 03.05.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X
182 920 249304 Griesser Lenja 2010 1.ZH.1862 LA Wyland W SUI 02.02.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
183 35 247789 Chechele Mara 2010 1.ZH.1845 LV Albis W SUI 23.07.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
184 48 172495 Gallo Giada 2009 1.ZH.1845 LV Albis W SUI 02.07.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
185 55 174574 Gugerli Carla 2009 1.ZH.1845 LV Albis W SUI 09.11.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
186 57 249487 Häfliger Elin 2009 1.ZH.1845 LV Albis W SUI 14.07.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X
187 85 246691 Plüss Livia 2010 1.ZH.1845 LV Albis W SUI 19.06.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
188 93 253451 Stalder Alina 2010 1.ZH.1845 LV Albis W SUI 12.04.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
189 96 246694 Utzinger Larissa 2010 1.ZH.1845 LV Albis W SUI 02.03.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
190 102 249484 Walter Michelle 2010 1.ZH.1845 LV Albis W SUI 22.09.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X
191 107 174573 Wicki Ciara 2010 1.ZH.1845 LV Albis W SUI 14.11.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
192 330 248960 Beeler Sasha 2009 1.ZH.1871 TV Otelfingen W SUI 09.04.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
193 332 256457 Burkhalter Hanna 2010 1.ZH.1871 TV Otelfingen W SUI 02.01.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
194 335 256520 Glauser Lavinia 2009 1.ZH.1871 TV Otelfingen W SUI 23.07.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
195 108 250321 Wicki Serena 2009 1.ZH.1845 LV Albis W SUI 29.08.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
196 120 255704 Moser Aline 2010 1.ZH.1845 LV Albis W SUI 06.12.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X
197 312 259717 Haldemann Lina 2009 1.ZH.1845 LV Albis W SUI 14.10.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
198 743 259871 Steinke Lara 2010 1.ZH.1845 LV Albis W GER 21.04.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
199 79 246687 Mutti Mara 2010 1.ZH.1845 LV Albis W SUI 06.10.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH
200 629 251296 Auer Laura 2009 1.ZH.1832 LV Zürcher Oberland W SUI 25.08.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
201 631 245549 Keiser Angelina 2009 1.ZH.1832 LV Zürcher Oberland W SUI 11.03.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X
202 656 256638 Kühnis Maris 2010 1.ZH.1832 LV Zürcher Oberland W SUI 01.07.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X
203 661 259594 Debrunner Janina 2010 1.ZH.1832 LV Zürcher Oberland W 30.04.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X
204 663 259674 Steiner Jana 2010 1.ZH.1832 LV Zürcher Oberland W SUI 01.08.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
205 665 A:999939 Widmer Johanna 2009 1.ZH.1832 LV Zürcher Oberland W SUI 23.09.2009 U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
206 671 A:999940 De Vylder Aisha 2010 1.ZH.1832 LV Zürcher Oberland W SUI 04.04.2010 U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
207 3 253820 Schmid Léane 2010 1.ZH.1828 LC Uster W SUI 30.06.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
208 5 251505 Yapi Laeticia 2010 1.ZH.1828 LC Uster W SUI 26.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X
209 9 256986 Bertolini Flavia 2010 1.ZH.1828 LC Uster W SUI 14.10.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
210 139 253123 Toller Liv 2010 1.ZH.1828 LC Uster W SUI 17.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
211 141 256714 Rrahmani Elsa 2009 1.ZH.1828 LC Uster W KOS 04.07.2009 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X
212 755 254473 Barletta Myrhiam 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W ITA 04.03.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH
213 797 245934 Kunz Sophie 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 18.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH
214 830 245937 Tamas Elena 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 08.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH
215 831 174616 Tresch Oliana 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 02.09.2009 N U14W 19 Gr. 6 U14W 16:15 4-K ZH
216 843 257391 Obradovic Marija 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W CRO 23.12.2009 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH
217 1148 246255 Sigg Elin 2009 1.ZH.1887 Turnverein Wiesendangen W SUI 07.07.2009 N U14W 19 Gr. 6 U14W 16:15 4-K ZH X
218 1157 A:999895 Pavic Nikolina 2010 1.ZH.1887 Turnverein Wiesendangen W SUI 25.05.2010 U14W 19 Gr. 6 U14W 16:15 4-K ZH X
219 514 176205 Bisang Jeremias 2007 1.ZH.1822 LV Winterthur M SUI 05.09.2007 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
220 523 253924 Graber Henry 2008 1.ZH.1822 LV Winterthur M SUI 26.11.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
221 529 175424 Käser Silvan 2008 1.ZH.1822 LV Winterthur M SUI 22.04.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
222 536 248541 Lamprecht Corvin 2008 1.ZH.1822 LV Winterthur M SUI 30.06.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
223 553 253631 Serhani Rachid 2007 1.ZH.1822 LV Winterthur M SUI 15.11.2007 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
224 556 255336 Stähli Tobias 2007 1.ZH.1822 LV Winterthur M SUI 03.06.2007 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
225 733 259644 Weibel Lionel 2008 1.ZH.1822 LV Winterthur M SUI 04.09.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
226 734 A:999930 Magalhaes Jarrel Damien 2008 1.ZH.1822 LV Winterthur M SUI 12.02.2008 U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
227 793 161330 Klaus Michael 2008 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 08.04.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
228 918 249309 Aeschimann Phineas 2008 1.ZH.1862 LA Wyland M SUI 12.08.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
229 921 244706 Griesser Nino 2008 1.ZH.1862 LA Wyland M SUI 28.10.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
230 929 176171 Schneeberger Moritz 2008 1.ZH.1862 LA Wyland M SUI 04.09.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
231 1150 174247 Krüsi Julian 2007 1.ZH.1887 Turnverein Wiesendangen M SUI 17.05.2007 N U16M 20 Gr. 1 U16M 10:00 4-K ZH X
232 1151 246340 Schmid Andrin 2007 1.ZH.1887 Turnverein Wiesendangen M SUI 30.05.2007 N U16M 20 Gr. 1 U16M 10:00 4-K ZH X
233 152 173598 Beyeler Levin 2008 1.ZH.1811 LC Regensdorf M SUI 13.04.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X
234 166 165311 Marcantonio Fabio 2007 1.ZH.1811 LC Regensdorf M SUI 14.02.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
235 328 254705 Radosarljevic Luka 2008 1.ZH.1811 LC Regensdorf M SUI 01.12.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
236 475 244746 Totaro Luca 2008 1.ZH.1828 LC Uster M SUI 07.10.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
237 1099 173387 Zisler Constantin 2007 1.ZH.1828 LC Uster M AUT 12.07.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X
238 75 169996 Moret Timo 2008 1.ZH.1845 LV Albis M SUI 01.05.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
239 97 166336 Van der Aar Lars 2007 1.ZH.1845 LV Albis M NED 12.04.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
240 636 166007 Pfister Marc 2007 1.ZH.1832 LV Zürcher Oberland M SUI 20.02.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
241 654 256684 Keller Severin 2008 1.ZH.1832 LV Zürcher Oberland M SUI 31.08.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X
242 749 244803 Häberli Tom Luca 2007 1.ZH.1820 TV Dietlikon M SUI 25.08.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
243 753 256868 Koch Fabian 2008 1.ZH.1820 TV Dietlikon M SUI 07.02.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
244 339 257441 Uebelhart Jannis 2008 1.ZH.1871 TV Otelfingen M SUI 13.05.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
245 760 253964 Brasse Leni 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 19.02.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
246 786 171044 Heusser Marla 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 09.07.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X
247 788 164024 Imhof Fabienne 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 30.03.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
248 814 244806 Niederberger Selina 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 22.02.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
249 822 173780 Rutz Linda 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 30.07.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X
250 826 163411 Schmid Desirée 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 17.08.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X
251 758 163400 Bieder Laura 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 22.11.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH
252 791 244686 Kerényi Lea 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 21.03.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH
253 343 244115 Adel Victoria 2007 1.ZH.1828 LC Uster W IRL 30.08.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
254 637 246924 Ramsauer Mia 2008 1.ZH.1832 LV Zürcher Oberland W SUI 06.10.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X
255 153 248712 Biaggi Jael 2007 1.ZH.1811 LC Regensdorf W SUI 13.04.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X
256 159 248716 Fuchser Fiona 2008 1.ZH.1811 LC Regensdorf W SUI 08.05.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
257 168 244758 Müller Lennja 2008 1.ZH.1811 LC Regensdorf W SUI 10.10.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
258 169 247288 Reichler Ella 2008 1.ZH.1811 LC Regensdorf W SUI 25.04.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
259 178 252907 Witschi Lisa 2008 1.ZH.1811 LC Regensdorf W SUI 13.10.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X
260 182 256772 Bugmann Selina 2008 1.ZH.1811 LC Regensdorf W SUI 24.10.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
261 329 245103 Lorenzo Leonie Luana 2007 1.ZH.1811 LC Regensdorf W SUI 28.12.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X
262 17 176016 Baer Irina 2007 1.ZH.1845 LV Albis W SUI 21.09.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
263 49 172494 Gallo Marzia 2007 1.ZH.1845 LV Albis W SUI 12.08.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
264 52 246678 Grollimund Annik 2008 1.ZH.1845 LV Albis W SUI 26.11.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
265 91 171970 Schuster Joy 2007 1.ZH.1845 LV Albis W SUI 27.04.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
266 104 166339 Wärdell Hanna 2008 1.ZH.1845 LV Albis W SUI 08.01.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
267 517 243983 Bühler Alicia 2008 1.ZH.1822 LV Winterthur W SUI 19.09.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X
268 520 168121 Fierz Tyra 2007 1.ZH.1822 LV Winterthur W SUI 04.02.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
269 524 248458 Gubler Céline 2008 1.ZH.1822 LV Winterthur W SUI 15.06.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
270 525 171762 Hinderling Jana 2007 1.ZH.1822 LV Winterthur W SUI 02.11.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X
271 528 243979 Imafidon Ronia 2008 1.ZH.1822 LV Winterthur W SUI 01.04.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
272 530 173228 Keel Lena 2007 1.ZH.1822 LV Winterthur W SUI 28.01.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X
273 532 253632 Kifle Nebyat 2008 1.ZH.1822 LV Winterthur W GER 17.12.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
274 538 251652 Mancuso Giulia 2007 1.ZH.1822 LV Winterthur W SUI 03.09.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X
275 547 252012 Pfister Linda 2008 1.ZH.1822 LV Winterthur W SUI 01.08.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X
276 549 243981 Rusova Jana 2008 1.ZH.1822 LV Winterthur W CZE 26.04.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X
277 551 170240 Schnyder Jacqueline 2008 1.ZH.1822 LV Winterthur W SUI 28.05.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
278 552 164856 Schnyder Vanessa 2007 1.ZH.1822 LV Winterthur W SUI 22.01.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
279 566 255335 Dos Santos Maria Vitoria 2008 1.ZH.1822 LV Winterthur W SUI 31.10.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
280 573 254757 Meissner Neele 2008 1.ZH.1822 LV Winterthur W SUI 15.07.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
281 613 258370 Züger Michelle 2007 1.ZH.1822 LV Winterthur W SUI 10.10.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
282 923 173375 Gürtler Anna 2007 1.ZH.1862 LA Wyland W SUI 25.01.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
283 926 173376 Lüthi Nadja 2007 1.ZH.1862 LA Wyland W SUI 27.03.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X
284 927 173377 Maurer Elena Lara 2007 1.ZH.1862 LA Wyland W SUI 26.07.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
285 930 255073 Schulthess Sanna 2008 1.ZH.1862 LA Wyland W SUI 03.08.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
286 943 258536 Zürcher Anja 2008 1.ZH.1862 LA Wyland W SUI 31.12.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X

@ -1,286 +0,0 @@
Anmeldenr;Lizenznr;Name;Vorname;Jahrgang;Verein;Club-Name;Geschlecht;Nationalitaet;GebDat;Bez;Kategorie;GruppeNr;GruppeName;Startzeit;Bewerb;Kanton;KidID;W1;W2;W3;W4
6;255982;Straube;Tommy;2011;1.ZH.1828;LC Uster;M;SUI;15.11.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
8;256044;Haas;Leandro;2011;1.ZH.1828;LC Uster;M;SUI;04.12.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
147;259257;In-Albon;Mino;2012;1.ZH.1828;LC Uster;M;SUI;25.09.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;X
240;259605;Leonhardt;Julius;2011;1.ZH.1828;LC Uster;M;SUI;11.07.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
241;259499;Ackermann;Vin;2012;1.ZH.1828;LC Uster;M;SUI;12.11.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;X
242;259281;Salzmann;Aaron;2011;1.ZH.1828;LC Uster;M;SUI;09.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
510;259609;Neumann;Nemo;2011;1.ZH.1828;LC Uster;M;SUI;05.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
574;255495;Rüdt;Marlon;2011;1.ZH.1822;LV Winterthur;M;SUI;15.10.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;X
576;255156;Simperl;Marius;2011;1.ZH.1822;LV Winterthur;M;SUI;04.03.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
591;258937;Brügge;Björn;2011;1.ZH.1822;LV Winterthur;M;GER;13.07.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
598;258956;Jost;Nicolas;2012;1.ZH.1822;LV Winterthur;M;SUI;16.08.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
600;258934;Lamprecht;Maurus;2011;1.ZH.1822;LV Winterthur;M;SUI;23.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;;
1153;A:999898;Lüscher;Rico;2012;1.ZH.1887;Turnverein Wiesendangen;M;SUI;03.01.2012;;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
1156;A:999896;Hofer;Nevio;2011;1.ZH.1887;Turnverein Wiesendangen;M;SUI;10.07.2011;;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
650;257961;Grob;Cyril;2011;1.ZH.1832;LV Zürcher Oberland;M;SUI;24.02.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;
652;255086;Caflisch;Livio;2011;1.ZH.1832;LV Zürcher Oberland;M;SUI;07.04.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
659;256648;Ruf;Andri;2011;1.ZH.1832;LV Zürcher Oberland;M;SUI;08.07.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
662;259675;Steiner;Eric;2012;1.ZH.1832;LV Zürcher Oberland;M;SUI;10.07.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
934;255070;Schmid;Fabio;2011;1.ZH.1862;LA Wyland;M;SUI;28.01.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;X;
1038;259843;Weybora;Florin;2012;1.ZH.1827;Leichtathletik-Club Dübendorf;M;AUT;06.05.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;X;X
750;255308;Krebs;Jonas;2011;1.ZH.1820;TV Dietlikon;M;SUI;10.09.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
404;256195;Ulli;Florian;2012;1.ZH.1819;TV Kloten LA;M;SUI;10.09.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;;
697;259825;Figura;Alberto;2011;1.ZH.1819;TV Kloten LA;M;SUI;20.09.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
738;A:999928;Baumgartner;Tom;2011;1.ZH.1819;TV Kloten LA;M;SUI;01.11.2011;;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;;
338;256523;Wittel;Jörn;2011;1.ZH.1871;TV Otelfingen;M;GER;07.02.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
342;259712;Schelbert;Tim;2012;1.ZH.1871;TV Otelfingen;M;SUI;01.09.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
53;246679;Grond;Dyah;2011;1.ZH.1845;LV Albis;M;SUI;28.08.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
94;255330;Stuckert;Dennis;2011;1.ZH.1845;LV Albis;M;SUI;06.03.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
116;255710;Grabherr;Dominic;2011;1.ZH.1845;LV Albis;M;SUI;07.06.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
122;255712;Nievergelt;Flurin;2011;1.ZH.1845;LV Albis;M;SUI;28.03.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
123;255711;Palermo;Domenico;2011;1.ZH.1845;LV Albis;M;SUI;03.06.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
134;256818;Basso;Leo;2011;1.ZH.1845;LV Albis;M;SUI;12.10.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
303;253455;Schnidrig;LEvin;2012;1.ZH.1845;LV Albis;M;SUI;16.02.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
308;259710;Rüegg;Levin;2011;1.ZH.1845;LV Albis;M;SUI;05.08.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
309;259713;Ott;Leano;2012;1.ZH.1845;LV Albis;M;SUI;25.10.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
321;255195;Zurbuchen;Remo;2011;1.ZH.1811;LC Regensdorf;M;SUI;30.09.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
322;259072;Hongler;Noah;2012;1.ZH.1811;LC Regensdorf;M;SUI;22.01.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
323;255196;Siegrist;Fabrice;2012;1.ZH.1811;LC Regensdorf;M;SUI;16.02.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
581;256752;Maurer;Johanna;2011;1.ZH.1822;LV Winterthur;W;SUI;18.06.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
582;255004;Popp;Luzia;2011;1.ZH.1822;LV Winterthur;W;SUI;07.05.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
595;258952;Fröse;Jasmin;2012;1.ZH.1822;LV Winterthur;W;SUI;22.02.2012;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
601;258939;Müller;Anna;2011;1.ZH.1822;LV Winterthur;W;SUI;29.09.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
606;258954;Rebitzer;Viktoria;2012;1.ZH.1822;LV Winterthur;W;SUI;15.12.2012;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
607;258940;Salzinger;Joana;2011;1.ZH.1822;LV Winterthur;W;SUI;13.05.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
609;258942;Tauscher;Malin;2012;1.ZH.1822;LV Winterthur;W;SUI;01.03.2012;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
610;258935;Üre Villoria;Nelia;2011;1.ZH.1822;LV Winterthur;W;SUI;03.06.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;;X
612;258930;Wilkens;Elin;2011;1.ZH.1822;LV Winterthur;W;SUI;17.10.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
614;259545;Zinth;Martha;2011;1.ZH.1822;LV Winterthur;W;GER;07.02.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
732;259837;Furter;Jennifer;2011;1.ZH.1822;LV Winterthur;W;SUI;14.05.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
84;251478;Perks;Lucia;2011;1.ZH.1845;LV Albis;W;SUI;08.06.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;;X;X
117;253460;Gugerli;Greta;2011;1.ZH.1845;LV Albis;W;SUI;16.09.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
119;249481;Meier;Angelina;2011;1.ZH.1845;LV Albis;W;SUI;25.08.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
125;255708;Sangermano;Lorena;2011;1.ZH.1845;LV Albis;W;SUI;18.06.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
130;250319;Cosabic;Ilma;2011;1.ZH.1845;LV Albis;W;99;26.12.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
131;256671;Kadriaj;Alina;2011;1.ZH.1845;LV Albis;W;SUI;25.09.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;;X;X
302;253462;Walter;Elin;2012;1.ZH.1845;LV Albis;W;SUI;16.10.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;;X;X
307;259711;Tutu;Merle Nerina;2012;1.ZH.1845;LV Albis;W;SUI;29.01.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
393;259779;Zekic;Alya;2012;1.ZH.1845;LV Albis;W;SUI;07.09.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;;X
394;259777;Notarnicola;Valentina;2011;1.ZH.1845;LV Albis;W;SUI;04.01.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
395;259776;Notarnicola;Romina;2012;1.ZH.1845;LV Albis;W;SUI;09.04.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
396;259778;Nogler;Ladina;2012;1.ZH.1845;LV Albis;W;SUI;06.11.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
744;259870;Spauwen;Rahel;2012;1.ZH.1845;LV Albis;W;SUI;04.04.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
746;259872;Fabian;Melina;2012;1.ZH.1845;LV Albis;W;SUI;07.03.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
1107;258176;Van Elst;Aniek;2012;1.ZH.1845;LV Albis;W;NED;14.07.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;
313;255203;Spottek;Mia;2011;1.ZH.1811;LC Regensdorf;W;SUI;25.07.2011;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
314;255205;Boutiuc;Scarlet;2011;1.ZH.1811;LC Regensdorf;W;SUI;21.01.2011;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
315;259073;Schweizer;Ella;2012;1.ZH.1811;LC Regensdorf;W;SUI;31.03.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
316;255207;Wollscheid;Zoe;2011;1.ZH.1811;LC Regensdorf;W;SUI;28.03.2011;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
317;259076;Desait;Céline;2012;1.ZH.1811;LC Regensdorf;W;SUI;12.09.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
318;259077;Cuche;Pauline;2012;1.ZH.1811;LC Regensdorf;W;SUI;09.07.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
333;256458;Burkhalter;Paula;2011;1.ZH.1871;TV Otelfingen;W;SUI;03.07.2011;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
334;256459;Fort;Elena;2011;1.ZH.1871;TV Otelfingen;W;SUI;04.02.2011;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;;;
340;259294;Glauser;Soraya;2012;1.ZH.1871;TV Otelfingen;W;SUI;06.09.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
341;259295;Landolt;Lisa;2012;1.ZH.1871;TV Otelfingen;W;SUI;07.12.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
639;253745;Scheurer;Mya;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;05.02.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
647;256286;Wolf;Lilli;2011;1.ZH.1832;LV Zürcher Oberland;W;SUI;17.01.2011;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
660;259405;Rauber;Hannah;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;12.08.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
667;A:999937;Achermann;Yana;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;15.09.2012;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;;X;
668;A:999936;Heusser;Ladina;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;19.05.2012;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;;X;X
670;A:999934;Knabenhans;Anina;2011;1.ZH.1832;LV Zürcher Oberland;W;SUI;16.01.2011;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
672;A:999933;Zollinger;Elina;2011;1.ZH.1832;LV Zürcher Oberland;W;SUI;03.05.2011;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
144;259383;Zwyssig;Léanne Céline;2012;1.ZH.1828;LC Uster;W;SUI;02.06.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;;
145;259280;Zwiker;Leena;2012;1.ZH.1828;LC Uster;W;SUI;04.09.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;
148;259247;Messikommer;Lily;2012;1.ZH.1828;LC Uster;W;SUI;05.04.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;X
150;257003;Ziörjen;Romina;2012;1.ZH.1828;LC Uster;W;SUI;03.08.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
151;256981;Schwarz;Avania;2011;1.ZH.1828;LC Uster;W;SUI;10.09.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;
269;259388;Müller;Emma;2011;1.ZH.1828;LC Uster;W;SUI;08.08.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;
928;249300;Maurer;Kira Leila;2011;1.ZH.1862;LA Wyland;W;SUI;06.04.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;;X
936;249299;Kälin;Sanni;2011;1.ZH.1862;LA Wyland;W;SUI;07.03.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;X
942;259250;Frauenfelder;Rina;2012;1.ZH.1862;LA Wyland;W;SUI;24.09.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;
999;249203;Müller;Alicia;2011;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;01.03.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
405;257439;Chiapparini;Julia;2011;1.ZH.1819;TV Kloten LA;W;SUI;02.09.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
406;257481;Clerc;Leonie;2011;1.ZH.1819;TV Kloten LA;W;SUI;10.03.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
407;258016;Koller;Linnea;2011;1.ZH.1819;TV Kloten LA;W;SUI;09.08.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
411;A:999986;Signer;Liya;2012;1.ZH.1819;TV Kloten LA;W;SUI;14.06.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
473;254172;Quartu;Peace;2011;1.ZH.1819;TV Kloten LA;W;SUI;09.01.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
696;259821;Ammann;Shirin;2012;1.ZH.1819;TV Kloten LA;W;SUI;17.04.2012;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;X;
698;259822;Barattini;Anna;2012;1.ZH.1819;TV Kloten LA;W;ITA;30.05.2012;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;X;;
1144;A:999902;Milovanovic;Lena;2012;1.ZH.1819;TV Kloten LA;W;SUI;09.03.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;X;;
1152;A:999900;Furrer;Celia;2012;1.ZH.1887;Turnverein Wiesendangen;W;SUI;23.01.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
1154;A:999899;Binder;Malea;2012;1.ZH.1887;Turnverein Wiesendangen;W;SUI;01.10.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
1155;A:999897;Furrer;Rania;2011;1.ZH.1887;Turnverein Wiesendangen;W;SUI;27.08.2011;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
512;173725;Beranek-Chiu;Noah;2009;1.ZH.1822;LV Winterthur;M;GER;21.12.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
526;251627;Homberger;Tim Emerick;2009;1.ZH.1822;LV Winterthur;M;SUI;26.10.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
535;252659;Laib;Luc;2009;1.ZH.1822;LV Winterthur;M;SUI;09.12.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
537;253900;Lerch;Leon;2009;1.ZH.1822;LV Winterthur;M;SUI;21.05.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
546;252015;Ohlendorf;Norman;2010;1.ZH.1822;LV Winterthur;M;GER;04.10.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
555;252009;Srikannan;Santhosh;2010;1.ZH.1822;LV Winterthur;M;SUI;03.08.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;;X
559;252008;van Seumeren;Cornelius;2010;1.ZH.1822;LV Winterthur;M;SUI;08.12.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;;X
564;173723;Wollnik;Robin;2009;1.ZH.1822;LV Winterthur;M;GER;02.11.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
570;255829;Hug;Matti;2009;1.ZH.1822;LV Winterthur;M;SUI;17.09.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
579;256756;Horisberger;Levi;2009;1.ZH.1822;LV Winterthur;M;SUI;30.01.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
584;256757;Stähli;Jonas;2009;1.ZH.1822;LV Winterthur;M;SUI;09.05.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
599;259157;Kromer;Gian;2009;1.ZH.1822;LV Winterthur;M;SUI;20.07.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
642;176506;Vogt;Marc;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;15.03.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;;;
645;254356;Züst;Levin;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;09.01.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
646;255311;Gut;Lenny;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;13.09.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
649;257960;Frauchiger;Nelson;2010;1.ZH.1832;LV Zürcher Oberland;M;SUI;14.07.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
653;256716;Fussen;Milo;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;22.09.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;X
657;256732;Lechner;Mika;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;01.12.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
666;A:999938;Hess;Jonas;2010;1.ZH.1832;LV Zürcher Oberland;M;SUI;13.04.2010;;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;X
938;256225;Merk;Niklas;2009;1.ZH.1862;LA Wyland;M;SUI;10.03.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
940;255072;Stegemann;Leon;2010;1.ZH.1862;LA Wyland;M;SUI;11.08.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;
748;253122;Güler;Eray;2010;1.ZH.1820;TV Dietlikon;M;SUI;23.01.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;
19;253118;Bengo-Oliveri;Henry;2009;1.ZH.1845;LV Albis;M;UGA;01.01.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
28;249485;Brodda;Henri Caspar;2010;1.ZH.1845;LV Albis;M;SUI;13.02.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;;X
69;253448;Kourpas;Adam;2010;1.ZH.1845;LV Albis;M;GBR;03.10.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;X;X
1175;A:999886;Nji;Steve Mbeng;2010;1.ZH.1845;LV Albis;M;CMR;07.03.2010;;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
95;247238;Tschochner;Fabian;2010;1.ZH.1845;LV Albis;M;GER;08.11.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;X;X
101;249483;Waldmeier;Janis;2009;1.ZH.1845;LV Albis;M;SUI;28.04.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
1088;245932;Kresken;Tim;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;19.12.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
1090;171052;Müller;Jan;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;16.08.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
337;256456;Steinholtz;Zachary;2009;1.ZH.1871;TV Otelfingen;M;SUI;06.05.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
403;255397;Wirz;Navin;2009;1.ZH.1819;TV Kloten LA;M;SUI;21.08.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;;
699;A:999989;Pepic;Novak;2010;1.ZH.1819;TV Kloten LA;M;SUI;01.02.2010;;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;;
173;248706;Siegrist;Joel;2009;1.ZH.1811;LC Regensdorf;M;SUI;17.07.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
179;176199;Wilhelm;Alejandro;2010;1.ZH.1811;LC Regensdorf;M;SUI;08.01.2010;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;X;
183;259067;Döbeli;Lukas;2010;1.ZH.1811;LC Regensdorf;M;SUI;27.02.2010;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;X;
325;259085;Van der Heijden;Alexander;2010;1.ZH.1811;LC Regensdorf;M;SUI;01.01.2010;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;X;X
2;249353;Nesterak;Tim Dennis;2009;1.ZH.1828;LC Uster;M;SUI;22.01.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;;
7;256742;Vischer;Cédric;2009;1.ZH.1828;LC Uster;M;SUI;26.09.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;;X
13;259349;Müller;Carlo;2009;1.ZH.1828;LC Uster;M;SUI;26.11.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;X;
1149;246337;Krüsi;Benedikt;2009;1.ZH.1887;Turnverein Wiesendangen;M;SUI;23.06.2009;N;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
1158;A:999894;Binder;Rouven;2010;1.ZH.1887;Turnverein Wiesendangen;M;SUI;21.02.2010;;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
1159;A:999893;Furrer;Nino;2009;1.ZH.1887;Turnverein Wiesendangen;M;SUI;04.11.2009;;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
156;252908;Canzillon;Kina;2009;1.ZH.1811;LC Regensdorf;W;FRA;17.07.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
158;255191;Favre-Bulle;Gabriela;2009;1.ZH.1811;LC Regensdorf;W;SUI;24.08.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
161;253180;Heiderich;Leonie;2010;1.ZH.1811;LC Regensdorf;W;SUI;20.09.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;
162;255202;Hürzeler;Noemi;2010;1.ZH.1811;LC Regensdorf;W;SUI;28.02.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;X
165;255200;Mamais;Sofia;2010;1.ZH.1811;LC Regensdorf;W;SUI;01.10.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
171;248719;Schildknecht;Maude Vivienne;2009;1.ZH.1811;LC Regensdorf;W;SUI;30.08.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
172;253198;Schwedhelm;Jula;2010;1.ZH.1811;LC Regensdorf;W;GER;23.09.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;
175;252909;Suter;Kisha;2009;1.ZH.1811;LC Regensdorf;W;SUI;08.04.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
176;253184;Thöni;Lily Mia;2010;1.ZH.1811;LC Regensdorf;W;SUI;31.03.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;
398;253588;Barattini;Martina;2010;1.ZH.1819;TV Kloten LA;W;SUI;20.04.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;;
399;247793;Gläser;Sarah;2009;1.ZH.1819;TV Kloten LA;W;SUI;27.04.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;;
402;255394;Ulli;Céline;2010;1.ZH.1819;TV Kloten LA;W;SUI;08.09.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;;
515;248457;Bohn;Hannah Luna;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
516;252007;Brügger;Lenja;2010;1.ZH.1822;LV Winterthur;W;SUI;14.06.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
518;252017;Erny;Liana;2010;1.ZH.1822;LV Winterthur;W;SUI;22.05.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;;X;X
519;173367;Facchinetti;Elisa;2009;1.ZH.1822;LV Winterthur;W;SUI;14.12.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;;X
521;252144;Fiorucci;Malena;2010;1.ZH.1822;LV Winterthur;W;SUI;08.06.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
541;252006;Meier;Jael;2009;1.ZH.1822;LV Winterthur;W;SUI;30.04.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
542;252914;Mohn;Jonna;2009;1.ZH.1822;LV Winterthur;W;SUI;28.07.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;;;X
560;252660;Vock;Marta;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
567;254758;Egli;Somea;2009;1.ZH.1822;LV Winterthur;W;SUI;02.10.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
569;254856;Gürtler;Elin;2010;1.ZH.1822;LV Winterthur;W;SUI;12.02.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
572;255079;Lehner;Lea;2010;1.ZH.1822;LV Winterthur;W;SUI;14.04.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
586;257488;Heeb;Leandra;2009;1.ZH.1822;LV Winterthur;W;SUI;19.09.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
589;258933;Banyoczki;Cya;2010;1.ZH.1822;LV Winterthur;W;SUI;09.01.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
590;258925;Bitter;Anjali Maya;2009;1.ZH.1822;LV Winterthur;W;GER;25.04.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
597;258938;Joost;Lina;2010;1.ZH.1822;LV Winterthur;W;SUI;22.09.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
603;258936;Pahud;Sari;2010;1.ZH.1822;LV Winterthur;W;SUI;25.07.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
917;252164;Aeschimann;Lina;2010;1.ZH.1862;LA Wyland;W;SUI;01.10.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
919;249306;Berger;Ayana;2009;1.ZH.1862;LA Wyland;W;SUI;03.08.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;;X;
924;249308;Kälin;Mia;2009;1.ZH.1862;LA Wyland;W;SUI;13.07.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
925;253798;Klemenz;Amélie;2010;1.ZH.1862;LA Wyland;W;SUI;19.08.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
931;244702;Stoll;Caroline;2009;1.ZH.1862;LA Wyland;W;SUI;17.03.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;;;X
937;255069;Merk;Malin;2010;1.ZH.1862;LA Wyland;W;SUI;07.11.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
939;255068;Prister;Lene;2010;1.ZH.1862;LA Wyland;W;SUI;03.05.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;;X;
920;249304;Griesser;Lenja;2010;1.ZH.1862;LA Wyland;W;SUI;02.02.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
35;247789;Chechele;Mara;2010;1.ZH.1845;LV Albis;W;SUI;23.07.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
48;172495;Gallo;Giada;2009;1.ZH.1845;LV Albis;W;SUI;02.07.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
55;174574;Gugerli;Carla;2009;1.ZH.1845;LV Albis;W;SUI;09.11.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
57;249487;Häfliger;Elin;2009;1.ZH.1845;LV Albis;W;SUI;14.07.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;;X;X
85;246691;Plüss;Livia;2010;1.ZH.1845;LV Albis;W;SUI;19.06.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
93;253451;Stalder;Alina;2010;1.ZH.1845;LV Albis;W;SUI;12.04.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
96;246694;Utzinger;Larissa;2010;1.ZH.1845;LV Albis;W;SUI;02.03.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
102;249484;Walter;Michelle;2010;1.ZH.1845;LV Albis;W;SUI;22.09.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;;X;X
107;174573;Wicki;Ciara;2010;1.ZH.1845;LV Albis;W;SUI;14.11.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
330;248960;Beeler;Sasha;2009;1.ZH.1871;TV Otelfingen;W;SUI;09.04.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
332;256457;Burkhalter;Hanna;2010;1.ZH.1871;TV Otelfingen;W;SUI;02.01.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
335;256520;Glauser;Lavinia;2009;1.ZH.1871;TV Otelfingen;W;SUI;23.07.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
108;250321;Wicki;Serena;2009;1.ZH.1845;LV Albis;W;SUI;29.08.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
120;255704;Moser;Aline;2010;1.ZH.1845;LV Albis;W;SUI;06.12.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;
312;259717;Haldemann;Lina;2009;1.ZH.1845;LV Albis;W;SUI;14.10.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
743;259871;Steinke;Lara;2010;1.ZH.1845;LV Albis;W;GER;21.04.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
1108;246687;Mutti;Mara;2010;1.ZH.1845;LV Albis;W;SUI;06.10.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
629;251296;Auer;Laura;2009;1.ZH.1832;LV Zürcher Oberland;W;SUI;25.08.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
631;245549;Keiser;Angelina;2009;1.ZH.1832;LV Zürcher Oberland;W;SUI;11.03.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;;;
656;256638;Kühnis;Maris;2010;1.ZH.1832;LV Zürcher Oberland;W;SUI;01.07.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;;X
661;259594;Debrunner;Janina;2010;1.ZH.1832;LV Zürcher Oberland;W; ;30.04.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;;X;X
663;259674;Steiner;Jana;2010;1.ZH.1832;LV Zürcher Oberland;W;SUI;01.08.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
665;A:999939;Widmer;Johanna;2009;1.ZH.1832;LV Zürcher Oberland;W;SUI;23.09.2009;;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
671;A:999940;De Vylder;Aisha;2010;1.ZH.1832;LV Zürcher Oberland;W;SUI;04.04.2010;;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
3;253820;Schmid;Léane;2010;1.ZH.1828;LC Uster;W;SUI;30.06.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
5;251505;Yapi;Laeticia;2010;1.ZH.1828;LC Uster;W;SUI;26.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;X;X
9;256986;Bertolini;Flavia;2010;1.ZH.1828;LC Uster;W;SUI;14.10.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
139;253123;Toller;Liv;2010;1.ZH.1828;LC Uster;W;SUI;17.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
141;256714;Rrahmani;Elsa;2009;1.ZH.1828;LC Uster;W;KOS;04.07.2009;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;X;
1084;254473;Barletta;Myrhiam;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;ITA;04.03.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;;
1089;245934;Kunz;Sophie;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;18.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;X;
1092;245937;Tamas;Elena;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;08.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
1093;174616;Tresch;Oliana;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;02.09.2009;N;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;;
1096;257391;Obradovic;Marija;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;CRO;23.12.2009;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
1148;246255;Sigg;Elin;2009;1.ZH.1887;Turnverein Wiesendangen;W;SUI;07.07.2009;N;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;;
1157;A:999895;Pavic;Nikolina;2010;1.ZH.1887;Turnverein Wiesendangen;W;SUI;25.05.2010;;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;;
514;176205;Bisang;Jeremias;2007;1.ZH.1822;LV Winterthur;M;SUI;05.09.2007;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;X
523;253924;Graber;Henry;2008;1.ZH.1822;LV Winterthur;M;SUI;26.11.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
529;175424;Käser;Silvan;2008;1.ZH.1822;LV Winterthur;M;SUI;22.04.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;X
536;248541;Lamprecht;Corvin;2008;1.ZH.1822;LV Winterthur;M;SUI;30.06.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;X
553;253631;Serhani;Rachid;2007;1.ZH.1822;LV Winterthur;M;SUI;15.11.2007;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
556;255336;Stähli;Tobias;2007;1.ZH.1822;LV Winterthur;M;SUI;03.06.2007;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
733;259644;Weibel;Lionel;2008;1.ZH.1822;LV Winterthur;M;SUI;04.09.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
734;A:999930;Magalhaes;Jarrel Damien;2008;1.ZH.1822;LV Winterthur;M;SUI;12.02.2008;;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
793;161330;Klaus;Michael;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;08.04.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
918;249309;Aeschimann;Phineas;2008;1.ZH.1862;LA Wyland;M;SUI;12.08.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
921;244706;Griesser;Nino;2008;1.ZH.1862;LA Wyland;M;SUI;28.10.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
929;176171;Schneeberger;Moritz;2008;1.ZH.1862;LA Wyland;M;SUI;04.09.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
1150;174247;Krüsi;Julian;2007;1.ZH.1887;Turnverein Wiesendangen;M;SUI;17.05.2007;N;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;;;
1151;246340;Schmid;Andrin;2007;1.ZH.1887;Turnverein Wiesendangen;M;SUI;30.05.2007;N;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;;;
152;173598;Beyeler;Levin;2008;1.ZH.1811;LC Regensdorf;M;SUI;13.04.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;;X;
166;165311;Marcantonio;Fabio;2007;1.ZH.1811;LC Regensdorf;M;SUI;14.02.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
328;254705;Radosarljevic;Luka;2008;1.ZH.1811;LC Regensdorf;M;SUI;01.12.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
475;244746;Totaro;Luca;2008;1.ZH.1828;LC Uster;M;SUI;07.10.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
1099;173387;Zisler;Constantin;2007;1.ZH.1828;LC Uster;M;AUT;12.07.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;;;
75;169996;Moret;Timo;2008;1.ZH.1845;LV Albis;M;SUI;01.05.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
97;166336;Van der Aar;Lars;2007;1.ZH.1845;LV Albis;M;NED;12.04.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
636;166007;Pfister;Marc;2007;1.ZH.1832;LV Zürcher Oberland;M;SUI;20.02.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
654;256684;Keller;Severin;2008;1.ZH.1832;LV Zürcher Oberland;M;SUI;31.08.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;;;
749;244803;Häberli;Tom Luca;2007;1.ZH.1820;TV Dietlikon;M;SUI;25.08.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
753;256868;Koch;Fabian;2008;1.ZH.1820;TV Dietlikon;M;SUI;07.02.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
339;257441;Uebelhart;Jannis;2008;1.ZH.1871;TV Otelfingen;M;SUI;13.05.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
760;253964;Brasse;Leni;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;19.02.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
786;171044;Heusser;Marla;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;09.07.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
788;164024;Imhof;Fabienne;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;30.03.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
814;244806;Niederberger;Selina;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;22.02.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
822;173780;Rutz;Linda;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;30.07.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;;
826;163411;Schmid;Desirée;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;17.08.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;;X;X
1102;163400;Bieder;Laura;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;22.11.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
1105;244686;Kerényi;Lea;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;21.03.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
343;244115;Adel;Victoria;2007;1.ZH.1828;LC Uster;W;IRL;30.08.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
637;246924;Ramsauer;Mia;2008;1.ZH.1832;LV Zürcher Oberland;W;SUI;06.10.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;;X;X
153;248712;Biaggi;Jael;2007;1.ZH.1811;LC Regensdorf;W;SUI;13.04.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;X
159;248716;Fuchser;Fiona;2008;1.ZH.1811;LC Regensdorf;W;SUI;08.05.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
168;244758;Müller;Lennja;2008;1.ZH.1811;LC Regensdorf;W;SUI;10.10.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
169;247288;Reichler;Ella;2008;1.ZH.1811;LC Regensdorf;W;SUI;25.04.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
178;252907;Witschi;Lisa;2008;1.ZH.1811;LC Regensdorf;W;SUI;13.10.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;X
182;256772;Bugmann;Selina;2008;1.ZH.1811;LC Regensdorf;W;SUI;24.10.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
329;245103;Lorenzo;Leonie Luana;2007;1.ZH.1811;LC Regensdorf;W;SUI;28.12.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;
17;176016;Baer;Irina;2007;1.ZH.1845;LV Albis;W;SUI;21.09.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
49;172494;Gallo;Marzia;2007;1.ZH.1845;LV Albis;W;SUI;12.08.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
52;246678;Grollimund;Annik;2008;1.ZH.1845;LV Albis;W;SUI;26.11.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
91;171970;Schuster;Joy;2007;1.ZH.1845;LV Albis;W;SUI;27.04.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
104;166339;Wärdell;Hanna;2008;1.ZH.1845;LV Albis;W;SUI;08.01.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
517;243983;Bühler;Alicia;2008;1.ZH.1822;LV Winterthur;W;SUI;19.09.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;
520;168121;Fierz;Tyra;2007;1.ZH.1822;LV Winterthur;W;SUI;04.02.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
524;248458;Gubler;Céline;2008;1.ZH.1822;LV Winterthur;W;SUI;15.06.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
525;171762;Hinderling;Jana;2007;1.ZH.1822;LV Winterthur;W;SUI;02.11.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;X
528;243979;Imafidon;Ronia;2008;1.ZH.1822;LV Winterthur;W;SUI;01.04.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
530;173228;Keel;Lena;2007;1.ZH.1822;LV Winterthur;W;SUI;28.01.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;;X
532;253632;Kifle;Nebyat;2008;1.ZH.1822;LV Winterthur;W;GER;17.12.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
538;251652;Mancuso;Giulia;2007;1.ZH.1822;LV Winterthur;W;SUI;03.09.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;
547;252012;Pfister;Linda;2008;1.ZH.1822;LV Winterthur;W;SUI;01.08.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;;X
549;243981;Rusova;Jana;2008;1.ZH.1822;LV Winterthur;W;CZE;26.04.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;;X
551;170240;Schnyder;Jacqueline;2008;1.ZH.1822;LV Winterthur;W;SUI;28.05.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
552;164856;Schnyder;Vanessa;2007;1.ZH.1822;LV Winterthur;W;SUI;22.01.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;X
566;255335;Dos Santos;Maria Vitoria;2008;1.ZH.1822;LV Winterthur;W;SUI;31.10.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
573;254757;Meissner;Neele;2008;1.ZH.1822;LV Winterthur;W;SUI;15.07.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;
613;258370;Züger;Michelle;2007;1.ZH.1822;LV Winterthur;W;SUI;10.10.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;X
923;173375;Gürtler;Anna;2007;1.ZH.1862;LA Wyland;W;SUI;25.01.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
926;173376;Lüthi;Nadja;2007;1.ZH.1862;LA Wyland;W;SUI;27.03.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;
927;173377;Maurer;Elena Lara;2007;1.ZH.1862;LA Wyland;W;SUI;26.07.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;;X
930;255073;Schulthess;Sanna;2008;1.ZH.1862;LA Wyland;W;SUI;03.08.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
943;258536;Zürcher;Anja;2008;1.ZH.1862;LA Wyland;W;SUI;31.12.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;;X
1 Anmeldenr Lizenznr Name Vorname Jahrgang Verein Club-Name Geschlecht Nationalitaet GebDat Bez Kategorie GruppeNr GruppeName Startzeit Bewerb Kanton KidID W1 W2 W3 W4
2 6 255982 Straube Tommy 2011 1.ZH.1828 LC Uster M SUI 15.11.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
3 8 256044 Haas Leandro 2011 1.ZH.1828 LC Uster M SUI 04.12.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
4 147 259257 In-Albon Mino 2012 1.ZH.1828 LC Uster M SUI 25.09.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X
5 240 259605 Leonhardt Julius 2011 1.ZH.1828 LC Uster M SUI 11.07.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
6 241 259499 Ackermann Vin 2012 1.ZH.1828 LC Uster M SUI 12.11.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X
7 242 259281 Salzmann Aaron 2011 1.ZH.1828 LC Uster M SUI 09.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
8 510 259609 Neumann Nemo 2011 1.ZH.1828 LC Uster M SUI 05.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
9 574 255495 Rüdt Marlon 2011 1.ZH.1822 LV Winterthur M SUI 15.10.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
10 576 255156 Simperl Marius 2011 1.ZH.1822 LV Winterthur M SUI 04.03.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
11 591 258937 Brügge Björn 2011 1.ZH.1822 LV Winterthur M GER 13.07.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X
12 598 258956 Jost Nicolas 2012 1.ZH.1822 LV Winterthur M SUI 16.08.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
13 600 258934 Lamprecht Maurus 2011 1.ZH.1822 LV Winterthur M SUI 23.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
14 1153 A:999898 Lüscher Rico 2012 1.ZH.1887 Turnverein Wiesendangen M SUI 03.01.2012 U12M 1 Gr. 1 U12M 10:15 4-K ZH X
15 1156 A:999896 Hofer Nevio 2011 1.ZH.1887 Turnverein Wiesendangen M SUI 10.07.2011 U12M 1 Gr. 1 U12M 10:15 4-K ZH X
16 650 257961 Grob Cyril 2011 1.ZH.1832 LV Zürcher Oberland M SUI 24.02.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
17 652 255086 Caflisch Livio 2011 1.ZH.1832 LV Zürcher Oberland M SUI 07.04.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
18 659 256648 Ruf Andri 2011 1.ZH.1832 LV Zürcher Oberland M SUI 08.07.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
19 662 259675 Steiner Eric 2012 1.ZH.1832 LV Zürcher Oberland M SUI 10.07.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
20 934 255070 Schmid Fabio 2011 1.ZH.1862 LA Wyland M SUI 28.01.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
21 1038 259843 Weybora Florin 2012 1.ZH.1827 Leichtathletik-Club Dübendorf M AUT 06.05.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
22 750 255308 Krebs Jonas 2011 1.ZH.1820 TV Dietlikon M SUI 10.09.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
23 404 256195 Ulli Florian 2012 1.ZH.1819 TV Kloten LA M SUI 10.09.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
24 697 259825 Figura Alberto 2011 1.ZH.1819 TV Kloten LA M SUI 20.09.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
25 738 A:999928 Baumgartner Tom 2011 1.ZH.1819 TV Kloten LA M SUI 01.11.2011 U12M 2 Gr. 2 U12M 10:20 4-K ZH X
26 338 256523 Wittel Jörn 2011 1.ZH.1871 TV Otelfingen M GER 07.02.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
27 342 259712 Schelbert Tim 2012 1.ZH.1871 TV Otelfingen M SUI 01.09.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
28 53 246679 Grond Dyah 2011 1.ZH.1845 LV Albis M SUI 28.08.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
29 94 255330 Stuckert Dennis 2011 1.ZH.1845 LV Albis M SUI 06.03.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
30 116 255710 Grabherr Dominic 2011 1.ZH.1845 LV Albis M SUI 07.06.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
31 122 255712 Nievergelt Flurin 2011 1.ZH.1845 LV Albis M SUI 28.03.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
32 123 255711 Palermo Domenico 2011 1.ZH.1845 LV Albis M SUI 03.06.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
33 134 256818 Basso Leo 2011 1.ZH.1845 LV Albis M SUI 12.10.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
34 303 253455 Schnidrig LEvin 2012 1.ZH.1845 LV Albis M SUI 16.02.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
35 308 259710 Rüegg Levin 2011 1.ZH.1845 LV Albis M SUI 05.08.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
36 309 259713 Ott Leano 2012 1.ZH.1845 LV Albis M SUI 25.10.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
37 321 255195 Zurbuchen Remo 2011 1.ZH.1811 LC Regensdorf M SUI 30.09.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
38 322 259072 Hongler Noah 2012 1.ZH.1811 LC Regensdorf M SUI 22.01.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
39 323 255196 Siegrist Fabrice 2012 1.ZH.1811 LC Regensdorf M SUI 16.02.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
40 581 256752 Maurer Johanna 2011 1.ZH.1822 LV Winterthur W SUI 18.06.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
41 582 255004 Popp Luzia 2011 1.ZH.1822 LV Winterthur W SUI 07.05.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
42 595 258952 Fröse Jasmin 2012 1.ZH.1822 LV Winterthur W SUI 22.02.2012 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
43 601 258939 Müller Anna 2011 1.ZH.1822 LV Winterthur W SUI 29.09.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
44 606 258954 Rebitzer Viktoria 2012 1.ZH.1822 LV Winterthur W SUI 15.12.2012 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
45 607 258940 Salzinger Joana 2011 1.ZH.1822 LV Winterthur W SUI 13.05.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
46 609 258942 Tauscher Malin 2012 1.ZH.1822 LV Winterthur W SUI 01.03.2012 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
47 610 258935 Üre Villoria Nelia 2011 1.ZH.1822 LV Winterthur W SUI 03.06.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
48 612 258930 Wilkens Elin 2011 1.ZH.1822 LV Winterthur W SUI 17.10.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
49 614 259545 Zinth Martha 2011 1.ZH.1822 LV Winterthur W GER 07.02.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
50 732 259837 Furter Jennifer 2011 1.ZH.1822 LV Winterthur W SUI 14.05.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
51 84 251478 Perks Lucia 2011 1.ZH.1845 LV Albis W SUI 08.06.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
52 117 253460 Gugerli Greta 2011 1.ZH.1845 LV Albis W SUI 16.09.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
53 119 249481 Meier Angelina 2011 1.ZH.1845 LV Albis W SUI 25.08.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
54 125 255708 Sangermano Lorena 2011 1.ZH.1845 LV Albis W SUI 18.06.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
55 130 250319 Cosabic Ilma 2011 1.ZH.1845 LV Albis W 99 26.12.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
56 131 256671 Kadriaj Alina 2011 1.ZH.1845 LV Albis W SUI 25.09.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
57 302 253462 Walter Elin 2012 1.ZH.1845 LV Albis W SUI 16.10.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
58 307 259711 Tutu Merle Nerina 2012 1.ZH.1845 LV Albis W SUI 29.01.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
59 393 259779 Zekic Alya 2012 1.ZH.1845 LV Albis W SUI 07.09.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
60 394 259777 Notarnicola Valentina 2011 1.ZH.1845 LV Albis W SUI 04.01.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
61 395 259776 Notarnicola Romina 2012 1.ZH.1845 LV Albis W SUI 09.04.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
62 396 259778 Nogler Ladina 2012 1.ZH.1845 LV Albis W SUI 06.11.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
63 744 259870 Spauwen Rahel 2012 1.ZH.1845 LV Albis W SUI 04.04.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
64 746 259872 Fabian Melina 2012 1.ZH.1845 LV Albis W SUI 07.03.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
65 1107 258176 Van Elst Aniek 2012 1.ZH.1845 LV Albis W NED 14.07.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X
66 313 255203 Spottek Mia 2011 1.ZH.1811 LC Regensdorf W SUI 25.07.2011 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
67 314 255205 Boutiuc Scarlet 2011 1.ZH.1811 LC Regensdorf W SUI 21.01.2011 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
68 315 259073 Schweizer Ella 2012 1.ZH.1811 LC Regensdorf W SUI 31.03.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
69 316 255207 Wollscheid Zoe 2011 1.ZH.1811 LC Regensdorf W SUI 28.03.2011 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
70 317 259076 Desait Céline 2012 1.ZH.1811 LC Regensdorf W SUI 12.09.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
71 318 259077 Cuche Pauline 2012 1.ZH.1811 LC Regensdorf W SUI 09.07.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
72 333 256458 Burkhalter Paula 2011 1.ZH.1871 TV Otelfingen W SUI 03.07.2011 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
73 334 256459 Fort Elena 2011 1.ZH.1871 TV Otelfingen W SUI 04.02.2011 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X
74 340 259294 Glauser Soraya 2012 1.ZH.1871 TV Otelfingen W SUI 06.09.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
75 341 259295 Landolt Lisa 2012 1.ZH.1871 TV Otelfingen W SUI 07.12.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
76 639 253745 Scheurer Mya 2012 1.ZH.1832 LV Zürcher Oberland W SUI 05.02.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
77 647 256286 Wolf Lilli 2011 1.ZH.1832 LV Zürcher Oberland W SUI 17.01.2011 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
78 660 259405 Rauber Hannah 2012 1.ZH.1832 LV Zürcher Oberland W SUI 12.08.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
79 667 A:999937 Achermann Yana 2012 1.ZH.1832 LV Zürcher Oberland W SUI 15.09.2012 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X
80 668 A:999936 Heusser Ladina 2012 1.ZH.1832 LV Zürcher Oberland W SUI 19.05.2012 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X
81 670 A:999934 Knabenhans Anina 2011 1.ZH.1832 LV Zürcher Oberland W SUI 16.01.2011 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
82 672 A:999933 Zollinger Elina 2011 1.ZH.1832 LV Zürcher Oberland W SUI 03.05.2011 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
83 144 259383 Zwyssig Léanne Céline 2012 1.ZH.1828 LC Uster W SUI 02.06.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
84 145 259280 Zwiker Leena 2012 1.ZH.1828 LC Uster W SUI 04.09.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
85 148 259247 Messikommer Lily 2012 1.ZH.1828 LC Uster W SUI 05.04.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
86 150 257003 Ziörjen Romina 2012 1.ZH.1828 LC Uster W SUI 03.08.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
87 151 256981 Schwarz Avania 2011 1.ZH.1828 LC Uster W SUI 10.09.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
88 269 259388 Müller Emma 2011 1.ZH.1828 LC Uster W SUI 08.08.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
89 928 249300 Maurer Kira Leila 2011 1.ZH.1862 LA Wyland W SUI 06.04.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
90 936 249299 Kälin Sanni 2011 1.ZH.1862 LA Wyland W SUI 07.03.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
91 942 259250 Frauenfelder Rina 2012 1.ZH.1862 LA Wyland W SUI 24.09.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
92 999 249203 Müller Alicia 2011 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 01.03.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
93 405 257439 Chiapparini Julia 2011 1.ZH.1819 TV Kloten LA W SUI 02.09.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
94 406 257481 Clerc Leonie 2011 1.ZH.1819 TV Kloten LA W SUI 10.03.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
95 407 258016 Koller Linnea 2011 1.ZH.1819 TV Kloten LA W SUI 09.08.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
96 411 A:999986 Signer Liya 2012 1.ZH.1819 TV Kloten LA W SUI 14.06.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
97 473 254172 Quartu Peace 2011 1.ZH.1819 TV Kloten LA W SUI 09.01.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
98 696 259821 Ammann Shirin 2012 1.ZH.1819 TV Kloten LA W SUI 17.04.2012 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X X
99 698 259822 Barattini Anna 2012 1.ZH.1819 TV Kloten LA W ITA 30.05.2012 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X X
100 1144 A:999902 Milovanovic Lena 2012 1.ZH.1819 TV Kloten LA W SUI 09.03.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X X
101 1152 A:999900 Furrer Celia 2012 1.ZH.1887 Turnverein Wiesendangen W SUI 23.01.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
102 1154 A:999899 Binder Malea 2012 1.ZH.1887 Turnverein Wiesendangen W SUI 01.10.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
103 1155 A:999897 Furrer Rania 2011 1.ZH.1887 Turnverein Wiesendangen W SUI 27.08.2011 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
104 512 173725 Beranek-Chiu Noah 2009 1.ZH.1822 LV Winterthur M GER 21.12.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
105 526 251627 Homberger Tim Emerick 2009 1.ZH.1822 LV Winterthur M SUI 26.10.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
106 535 252659 Laib Luc 2009 1.ZH.1822 LV Winterthur M SUI 09.12.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
107 537 253900 Lerch Leon 2009 1.ZH.1822 LV Winterthur M SUI 21.05.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
108 546 252015 Ohlendorf Norman 2010 1.ZH.1822 LV Winterthur M GER 04.10.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
109 555 252009 Srikannan Santhosh 2010 1.ZH.1822 LV Winterthur M SUI 03.08.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
110 559 252008 van Seumeren Cornelius 2010 1.ZH.1822 LV Winterthur M SUI 08.12.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
111 564 173723 Wollnik Robin 2009 1.ZH.1822 LV Winterthur M GER 02.11.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
112 570 255829 Hug Matti 2009 1.ZH.1822 LV Winterthur M SUI 17.09.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
113 579 256756 Horisberger Levi 2009 1.ZH.1822 LV Winterthur M SUI 30.01.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
114 584 256757 Stähli Jonas 2009 1.ZH.1822 LV Winterthur M SUI 09.05.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
115 599 259157 Kromer Gian 2009 1.ZH.1822 LV Winterthur M SUI 20.07.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
116 642 176506 Vogt Marc 2009 1.ZH.1832 LV Zürcher Oberland M SUI 15.03.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X
117 645 254356 Züst Levin 2009 1.ZH.1832 LV Zürcher Oberland M SUI 09.01.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
118 646 255311 Gut Lenny 2009 1.ZH.1832 LV Zürcher Oberland M SUI 13.09.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
119 649 257960 Frauchiger Nelson 2010 1.ZH.1832 LV Zürcher Oberland M SUI 14.07.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
120 653 256716 Fussen Milo 2009 1.ZH.1832 LV Zürcher Oberland M SUI 22.09.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
121 657 256732 Lechner Mika 2009 1.ZH.1832 LV Zürcher Oberland M SUI 01.12.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
122 666 A:999938 Hess Jonas 2010 1.ZH.1832 LV Zürcher Oberland M SUI 13.04.2010 U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
123 938 256225 Merk Niklas 2009 1.ZH.1862 LA Wyland M SUI 10.03.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
124 940 255072 Stegemann Leon 2010 1.ZH.1862 LA Wyland M SUI 11.08.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
125 748 253122 Güler Eray 2010 1.ZH.1820 TV Dietlikon M SUI 23.01.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X
126 19 253118 Bengo-Oliveri Henry 2009 1.ZH.1845 LV Albis M UGA 01.01.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
127 28 249485 Brodda Henri Caspar 2010 1.ZH.1845 LV Albis M SUI 13.02.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X
128 69 253448 Kourpas Adam 2010 1.ZH.1845 LV Albis M GBR 03.10.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X
129 1175 A:999886 Nji Steve Mbeng 2010 1.ZH.1845 LV Albis M CMR 07.03.2010 U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
130 95 247238 Tschochner Fabian 2010 1.ZH.1845 LV Albis M GER 08.11.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X
131 101 249483 Waldmeier Janis 2009 1.ZH.1845 LV Albis M SUI 28.04.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
132 1088 245932 Kresken Tim 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 19.12.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
133 1090 171052 Müller Jan 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 16.08.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
134 337 256456 Steinholtz Zachary 2009 1.ZH.1871 TV Otelfingen M SUI 06.05.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
135 403 255397 Wirz Navin 2009 1.ZH.1819 TV Kloten LA M SUI 21.08.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X
136 699 A:999989 Pepic Novak 2010 1.ZH.1819 TV Kloten LA M SUI 01.02.2010 U14M 12 Gr. 3 U14M 11:35 4-K ZH X
137 173 248706 Siegrist Joel 2009 1.ZH.1811 LC Regensdorf M SUI 17.07.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X
138 179 176199 Wilhelm Alejandro 2010 1.ZH.1811 LC Regensdorf M SUI 08.01.2010 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
139 183 259067 Döbeli Lukas 2010 1.ZH.1811 LC Regensdorf M SUI 27.02.2010 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
140 325 259085 Van der Heijden Alexander 2010 1.ZH.1811 LC Regensdorf M SUI 01.01.2010 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X X X
141 2 249353 Nesterak Tim Dennis 2009 1.ZH.1828 LC Uster M SUI 22.01.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
142 7 256742 Vischer Cédric 2009 1.ZH.1828 LC Uster M SUI 26.09.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X X
143 13 259349 Müller Carlo 2009 1.ZH.1828 LC Uster M SUI 26.11.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
144 1149 246337 Krüsi Benedikt 2009 1.ZH.1887 Turnverein Wiesendangen M SUI 23.06.2009 N U14M 13 Gr. 4 U14M 12:25 4-K ZH X
145 1158 A:999894 Binder Rouven 2010 1.ZH.1887 Turnverein Wiesendangen M SUI 21.02.2010 U14M 13 Gr. 4 U14M 12:25 4-K ZH X
146 1159 A:999893 Furrer Nino 2009 1.ZH.1887 Turnverein Wiesendangen M SUI 04.11.2009 U14M 13 Gr. 4 U14M 12:25 4-K ZH X
147 156 252908 Canzillon Kina 2009 1.ZH.1811 LC Regensdorf W FRA 17.07.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
148 158 255191 Favre-Bulle Gabriela 2009 1.ZH.1811 LC Regensdorf W SUI 24.08.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
149 161 253180 Heiderich Leonie 2010 1.ZH.1811 LC Regensdorf W SUI 20.09.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
150 162 255202 Hürzeler Noemi 2010 1.ZH.1811 LC Regensdorf W SUI 28.02.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X
151 165 255200 Mamais Sofia 2010 1.ZH.1811 LC Regensdorf W SUI 01.10.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
152 171 248719 Schildknecht Maude Vivienne 2009 1.ZH.1811 LC Regensdorf W SUI 30.08.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
153 172 253198 Schwedhelm Jula 2010 1.ZH.1811 LC Regensdorf W GER 23.09.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
154 175 252909 Suter Kisha 2009 1.ZH.1811 LC Regensdorf W SUI 08.04.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
155 176 253184 Thöni Lily Mia 2010 1.ZH.1811 LC Regensdorf W SUI 31.03.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
156 398 253588 Barattini Martina 2010 1.ZH.1819 TV Kloten LA W SUI 20.04.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
157 399 247793 Gläser Sarah 2009 1.ZH.1819 TV Kloten LA W SUI 27.04.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
158 402 255394 Ulli Céline 2010 1.ZH.1819 TV Kloten LA W SUI 08.09.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
159 515 248457 Bohn Hannah Luna 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
160 516 252007 Brügger Lenja 2010 1.ZH.1822 LV Winterthur W SUI 14.06.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
161 518 252017 Erny Liana 2010 1.ZH.1822 LV Winterthur W SUI 22.05.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X
162 519 173367 Facchinetti Elisa 2009 1.ZH.1822 LV Winterthur W SUI 14.12.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X
163 521 252144 Fiorucci Malena 2010 1.ZH.1822 LV Winterthur W SUI 08.06.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
164 541 252006 Meier Jael 2009 1.ZH.1822 LV Winterthur W SUI 30.04.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
165 542 252914 Mohn Jonna 2009 1.ZH.1822 LV Winterthur W SUI 28.07.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X
166 560 252660 Vock Marta 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
167 567 254758 Egli Somea 2009 1.ZH.1822 LV Winterthur W SUI 02.10.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
168 569 254856 Gürtler Elin 2010 1.ZH.1822 LV Winterthur W SUI 12.02.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
169 572 255079 Lehner Lea 2010 1.ZH.1822 LV Winterthur W SUI 14.04.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
170 586 257488 Heeb Leandra 2009 1.ZH.1822 LV Winterthur W SUI 19.09.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
171 589 258933 Banyoczki Cya 2010 1.ZH.1822 LV Winterthur W SUI 09.01.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
172 590 258925 Bitter Anjali Maya 2009 1.ZH.1822 LV Winterthur W GER 25.04.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
173 597 258938 Joost Lina 2010 1.ZH.1822 LV Winterthur W SUI 22.09.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
174 603 258936 Pahud Sari 2010 1.ZH.1822 LV Winterthur W SUI 25.07.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
175 917 252164 Aeschimann Lina 2010 1.ZH.1862 LA Wyland W SUI 01.10.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
176 919 249306 Berger Ayana 2009 1.ZH.1862 LA Wyland W SUI 03.08.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X
177 924 249308 Kälin Mia 2009 1.ZH.1862 LA Wyland W SUI 13.07.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
178 925 253798 Klemenz Amélie 2010 1.ZH.1862 LA Wyland W SUI 19.08.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
179 931 244702 Stoll Caroline 2009 1.ZH.1862 LA Wyland W SUI 17.03.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X
180 937 255069 Merk Malin 2010 1.ZH.1862 LA Wyland W SUI 07.11.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
181 939 255068 Prister Lene 2010 1.ZH.1862 LA Wyland W SUI 03.05.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X
182 920 249304 Griesser Lenja 2010 1.ZH.1862 LA Wyland W SUI 02.02.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
183 35 247789 Chechele Mara 2010 1.ZH.1845 LV Albis W SUI 23.07.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
184 48 172495 Gallo Giada 2009 1.ZH.1845 LV Albis W SUI 02.07.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
185 55 174574 Gugerli Carla 2009 1.ZH.1845 LV Albis W SUI 09.11.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
186 57 249487 Häfliger Elin 2009 1.ZH.1845 LV Albis W SUI 14.07.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X
187 85 246691 Plüss Livia 2010 1.ZH.1845 LV Albis W SUI 19.06.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
188 93 253451 Stalder Alina 2010 1.ZH.1845 LV Albis W SUI 12.04.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
189 96 246694 Utzinger Larissa 2010 1.ZH.1845 LV Albis W SUI 02.03.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
190 102 249484 Walter Michelle 2010 1.ZH.1845 LV Albis W SUI 22.09.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X
191 107 174573 Wicki Ciara 2010 1.ZH.1845 LV Albis W SUI 14.11.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
192 330 248960 Beeler Sasha 2009 1.ZH.1871 TV Otelfingen W SUI 09.04.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
193 332 256457 Burkhalter Hanna 2010 1.ZH.1871 TV Otelfingen W SUI 02.01.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
194 335 256520 Glauser Lavinia 2009 1.ZH.1871 TV Otelfingen W SUI 23.07.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
195 108 250321 Wicki Serena 2009 1.ZH.1845 LV Albis W SUI 29.08.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
196 120 255704 Moser Aline 2010 1.ZH.1845 LV Albis W SUI 06.12.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X
197 312 259717 Haldemann Lina 2009 1.ZH.1845 LV Albis W SUI 14.10.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
198 743 259871 Steinke Lara 2010 1.ZH.1845 LV Albis W GER 21.04.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
199 1108 246687 Mutti Mara 2010 1.ZH.1845 LV Albis W SUI 06.10.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
200 629 251296 Auer Laura 2009 1.ZH.1832 LV Zürcher Oberland W SUI 25.08.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
201 631 245549 Keiser Angelina 2009 1.ZH.1832 LV Zürcher Oberland W SUI 11.03.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X
202 656 256638 Kühnis Maris 2010 1.ZH.1832 LV Zürcher Oberland W SUI 01.07.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X
203 661 259594 Debrunner Janina 2010 1.ZH.1832 LV Zürcher Oberland W 30.04.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X
204 663 259674 Steiner Jana 2010 1.ZH.1832 LV Zürcher Oberland W SUI 01.08.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
205 665 A:999939 Widmer Johanna 2009 1.ZH.1832 LV Zürcher Oberland W SUI 23.09.2009 U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
206 671 A:999940 De Vylder Aisha 2010 1.ZH.1832 LV Zürcher Oberland W SUI 04.04.2010 U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
207 3 253820 Schmid Léane 2010 1.ZH.1828 LC Uster W SUI 30.06.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
208 5 251505 Yapi Laeticia 2010 1.ZH.1828 LC Uster W SUI 26.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X
209 9 256986 Bertolini Flavia 2010 1.ZH.1828 LC Uster W SUI 14.10.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
210 139 253123 Toller Liv 2010 1.ZH.1828 LC Uster W SUI 17.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
211 141 256714 Rrahmani Elsa 2009 1.ZH.1828 LC Uster W KOS 04.07.2009 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X
212 1084 254473 Barletta Myrhiam 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W ITA 04.03.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X
213 1089 245934 Kunz Sophie 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 18.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X
214 1092 245937 Tamas Elena 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 08.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
215 1093 174616 Tresch Oliana 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 02.09.2009 N U14W 19 Gr. 6 U14W 16:15 4-K ZH X X
216 1096 257391 Obradovic Marija 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W CRO 23.12.2009 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
217 1148 246255 Sigg Elin 2009 1.ZH.1887 Turnverein Wiesendangen W SUI 07.07.2009 N U14W 19 Gr. 6 U14W 16:15 4-K ZH X
218 1157 A:999895 Pavic Nikolina 2010 1.ZH.1887 Turnverein Wiesendangen W SUI 25.05.2010 U14W 19 Gr. 6 U14W 16:15 4-K ZH X
219 514 176205 Bisang Jeremias 2007 1.ZH.1822 LV Winterthur M SUI 05.09.2007 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
220 523 253924 Graber Henry 2008 1.ZH.1822 LV Winterthur M SUI 26.11.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
221 529 175424 Käser Silvan 2008 1.ZH.1822 LV Winterthur M SUI 22.04.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
222 536 248541 Lamprecht Corvin 2008 1.ZH.1822 LV Winterthur M SUI 30.06.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
223 553 253631 Serhani Rachid 2007 1.ZH.1822 LV Winterthur M SUI 15.11.2007 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
224 556 255336 Stähli Tobias 2007 1.ZH.1822 LV Winterthur M SUI 03.06.2007 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
225 733 259644 Weibel Lionel 2008 1.ZH.1822 LV Winterthur M SUI 04.09.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
226 734 A:999930 Magalhaes Jarrel Damien 2008 1.ZH.1822 LV Winterthur M SUI 12.02.2008 U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
227 793 161330 Klaus Michael 2008 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 08.04.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
228 918 249309 Aeschimann Phineas 2008 1.ZH.1862 LA Wyland M SUI 12.08.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
229 921 244706 Griesser Nino 2008 1.ZH.1862 LA Wyland M SUI 28.10.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
230 929 176171 Schneeberger Moritz 2008 1.ZH.1862 LA Wyland M SUI 04.09.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
231 1150 174247 Krüsi Julian 2007 1.ZH.1887 Turnverein Wiesendangen M SUI 17.05.2007 N U16M 20 Gr. 1 U16M 10:00 4-K ZH X
232 1151 246340 Schmid Andrin 2007 1.ZH.1887 Turnverein Wiesendangen M SUI 30.05.2007 N U16M 20 Gr. 1 U16M 10:00 4-K ZH X
233 152 173598 Beyeler Levin 2008 1.ZH.1811 LC Regensdorf M SUI 13.04.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X
234 166 165311 Marcantonio Fabio 2007 1.ZH.1811 LC Regensdorf M SUI 14.02.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
235 328 254705 Radosarljevic Luka 2008 1.ZH.1811 LC Regensdorf M SUI 01.12.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
236 475 244746 Totaro Luca 2008 1.ZH.1828 LC Uster M SUI 07.10.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
237 1099 173387 Zisler Constantin 2007 1.ZH.1828 LC Uster M AUT 12.07.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X
238 75 169996 Moret Timo 2008 1.ZH.1845 LV Albis M SUI 01.05.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
239 97 166336 Van der Aar Lars 2007 1.ZH.1845 LV Albis M NED 12.04.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
240 636 166007 Pfister Marc 2007 1.ZH.1832 LV Zürcher Oberland M SUI 20.02.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
241 654 256684 Keller Severin 2008 1.ZH.1832 LV Zürcher Oberland M SUI 31.08.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X
242 749 244803 Häberli Tom Luca 2007 1.ZH.1820 TV Dietlikon M SUI 25.08.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
243 753 256868 Koch Fabian 2008 1.ZH.1820 TV Dietlikon M SUI 07.02.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
244 339 257441 Uebelhart Jannis 2008 1.ZH.1871 TV Otelfingen M SUI 13.05.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
245 760 253964 Brasse Leni 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 19.02.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
246 786 171044 Heusser Marla 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 09.07.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X
247 788 164024 Imhof Fabienne 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 30.03.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
248 814 244806 Niederberger Selina 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 22.02.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
249 822 173780 Rutz Linda 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 30.07.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X
250 826 163411 Schmid Desirée 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 17.08.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X
251 1102 163400 Bieder Laura 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 22.11.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
252 1105 244686 Kerényi Lea 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 21.03.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
253 343 244115 Adel Victoria 2007 1.ZH.1828 LC Uster W IRL 30.08.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
254 637 246924 Ramsauer Mia 2008 1.ZH.1832 LV Zürcher Oberland W SUI 06.10.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X
255 153 248712 Biaggi Jael 2007 1.ZH.1811 LC Regensdorf W SUI 13.04.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X
256 159 248716 Fuchser Fiona 2008 1.ZH.1811 LC Regensdorf W SUI 08.05.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
257 168 244758 Müller Lennja 2008 1.ZH.1811 LC Regensdorf W SUI 10.10.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
258 169 247288 Reichler Ella 2008 1.ZH.1811 LC Regensdorf W SUI 25.04.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
259 178 252907 Witschi Lisa 2008 1.ZH.1811 LC Regensdorf W SUI 13.10.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X
260 182 256772 Bugmann Selina 2008 1.ZH.1811 LC Regensdorf W SUI 24.10.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
261 329 245103 Lorenzo Leonie Luana 2007 1.ZH.1811 LC Regensdorf W SUI 28.12.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X
262 17 176016 Baer Irina 2007 1.ZH.1845 LV Albis W SUI 21.09.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
263 49 172494 Gallo Marzia 2007 1.ZH.1845 LV Albis W SUI 12.08.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
264 52 246678 Grollimund Annik 2008 1.ZH.1845 LV Albis W SUI 26.11.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
265 91 171970 Schuster Joy 2007 1.ZH.1845 LV Albis W SUI 27.04.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
266 104 166339 Wärdell Hanna 2008 1.ZH.1845 LV Albis W SUI 08.01.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
267 517 243983 Bühler Alicia 2008 1.ZH.1822 LV Winterthur W SUI 19.09.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X
268 520 168121 Fierz Tyra 2007 1.ZH.1822 LV Winterthur W SUI 04.02.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
269 524 248458 Gubler Céline 2008 1.ZH.1822 LV Winterthur W SUI 15.06.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
270 525 171762 Hinderling Jana 2007 1.ZH.1822 LV Winterthur W SUI 02.11.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X
271 528 243979 Imafidon Ronia 2008 1.ZH.1822 LV Winterthur W SUI 01.04.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
272 530 173228 Keel Lena 2007 1.ZH.1822 LV Winterthur W SUI 28.01.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X
273 532 253632 Kifle Nebyat 2008 1.ZH.1822 LV Winterthur W GER 17.12.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
274 538 251652 Mancuso Giulia 2007 1.ZH.1822 LV Winterthur W SUI 03.09.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X
275 547 252012 Pfister Linda 2008 1.ZH.1822 LV Winterthur W SUI 01.08.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X
276 549 243981 Rusova Jana 2008 1.ZH.1822 LV Winterthur W CZE 26.04.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X
277 551 170240 Schnyder Jacqueline 2008 1.ZH.1822 LV Winterthur W SUI 28.05.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
278 552 164856 Schnyder Vanessa 2007 1.ZH.1822 LV Winterthur W SUI 22.01.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
279 566 255335 Dos Santos Maria Vitoria 2008 1.ZH.1822 LV Winterthur W SUI 31.10.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
280 573 254757 Meissner Neele 2008 1.ZH.1822 LV Winterthur W SUI 15.07.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
281 613 258370 Züger Michelle 2007 1.ZH.1822 LV Winterthur W SUI 10.10.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
282 923 173375 Gürtler Anna 2007 1.ZH.1862 LA Wyland W SUI 25.01.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
283 926 173376 Lüthi Nadja 2007 1.ZH.1862 LA Wyland W SUI 27.03.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X
284 927 173377 Maurer Elena Lara 2007 1.ZH.1862 LA Wyland W SUI 26.07.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
285 930 255073 Schulthess Sanna 2008 1.ZH.1862 LA Wyland W SUI 03.08.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
286 943 258536 Zürcher Anja 2008 1.ZH.1862 LA Wyland W SUI 31.12.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X

@ -1,276 +0,0 @@
Anmeldenr;Lizenznr;Name;Vorname;Jahrgang;Verein;Club-Name;Geschlecht;Nationalitaet;GebDat;Bez;Kategorie;GruppeNr;GruppeName;Startzeit;Bewerb;Kanton;KidID;W1;W2;W3;W4
224;258680;Briem;Caspar;2012;1.ZH.1802;LAC TV Unterstrass Zürich;M;GER;30.08.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;
225;258679;Gazepis;Noé;2012;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;04.05.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
226;248101;Guye;Oliver;2011;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;04.10.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;
228;258670;Kronauer;Curdin;2012;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;26.03.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
229;254958;Netuschil;Eliah;2011;1.ZH.1802;LAC TV Unterstrass Zürich;M;GER;13.04.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
230;258669;Obst;Lennart;2011;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;03.06.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
231;258668;Passaplan;Agustin;2012;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;20.03.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
232;176899;Puschmann;Luis;2011;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;23.01.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;;
236;254962;Zuffellato;Niccolò;2011;1.ZH.1802;LAC TV Unterstrass Zürich;M;ITA;21.04.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
251;258676;Kissling;Etienne;2012;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;24.10.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;
252;258674;Sturzenegger;Nico;2012;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;11.05.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
253;249217;von Virág;Quentin;2011;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;23.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
267;254945;Folly;Joel;2011;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;13.05.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
419;251544;Cornila;Mathys;2011;1.ZH.1804;LC Zürich;M;SUI;02.05.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
426;251455;Jenny;Tyrece;2012;1.ZH.1804;LC Zürich;M;SUI;28.02.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
444;255985;Weis;Mailo;2011;1.ZH.1804;LC Zürich;M;SUI;01.02.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;;X
447;256097;Stettler;Nick;2011;1.ZH.1804;LC Zürich;M;SUI;27.07.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;
453;256003;Wunderer;Charlie;2011;1.ZH.1804;LC Zürich;M;SUI;16.09.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;X;X
458;256346;Farkas;Péter-Dávid;2011;1.ZH.1804;LC Zürich;M;ROU;11.08.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;X;
466;A:999982;Anthitsis;Yari;2011;1.ZH.1804;LC Zürich;M;SUI;23.07.2011;;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;
476;259266;Loretz;Nico;2012;1.ZH.1804;LC Zürich;M;SUI;29.04.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
480;A:999971;Hochmuth;Jakob;2012;1.ZH.1804;LC Zürich;M;SUI;19.10.2012;;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;
486;A:999968;Mehr;Jacob;2012;1.ZH.1804;LC Zürich;M;SUI;15.10.2012;;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;
495;A:999963;Schihin;Henri;2012;1.ZH.1804;LC Zürich;M;SUI;13.05.2012;;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;;X
873;A:999917;Gasser;Noah;2012;1.ZH.1804;LC Zürich;M;SUI;04.02.2012;;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;;X
1127;259852;Aeby;Valentin;2011;1.ZH.1814;Adliswil Track Team;M;SUI;08.06.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;;
894;258006;Caputo;Luca Alessio;2012;1.ZH.1814;Adliswil Track Team;M;SUI;19.06.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
1106;257211;Saraceno;Ylenio;2011;1.ZH.1833;LAR TV Rüti;M;SUI;11.08.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;;X
859;256740;Frei;Lars;2011;1.ZH.1837;LC Meilen;M;SUI;01.03.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
1166;260365;Kutscher;Alexander;2011;1.ZH.1837;LC Meilen;M;SUI;31.07.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
1167;260366;Ofutin;Fedor;2011;1.ZH.1837;LC Meilen;M;UKR;16.10.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
366;259557;Kohout;Santiago;2012;1.ZH.1869;LGKE Küsnacht-Erlenbach;M;SUI;24.03.2012;Y;U12M;4;Gr. 4 U12M;11:30;4-K;ZH;;X;;X;X
372;259561;Steiger;Juri;2012;1.ZH.1869;LGKE Küsnacht-Erlenbach;M;SUI;04.10.2012;Y;U12M;4;Gr. 4 U12M;11:30;4-K;ZH;;X;X;X;X
618;259706;Bebi;Mark;2011;1.ZH.1813;TV Egg;M;SUI;21.12.2011;Y;U12M;4;Gr. 4 U12M;11:30;4-K;ZH;;X;X;X;X
381;256803;Dittrich;Hanno;2011;1.ZH.1858;TV Maur;M;GER;01.05.2011;Y;U12M;4;Gr. 4 U12M;11:30;4-K;ZH;;X;X;X;X
383;256801;Kuhn;Daniel;2011;1.ZH.1858;TV Maur;M;SUI;03.07.2011;Y;U12M;4;Gr. 4 U12M;11:30;4-K;ZH;;X;X;;
386;259691;Becker;Moritz;2012;1.ZH.1858;TV Maur;M;SUI;05.01.2012;Y;U12M;4;Gr. 4 U12M;11:30;4-K;ZH;;X;;;
387;259692;Eiber;Tristan;2012;1.ZH.1858;TV Maur;M;SUI;12.11.2012;Y;U12M;4;Gr. 4 U12M;11:30;4-K;ZH;;X;;;
374;A:999991;Sutter;Lino;2011;1.ZH.1830;TV Uster;M;SUI;19.04.2011;;U12M;4;Gr. 4 U12M;11:30;4-K;ZH;;X;;;
429;251649;Locatelli;Sofia;2011;1.ZH.1804;LC Zürich;W;SUI;11.05.2011;Y;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;;X;
445;256124;Diethelm;Amber;2011;1.ZH.1804;LC Zürich;W;SUI;08.06.2011;Y;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;;X;X
450;256126;Bernhard;Elin;2011;1.ZH.1804;LC Zürich;W;SUI;14.10.2011;Y;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;;X;X
457;256247;Dietrich Moreira de Queiroz;Malu;2011;1.ZH.1804;LC Zürich;W;SUI;16.07.2011;Y;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;X;X;
461;251443;Bernacchia;Ayana;2012;1.ZH.1804;LC Zürich;W;SUI;23.08.2012;Y;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;X;X;X
470;A:999978;Duttweiler;Romy;2012;1.ZH.1804;LC Zürich;W;SUI;09.01.2012;;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;;X;
472;A:999976;Flück;Anna;2011;1.ZH.1804;LC Zürich;W;SUI;08.11.2011;;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;;X;X
477;259753;Pineda;Charlie;2012;1.ZH.1804;LC Zürich;W;SUI;01.12.2012;Y;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;X;X;X
478;A:999975;Föllmi;Cinja;2012;1.ZH.1804;LC Zürich;W;SUI;26.01.2012;;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;;;
488;A:999970;Kinteh;Aliya;2011;1.ZH.1804;LC Zürich;W;SUI;28.07.2011;;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;X;X;X
490;A:999958;Von Graefe;Anne-Sophie;2011;1.ZH.1804;LC Zürich;W;SUI;14.06.2011;;U12W;5;Gr. 1 U12W;12:50;4-K;ZH;;X;;X;
491;A:999959;Tendon;Aline;2011;1.ZH.1804;LC Zürich;W;SUI;05.12.2011;;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;X;X;X
496;A:999964;Schihin;Antonia;2012;1.ZH.1804;LC Zürich;W;SUI;13.06.2012;;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;;;X
498;A:999957;Zographos;Miya Eleni;2011;1.ZH.1804;LC Zürich;W;SUI;16.01.2011;;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;X;X;X
499;A:999954;Rosero;Avelina;2011;1.ZH.1804;LC Zürich;W;SUI;03.04.2011;;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;;;
626;256264;Hall;Klara;2011;1.ZH.1804;LC Zürich;W;SUI;16.06.2011;Y;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;;;
881;A:999973;Gervasi;Ava;2012;1.ZH.1804;LC Zürich;W;SUI;09.01.2012;;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;;;X
359;255580;Hewitt-Fry;Lily Leo;2011;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;09.12.2011;Y;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;X;X;X
360;255582;Michel;Neeva;2011;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;02.11.2011;Y;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;;;X
361;255583;Olbrich;Banu;2011;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;GER;23.07.2011;Y;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;;X;
363;259554;Fierz;Franziska;2011;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;19.09.2011;Y;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;;X;
365;259556;Klüppel;Lina;2011;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;08.05.2011;Y;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;;;X
367;259560;Larsen;Tessa;2012;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;NED;02.01.2012;Y;U12W;6;Gr. 2 U12W;12:55;4-K;ZH;;X;;;X
217;258689;Bomba;Pauline;2012;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;25.05.2012;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;;;
220;258688;Körner;Alma;2012;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;18.03.2012;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;;;
221;258687;Kolb;Elin;2012;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;06.03.2012;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;;;
222;258673;Maurer;Selma Madlaina;2012;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;12.12.2012;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;;X;
223;254959;Ruff;Noemi;2011;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;22.01.2011;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;;X;
249;258685;Metzler;Stella;2012;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;21.09.2012;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;;X;
265;254938;Abegg;Leonie;2011;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;04.08.2011;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;;X;
397;258684;Murguzovic;Hanna;2011;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;02.12.2011;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;X;X;
862;256832;Keller;Laura;2011;1.ZH.1837;LC Meilen;W;SUI;10.05.2011;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;X;;
863;256833;Guckenberger;Lea;2011;1.ZH.1837;LC Meilen;W;GER;09.10.2011;Y;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;X;X;
869;A:999921;Alexander;Poppy;2011;1.ZH.1837;LC Meilen;W;SUI;04.01.2011;;U12W;7;Gr. 3 U12W;14:15;4-K;ZH;;X;X;X;X
1065;255487;Ruoss;Leyla;2011;1.ZH.1833;LAR TV Rüti;W;SUI;22.11.2011;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;
1068;255485;Schmid;Mara;2011;1.ZH.1833;LAR TV Rüti;W;SUI;08.02.2011;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;
1112;259933;Szega;Maria;2011;1.ZH.1833;LAR TV Rüti;W;SUI;16.11.2011;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;
1116;259623;Landolt;Rahel;2012;1.ZH.1833;LAR TV Rüti;W;SUI;25.11.2012;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;
1117;259621;Papaleo;Ilaria;2012;1.ZH.1833;LAR TV Rüti;W;SUI;22.09.2012;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;
1119;259617;Stamenkov;Natalie;2012;1.ZH.1833;LAR TV Rüti;W;SUI;03.01.2012;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;X;;X
1168;259624;Grünenfelder;Anik;2012;1.ZH.1833;LAR TV Rüti;W;SUI;28.09.2012;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;
277;259694;Marty;Joya;2011;1.ZH.1898;TV Richterswil;W;SUI;12.07.2011;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;X
289;259702;Bewer;Carla Maria;2012;1.ZH.1898;TV Richterswil;W;SUI;01.03.2012;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;
290;259704;Riedo;Sophia;2011;1.ZH.1898;TV Richterswil;W;SUI;28.07.2011;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;
291;259703;Streiff;Smilla;2011;1.ZH.1898;TV Richterswil;W;SUI;27.07.2011;Y;U12W;8;Gr. 4 U12W;14:20;4-K;ZH;;X;;;
1128;259855;Bihn;Charlotte;2011;1.ZH.1814;Adliswil Track Team;W;SUI;04.10.2011;Y;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;;
885;259158;Müller;Malin;2011;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;17.11.2011;Y;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;X;;X
886;258810;Völkle;Aline;2011;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;24.09.2011;Y;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;X;X
880;259876;Mattle;Yuna;2012;1.ZH.1885;SSC Athletics;W;SUI;19.12.2012;Y;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;;
379;251619;Márquez;Naroa;2012;1.ZH.1858;TV Maur;W;SUI;06.03.2012;Y;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;X;
382;256804;Gräff;Clara;2011;1.ZH.1858;TV Maur;W;SUI;09.11.2011;Y;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;;
391;259693;Zimmermann;Seraina;2012;1.ZH.1858;TV Maur;W;SUI;10.10.2012;Y;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;;
874;256180;Rütti;Natalie;2011;1.ZH.1831;TV Oerlikon;W;SUI;11.01.2011;Y;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;;
877;A:999915;Rütti;Valerie;2012;1.ZH.1831;TV Oerlikon;W;SUI;07.09.2012;;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;;
903;259878;Wunderli;Anja;2012;1.ZH.1840;TV Thalwil;W;SUI;21.07.2012;Y;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;X;X;X
735;A:999929;Sulger;Melina;2011;1.ZH.1830;TV Uster;W;SUI;27.05.2011;;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;X;
620;A:999949;Muñoz;Salma;2012;1.ZH.1844;TV Wädenswil;W;SUI;01.02.2012;;U12W;9;Gr. 5 U12W;15:40;4-K;ZH;;X;;;
1131;259853;Tatis Heredia;Yandel;2010;1.ZH.1814;Adliswil Track Team;M;SUI;22.04.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
210;248282;Guye;Raffael;2009;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;12.10.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;
211;173454;Huber;Nevio;2009;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;28.12.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;;
212;248102;Kannangarage;Ryan;2010;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;15.09.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;
213;176149;Kehrle;Jan;2009;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;12.03.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;
215;174342;Merkel;Emil;2009;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;06.02.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;
246;259680;Negrello;Gioele;2009;1.ZH.1802;LAC TV Unterstrass Zürich;M;ITA;01.07.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;;
1042;251564;Betschart;Leon;2010;1.ZH.1833;LAR TV Rüti;M;SUI;10.09.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;;
1044;249230;Bosshard;Sven;2009;1.ZH.1833;LAR TV Rüti;M;SUI;21.10.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;;
1113;259936;Szega;Leonardo;2009;1.ZH.1833;LAR TV Rüti;M;SUI;15.07.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;;
858;256642;Bartholdi;Elio;2009;1.ZH.1837;LC Meilen;M;SUI;10.10.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
865;256741;Liebermann;Julius;2010;1.ZH.1837;LC Meilen;M;SUI;30.05.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;;X
418;249511;Brunner;Arkady;2010;1.ZH.1804;LC Zürich;M;SUI;16.03.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
421;254349;Dost;Thierry;2010;1.ZH.1804;LC Zürich;M;SUI;30.07.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
424;244503;Grad;Benjamin;2009;1.ZH.1804;LC Zürich;M;SUI;13.01.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;
425;245358;Guarini;Giorgio;2009;1.ZH.1804;LC Zürich;M;ITA;11.04.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;;X;X
427;173443;Keller;Malte;2010;1.ZH.1804;LC Zürich;M;SUI;04.03.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
434;247686;Thalmann;Xavier;2010;1.ZH.1804;LC Zürich;M;SUI;20.06.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
437;249165;Vogt;Rico;2009;1.ZH.1804;LC Zürich;M;SUI;22.11.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
438;254090;Wenger;Gino;2009;1.ZH.1804;LC Zürich;M;SUI;23.03.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
348;249696;Relly;David;2009;1.ZH.1869;LGKE Küsnacht-Erlenbach;M;SUI;06.04.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;
736;253106;Mattle;Damian;2010;1.ZH.1885;SSC Athletics;M;SUI;16.05.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;;;
737;253502;Lucke;Leif;2010;1.ZH.1885;SSC Athletics;M;GER;22.09.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;;;
905;259879;Kunz;Vincent;2009;1.ZH.1885;SSC Athletics;M;SUI;15.06.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;;;
439;173830;Zappa;Timothy Tiger;2009;1.ZH.1804;LC Zürich;M;SUI;01.02.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
441;255263;Hoffmann;Léo;2009;1.ZH.1804;LC Zürich;M;SUI;25.03.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
442;255262;Hoffmann;Malte;2010;1.ZH.1804;LC Zürich;M;SUI;25.12.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
451;256016;Hyka;Noel;2010;1.ZH.1804;LC Zürich;M;SUI;30.11.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
456;251442;Bernacchia;Alessandro;2010;1.ZH.1804;LC Zürich;M;SUI;18.10.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
459;256007;Kistler;Moris;2010;1.ZH.1804;LC Zürich;M;SUI;19.10.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;X;
628;A:999943;Bernasconi;Amerigo;2010;1.ZH.1804;LC Zürich;M;SUI;21.04.2010;;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
617;254427;Bebi;Tim;2010;1.ZH.1813;TV Egg;M;SUI;23.05.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
255;257489;Schreiber;Louis;2010;1.ZH.1898;TV Richterswil;M;SUI;11.08.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;;
275;259690;Hänni;Len;2009;1.ZH.1898;TV Richterswil;M;SUI;27.11.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;;
691;170109;Paulon;Giuliano;2009;1.ZH.1840;TV Thalwil;M;SUI;03.06.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;X;X
201;255216;Dufner;Ima;2010;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;18.03.2010;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;;;
203;254963;Fischer;Zoe;2009;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;26.02.2009;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;;X;
204;173940;Huber;Laura;2009;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;16.07.2009;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;;X;
205;252180;Minichiello;Stella;2009;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;20.04.2009;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;X;X;
207;251370;Stanek;Liv;2010;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;04.07.2010;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;;X;
208;176604;Sturzenegger;Nayla;2010;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;19.03.2010;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;;X;
209;247956;Venus;Nika;2010;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;23.05.2010;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;X;X;
264;244191;Ngwenya;Olivia;2010;1.ZH.1802;LAC TV Unterstrass Zürich;W;POL;31.03.2010;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;X;X;
271;247961;Ouattara;July-Mae;2010;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;13.02.2010;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;;X;
299;173433;Puhan;Tilda;2010;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;10.10.2010;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;X;X;
883;259190;Bader;Irina;2010;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;21.08.2010;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;X;X;X
887;259795;Reiter;Anna;2010;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;09.04.2010;Y;U14W;13;Gr. 1 U14W;12:25;4-K;ZH;;X;X;X;
1039;255481;Altwegg;Flurina;2009;1.ZH.1833;LAR TV Rüti;W;SUI;19.02.2009;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;;;
1045;249227;Brunner;Veronica;2009;1.ZH.1833;LAR TV Rüti;W;SUI;06.03.2009;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;X;;
1046;252943;De Genua;Mina;2010;1.ZH.1833;LAR TV Rüti;W;SUI;28.09.2010;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;X;;
1052;252947;Hämmig;Michelle;2010;1.ZH.1833;LAR TV Rüti;W;SUI;24.05.2010;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;;;X
1058;252949;Leuenberger;Fiona;2010;1.ZH.1833;LAR TV Rüti;W;SUI;30.06.2010;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;;;X
1062;252950;Roshardt;Aliyah;2010;1.ZH.1833;LAR TV Rüti;W;SUI;10.01.2010;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;;;
1124;259935;Graner;Tabea;2010;1.ZH.1833;LAR TV Rüti;W;SUI;03.01.2010;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;;;
854;250356;Rincón Brändli;Isabella;2009;1.ZH.1837;LC Meilen;W;SUI;20.04.2009;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;;;
857;172299;Zünd;Lavinia;2009;1.ZH.1837;LC Meilen;W;SUI;22.03.2009;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;;X;X
864;256829;Panoussopoulou;Fereniki;2010;1.ZH.1837;LC Meilen;W;GRE;01.02.2010;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;X;;
1163;260360;Gallotti;Marilena;2010;1.ZH.1837;LC Meilen;W;SUI;09.09.2010;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;X;X;X
1165;260358;Kuhn;Anna;2010;1.ZH.1837;LC Meilen;W;SUI;10.08.2010;Y;U14W;14;Gr. 2 U14W;13:00;4-K;ZH;;X;;X;X
415;172326;Alfaré;Anouk;2009;1.ZH.1804;LC Zürich;W;SUI;03.01.2009;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;;X;
416;247678;Anyamele;Joy Chika;2010;1.ZH.1804;LC Zürich;W;SUI;14.02.2010;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;X;X
422;166351;Emenike;Shanaya;2009;1.ZH.1804;LC Zürich;W;SUI;02.03.2009;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;;X
428;253800;Kinteh;Lana;2009;1.ZH.1804;LC Zürich;W;SUI;08.04.2009;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;X;X
430;253141;Mijuk;Mila Sophie;2010;1.ZH.1804;LC Zürich;W;SUI;09.09.2010;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;X;X
431;251547;Pavic;Helena;2010;1.ZH.1804;LC Zürich;W;SUI;10.05.2010;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;X;X
433;248720;Rindle;Lina Joëlle;2010;1.ZH.1804;LC Zürich;W;SUI;27.01.2010;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;X;X
440;251457;Evangelista Veiga;Alessia;2009;1.ZH.1804;LC Zürich;W;SUI;21.04.2009;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;X;X
443;256053;Moran;Alea Lu;2010;1.ZH.1804;LC Zürich;W;SUI;30.06.2010;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;;
449;256245;Bachofner;Michèle;2010;1.ZH.1804;LC Zürich;W;SUI;11.10.2010;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;;X;
454;256418;Gaudenz;Justina;2010;1.ZH.1804;LC Zürich;W;SUI;14.12.2010;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;X;
455;253826;Pozzi;Marlena;2010;1.ZH.1804;LC Zürich;W;SUI;25.10.2010;Y;U14W;15;Gr. 3 U14W;13:40;4-K;ZH;;X;X;X;
462;259736;Yotsumoto;Elina;2009;1.ZH.1804;LC Zürich;W;SUI;25.04.2009;Y;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;;X;X;X;X
467;A:999983;Blättler;Sophia;2009;1.ZH.1804;LC Zürich;W;SUI;11.10.2009;;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;1589892;X;;X;
469;A:999979;Cornejo;Aylin;2010;1.ZH.1804;LC Zürich;W;SUI;03.09.2010;;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;;X;;X;X
479;A:999974;Gasser;Rahel;2009;1.ZH.1804;LC Zürich;W;SUI;28.05.2009;;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;;X;X;X;X
481;A:999972;Guli;Silav;2010;1.ZH.1804;LC Zürich;W;SUI;07.04.2010;;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;1632736;X;X;X;X
483;A:999965;Sauber;Lucy;2009;1.ZH.1804;LC Zürich;W;SUI;12.02.2009;;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;1632739;X;X;X;X
485;A:999967;Sauber;Mara;2010;1.ZH.1804;LC Zürich;W;SUI;24.06.2010;;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;1622073;X;X;X;X
509;256174;Wipperling;Marlene;2010;1.ZH.1804;LC Zürich;W;FRA;30.07.2010;Y;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;;X;;X;X
747;251451;Grasso;Giulia;2010;1.ZH.1804;LC Zürich;W;SUI;28.11.2010;N;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;;X;X;X;
891;256837;Deister;Jule;2009;1.ZH.1814;Adliswil Track Team;W;GER;23.06.2009;Y;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;;X;X;X;X
892;256838;Szydlowska;Maria;2009;1.ZH.1814;Adliswil Track Team;W;99;08.08.2009;Y;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;;X;X;X;X
1129;259851;Hillebrand;Katinka;2010;1.ZH.1814;Adliswil Track Team;W;SUI;21.03.2010;Y;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;;X;X;X;
1130;259854;Mesot;Luana;2009;1.ZH.1814;Adliswil Track Team;W;SUI;03.01.2009;Y;U14W;16;Gr. 4 U14W;14:25;4-K;ZH;;X;X;;
345;249692;Brüschweiler;Ella;2009;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;07.04.2009;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;;X;
346;249695;Maag;Annina;2009;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;30.05.2009;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;X;X;X
347;254030;Metzenthin;Saskia;2010;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;19.02.2010;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;;X;X
349;255585;Baer;Seraina;2009;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;22.01.2009;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;X;;X
351;255578;Gärtner;Line;2010;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;GER;25.09.2010;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;X;X;X
352;255584;Müller;Eline;2010;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;21.12.2010;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;X;;X
356;256796;Garcia;Abigail;2010;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;20.10.2010;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;;X;X
690;248537;Erpenstein;Emma;2010;1.ZH.1840;TV Thalwil;W;GER;22.04.2010;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;X;;
740;259869;Comiskey;Indie;2010;1.ZH.1840;TV Thalwil;W;IRL;20.06.2010;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;;;
742;259868;Gomez de Jesus;Elianni;2010;1.ZH.1840;TV Thalwil;W;DOM;26.06.2010;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;X;X;X
904;259891;Utiger;Minou;2009;1.ZH.1840;TV Thalwil;W;SUI;06.09.2009;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;;;
906;252088;Oehy;Vivienne;2010;1.ZH.1840;TV Thalwil;W;SUI;15.03.2010;Y;U14W;17;Gr. 5 U14W;14:55;4-K;ZH;;X;X;X;
506;256823;Landolt;Anouk;2010;1.ZH.1885;SSC Athletics;W;SUI;07.04.2010;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;;;
507;252547;Hungerbühler;Anouk;2009;1.ZH.1885;SSC Athletics;W;SUI;20.11.2009;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;X;;
377;254632;Becker;Ronja;2009;1.ZH.1858;TV Maur;W;SUI;09.05.2009;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;X;;
378;254631;Hofer;Larina;2009;1.ZH.1858;TV Maur;W;SUI;30.07.2009;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;;;
380;254634;Rapp;Jule;2010;1.ZH.1858;TV Maur;W;SUI;02.01.2010;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;;X;
384;256802;Städeli;Lina;2010;1.ZH.1858;TV Maur;W;SUI;24.03.2010;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;X;;
388;259696;Kiefer;Lisha;2010;1.ZH.1858;TV Maur;W;SUI;26.12.2010;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;;X;
15;257419;Kümmerle;Aniko;2010;1.ZH.1898;TV Richterswil;W;SUI;14.08.2010;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;;X;X
256;257491;Strasser;Alexia;2010;1.ZH.1898;TV Richterswil;W;SUI;01.06.2010;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;;;
273;256733;Schnyder;Isabel;2009;1.ZH.1898;TV Richterswil;W;SUI;03.01.2009;Y;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;;X;;X;X
292;A:999994;Siegle;Alina;2009;1.ZH.1898;TV Richterswil;W;SUI;30.08.2009;;U14W;18;Gr. 6 U14W;15:45;4-K;ZH;1610462;X;;;
193;176584;Begum;Ashik;2007;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;28.04.2007;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
195;255217;Drumcioglu;Iustin;2008;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;12.03.2008;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
196;174423;Kissling;Lucien;2007;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;24.06.2007;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;;X;
197;258662;Körner;Leandro;2008;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;29.04.2008;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;
198;176257;Obrecht-Ribéron;Alan;2008;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;04.10.2008;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;;X;
200;258661;zu Putlitz;Timon;2008;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;21.05.2008;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;
263;173447;Ngwenya;Alex;2008;1.ZH.1802;LAC TV Unterstrass Zürich;M;POL;08.08.2008;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
270;167942;Bonaventura;Bru;2008;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;04.05.2008;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
947;258071;Emery;Sébastien;2007;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;06.02.2007;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;
199;257111;Rüede;Aeneas;2008;1.ZH.1802;LAC TV Unterstrass Zürich;M;SUI;12.02.2008;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
1041;249225;Betschart;Fabio;2008;1.ZH.1833;LAR TV Rüti;M;SUI;20.07.2008;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;;;
856;250351;Tobler;Cyril;2007;1.ZH.1837;LC Meilen;M;SUI;11.10.2007;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
16;257423;Kümmerle;Jan;2007;1.ZH.1898;TV Richterswil;M;SUI;23.04.2007;Y;U16M;19;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
686;174290;Müller;Loris;2007;1.ZH.1804;LC Zürich;M;SUI;24.01.2007;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
909;249474;Höhn;Andri;2008;1.ZH.1804;LC Zürich;M;SUI;03.09.2008;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;
911;246156;Läuppi;Niam;2008;1.ZH.1804;LC Zürich;M;SUI;01.12.2008;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
914;246903;Sallin;Joshua;2007;1.ZH.1804;LC Zürich;M;SUI;10.05.2007;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
915;258551;Birri;Francis;2007;1.ZH.1804;LC Zürich;M;SUI;16.01.2007;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;;X;X
916;258813;Motroni;Pietro;2008;1.ZH.1804;LC Zürich;M;GER;23.10.2008;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;
922;247627;Gillard;Tom;2008;1.ZH.1804;LC Zürich;M;SUI;29.09.2008;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
344;174266;Maag;Yves;2007;1.ZH.1869;LGKE Küsnacht-Erlenbach;M;SUI;22.05.2007;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;
616;251271;Bebi;Nicolas;2008;1.ZH.1813;TV Egg;M;SUI;20.03.2008;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
1133;251234;Bärtsch;Marco;2008;1.ZH.1815;LC Turicum;M;SUI;16.09.2008;Y;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
1142;A:999905;Grünberg;Eli;2008;1.ZH.1815;LC Turicum;M;SUI;06.07.2008;;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;;X;
1143;A:999903;Buob;Xavier;2007;1.ZH.1815;LC Turicum;M;SUI;18.08.2007;;U16M;20;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
184;244201;Bischoff;Lena;2007;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;04.08.2007;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
187;173426;Frei;Luisa;2008;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;14.12.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
188;174345;Hafner;Lina;2008;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;12.11.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
189;174163;Küenzi;Nina;2008;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;26.08.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
190;176245;Ruff;Stella;2008;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;21.03.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
191;247358;Stanek;Ava;2008;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;14.08.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;;;
192;173436;Stocker;Alessandra;2008;1.ZH.1802;LAC TV Unterstrass Zürich;W;ITA;23.09.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
272;176422;Paul;Shaniqua;2008;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;15.08.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
296;249620;Uffer;Lea;2008;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;20.11.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
300;247685;Moser;Isabelle;2008;1.ZH.1802;LAC TV Unterstrass Zürich;W;SUI;06.02.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
14;251279;Kümmerle;Salome;2008;1.ZH.1898;TV Richterswil;W;SUI;28.07.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;;X;X
274;257490;Streiff;Sina;2008;1.ZH.1898;TV Richterswil;W;SUI;18.09.2008;Y;U16W;21;Gr. 1 U16W;11:45;4-K;ZH;;X;;;
678;170051;Zivkovic;Ema;2007;1.ZH.1804;LC Zürich;W;SUI;23.05.2007;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
680;168162;Temeng;Christa;2007;1.ZH.1804;LC Zürich;W;SUI;15.04.2007;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;X
681;253865;Strati;Alkyoni;2008;1.ZH.1804;LC Zürich;W;SUI;24.10.2008;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
682;174026;Suter;Leandra;2007;1.ZH.1804;LC Zürich;W;SUI;29.11.2007;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
683;249870;Schweizer;Yukiho;2007;1.ZH.1804;LC Zürich;W;SUI;07.01.2007;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;;X
684;173434;Schmid;Nina;2008;1.ZH.1804;LC Zürich;W;SUI;20.09.2008;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
685;249959;Ndjanseb;Savannah;2008;1.ZH.1804;LC Zürich;W;SUI;06.09.2008;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
908;251498;Estive Labacena;Flavia;2008;1.ZH.1804;LC Zürich;W;SUI;23.08.2008;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
910;251044;Lanz;Nina;2008;1.ZH.1804;LC Zürich;W;SUI;21.02.2008;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;X
912;170489;Locatelli;Valentina;2008;1.ZH.1804;LC Zürich;W;SUI;28.07.2008;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
913;169998;Mangili;Elena;2008;1.ZH.1804;LC Zürich;W;SUI;18.01.2008;Y;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
932;A:999912;Guli;Siper;2008;1.ZH.1804;LC Zürich;W;GRE;11.01.2008;;U16W;22;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
140;244479;Wright;Maja;2007;1.ZH.1840;TV Thalwil;W;SUI;31.03.2007;Y;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;
687;247228;Siegfried;Ariane;2007;1.ZH.1840;TV Thalwil;W;SUI;14.09.2007;Y;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;
692;172513;Urosevic;Jovana;2007;1.ZH.1840;TV Thalwil;W;SRB;24.03.2007;Y;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
693;246223;Dupont;Lorena;2007;1.ZH.1840;TV Thalwil;W;SUI;17.09.2007;Y;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;X
694;252365;Nünlist;Olivia;2007;1.ZH.1840;TV Thalwil;W;SUI;18.01.2007;Y;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;X;;X
695;164860;Bürgi;Vittoria;2007;1.ZH.1840;TV Thalwil;W;SUI;18.08.2007;Y;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;
741;252360;Besic;Jasmina;2008;1.ZH.1840;TV Thalwil;W;SUI;28.05.2008;Y;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
853;250347;Keller;Selina;2007;1.ZH.1837;LC Meilen;W;SUI;29.08.2007;Y;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;X;;
866;A:999924;Capelli;Livia;2007;1.ZH.1837;LC Meilen;W;SUI;23.06.2007;;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;;;
1164;260375;Hürzeler;Lavinia;2008;1.ZH.1837;LC Meilen;W;SUI;24.01.2008;Y;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;;;
1140;254678;Zanella;Luana;2007;1.ZH.1815;LC Turicum;W;SUI;10.12.2007;N;U16W;23;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
281;249694;Brüschweiler;Miriam;2008;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;20.05.2008;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
282;174261;Flückiger;Lou;2007;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;23.03.2007;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
283;245620;Kretzschmar;Zarya;2007;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;GER;18.06.2007;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;X
284;245621;Lindner;Frida;2008;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;31.05.2008;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;;X
285;245624;Sigrist;Jaël;2008;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;SUI;02.10.2008;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
286;258090;Diedrich;Vivienne;2008;1.ZH.1869;LGKE Küsnacht-Erlenbach;W;GER;06.08.2008;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
1040;252945;Baumgartner;Annina;2008;1.ZH.1833;LAR TV Rüti;W;SUI;26.04.2008;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;;
1057;173773;Lee;Viviane;2007;1.ZH.1833;LAR TV Rüti;W;SUI;02.06.2007;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;;;
1060;249224;Oettl;Anika;2008;1.ZH.1833;LAR TV Rüti;W;SUI;01.11.2008;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;;
1064;252942;Ruoss;Jennifer;2008;1.ZH.1833;LAR TV Rüti;W;SUI;24.11.2008;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;;
1069;173775;Schneider;Lea;2007;1.ZH.1833;LAR TV Rüti;W;SUI;18.10.2007;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;;
1079;170340;Zannini;Jael;2007;1.ZH.1833;LAR TV Rüti;W;SUI;26.03.2007;Y;U16W;24;Gr. 4 U16W;13:30;4-K;ZH;;X;X;;
1 Anmeldenr Lizenznr Name Vorname Jahrgang Verein Club-Name Geschlecht Nationalitaet GebDat Bez Kategorie GruppeNr GruppeName Startzeit Bewerb Kanton KidID W1 W2 W3 W4
2 224 258680 Briem Caspar 2012 1.ZH.1802 LAC TV Unterstrass Zürich M GER 30.08.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X
3 225 258679 Gazepis Noé 2012 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 04.05.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
4 226 248101 Guye Oliver 2011 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 04.10.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X
5 228 258670 Kronauer Curdin 2012 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 26.03.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
6 229 254958 Netuschil Eliah 2011 1.ZH.1802 LAC TV Unterstrass Zürich M GER 13.04.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
7 230 258669 Obst Lennart 2011 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 03.06.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
8 231 258668 Passaplan Agustin 2012 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 20.03.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X
9 232 176899 Puschmann Luis 2011 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 23.01.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
10 236 254962 Zuffellato Niccolò 2011 1.ZH.1802 LAC TV Unterstrass Zürich M ITA 21.04.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
11 251 258676 Kissling Etienne 2012 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 24.10.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X
12 252 258674 Sturzenegger Nico 2012 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 11.05.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
13 253 249217 von Virág Quentin 2011 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 23.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
14 267 254945 Folly Joel 2011 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 13.05.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
15 419 251544 Cornila Mathys 2011 1.ZH.1804 LC Zürich M SUI 02.05.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
16 426 251455 Jenny Tyrece 2012 1.ZH.1804 LC Zürich M SUI 28.02.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
17 444 255985 Weis Mailo 2011 1.ZH.1804 LC Zürich M SUI 01.02.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
18 447 256097 Stettler Nick 2011 1.ZH.1804 LC Zürich M SUI 27.07.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
19 453 256003 Wunderer Charlie 2011 1.ZH.1804 LC Zürich M SUI 16.09.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
20 458 256346 Farkas Péter-Dávid 2011 1.ZH.1804 LC Zürich M ROU 11.08.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
21 466 A:999982 Anthitsis Yari 2011 1.ZH.1804 LC Zürich M SUI 23.07.2011 U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
22 476 259266 Loretz Nico 2012 1.ZH.1804 LC Zürich M SUI 29.04.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
23 480 A:999971 Hochmuth Jakob 2012 1.ZH.1804 LC Zürich M SUI 19.10.2012 U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
24 486 A:999968 Mehr Jacob 2012 1.ZH.1804 LC Zürich M SUI 15.10.2012 U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
25 495 A:999963 Schihin Henri 2012 1.ZH.1804 LC Zürich M SUI 13.05.2012 U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
26 873 A:999917 Gasser Noah 2012 1.ZH.1804 LC Zürich M SUI 04.02.2012 U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
27 1127 259852 Aeby Valentin 2011 1.ZH.1814 Adliswil Track Team M SUI 08.06.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X
28 894 258006 Caputo Luca Alessio 2012 1.ZH.1814 Adliswil Track Team M SUI 19.06.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
29 1106 257211 Saraceno Ylenio 2011 1.ZH.1833 LAR TV Rüti M SUI 11.08.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
30 859 256740 Frei Lars 2011 1.ZH.1837 LC Meilen M SUI 01.03.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
31 1166 260365 Kutscher Alexander 2011 1.ZH.1837 LC Meilen M SUI 31.07.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
32 1167 260366 Ofutin Fedor 2011 1.ZH.1837 LC Meilen M UKR 16.10.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
33 366 259557 Kohout Santiago 2012 1.ZH.1869 LGKE Küsnacht-Erlenbach M SUI 24.03.2012 Y U12M 4 Gr. 4 U12M 11:30 4-K ZH X X X
34 372 259561 Steiger Juri 2012 1.ZH.1869 LGKE Küsnacht-Erlenbach M SUI 04.10.2012 Y U12M 4 Gr. 4 U12M 11:30 4-K ZH X X X X
35 618 259706 Bebi Mark 2011 1.ZH.1813 TV Egg M SUI 21.12.2011 Y U12M 4 Gr. 4 U12M 11:30 4-K ZH X X X X
36 381 256803 Dittrich Hanno 2011 1.ZH.1858 TV Maur M GER 01.05.2011 Y U12M 4 Gr. 4 U12M 11:30 4-K ZH X X X X
37 383 256801 Kuhn Daniel 2011 1.ZH.1858 TV Maur M SUI 03.07.2011 Y U12M 4 Gr. 4 U12M 11:30 4-K ZH X X
38 386 259691 Becker Moritz 2012 1.ZH.1858 TV Maur M SUI 05.01.2012 Y U12M 4 Gr. 4 U12M 11:30 4-K ZH X
39 387 259692 Eiber Tristan 2012 1.ZH.1858 TV Maur M SUI 12.11.2012 Y U12M 4 Gr. 4 U12M 11:30 4-K ZH X
40 374 A:999991 Sutter Lino 2011 1.ZH.1830 TV Uster M SUI 19.04.2011 U12M 4 Gr. 4 U12M 11:30 4-K ZH X
41 429 251649 Locatelli Sofia 2011 1.ZH.1804 LC Zürich W SUI 11.05.2011 Y U12W 5 Gr. 1 U12W 12:50 4-K ZH X X
42 445 256124 Diethelm Amber 2011 1.ZH.1804 LC Zürich W SUI 08.06.2011 Y U12W 5 Gr. 1 U12W 12:50 4-K ZH X X X
43 450 256126 Bernhard Elin 2011 1.ZH.1804 LC Zürich W SUI 14.10.2011 Y U12W 5 Gr. 1 U12W 12:50 4-K ZH X X X
44 457 256247 Dietrich Moreira de Queiroz Malu 2011 1.ZH.1804 LC Zürich W SUI 16.07.2011 Y U12W 5 Gr. 1 U12W 12:50 4-K ZH X X X
45 461 251443 Bernacchia Ayana 2012 1.ZH.1804 LC Zürich W SUI 23.08.2012 Y U12W 5 Gr. 1 U12W 12:50 4-K ZH X X X X
46 470 A:999978 Duttweiler Romy 2012 1.ZH.1804 LC Zürich W SUI 09.01.2012 U12W 5 Gr. 1 U12W 12:50 4-K ZH X X
47 472 A:999976 Flück Anna 2011 1.ZH.1804 LC Zürich W SUI 08.11.2011 U12W 5 Gr. 1 U12W 12:50 4-K ZH X X X
48 477 259753 Pineda Charlie 2012 1.ZH.1804 LC Zürich W SUI 01.12.2012 Y U12W 5 Gr. 1 U12W 12:50 4-K ZH X X X X
49 478 A:999975 Föllmi Cinja 2012 1.ZH.1804 LC Zürich W SUI 26.01.2012 U12W 5 Gr. 1 U12W 12:50 4-K ZH X
50 488 A:999970 Kinteh Aliya 2011 1.ZH.1804 LC Zürich W SUI 28.07.2011 U12W 5 Gr. 1 U12W 12:50 4-K ZH X X X X
51 490 A:999958 Von Graefe Anne-Sophie 2011 1.ZH.1804 LC Zürich W SUI 14.06.2011 U12W 5 Gr. 1 U12W 12:50 4-K ZH X X
52 491 A:999959 Tendon Aline 2011 1.ZH.1804 LC Zürich W SUI 05.12.2011 U12W 6 Gr. 2 U12W 12:55 4-K ZH X X X X
53 496 A:999964 Schihin Antonia 2012 1.ZH.1804 LC Zürich W SUI 13.06.2012 U12W 6 Gr. 2 U12W 12:55 4-K ZH X X
54 498 A:999957 Zographos Miya Eleni 2011 1.ZH.1804 LC Zürich W SUI 16.01.2011 U12W 6 Gr. 2 U12W 12:55 4-K ZH X X X X
55 499 A:999954 Rosero Avelina 2011 1.ZH.1804 LC Zürich W SUI 03.04.2011 U12W 6 Gr. 2 U12W 12:55 4-K ZH X
56 626 256264 Hall Klara 2011 1.ZH.1804 LC Zürich W SUI 16.06.2011 Y U12W 6 Gr. 2 U12W 12:55 4-K ZH X
57 881 A:999973 Gervasi Ava 2012 1.ZH.1804 LC Zürich W SUI 09.01.2012 U12W 6 Gr. 2 U12W 12:55 4-K ZH X X
58 359 255580 Hewitt-Fry Lily Leo 2011 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 09.12.2011 Y U12W 6 Gr. 2 U12W 12:55 4-K ZH X X X X
59 360 255582 Michel Neeva 2011 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 02.11.2011 Y U12W 6 Gr. 2 U12W 12:55 4-K ZH X X
60 361 255583 Olbrich Banu 2011 1.ZH.1869 LGKE Küsnacht-Erlenbach W GER 23.07.2011 Y U12W 6 Gr. 2 U12W 12:55 4-K ZH X X
61 363 259554 Fierz Franziska 2011 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 19.09.2011 Y U12W 6 Gr. 2 U12W 12:55 4-K ZH X X
62 365 259556 Klüppel Lina 2011 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 08.05.2011 Y U12W 6 Gr. 2 U12W 12:55 4-K ZH X X
63 367 259560 Larsen Tessa 2012 1.ZH.1869 LGKE Küsnacht-Erlenbach W NED 02.01.2012 Y U12W 6 Gr. 2 U12W 12:55 4-K ZH X X
64 217 258689 Bomba Pauline 2012 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 25.05.2012 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X
65 220 258688 Körner Alma 2012 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 18.03.2012 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X
66 221 258687 Kolb Elin 2012 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 06.03.2012 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X
67 222 258673 Maurer Selma Madlaina 2012 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 12.12.2012 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X X
68 223 254959 Ruff Noemi 2011 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 22.01.2011 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X X
69 249 258685 Metzler Stella 2012 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 21.09.2012 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X X
70 265 254938 Abegg Leonie 2011 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 04.08.2011 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X X
71 397 258684 Murguzovic Hanna 2011 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 02.12.2011 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X X X
72 862 256832 Keller Laura 2011 1.ZH.1837 LC Meilen W SUI 10.05.2011 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X X
73 863 256833 Guckenberger Lea 2011 1.ZH.1837 LC Meilen W GER 09.10.2011 Y U12W 7 Gr. 3 U12W 14:15 4-K ZH X X X
74 869 A:999921 Alexander Poppy 2011 1.ZH.1837 LC Meilen W SUI 04.01.2011 U12W 7 Gr. 3 U12W 14:15 4-K ZH X X X X
75 1065 255487 Ruoss Leyla 2011 1.ZH.1833 LAR TV Rüti W SUI 22.11.2011 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X
76 1068 255485 Schmid Mara 2011 1.ZH.1833 LAR TV Rüti W SUI 08.02.2011 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X
77 1112 259933 Szega Maria 2011 1.ZH.1833 LAR TV Rüti W SUI 16.11.2011 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X
78 1116 259623 Landolt Rahel 2012 1.ZH.1833 LAR TV Rüti W SUI 25.11.2012 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X
79 1117 259621 Papaleo Ilaria 2012 1.ZH.1833 LAR TV Rüti W SUI 22.09.2012 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X
80 1119 259617 Stamenkov Natalie 2012 1.ZH.1833 LAR TV Rüti W SUI 03.01.2012 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X X X
81 1168 259624 Grünenfelder Anik 2012 1.ZH.1833 LAR TV Rüti W SUI 28.09.2012 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X
82 277 259694 Marty Joya 2011 1.ZH.1898 TV Richterswil W SUI 12.07.2011 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X X
83 289 259702 Bewer Carla Maria 2012 1.ZH.1898 TV Richterswil W SUI 01.03.2012 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X
84 290 259704 Riedo Sophia 2011 1.ZH.1898 TV Richterswil W SUI 28.07.2011 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X
85 291 259703 Streiff Smilla 2011 1.ZH.1898 TV Richterswil W SUI 27.07.2011 Y U12W 8 Gr. 4 U12W 14:20 4-K ZH X
86 1128 259855 Bihn Charlotte 2011 1.ZH.1814 Adliswil Track Team W SUI 04.10.2011 Y U12W 9 Gr. 5 U12W 15:40 4-K ZH X
87 885 259158 Müller Malin 2011 1.ZH.1893 LC Furttal ZH-Nord W SUI 17.11.2011 Y U12W 9 Gr. 5 U12W 15:40 4-K ZH X X X
88 886 258810 Völkle Aline 2011 1.ZH.1893 LC Furttal ZH-Nord W SUI 24.09.2011 Y U12W 9 Gr. 5 U12W 15:40 4-K ZH X X X
89 880 259876 Mattle Yuna 2012 1.ZH.1885 SSC Athletics W SUI 19.12.2012 Y U12W 9 Gr. 5 U12W 15:40 4-K ZH X
90 379 251619 Márquez Naroa 2012 1.ZH.1858 TV Maur W SUI 06.03.2012 Y U12W 9 Gr. 5 U12W 15:40 4-K ZH X X
91 382 256804 Gräff Clara 2011 1.ZH.1858 TV Maur W SUI 09.11.2011 Y U12W 9 Gr. 5 U12W 15:40 4-K ZH X
92 391 259693 Zimmermann Seraina 2012 1.ZH.1858 TV Maur W SUI 10.10.2012 Y U12W 9 Gr. 5 U12W 15:40 4-K ZH X
93 874 256180 Rütti Natalie 2011 1.ZH.1831 TV Oerlikon W SUI 11.01.2011 Y U12W 9 Gr. 5 U12W 15:40 4-K ZH X
94 877 A:999915 Rütti Valerie 2012 1.ZH.1831 TV Oerlikon W SUI 07.09.2012 U12W 9 Gr. 5 U12W 15:40 4-K ZH X
95 903 259878 Wunderli Anja 2012 1.ZH.1840 TV Thalwil W SUI 21.07.2012 Y U12W 9 Gr. 5 U12W 15:40 4-K ZH X X X X
96 735 A:999929 Sulger Melina 2011 1.ZH.1830 TV Uster W SUI 27.05.2011 U12W 9 Gr. 5 U12W 15:40 4-K ZH X X
97 620 A:999949 Muñoz Salma 2012 1.ZH.1844 TV Wädenswil W SUI 01.02.2012 U12W 9 Gr. 5 U12W 15:40 4-K ZH X
98 1131 259853 Tatis Heredia Yandel 2010 1.ZH.1814 Adliswil Track Team M SUI 22.04.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
99 210 248282 Guye Raffael 2009 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 12.10.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
100 211 173454 Huber Nevio 2009 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 28.12.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X
101 212 248102 Kannangarage Ryan 2010 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 15.09.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
102 213 176149 Kehrle Jan 2009 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 12.03.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X
103 215 174342 Merkel Emil 2009 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 06.02.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X
104 246 259680 Negrello Gioele 2009 1.ZH.1802 LAC TV Unterstrass Zürich M ITA 01.07.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X
105 1042 251564 Betschart Leon 2010 1.ZH.1833 LAR TV Rüti M SUI 10.09.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X
106 1044 249230 Bosshard Sven 2009 1.ZH.1833 LAR TV Rüti M SUI 21.10.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X
107 1113 259936 Szega Leonardo 2009 1.ZH.1833 LAR TV Rüti M SUI 15.07.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X
108 858 256642 Bartholdi Elio 2009 1.ZH.1837 LC Meilen M SUI 10.10.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
109 865 256741 Liebermann Julius 2010 1.ZH.1837 LC Meilen M SUI 30.05.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
110 418 249511 Brunner Arkady 2010 1.ZH.1804 LC Zürich M SUI 16.03.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
111 421 254349 Dost Thierry 2010 1.ZH.1804 LC Zürich M SUI 30.07.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
112 424 244503 Grad Benjamin 2009 1.ZH.1804 LC Zürich M SUI 13.01.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
113 425 245358 Guarini Giorgio 2009 1.ZH.1804 LC Zürich M ITA 11.04.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
114 427 173443 Keller Malte 2010 1.ZH.1804 LC Zürich M SUI 04.03.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
115 434 247686 Thalmann Xavier 2010 1.ZH.1804 LC Zürich M SUI 20.06.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
116 437 249165 Vogt Rico 2009 1.ZH.1804 LC Zürich M SUI 22.11.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
117 438 254090 Wenger Gino 2009 1.ZH.1804 LC Zürich M SUI 23.03.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
118 348 249696 Relly David 2009 1.ZH.1869 LGKE Küsnacht-Erlenbach M SUI 06.04.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X
119 736 253106 Mattle Damian 2010 1.ZH.1885 SSC Athletics M SUI 16.05.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X
120 737 253502 Lucke Leif 2010 1.ZH.1885 SSC Athletics M GER 22.09.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X
121 905 259879 Kunz Vincent 2009 1.ZH.1885 SSC Athletics M SUI 15.06.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X
122 439 173830 Zappa Timothy Tiger 2009 1.ZH.1804 LC Zürich M SUI 01.02.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
123 441 255263 Hoffmann Léo 2009 1.ZH.1804 LC Zürich M SUI 25.03.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
124 442 255262 Hoffmann Malte 2010 1.ZH.1804 LC Zürich M SUI 25.12.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
125 451 256016 Hyka Noel 2010 1.ZH.1804 LC Zürich M SUI 30.11.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
126 456 251442 Bernacchia Alessandro 2010 1.ZH.1804 LC Zürich M SUI 18.10.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
127 459 256007 Kistler Moris 2010 1.ZH.1804 LC Zürich M SUI 19.10.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X
128 628 A:999943 Bernasconi Amerigo 2010 1.ZH.1804 LC Zürich M SUI 21.04.2010 U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
129 617 254427 Bebi Tim 2010 1.ZH.1813 TV Egg M SUI 23.05.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
130 255 257489 Schreiber Louis 2010 1.ZH.1898 TV Richterswil M SUI 11.08.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X
131 275 259690 Hänni Len 2009 1.ZH.1898 TV Richterswil M SUI 27.11.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X
132 691 170109 Paulon Giuliano 2009 1.ZH.1840 TV Thalwil M SUI 03.06.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X
133 201 255216 Dufner Ima 2010 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 18.03.2010 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X
134 203 254963 Fischer Zoe 2009 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 26.02.2009 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X
135 204 173940 Huber Laura 2009 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 16.07.2009 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X
136 205 252180 Minichiello Stella 2009 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 20.04.2009 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X X
137 207 251370 Stanek Liv 2010 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 04.07.2010 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X
138 208 176604 Sturzenegger Nayla 2010 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 19.03.2010 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X
139 209 247956 Venus Nika 2010 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 23.05.2010 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X X
140 264 244191 Ngwenya Olivia 2010 1.ZH.1802 LAC TV Unterstrass Zürich W POL 31.03.2010 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X X
141 271 247961 Ouattara July-Mae 2010 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 13.02.2010 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X
142 299 173433 Puhan Tilda 2010 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 10.10.2010 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X X
143 883 259190 Bader Irina 2010 1.ZH.1893 LC Furttal ZH-Nord W SUI 21.08.2010 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X X X
144 887 259795 Reiter Anna 2010 1.ZH.1893 LC Furttal ZH-Nord W SUI 09.04.2010 Y U14W 13 Gr. 1 U14W 12:25 4-K ZH X X X
145 1039 255481 Altwegg Flurina 2009 1.ZH.1833 LAR TV Rüti W SUI 19.02.2009 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X
146 1045 249227 Brunner Veronica 2009 1.ZH.1833 LAR TV Rüti W SUI 06.03.2009 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X X
147 1046 252943 De Genua Mina 2010 1.ZH.1833 LAR TV Rüti W SUI 28.09.2010 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X X
148 1052 252947 Hämmig Michelle 2010 1.ZH.1833 LAR TV Rüti W SUI 24.05.2010 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X X
149 1058 252949 Leuenberger Fiona 2010 1.ZH.1833 LAR TV Rüti W SUI 30.06.2010 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X X
150 1062 252950 Roshardt Aliyah 2010 1.ZH.1833 LAR TV Rüti W SUI 10.01.2010 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X
151 1124 259935 Graner Tabea 2010 1.ZH.1833 LAR TV Rüti W SUI 03.01.2010 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X
152 854 250356 Rincón Brändli Isabella 2009 1.ZH.1837 LC Meilen W SUI 20.04.2009 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X
153 857 172299 Zünd Lavinia 2009 1.ZH.1837 LC Meilen W SUI 22.03.2009 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X X X
154 864 256829 Panoussopoulou Fereniki 2010 1.ZH.1837 LC Meilen W GRE 01.02.2010 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X X
155 1163 260360 Gallotti Marilena 2010 1.ZH.1837 LC Meilen W SUI 09.09.2010 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X X X X
156 1165 260358 Kuhn Anna 2010 1.ZH.1837 LC Meilen W SUI 10.08.2010 Y U14W 14 Gr. 2 U14W 13:00 4-K ZH X X X
157 415 172326 Alfaré Anouk 2009 1.ZH.1804 LC Zürich W SUI 03.01.2009 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X
158 416 247678 Anyamele Joy Chika 2010 1.ZH.1804 LC Zürich W SUI 14.02.2010 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X X X
159 422 166351 Emenike Shanaya 2009 1.ZH.1804 LC Zürich W SUI 02.03.2009 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X X
160 428 253800 Kinteh Lana 2009 1.ZH.1804 LC Zürich W SUI 08.04.2009 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X X X
161 430 253141 Mijuk Mila Sophie 2010 1.ZH.1804 LC Zürich W SUI 09.09.2010 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X X X
162 431 251547 Pavic Helena 2010 1.ZH.1804 LC Zürich W SUI 10.05.2010 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X X X
163 433 248720 Rindle Lina Joëlle 2010 1.ZH.1804 LC Zürich W SUI 27.01.2010 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X X X
164 440 251457 Evangelista Veiga Alessia 2009 1.ZH.1804 LC Zürich W SUI 21.04.2009 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X X X
165 443 256053 Moran Alea Lu 2010 1.ZH.1804 LC Zürich W SUI 30.06.2010 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X
166 449 256245 Bachofner Michèle 2010 1.ZH.1804 LC Zürich W SUI 11.10.2010 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X
167 454 256418 Gaudenz Justina 2010 1.ZH.1804 LC Zürich W SUI 14.12.2010 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X X
168 455 253826 Pozzi Marlena 2010 1.ZH.1804 LC Zürich W SUI 25.10.2010 Y U14W 15 Gr. 3 U14W 13:40 4-K ZH X X X
169 462 259736 Yotsumoto Elina 2009 1.ZH.1804 LC Zürich W SUI 25.04.2009 Y U14W 16 Gr. 4 U14W 14:25 4-K ZH X X X X
170 467 A:999983 Blättler Sophia 2009 1.ZH.1804 LC Zürich W SUI 11.10.2009 U14W 16 Gr. 4 U14W 14:25 4-K ZH 1589892 X X
171 469 A:999979 Cornejo Aylin 2010 1.ZH.1804 LC Zürich W SUI 03.09.2010 U14W 16 Gr. 4 U14W 14:25 4-K ZH X X X
172 479 A:999974 Gasser Rahel 2009 1.ZH.1804 LC Zürich W SUI 28.05.2009 U14W 16 Gr. 4 U14W 14:25 4-K ZH X X X X
173 481 A:999972 Guli Silav 2010 1.ZH.1804 LC Zürich W SUI 07.04.2010 U14W 16 Gr. 4 U14W 14:25 4-K ZH 1632736 X X X X
174 483 A:999965 Sauber Lucy 2009 1.ZH.1804 LC Zürich W SUI 12.02.2009 U14W 16 Gr. 4 U14W 14:25 4-K ZH 1632739 X X X X
175 485 A:999967 Sauber Mara 2010 1.ZH.1804 LC Zürich W SUI 24.06.2010 U14W 16 Gr. 4 U14W 14:25 4-K ZH 1622073 X X X X
176 509 256174 Wipperling Marlene 2010 1.ZH.1804 LC Zürich W FRA 30.07.2010 Y U14W 16 Gr. 4 U14W 14:25 4-K ZH X X X
177 747 251451 Grasso Giulia 2010 1.ZH.1804 LC Zürich W SUI 28.11.2010 N U14W 16 Gr. 4 U14W 14:25 4-K ZH X X X
178 891 256837 Deister Jule 2009 1.ZH.1814 Adliswil Track Team W GER 23.06.2009 Y U14W 16 Gr. 4 U14W 14:25 4-K ZH X X X X
179 892 256838 Szydlowska Maria 2009 1.ZH.1814 Adliswil Track Team W 99 08.08.2009 Y U14W 16 Gr. 4 U14W 14:25 4-K ZH X X X X
180 1129 259851 Hillebrand Katinka 2010 1.ZH.1814 Adliswil Track Team W SUI 21.03.2010 Y U14W 16 Gr. 4 U14W 14:25 4-K ZH X X X
181 1130 259854 Mesot Luana 2009 1.ZH.1814 Adliswil Track Team W SUI 03.01.2009 Y U14W 16 Gr. 4 U14W 14:25 4-K ZH X X
182 345 249692 Brüschweiler Ella 2009 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 07.04.2009 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X
183 346 249695 Maag Annina 2009 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 30.05.2009 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X X X
184 347 254030 Metzenthin Saskia 2010 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 19.02.2010 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X X
185 349 255585 Baer Seraina 2009 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 22.01.2009 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X X
186 351 255578 Gärtner Line 2010 1.ZH.1869 LGKE Küsnacht-Erlenbach W GER 25.09.2010 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X X X
187 352 255584 Müller Eline 2010 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 21.12.2010 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X X
188 356 256796 Garcia Abigail 2010 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 20.10.2010 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X X
189 690 248537 Erpenstein Emma 2010 1.ZH.1840 TV Thalwil W GER 22.04.2010 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X
190 740 259869 Comiskey Indie 2010 1.ZH.1840 TV Thalwil W IRL 20.06.2010 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X
191 742 259868 Gomez de Jesus Elianni 2010 1.ZH.1840 TV Thalwil W DOM 26.06.2010 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X X X
192 904 259891 Utiger Minou 2009 1.ZH.1840 TV Thalwil W SUI 06.09.2009 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X
193 906 252088 Oehy Vivienne 2010 1.ZH.1840 TV Thalwil W SUI 15.03.2010 Y U14W 17 Gr. 5 U14W 14:55 4-K ZH X X X
194 506 256823 Landolt Anouk 2010 1.ZH.1885 SSC Athletics W SUI 07.04.2010 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X
195 507 252547 Hungerbühler Anouk 2009 1.ZH.1885 SSC Athletics W SUI 20.11.2009 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X X
196 377 254632 Becker Ronja 2009 1.ZH.1858 TV Maur W SUI 09.05.2009 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X X
197 378 254631 Hofer Larina 2009 1.ZH.1858 TV Maur W SUI 30.07.2009 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X
198 380 254634 Rapp Jule 2010 1.ZH.1858 TV Maur W SUI 02.01.2010 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X X
199 384 256802 Städeli Lina 2010 1.ZH.1858 TV Maur W SUI 24.03.2010 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X X
200 388 259696 Kiefer Lisha 2010 1.ZH.1858 TV Maur W SUI 26.12.2010 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X X
201 15 257419 Kümmerle Aniko 2010 1.ZH.1898 TV Richterswil W SUI 14.08.2010 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X X X
202 256 257491 Strasser Alexia 2010 1.ZH.1898 TV Richterswil W SUI 01.06.2010 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X
203 273 256733 Schnyder Isabel 2009 1.ZH.1898 TV Richterswil W SUI 03.01.2009 Y U14W 18 Gr. 6 U14W 15:45 4-K ZH X X X
204 292 A:999994 Siegle Alina 2009 1.ZH.1898 TV Richterswil W SUI 30.08.2009 U14W 18 Gr. 6 U14W 15:45 4-K ZH 1610462 X
205 193 176584 Begum Ashik 2007 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 28.04.2007 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X X
206 195 255217 Drumcioglu Iustin 2008 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 12.03.2008 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X X
207 196 174423 Kissling Lucien 2007 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 24.06.2007 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X
208 197 258662 Körner Leandro 2008 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 29.04.2008 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X
209 198 176257 Obrecht-Ribéron Alan 2008 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 04.10.2008 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X
210 200 258661 zu Putlitz Timon 2008 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 21.05.2008 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X
211 263 173447 Ngwenya Alex 2008 1.ZH.1802 LAC TV Unterstrass Zürich M POL 08.08.2008 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X X
212 270 167942 Bonaventura Bru 2008 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 04.05.2008 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X X
213 947 258071 Emery Sébastien 2007 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 06.02.2007 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X
214 199 257111 Rüede Aeneas 2008 1.ZH.1802 LAC TV Unterstrass Zürich M SUI 12.02.2008 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X X
215 1041 249225 Betschart Fabio 2008 1.ZH.1833 LAR TV Rüti M SUI 20.07.2008 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X
216 856 250351 Tobler Cyril 2007 1.ZH.1837 LC Meilen M SUI 11.10.2007 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X X X
217 16 257423 Kümmerle Jan 2007 1.ZH.1898 TV Richterswil M SUI 23.04.2007 Y U16M 19 Gr. 1 U16M 10:00 4-K ZH X X X X
218 686 174290 Müller Loris 2007 1.ZH.1804 LC Zürich M SUI 24.01.2007 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X X
219 909 249474 Höhn Andri 2008 1.ZH.1804 LC Zürich M SUI 03.09.2008 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X
220 911 246156 Läuppi Niam 2008 1.ZH.1804 LC Zürich M SUI 01.12.2008 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X X
221 914 246903 Sallin Joshua 2007 1.ZH.1804 LC Zürich M SUI 10.05.2007 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X X
222 915 258551 Birri Francis 2007 1.ZH.1804 LC Zürich M SUI 16.01.2007 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X
223 916 258813 Motroni Pietro 2008 1.ZH.1804 LC Zürich M GER 23.10.2008 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X
224 922 247627 Gillard Tom 2008 1.ZH.1804 LC Zürich M SUI 29.09.2008 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X X
225 344 174266 Maag Yves 2007 1.ZH.1869 LGKE Küsnacht-Erlenbach M SUI 22.05.2007 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X
226 616 251271 Bebi Nicolas 2008 1.ZH.1813 TV Egg M SUI 20.03.2008 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X X
227 1133 251234 Bärtsch Marco 2008 1.ZH.1815 LC Turicum M SUI 16.09.2008 Y U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X X
228 1142 A:999905 Grünberg Eli 2008 1.ZH.1815 LC Turicum M SUI 06.07.2008 U16M 20 Gr. 2 U16M 10:05 4-K ZH X X
229 1143 A:999903 Buob Xavier 2007 1.ZH.1815 LC Turicum M SUI 18.08.2007 U16M 20 Gr. 2 U16M 10:05 4-K ZH X X X X
230 184 244201 Bischoff Lena 2007 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 04.08.2007 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
231 187 173426 Frei Luisa 2008 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 14.12.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
232 188 174345 Hafner Lina 2008 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 12.11.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
233 189 174163 Küenzi Nina 2008 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 26.08.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
234 190 176245 Ruff Stella 2008 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 21.03.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
235 191 247358 Stanek Ava 2008 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 14.08.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X
236 192 173436 Stocker Alessandra 2008 1.ZH.1802 LAC TV Unterstrass Zürich W ITA 23.09.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
237 272 176422 Paul Shaniqua 2008 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 15.08.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
238 296 249620 Uffer Lea 2008 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 20.11.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
239 300 247685 Moser Isabelle 2008 1.ZH.1802 LAC TV Unterstrass Zürich W SUI 06.02.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
240 14 251279 Kümmerle Salome 2008 1.ZH.1898 TV Richterswil W SUI 28.07.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X X X
241 274 257490 Streiff Sina 2008 1.ZH.1898 TV Richterswil W SUI 18.09.2008 Y U16W 21 Gr. 1 U16W 11:45 4-K ZH X
242 678 170051 Zivkovic Ema 2007 1.ZH.1804 LC Zürich W SUI 23.05.2007 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X X
243 680 168162 Temeng Christa 2007 1.ZH.1804 LC Zürich W SUI 15.04.2007 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X
244 681 253865 Strati Alkyoni 2008 1.ZH.1804 LC Zürich W SUI 24.10.2008 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X X
245 682 174026 Suter Leandra 2007 1.ZH.1804 LC Zürich W SUI 29.11.2007 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X X
246 683 249870 Schweizer Yukiho 2007 1.ZH.1804 LC Zürich W SUI 07.01.2007 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X
247 684 173434 Schmid Nina 2008 1.ZH.1804 LC Zürich W SUI 20.09.2008 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X X
248 685 249959 Ndjanseb Savannah 2008 1.ZH.1804 LC Zürich W SUI 06.09.2008 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X X
249 908 251498 Estive Labacena Flavia 2008 1.ZH.1804 LC Zürich W SUI 23.08.2008 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X X
250 910 251044 Lanz Nina 2008 1.ZH.1804 LC Zürich W SUI 21.02.2008 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X
251 912 170489 Locatelli Valentina 2008 1.ZH.1804 LC Zürich W SUI 28.07.2008 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X X
252 913 169998 Mangili Elena 2008 1.ZH.1804 LC Zürich W SUI 18.01.2008 Y U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X X
253 932 A:999912 Guli Siper 2008 1.ZH.1804 LC Zürich W GRE 11.01.2008 U16W 22 Gr. 2 U16W 11:50 4-K ZH X X X X
254 140 244479 Wright Maja 2007 1.ZH.1840 TV Thalwil W SUI 31.03.2007 Y U16W 23 Gr. 3 U16W 13:25 4-K ZH X X X
255 687 247228 Siegfried Ariane 2007 1.ZH.1840 TV Thalwil W SUI 14.09.2007 Y U16W 23 Gr. 3 U16W 13:25 4-K ZH X X X
256 692 172513 Urosevic Jovana 2007 1.ZH.1840 TV Thalwil W SRB 24.03.2007 Y U16W 23 Gr. 3 U16W 13:25 4-K ZH X X X X
257 693 246223 Dupont Lorena 2007 1.ZH.1840 TV Thalwil W SUI 17.09.2007 Y U16W 23 Gr. 3 U16W 13:25 4-K ZH X X X
258 694 252365 Nünlist Olivia 2007 1.ZH.1840 TV Thalwil W SUI 18.01.2007 Y U16W 23 Gr. 3 U16W 13:25 4-K ZH X X X
259 695 164860 Bürgi Vittoria 2007 1.ZH.1840 TV Thalwil W SUI 18.08.2007 Y U16W 23 Gr. 3 U16W 13:25 4-K ZH X X X
260 741 252360 Besic Jasmina 2008 1.ZH.1840 TV Thalwil W SUI 28.05.2008 Y U16W 23 Gr. 3 U16W 13:25 4-K ZH X X X X
261 853 250347 Keller Selina 2007 1.ZH.1837 LC Meilen W SUI 29.08.2007 Y U16W 23 Gr. 3 U16W 13:25 4-K ZH X X
262 866 A:999924 Capelli Livia 2007 1.ZH.1837 LC Meilen W SUI 23.06.2007 U16W 23 Gr. 3 U16W 13:25 4-K ZH X
263 1164 260375 Hürzeler Lavinia 2008 1.ZH.1837 LC Meilen W SUI 24.01.2008 Y U16W 23 Gr. 3 U16W 13:25 4-K ZH X
264 1140 254678 Zanella Luana 2007 1.ZH.1815 LC Turicum W SUI 10.12.2007 N U16W 23 Gr. 3 U16W 13:25 4-K ZH X X X X
265 281 249694 Brüschweiler Miriam 2008 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 20.05.2008 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X X X
266 282 174261 Flückiger Lou 2007 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 23.03.2007 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X X X
267 283 245620 Kretzschmar Zarya 2007 1.ZH.1869 LGKE Küsnacht-Erlenbach W GER 18.06.2007 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X X
268 284 245621 Lindner Frida 2008 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 31.05.2008 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X X
269 285 245624 Sigrist Jaël 2008 1.ZH.1869 LGKE Küsnacht-Erlenbach W SUI 02.10.2008 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X X X
270 286 258090 Diedrich Vivienne 2008 1.ZH.1869 LGKE Küsnacht-Erlenbach W GER 06.08.2008 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X X X
271 1040 252945 Baumgartner Annina 2008 1.ZH.1833 LAR TV Rüti W SUI 26.04.2008 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X
272 1057 173773 Lee Viviane 2007 1.ZH.1833 LAR TV Rüti W SUI 02.06.2007 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X
273 1060 249224 Oettl Anika 2008 1.ZH.1833 LAR TV Rüti W SUI 01.11.2008 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X
274 1064 252942 Ruoss Jennifer 2008 1.ZH.1833 LAR TV Rüti W SUI 24.11.2008 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X
275 1069 173775 Schneider Lea 2007 1.ZH.1833 LAR TV Rüti W SUI 18.10.2007 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X
276 1079 170340 Zannini Jael 2007 1.ZH.1833 LAR TV Rüti W SUI 26.03.2007 Y U16W 24 Gr. 4 U16W 13:30 4-K ZH X X

@ -1,286 +0,0 @@
Anmeldenr;Lizenznr;Name;Vorname;Jahrgang;Verein;Club-Name;Geschlecht;Nationalitaet;GebDat;Bez;Kategorie;GruppeNr;GruppeName;Startzeit;Bewerb;Kanton;KidID;W1;W2;W3;W4
6;255982;Straube;Tommy;2011;1.ZH.1828;LC Uster;M;SUI;15.11.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
8;256044;Haas;Leandro;2011;1.ZH.1828;LC Uster;M;SUI;04.12.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
147;259257;In-Albon;Mino;2012;1.ZH.1828;LC Uster;M;SUI;25.09.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;X
240;259605;Leonhardt;Julius;2011;1.ZH.1828;LC Uster;M;SUI;11.07.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
241;259499;Ackermann;Vin;2012;1.ZH.1828;LC Uster;M;SUI;12.11.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;X
242;259281;Salzmann;Aaron;2011;1.ZH.1828;LC Uster;M;SUI;09.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
510;259609;Neumann;Nemo;2011;1.ZH.1828;LC Uster;M;SUI;05.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;X;
574;255495;Rüdt;Marlon;2011;1.ZH.1822;LV Winterthur;M;SUI;15.10.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;X
576;255156;Simperl;Marius;2011;1.ZH.1822;LV Winterthur;M;SUI;04.03.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
591;258937;Brügge;Björn;2011;1.ZH.1822;LV Winterthur;M;GER;13.07.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
598;258956;Jost;Nicolas;2012;1.ZH.1822;LV Winterthur;M;SUI;16.08.2012;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;X;X
600;258934;Lamprecht;Maurus;2011;1.ZH.1822;LV Winterthur;M;SUI;23.02.2011;Y;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;X;;
1153;A:999898;Lüscher;Rico;2012;1.ZH.1887;Turnverein Wiesendangen;M;SUI;03.01.2012;;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
1156;A:999896;Hofer;Nevio;2011;1.ZH.1887;Turnverein Wiesendangen;M;SUI;10.07.2011;;U12M;1;Gr. 1 U12M;10:15;4-K;ZH;;X;;;
650;257961;Grob;Cyril;2011;1.ZH.1832;LV Zürcher Oberland;M;SUI;24.02.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;
652;255086;Caflisch;Livio;2011;1.ZH.1832;LV Zürcher Oberland;M;SUI;07.04.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
659;256648;Ruf;Andri;2011;1.ZH.1832;LV Zürcher Oberland;M;SUI;08.07.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
662;259675;Steiner;Eric;2012;1.ZH.1832;LV Zürcher Oberland;M;SUI;10.07.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
934;255070;Schmid;Fabio;2011;1.ZH.1862;LA Wyland;M;SUI;28.01.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;X;
1038;259843;Weybora;Florin;2012;1.ZH.1827;Leichtathletik-Club Dübendorf;M;AUT;06.05.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;X;X
750;255308;Krebs;Jonas;2011;1.ZH.1820;TV Dietlikon;M;SUI;10.09.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
404;256195;Ulli;Florian;2012;1.ZH.1819;TV Kloten LA;M;SUI;10.09.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;;
697;259825;Figura;Alberto;2011;1.ZH.1819;TV Kloten LA;M;SUI;20.09.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
738;A:999928;Baumgartner;Tom;2011;1.ZH.1819;TV Kloten LA;M;SUI;01.11.2011;;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;;;
338;256523;Wittel;Jörn;2011;1.ZH.1871;TV Otelfingen;M;GER;07.02.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
342;259712;Schelbert;Tim;2012;1.ZH.1871;TV Otelfingen;M;SUI;01.09.2012;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
53;246679;Grond;Dyah;2011;1.ZH.1845;LV Albis;M;SUI;28.08.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
94;255330;Stuckert;Dennis;2011;1.ZH.1845;LV Albis;M;SUI;06.03.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
116;255710;Grabherr;Dominic;2011;1.ZH.1845;LV Albis;M;SUI;07.06.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
122;255712;Nievergelt;Flurin;2011;1.ZH.1845;LV Albis;M;SUI;28.03.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
123;255711;Palermo;Domenico;2011;1.ZH.1845;LV Albis;M;SUI;03.06.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
134;256818;Basso;Leo;2011;1.ZH.1845;LV Albis;M;SUI;12.10.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
303;253455;Schnidrig;LEvin;2012;1.ZH.1845;LV Albis;M;SUI;16.02.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
308;259710;Rüegg;Levin;2011;1.ZH.1845;LV Albis;M;SUI;05.08.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
309;259713;Ott;Leano;2012;1.ZH.1845;LV Albis;M;SUI;25.10.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
321;255195;Zurbuchen;Remo;2011;1.ZH.1811;LC Regensdorf;M;SUI;30.09.2011;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
322;259072;Hongler;Noah;2012;1.ZH.1811;LC Regensdorf;M;SUI;22.01.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;;X;X
323;255196;Siegrist;Fabrice;2012;1.ZH.1811;LC Regensdorf;M;SUI;16.02.2012;Y;U12M;3;Gr. 3 U12M;11:25;4-K;ZH;;X;X;X;X
581;256752;Maurer;Johanna;2011;1.ZH.1822;LV Winterthur;W;SUI;18.06.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
582;255004;Popp;Luzia;2011;1.ZH.1822;LV Winterthur;W;SUI;07.05.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
595;258952;Fröse;Jasmin;2012;1.ZH.1822;LV Winterthur;W;SUI;22.02.2012;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
601;258939;Müller;Anna;2011;1.ZH.1822;LV Winterthur;W;SUI;29.09.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
606;258954;Rebitzer;Viktoria;2012;1.ZH.1822;LV Winterthur;W;SUI;15.12.2012;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
607;258940;Salzinger;Joana;2011;1.ZH.1822;LV Winterthur;W;SUI;13.05.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
609;258942;Tauscher;Malin;2012;1.ZH.1822;LV Winterthur;W;SUI;01.03.2012;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
610;258935;Üre Villoria;Nelia;2011;1.ZH.1822;LV Winterthur;W;SUI;03.06.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;;X
612;258930;Wilkens;Elin;2011;1.ZH.1822;LV Winterthur;W;SUI;17.10.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
614;259545;Zinth;Martha;2011;1.ZH.1822;LV Winterthur;W;GER;07.02.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;
732;259837;Furter;Jennifer;2011;1.ZH.1822;LV Winterthur;W;SUI;14.05.2011;Y;U12W;4;Gr. 1 U12W;11:30;4-K;ZH;;X;;X;X
84;251478;Perks;Lucia;2011;1.ZH.1845;LV Albis;W;SUI;08.06.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;;X;X
117;253460;Gugerli;Greta;2011;1.ZH.1845;LV Albis;W;SUI;16.09.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
119;249481;Meier;Angelina;2011;1.ZH.1845;LV Albis;W;SUI;25.08.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
125;255708;Sangermano;Lorena;2011;1.ZH.1845;LV Albis;W;SUI;18.06.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
130;250319;Cosabic;Ilma;2011;1.ZH.1845;LV Albis;W;99;26.12.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
131;256671;Kadriaj;Alina;2011;1.ZH.1845;LV Albis;W;SUI;25.09.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;;X;X
302;253462;Walter;Elin;2012;1.ZH.1845;LV Albis;W;SUI;16.10.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;;X;X
307;259711;Tutu;Merle Nerina;2012;1.ZH.1845;LV Albis;W;SUI;29.01.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
393;259779;Zekic;Alya;2012;1.ZH.1845;LV Albis;W;SUI;07.09.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;;X
394;259777;Notarnicola;Valentina;2011;1.ZH.1845;LV Albis;W;SUI;04.01.2011;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
395;259776;Notarnicola;Romina;2012;1.ZH.1845;LV Albis;W;SUI;09.04.2012;Y;U12W;5;Gr. 2 U12W;12:50;4-K;ZH;;X;X;X;X
396;259778;Nogler;Ladina;2012;1.ZH.1845;LV Albis;W;SUI;06.11.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
744;259870;Spauwen;Rahel;2012;1.ZH.1845;LV Albis;W;SUI;04.04.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
746;259872;Fabian;Melina;2012;1.ZH.1845;LV Albis;W;SUI;07.03.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
1107;258176;Van Elst;Aniek;2012;1.ZH.1845;LV Albis;W;NED;14.07.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;
313;255203;Spottek;Mia;2011;1.ZH.1811;LC Regensdorf;W;SUI;25.07.2011;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
314;255205;Boutiuc;Scarlet;2011;1.ZH.1811;LC Regensdorf;W;SUI;21.01.2011;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
315;259073;Schweizer;Ella;2012;1.ZH.1811;LC Regensdorf;W;SUI;31.03.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;;X;X
316;255207;Wollscheid;Zoe;2011;1.ZH.1811;LC Regensdorf;W;SUI;28.03.2011;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
317;259076;Desait;Céline;2012;1.ZH.1811;LC Regensdorf;W;SUI;12.09.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
318;259077;Cuche;Pauline;2012;1.ZH.1811;LC Regensdorf;W;SUI;09.07.2012;Y;U12W;6;Gr. 3 U12W;12:55;4-K;ZH;;X;X;X;X
333;256458;Burkhalter;Paula;2011;1.ZH.1871;TV Otelfingen;W;SUI;03.07.2011;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
334;256459;Fort;Elena;2011;1.ZH.1871;TV Otelfingen;W;SUI;04.02.2011;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;;;
340;259294;Glauser;Soraya;2012;1.ZH.1871;TV Otelfingen;W;SUI;06.09.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
341;259295;Landolt;Lisa;2012;1.ZH.1871;TV Otelfingen;W;SUI;07.12.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
639;253745;Scheurer;Mya;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;05.02.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
647;256286;Wolf;Lilli;2011;1.ZH.1832;LV Zürcher Oberland;W;SUI;17.01.2011;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
660;259405;Rauber;Hannah;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;12.08.2012;Y;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
667;A:999937;Achermann;Yana;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;15.09.2012;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;;X;
668;A:999936;Heusser;Ladina;2012;1.ZH.1832;LV Zürcher Oberland;W;SUI;19.05.2012;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;;X;X
670;A:999934;Knabenhans;Anina;2011;1.ZH.1832;LV Zürcher Oberland;W;SUI;16.01.2011;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
672;A:999933;Zollinger;Elina;2011;1.ZH.1832;LV Zürcher Oberland;W;SUI;03.05.2011;;U12W;7;Gr. 4 U12W;14:15;4-K;ZH;;X;X;X;X
144;259383;Zwyssig;Léanne Céline;2012;1.ZH.1828;LC Uster;W;SUI;02.06.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;;
145;259280;Zwiker;Leena;2012;1.ZH.1828;LC Uster;W;SUI;04.09.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;
148;259247;Messikommer;Lily;2012;1.ZH.1828;LC Uster;W;SUI;05.04.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;X
150;257003;Ziörjen;Romina;2012;1.ZH.1828;LC Uster;W;SUI;03.08.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
151;256981;Schwarz;Avania;2011;1.ZH.1828;LC Uster;W;SUI;10.09.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;
269;259388;Müller;Emma;2011;1.ZH.1828;LC Uster;W;SUI;08.08.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;
928;249300;Maurer;Kira Leila;2011;1.ZH.1862;LA Wyland;W;SUI;06.04.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;;X
936;249299;Kälin;Sanni;2011;1.ZH.1862;LA Wyland;W;SUI;07.03.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;;X;X
942;259250;Frauenfelder;Rina;2012;1.ZH.1862;LA Wyland;W;SUI;24.09.2012;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;
999;249203;Müller;Alicia;2011;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;01.03.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
405;257439;Chiapparini;Julia;2011;1.ZH.1819;TV Kloten LA;W;SUI;02.09.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
406;257481;Clerc;Leonie;2011;1.ZH.1819;TV Kloten LA;W;SUI;10.03.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
407;258016;Koller;Linnea;2011;1.ZH.1819;TV Kloten LA;W;SUI;09.08.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
411;A:999986;Signer;Liya;2012;1.ZH.1819;TV Kloten LA;W;SUI;14.06.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
473;254172;Quartu;Peace;2011;1.ZH.1819;TV Kloten LA;W;SUI;09.01.2011;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
696;259821;Ammann;Shirin;2012;1.ZH.1819;TV Kloten LA;W;SUI;17.04.2012;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;X;
698;259822;Barattini;Anna;2012;1.ZH.1819;TV Kloten LA;W;ITA;30.05.2012;Y;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;X;;
1144;A:999902;Milovanovic;Lena;2012;1.ZH.1819;TV Kloten LA;W;SUI;09.03.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;X;;
1152;A:999900;Furrer;Celia;2012;1.ZH.1887;Turnverein Wiesendangen;W;SUI;23.01.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
1154;A:999899;Binder;Malea;2012;1.ZH.1887;Turnverein Wiesendangen;W;SUI;01.10.2012;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
1155;A:999897;Furrer;Rania;2011;1.ZH.1887;Turnverein Wiesendangen;W;SUI;27.08.2011;;U12W;9;Gr. 6 U12W;15:40;4-K;ZH;;X;;;
512;173725;Beranek-Chiu;Noah;2009;1.ZH.1822;LV Winterthur;M;GER;21.12.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
526;251627;Homberger;Tim Emerick;2009;1.ZH.1822;LV Winterthur;M;SUI;26.10.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
535;252659;Laib;Luc;2009;1.ZH.1822;LV Winterthur;M;SUI;09.12.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
537;253900;Lerch;Leon;2009;1.ZH.1822;LV Winterthur;M;SUI;21.05.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
546;252015;Ohlendorf;Norman;2010;1.ZH.1822;LV Winterthur;M;GER;04.10.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
555;252009;Srikannan;Santhosh;2010;1.ZH.1822;LV Winterthur;M;SUI;03.08.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;;X
559;252008;van Seumeren;Cornelius;2010;1.ZH.1822;LV Winterthur;M;SUI;08.12.2010;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;;X
564;173723;Wollnik;Robin;2009;1.ZH.1822;LV Winterthur;M;GER;02.11.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
570;255829;Hug;Matti;2009;1.ZH.1822;LV Winterthur;M;SUI;17.09.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
579;256756;Horisberger;Levi;2009;1.ZH.1822;LV Winterthur;M;SUI;30.01.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;X;X;X
584;256757;Stähli;Jonas;2009;1.ZH.1822;LV Winterthur;M;SUI;09.05.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
599;259157;Kromer;Gian;2009;1.ZH.1822;LV Winterthur;M;SUI;20.07.2009;Y;U14M;10;Gr. 1 U14M;10:25;4-K;ZH;;X;;X;X
642;176506;Vogt;Marc;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;15.03.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;;;
645;254356;Züst;Levin;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;09.01.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
646;255311;Gut;Lenny;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;13.09.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
649;257960;Frauchiger;Nelson;2010;1.ZH.1832;LV Zürcher Oberland;M;SUI;14.07.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
653;256716;Fussen;Milo;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;22.09.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;X
657;256732;Lechner;Mika;2009;1.ZH.1832;LV Zürcher Oberland;M;SUI;01.12.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
666;A:999938;Hess;Jonas;2010;1.ZH.1832;LV Zürcher Oberland;M;SUI;13.04.2010;;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;X
938;256225;Merk;Niklas;2009;1.ZH.1862;LA Wyland;M;SUI;10.03.2009;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;X
940;255072;Stegemann;Leon;2010;1.ZH.1862;LA Wyland;M;SUI;11.08.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;X;
748;253122;Güler;Eray;2010;1.ZH.1820;TV Dietlikon;M;SUI;23.01.2010;Y;U14M;11;Gr. 2 U14M;11:05;4-K;ZH;;X;X;;
19;253118;Bengo-Oliveri;Henry;2009;1.ZH.1845;LV Albis;M;UGA;01.01.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
28;249485;Brodda;Henri Caspar;2010;1.ZH.1845;LV Albis;M;SUI;13.02.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;;X
69;253448;Kourpas;Adam;2010;1.ZH.1845;LV Albis;M;GBR;03.10.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;X;X
1175;A:999886;Nji;Steve Mbeng;2010;1.ZH.1845;LV Albis;M;CMR;07.03.2010;;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
95;247238;Tschochner;Fabian;2010;1.ZH.1845;LV Albis;M;GER;08.11.2010;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;X;X
101;249483;Waldmeier;Janis;2009;1.ZH.1845;LV Albis;M;SUI;28.04.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
1088;245932;Kresken;Tim;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;19.12.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
1090;171052;Müller;Jan;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;16.08.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
337;256456;Steinholtz;Zachary;2009;1.ZH.1871;TV Otelfingen;M;SUI;06.05.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;X;X
403;255397;Wirz;Navin;2009;1.ZH.1819;TV Kloten LA;M;SUI;21.08.2009;Y;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;X;;
699;A:999989;Pepic;Novak;2010;1.ZH.1819;TV Kloten LA;M;SUI;01.02.2010;;U14M;12;Gr. 3 U14M;11:35;4-K;ZH;;X;;;
173;248706;Siegrist;Joel;2009;1.ZH.1811;LC Regensdorf;M;SUI;17.07.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
179;176199;Wilhelm;Alejandro;2010;1.ZH.1811;LC Regensdorf;M;SUI;08.01.2010;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;X;
183;259067;Döbeli;Lukas;2010;1.ZH.1811;LC Regensdorf;M;SUI;27.02.2010;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;X;
325;259085;Van der Heijden;Alexander;2010;1.ZH.1811;LC Regensdorf;M;SUI;01.01.2010;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;X;X
2;249353;Nesterak;Tim Dennis;2009;1.ZH.1828;LC Uster;M;SUI;22.01.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;;
7;256742;Vischer;Cédric;2009;1.ZH.1828;LC Uster;M;SUI;26.09.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;X;;X
13;259349;Müller;Carlo;2009;1.ZH.1828;LC Uster;M;SUI;26.11.2009;Y;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;X;
1149;246337;Krüsi;Benedikt;2009;1.ZH.1887;Turnverein Wiesendangen;M;SUI;23.06.2009;N;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
1158;A:999894;Binder;Rouven;2010;1.ZH.1887;Turnverein Wiesendangen;M;SUI;21.02.2010;;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
1159;A:999893;Furrer;Nino;2009;1.ZH.1887;Turnverein Wiesendangen;M;SUI;04.11.2009;;U14M;13;Gr. 4 U14M;12:25;4-K;ZH;;X;;;
156;252908;Canzillon;Kina;2009;1.ZH.1811;LC Regensdorf;W;FRA;17.07.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
158;255191;Favre-Bulle;Gabriela;2009;1.ZH.1811;LC Regensdorf;W;SUI;24.08.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
161;253180;Heiderich;Leonie;2010;1.ZH.1811;LC Regensdorf;W;SUI;20.09.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;
162;255202;Hürzeler;Noemi;2010;1.ZH.1811;LC Regensdorf;W;SUI;28.02.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;X
165;255200;Mamais;Sofia;2010;1.ZH.1811;LC Regensdorf;W;SUI;01.10.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
171;248719;Schildknecht;Maude Vivienne;2009;1.ZH.1811;LC Regensdorf;W;SUI;30.08.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
172;253198;Schwedhelm;Jula;2010;1.ZH.1811;LC Regensdorf;W;GER;23.09.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;
175;252909;Suter;Kisha;2009;1.ZH.1811;LC Regensdorf;W;SUI;08.04.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;X;X
176;253184;Thöni;Lily Mia;2010;1.ZH.1811;LC Regensdorf;W;SUI;31.03.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;;X;
398;253588;Barattini;Martina;2010;1.ZH.1819;TV Kloten LA;W;SUI;20.04.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;;
399;247793;Gläser;Sarah;2009;1.ZH.1819;TV Kloten LA;W;SUI;27.04.2009;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;;
402;255394;Ulli;Céline;2010;1.ZH.1819;TV Kloten LA;W;SUI;08.09.2010;Y;U14W;14;Gr. 1 U14W;13:00;4-K;ZH;;X;X;;
515;248457;Bohn;Hannah Luna;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
516;252007;Brügger;Lenja;2010;1.ZH.1822;LV Winterthur;W;SUI;14.06.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
518;252017;Erny;Liana;2010;1.ZH.1822;LV Winterthur;W;SUI;22.05.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;;X;X
519;173367;Facchinetti;Elisa;2009;1.ZH.1822;LV Winterthur;W;SUI;14.12.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;;X
521;252144;Fiorucci;Malena;2010;1.ZH.1822;LV Winterthur;W;SUI;08.06.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
541;252006;Meier;Jael;2009;1.ZH.1822;LV Winterthur;W;SUI;30.04.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
542;252914;Mohn;Jonna;2009;1.ZH.1822;LV Winterthur;W;SUI;28.07.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;;;X
560;252660;Vock;Marta;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
567;254758;Egli;Somea;2009;1.ZH.1822;LV Winterthur;W;SUI;02.10.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
569;254856;Gürtler;Elin;2010;1.ZH.1822;LV Winterthur;W;SUI;12.02.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
572;255079;Lehner;Lea;2010;1.ZH.1822;LV Winterthur;W;SUI;14.04.2010;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
586;257488;Heeb;Leandra;2009;1.ZH.1822;LV Winterthur;W;SUI;19.09.2009;Y;U14W;15;Gr. 2 U14W;13:40;4-K;ZH;;X;X;X;X
589;258933;Banyoczki;Cya;2010;1.ZH.1822;LV Winterthur;W;SUI;09.01.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
590;258925;Bitter;Anjali Maya;2009;1.ZH.1822;LV Winterthur;W;GER;25.04.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
597;258938;Joost;Lina;2010;1.ZH.1822;LV Winterthur;W;SUI;22.09.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
603;258936;Pahud;Sari;2010;1.ZH.1822;LV Winterthur;W;SUI;25.07.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
917;252164;Aeschimann;Lina;2010;1.ZH.1862;LA Wyland;W;SUI;01.10.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
919;249306;Berger;Ayana;2009;1.ZH.1862;LA Wyland;W;SUI;03.08.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;;X;
924;249308;Kälin;Mia;2009;1.ZH.1862;LA Wyland;W;SUI;13.07.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
925;253798;Klemenz;Amélie;2010;1.ZH.1862;LA Wyland;W;SUI;19.08.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
931;244702;Stoll;Caroline;2009;1.ZH.1862;LA Wyland;W;SUI;17.03.2009;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;;;X
937;255069;Merk;Malin;2010;1.ZH.1862;LA Wyland;W;SUI;07.11.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;X
939;255068;Prister;Lene;2010;1.ZH.1862;LA Wyland;W;SUI;03.05.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;;X;
920;249304;Griesser;Lenja;2010;1.ZH.1862;LA Wyland;W;SUI;02.02.2010;Y;U14W;16;Gr. 3 U14W;14:25;4-K;ZH;;X;X;X;
35;247789;Chechele;Mara;2010;1.ZH.1845;LV Albis;W;SUI;23.07.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
48;172495;Gallo;Giada;2009;1.ZH.1845;LV Albis;W;SUI;02.07.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
55;174574;Gugerli;Carla;2009;1.ZH.1845;LV Albis;W;SUI;09.11.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
57;249487;Häfliger;Elin;2009;1.ZH.1845;LV Albis;W;SUI;14.07.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;;X;X
85;246691;Plüss;Livia;2010;1.ZH.1845;LV Albis;W;SUI;19.06.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
93;253451;Stalder;Alina;2010;1.ZH.1845;LV Albis;W;SUI;12.04.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
96;246694;Utzinger;Larissa;2010;1.ZH.1845;LV Albis;W;SUI;02.03.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
102;249484;Walter;Michelle;2010;1.ZH.1845;LV Albis;W;SUI;22.09.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;;X;X
107;174573;Wicki;Ciara;2010;1.ZH.1845;LV Albis;W;SUI;14.11.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
330;248960;Beeler;Sasha;2009;1.ZH.1871;TV Otelfingen;W;SUI;09.04.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
332;256457;Burkhalter;Hanna;2010;1.ZH.1871;TV Otelfingen;W;SUI;02.01.2010;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
335;256520;Glauser;Lavinia;2009;1.ZH.1871;TV Otelfingen;W;SUI;23.07.2009;Y;U14W;17;Gr. 4 U14W;14:55;4-K;ZH;;X;X;X;X
108;250321;Wicki;Serena;2009;1.ZH.1845;LV Albis;W;SUI;29.08.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
120;255704;Moser;Aline;2010;1.ZH.1845;LV Albis;W;SUI;06.12.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;
312;259717;Haldemann;Lina;2009;1.ZH.1845;LV Albis;W;SUI;14.10.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
743;259871;Steinke;Lara;2010;1.ZH.1845;LV Albis;W;GER;21.04.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
1108;246687;Mutti;Mara;2010;1.ZH.1845;LV Albis;W;SUI;06.10.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
629;251296;Auer;Laura;2009;1.ZH.1832;LV Zürcher Oberland;W;SUI;25.08.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
631;245549;Keiser;Angelina;2009;1.ZH.1832;LV Zürcher Oberland;W;SUI;11.03.2009;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;;;
656;256638;Kühnis;Maris;2010;1.ZH.1832;LV Zürcher Oberland;W;SUI;01.07.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;;X
661;259594;Debrunner;Janina;2010;1.ZH.1832;LV Zürcher Oberland;W; ;30.04.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;;X;X
663;259674;Steiner;Jana;2010;1.ZH.1832;LV Zürcher Oberland;W;SUI;01.08.2010;Y;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
665;A:999939;Widmer;Johanna;2009;1.ZH.1832;LV Zürcher Oberland;W;SUI;23.09.2009;;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
671;A:999940;De Vylder;Aisha;2010;1.ZH.1832;LV Zürcher Oberland;W;SUI;04.04.2010;;U14W;18;Gr. 5 U14W;15:45;4-K;ZH;;X;X;X;X
3;253820;Schmid;Léane;2010;1.ZH.1828;LC Uster;W;SUI;30.06.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
5;251505;Yapi;Laeticia;2010;1.ZH.1828;LC Uster;W;SUI;26.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;X;X
9;256986;Bertolini;Flavia;2010;1.ZH.1828;LC Uster;W;SUI;14.10.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
139;253123;Toller;Liv;2010;1.ZH.1828;LC Uster;W;SUI;17.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
141;256714;Rrahmani;Elsa;2009;1.ZH.1828;LC Uster;W;KOS;04.07.2009;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;X;
1084;254473;Barletta;Myrhiam;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;ITA;04.03.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;;
1089;245934;Kunz;Sophie;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;18.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;X;
1092;245937;Tamas;Elena;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;08.01.2010;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
1093;174616;Tresch;Oliana;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;02.09.2009;N;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;;
1096;257391;Obradovic;Marija;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;CRO;23.12.2009;Y;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;X;X;X
1148;246255;Sigg;Elin;2009;1.ZH.1887;Turnverein Wiesendangen;W;SUI;07.07.2009;N;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;;
1157;A:999895;Pavic;Nikolina;2010;1.ZH.1887;Turnverein Wiesendangen;W;SUI;25.05.2010;;U14W;19;Gr. 6 U14W;16:15;4-K;ZH;;X;;;
514;176205;Bisang;Jeremias;2007;1.ZH.1822;LV Winterthur;M;SUI;05.09.2007;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;X
523;253924;Graber;Henry;2008;1.ZH.1822;LV Winterthur;M;SUI;26.11.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
529;175424;Käser;Silvan;2008;1.ZH.1822;LV Winterthur;M;SUI;22.04.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;X
536;248541;Lamprecht;Corvin;2008;1.ZH.1822;LV Winterthur;M;SUI;30.06.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;;X
553;253631;Serhani;Rachid;2007;1.ZH.1822;LV Winterthur;M;SUI;15.11.2007;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
556;255336;Stähli;Tobias;2007;1.ZH.1822;LV Winterthur;M;SUI;03.06.2007;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
733;259644;Weibel;Lionel;2008;1.ZH.1822;LV Winterthur;M;SUI;04.09.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
734;A:999930;Magalhaes;Jarrel Damien;2008;1.ZH.1822;LV Winterthur;M;SUI;12.02.2008;;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
793;161330;Klaus;Michael;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;08.04.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
918;249309;Aeschimann;Phineas;2008;1.ZH.1862;LA Wyland;M;SUI;12.08.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
921;244706;Griesser;Nino;2008;1.ZH.1862;LA Wyland;M;SUI;28.10.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;
929;176171;Schneeberger;Moritz;2008;1.ZH.1862;LA Wyland;M;SUI;04.09.2008;Y;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;X;X;X
1150;174247;Krüsi;Julian;2007;1.ZH.1887;Turnverein Wiesendangen;M;SUI;17.05.2007;N;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;;;
1151;246340;Schmid;Andrin;2007;1.ZH.1887;Turnverein Wiesendangen;M;SUI;30.05.2007;N;U16M;20;Gr. 1 U16M;10:00;4-K;ZH;;X;;;
152;173598;Beyeler;Levin;2008;1.ZH.1811;LC Regensdorf;M;SUI;13.04.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;;X;
166;165311;Marcantonio;Fabio;2007;1.ZH.1811;LC Regensdorf;M;SUI;14.02.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
328;254705;Radosarljevic;Luka;2008;1.ZH.1811;LC Regensdorf;M;SUI;01.12.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
475;244746;Totaro;Luca;2008;1.ZH.1828;LC Uster;M;SUI;07.10.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
1099;173387;Zisler;Constantin;2007;1.ZH.1828;LC Uster;M;AUT;12.07.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;;;
75;169996;Moret;Timo;2008;1.ZH.1845;LV Albis;M;SUI;01.05.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
97;166336;Van der Aar;Lars;2007;1.ZH.1845;LV Albis;M;NED;12.04.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
636;166007;Pfister;Marc;2007;1.ZH.1832;LV Zürcher Oberland;M;SUI;20.02.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
654;256684;Keller;Severin;2008;1.ZH.1832;LV Zürcher Oberland;M;SUI;31.08.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;;;
749;244803;Häberli;Tom Luca;2007;1.ZH.1820;TV Dietlikon;M;SUI;25.08.2007;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
753;256868;Koch;Fabian;2008;1.ZH.1820;TV Dietlikon;M;SUI;07.02.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
339;257441;Uebelhart;Jannis;2008;1.ZH.1871;TV Otelfingen;M;SUI;13.05.2008;Y;U16M;21;Gr. 2 U16M;10:05;4-K;ZH;;X;X;X;X
760;253964;Brasse;Leni;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;19.02.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
786;171044;Heusser;Marla;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;09.07.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;
788;164024;Imhof;Fabienne;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;30.03.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
814;244806;Niederberger;Selina;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;22.02.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
822;173780;Rutz;Linda;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;30.07.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;;
826;163411;Schmid;Desirée;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;17.08.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;;X;X
1102;163400;Bieder;Laura;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;22.11.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
1105;244686;Kerényi;Lea;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;21.03.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
343;244115;Adel;Victoria;2007;1.ZH.1828;LC Uster;W;IRL;30.08.2007;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;X;X;X
637;246924;Ramsauer;Mia;2008;1.ZH.1832;LV Zürcher Oberland;W;SUI;06.10.2008;Y;U16W;22;Gr. 1 U16W;11:45;4-K;ZH;;X;;X;X
153;248712;Biaggi;Jael;2007;1.ZH.1811;LC Regensdorf;W;SUI;13.04.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;X
159;248716;Fuchser;Fiona;2008;1.ZH.1811;LC Regensdorf;W;SUI;08.05.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
168;244758;Müller;Lennja;2008;1.ZH.1811;LC Regensdorf;W;SUI;10.10.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
169;247288;Reichler;Ella;2008;1.ZH.1811;LC Regensdorf;W;SUI;25.04.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
178;252907;Witschi;Lisa;2008;1.ZH.1811;LC Regensdorf;W;SUI;13.10.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;X
182;256772;Bugmann;Selina;2008;1.ZH.1811;LC Regensdorf;W;SUI;24.10.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
329;245103;Lorenzo;Leonie Luana;2007;1.ZH.1811;LC Regensdorf;W;SUI;28.12.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;;X;
17;176016;Baer;Irina;2007;1.ZH.1845;LV Albis;W;SUI;21.09.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
49;172494;Gallo;Marzia;2007;1.ZH.1845;LV Albis;W;SUI;12.08.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
52;246678;Grollimund;Annik;2008;1.ZH.1845;LV Albis;W;SUI;26.11.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
91;171970;Schuster;Joy;2007;1.ZH.1845;LV Albis;W;SUI;27.04.2007;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
104;166339;Wärdell;Hanna;2008;1.ZH.1845;LV Albis;W;SUI;08.01.2008;Y;U16W;23;Gr. 2 U16W;11:50;4-K;ZH;;X;X;X;X
517;243983;Bühler;Alicia;2008;1.ZH.1822;LV Winterthur;W;SUI;19.09.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;
520;168121;Fierz;Tyra;2007;1.ZH.1822;LV Winterthur;W;SUI;04.02.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
524;248458;Gubler;Céline;2008;1.ZH.1822;LV Winterthur;W;SUI;15.06.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
525;171762;Hinderling;Jana;2007;1.ZH.1822;LV Winterthur;W;SUI;02.11.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;X
528;243979;Imafidon;Ronia;2008;1.ZH.1822;LV Winterthur;W;SUI;01.04.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
530;173228;Keel;Lena;2007;1.ZH.1822;LV Winterthur;W;SUI;28.01.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;;X
532;253632;Kifle;Nebyat;2008;1.ZH.1822;LV Winterthur;W;GER;17.12.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;X;X
538;251652;Mancuso;Giulia;2007;1.ZH.1822;LV Winterthur;W;SUI;03.09.2007;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;;X;
547;252012;Pfister;Linda;2008;1.ZH.1822;LV Winterthur;W;SUI;01.08.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;;X
549;243981;Rusova;Jana;2008;1.ZH.1822;LV Winterthur;W;CZE;26.04.2008;Y;U16W;24;Gr. 3 U16W;13:25;4-K;ZH;;X;X;;X
551;170240;Schnyder;Jacqueline;2008;1.ZH.1822;LV Winterthur;W;SUI;28.05.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
552;164856;Schnyder;Vanessa;2007;1.ZH.1822;LV Winterthur;W;SUI;22.01.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;X
566;255335;Dos Santos;Maria Vitoria;2008;1.ZH.1822;LV Winterthur;W;SUI;31.10.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
573;254757;Meissner;Neele;2008;1.ZH.1822;LV Winterthur;W;SUI;15.07.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;
613;258370;Züger;Michelle;2007;1.ZH.1822;LV Winterthur;W;SUI;10.10.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;X
923;173375;Gürtler;Anna;2007;1.ZH.1862;LA Wyland;W;SUI;25.01.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
926;173376;Lüthi;Nadja;2007;1.ZH.1862;LA Wyland;W;SUI;27.03.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;X;
927;173377;Maurer;Elena Lara;2007;1.ZH.1862;LA Wyland;W;SUI;26.07.2007;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;;X
930;255073;Schulthess;Sanna;2008;1.ZH.1862;LA Wyland;W;SUI;03.08.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;X;X;X
943;258536;Zürcher;Anja;2008;1.ZH.1862;LA Wyland;W;SUI;31.12.2008;Y;U16W;25;Gr. 4 U16W;13:30;4-K;ZH;;X;;;X
1 Anmeldenr Lizenznr Name Vorname Jahrgang Verein Club-Name Geschlecht Nationalitaet GebDat Bez Kategorie GruppeNr GruppeName Startzeit Bewerb Kanton KidID W1 W2 W3 W4
2 6 255982 Straube Tommy 2011 1.ZH.1828 LC Uster M SUI 15.11.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
3 8 256044 Haas Leandro 2011 1.ZH.1828 LC Uster M SUI 04.12.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
4 147 259257 In-Albon Mino 2012 1.ZH.1828 LC Uster M SUI 25.09.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X
5 240 259605 Leonhardt Julius 2011 1.ZH.1828 LC Uster M SUI 11.07.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
6 241 259499 Ackermann Vin 2012 1.ZH.1828 LC Uster M SUI 12.11.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X
7 242 259281 Salzmann Aaron 2011 1.ZH.1828 LC Uster M SUI 09.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
8 510 259609 Neumann Nemo 2011 1.ZH.1828 LC Uster M SUI 05.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
9 574 255495 Rüdt Marlon 2011 1.ZH.1822 LV Winterthur M SUI 15.10.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
10 576 255156 Simperl Marius 2011 1.ZH.1822 LV Winterthur M SUI 04.03.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
11 591 258937 Brügge Björn 2011 1.ZH.1822 LV Winterthur M GER 13.07.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X
12 598 258956 Jost Nicolas 2012 1.ZH.1822 LV Winterthur M SUI 16.08.2012 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X X X
13 600 258934 Lamprecht Maurus 2011 1.ZH.1822 LV Winterthur M SUI 23.02.2011 Y U12M 1 Gr. 1 U12M 10:15 4-K ZH X X
14 1153 A:999898 Lüscher Rico 2012 1.ZH.1887 Turnverein Wiesendangen M SUI 03.01.2012 U12M 1 Gr. 1 U12M 10:15 4-K ZH X
15 1156 A:999896 Hofer Nevio 2011 1.ZH.1887 Turnverein Wiesendangen M SUI 10.07.2011 U12M 1 Gr. 1 U12M 10:15 4-K ZH X
16 650 257961 Grob Cyril 2011 1.ZH.1832 LV Zürcher Oberland M SUI 24.02.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
17 652 255086 Caflisch Livio 2011 1.ZH.1832 LV Zürcher Oberland M SUI 07.04.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
18 659 256648 Ruf Andri 2011 1.ZH.1832 LV Zürcher Oberland M SUI 08.07.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
19 662 259675 Steiner Eric 2012 1.ZH.1832 LV Zürcher Oberland M SUI 10.07.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
20 934 255070 Schmid Fabio 2011 1.ZH.1862 LA Wyland M SUI 28.01.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
21 1038 259843 Weybora Florin 2012 1.ZH.1827 Leichtathletik-Club Dübendorf M AUT 06.05.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X
22 750 255308 Krebs Jonas 2011 1.ZH.1820 TV Dietlikon M SUI 10.09.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
23 404 256195 Ulli Florian 2012 1.ZH.1819 TV Kloten LA M SUI 10.09.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
24 697 259825 Figura Alberto 2011 1.ZH.1819 TV Kloten LA M SUI 20.09.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
25 738 A:999928 Baumgartner Tom 2011 1.ZH.1819 TV Kloten LA M SUI 01.11.2011 U12M 2 Gr. 2 U12M 10:20 4-K ZH X
26 338 256523 Wittel Jörn 2011 1.ZH.1871 TV Otelfingen M GER 07.02.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
27 342 259712 Schelbert Tim 2012 1.ZH.1871 TV Otelfingen M SUI 01.09.2012 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
28 53 246679 Grond Dyah 2011 1.ZH.1845 LV Albis M SUI 28.08.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
29 94 255330 Stuckert Dennis 2011 1.ZH.1845 LV Albis M SUI 06.03.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
30 116 255710 Grabherr Dominic 2011 1.ZH.1845 LV Albis M SUI 07.06.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
31 122 255712 Nievergelt Flurin 2011 1.ZH.1845 LV Albis M SUI 28.03.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
32 123 255711 Palermo Domenico 2011 1.ZH.1845 LV Albis M SUI 03.06.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
33 134 256818 Basso Leo 2011 1.ZH.1845 LV Albis M SUI 12.10.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
34 303 253455 Schnidrig LEvin 2012 1.ZH.1845 LV Albis M SUI 16.02.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
35 308 259710 Rüegg Levin 2011 1.ZH.1845 LV Albis M SUI 05.08.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
36 309 259713 Ott Leano 2012 1.ZH.1845 LV Albis M SUI 25.10.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
37 321 255195 Zurbuchen Remo 2011 1.ZH.1811 LC Regensdorf M SUI 30.09.2011 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
38 322 259072 Hongler Noah 2012 1.ZH.1811 LC Regensdorf M SUI 22.01.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X
39 323 255196 Siegrist Fabrice 2012 1.ZH.1811 LC Regensdorf M SUI 16.02.2012 Y U12M 3 Gr. 3 U12M 11:25 4-K ZH X X X X
40 581 256752 Maurer Johanna 2011 1.ZH.1822 LV Winterthur W SUI 18.06.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
41 582 255004 Popp Luzia 2011 1.ZH.1822 LV Winterthur W SUI 07.05.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
42 595 258952 Fröse Jasmin 2012 1.ZH.1822 LV Winterthur W SUI 22.02.2012 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
43 601 258939 Müller Anna 2011 1.ZH.1822 LV Winterthur W SUI 29.09.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
44 606 258954 Rebitzer Viktoria 2012 1.ZH.1822 LV Winterthur W SUI 15.12.2012 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
45 607 258940 Salzinger Joana 2011 1.ZH.1822 LV Winterthur W SUI 13.05.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
46 609 258942 Tauscher Malin 2012 1.ZH.1822 LV Winterthur W SUI 01.03.2012 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
47 610 258935 Üre Villoria Nelia 2011 1.ZH.1822 LV Winterthur W SUI 03.06.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
48 612 258930 Wilkens Elin 2011 1.ZH.1822 LV Winterthur W SUI 17.10.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
49 614 259545 Zinth Martha 2011 1.ZH.1822 LV Winterthur W GER 07.02.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X
50 732 259837 Furter Jennifer 2011 1.ZH.1822 LV Winterthur W SUI 14.05.2011 Y U12W 4 Gr. 1 U12W 11:30 4-K ZH X X X
51 84 251478 Perks Lucia 2011 1.ZH.1845 LV Albis W SUI 08.06.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
52 117 253460 Gugerli Greta 2011 1.ZH.1845 LV Albis W SUI 16.09.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
53 119 249481 Meier Angelina 2011 1.ZH.1845 LV Albis W SUI 25.08.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
54 125 255708 Sangermano Lorena 2011 1.ZH.1845 LV Albis W SUI 18.06.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
55 130 250319 Cosabic Ilma 2011 1.ZH.1845 LV Albis W 99 26.12.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
56 131 256671 Kadriaj Alina 2011 1.ZH.1845 LV Albis W SUI 25.09.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
57 302 253462 Walter Elin 2012 1.ZH.1845 LV Albis W SUI 16.10.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
58 307 259711 Tutu Merle Nerina 2012 1.ZH.1845 LV Albis W SUI 29.01.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
59 393 259779 Zekic Alya 2012 1.ZH.1845 LV Albis W SUI 07.09.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X
60 394 259777 Notarnicola Valentina 2011 1.ZH.1845 LV Albis W SUI 04.01.2011 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
61 395 259776 Notarnicola Romina 2012 1.ZH.1845 LV Albis W SUI 09.04.2012 Y U12W 5 Gr. 2 U12W 12:50 4-K ZH X X X X
62 396 259778 Nogler Ladina 2012 1.ZH.1845 LV Albis W SUI 06.11.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
63 744 259870 Spauwen Rahel 2012 1.ZH.1845 LV Albis W SUI 04.04.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
64 746 259872 Fabian Melina 2012 1.ZH.1845 LV Albis W SUI 07.03.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
65 1107 258176 Van Elst Aniek 2012 1.ZH.1845 LV Albis W NED 14.07.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X
66 313 255203 Spottek Mia 2011 1.ZH.1811 LC Regensdorf W SUI 25.07.2011 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
67 314 255205 Boutiuc Scarlet 2011 1.ZH.1811 LC Regensdorf W SUI 21.01.2011 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
68 315 259073 Schweizer Ella 2012 1.ZH.1811 LC Regensdorf W SUI 31.03.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X
69 316 255207 Wollscheid Zoe 2011 1.ZH.1811 LC Regensdorf W SUI 28.03.2011 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
70 317 259076 Desait Céline 2012 1.ZH.1811 LC Regensdorf W SUI 12.09.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
71 318 259077 Cuche Pauline 2012 1.ZH.1811 LC Regensdorf W SUI 09.07.2012 Y U12W 6 Gr. 3 U12W 12:55 4-K ZH X X X X
72 333 256458 Burkhalter Paula 2011 1.ZH.1871 TV Otelfingen W SUI 03.07.2011 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
73 334 256459 Fort Elena 2011 1.ZH.1871 TV Otelfingen W SUI 04.02.2011 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X
74 340 259294 Glauser Soraya 2012 1.ZH.1871 TV Otelfingen W SUI 06.09.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
75 341 259295 Landolt Lisa 2012 1.ZH.1871 TV Otelfingen W SUI 07.12.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
76 639 253745 Scheurer Mya 2012 1.ZH.1832 LV Zürcher Oberland W SUI 05.02.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
77 647 256286 Wolf Lilli 2011 1.ZH.1832 LV Zürcher Oberland W SUI 17.01.2011 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
78 660 259405 Rauber Hannah 2012 1.ZH.1832 LV Zürcher Oberland W SUI 12.08.2012 Y U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
79 667 A:999937 Achermann Yana 2012 1.ZH.1832 LV Zürcher Oberland W SUI 15.09.2012 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X
80 668 A:999936 Heusser Ladina 2012 1.ZH.1832 LV Zürcher Oberland W SUI 19.05.2012 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X
81 670 A:999934 Knabenhans Anina 2011 1.ZH.1832 LV Zürcher Oberland W SUI 16.01.2011 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
82 672 A:999933 Zollinger Elina 2011 1.ZH.1832 LV Zürcher Oberland W SUI 03.05.2011 U12W 7 Gr. 4 U12W 14:15 4-K ZH X X X X
83 144 259383 Zwyssig Léanne Céline 2012 1.ZH.1828 LC Uster W SUI 02.06.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
84 145 259280 Zwiker Leena 2012 1.ZH.1828 LC Uster W SUI 04.09.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
85 148 259247 Messikommer Lily 2012 1.ZH.1828 LC Uster W SUI 05.04.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
86 150 257003 Ziörjen Romina 2012 1.ZH.1828 LC Uster W SUI 03.08.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
87 151 256981 Schwarz Avania 2011 1.ZH.1828 LC Uster W SUI 10.09.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
88 269 259388 Müller Emma 2011 1.ZH.1828 LC Uster W SUI 08.08.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
89 928 249300 Maurer Kira Leila 2011 1.ZH.1862 LA Wyland W SUI 06.04.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
90 936 249299 Kälin Sanni 2011 1.ZH.1862 LA Wyland W SUI 07.03.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
91 942 259250 Frauenfelder Rina 2012 1.ZH.1862 LA Wyland W SUI 24.09.2012 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
92 999 249203 Müller Alicia 2011 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 01.03.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
93 405 257439 Chiapparini Julia 2011 1.ZH.1819 TV Kloten LA W SUI 02.09.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
94 406 257481 Clerc Leonie 2011 1.ZH.1819 TV Kloten LA W SUI 10.03.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
95 407 258016 Koller Linnea 2011 1.ZH.1819 TV Kloten LA W SUI 09.08.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
96 411 A:999986 Signer Liya 2012 1.ZH.1819 TV Kloten LA W SUI 14.06.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
97 473 254172 Quartu Peace 2011 1.ZH.1819 TV Kloten LA W SUI 09.01.2011 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X
98 696 259821 Ammann Shirin 2012 1.ZH.1819 TV Kloten LA W SUI 17.04.2012 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X X
99 698 259822 Barattini Anna 2012 1.ZH.1819 TV Kloten LA W ITA 30.05.2012 Y U12W 9 Gr. 6 U12W 15:40 4-K ZH X X
100 1144 A:999902 Milovanovic Lena 2012 1.ZH.1819 TV Kloten LA W SUI 09.03.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X X
101 1152 A:999900 Furrer Celia 2012 1.ZH.1887 Turnverein Wiesendangen W SUI 23.01.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
102 1154 A:999899 Binder Malea 2012 1.ZH.1887 Turnverein Wiesendangen W SUI 01.10.2012 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
103 1155 A:999897 Furrer Rania 2011 1.ZH.1887 Turnverein Wiesendangen W SUI 27.08.2011 U12W 9 Gr. 6 U12W 15:40 4-K ZH X
104 512 173725 Beranek-Chiu Noah 2009 1.ZH.1822 LV Winterthur M GER 21.12.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
105 526 251627 Homberger Tim Emerick 2009 1.ZH.1822 LV Winterthur M SUI 26.10.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
106 535 252659 Laib Luc 2009 1.ZH.1822 LV Winterthur M SUI 09.12.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
107 537 253900 Lerch Leon 2009 1.ZH.1822 LV Winterthur M SUI 21.05.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
108 546 252015 Ohlendorf Norman 2010 1.ZH.1822 LV Winterthur M GER 04.10.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
109 555 252009 Srikannan Santhosh 2010 1.ZH.1822 LV Winterthur M SUI 03.08.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
110 559 252008 van Seumeren Cornelius 2010 1.ZH.1822 LV Winterthur M SUI 08.12.2010 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
111 564 173723 Wollnik Robin 2009 1.ZH.1822 LV Winterthur M GER 02.11.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
112 570 255829 Hug Matti 2009 1.ZH.1822 LV Winterthur M SUI 17.09.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
113 579 256756 Horisberger Levi 2009 1.ZH.1822 LV Winterthur M SUI 30.01.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X X
114 584 256757 Stähli Jonas 2009 1.ZH.1822 LV Winterthur M SUI 09.05.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
115 599 259157 Kromer Gian 2009 1.ZH.1822 LV Winterthur M SUI 20.07.2009 Y U14M 10 Gr. 1 U14M 10:25 4-K ZH X X X
116 642 176506 Vogt Marc 2009 1.ZH.1832 LV Zürcher Oberland M SUI 15.03.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X
117 645 254356 Züst Levin 2009 1.ZH.1832 LV Zürcher Oberland M SUI 09.01.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
118 646 255311 Gut Lenny 2009 1.ZH.1832 LV Zürcher Oberland M SUI 13.09.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
119 649 257960 Frauchiger Nelson 2010 1.ZH.1832 LV Zürcher Oberland M SUI 14.07.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
120 653 256716 Fussen Milo 2009 1.ZH.1832 LV Zürcher Oberland M SUI 22.09.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
121 657 256732 Lechner Mika 2009 1.ZH.1832 LV Zürcher Oberland M SUI 01.12.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
122 666 A:999938 Hess Jonas 2010 1.ZH.1832 LV Zürcher Oberland M SUI 13.04.2010 U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
123 938 256225 Merk Niklas 2009 1.ZH.1862 LA Wyland M SUI 10.03.2009 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X X
124 940 255072 Stegemann Leon 2010 1.ZH.1862 LA Wyland M SUI 11.08.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X X
125 748 253122 Güler Eray 2010 1.ZH.1820 TV Dietlikon M SUI 23.01.2010 Y U14M 11 Gr. 2 U14M 11:05 4-K ZH X X
126 19 253118 Bengo-Oliveri Henry 2009 1.ZH.1845 LV Albis M UGA 01.01.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
127 28 249485 Brodda Henri Caspar 2010 1.ZH.1845 LV Albis M SUI 13.02.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X
128 69 253448 Kourpas Adam 2010 1.ZH.1845 LV Albis M GBR 03.10.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X
129 1175 A:999886 Nji Steve Mbeng 2010 1.ZH.1845 LV Albis M CMR 07.03.2010 U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
130 95 247238 Tschochner Fabian 2010 1.ZH.1845 LV Albis M GER 08.11.2010 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X
131 101 249483 Waldmeier Janis 2009 1.ZH.1845 LV Albis M SUI 28.04.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
132 1088 245932 Kresken Tim 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 19.12.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
133 1090 171052 Müller Jan 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 16.08.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
134 337 256456 Steinholtz Zachary 2009 1.ZH.1871 TV Otelfingen M SUI 06.05.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X X X
135 403 255397 Wirz Navin 2009 1.ZH.1819 TV Kloten LA M SUI 21.08.2009 Y U14M 12 Gr. 3 U14M 11:35 4-K ZH X X
136 699 A:999989 Pepic Novak 2010 1.ZH.1819 TV Kloten LA M SUI 01.02.2010 U14M 12 Gr. 3 U14M 11:35 4-K ZH X
137 173 248706 Siegrist Joel 2009 1.ZH.1811 LC Regensdorf M SUI 17.07.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X
138 179 176199 Wilhelm Alejandro 2010 1.ZH.1811 LC Regensdorf M SUI 08.01.2010 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
139 183 259067 Döbeli Lukas 2010 1.ZH.1811 LC Regensdorf M SUI 27.02.2010 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
140 325 259085 Van der Heijden Alexander 2010 1.ZH.1811 LC Regensdorf M SUI 01.01.2010 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X X X
141 2 249353 Nesterak Tim Dennis 2009 1.ZH.1828 LC Uster M SUI 22.01.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
142 7 256742 Vischer Cédric 2009 1.ZH.1828 LC Uster M SUI 26.09.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X X
143 13 259349 Müller Carlo 2009 1.ZH.1828 LC Uster M SUI 26.11.2009 Y U14M 13 Gr. 4 U14M 12:25 4-K ZH X X
144 1149 246337 Krüsi Benedikt 2009 1.ZH.1887 Turnverein Wiesendangen M SUI 23.06.2009 N U14M 13 Gr. 4 U14M 12:25 4-K ZH X
145 1158 A:999894 Binder Rouven 2010 1.ZH.1887 Turnverein Wiesendangen M SUI 21.02.2010 U14M 13 Gr. 4 U14M 12:25 4-K ZH X
146 1159 A:999893 Furrer Nino 2009 1.ZH.1887 Turnverein Wiesendangen M SUI 04.11.2009 U14M 13 Gr. 4 U14M 12:25 4-K ZH X
147 156 252908 Canzillon Kina 2009 1.ZH.1811 LC Regensdorf W FRA 17.07.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
148 158 255191 Favre-Bulle Gabriela 2009 1.ZH.1811 LC Regensdorf W SUI 24.08.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
149 161 253180 Heiderich Leonie 2010 1.ZH.1811 LC Regensdorf W SUI 20.09.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
150 162 255202 Hürzeler Noemi 2010 1.ZH.1811 LC Regensdorf W SUI 28.02.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X
151 165 255200 Mamais Sofia 2010 1.ZH.1811 LC Regensdorf W SUI 01.10.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
152 171 248719 Schildknecht Maude Vivienne 2009 1.ZH.1811 LC Regensdorf W SUI 30.08.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
153 172 253198 Schwedhelm Jula 2010 1.ZH.1811 LC Regensdorf W GER 23.09.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
154 175 252909 Suter Kisha 2009 1.ZH.1811 LC Regensdorf W SUI 08.04.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X X X
155 176 253184 Thöni Lily Mia 2010 1.ZH.1811 LC Regensdorf W SUI 31.03.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
156 398 253588 Barattini Martina 2010 1.ZH.1819 TV Kloten LA W SUI 20.04.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
157 399 247793 Gläser Sarah 2009 1.ZH.1819 TV Kloten LA W SUI 27.04.2009 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
158 402 255394 Ulli Céline 2010 1.ZH.1819 TV Kloten LA W SUI 08.09.2010 Y U14W 14 Gr. 1 U14W 13:00 4-K ZH X X
159 515 248457 Bohn Hannah Luna 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
160 516 252007 Brügger Lenja 2010 1.ZH.1822 LV Winterthur W SUI 14.06.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
161 518 252017 Erny Liana 2010 1.ZH.1822 LV Winterthur W SUI 22.05.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X
162 519 173367 Facchinetti Elisa 2009 1.ZH.1822 LV Winterthur W SUI 14.12.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X
163 521 252144 Fiorucci Malena 2010 1.ZH.1822 LV Winterthur W SUI 08.06.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
164 541 252006 Meier Jael 2009 1.ZH.1822 LV Winterthur W SUI 30.04.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
165 542 252914 Mohn Jonna 2009 1.ZH.1822 LV Winterthur W SUI 28.07.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X
166 560 252660 Vock Marta 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
167 567 254758 Egli Somea 2009 1.ZH.1822 LV Winterthur W SUI 02.10.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
168 569 254856 Gürtler Elin 2010 1.ZH.1822 LV Winterthur W SUI 12.02.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
169 572 255079 Lehner Lea 2010 1.ZH.1822 LV Winterthur W SUI 14.04.2010 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
170 586 257488 Heeb Leandra 2009 1.ZH.1822 LV Winterthur W SUI 19.09.2009 Y U14W 15 Gr. 2 U14W 13:40 4-K ZH X X X X
171 589 258933 Banyoczki Cya 2010 1.ZH.1822 LV Winterthur W SUI 09.01.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
172 590 258925 Bitter Anjali Maya 2009 1.ZH.1822 LV Winterthur W GER 25.04.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
173 597 258938 Joost Lina 2010 1.ZH.1822 LV Winterthur W SUI 22.09.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
174 603 258936 Pahud Sari 2010 1.ZH.1822 LV Winterthur W SUI 25.07.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
175 917 252164 Aeschimann Lina 2010 1.ZH.1862 LA Wyland W SUI 01.10.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
176 919 249306 Berger Ayana 2009 1.ZH.1862 LA Wyland W SUI 03.08.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X
177 924 249308 Kälin Mia 2009 1.ZH.1862 LA Wyland W SUI 13.07.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
178 925 253798 Klemenz Amélie 2010 1.ZH.1862 LA Wyland W SUI 19.08.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
179 931 244702 Stoll Caroline 2009 1.ZH.1862 LA Wyland W SUI 17.03.2009 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X
180 937 255069 Merk Malin 2010 1.ZH.1862 LA Wyland W SUI 07.11.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X X
181 939 255068 Prister Lene 2010 1.ZH.1862 LA Wyland W SUI 03.05.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X
182 920 249304 Griesser Lenja 2010 1.ZH.1862 LA Wyland W SUI 02.02.2010 Y U14W 16 Gr. 3 U14W 14:25 4-K ZH X X X
183 35 247789 Chechele Mara 2010 1.ZH.1845 LV Albis W SUI 23.07.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
184 48 172495 Gallo Giada 2009 1.ZH.1845 LV Albis W SUI 02.07.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
185 55 174574 Gugerli Carla 2009 1.ZH.1845 LV Albis W SUI 09.11.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
186 57 249487 Häfliger Elin 2009 1.ZH.1845 LV Albis W SUI 14.07.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X
187 85 246691 Plüss Livia 2010 1.ZH.1845 LV Albis W SUI 19.06.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
188 93 253451 Stalder Alina 2010 1.ZH.1845 LV Albis W SUI 12.04.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
189 96 246694 Utzinger Larissa 2010 1.ZH.1845 LV Albis W SUI 02.03.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
190 102 249484 Walter Michelle 2010 1.ZH.1845 LV Albis W SUI 22.09.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X
191 107 174573 Wicki Ciara 2010 1.ZH.1845 LV Albis W SUI 14.11.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
192 330 248960 Beeler Sasha 2009 1.ZH.1871 TV Otelfingen W SUI 09.04.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
193 332 256457 Burkhalter Hanna 2010 1.ZH.1871 TV Otelfingen W SUI 02.01.2010 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
194 335 256520 Glauser Lavinia 2009 1.ZH.1871 TV Otelfingen W SUI 23.07.2009 Y U14W 17 Gr. 4 U14W 14:55 4-K ZH X X X X
195 108 250321 Wicki Serena 2009 1.ZH.1845 LV Albis W SUI 29.08.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
196 120 255704 Moser Aline 2010 1.ZH.1845 LV Albis W SUI 06.12.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X
197 312 259717 Haldemann Lina 2009 1.ZH.1845 LV Albis W SUI 14.10.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
198 743 259871 Steinke Lara 2010 1.ZH.1845 LV Albis W GER 21.04.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
199 1108 246687 Mutti Mara 2010 1.ZH.1845 LV Albis W SUI 06.10.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
200 629 251296 Auer Laura 2009 1.ZH.1832 LV Zürcher Oberland W SUI 25.08.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
201 631 245549 Keiser Angelina 2009 1.ZH.1832 LV Zürcher Oberland W SUI 11.03.2009 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X
202 656 256638 Kühnis Maris 2010 1.ZH.1832 LV Zürcher Oberland W SUI 01.07.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X
203 661 259594 Debrunner Janina 2010 1.ZH.1832 LV Zürcher Oberland W 30.04.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X
204 663 259674 Steiner Jana 2010 1.ZH.1832 LV Zürcher Oberland W SUI 01.08.2010 Y U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
205 665 A:999939 Widmer Johanna 2009 1.ZH.1832 LV Zürcher Oberland W SUI 23.09.2009 U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
206 671 A:999940 De Vylder Aisha 2010 1.ZH.1832 LV Zürcher Oberland W SUI 04.04.2010 U14W 18 Gr. 5 U14W 15:45 4-K ZH X X X X
207 3 253820 Schmid Léane 2010 1.ZH.1828 LC Uster W SUI 30.06.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
208 5 251505 Yapi Laeticia 2010 1.ZH.1828 LC Uster W SUI 26.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X
209 9 256986 Bertolini Flavia 2010 1.ZH.1828 LC Uster W SUI 14.10.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
210 139 253123 Toller Liv 2010 1.ZH.1828 LC Uster W SUI 17.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
211 141 256714 Rrahmani Elsa 2009 1.ZH.1828 LC Uster W KOS 04.07.2009 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X
212 1084 254473 Barletta Myrhiam 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W ITA 04.03.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X
213 1089 245934 Kunz Sophie 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 18.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X
214 1092 245937 Tamas Elena 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 08.01.2010 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
215 1093 174616 Tresch Oliana 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 02.09.2009 N U14W 19 Gr. 6 U14W 16:15 4-K ZH X X
216 1096 257391 Obradovic Marija 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W CRO 23.12.2009 Y U14W 19 Gr. 6 U14W 16:15 4-K ZH X X X X
217 1148 246255 Sigg Elin 2009 1.ZH.1887 Turnverein Wiesendangen W SUI 07.07.2009 N U14W 19 Gr. 6 U14W 16:15 4-K ZH X
218 1157 A:999895 Pavic Nikolina 2010 1.ZH.1887 Turnverein Wiesendangen W SUI 25.05.2010 U14W 19 Gr. 6 U14W 16:15 4-K ZH X
219 514 176205 Bisang Jeremias 2007 1.ZH.1822 LV Winterthur M SUI 05.09.2007 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
220 523 253924 Graber Henry 2008 1.ZH.1822 LV Winterthur M SUI 26.11.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
221 529 175424 Käser Silvan 2008 1.ZH.1822 LV Winterthur M SUI 22.04.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
222 536 248541 Lamprecht Corvin 2008 1.ZH.1822 LV Winterthur M SUI 30.06.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
223 553 253631 Serhani Rachid 2007 1.ZH.1822 LV Winterthur M SUI 15.11.2007 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
224 556 255336 Stähli Tobias 2007 1.ZH.1822 LV Winterthur M SUI 03.06.2007 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
225 733 259644 Weibel Lionel 2008 1.ZH.1822 LV Winterthur M SUI 04.09.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
226 734 A:999930 Magalhaes Jarrel Damien 2008 1.ZH.1822 LV Winterthur M SUI 12.02.2008 U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
227 793 161330 Klaus Michael 2008 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 08.04.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
228 918 249309 Aeschimann Phineas 2008 1.ZH.1862 LA Wyland M SUI 12.08.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
229 921 244706 Griesser Nino 2008 1.ZH.1862 LA Wyland M SUI 28.10.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X
230 929 176171 Schneeberger Moritz 2008 1.ZH.1862 LA Wyland M SUI 04.09.2008 Y U16M 20 Gr. 1 U16M 10:00 4-K ZH X X X X
231 1150 174247 Krüsi Julian 2007 1.ZH.1887 Turnverein Wiesendangen M SUI 17.05.2007 N U16M 20 Gr. 1 U16M 10:00 4-K ZH X
232 1151 246340 Schmid Andrin 2007 1.ZH.1887 Turnverein Wiesendangen M SUI 30.05.2007 N U16M 20 Gr. 1 U16M 10:00 4-K ZH X
233 152 173598 Beyeler Levin 2008 1.ZH.1811 LC Regensdorf M SUI 13.04.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X
234 166 165311 Marcantonio Fabio 2007 1.ZH.1811 LC Regensdorf M SUI 14.02.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
235 328 254705 Radosarljevic Luka 2008 1.ZH.1811 LC Regensdorf M SUI 01.12.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
236 475 244746 Totaro Luca 2008 1.ZH.1828 LC Uster M SUI 07.10.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
237 1099 173387 Zisler Constantin 2007 1.ZH.1828 LC Uster M AUT 12.07.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X
238 75 169996 Moret Timo 2008 1.ZH.1845 LV Albis M SUI 01.05.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
239 97 166336 Van der Aar Lars 2007 1.ZH.1845 LV Albis M NED 12.04.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
240 636 166007 Pfister Marc 2007 1.ZH.1832 LV Zürcher Oberland M SUI 20.02.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
241 654 256684 Keller Severin 2008 1.ZH.1832 LV Zürcher Oberland M SUI 31.08.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X
242 749 244803 Häberli Tom Luca 2007 1.ZH.1820 TV Dietlikon M SUI 25.08.2007 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
243 753 256868 Koch Fabian 2008 1.ZH.1820 TV Dietlikon M SUI 07.02.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
244 339 257441 Uebelhart Jannis 2008 1.ZH.1871 TV Otelfingen M SUI 13.05.2008 Y U16M 21 Gr. 2 U16M 10:05 4-K ZH X X X X
245 760 253964 Brasse Leni 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 19.02.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
246 786 171044 Heusser Marla 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 09.07.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X
247 788 164024 Imhof Fabienne 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 30.03.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
248 814 244806 Niederberger Selina 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 22.02.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
249 822 173780 Rutz Linda 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 30.07.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X
250 826 163411 Schmid Desirée 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 17.08.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X
251 1102 163400 Bieder Laura 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 22.11.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
252 1105 244686 Kerényi Lea 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 21.03.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
253 343 244115 Adel Victoria 2007 1.ZH.1828 LC Uster W IRL 30.08.2007 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X X
254 637 246924 Ramsauer Mia 2008 1.ZH.1832 LV Zürcher Oberland W SUI 06.10.2008 Y U16W 22 Gr. 1 U16W 11:45 4-K ZH X X X
255 153 248712 Biaggi Jael 2007 1.ZH.1811 LC Regensdorf W SUI 13.04.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X
256 159 248716 Fuchser Fiona 2008 1.ZH.1811 LC Regensdorf W SUI 08.05.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
257 168 244758 Müller Lennja 2008 1.ZH.1811 LC Regensdorf W SUI 10.10.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
258 169 247288 Reichler Ella 2008 1.ZH.1811 LC Regensdorf W SUI 25.04.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
259 178 252907 Witschi Lisa 2008 1.ZH.1811 LC Regensdorf W SUI 13.10.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X
260 182 256772 Bugmann Selina 2008 1.ZH.1811 LC Regensdorf W SUI 24.10.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
261 329 245103 Lorenzo Leonie Luana 2007 1.ZH.1811 LC Regensdorf W SUI 28.12.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X
262 17 176016 Baer Irina 2007 1.ZH.1845 LV Albis W SUI 21.09.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
263 49 172494 Gallo Marzia 2007 1.ZH.1845 LV Albis W SUI 12.08.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
264 52 246678 Grollimund Annik 2008 1.ZH.1845 LV Albis W SUI 26.11.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
265 91 171970 Schuster Joy 2007 1.ZH.1845 LV Albis W SUI 27.04.2007 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
266 104 166339 Wärdell Hanna 2008 1.ZH.1845 LV Albis W SUI 08.01.2008 Y U16W 23 Gr. 2 U16W 11:50 4-K ZH X X X X
267 517 243983 Bühler Alicia 2008 1.ZH.1822 LV Winterthur W SUI 19.09.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X
268 520 168121 Fierz Tyra 2007 1.ZH.1822 LV Winterthur W SUI 04.02.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
269 524 248458 Gubler Céline 2008 1.ZH.1822 LV Winterthur W SUI 15.06.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
270 525 171762 Hinderling Jana 2007 1.ZH.1822 LV Winterthur W SUI 02.11.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X
271 528 243979 Imafidon Ronia 2008 1.ZH.1822 LV Winterthur W SUI 01.04.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
272 530 173228 Keel Lena 2007 1.ZH.1822 LV Winterthur W SUI 28.01.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X
273 532 253632 Kifle Nebyat 2008 1.ZH.1822 LV Winterthur W GER 17.12.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X X
274 538 251652 Mancuso Giulia 2007 1.ZH.1822 LV Winterthur W SUI 03.09.2007 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X
275 547 252012 Pfister Linda 2008 1.ZH.1822 LV Winterthur W SUI 01.08.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X
276 549 243981 Rusova Jana 2008 1.ZH.1822 LV Winterthur W CZE 26.04.2008 Y U16W 24 Gr. 3 U16W 13:25 4-K ZH X X X
277 551 170240 Schnyder Jacqueline 2008 1.ZH.1822 LV Winterthur W SUI 28.05.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
278 552 164856 Schnyder Vanessa 2007 1.ZH.1822 LV Winterthur W SUI 22.01.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
279 566 255335 Dos Santos Maria Vitoria 2008 1.ZH.1822 LV Winterthur W SUI 31.10.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
280 573 254757 Meissner Neele 2008 1.ZH.1822 LV Winterthur W SUI 15.07.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
281 613 258370 Züger Michelle 2007 1.ZH.1822 LV Winterthur W SUI 10.10.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
282 923 173375 Gürtler Anna 2007 1.ZH.1862 LA Wyland W SUI 25.01.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
283 926 173376 Lüthi Nadja 2007 1.ZH.1862 LA Wyland W SUI 27.03.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X
284 927 173377 Maurer Elena Lara 2007 1.ZH.1862 LA Wyland W SUI 26.07.2007 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X
285 930 255073 Schulthess Sanna 2008 1.ZH.1862 LA Wyland W SUI 03.08.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X X X
286 943 258536 Zürcher Anja 2008 1.ZH.1862 LA Wyland W SUI 31.12.2008 Y U16W 25 Gr. 4 U16W 13:30 4-K ZH X X

@ -1,239 +0,0 @@
Anmeldenr;Lizenznr;Name;Vorname;Jahrgang;Verein;Club-Name;Geschlecht;Nationalitaet;GebDat;Bez;Kategorie;GruppeNr;GruppeName;Startzeit;Bewerb;Kanton;KidID;W1;W2;W3;W4
1041;256818;Basso;Leo;2011;1.ZH.1845;LV Albis;M;SUI;12.10.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;;X
199;253445;de Mey;Elio;2010;1.ZH.1845;LV Albis;M;SUI;16.11.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;;;X;X
246;253448;Kourpas;Adam;2010;1.ZH.1845;LV Albis;M;GBR;03.10.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;;X
247;251479;Loup;Léo Eric;2010;1.ZH.1845;LV Albis;M;SUI;31.08.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
303;255707;Nicolodi;Enzo;2010;1.ZH.1845;LV Albis;M;SUI;17.06.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
304;255712;Nievergelt;Flurin;2011;1.ZH.1845;LV Albis;M;SUI;28.03.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
305;255711;Palermo;Domenico;2011;1.ZH.1845;LV Albis;M;SUI;03.06.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
251;249486;Meili;Mattia;2010;1.ZH.1845;LV Albis;M;SUI;21.09.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;;X;;X
308;255709;Schneider;Nikolaj;2011;1.ZH.1845;LV Albis;M;SUI;06.06.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;;X;X
309;255705;Steiner;Maxime;2010;1.ZH.1845;LV Albis;M;SUI;18.11.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
276;255330;Stuckert;Dennis;2011;1.ZH.1845;LV Albis;M;SUI;06.03.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;;X;X;X
711;249112;Calo;Jarno;2010;1.ZH.1811;LC Regensdorf;M;SUI;01.01.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;;X;X
710;255194;Demirok;Baha;2011;1.ZH.1811;LC Regensdorf;M;SUI;22.02.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;;X;X
709;255193;Egli;Loris;2011;1.ZH.1811;LC Regensdorf;M;SUI;23.08.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;;;X
714;255224;Estua;Xabi;2011;1.ZH.1811;LC Regensdorf;M;ESP;11.06.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;;;X
704;252902;Jacob;Ricky;2010;1.ZH.1811;LC Regensdorf;M;SUI;24.02.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;X;;X
699;244670;Rojano Cruz;José Maria;2010;1.ZH.1811;LC Regensdorf;M;ESP;21.11.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
696;176199;Wilhelm;Alejandro;2010;1.ZH.1811;LC Regensdorf;M;SUI;08.01.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
693;255195;Zurbuchen;Remo;2011;1.ZH.1811;LC Regensdorf;M;SUI;30.09.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
565;252015;Ohlendorf;Norman;2010;1.ZH.1822;LV Winterthur;M;GER;04.10.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
601;255156;Simperl;Marius;2011;1.ZH.1822;LV Winterthur;M;SUI;04.03.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
583;252008;van Seumeren;Cornelius;2010;1.ZH.1822;LV Winterthur;M;SUI;08.12.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
1117;251722;Gläser;Roman;2011;1.ZH.1819;TV Kloten LA;M;SUI;03.11.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;;X;;X
605;255392;Hugentobler;Lorin;2011;1.ZH.1819;TV Kloten LA;M;SUI;03.07.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;;;X
1049;253122;Güler;Eray;2010;1.ZH.1820;TV Dietlikon;M;SUI;23.01.2010;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
1050;255308;Krebs;Jonas;2011;1.ZH.1820;TV Dietlikon;M;SUI;10.09.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
1062;A:999859;Loretz;Leon;2010;1.ZH.1820;TV Dietlikon;M;SUI;13.08.2010;;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;;X;X
1055;253858;Märki;Diego;2010;1.ZH.1820;TV Dietlikon;M;SUI;21.01.2010;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;;;X;X
8;256044;Haas;Leandro;2011;1.ZH.1828;LC Uster;M;SUI;04.12.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
145;255982;Straube;Tommy;2011;1.ZH.1828;LC Uster;M;SUI;15.11.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
353;256523;Wittel;Jörn;2011;1.ZH.1871;TV Otelfingen;M;GER;07.02.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
672;253180;Heiderich;Leonie;2010;1.ZH.1811;LC Regensdorf;W;SUI;20.09.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;;X;X
715;255206;Hilti;Livia;2011;1.ZH.1811;LC Regensdorf;W;SUI;03.02.2011;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;;X;;X
705;255202;Hürzeler;Noemi;2010;1.ZH.1811;LC Regensdorf;W;SUI;28.02.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;;;X;X
674;255209;Lampropoulou;Iliana;2010;1.ZH.1811;LC Regensdorf;W;GRE;10.08.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;;;;X
680;255210;Leonardo;Timea;2010;1.ZH.1811;LC Regensdorf;W;SUI;09.09.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;;X
676;255200;Mamais;Sofia;2010;1.ZH.1811;LC Regensdorf;W;SUI;01.10.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;X;X
684;248720;Rindle;Lina Joëlle;2010;1.ZH.1811;LC Regensdorf;W;SUI;27.01.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;;X;X
686;253198;Schwedhelm;Jula;2010;1.ZH.1811;LC Regensdorf;W;GER;23.09.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;;X
687;255203;Spottek;Mia;2011;1.ZH.1811;LC Regensdorf;W;SUI;25.07.2011;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;X;X
688;253183;Steinlin;Aline;2010;1.ZH.1811;LC Regensdorf;W;SUI;05.05.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;;X;X;X
692;255207;Wollscheid;Zoe;2011;1.ZH.1811;LC Regensdorf;W;SUI;28.03.2011;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;X;X
454;250320;Bajrami;Maida;2011;1.ZH.1845;LV Albis;W;SUI;18.02.2011;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;;X
1254;A:999822;Bala;Alina;2010;1.ZH.1845;LV Albis;W;SUI;21.06.2010;;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;;;;X
455;256666;Constable;Isabella;2010;1.ZH.1845;LV Albis;W;GBR;18.03.2010;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
456;250319;Cosabic;Ilma;2011;1.ZH.1845;LV Albis;W;99;26.12.2011;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
457;256671;Kadriaj;Alina;2011;1.ZH.1845;LV Albis;W;SUI;25.09.2011;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
241;253447;Keller;Laura;2010;1.ZH.1845;LV Albis;W;SUI;21.04.2010;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;;X;;X
301;249481;Meier;Angelina;2011;1.ZH.1845;LV Albis;W;SUI;25.08.2011;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
302;255704;Moser;Aline;2010;1.ZH.1845;LV Albis;W;SUI;06.12.2010;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
264;251478;Perks;Lucia;2011;1.ZH.1845;LV Albis;W;SUI;08.06.2011;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
265;246691;Plüss;Livia;2010;1.ZH.1845;LV Albis;W;SUI;19.06.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
307;255708;Sangermano;Lorena;2011;1.ZH.1845;LV Albis;W;SUI;18.06.2011;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
1255;A:999821;Shala;Gentiona;2011;1.ZH.1845;LV Albis;W;ALB;16.02.2011;;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;;;;X
279;246694;Utzinger;Larissa;2010;1.ZH.1845;LV Albis;W;SUI;02.03.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
285;249484;Walter;Michelle;2010;1.ZH.1845;LV Albis;W;SUI;22.09.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
291;174573;Wicki;Ciara;2010;1.ZH.1845;LV Albis;W;SUI;14.11.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
1116;253588;Barattini;Martina;2010;1.ZH.1819;TV Kloten LA;W;SUI;20.04.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;;X;X;X
604;254172;Quartu;Peace;2011;1.ZH.1819;TV Kloten LA;W;SUI;09.01.2011;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;;X;X
347;256457;Burkhalter;Hanna;2010;1.ZH.1871;TV Otelfingen;W;SUI;02.01.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
348;256458;Burkhalter;Paula;2011;1.ZH.1871;TV Otelfingen;W;SUI;03.07.2011;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
358;A:999977;Findik;Günes;2011;1.ZH.1871;TV Otelfingen;W;SUI;16.12.2011;;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;;;;
349;256459;Fort;Elena;2011;1.ZH.1871;TV Otelfingen;W;SUI;04.02.2011;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
351;256462;Hofmann;Emily;2010;1.ZH.1871;TV Otelfingen;W;SUI;07.05.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
1249;255980;Jucker;Melanie;2010;1.ZH.1880;LC Rafzerfeld;W;SUI;01.11.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;;;;X
1093;256950;Casutt;Livia;2010;1.ZH.1885;SSC Athletics;W;SUI;17.05.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;;;;X
38;253499;Ferarha;Amira;2010;1.ZH.1885;SSC Athletics;W;SUI;17.01.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;;;;
1075;249203;Müller;Alicia;2011;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;01.03.2011;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
1073;245937;Tamas;Elena;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;08.01.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
896;256751;Ahilaruban;Oviya;2011;1.ZH.1822;LV Winterthur;W;SRI;09.06.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
534;252007;Brügger;Lenja;2010;1.ZH.1822;LV Winterthur;W;SUI;14.06.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
537;252017;Erny;Liana;2010;1.ZH.1822;LV Winterthur;W;SUI;22.05.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
597;255079;Lehner;Lea;2010;1.ZH.1822;LV Winterthur;W;SUI;14.04.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;;;X;X
899;256752;Maurer;Johanna;2011;1.ZH.1822;LV Winterthur;W;SUI;18.06.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
824;254499;Bosshard;Naemi;2010;1.ZH.1828;LC Uster;W;SUI;03.02.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
825;253820;Schmid;Léane;2010;1.ZH.1828;LC Uster;W;SUI;30.06.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;;X;X;X
173;253123;Toller;Liv;2010;1.ZH.1828;LC Uster;W;SUI;17.01.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;;;X;X
7;251505;Yapi;Laeticia;2010;1.ZH.1828;LC Uster;W;SUI;26.01.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;;;X;X
712;173598;Beyeler;Levin;2008;1.ZH.1811;LC Regensdorf;M;SUI;13.04.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;;;X
707;248705;Erny;Dario;2009;1.ZH.1811;LC Regensdorf;M;SUI;27.04.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;X;X;X
708;253948;Fuchs;Aurel;2009;1.ZH.1811;LC Regensdorf;M;SUI;22.10.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;X;;X
706;245107;Greile;Jannis;2008;1.ZH.1811;LC Regensdorf;M;SUI;13.09.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;X;;X
713;174270;Meier;Gion Andri;2009;1.ZH.1811;LC Regensdorf;M;SUI;01.09.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;;;X
703;254561;Mittner;Sven;2009;1.ZH.1811;LC Regensdorf;M;SUI;31.03.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;X;X
702;253523;Mollet;Nicholas;2009;1.ZH.1811;LC Regensdorf;M;SUI;24.07.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;;X
701;254705;Radosarljevic;Luka;2008;1.ZH.1811;LC Regensdorf;M;SUI;01.12.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;X;X
700;173601;Rojano Cruz;Manuel;2008;1.ZH.1811;LC Regensdorf;M;ESP;12.07.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;X;X
697;169200;Wiedmer;Jorin;2008;1.ZH.1811;LC Regensdorf;M;SUI;22.09.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;X;X
695;254060;Wollscheid;Max;2009;1.ZH.1811;LC Regensdorf;M;SUI;07.06.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;X;X;X
694;245109;Ziegler;Sebastian;2008;1.ZH.1811;LC Regensdorf;M;SUI;29.04.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;;;X
1060;A:999860;Koch;Fabian;2008;1.ZH.1820;TV Dietlikon;M;SUI;12.02.2008;;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
1053;253997;Krebs;Lukas;2009;1.ZH.1820;TV Dietlikon;M;SUI;03.06.2009;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
1056;253857;Milz;Basil;2009;1.ZH.1820;TV Dietlikon;M;SUI;01.07.2009;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
5;244743;Hauser;Laurin;2008;1.ZH.1828;LC Uster;M;SUI;08.02.2008;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
6;249354;Schärli;Ron;2009;1.ZH.1828;LC Uster;M;SUI;06.02.2009;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
9;244746;Totaro;Luca;2008;1.ZH.1828;LC Uster;M;SUI;07.10.2008;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
352;256456;Steinholtz;Zachary;2009;1.ZH.1871;TV Otelfingen;M;SUI;06.05.2009;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
1130;257441;Uebelhart;Jannis;2008;1.ZH.1871;TV Otelfingen;M;SUI;13.05.2008;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;;;X;X
530;173725;Beranek-Chiu;Noah;2009;1.ZH.1822;LV Winterthur;M;GER;21.12.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;;X
543;253924;Graber;Henry;2008;1.ZH.1822;LV Winterthur;M;SUI;26.11.2008;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
545;251627;Homberger;Tim Emerick;2009;1.ZH.1822;LV Winterthur;M;SUI;26.10.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
897;256756;Horisberger;Levi;2009;1.ZH.1822;LV Winterthur;M;SUI;30.01.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
548;175424;Käser;Silvan;2008;1.ZH.1822;LV Winterthur;M;SUI;22.04.2008;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
554;252659;Laib;Luc;2009;1.ZH.1822;LV Winterthur;M;SUI;09.12.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
555;248541;Lamprecht;Corvin;2008;1.ZH.1822;LV Winterthur;M;SUI;30.06.2008;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
556;253900;Lerch;Leon;2009;1.ZH.1822;LV Winterthur;M;SUI;21.05.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
902;256757;Stähli;Jonas;2009;1.ZH.1822;LV Winterthur;M;SUI;09.05.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
589;173723;Wollnik;Robin;2009;1.ZH.1822;LV Winterthur;M;GER;02.11.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
461;246247;Gonzalez Diterich;Luis;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;GER;15.07.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
466;161330;Klaus;Michael;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;08.04.2008;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
467;245932;Kresken;Tim;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;19.12.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
468;171052;Müller;Jan;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;16.08.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;;X
471;164494;Zufelde;Felix;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;GER;04.03.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;;;X
180;253118;Bengo-Oliveri;Henry;2009;1.ZH.1845;LV Albis;M;UGA;01.01.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
244;166340;Kliese;Linus;2008;1.ZH.1845;LV Albis;M;SUI;22.01.2008;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
253;169996;Moret;Timo;2008;1.ZH.1845;LV Albis;M;SUI;01.05.2008;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
255;174576;Müller;Andrin;2008;1.ZH.1845;LV Albis;M;SUI;15.02.2008;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
284;249483;Waldmeier;Janis;2009;1.ZH.1845;LV Albis;M;SUI;28.04.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
826;256772;Bugmann;Selina;2008;1.ZH.1811;LC Regensdorf;W;SUI;24.10.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
665;252908;Canzillon;Kina;2009;1.ZH.1811;LC Regensdorf;W;FRA;17.07.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;;;;
667;255191;Favre-Bulle;Gabriela;2009;1.ZH.1811;LC Regensdorf;W;SUI;24.08.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
668;248988;Fries;Jill;2009;1.ZH.1811;LC Regensdorf;W;SUI;22.08.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;;X
669;248716;Fuchser;Fiona;2008;1.ZH.1811;LC Regensdorf;W;SUI;08.05.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
671;253535;Groth;Sara;2008;1.ZH.1811;LC Regensdorf;W;SUI;25.09.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;;X;X;X
1083;253178;Lerjen;Magdalena;2008;1.ZH.1811;LC Regensdorf;W;SUI;13.01.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;;X;X;X
681;244758;Müller;Lennja;2008;1.ZH.1811;LC Regensdorf;W;SUI;10.10.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
683;247288;Reichler;Ella;2008;1.ZH.1811;LC Regensdorf;W;SUI;25.04.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;;X
1101;256957;Rüegg;Valeria;2009;1.ZH.1811;LC Regensdorf;W;SUI;12.11.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;;X;;X
685;248719;Schildknecht;Maude Vivienne;2009;1.ZH.1811;LC Regensdorf;W;SUI;30.08.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
827;173610;Steiner;Aylin;2008;1.ZH.1811;LC Regensdorf;W;SUI;24.11.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;X;;X
689;252909;Suter;Kisha;2009;1.ZH.1811;LC Regensdorf;W;SUI;08.04.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;X;X
690;252907;Witschi;Lisa;2008;1.ZH.1811;LC Regensdorf;W;SUI;13.10.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;;X
25;244806;Niederberger;Selina;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;22.02.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;X;X
1138;257391;Obradovic;Marija;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;CRO;23.12.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;X;X
469;249928;Scattolin;Leonie;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;28.03.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;;X;X
470;167128;Stern;Ramona;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;28.04.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;X;X
172;249410;Ackermann;Simea;2009;1.ZH.1828;LC Uster;W;SUI;09.03.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;X;X
1092;256714;Rrahmani;Elsa;2009;1.ZH.1828;LC Uster;W;KOS;04.07.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;X;X
146;250946;Walde;Livia;2009;1.ZH.1828;LC Uster;W;SUI;20.07.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;;X
722;A:999956;Bodenmann;Isabella;2009;1.ZH.1830;TV Uster;W;SUI;15.04.2009;;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;X;X
1077;251044;Lanz;Nina;2008;1.ZH.1892;STV Höri;W;SUI;21.02.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;X;X
590;256386;Acar;Vera;2009;1.ZH.1822;LV Winterthur;W;SUI;27.07.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;X;X;X;X
533;248457;Bohn;Hannah Luna;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
535;243983;Bühler;Alicia;2008;1.ZH.1822;LV Winterthur;W;SUI;19.09.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
591;255335;Dos Santos;Maria Vitoria;2008;1.ZH.1822;LV Winterthur;W;SUI;31.10.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
592;254758;Egli;Somea;2009;1.ZH.1822;LV Winterthur;W;SUI;02.10.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
538;173367;Facchinetti;Elisa;2009;1.ZH.1822;LV Winterthur;W;SUI;14.12.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
593;255005;Gassmann;Frieda;2008;1.ZH.1822;LV Winterthur;W;SUI;09.09.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
544;248458;Gubler;Céline;2008;1.ZH.1822;LV Winterthur;W;SUI;15.06.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
547;243979;Imafidon;Ronia;2008;1.ZH.1822;LV Winterthur;W;SUI;01.04.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;X;;X;X
551;253632;Kifle;Nebyat;2008;1.ZH.1822;LV Winterthur;W;GER;17.12.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;;X
560;252006;Meier;Jael;2009;1.ZH.1822;LV Winterthur;W;SUI;30.04.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;X;X;X;X
598;254757;Meissner;Neele;2008;1.ZH.1822;LV Winterthur;W;SUI;15.07.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
563;244618;Nicoli;Giuliana;2008;1.ZH.1822;LV Winterthur;W;SUI;23.08.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;X;;X
567;252012;Pfister;Linda;2008;1.ZH.1822;LV Winterthur;W;SUI;01.08.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;X;X;X
570;243981;Rusova;Jana;2008;1.ZH.1822;LV Winterthur;W;CZE;26.04.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;X;X;;X
572;170240;Schnyder;Jacqueline;2008;1.ZH.1822;LV Winterthur;W;SUI;28.05.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
584;252660;Vock;Marta;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;X;X;X
586;243982;Wendel;Liah;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;X;X;X;X
356;A:999980;Beeler;Sasha;2009;1.ZH.1871;TV Otelfingen;W;SUI;09.04.2009;;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;1493582;X;X;;X
350;256520;Glauser;Lavinia;2009;1.ZH.1871;TV Otelfingen;W;SUI;23.07.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;X;X;X;X
44;253104;Heusser;Ronja;2009;1.ZH.1885;SSC Athletics;W;SUI;19.04.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
45;252547;Hungerbühler;Anouk;2009;1.ZH.1885;SSC Athletics;W;SUI;20.11.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
53;163858;Niederer;Noelia;2008;1.ZH.1885;SSC Athletics;W;SUI;25.03.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
60;253537;Saric;Kleofa;2009;1.ZH.1885;SSC Athletics;W;SUI;09.04.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
195;253444;Bzdyrak;Roksana;2009;1.ZH.1845;LV Albis;W;POL;10.03.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
200;250318;de Mey;Emma;2009;1.ZH.1845;LV Albis;W;SUI;06.02.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;;X;X;X
215;172495;Gallo;Giada;2009;1.ZH.1845;LV Albis;W;SUI;02.07.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
224;246678;Grollimund;Annik;2008;1.ZH.1845;LV Albis;W;SUI;26.11.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;;X
226;169987;Grond;Yasmin;2009;1.ZH.1845;LV Albis;W;SUI;02.04.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;;X;X
227;174574;Gugerli;Carla;2009;1.ZH.1845;LV Albis;W;SUI;09.11.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
248;169998;Mangili;Elena;2008;1.ZH.1845;LV Albis;W;SUI;18.01.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
458;256670;Milojevic;Ana;2008;1.ZH.1845;LV Albis;W;SRB;06.06.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
262;246689;Niehausmeier;Neele;2008;1.ZH.1845;LV Albis;W;SUI;09.05.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
288;166339;Wärdell;Hanna;2008;1.ZH.1845;LV Albis;W;SUI;08.01.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
292;250321;Wicki;Serena;2009;1.ZH.1845;LV Albis;W;SUI;29.08.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
532;176205;Bisang;Jeremias;2007;1.ZH.1822;LV Winterthur;M;SUI;05.09.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
536;255419;Ceccon;Luca Sebastián;2006;1.ZH.1822;LV Winterthur;M;SUI;21.06.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
550;245841;Kifle;Eman;2007;1.ZH.1822;LV Winterthur;M;GER;12.11.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;;X;;X
558;248542;Masala;Flavio;2007;1.ZH.1822;LV Winterthur;M;SUI;26.05.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
564;169874;Nicoli;Simon;2006;1.ZH.1822;LV Winterthur;M;SUI;23.06.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
568;172534;Püntener;Flynn;2006;1.ZH.1822;LV Winterthur;M;SUI;24.05.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
574;253631;Serhani;Rachid;2007;1.ZH.1822;LV Winterthur;M;SUI;15.11.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
579;255336;Stähli;Tobias;2007;1.ZH.1822;LV Winterthur;M;SUI;03.06.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
679;175990;Jetzer;Marwin;2006;1.ZH.1811;LC Regensdorf;M;SUI;06.08.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;;X
675;165311;Marcantonio;Fabio;2007;1.ZH.1811;LC Regensdorf;M;SUI;14.02.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
677;169201;Meier;Noé;2006;1.ZH.1811;LC Regensdorf;M;SUI;04.11.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
678;176050;Mingot;Roman;2006;1.ZH.1811;LC Regensdorf;M;SUI;16.06.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;;X
14;251994;Cristovao;Nico;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;M;GER;22.03.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;X;X;X
16;171051;Ebert;Nick;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;19.09.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;;;X
17;159497;Eugster;Kimi Raphael;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;10.05.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
19;249063;Gonzalez Diterich;Pablo;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;M;GER;20.10.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
24;163407;Kresken;Sven;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;10.06.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;X;X;X
2;243938;Brunner;Julian;2006;1.ZH.1828;LC Uster;M;SUI;10.09.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
151;173389;Gasser;Dominic;2007;1.ZH.1828;LC Uster;M;SUI;29.05.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;X;X;X
1084;173385;Schmid;Loic;2007;1.ZH.1828;LC Uster;M;SUI;30.08.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;X;X;X
280;166336;Van der Aar;Lars;2007;1.ZH.1845;LV Albis;M;NED;12.04.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
344;167533;Diday;Cédric;2006;1.ZH.1871;TV Otelfingen;M;SUI;01.03.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
1052;244803;Häberli;Tom Luca;2007;1.ZH.1820;TV Dietlikon;M;SUI;25.08.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;;X;X
1051;244800;Krebs;Tobias;2007;1.ZH.1820;TV Dietlikon;M;SUI;19.07.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
11;249062;Blöchlinger;Xenia Victoria;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;15.04.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
12;253964;Brasse;Leni;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;19.02.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
13;161937;Bünzli;Sabrina;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;27.10.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
18;173782;Frick;Ramona;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;04.05.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
20;244687;Henke;Leonie;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;01.08.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;;;;X
26;164502;Müller;Nadine;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;25.08.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;;X
662;169207;Baronchelli;Latisha;2007;1.ZH.1811;LC Regensdorf;W;SUI;17.08.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
663;248712;Biaggi;Jael;2007;1.ZH.1811;LC Regensdorf;W;SUI;13.04.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;;X;X
666;169204;Da Mutten;Lili;2006;1.ZH.1811;LC Regensdorf;W;SUI;20.09.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;;X;X
670;245102;Hedinger;Fabienne;2007;1.ZH.1811;LC Regensdorf;W;SUI;27.02.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
673;245103;Lorenzo;Leonie Luana;2007;1.ZH.1811;LC Regensdorf;W;SUI;28.12.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;;X
1054;251302;Kümin;Selina;2006;1.ZH.1820;TV Dietlikon;W;SUI;07.09.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
1;244115;Adel;Victoria;2007;1.ZH.1828;LC Uster;W;IRL;30.08.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
724;152385;Bandi;Uma;2006;1.ZH.1828;LC Uster;W;SUI;14.01.2006;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;;X
3;176757;Reist;Samantha Noemi;2006;1.ZH.1828;LC Uster;W;SUI;21.03.2006;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
4;244744;Zwicky;Monika;2007;1.ZH.1828;LC Uster;W;SUI;24.04.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;;X;X;X
178;176016;Baer;Irina;2007;1.ZH.1845;LV Albis;W;SUI;21.09.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;;X
184;174580;Binzegger;Sara;2007;1.ZH.1845;LV Albis;W;SUI;19.08.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;;X
216;172494;Gallo;Marzia;2007;1.ZH.1845;LV Albis;W;SUI;12.08.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
258;170009;Müntener;Katelynn;2007;1.ZH.1845;LV Albis;W;SUI;18.05.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
273;171970;Schuster;Joy;2007;1.ZH.1845;LV Albis;W;SUI;27.04.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
357;A:999979;Köwitzsch;Karolina;1900;1.ZH.1871;TV Otelfingen;W;SUI;01.01.1900;;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;1542080;;X;X;X
345;251294;Schmid;Salomé;2006;1.ZH.1871;TV Otelfingen;W;SUI;03.07.2006;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
346;252670;Uebelhart;Ladina;2006;1.ZH.1871;TV Otelfingen;W;SUI;17.10.2006;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;;X;X;X
529;168993;Al-Mabhashi;Alawia;2007;1.ZH.1822;LV Winterthur;W;SUI;15.06.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
539;168121;Fierz;Tyra;2007;1.ZH.1822;LV Winterthur;W;SUI;04.02.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
541;165579;Ganster;Seraina;2006;1.ZH.1822;LV Winterthur;W;SUI;07.05.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
549;173228;Keel;Lena;2007;1.ZH.1822;LV Winterthur;W;SUI;28.01.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
553;245601;Kromer;Anouk;2007;1.ZH.1822;LV Winterthur;W;SUI;06.01.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;;X;X;X
576;164976;Sommer;Luana;2006;1.ZH.1822;LV Winterthur;W;SUI;05.02.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
577;164062;Spiller;Emily;2006;1.ZH.1822;LV Winterthur;W;SUI;08.06.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
580;248934;Sutter;Elena;2006;1.ZH.1822;LV Winterthur;W;SUI;03.12.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
588;251977;Wirz;Alissa;2006;1.ZH.1822;LV Winterthur;W;SUI;20.04.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
449;174277;Anderegg;Katja;2007;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;11.12.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
450;252564;Bütikofer;Jasmine;2006;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;12.05.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
451;165305;Friedel;Leoni;2006;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;09.05.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
1243;257480;Regalado;Rocio;2007;1.ZH.1819;TV Kloten LA;W;SUI;20.07.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;;;;X
340;169932;Schaden;Levia;2006;1.ZH.1819;TV Kloten LA;W;SUI;18.05.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
1 Anmeldenr Lizenznr Name Vorname Jahrgang Verein Club-Name Geschlecht Nationalitaet GebDat Bez Kategorie GruppeNr GruppeName Startzeit Bewerb Kanton KidID W1 W2 W3 W4
2 1041 256818 Basso Leo 2011 1.ZH.1845 LV Albis M SUI 12.10.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X
3 199 253445 de Mey Elio 2010 1.ZH.1845 LV Albis M SUI 16.11.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X
4 246 253448 Kourpas Adam 2010 1.ZH.1845 LV Albis M GBR 03.10.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X
5 247 251479 Loup Léo Eric 2010 1.ZH.1845 LV Albis M SUI 31.08.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
6 303 255707 Nicolodi Enzo 2010 1.ZH.1845 LV Albis M SUI 17.06.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
7 304 255712 Nievergelt Flurin 2011 1.ZH.1845 LV Albis M SUI 28.03.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
8 305 255711 Palermo Domenico 2011 1.ZH.1845 LV Albis M SUI 03.06.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
9 251 249486 Meili Mattia 2010 1.ZH.1845 LV Albis M SUI 21.09.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X
10 308 255709 Schneider Nikolaj 2011 1.ZH.1845 LV Albis M SUI 06.06.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X
11 309 255705 Steiner Maxime 2010 1.ZH.1845 LV Albis M SUI 18.11.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
12 276 255330 Stuckert Dennis 2011 1.ZH.1845 LV Albis M SUI 06.03.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X
13 711 249112 Calo Jarno 2010 1.ZH.1811 LC Regensdorf M SUI 01.01.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
14 710 255194 Demirok Baha 2011 1.ZH.1811 LC Regensdorf M SUI 22.02.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
15 709 255193 Egli Loris 2011 1.ZH.1811 LC Regensdorf M SUI 23.08.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X
16 714 255224 Estua Xabi 2011 1.ZH.1811 LC Regensdorf M ESP 11.06.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X
17 704 252902 Jacob Ricky 2010 1.ZH.1811 LC Regensdorf M SUI 24.02.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
18 699 244670 Rojano Cruz José Maria 2010 1.ZH.1811 LC Regensdorf M ESP 21.11.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
19 696 176199 Wilhelm Alejandro 2010 1.ZH.1811 LC Regensdorf M SUI 08.01.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
20 693 255195 Zurbuchen Remo 2011 1.ZH.1811 LC Regensdorf M SUI 30.09.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
21 565 252015 Ohlendorf Norman 2010 1.ZH.1822 LV Winterthur M GER 04.10.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
22 601 255156 Simperl Marius 2011 1.ZH.1822 LV Winterthur M SUI 04.03.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
23 583 252008 van Seumeren Cornelius 2010 1.ZH.1822 LV Winterthur M SUI 08.12.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
24 1117 251722 Gläser Roman 2011 1.ZH.1819 TV Kloten LA M SUI 03.11.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X
25 605 255392 Hugentobler Lorin 2011 1.ZH.1819 TV Kloten LA M SUI 03.07.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X
26 1049 253122 Güler Eray 2010 1.ZH.1820 TV Dietlikon M SUI 23.01.2010 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
27 1050 255308 Krebs Jonas 2011 1.ZH.1820 TV Dietlikon M SUI 10.09.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
28 1062 A:999859 Loretz Leon 2010 1.ZH.1820 TV Dietlikon M SUI 13.08.2010 U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X
29 1055 253858 Märki Diego 2010 1.ZH.1820 TV Dietlikon M SUI 21.01.2010 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X
30 8 256044 Haas Leandro 2011 1.ZH.1828 LC Uster M SUI 04.12.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
31 145 255982 Straube Tommy 2011 1.ZH.1828 LC Uster M SUI 15.11.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
32 353 256523 Wittel Jörn 2011 1.ZH.1871 TV Otelfingen M GER 07.02.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
33 672 253180 Heiderich Leonie 2010 1.ZH.1811 LC Regensdorf W SUI 20.09.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
34 715 255206 Hilti Livia 2011 1.ZH.1811 LC Regensdorf W SUI 03.02.2011 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X
35 705 255202 Hürzeler Noemi 2010 1.ZH.1811 LC Regensdorf W SUI 28.02.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X
36 674 255209 Lampropoulou Iliana 2010 1.ZH.1811 LC Regensdorf W GRE 10.08.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X
37 680 255210 Leonardo Timea 2010 1.ZH.1811 LC Regensdorf W SUI 09.09.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
38 676 255200 Mamais Sofia 2010 1.ZH.1811 LC Regensdorf W SUI 01.10.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X X
39 684 248720 Rindle Lina Joëlle 2010 1.ZH.1811 LC Regensdorf W SUI 27.01.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
40 686 253198 Schwedhelm Jula 2010 1.ZH.1811 LC Regensdorf W GER 23.09.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
41 687 255203 Spottek Mia 2011 1.ZH.1811 LC Regensdorf W SUI 25.07.2011 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X X
42 688 253183 Steinlin Aline 2010 1.ZH.1811 LC Regensdorf W SUI 05.05.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
43 692 255207 Wollscheid Zoe 2011 1.ZH.1811 LC Regensdorf W SUI 28.03.2011 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X X
44 454 250320 Bajrami Maida 2011 1.ZH.1845 LV Albis W SUI 18.02.2011 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X
45 1254 A:999822 Bala Alina 2010 1.ZH.1845 LV Albis W SUI 21.06.2010 U12W 5 Gr. 2 U12W 12:15 4-K ZH X
46 455 256666 Constable Isabella 2010 1.ZH.1845 LV Albis W GBR 18.03.2010 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
47 456 250319 Cosabic Ilma 2011 1.ZH.1845 LV Albis W 99 26.12.2011 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
48 457 256671 Kadriaj Alina 2011 1.ZH.1845 LV Albis W SUI 25.09.2011 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
49 241 253447 Keller Laura 2010 1.ZH.1845 LV Albis W SUI 21.04.2010 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X
50 301 249481 Meier Angelina 2011 1.ZH.1845 LV Albis W SUI 25.08.2011 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
51 302 255704 Moser Aline 2010 1.ZH.1845 LV Albis W SUI 06.12.2010 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
52 264 251478 Perks Lucia 2011 1.ZH.1845 LV Albis W SUI 08.06.2011 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
53 265 246691 Plüss Livia 2010 1.ZH.1845 LV Albis W SUI 19.06.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
54 307 255708 Sangermano Lorena 2011 1.ZH.1845 LV Albis W SUI 18.06.2011 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
55 1255 A:999821 Shala Gentiona 2011 1.ZH.1845 LV Albis W ALB 16.02.2011 U12W 6 Gr. 3 U12W 12:15 4-K ZH X
56 279 246694 Utzinger Larissa 2010 1.ZH.1845 LV Albis W SUI 02.03.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
57 285 249484 Walter Michelle 2010 1.ZH.1845 LV Albis W SUI 22.09.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
58 291 174573 Wicki Ciara 2010 1.ZH.1845 LV Albis W SUI 14.11.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
59 1116 253588 Barattini Martina 2010 1.ZH.1819 TV Kloten LA W SUI 20.04.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X
60 604 254172 Quartu Peace 2011 1.ZH.1819 TV Kloten LA W SUI 09.01.2011 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X
61 347 256457 Burkhalter Hanna 2010 1.ZH.1871 TV Otelfingen W SUI 02.01.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
62 348 256458 Burkhalter Paula 2011 1.ZH.1871 TV Otelfingen W SUI 03.07.2011 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
63 358 A:999977 Findik Günes 2011 1.ZH.1871 TV Otelfingen W SUI 16.12.2011 U12W 7 Gr. 4 U12W 14:20 4-K ZH
64 349 256459 Fort Elena 2011 1.ZH.1871 TV Otelfingen W SUI 04.02.2011 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
65 351 256462 Hofmann Emily 2010 1.ZH.1871 TV Otelfingen W SUI 07.05.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
66 1249 255980 Jucker Melanie 2010 1.ZH.1880 LC Rafzerfeld W SUI 01.11.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X
67 1093 256950 Casutt Livia 2010 1.ZH.1885 SSC Athletics W SUI 17.05.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X
68 38 253499 Ferarha Amira 2010 1.ZH.1885 SSC Athletics W SUI 17.01.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH
69 1075 249203 Müller Alicia 2011 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 01.03.2011 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
70 1073 245937 Tamas Elena 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 08.01.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
71 896 256751 Ahilaruban Oviya 2011 1.ZH.1822 LV Winterthur W SRI 09.06.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
72 534 252007 Brügger Lenja 2010 1.ZH.1822 LV Winterthur W SUI 14.06.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
73 537 252017 Erny Liana 2010 1.ZH.1822 LV Winterthur W SUI 22.05.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
74 597 255079 Lehner Lea 2010 1.ZH.1822 LV Winterthur W SUI 14.04.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
75 899 256752 Maurer Johanna 2011 1.ZH.1822 LV Winterthur W SUI 18.06.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
76 824 254499 Bosshard Naemi 2010 1.ZH.1828 LC Uster W SUI 03.02.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
77 825 253820 Schmid Léane 2010 1.ZH.1828 LC Uster W SUI 30.06.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
78 173 253123 Toller Liv 2010 1.ZH.1828 LC Uster W SUI 17.01.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
79 7 251505 Yapi Laeticia 2010 1.ZH.1828 LC Uster W SUI 26.01.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
80 712 173598 Beyeler Levin 2008 1.ZH.1811 LC Regensdorf M SUI 13.04.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X
81 707 248705 Erny Dario 2009 1.ZH.1811 LC Regensdorf M SUI 27.04.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X
82 708 253948 Fuchs Aurel 2009 1.ZH.1811 LC Regensdorf M SUI 22.10.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X
83 706 245107 Greile Jannis 2008 1.ZH.1811 LC Regensdorf M SUI 13.09.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X
84 713 174270 Meier Gion Andri 2009 1.ZH.1811 LC Regensdorf M SUI 01.09.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X
85 703 254561 Mittner Sven 2009 1.ZH.1811 LC Regensdorf M SUI 31.03.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X X
86 702 253523 Mollet Nicholas 2009 1.ZH.1811 LC Regensdorf M SUI 24.07.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X
87 701 254705 Radosarljevic Luka 2008 1.ZH.1811 LC Regensdorf M SUI 01.12.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X X
88 700 173601 Rojano Cruz Manuel 2008 1.ZH.1811 LC Regensdorf M ESP 12.07.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X X
89 697 169200 Wiedmer Jorin 2008 1.ZH.1811 LC Regensdorf M SUI 22.09.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X X
90 695 254060 Wollscheid Max 2009 1.ZH.1811 LC Regensdorf M SUI 07.06.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X
91 694 245109 Ziegler Sebastian 2008 1.ZH.1811 LC Regensdorf M SUI 29.04.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X
92 1060 A:999860 Koch Fabian 2008 1.ZH.1820 TV Dietlikon M SUI 12.02.2008 U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
93 1053 253997 Krebs Lukas 2009 1.ZH.1820 TV Dietlikon M SUI 03.06.2009 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
94 1056 253857 Milz Basil 2009 1.ZH.1820 TV Dietlikon M SUI 01.07.2009 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
95 5 244743 Hauser Laurin 2008 1.ZH.1828 LC Uster M SUI 08.02.2008 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
96 6 249354 Schärli Ron 2009 1.ZH.1828 LC Uster M SUI 06.02.2009 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
97 9 244746 Totaro Luca 2008 1.ZH.1828 LC Uster M SUI 07.10.2008 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
98 352 256456 Steinholtz Zachary 2009 1.ZH.1871 TV Otelfingen M SUI 06.05.2009 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
99 1130 257441 Uebelhart Jannis 2008 1.ZH.1871 TV Otelfingen M SUI 13.05.2008 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X
100 530 173725 Beranek-Chiu Noah 2009 1.ZH.1822 LV Winterthur M GER 21.12.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X
101 543 253924 Graber Henry 2008 1.ZH.1822 LV Winterthur M SUI 26.11.2008 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
102 545 251627 Homberger Tim Emerick 2009 1.ZH.1822 LV Winterthur M SUI 26.10.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
103 897 256756 Horisberger Levi 2009 1.ZH.1822 LV Winterthur M SUI 30.01.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
104 548 175424 Käser Silvan 2008 1.ZH.1822 LV Winterthur M SUI 22.04.2008 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
105 554 252659 Laib Luc 2009 1.ZH.1822 LV Winterthur M SUI 09.12.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
106 555 248541 Lamprecht Corvin 2008 1.ZH.1822 LV Winterthur M SUI 30.06.2008 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
107 556 253900 Lerch Leon 2009 1.ZH.1822 LV Winterthur M SUI 21.05.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
108 902 256757 Stähli Jonas 2009 1.ZH.1822 LV Winterthur M SUI 09.05.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
109 589 173723 Wollnik Robin 2009 1.ZH.1822 LV Winterthur M GER 02.11.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
110 461 246247 Gonzalez Diterich Luis 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M GER 15.07.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
111 466 161330 Klaus Michael 2008 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 08.04.2008 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
112 467 245932 Kresken Tim 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 19.12.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
113 468 171052 Müller Jan 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 16.08.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X
114 471 164494 Zufelde Felix 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M GER 04.03.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X
115 180 253118 Bengo-Oliveri Henry 2009 1.ZH.1845 LV Albis M UGA 01.01.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
116 244 166340 Kliese Linus 2008 1.ZH.1845 LV Albis M SUI 22.01.2008 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
117 253 169996 Moret Timo 2008 1.ZH.1845 LV Albis M SUI 01.05.2008 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
118 255 174576 Müller Andrin 2008 1.ZH.1845 LV Albis M SUI 15.02.2008 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
119 284 249483 Waldmeier Janis 2009 1.ZH.1845 LV Albis M SUI 28.04.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
120 826 256772 Bugmann Selina 2008 1.ZH.1811 LC Regensdorf W SUI 24.10.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
121 665 252908 Canzillon Kina 2009 1.ZH.1811 LC Regensdorf W FRA 17.07.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH
122 667 255191 Favre-Bulle Gabriela 2009 1.ZH.1811 LC Regensdorf W SUI 24.08.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
123 668 248988 Fries Jill 2009 1.ZH.1811 LC Regensdorf W SUI 22.08.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X
124 669 248716 Fuchser Fiona 2008 1.ZH.1811 LC Regensdorf W SUI 08.05.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
125 671 253535 Groth Sara 2008 1.ZH.1811 LC Regensdorf W SUI 25.09.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X
126 1083 253178 Lerjen Magdalena 2008 1.ZH.1811 LC Regensdorf W SUI 13.01.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X
127 681 244758 Müller Lennja 2008 1.ZH.1811 LC Regensdorf W SUI 10.10.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
128 683 247288 Reichler Ella 2008 1.ZH.1811 LC Regensdorf W SUI 25.04.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X
129 1101 256957 Rüegg Valeria 2009 1.ZH.1811 LC Regensdorf W SUI 12.11.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X
130 685 248719 Schildknecht Maude Vivienne 2009 1.ZH.1811 LC Regensdorf W SUI 30.08.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
131 827 173610 Steiner Aylin 2008 1.ZH.1811 LC Regensdorf W SUI 24.11.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
132 689 252909 Suter Kisha 2009 1.ZH.1811 LC Regensdorf W SUI 08.04.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X X
133 690 252907 Witschi Lisa 2008 1.ZH.1811 LC Regensdorf W SUI 13.10.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X
134 25 244806 Niederberger Selina 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 22.02.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X X
135 1138 257391 Obradovic Marija 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W CRO 23.12.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
136 469 249928 Scattolin Leonie 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 28.03.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X
137 470 167128 Stern Ramona 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 28.04.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X X
138 172 249410 Ackermann Simea 2009 1.ZH.1828 LC Uster W SUI 09.03.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
139 1092 256714 Rrahmani Elsa 2009 1.ZH.1828 LC Uster W KOS 04.07.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X X
140 146 250946 Walde Livia 2009 1.ZH.1828 LC Uster W SUI 20.07.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X
141 722 A:999956 Bodenmann Isabella 2009 1.ZH.1830 TV Uster W SUI 15.04.2009 U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
142 1077 251044 Lanz Nina 2008 1.ZH.1892 STV Höri W SUI 21.02.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
143 590 256386 Acar Vera 2009 1.ZH.1822 LV Winterthur W SUI 27.07.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X X
144 533 248457 Bohn Hannah Luna 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
145 535 243983 Bühler Alicia 2008 1.ZH.1822 LV Winterthur W SUI 19.09.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
146 591 255335 Dos Santos Maria Vitoria 2008 1.ZH.1822 LV Winterthur W SUI 31.10.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
147 592 254758 Egli Somea 2009 1.ZH.1822 LV Winterthur W SUI 02.10.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
148 538 173367 Facchinetti Elisa 2009 1.ZH.1822 LV Winterthur W SUI 14.12.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
149 593 255005 Gassmann Frieda 2008 1.ZH.1822 LV Winterthur W SUI 09.09.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
150 544 248458 Gubler Céline 2008 1.ZH.1822 LV Winterthur W SUI 15.06.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
151 547 243979 Imafidon Ronia 2008 1.ZH.1822 LV Winterthur W SUI 01.04.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
152 551 253632 Kifle Nebyat 2008 1.ZH.1822 LV Winterthur W GER 17.12.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X
153 560 252006 Meier Jael 2009 1.ZH.1822 LV Winterthur W SUI 30.04.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X X
154 598 254757 Meissner Neele 2008 1.ZH.1822 LV Winterthur W SUI 15.07.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
155 563 244618 Nicoli Giuliana 2008 1.ZH.1822 LV Winterthur W SUI 23.08.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X
156 567 252012 Pfister Linda 2008 1.ZH.1822 LV Winterthur W SUI 01.08.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X
157 570 243981 Rusova Jana 2008 1.ZH.1822 LV Winterthur W CZE 26.04.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X
158 572 170240 Schnyder Jacqueline 2008 1.ZH.1822 LV Winterthur W SUI 28.05.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
159 584 252660 Vock Marta 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X
160 586 243982 Wendel Liah 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X X
161 356 A:999980 Beeler Sasha 2009 1.ZH.1871 TV Otelfingen W SUI 09.04.2009 U14W 16 Gr. 4 U14W 14:05 4-K ZH 1493582 X X X
162 350 256520 Glauser Lavinia 2009 1.ZH.1871 TV Otelfingen W SUI 23.07.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X X
163 44 253104 Heusser Ronja 2009 1.ZH.1885 SSC Athletics W SUI 19.04.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
164 45 252547 Hungerbühler Anouk 2009 1.ZH.1885 SSC Athletics W SUI 20.11.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
165 53 163858 Niederer Noelia 2008 1.ZH.1885 SSC Athletics W SUI 25.03.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
166 60 253537 Saric Kleofa 2009 1.ZH.1885 SSC Athletics W SUI 09.04.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
167 195 253444 Bzdyrak Roksana 2009 1.ZH.1845 LV Albis W POL 10.03.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
168 200 250318 de Mey Emma 2009 1.ZH.1845 LV Albis W SUI 06.02.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X
169 215 172495 Gallo Giada 2009 1.ZH.1845 LV Albis W SUI 02.07.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
170 224 246678 Grollimund Annik 2008 1.ZH.1845 LV Albis W SUI 26.11.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X
171 226 169987 Grond Yasmin 2009 1.ZH.1845 LV Albis W SUI 02.04.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X
172 227 174574 Gugerli Carla 2009 1.ZH.1845 LV Albis W SUI 09.11.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
173 248 169998 Mangili Elena 2008 1.ZH.1845 LV Albis W SUI 18.01.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
174 458 256670 Milojevic Ana 2008 1.ZH.1845 LV Albis W SRB 06.06.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
175 262 246689 Niehausmeier Neele 2008 1.ZH.1845 LV Albis W SUI 09.05.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
176 288 166339 Wärdell Hanna 2008 1.ZH.1845 LV Albis W SUI 08.01.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
177 292 250321 Wicki Serena 2009 1.ZH.1845 LV Albis W SUI 29.08.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
178 532 176205 Bisang Jeremias 2007 1.ZH.1822 LV Winterthur M SUI 05.09.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
179 536 255419 Ceccon Luca Sebastián 2006 1.ZH.1822 LV Winterthur M SUI 21.06.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
180 550 245841 Kifle Eman 2007 1.ZH.1822 LV Winterthur M GER 12.11.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X
181 558 248542 Masala Flavio 2007 1.ZH.1822 LV Winterthur M SUI 26.05.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
182 564 169874 Nicoli Simon 2006 1.ZH.1822 LV Winterthur M SUI 23.06.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
183 568 172534 Püntener Flynn 2006 1.ZH.1822 LV Winterthur M SUI 24.05.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
184 574 253631 Serhani Rachid 2007 1.ZH.1822 LV Winterthur M SUI 15.11.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
185 579 255336 Stähli Tobias 2007 1.ZH.1822 LV Winterthur M SUI 03.06.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
186 679 175990 Jetzer Marwin 2006 1.ZH.1811 LC Regensdorf M SUI 06.08.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X
187 675 165311 Marcantonio Fabio 2007 1.ZH.1811 LC Regensdorf M SUI 14.02.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
188 677 169201 Meier Noé 2006 1.ZH.1811 LC Regensdorf M SUI 04.11.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
189 678 176050 Mingot Roman 2006 1.ZH.1811 LC Regensdorf M SUI 16.06.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X
190 14 251994 Cristovao Nico 2006 1.ZH.1827 Leichtathletik-Club Dübendorf M GER 22.03.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
191 16 171051 Ebert Nick 2007 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 19.09.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X
192 17 159497 Eugster Kimi Raphael 2006 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 10.05.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
193 19 249063 Gonzalez Diterich Pablo 2007 1.ZH.1827 Leichtathletik-Club Dübendorf M GER 20.10.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
194 24 163407 Kresken Sven 2006 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 10.06.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
195 2 243938 Brunner Julian 2006 1.ZH.1828 LC Uster M SUI 10.09.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
196 151 173389 Gasser Dominic 2007 1.ZH.1828 LC Uster M SUI 29.05.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
197 1084 173385 Schmid Loic 2007 1.ZH.1828 LC Uster M SUI 30.08.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
198 280 166336 Van der Aar Lars 2007 1.ZH.1845 LV Albis M NED 12.04.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
199 344 167533 Diday Cédric 2006 1.ZH.1871 TV Otelfingen M SUI 01.03.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
200 1052 244803 Häberli Tom Luca 2007 1.ZH.1820 TV Dietlikon M SUI 25.08.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
201 1051 244800 Krebs Tobias 2007 1.ZH.1820 TV Dietlikon M SUI 19.07.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
202 11 249062 Blöchlinger Xenia Victoria 2006 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 15.04.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
203 12 253964 Brasse Leni 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 19.02.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
204 13 161937 Bünzli Sabrina 2006 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 27.10.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
205 18 173782 Frick Ramona 2006 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 04.05.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
206 20 244687 Henke Leonie 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 01.08.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X
207 26 164502 Müller Nadine 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 25.08.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X
208 662 169207 Baronchelli Latisha 2007 1.ZH.1811 LC Regensdorf W SUI 17.08.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
209 663 248712 Biaggi Jael 2007 1.ZH.1811 LC Regensdorf W SUI 13.04.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X
210 666 169204 Da Mutten Lili 2006 1.ZH.1811 LC Regensdorf W SUI 20.09.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X
211 670 245102 Hedinger Fabienne 2007 1.ZH.1811 LC Regensdorf W SUI 27.02.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
212 673 245103 Lorenzo Leonie Luana 2007 1.ZH.1811 LC Regensdorf W SUI 28.12.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X
213 1054 251302 Kümin Selina 2006 1.ZH.1820 TV Dietlikon W SUI 07.09.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
214 1 244115 Adel Victoria 2007 1.ZH.1828 LC Uster W IRL 30.08.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
215 724 152385 Bandi Uma 2006 1.ZH.1828 LC Uster W SUI 14.01.2006 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
216 3 176757 Reist Samantha Noemi 2006 1.ZH.1828 LC Uster W SUI 21.03.2006 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
217 4 244744 Zwicky Monika 2007 1.ZH.1828 LC Uster W SUI 24.04.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
218 178 176016 Baer Irina 2007 1.ZH.1845 LV Albis W SUI 21.09.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
219 184 174580 Binzegger Sara 2007 1.ZH.1845 LV Albis W SUI 19.08.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
220 216 172494 Gallo Marzia 2007 1.ZH.1845 LV Albis W SUI 12.08.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
221 258 170009 Müntener Katelynn 2007 1.ZH.1845 LV Albis W SUI 18.05.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
222 273 171970 Schuster Joy 2007 1.ZH.1845 LV Albis W SUI 27.04.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
223 357 A:999979 Köwitzsch Karolina 1900 1.ZH.1871 TV Otelfingen W SUI 01.01.1900 U16W 21 Gr. 2 U16W 10:40 4-K ZH 1542080 X X X
224 345 251294 Schmid Salomé 2006 1.ZH.1871 TV Otelfingen W SUI 03.07.2006 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
225 346 252670 Uebelhart Ladina 2006 1.ZH.1871 TV Otelfingen W SUI 17.10.2006 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
226 529 168993 Al-Mabhashi Alawia 2007 1.ZH.1822 LV Winterthur W SUI 15.06.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
227 539 168121 Fierz Tyra 2007 1.ZH.1822 LV Winterthur W SUI 04.02.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
228 541 165579 Ganster Seraina 2006 1.ZH.1822 LV Winterthur W SUI 07.05.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
229 549 173228 Keel Lena 2007 1.ZH.1822 LV Winterthur W SUI 28.01.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
230 553 245601 Kromer Anouk 2007 1.ZH.1822 LV Winterthur W SUI 06.01.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X
231 576 164976 Sommer Luana 2006 1.ZH.1822 LV Winterthur W SUI 05.02.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
232 577 164062 Spiller Emily 2006 1.ZH.1822 LV Winterthur W SUI 08.06.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
233 580 248934 Sutter Elena 2006 1.ZH.1822 LV Winterthur W SUI 03.12.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
234 588 251977 Wirz Alissa 2006 1.ZH.1822 LV Winterthur W SUI 20.04.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
235 449 174277 Anderegg Katja 2007 1.ZH.1893 LC Furttal ZH-Nord W SUI 11.12.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
236 450 252564 Bütikofer Jasmine 2006 1.ZH.1893 LC Furttal ZH-Nord W SUI 12.05.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
237 451 165305 Friedel Leoni 2006 1.ZH.1893 LC Furttal ZH-Nord W SUI 09.05.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
238 1243 257480 Regalado Rocio 2007 1.ZH.1819 TV Kloten LA W SUI 20.07.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X
239 340 169932 Schaden Levia 2006 1.ZH.1819 TV Kloten LA W SUI 18.05.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X

@ -1,239 +0,0 @@
Anmeldenr;Lizenznr;Name;Vorname;Jahrgang;Verein;Club-Name;Geschlecht;Nationalitaet;GebDat;Bez;Kategorie;GruppeNr;GruppeName;Startzeit;Bewerb;Kanton;KidID;W1;W2;W3;W4
1041;256818;Basso;Leo;2011;1.ZH.1845;LV Albis;M;SUI;12.10.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;;X
199;253445;de Mey;Elio;2010;1.ZH.1845;LV Albis;M;SUI;16.11.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;;;X;X
246;253448;Kourpas;Adam;2010;1.ZH.1845;LV Albis;M;GBR;03.10.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;;X
247;251479;Loup;Léo Eric;2010;1.ZH.1845;LV Albis;M;SUI;31.08.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
303;255707;Nicolodi;Enzo;2010;1.ZH.1845;LV Albis;M;SUI;17.06.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
304;255712;Nievergelt;Flurin;2011;1.ZH.1845;LV Albis;M;SUI;28.03.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
305;255711;Palermo;Domenico;2011;1.ZH.1845;LV Albis;M;SUI;03.06.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
251;249486;Meili;Mattia;2010;1.ZH.1845;LV Albis;M;SUI;21.09.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;;X;;X
308;255709;Schneider;Nikolaj;2011;1.ZH.1845;LV Albis;M;SUI;06.06.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;;X;X
309;255705;Steiner;Maxime;2010;1.ZH.1845;LV Albis;M;SUI;18.11.2010;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;X;X;X;X
276;255330;Stuckert;Dennis;2011;1.ZH.1845;LV Albis;M;SUI;06.03.2011;Y;U12M;1;Gr. 1 U12M;10:20;4-K;ZH;;;X;X;X
711;249112;Calo;Jarno;2010;1.ZH.1811;LC Regensdorf;M;SUI;01.01.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;;X;X
710;255194;Demirok;Baha;2011;1.ZH.1811;LC Regensdorf;M;SUI;22.02.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;;X;X
709;255193;Egli;Loris;2011;1.ZH.1811;LC Regensdorf;M;SUI;23.08.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;;;X
714;255224;Estua;Xabi;2011;1.ZH.1811;LC Regensdorf;M;ESP;11.06.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;;;X
704;252902;Jacob;Ricky;2010;1.ZH.1811;LC Regensdorf;M;SUI;24.02.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;;X;;X
699;244670;Rojano Cruz;José Maria;2010;1.ZH.1811;LC Regensdorf;M;ESP;21.11.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
696;176199;Wilhelm;Alejandro;2010;1.ZH.1811;LC Regensdorf;M;SUI;08.01.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
693;255195;Zurbuchen;Remo;2011;1.ZH.1811;LC Regensdorf;M;SUI;30.09.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
565;252015;Ohlendorf;Norman;2010;1.ZH.1822;LV Winterthur;M;GER;04.10.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
601;255156;Simperl;Marius;2011;1.ZH.1822;LV Winterthur;M;SUI;04.03.2011;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
583;252008;van Seumeren;Cornelius;2010;1.ZH.1822;LV Winterthur;M;SUI;08.12.2010;Y;U12M;2;Gr. 2 U12M;10:20;4-K;ZH;;X;X;X;X
1117;251722;Gläser;Roman;2011;1.ZH.1819;TV Kloten LA;M;SUI;03.11.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;;X;;X
605;255392;Hugentobler;Lorin;2011;1.ZH.1819;TV Kloten LA;M;SUI;03.07.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;;;X
1049;253122;Güler;Eray;2010;1.ZH.1820;TV Dietlikon;M;SUI;23.01.2010;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
1050;255308;Krebs;Jonas;2011;1.ZH.1820;TV Dietlikon;M;SUI;10.09.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
1062;256867;Loretz;Leon;2010;1.ZH.1820;TV Dietlikon;M;SUI;13.08.2010;;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;;X;X
1055;253858;Märki;Diego;2010;1.ZH.1820;TV Dietlikon;M;SUI;21.01.2010;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;;;X;X
8;256044;Haas;Leandro;2011;1.ZH.1828;LC Uster;M;SUI;04.12.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
145;255982;Straube;Tommy;2011;1.ZH.1828;LC Uster;M;SUI;15.11.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
353;256523;Wittel;Jörn;2011;1.ZH.1871;TV Otelfingen;M;GER;07.02.2011;Y;U12M;3;Gr. 3 U12M;10:20;4-K;ZH;;X;X;X;X
672;253180;Heiderich;Leonie;2010;1.ZH.1811;LC Regensdorf;W;SUI;20.09.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;;X;X
715;255206;Hilti;Livia;2011;1.ZH.1811;LC Regensdorf;W;SUI;03.02.2011;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;;X;;X
705;255202;Hürzeler;Noemi;2010;1.ZH.1811;LC Regensdorf;W;SUI;28.02.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;;;X;X
674;255209;Lampropoulou;Iliana;2010;1.ZH.1811;LC Regensdorf;W;GRE;10.08.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;;;;X
680;255210;Leonardo;Timea;2010;1.ZH.1811;LC Regensdorf;W;SUI;09.09.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;;X
676;255200;Mamais;Sofia;2010;1.ZH.1811;LC Regensdorf;W;SUI;01.10.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;X;X
684;248720;Rindle;Lina Joëlle;2010;1.ZH.1811;LC Regensdorf;W;SUI;27.01.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;;X;X
686;253198;Schwedhelm;Jula;2010;1.ZH.1811;LC Regensdorf;W;GER;23.09.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;;X
687;255203;Spottek;Mia;2011;1.ZH.1811;LC Regensdorf;W;SUI;25.07.2011;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;X;X
688;253183;Steinlin;Aline;2010;1.ZH.1811;LC Regensdorf;W;SUI;05.05.2010;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;;X;X;X
692;255207;Wollscheid;Zoe;2011;1.ZH.1811;LC Regensdorf;W;SUI;28.03.2011;Y;U12W;4;Gr. 1 U12W;12:15;4-K;ZH;;X;X;X;X
454;250320;Bajrami;Maida;2011;1.ZH.1845;LV Albis;W;SUI;18.02.2011;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;;X
1254;A:999822;Bala;Alina;2010;1.ZH.1845;LV Albis;W;SUI;21.06.2010;;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;;;;X
455;256666;Constable;Isabella;2010;1.ZH.1845;LV Albis;W;GBR;18.03.2010;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
456;250319;Cosabic;Ilma;2011;1.ZH.1845;LV Albis;W;99;26.12.2011;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
457;256671;Kadriaj;Alina;2011;1.ZH.1845;LV Albis;W;SUI;25.09.2011;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
241;253447;Keller;Laura;2010;1.ZH.1845;LV Albis;W;SUI;21.04.2010;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;;X;;X
301;249481;Meier;Angelina;2011;1.ZH.1845;LV Albis;W;SUI;25.08.2011;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
302;255704;Moser;Aline;2010;1.ZH.1845;LV Albis;W;SUI;06.12.2010;Y;U12W;5;Gr. 2 U12W;12:15;4-K;ZH;;X;X;X;X
264;251478;Perks;Lucia;2011;1.ZH.1845;LV Albis;W;SUI;08.06.2011;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
265;246691;Plüss;Livia;2010;1.ZH.1845;LV Albis;W;SUI;19.06.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
307;255708;Sangermano;Lorena;2011;1.ZH.1845;LV Albis;W;SUI;18.06.2011;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
1255;A:999821;Shala;Gentiona;2011;1.ZH.1845;LV Albis;W;ALB;16.02.2011;;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;;;;X
279;246694;Utzinger;Larissa;2010;1.ZH.1845;LV Albis;W;SUI;02.03.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
285;249484;Walter;Michelle;2010;1.ZH.1845;LV Albis;W;SUI;22.09.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
291;174573;Wicki;Ciara;2010;1.ZH.1845;LV Albis;W;SUI;14.11.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;X;X;X
1116;253588;Barattini;Martina;2010;1.ZH.1819;TV Kloten LA;W;SUI;20.04.2010;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;;X;X;X
604;254172;Quartu;Peace;2011;1.ZH.1819;TV Kloten LA;W;SUI;09.01.2011;Y;U12W;6;Gr. 3 U12W;12:15;4-K;ZH;;X;;X;X
347;256457;Burkhalter;Hanna;2010;1.ZH.1871;TV Otelfingen;W;SUI;02.01.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
348;256458;Burkhalter;Paula;2011;1.ZH.1871;TV Otelfingen;W;SUI;03.07.2011;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
358;A:999977;Findik;Günes;2011;1.ZH.1871;TV Otelfingen;W;SUI;16.12.2011;;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;;;;
349;256459;Fort;Elena;2011;1.ZH.1871;TV Otelfingen;W;SUI;04.02.2011;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
351;256462;Hofmann;Emily;2010;1.ZH.1871;TV Otelfingen;W;SUI;07.05.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
1249;255980;Jucker;Melanie;2010;1.ZH.1880;LC Rafzerfeld;W;SUI;01.11.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;;;;X
1093;256950;Casutt;Livia;2010;1.ZH.1885;SSC Athletics;W;SUI;17.05.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;;;;X
38;253499;Ferarha;Amira;2010;1.ZH.1885;SSC Athletics;W;SUI;17.01.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;;;;
1075;249203;Müller;Alicia;2011;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;01.03.2011;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
1073;245937;Tamas;Elena;2010;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;08.01.2010;Y;U12W;7;Gr. 4 U12W;14:20;4-K;ZH;;X;X;X;X
896;256751;Ahilaruban;Oviya;2011;1.ZH.1822;LV Winterthur;W;SRI;09.06.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
534;252007;Brügger;Lenja;2010;1.ZH.1822;LV Winterthur;W;SUI;14.06.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
537;252017;Erny;Liana;2010;1.ZH.1822;LV Winterthur;W;SUI;22.05.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
597;255079;Lehner;Lea;2010;1.ZH.1822;LV Winterthur;W;SUI;14.04.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;;;X;X
899;256752;Maurer;Johanna;2011;1.ZH.1822;LV Winterthur;W;SUI;18.06.2011;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
824;254499;Bosshard;Naemi;2010;1.ZH.1828;LC Uster;W;SUI;03.02.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;X;X;X;X
825;253820;Schmid;Léane;2010;1.ZH.1828;LC Uster;W;SUI;30.06.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;;X;X;X
173;253123;Toller;Liv;2010;1.ZH.1828;LC Uster;W;SUI;17.01.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;;;X;X
7;251505;Yapi;Laeticia;2010;1.ZH.1828;LC Uster;W;SUI;26.01.2010;Y;U12W;8;Gr. 5 U12W;14:20;4-K;ZH;;;;X;X
712;173598;Beyeler;Levin;2008;1.ZH.1811;LC Regensdorf;M;SUI;13.04.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;;;X
707;248705;Erny;Dario;2009;1.ZH.1811;LC Regensdorf;M;SUI;27.04.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;X;X;X
708;253948;Fuchs;Aurel;2009;1.ZH.1811;LC Regensdorf;M;SUI;22.10.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;X;;X
706;245107;Greile;Jannis;2008;1.ZH.1811;LC Regensdorf;M;SUI;13.09.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;X;;X
713;174270;Meier;Gion Andri;2009;1.ZH.1811;LC Regensdorf;M;SUI;01.09.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;;;X
703;254561;Mittner;Sven;2009;1.ZH.1811;LC Regensdorf;M;SUI;31.03.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;X;X
702;253523;Mollet;Nicholas;2009;1.ZH.1811;LC Regensdorf;M;SUI;24.07.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;;X
701;254705;Radosarljevic;Luka;2008;1.ZH.1811;LC Regensdorf;M;SUI;01.12.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;X;X
700;173601;Rojano Cruz;Manuel;2008;1.ZH.1811;LC Regensdorf;M;ESP;12.07.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;X;X
697;169200;Wiedmer;Jorin;2008;1.ZH.1811;LC Regensdorf;M;SUI;22.09.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;X;X;X;X
695;254060;Wollscheid;Max;2009;1.ZH.1811;LC Regensdorf;M;SUI;07.06.2009;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;X;X;X
694;245109;Ziegler;Sebastian;2008;1.ZH.1811;LC Regensdorf;M;SUI;29.04.2008;Y;U14M;9;Gr. 1 U14M;10:05;4-K;ZH;;;;;X
1060;A:999860;Koch;Fabian;2008;1.ZH.1820;TV Dietlikon;M;SUI;12.02.2008;;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
1053;253997;Krebs;Lukas;2009;1.ZH.1820;TV Dietlikon;M;SUI;03.06.2009;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
1056;253857;Milz;Basil;2009;1.ZH.1820;TV Dietlikon;M;SUI;01.07.2009;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
5;244743;Hauser;Laurin;2008;1.ZH.1828;LC Uster;M;SUI;08.02.2008;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
6;249354;Schärli;Ron;2009;1.ZH.1828;LC Uster;M;SUI;06.02.2009;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
9;244746;Totaro;Luca;2008;1.ZH.1828;LC Uster;M;SUI;07.10.2008;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
352;256456;Steinholtz;Zachary;2009;1.ZH.1871;TV Otelfingen;M;SUI;06.05.2009;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;X;X;X;X
1130;257441;Uebelhart;Jannis;2008;1.ZH.1871;TV Otelfingen;M;SUI;13.05.2008;Y;U14M;10;Gr. 2 U14M;10:05;4-K;ZH;;;;X;X
530;173725;Beranek-Chiu;Noah;2009;1.ZH.1822;LV Winterthur;M;GER;21.12.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;;X
543;253924;Graber;Henry;2008;1.ZH.1822;LV Winterthur;M;SUI;26.11.2008;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
545;251627;Homberger;Tim Emerick;2009;1.ZH.1822;LV Winterthur;M;SUI;26.10.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
897;256756;Horisberger;Levi;2009;1.ZH.1822;LV Winterthur;M;SUI;30.01.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
548;175424;Käser;Silvan;2008;1.ZH.1822;LV Winterthur;M;SUI;22.04.2008;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
554;252659;Laib;Luc;2009;1.ZH.1822;LV Winterthur;M;SUI;09.12.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
555;248541;Lamprecht;Corvin;2008;1.ZH.1822;LV Winterthur;M;SUI;30.06.2008;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
556;253900;Lerch;Leon;2009;1.ZH.1822;LV Winterthur;M;SUI;21.05.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
902;256757;Stähli;Jonas;2009;1.ZH.1822;LV Winterthur;M;SUI;09.05.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
589;173723;Wollnik;Robin;2009;1.ZH.1822;LV Winterthur;M;GER;02.11.2009;Y;U14M;11;Gr. 3 U14M;11:25;4-K;ZH;;X;X;X;X
461;246247;Gonzalez Diterich;Luis;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;GER;15.07.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
466;161330;Klaus;Michael;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;08.04.2008;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
467;245932;Kresken;Tim;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;19.12.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
468;171052;Müller;Jan;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;16.08.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;;X
471;164494;Zufelde;Felix;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;M;GER;04.03.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;;;X
180;253118;Bengo-Oliveri;Henry;2009;1.ZH.1845;LV Albis;M;UGA;01.01.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
244;166340;Kliese;Linus;2008;1.ZH.1845;LV Albis;M;SUI;22.01.2008;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
253;169996;Moret;Timo;2008;1.ZH.1845;LV Albis;M;SUI;01.05.2008;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
255;174576;Müller;Andrin;2008;1.ZH.1845;LV Albis;M;SUI;15.02.2008;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
284;249483;Waldmeier;Janis;2009;1.ZH.1845;LV Albis;M;SUI;28.04.2009;Y;U14M;12;Gr. 4 U14M;11:25;4-K;ZH;;X;X;X;X
826;256772;Bugmann;Selina;2008;1.ZH.1811;LC Regensdorf;W;SUI;24.10.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
665;252908;Canzillon;Kina;2009;1.ZH.1811;LC Regensdorf;W;FRA;17.07.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;;;;
667;255191;Favre-Bulle;Gabriela;2009;1.ZH.1811;LC Regensdorf;W;SUI;24.08.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
668;248988;Fries;Jill;2009;1.ZH.1811;LC Regensdorf;W;SUI;22.08.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;;X
669;248716;Fuchser;Fiona;2008;1.ZH.1811;LC Regensdorf;W;SUI;08.05.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
671;253535;Groth;Sara;2008;1.ZH.1811;LC Regensdorf;W;SUI;25.09.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;;X;X;X
1083;253178;Lerjen;Magdalena;2008;1.ZH.1811;LC Regensdorf;W;SUI;13.01.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;;X;X;X
681;244758;Müller;Lennja;2008;1.ZH.1811;LC Regensdorf;W;SUI;10.10.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
683;247288;Reichler;Ella;2008;1.ZH.1811;LC Regensdorf;W;SUI;25.04.2008;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;;X
1101;256957;Rüegg;Valeria;2009;1.ZH.1811;LC Regensdorf;W;SUI;12.11.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;;X;;X
685;248719;Schildknecht;Maude Vivienne;2009;1.ZH.1811;LC Regensdorf;W;SUI;30.08.2009;Y;U14W;13;Gr. 1 U14W;12:45;4-K;ZH;;X;X;X;X
827;173610;Steiner;Aylin;2008;1.ZH.1811;LC Regensdorf;W;SUI;24.11.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;X;;X
689;252909;Suter;Kisha;2009;1.ZH.1811;LC Regensdorf;W;SUI;08.04.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;X;X
690;252907;Witschi;Lisa;2008;1.ZH.1811;LC Regensdorf;W;SUI;13.10.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;;X
25;244806;Niederberger;Selina;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;22.02.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;X;X
1138;257391;Obradovic;Marija;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;CRO;23.12.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;X;X
469;249928;Scattolin;Leonie;2008;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;28.03.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;;X;X
470;167128;Stern;Ramona;2009;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;28.04.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;X;X
172;249410;Ackermann;Simea;2009;1.ZH.1828;LC Uster;W;SUI;09.03.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;X;X
1092;256714;Rrahmani;Elsa;2009;1.ZH.1828;LC Uster;W;KOS;04.07.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;X;X;X;X
146;250946;Walde;Livia;2009;1.ZH.1828;LC Uster;W;SUI;20.07.2009;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;;X
722;A:999956;Bodenmann;Isabella;2009;1.ZH.1830;TV Uster;W;SUI;15.04.2009;;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;X;X
1077;251044;Lanz;Nina;2008;1.ZH.1892;STV Höri;W;SUI;21.02.2008;Y;U14W;14;Gr. 2 U14W;12:45;4-K;ZH;;;;X;X
590;256386;Acar;Vera;2009;1.ZH.1822;LV Winterthur;W;SUI;27.07.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;X;X;X;X
533;248457;Bohn;Hannah Luna;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
535;243983;Bühler;Alicia;2008;1.ZH.1822;LV Winterthur;W;SUI;19.09.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
591;255335;Dos Santos;Maria Vitoria;2008;1.ZH.1822;LV Winterthur;W;SUI;31.10.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
592;254758;Egli;Somea;2009;1.ZH.1822;LV Winterthur;W;SUI;02.10.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
538;173367;Facchinetti;Elisa;2009;1.ZH.1822;LV Winterthur;W;SUI;14.12.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
593;255005;Gassmann;Frieda;2008;1.ZH.1822;LV Winterthur;W;SUI;09.09.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
544;248458;Gubler;Céline;2008;1.ZH.1822;LV Winterthur;W;SUI;15.06.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
547;243979;Imafidon;Ronia;2008;1.ZH.1822;LV Winterthur;W;SUI;01.04.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;X;;X;X
551;253632;Kifle;Nebyat;2008;1.ZH.1822;LV Winterthur;W;GER;17.12.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;;X
560;252006;Meier;Jael;2009;1.ZH.1822;LV Winterthur;W;SUI;30.04.2009;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;X;X;X;X
598;254757;Meissner;Neele;2008;1.ZH.1822;LV Winterthur;W;SUI;15.07.2008;Y;U14W;15;Gr. 3 U14W;14:05;4-K;ZH;;;X;X;X
563;244618;Nicoli;Giuliana;2008;1.ZH.1822;LV Winterthur;W;SUI;23.08.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;X;;X
567;252012;Pfister;Linda;2008;1.ZH.1822;LV Winterthur;W;SUI;01.08.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;X;X;X
570;243981;Rusova;Jana;2008;1.ZH.1822;LV Winterthur;W;CZE;26.04.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;X;X;;X
572;170240;Schnyder;Jacqueline;2008;1.ZH.1822;LV Winterthur;W;SUI;28.05.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
584;252660;Vock;Marta;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;X;X;X
586;243982;Wendel;Liah;2009;1.ZH.1822;LV Winterthur;W;SUI;20.04.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;X;X;X;X
356;A:999980;Beeler;Sasha;2009;1.ZH.1871;TV Otelfingen;W;SUI;09.04.2009;;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;1493582;X;X;;X
350;256520;Glauser;Lavinia;2009;1.ZH.1871;TV Otelfingen;W;SUI;23.07.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;X;X;X;X
44;253104;Heusser;Ronja;2009;1.ZH.1885;SSC Athletics;W;SUI;19.04.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
45;252547;Hungerbühler;Anouk;2009;1.ZH.1885;SSC Athletics;W;SUI;20.11.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
53;163858;Niederer;Noelia;2008;1.ZH.1885;SSC Athletics;W;SUI;25.03.2008;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
60;253537;Saric;Kleofa;2009;1.ZH.1885;SSC Athletics;W;SUI;09.04.2009;Y;U14W;16;Gr. 4 U14W;14:05;4-K;ZH;;;;;
195;253444;Bzdyrak;Roksana;2009;1.ZH.1845;LV Albis;W;POL;10.03.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
200;250318;de Mey;Emma;2009;1.ZH.1845;LV Albis;W;SUI;06.02.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;;X;X;X
215;172495;Gallo;Giada;2009;1.ZH.1845;LV Albis;W;SUI;02.07.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
224;246678;Grollimund;Annik;2008;1.ZH.1845;LV Albis;W;SUI;26.11.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;;X
226;169987;Grond;Yasmin;2009;1.ZH.1845;LV Albis;W;SUI;02.04.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;;X;X
227;174574;Gugerli;Carla;2009;1.ZH.1845;LV Albis;W;SUI;09.11.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
248;169998;Mangili;Elena;2008;1.ZH.1845;LV Albis;W;SUI;18.01.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
458;256670;Milojevic;Ana;2008;1.ZH.1845;LV Albis;W;SRB;06.06.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
262;246689;Niehausmeier;Neele;2008;1.ZH.1845;LV Albis;W;SUI;09.05.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
288;166339;Wärdell;Hanna;2008;1.ZH.1845;LV Albis;W;SUI;08.01.2008;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
292;250321;Wicki;Serena;2009;1.ZH.1845;LV Albis;W;SUI;29.08.2009;Y;U14W;17;Gr. 5 U14W;15:30;4-K;ZH;;X;X;X;X
532;176205;Bisang;Jeremias;2007;1.ZH.1822;LV Winterthur;M;SUI;05.09.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
536;255419;Ceccon;Luca Sebastián;2006;1.ZH.1822;LV Winterthur;M;SUI;21.06.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
550;245841;Kifle;Eman;2007;1.ZH.1822;LV Winterthur;M;GER;12.11.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;;X;;X
558;248542;Masala;Flavio;2007;1.ZH.1822;LV Winterthur;M;SUI;26.05.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
564;169874;Nicoli;Simon;2006;1.ZH.1822;LV Winterthur;M;SUI;23.06.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
568;172534;Püntener;Flynn;2006;1.ZH.1822;LV Winterthur;M;SUI;24.05.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
574;253631;Serhani;Rachid;2007;1.ZH.1822;LV Winterthur;M;SUI;15.11.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
579;255336;Stähli;Tobias;2007;1.ZH.1822;LV Winterthur;M;SUI;03.06.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
679;175990;Jetzer;Marwin;2006;1.ZH.1811;LC Regensdorf;M;SUI;06.08.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;;X
675;165311;Marcantonio;Fabio;2007;1.ZH.1811;LC Regensdorf;M;SUI;14.02.2007;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
677;169201;Meier;Noé;2006;1.ZH.1811;LC Regensdorf;M;SUI;04.11.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;X;X
678;176050;Mingot;Roman;2006;1.ZH.1811;LC Regensdorf;M;SUI;16.06.2006;Y;U16M;18;Gr. 1 U16M;12:00;4-K;ZH;;X;X;;X
14;251994;Cristovao;Nico;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;M;GER;22.03.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;X;X;X
16;171051;Ebert;Nick;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;19.09.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;;;X
17;159497;Eugster;Kimi Raphael;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;10.05.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
19;249063;Gonzalez Diterich;Pablo;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;M;GER;20.10.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
24;163407;Kresken;Sven;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;M;SUI;10.06.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;X;X;X
2;243938;Brunner;Julian;2006;1.ZH.1828;LC Uster;M;SUI;10.09.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
151;173389;Gasser;Dominic;2007;1.ZH.1828;LC Uster;M;SUI;29.05.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;X;X;X
1084;173385;Schmid;Loic;2007;1.ZH.1828;LC Uster;M;SUI;30.08.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;;X;X;X
280;166336;Van der Aar;Lars;2007;1.ZH.1845;LV Albis;M;NED;12.04.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
344;167533;Diday;Cédric;2006;1.ZH.1871;TV Otelfingen;M;SUI;01.03.2006;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
1052;244803;Häberli;Tom Luca;2007;1.ZH.1820;TV Dietlikon;M;SUI;25.08.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;;X;X
1051;244800;Krebs;Tobias;2007;1.ZH.1820;TV Dietlikon;M;SUI;19.07.2007;Y;U16M;19;Gr. 2 U16M;12:35;4-K;ZH;;X;X;X;X
11;249062;Blöchlinger;Xenia Victoria;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;15.04.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
12;253964;Brasse;Leni;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;19.02.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
13;161937;Bünzli;Sabrina;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;27.10.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
18;173782;Frick;Ramona;2006;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;04.05.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
20;244687;Henke;Leonie;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;01.08.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;;;;X
26;164502;Müller;Nadine;2007;1.ZH.1827;Leichtathletik-Club Dübendorf;W;SUI;25.08.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;;X
662;169207;Baronchelli;Latisha;2007;1.ZH.1811;LC Regensdorf;W;SUI;17.08.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
663;248712;Biaggi;Jael;2007;1.ZH.1811;LC Regensdorf;W;SUI;13.04.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;;X;X
666;169204;Da Mutten;Lili;2006;1.ZH.1811;LC Regensdorf;W;SUI;20.09.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;;X;X
670;245102;Hedinger;Fabienne;2007;1.ZH.1811;LC Regensdorf;W;SUI;27.02.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
673;245103;Lorenzo;Leonie Luana;2007;1.ZH.1811;LC Regensdorf;W;SUI;28.12.2007;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;;X
1054;251302;Kümin;Selina;2006;1.ZH.1820;TV Dietlikon;W;SUI;07.09.2006;Y;U16W;20;Gr. 1 U16W;10:00;4-K;ZH;;X;X;X;X
1;244115;Adel;Victoria;2007;1.ZH.1828;LC Uster;W;IRL;30.08.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
724;152385;Bandi;Uma;2006;1.ZH.1828;LC Uster;W;SUI;14.01.2006;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;;X
3;176757;Reist;Samantha Noemi;2006;1.ZH.1828;LC Uster;W;SUI;21.03.2006;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
4;244744;Zwicky;Monika;2007;1.ZH.1828;LC Uster;W;SUI;24.04.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;;X;X;X
178;176016;Baer;Irina;2007;1.ZH.1845;LV Albis;W;SUI;21.09.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;;X
184;174580;Binzegger;Sara;2007;1.ZH.1845;LV Albis;W;SUI;19.08.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;;X
216;172494;Gallo;Marzia;2007;1.ZH.1845;LV Albis;W;SUI;12.08.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
258;170009;Müntener;Katelynn;2007;1.ZH.1845;LV Albis;W;SUI;18.05.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
273;171970;Schuster;Joy;2007;1.ZH.1845;LV Albis;W;SUI;27.04.2007;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
357;A:999979;Köwitzsch;Karolina;1900;1.ZH.1871;TV Otelfingen;W;SUI;01.01.1900;;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;1542080;;X;X;X
345;251294;Schmid;Salomé;2006;1.ZH.1871;TV Otelfingen;W;SUI;03.07.2006;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;X;X;X;X
346;252670;Uebelhart;Ladina;2006;1.ZH.1871;TV Otelfingen;W;SUI;17.10.2006;Y;U16W;21;Gr. 2 U16W;10:40;4-K;ZH;;;X;X;X
529;168993;Al-Mabhashi;Alawia;2007;1.ZH.1822;LV Winterthur;W;SUI;15.06.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
539;168121;Fierz;Tyra;2007;1.ZH.1822;LV Winterthur;W;SUI;04.02.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
541;165579;Ganster;Seraina;2006;1.ZH.1822;LV Winterthur;W;SUI;07.05.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
549;173228;Keel;Lena;2007;1.ZH.1822;LV Winterthur;W;SUI;28.01.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
553;245601;Kromer;Anouk;2007;1.ZH.1822;LV Winterthur;W;SUI;06.01.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;;X;X;X
576;164976;Sommer;Luana;2006;1.ZH.1822;LV Winterthur;W;SUI;05.02.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
577;164062;Spiller;Emily;2006;1.ZH.1822;LV Winterthur;W;SUI;08.06.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
580;248934;Sutter;Elena;2006;1.ZH.1822;LV Winterthur;W;SUI;03.12.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
588;251977;Wirz;Alissa;2006;1.ZH.1822;LV Winterthur;W;SUI;20.04.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
449;174277;Anderegg;Katja;2007;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;11.12.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
450;252564;Bütikofer;Jasmine;2006;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;12.05.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
451;165305;Friedel;Leoni;2006;1.ZH.1893;LC Furttal ZH-Nord;W;SUI;09.05.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
1243;257480;Regalado;Rocio;2007;1.ZH.1819;TV Kloten LA;W;SUI;20.07.2007;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;;;;X
340;169932;Schaden;Levia;2006;1.ZH.1819;TV Kloten LA;W;SUI;18.05.2006;Y;U16W;22;Gr. 3 U16W;11:20;4-K;ZH;;X;X;X;X
1 Anmeldenr Lizenznr Name Vorname Jahrgang Verein Club-Name Geschlecht Nationalitaet GebDat Bez Kategorie GruppeNr GruppeName Startzeit Bewerb Kanton KidID W1 W2 W3 W4
2 1041 256818 Basso Leo 2011 1.ZH.1845 LV Albis M SUI 12.10.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X
3 199 253445 de Mey Elio 2010 1.ZH.1845 LV Albis M SUI 16.11.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X
4 246 253448 Kourpas Adam 2010 1.ZH.1845 LV Albis M GBR 03.10.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X
5 247 251479 Loup Léo Eric 2010 1.ZH.1845 LV Albis M SUI 31.08.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
6 303 255707 Nicolodi Enzo 2010 1.ZH.1845 LV Albis M SUI 17.06.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
7 304 255712 Nievergelt Flurin 2011 1.ZH.1845 LV Albis M SUI 28.03.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
8 305 255711 Palermo Domenico 2011 1.ZH.1845 LV Albis M SUI 03.06.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
9 251 249486 Meili Mattia 2010 1.ZH.1845 LV Albis M SUI 21.09.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X
10 308 255709 Schneider Nikolaj 2011 1.ZH.1845 LV Albis M SUI 06.06.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X
11 309 255705 Steiner Maxime 2010 1.ZH.1845 LV Albis M SUI 18.11.2010 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X X
12 276 255330 Stuckert Dennis 2011 1.ZH.1845 LV Albis M SUI 06.03.2011 Y U12M 1 Gr. 1 U12M 10:20 4-K ZH X X X
13 711 249112 Calo Jarno 2010 1.ZH.1811 LC Regensdorf M SUI 01.01.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
14 710 255194 Demirok Baha 2011 1.ZH.1811 LC Regensdorf M SUI 22.02.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
15 709 255193 Egli Loris 2011 1.ZH.1811 LC Regensdorf M SUI 23.08.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X
16 714 255224 Estua Xabi 2011 1.ZH.1811 LC Regensdorf M ESP 11.06.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X
17 704 252902 Jacob Ricky 2010 1.ZH.1811 LC Regensdorf M SUI 24.02.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X
18 699 244670 Rojano Cruz José Maria 2010 1.ZH.1811 LC Regensdorf M ESP 21.11.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
19 696 176199 Wilhelm Alejandro 2010 1.ZH.1811 LC Regensdorf M SUI 08.01.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
20 693 255195 Zurbuchen Remo 2011 1.ZH.1811 LC Regensdorf M SUI 30.09.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
21 565 252015 Ohlendorf Norman 2010 1.ZH.1822 LV Winterthur M GER 04.10.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
22 601 255156 Simperl Marius 2011 1.ZH.1822 LV Winterthur M SUI 04.03.2011 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
23 583 252008 van Seumeren Cornelius 2010 1.ZH.1822 LV Winterthur M SUI 08.12.2010 Y U12M 2 Gr. 2 U12M 10:20 4-K ZH X X X X
24 1117 251722 Gläser Roman 2011 1.ZH.1819 TV Kloten LA M SUI 03.11.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X
25 605 255392 Hugentobler Lorin 2011 1.ZH.1819 TV Kloten LA M SUI 03.07.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X
26 1049 253122 Güler Eray 2010 1.ZH.1820 TV Dietlikon M SUI 23.01.2010 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
27 1050 255308 Krebs Jonas 2011 1.ZH.1820 TV Dietlikon M SUI 10.09.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
28 1062 256867 Loretz Leon 2010 1.ZH.1820 TV Dietlikon M SUI 13.08.2010 U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X
29 1055 253858 Märki Diego 2010 1.ZH.1820 TV Dietlikon M SUI 21.01.2010 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X
30 8 256044 Haas Leandro 2011 1.ZH.1828 LC Uster M SUI 04.12.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
31 145 255982 Straube Tommy 2011 1.ZH.1828 LC Uster M SUI 15.11.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
32 353 256523 Wittel Jörn 2011 1.ZH.1871 TV Otelfingen M GER 07.02.2011 Y U12M 3 Gr. 3 U12M 10:20 4-K ZH X X X X
33 672 253180 Heiderich Leonie 2010 1.ZH.1811 LC Regensdorf W SUI 20.09.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
34 715 255206 Hilti Livia 2011 1.ZH.1811 LC Regensdorf W SUI 03.02.2011 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X
35 705 255202 Hürzeler Noemi 2010 1.ZH.1811 LC Regensdorf W SUI 28.02.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X
36 674 255209 Lampropoulou Iliana 2010 1.ZH.1811 LC Regensdorf W GRE 10.08.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X
37 680 255210 Leonardo Timea 2010 1.ZH.1811 LC Regensdorf W SUI 09.09.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
38 676 255200 Mamais Sofia 2010 1.ZH.1811 LC Regensdorf W SUI 01.10.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X X
39 684 248720 Rindle Lina Joëlle 2010 1.ZH.1811 LC Regensdorf W SUI 27.01.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
40 686 253198 Schwedhelm Jula 2010 1.ZH.1811 LC Regensdorf W GER 23.09.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
41 687 255203 Spottek Mia 2011 1.ZH.1811 LC Regensdorf W SUI 25.07.2011 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X X
42 688 253183 Steinlin Aline 2010 1.ZH.1811 LC Regensdorf W SUI 05.05.2010 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X
43 692 255207 Wollscheid Zoe 2011 1.ZH.1811 LC Regensdorf W SUI 28.03.2011 Y U12W 4 Gr. 1 U12W 12:15 4-K ZH X X X X
44 454 250320 Bajrami Maida 2011 1.ZH.1845 LV Albis W SUI 18.02.2011 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X
45 1254 A:999822 Bala Alina 2010 1.ZH.1845 LV Albis W SUI 21.06.2010 U12W 5 Gr. 2 U12W 12:15 4-K ZH X
46 455 256666 Constable Isabella 2010 1.ZH.1845 LV Albis W GBR 18.03.2010 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
47 456 250319 Cosabic Ilma 2011 1.ZH.1845 LV Albis W 99 26.12.2011 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
48 457 256671 Kadriaj Alina 2011 1.ZH.1845 LV Albis W SUI 25.09.2011 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
49 241 253447 Keller Laura 2010 1.ZH.1845 LV Albis W SUI 21.04.2010 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X
50 301 249481 Meier Angelina 2011 1.ZH.1845 LV Albis W SUI 25.08.2011 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
51 302 255704 Moser Aline 2010 1.ZH.1845 LV Albis W SUI 06.12.2010 Y U12W 5 Gr. 2 U12W 12:15 4-K ZH X X X X
52 264 251478 Perks Lucia 2011 1.ZH.1845 LV Albis W SUI 08.06.2011 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
53 265 246691 Plüss Livia 2010 1.ZH.1845 LV Albis W SUI 19.06.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
54 307 255708 Sangermano Lorena 2011 1.ZH.1845 LV Albis W SUI 18.06.2011 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
55 1255 A:999821 Shala Gentiona 2011 1.ZH.1845 LV Albis W ALB 16.02.2011 U12W 6 Gr. 3 U12W 12:15 4-K ZH X
56 279 246694 Utzinger Larissa 2010 1.ZH.1845 LV Albis W SUI 02.03.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
57 285 249484 Walter Michelle 2010 1.ZH.1845 LV Albis W SUI 22.09.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
58 291 174573 Wicki Ciara 2010 1.ZH.1845 LV Albis W SUI 14.11.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X X
59 1116 253588 Barattini Martina 2010 1.ZH.1819 TV Kloten LA W SUI 20.04.2010 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X
60 604 254172 Quartu Peace 2011 1.ZH.1819 TV Kloten LA W SUI 09.01.2011 Y U12W 6 Gr. 3 U12W 12:15 4-K ZH X X X
61 347 256457 Burkhalter Hanna 2010 1.ZH.1871 TV Otelfingen W SUI 02.01.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
62 348 256458 Burkhalter Paula 2011 1.ZH.1871 TV Otelfingen W SUI 03.07.2011 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
63 358 A:999977 Findik Günes 2011 1.ZH.1871 TV Otelfingen W SUI 16.12.2011 U12W 7 Gr. 4 U12W 14:20 4-K ZH
64 349 256459 Fort Elena 2011 1.ZH.1871 TV Otelfingen W SUI 04.02.2011 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
65 351 256462 Hofmann Emily 2010 1.ZH.1871 TV Otelfingen W SUI 07.05.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
66 1249 255980 Jucker Melanie 2010 1.ZH.1880 LC Rafzerfeld W SUI 01.11.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X
67 1093 256950 Casutt Livia 2010 1.ZH.1885 SSC Athletics W SUI 17.05.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X
68 38 253499 Ferarha Amira 2010 1.ZH.1885 SSC Athletics W SUI 17.01.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH
69 1075 249203 Müller Alicia 2011 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 01.03.2011 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
70 1073 245937 Tamas Elena 2010 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 08.01.2010 Y U12W 7 Gr. 4 U12W 14:20 4-K ZH X X X X
71 896 256751 Ahilaruban Oviya 2011 1.ZH.1822 LV Winterthur W SRI 09.06.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
72 534 252007 Brügger Lenja 2010 1.ZH.1822 LV Winterthur W SUI 14.06.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
73 537 252017 Erny Liana 2010 1.ZH.1822 LV Winterthur W SUI 22.05.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
74 597 255079 Lehner Lea 2010 1.ZH.1822 LV Winterthur W SUI 14.04.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
75 899 256752 Maurer Johanna 2011 1.ZH.1822 LV Winterthur W SUI 18.06.2011 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
76 824 254499 Bosshard Naemi 2010 1.ZH.1828 LC Uster W SUI 03.02.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X X
77 825 253820 Schmid Léane 2010 1.ZH.1828 LC Uster W SUI 30.06.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X X
78 173 253123 Toller Liv 2010 1.ZH.1828 LC Uster W SUI 17.01.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
79 7 251505 Yapi Laeticia 2010 1.ZH.1828 LC Uster W SUI 26.01.2010 Y U12W 8 Gr. 5 U12W 14:20 4-K ZH X X
80 712 173598 Beyeler Levin 2008 1.ZH.1811 LC Regensdorf M SUI 13.04.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X
81 707 248705 Erny Dario 2009 1.ZH.1811 LC Regensdorf M SUI 27.04.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X
82 708 253948 Fuchs Aurel 2009 1.ZH.1811 LC Regensdorf M SUI 22.10.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X
83 706 245107 Greile Jannis 2008 1.ZH.1811 LC Regensdorf M SUI 13.09.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X
84 713 174270 Meier Gion Andri 2009 1.ZH.1811 LC Regensdorf M SUI 01.09.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X
85 703 254561 Mittner Sven 2009 1.ZH.1811 LC Regensdorf M SUI 31.03.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X X
86 702 253523 Mollet Nicholas 2009 1.ZH.1811 LC Regensdorf M SUI 24.07.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X
87 701 254705 Radosarljevic Luka 2008 1.ZH.1811 LC Regensdorf M SUI 01.12.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X X
88 700 173601 Rojano Cruz Manuel 2008 1.ZH.1811 LC Regensdorf M ESP 12.07.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X X
89 697 169200 Wiedmer Jorin 2008 1.ZH.1811 LC Regensdorf M SUI 22.09.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X X
90 695 254060 Wollscheid Max 2009 1.ZH.1811 LC Regensdorf M SUI 07.06.2009 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X X X
91 694 245109 Ziegler Sebastian 2008 1.ZH.1811 LC Regensdorf M SUI 29.04.2008 Y U14M 9 Gr. 1 U14M 10:05 4-K ZH X
92 1060 A:999860 Koch Fabian 2008 1.ZH.1820 TV Dietlikon M SUI 12.02.2008 U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
93 1053 253997 Krebs Lukas 2009 1.ZH.1820 TV Dietlikon M SUI 03.06.2009 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
94 1056 253857 Milz Basil 2009 1.ZH.1820 TV Dietlikon M SUI 01.07.2009 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
95 5 244743 Hauser Laurin 2008 1.ZH.1828 LC Uster M SUI 08.02.2008 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
96 6 249354 Schärli Ron 2009 1.ZH.1828 LC Uster M SUI 06.02.2009 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
97 9 244746 Totaro Luca 2008 1.ZH.1828 LC Uster M SUI 07.10.2008 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
98 352 256456 Steinholtz Zachary 2009 1.ZH.1871 TV Otelfingen M SUI 06.05.2009 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X X X
99 1130 257441 Uebelhart Jannis 2008 1.ZH.1871 TV Otelfingen M SUI 13.05.2008 Y U14M 10 Gr. 2 U14M 10:05 4-K ZH X X
100 530 173725 Beranek-Chiu Noah 2009 1.ZH.1822 LV Winterthur M GER 21.12.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X
101 543 253924 Graber Henry 2008 1.ZH.1822 LV Winterthur M SUI 26.11.2008 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
102 545 251627 Homberger Tim Emerick 2009 1.ZH.1822 LV Winterthur M SUI 26.10.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
103 897 256756 Horisberger Levi 2009 1.ZH.1822 LV Winterthur M SUI 30.01.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
104 548 175424 Käser Silvan 2008 1.ZH.1822 LV Winterthur M SUI 22.04.2008 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
105 554 252659 Laib Luc 2009 1.ZH.1822 LV Winterthur M SUI 09.12.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
106 555 248541 Lamprecht Corvin 2008 1.ZH.1822 LV Winterthur M SUI 30.06.2008 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
107 556 253900 Lerch Leon 2009 1.ZH.1822 LV Winterthur M SUI 21.05.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
108 902 256757 Stähli Jonas 2009 1.ZH.1822 LV Winterthur M SUI 09.05.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
109 589 173723 Wollnik Robin 2009 1.ZH.1822 LV Winterthur M GER 02.11.2009 Y U14M 11 Gr. 3 U14M 11:25 4-K ZH X X X X
110 461 246247 Gonzalez Diterich Luis 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M GER 15.07.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
111 466 161330 Klaus Michael 2008 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 08.04.2008 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
112 467 245932 Kresken Tim 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 19.12.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
113 468 171052 Müller Jan 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 16.08.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X
114 471 164494 Zufelde Felix 2009 1.ZH.1827 Leichtathletik-Club Dübendorf M GER 04.03.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X
115 180 253118 Bengo-Oliveri Henry 2009 1.ZH.1845 LV Albis M UGA 01.01.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
116 244 166340 Kliese Linus 2008 1.ZH.1845 LV Albis M SUI 22.01.2008 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
117 253 169996 Moret Timo 2008 1.ZH.1845 LV Albis M SUI 01.05.2008 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
118 255 174576 Müller Andrin 2008 1.ZH.1845 LV Albis M SUI 15.02.2008 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
119 284 249483 Waldmeier Janis 2009 1.ZH.1845 LV Albis M SUI 28.04.2009 Y U14M 12 Gr. 4 U14M 11:25 4-K ZH X X X X
120 826 256772 Bugmann Selina 2008 1.ZH.1811 LC Regensdorf W SUI 24.10.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
121 665 252908 Canzillon Kina 2009 1.ZH.1811 LC Regensdorf W FRA 17.07.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH
122 667 255191 Favre-Bulle Gabriela 2009 1.ZH.1811 LC Regensdorf W SUI 24.08.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
123 668 248988 Fries Jill 2009 1.ZH.1811 LC Regensdorf W SUI 22.08.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X
124 669 248716 Fuchser Fiona 2008 1.ZH.1811 LC Regensdorf W SUI 08.05.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
125 671 253535 Groth Sara 2008 1.ZH.1811 LC Regensdorf W SUI 25.09.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X
126 1083 253178 Lerjen Magdalena 2008 1.ZH.1811 LC Regensdorf W SUI 13.01.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X
127 681 244758 Müller Lennja 2008 1.ZH.1811 LC Regensdorf W SUI 10.10.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
128 683 247288 Reichler Ella 2008 1.ZH.1811 LC Regensdorf W SUI 25.04.2008 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X
129 1101 256957 Rüegg Valeria 2009 1.ZH.1811 LC Regensdorf W SUI 12.11.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X
130 685 248719 Schildknecht Maude Vivienne 2009 1.ZH.1811 LC Regensdorf W SUI 30.08.2009 Y U14W 13 Gr. 1 U14W 12:45 4-K ZH X X X X
131 827 173610 Steiner Aylin 2008 1.ZH.1811 LC Regensdorf W SUI 24.11.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
132 689 252909 Suter Kisha 2009 1.ZH.1811 LC Regensdorf W SUI 08.04.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X X
133 690 252907 Witschi Lisa 2008 1.ZH.1811 LC Regensdorf W SUI 13.10.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X
134 25 244806 Niederberger Selina 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 22.02.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X X
135 1138 257391 Obradovic Marija 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W CRO 23.12.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
136 469 249928 Scattolin Leonie 2008 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 28.03.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X
137 470 167128 Stern Ramona 2009 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 28.04.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X X
138 172 249410 Ackermann Simea 2009 1.ZH.1828 LC Uster W SUI 09.03.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
139 1092 256714 Rrahmani Elsa 2009 1.ZH.1828 LC Uster W KOS 04.07.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X X X
140 146 250946 Walde Livia 2009 1.ZH.1828 LC Uster W SUI 20.07.2009 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X
141 722 A:999956 Bodenmann Isabella 2009 1.ZH.1830 TV Uster W SUI 15.04.2009 U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
142 1077 251044 Lanz Nina 2008 1.ZH.1892 STV Höri W SUI 21.02.2008 Y U14W 14 Gr. 2 U14W 12:45 4-K ZH X X
143 590 256386 Acar Vera 2009 1.ZH.1822 LV Winterthur W SUI 27.07.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X X
144 533 248457 Bohn Hannah Luna 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
145 535 243983 Bühler Alicia 2008 1.ZH.1822 LV Winterthur W SUI 19.09.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
146 591 255335 Dos Santos Maria Vitoria 2008 1.ZH.1822 LV Winterthur W SUI 31.10.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
147 592 254758 Egli Somea 2009 1.ZH.1822 LV Winterthur W SUI 02.10.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
148 538 173367 Facchinetti Elisa 2009 1.ZH.1822 LV Winterthur W SUI 14.12.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
149 593 255005 Gassmann Frieda 2008 1.ZH.1822 LV Winterthur W SUI 09.09.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
150 544 248458 Gubler Céline 2008 1.ZH.1822 LV Winterthur W SUI 15.06.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
151 547 243979 Imafidon Ronia 2008 1.ZH.1822 LV Winterthur W SUI 01.04.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
152 551 253632 Kifle Nebyat 2008 1.ZH.1822 LV Winterthur W GER 17.12.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X
153 560 252006 Meier Jael 2009 1.ZH.1822 LV Winterthur W SUI 30.04.2009 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X X
154 598 254757 Meissner Neele 2008 1.ZH.1822 LV Winterthur W SUI 15.07.2008 Y U14W 15 Gr. 3 U14W 14:05 4-K ZH X X X
155 563 244618 Nicoli Giuliana 2008 1.ZH.1822 LV Winterthur W SUI 23.08.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X
156 567 252012 Pfister Linda 2008 1.ZH.1822 LV Winterthur W SUI 01.08.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X
157 570 243981 Rusova Jana 2008 1.ZH.1822 LV Winterthur W CZE 26.04.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X
158 572 170240 Schnyder Jacqueline 2008 1.ZH.1822 LV Winterthur W SUI 28.05.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
159 584 252660 Vock Marta 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X
160 586 243982 Wendel Liah 2009 1.ZH.1822 LV Winterthur W SUI 20.04.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X X
161 356 A:999980 Beeler Sasha 2009 1.ZH.1871 TV Otelfingen W SUI 09.04.2009 U14W 16 Gr. 4 U14W 14:05 4-K ZH 1493582 X X X
162 350 256520 Glauser Lavinia 2009 1.ZH.1871 TV Otelfingen W SUI 23.07.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH X X X X
163 44 253104 Heusser Ronja 2009 1.ZH.1885 SSC Athletics W SUI 19.04.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
164 45 252547 Hungerbühler Anouk 2009 1.ZH.1885 SSC Athletics W SUI 20.11.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
165 53 163858 Niederer Noelia 2008 1.ZH.1885 SSC Athletics W SUI 25.03.2008 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
166 60 253537 Saric Kleofa 2009 1.ZH.1885 SSC Athletics W SUI 09.04.2009 Y U14W 16 Gr. 4 U14W 14:05 4-K ZH
167 195 253444 Bzdyrak Roksana 2009 1.ZH.1845 LV Albis W POL 10.03.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
168 200 250318 de Mey Emma 2009 1.ZH.1845 LV Albis W SUI 06.02.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X
169 215 172495 Gallo Giada 2009 1.ZH.1845 LV Albis W SUI 02.07.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
170 224 246678 Grollimund Annik 2008 1.ZH.1845 LV Albis W SUI 26.11.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X
171 226 169987 Grond Yasmin 2009 1.ZH.1845 LV Albis W SUI 02.04.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X
172 227 174574 Gugerli Carla 2009 1.ZH.1845 LV Albis W SUI 09.11.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
173 248 169998 Mangili Elena 2008 1.ZH.1845 LV Albis W SUI 18.01.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
174 458 256670 Milojevic Ana 2008 1.ZH.1845 LV Albis W SRB 06.06.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
175 262 246689 Niehausmeier Neele 2008 1.ZH.1845 LV Albis W SUI 09.05.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
176 288 166339 Wärdell Hanna 2008 1.ZH.1845 LV Albis W SUI 08.01.2008 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
177 292 250321 Wicki Serena 2009 1.ZH.1845 LV Albis W SUI 29.08.2009 Y U14W 17 Gr. 5 U14W 15:30 4-K ZH X X X X
178 532 176205 Bisang Jeremias 2007 1.ZH.1822 LV Winterthur M SUI 05.09.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
179 536 255419 Ceccon Luca Sebastián 2006 1.ZH.1822 LV Winterthur M SUI 21.06.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
180 550 245841 Kifle Eman 2007 1.ZH.1822 LV Winterthur M GER 12.11.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X
181 558 248542 Masala Flavio 2007 1.ZH.1822 LV Winterthur M SUI 26.05.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
182 564 169874 Nicoli Simon 2006 1.ZH.1822 LV Winterthur M SUI 23.06.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
183 568 172534 Püntener Flynn 2006 1.ZH.1822 LV Winterthur M SUI 24.05.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
184 574 253631 Serhani Rachid 2007 1.ZH.1822 LV Winterthur M SUI 15.11.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
185 579 255336 Stähli Tobias 2007 1.ZH.1822 LV Winterthur M SUI 03.06.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
186 679 175990 Jetzer Marwin 2006 1.ZH.1811 LC Regensdorf M SUI 06.08.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X
187 675 165311 Marcantonio Fabio 2007 1.ZH.1811 LC Regensdorf M SUI 14.02.2007 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
188 677 169201 Meier Noé 2006 1.ZH.1811 LC Regensdorf M SUI 04.11.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X X
189 678 176050 Mingot Roman 2006 1.ZH.1811 LC Regensdorf M SUI 16.06.2006 Y U16M 18 Gr. 1 U16M 12:00 4-K ZH X X X
190 14 251994 Cristovao Nico 2006 1.ZH.1827 Leichtathletik-Club Dübendorf M GER 22.03.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
191 16 171051 Ebert Nick 2007 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 19.09.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X
192 17 159497 Eugster Kimi Raphael 2006 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 10.05.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
193 19 249063 Gonzalez Diterich Pablo 2007 1.ZH.1827 Leichtathletik-Club Dübendorf M GER 20.10.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
194 24 163407 Kresken Sven 2006 1.ZH.1827 Leichtathletik-Club Dübendorf M SUI 10.06.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
195 2 243938 Brunner Julian 2006 1.ZH.1828 LC Uster M SUI 10.09.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
196 151 173389 Gasser Dominic 2007 1.ZH.1828 LC Uster M SUI 29.05.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
197 1084 173385 Schmid Loic 2007 1.ZH.1828 LC Uster M SUI 30.08.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
198 280 166336 Van der Aar Lars 2007 1.ZH.1845 LV Albis M NED 12.04.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
199 344 167533 Diday Cédric 2006 1.ZH.1871 TV Otelfingen M SUI 01.03.2006 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
200 1052 244803 Häberli Tom Luca 2007 1.ZH.1820 TV Dietlikon M SUI 25.08.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X
201 1051 244800 Krebs Tobias 2007 1.ZH.1820 TV Dietlikon M SUI 19.07.2007 Y U16M 19 Gr. 2 U16M 12:35 4-K ZH X X X X
202 11 249062 Blöchlinger Xenia Victoria 2006 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 15.04.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
203 12 253964 Brasse Leni 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 19.02.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
204 13 161937 Bünzli Sabrina 2006 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 27.10.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
205 18 173782 Frick Ramona 2006 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 04.05.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
206 20 244687 Henke Leonie 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 01.08.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X
207 26 164502 Müller Nadine 2007 1.ZH.1827 Leichtathletik-Club Dübendorf W SUI 25.08.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X
208 662 169207 Baronchelli Latisha 2007 1.ZH.1811 LC Regensdorf W SUI 17.08.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
209 663 248712 Biaggi Jael 2007 1.ZH.1811 LC Regensdorf W SUI 13.04.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X
210 666 169204 Da Mutten Lili 2006 1.ZH.1811 LC Regensdorf W SUI 20.09.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X
211 670 245102 Hedinger Fabienne 2007 1.ZH.1811 LC Regensdorf W SUI 27.02.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
212 673 245103 Lorenzo Leonie Luana 2007 1.ZH.1811 LC Regensdorf W SUI 28.12.2007 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X
213 1054 251302 Kümin Selina 2006 1.ZH.1820 TV Dietlikon W SUI 07.09.2006 Y U16W 20 Gr. 1 U16W 10:00 4-K ZH X X X X
214 1 244115 Adel Victoria 2007 1.ZH.1828 LC Uster W IRL 30.08.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
215 724 152385 Bandi Uma 2006 1.ZH.1828 LC Uster W SUI 14.01.2006 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
216 3 176757 Reist Samantha Noemi 2006 1.ZH.1828 LC Uster W SUI 21.03.2006 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
217 4 244744 Zwicky Monika 2007 1.ZH.1828 LC Uster W SUI 24.04.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
218 178 176016 Baer Irina 2007 1.ZH.1845 LV Albis W SUI 21.09.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
219 184 174580 Binzegger Sara 2007 1.ZH.1845 LV Albis W SUI 19.08.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
220 216 172494 Gallo Marzia 2007 1.ZH.1845 LV Albis W SUI 12.08.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
221 258 170009 Müntener Katelynn 2007 1.ZH.1845 LV Albis W SUI 18.05.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
222 273 171970 Schuster Joy 2007 1.ZH.1845 LV Albis W SUI 27.04.2007 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
223 357 A:999979 Köwitzsch Karolina 1900 1.ZH.1871 TV Otelfingen W SUI 01.01.1900 U16W 21 Gr. 2 U16W 10:40 4-K ZH 1542080 X X X
224 345 251294 Schmid Salomé 2006 1.ZH.1871 TV Otelfingen W SUI 03.07.2006 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X X
225 346 252670 Uebelhart Ladina 2006 1.ZH.1871 TV Otelfingen W SUI 17.10.2006 Y U16W 21 Gr. 2 U16W 10:40 4-K ZH X X X
226 529 168993 Al-Mabhashi Alawia 2007 1.ZH.1822 LV Winterthur W SUI 15.06.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
227 539 168121 Fierz Tyra 2007 1.ZH.1822 LV Winterthur W SUI 04.02.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
228 541 165579 Ganster Seraina 2006 1.ZH.1822 LV Winterthur W SUI 07.05.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
229 549 173228 Keel Lena 2007 1.ZH.1822 LV Winterthur W SUI 28.01.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
230 553 245601 Kromer Anouk 2007 1.ZH.1822 LV Winterthur W SUI 06.01.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X
231 576 164976 Sommer Luana 2006 1.ZH.1822 LV Winterthur W SUI 05.02.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
232 577 164062 Spiller Emily 2006 1.ZH.1822 LV Winterthur W SUI 08.06.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
233 580 248934 Sutter Elena 2006 1.ZH.1822 LV Winterthur W SUI 03.12.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
234 588 251977 Wirz Alissa 2006 1.ZH.1822 LV Winterthur W SUI 20.04.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
235 449 174277 Anderegg Katja 2007 1.ZH.1893 LC Furttal ZH-Nord W SUI 11.12.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
236 450 252564 Bütikofer Jasmine 2006 1.ZH.1893 LC Furttal ZH-Nord W SUI 12.05.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
237 451 165305 Friedel Leoni 2006 1.ZH.1893 LC Furttal ZH-Nord W SUI 09.05.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X
238 1243 257480 Regalado Rocio 2007 1.ZH.1819 TV Kloten LA W SUI 20.07.2007 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X
239 340 169932 Schaden Levia 2006 1.ZH.1819 TV Kloten LA W SUI 18.05.2006 Y U16W 22 Gr. 3 U16W 11:20 4-K ZH X X X X

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -1,78 +0,0 @@
<%@ Page Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="MergeAthlethen.aspx.cs" Inherits="QW2021C.Administration.MergeAthlethen" %>
<%@ Register Assembly="Syncfusion.EJ.Web, Version=18.3460.0.35, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" Namespace="Syncfusion.JavaScript.Web" TagPrefix="ej" %>
<%@ Register Assembly="Syncfusion.EJ, Version=18.3460.0.35, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" Namespace="Syncfusion.JavaScript.Models" TagPrefix="ej" %>
<%@ Register Assembly="Syncfusion.EJ" Namespace="Syncfusion.JavaScript.Models" TagPrefix="ej" %>
<asp:Content ID="MainContent" ContentPlaceHolderID="MainContent" runat="Server">
<asp:Label runat="server"><h4>Zusammenführung nicht lizenzierte Teilnehmer / lizenzierte Athleten</h4></asp:Label>
<ej:Grid ID="Grid1" runat="server" CssClass="" DataSourceCachingMode="None" DataSourceID="SqlDataSource1" EnableLoadOnDemand="True" Locale="de-CH" MinWidth="0" AllowPaging="True" AllowSorting="True" AllowFiltering="True" OnServerCommandButtonClick="Grid1_ServerCommandButtonClick">
<ClientSideEvents RowDataBound="rowDataBound" />
<Columns>
<ej:Column DataType="number" Field="id_athlete" AllowEditing="False" IsIdentity="True" IsPrimaryKey="True" HeaderText="ID">
</ej:Column>
<ej:Column DataType="number" Field="Teilnehmernr" IsPrimaryKey="True" HeaderText="TLNr">
</ej:Column>
<ej:Column DataType="string" Field="license" HeaderText="Lic">
</ej:Column>
<ej:Column DataType="string" Field="lastname" HeaderText="Name">
</ej:Column>
<ej:Column DataType="string" Field="firstname" HeaderText="Vorname">
</ej:Column>
<ej:Column DataType="string" Field="sex" HeaderText="G.">
</ej:Column>
<ej:Column DataType="string" Field="license_cat">
</ej:Column>
<ej:Column DataType="string" Field="nationality" HeaderText="Nat.">
</ej:Column>
<ej:Column DataType="string" Field="account_code" HeaderText="Verein">
</ej:Column>
<ej:Column DataType="string" Field="birth_date" HeaderText="Geb.-DaT">
</ej:Column>
<ej:Column DataType="string" Field="TLizenz" HeaderText="Zuget Liz.">
</ej:Column>
<%-- <ej:Column DataType="string" Field="Name">
</ej:Column>
<ej:Column DataType="string" Field="Vorname">
</ej:Column>
<ej:Column AllowEditing="False" DataType="string" Field="TGebDat">
</ej:Column>
<ej:Column DataType="string" Field="Kategorie">
</ej:Column>
<ej:Column DataType="string" Field="Geschlecht">
</ej:Column>
<ej:Column DataType="string" Field="Nationalitaet">
</ej:Column>--%>
<ej:Column DataType="string" Field="base_lizenz" HeaderText="Base-Liz.">
</ej:Column>
<ej:Column HeaderText="Funktion" Width="170px">
<Command>
<ej:Commands Type="Merge" >
<ButtonOptions Text="Zusammenführen" Click="onClick" Width="130px" />
</ej:Commands>
</Command>
</ej:Column>
</Columns>
</ej:Grid>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:QWToolConnectionstring %>"
SelectCommand="sp_mergeathleten" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:Parameter DefaultValue="0" Name="fnkt" Type="Int32" />
<asp:Parameter DefaultValue="1.ZH.1837" Name="verein" Type="String" />
</SelectParameters>
</asp:SqlDataSource>
<script type="text/javascript">
function rowDataBound(args) {
if (args.data.base_lizenz != "")
args.row.css("backgroundColor", "#F3C3C3").css("color", "black");/*custom css applied to the row */
if (args.data.base_lizenz != "")
args.row.find(".e-unboundcell").find("button").ejButton({ text: "Aufheben" });
}
</script>
</asp:Content>

@ -1,104 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace QW2021C.Administration
{
public partial class MergeAthlethen : System.Web.UI.Page
{
Helper.Log log = new Helper.Log();
protected void Page_Load(object sender, EventArgs e)
{
{
try
{
if (Session["LoggedIn"].ToString() == "False")
{
Response.Redirect("~/default.aspx");
return;
}
}
catch
{
Response.Redirect("~/default.aspx");
return;
}
SqlDataSource1.SelectParameters["fnkt"].DefaultValue = "0";
if (Session["Admin"] == "True")
{
SqlDataSource1.SelectParameters["verein"].DefaultValue = "ALL";
}
else
{
SqlDataSource1.SelectParameters["verein"].DefaultValue = Session["Username"].ToString();
}
//Grid1.DataBind();
//SqlDataSource1.DataBind();
}
//sqldatasource1.selectparameters("UserID").DefaultValue = "whatever you want"
}
protected void Grid1_ServerCommandButtonClick(object sender, Syncfusion.JavaScript.Web.GridEventArgs e)
{
Dictionary<string, object> keyVals = e.Arguments["data"] as Dictionary<string, object>;
int id_athlete = 0;
int teilnehemernr = 0;
string license = "";
string base_lizenz = "";
foreach (KeyValuePair<string, object> keyval in keyVals)
{
if (keyval.Key == "id_athlete")
{
id_athlete = Convert.ToInt32(keyval.Value);
}
if (keyval.Key == "Teilnehmernr")
{
teilnehemernr = Convert.ToInt32(keyval.Value);
}
if (keyval.Key == "license")
{
license = keyval.Value.ToString();
}
if (keyval.Key == "license")
{
license = keyval.Value.ToString();
}
if (keyval.Key== "base_lizenz")
{
base_lizenz = keyval.Value.ToString();
}
}
if (teilnehemernr != 0 && id_athlete != 0 && license != "")
{
clsDB db = new clsDB();
if (base_lizenz != "")
{
license = "";
}
db.merge_athlete(id_athlete, teilnehemernr, license);
if (license !="")
{
log.insert_entry(1, Convert.ToInt32(Session["UserID"]), "Lizenzenn zusammengeführt:" + teilnehemernr+" / "+license);
}
else
{
log.insert_entry(1, Convert.ToInt32(Session["UserID"]), "Lizenzenn Zusaemmenführung aufgehoben:" + teilnehemernr + " / " + license);
}
}
}
}
}

@ -1,35 +0,0 @@
//------------------------------------------------------------------------------
// <automatisch generiert>
// Dieser Code wurde von einem Tool generiert.
//
// Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn
// der Code neu generiert wird.
// </automatisch generiert>
//------------------------------------------------------------------------------
namespace QW2021C.Administration
{
public partial class MergeAthlethen
{
/// <summary>
/// Grid1-Steuerelement.
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::Syncfusion.JavaScript.Web.Grid Grid1;
/// <summary>
/// SqlDataSource1-Steuerelement.
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.SqlDataSource SqlDataSource1;
}
}

@ -19,7 +19,6 @@
<ej:Menu ID="Menu1" runat="server" Width="100%" CssClass="flat-saffron">
</ej:Menu>
</div>
<div class="col-md-4">
<asp:HyperLink ID="btnhelp" Target="_blank" runat="server" Text="Hilfe" CssClass="btn btn-primary btn-sm" ForeColor="white" Style="position: relative; left: -20px" NavigateUrl="" />
@ -40,8 +39,6 @@
</asp:Panel>
</div>
</div>
<br /><asp:Label ID="lblHeader3" runat="server" ForeColor="#FF6600" Visible="False">Allfällige Zusammenlegung &#39;Nicht lizenzierte Teilnehmenr&#39; und &#39;lizenzierte Athleten&#39; prüfen</asp:Label>
<asp:HyperLink ID="HyperLink1" runat="server" ForeColor="#FF6600" NavigateUrl="~/MAthlete/MergeAthlethen.aspx" Visible="False">(hier)</asp:HyperLink>
<hr />
<%--<ej:Dialog ID="firstdialog" Title="Dialog" Width="250" runat="server" ShowOnInit="false">

@ -16,19 +16,11 @@ namespace QW2021C.Menu
{
try
{
string AutoLogin = ConfigurationSettings.AppSettings["AutoLogin"];
if (AutoLogin == "True")
String Admintest = ConfigurationSettings.AppSettings["Admintest"];
if (Admintest=="True")
{
login(ConfigurationSettings.AppSettings["User"], ConfigurationSettings.AppSettings["Password"]);
//login("usertest", "usertest");
}
//String Admintest = ConfigurationSettings.AppSettings["Admintest"];
//if (Admintest=="True")
//{
// login(ConfigurationSettings.AppSettings["User"], ConfigurationSettings.AppSettings["Password"]);
//}
}
catch { }
@ -49,20 +41,8 @@ namespace QW2021C.Menu
Session["Username"] = "";
}
//if (Session["LoggedIn"].ToString() == "true")
//login("a", "a");
try
{
if ((Session["LoggedIn"].ToString() == "True") && (Session["Admin"] != "True"))
{
clsDB xdb = new clsDB();
if (xdb.zusammenlegung(Session["Username"].ToString()) > 0)
{
this.lblHeader3.Text = "Bitte prüfen Sie, ob allfällige Zusammenlegungen von 'Nicht lizenzierten Teilnehmenr' und lizenzierten Teilnehmern möglich sind";
}
//login("a", "a");
}
}
catch { }
try
{
// If Page.IsPostBack Then Exit Sub
@ -100,7 +80,6 @@ namespace QW2021C.Menu
catch
{
}
}
public void get_menu(string menutype)
@ -178,22 +157,6 @@ namespace QW2021C.Menu
protected void Button1_Click(object Sender, Syncfusion.JavaScript.Web.ButtonEventArgs e)
{
login(this.TxtUsername.Text, this.txtpassword.Text);
try
{
this.lblHeader3.Visible = false;
this.HyperLink1.Visible = false;
if ((Session["LoggedIn"].ToString() == "True") && (Session["Admin"] != "True"))
{
clsDB xdb = new clsDB();
if (xdb.zusammenlegung(Session["Username"].ToString()) > 0)
{
this.lblHeader3.Visible = true;
this.HyperLink1.Visible = true;
}
}
}
catch { }
}
public void login(string username, string password)
@ -205,7 +168,7 @@ namespace QW2021C.Menu
Session["UserMail"] = "info@shub.ch.ch";
Session["UserNachname"] = "Hutter";
Session["LoggedIn"] = "True";
Session["Admin"] = "True";
Session["Admin"] = "True";
Session["Menuhandler"] = 11;
return;
}

@ -15,93 +15,75 @@ namespace QW2021C.Menu
{
/// <summary>
/// Menu1-Steuerelement.
/// Menu1-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::Syncfusion.JavaScript.Web.Menu Menu1;
/// <summary>
/// btnhelp-Steuerelement.
/// btnhelp-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.HyperLink btnhelp;
/// <summary>
/// PanelLogin-Steuerelement.
/// PanelLogin-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Panel PanelLogin;
/// <summary>
/// TxtUsername-Steuerelement.
/// TxtUsername-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox TxtUsername;
/// <summary>
/// txtpassword-Steuerelement.
/// txtpassword-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox txtpassword;
/// <summary>
/// Button1-Steuerelement.
/// Button1-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::Syncfusion.JavaScript.Web.Button Button1;
/// <summary>
/// PanelLoggedin-Steuerelement.
/// PanelLoggedin-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Panel PanelLoggedin;
/// <summary>
/// Button2-Steuerelement.
/// Button2-Steuerelement
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Automatisch generiertes Feld
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::Syncfusion.JavaScript.Web.Button Button2;
/// <summary>
/// lblHeader3-Steuerelement.
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblHeader3;
/// <summary>
/// HyperLink1-Steuerelement.
/// </summary>
/// <remarks>
/// Automatisch generiertes Feld.
/// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben.
/// </remarks>
protected global::System.Web.UI.WebControls.HyperLink HyperLink1;
}
}

@ -1 +1,3 @@
FreeTextBoxControls.FreeTextBox, FreeTextBox, Version=3.3.1.12354, Culture=neutral, PublicKeyToken=5962a4e684a48b87
FreeTextBoxControls.FreeTextBox, FreeTextBox, Version=3.3.1.12354, Culture=neutral, PublicKeyToken=5962a4e684a48b87

@ -203,7 +203,6 @@
<Content Include="Administration\ExportAnmeldung.aspx" />
<Content Include="Administration\Filebrowser.aspx" />
<Content Include="Administration\Kategorien.aspx" />
<Content Include="MAthlete\MergeAthlethen.aspx" />
<Content Include="Administration\Upload.aspx" />
<Content Include="Administration\Verein.aspx" />
<Content Include="Administration\Vereine_Manuell.aspx" />
@ -510,14 +509,6 @@
<None Include=".dockerignore">
<DependentUpon>Dockerfile</DependentUpon>
</None>
<EmbeddedResource Include="Resultate\Reports\Rpt_Auswertung_Gesamt_top_5.rpt">
<Generator>CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator</Generator>
<LastGenOutput>Rpt_Auswertung_Gesamt_top_5.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="Resultate\Reports\Vierkampf_Summary.rpt">
<Generator>CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator</Generator>
<LastGenOutput>Vierkampf_Summary.cs</LastGenOutput>
</EmbeddedResource>
<None Include="Scripts\jquery-3.3.1.intellisense.js" />
<Content Include="Localization\ej.localetextes.de-DE.js" />
<Content Include="Localization\ejgrid.js" />
@ -640,13 +631,6 @@
<Compile Include="Administration\Kategorien.aspx.designer.cs">
<DependentUpon>Kategorien.aspx</DependentUpon>
</Compile>
<Compile Include="MAthlete\MergeAthlethen.aspx.cs">
<DependentUpon>MergeAthlethen.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="MAthlete\MergeAthlethen.aspx.designer.cs">
<DependentUpon>MergeAthlethen.aspx</DependentUpon>
</Compile>
<Compile Include="Administration\saveFilescsv.ashx.cs">
<DependentUpon>saveFilescsv.ashx</DependentUpon>
</Compile>
@ -806,12 +790,6 @@
<DependentUpon>CrystalReport1.rpt</DependentUpon>
<SubType>Component</SubType>
</Compile>
<Compile Include="Resultate\Reports\Rpt_Auswertung_Gesamt_top_5.cs">
<DependentUpon>Rpt_Auswertung_Gesamt_top_5.rpt</DependentUpon>
<AutoGen>True</AutoGen>
<SubType>Component</SubType>
<DesignTime>True</DesignTime>
</Compile>
<Compile Include="Resultate\Reports\Rpt_Auswertung_Gesamt_top_24.cs">
<DependentUpon>Rpt_Auswertung_Gesamt_top_24.rpt</DependentUpon>
<AutoGen>True</AutoGen>
@ -872,12 +850,6 @@
<DependentUpon>Rpt_Auswertung_Ort_Top_24_old.rpt</DependentUpon>
<SubType>Component</SubType>
</Compile>
<Compile Include="Resultate\Reports\Vierkampf_Summary.cs">
<DependentUpon>Vierkampf_Summary.rpt</DependentUpon>
<AutoGen>True</AutoGen>
<SubType>Component</SubType>
<DesignTime>True</DesignTime>
</Compile>
<Compile Include="Resultate\Reports\Vierkampf.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
@ -1004,7 +976,6 @@ ButtonFeatures.aspx</DependentUpon>
<Folder Include="Content\ej\web\common-images\tools\" />
<Folder Include="crystalreportviewers13\" />
<Folder Include="Downloads\" />
<Folder Include="Reporting\Designer\" />
<Folder Include="Upload\" />
<Folder Include="Workdir\" />
</ItemGroup>

@ -1,14 +1,12 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31613.86
VisualStudioVersion = 16.0.28407.52
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QW2021C", "QW2021C.csproj", "{1FC10A94-F028-4DB2-AD48-F0F18234A4A2}"
EndProject
Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "QWDB2021", "..\QWDB2021\QWDB2021.sqlproj", "{462FDF0F-C822-41D2-AFD5-40629F20B7B9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AlabusTransfer", "AlabusTransfer\AlabusTransfer.csproj", "{42E33F05-D798-4F84-A594-12B713EC8AE7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -25,10 +23,6 @@ Global
{462FDF0F-C822-41D2-AFD5-40629F20B7B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{462FDF0F-C822-41D2-AFD5-40629F20B7B9}.Release|Any CPU.Build.0 = Release|Any CPU
{462FDF0F-C822-41D2-AFD5-40629F20B7B9}.Release|Any CPU.Deploy.0 = Release|Any CPU
{42E33F05-D798-4F84-A594-12B713EC8AE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{42E33F05-D798-4F84-A594-12B713EC8AE7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{42E33F05-D798-4F84-A594-12B713EC8AE7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{42E33F05-D798-4F84-A594-12B713EC8AE7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

@ -1 +0,0 @@
.fr-alert-dialog table td:first-child{vertical-align:top}.fr-alert-dialog .alert-mark{display:block;height:60px;width:60px;line-height:60px;border-radius:30px;background-color:#b60000;color:#fff;text-align:center;font-size:2em;margin-right:10px}.fr-alert-dialog .alert-text{display:block;font-size:.8em;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
.fr-format-form{min-height:150px}.fr-format-form .fg-body{margin-top:5px}.fr-format-form .fg{margin-top:10px}.fr-format-form input[type],.fr-format-form select{height:2em;margin:0;padding:0 0 0 10px}.fr-format-form input[type][disabled],.fr-format-form select[disabled]{opacity:.5}.fr-format-form input[type=checkbox]{float:none!important}

@ -1 +0,0 @@
.cstn .add{color:green}.cstn .remove{color:maroon}.cstn .add,.cstn .remove{float:right;margin-right:3px;padding:0 5px}.cstn .add:hover,.cstn .remove:hover{-webkit-box-shadow:3px 0 6px -4px rgba(31,73,125,.8),-3px 0 8px -4px rgba(31,73,125,.8);box-shadow:3px 0 6px -4px rgba(31,73,125,.8),-3px 0 8px -4px rgba(31,73,125,.8)}.parameters>.rt-node>.rt-content>.remove{display:none}

@ -1 +0,0 @@
.fr-edit-border-dialog__body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-flex:2;-ms-flex:2;flex:2}.fr-edit-border-dialog__border,.fr-edit-border-dialog__line{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:20px;border:1px solid #e1e1e1}.fr-edit-border-dialog__border select,.fr-edit-border-dialog__line select{height:25px!important;padding:2px!important}.fr-edit-border-dialog__border{margin-right:5px}.fr-edit-border-dialog__line{margin-left:5px}.fr-edit-border-dialog__control-item{margin-bottom:10px}.fr-edit-border-dialog__control-item>span{display:inline-block;margin-bottom:5px;font-size:.8em}.fr-edit-border-dialog__border-body-lines{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row;flex-flow:row;-webkit-box-flex:7;-ms-flex:7;flex:7;margin-right:15px}.fr-edit-border-dialog__border-body-lines a{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center;padding:10px;margin-right:2px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.fr-edit-border-dialog__border-body-lines a:hover{background-color:#bfcde1}.fr-edit-border-dialog__border-body-lines a>div{display:inline-block}.fr-edit-border-dialog__border-body-lines--active{background-color:#d5ddeb}.fr-edit-border-dialog__border-body-presentation{margin-top:15px;padding-left:30px;width:100%;height:100px}.fr-edit-border-dialog__hint{text-align:center;padding:10px 0 20px}.fr-edit-border-dialog__shadow-controls[disabled]{opacity:.5}

@ -1 +0,0 @@
.fr-outline-group>div{margin:10px 0}.fr-outline-group span{font-size:15px}.fr-outline-group input[type=number],.fr-outline-group select{margin-top:10px}

@ -1 +0,0 @@
.fr-edit-font-dialog__body-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:10px}.fr-edit-font-dialog__body-item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin-right:20px}.fr-edit-font-dialog__body-item:last-child{margin-right:0}.fr-edit-font-dialog__body-item label span{font-size:15px}.fr-edit-font-dialog__modification select{min-height:60px}.fr-edit-font-dialog__sample{border:1px solid #e1e1e1;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;display:-webkit-box;display:-ms-flexbox;display:flex}

@ -1 +0,0 @@
.fr-highlight-dialog h5{margin:0 0 10px}.fr-highlight-dialog__body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-flex:2;-ms-flex:2;flex:2}.fr-highlight-dialog__conditions,.fr-highlight-dialog__menu{border:1px solid #e1e1e1;-webkit-box-flex:1;-ms-flex:1;flex:1;padding:5px}.fr-highlight-dialog__btn{width:100%}.fr-highlight-dialog__conditions{margin-right:10px}.fr-highlight-dialog__conditions-body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.fr-highlight-dialog__conditions-body>div:first-child{-webkit-box-flex:3;-ms-flex:3;flex:3;margin-right:10px;max-height:400px;overflow:auto}.fr-highlight-dialog__conditions-body>div:last-child{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.fr-highlight-dialog__conditions-body>div:last-child .fr-btn{margin-bottom:10px}.fr-highlight-dialog .fr-condition-item{font-size:.7em;padding:3px 0 3px 10px;cursor:default;border-radius:3px}.fr-highlight-dialog .fr-condition-item-active{background-color:#bfcde1}.fr-highlight-dialog__style-item{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:5px;font-size:13px}.fr-highlight-dialog__style-item.disabled .fr-highlight-dialog__style-item-control{opacity:.5}.fr-highlight-dialog__style-sample{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px}

@ -1 +0,0 @@
.cstn .add{color:green}.cstn .remove{color:maroon}.cstn .add,.cstn .remove{float:right;margin-right:3px;padding:0 5px}.cstn .add:hover,.cstn .remove:hover{-webkit-box-shadow:3px 0 6px -4px rgba(31,73,125,.8),-3px 0 8px -4px rgba(31,73,125,.8);box-shadow:3px 0 6px -4px rgba(31,73,125,.8),-3px 0 8px -4px rgba(31,73,125,.8)}.parameters>.rt-node>.rt-content>.remove{display:none}

@ -1 +0,0 @@
.fr-edit-connection-string-dialog__displayname{font-size:16px}.fr-edit-connection-string-dialog__description{font-size:12px;color:grey}

@ -1 +0,0 @@
.fr-form-group{display:inline-block}.sort-expr{width:65%}.filter-expr{width:85%}.sort-dir{vertical-align:middle}.ghb-sort{margin-top:20px}

@ -1,10 +0,0 @@
FastReport Online Designer is web report designer for FastReport.Net for including to own developers web-projects produced with HTML5 and JS technology.
Homepage https://www.fast-report.com/en/product/fast-report-online-designer/
FastReport Online Designer Copyright (C) 2014-2017 Fast Reports Inc.
Read License.rtf for full information of using and distribution
Documentation is available on:
https://www.fast-report.com/en/product/fast-report-online-designer/documentation/

@ -1 +0,0 @@
{"version":"2021.4.9","options":{"version":"2021.4.9","cstn":"Properties,Events,ReportTree,Data","bands":"ReportTitleBand,ReportSummaryBand,PageHeaderBand,PageFooterBand,ColumnHeaderBand,ColumnFooterBand,DataHeaderBand,DataBand,DataFooterBand,GroupHeaderBand,GroupFooterBand,ChildBand,OverlayBand","components":"TextObject,PictureObject,ShapeObject,PolygonObject,PolyLineObject,LineObject,SubreportObject,TableObject,MatrixObject,BarcodeObject,RichObject,CheckBoxObject,CellularTextObject,LinearGauge,SimpleGauge,RadialGauge,SimpleProgressGauge,HtmlObject,SVGObject,ContainerObject,DigitalSignatureObject","controls":"ButtonControl,CheckBoxControl,CheckedListBoxControl,ComboBoxControl,DateTimePickerControl,LabelControl,ListBoxControl,MonthCalendarControl,RadioButtonControl,TextBoxControl","theme":"classic","cstnDefaultContainerWidth":200,"cstnVertCntrWidth":200,"cstnVertCntrCentrify":false,"cstnHorzCntrHeight":200,"edition":"full","code":true,"hotkey":true,"key":"d65a4f032c7efea300d514fa72b0bbcc","guides":true,"ruler":true,"bandHorzResizer":true,"positionBlock":true,"contextMenu":true,"dblclick":true,"autoScale":false,"withCrop":false,"webfonts":false,"workflowEnabled":true,"splitTexts":false,"joinTexts":false,"manageMask":false,"manageBackground":false,"selectComponents":true,"focusComponents":true,"previewWidth":125,"previewTable":true,"addBands":true,"sortBands":true,"resizeBands":true,"showBandTitle":true,"enablePreviewButton":true,"moveComponents":true,"resizeComponents":true,"cstnToggler":true,"notifications":"default","gridEnabled":true,"readonly":false,"additionalCfgStr":"","apiSaveReport":"../FastReport.Export.axd?putReport=#{id}","apiMakePreview":"../FastReport.Export.axd?makePreview=#{id}","apiGetReport":"../FastReport.Export.axd?getReport=#{id}&v=#{rand_hash}","apiGetFunctions":"../FastReport.Export.axd?getFunctions=#{id}","apiGetCustomConfig":"../FastReport.Export.axd?getDesignerConfig=#{id}","apiGetConnectionTypes":"../FastReport.Export.axd?getConnectionTypes=#{id}","apiGetConnectionTables":"../FastReport.Export.axd?getConnectionTables=#{id}&connectionType=#{connectionType}&connectionString=#{connectionString}","apiGetConnectionStringProperties":"../FastReport.Export.axd?getConnectionStringProperties=#{id}&connectionType=#{connectionType}&connectionString=#{connectionString}","apiMakeConnectionString":"../FastReport.Export.axd?makeConnectionString=#{id}&connectionType=#{connectionType}","customFontsUrl":"","hostAPI":"","rtcHost":"localhost:8001","saveSuccessRedirectUrl":null,"saveSuccessRedirectBlank":false,"saveSuccessRedirectUseParent":true,"saveSuccessRedirectRemoveConfirmation":true,"confirmBeforeExit":true,"movablePopups":true}}

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[0],{599:function(n,t,e){},609:function(n,t,e){"use strict";function r(){var n=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},r=n.name,a=n.message;return Object(c.a)().then(function(n){var t=new i.a(r,{danger:!0}),e=d()(l());return t.find(".fr-modal-content").html(e),e.find(".alert-text").text(a),t.on("click",".js-alert-ok-btn",function(){return t.close()}),n.append(t),window.DSG.head.put(n),t})}var a,d,i,o,l,c;e.r(t),e(599),a=e(0),d=e.n(a),i=e(244),o=e(2),l=function(){return'\n <div>\n <div class="fr-modal-body fr-alert-dialog">\n <table>\n <tr>\n <td><div class="alert-mark">!</div></td>\n <td><div class="alert-text"></div></td>\n </tr>\n </table>\n </div>\n\n <div class="fr-modal-footer">\n <div class="pull-right">\n <button type="button" class="fr-btn fr-btn-danger js-alert-ok-btn">\n '+o.a.tr("Ok")+"\n </button>\n </div>\n </div>\n </div>\n "},c=e(173),e.d(t,"create",function(){return r})}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[13],{602:function(n,e,t){},612:function(n,e,t){"use strict";function i(p){Object(r.a)().then(function(n){var e=p.prop("TextOutline.Enabled"),t=new c.a("OutlineEditor"),i=s()(f(e)),o=i.find(".fr-outline-editor-enabled"),r=i.find(".fr-outline-editor-style"),l=i.find(".fr-outline-editor-width"),d=i.find(".fr-outline-editor-color"),a=i.find(".fr-outline-editor-drawbehind"),u=i.find(".fr-outline-group");o.on("change",function(){u.toggleClass("fr-hidden",!o.is(":checked"))}),u.toggleClass("fr-hidden",!e),r.val(p.prop("TextOutline.Style")||"Solid"),l.val(p.prop("TextOutline.Width")||1),d.val(p.prop("TextOutline.Color")||"#000"),a.prop("checked",!!p.prop("TextOutline.DrawBehind")),s()(".fr-outline-editor-save-btn",i).on("click",function(){o.is(":checked")?p.prop({"TextOutline.Enabled":!0,"TextOutline.Style":r.val(),"TextOutline.Width":l.val(),"TextOutline.Color":d.val(),"TextOutline.DrawBehind":a.is(":checked")}):(p.deleteProp("TextOutline.Enabled"),p.deleteProp("TextOutline.Style"),p.deleteProp("TextOutline.Width"),p.deleteProp("TextOutline.Color"),p.deleteProp("TextOutline.DrawBehind")),p.render(),t.close()}),t.find(".fr-modal-content").html(i),n.append(t),window.DSG.head.put(n)})}var o,s,r,c,l,d,f;t.r(e),t(602),o=t(0),s=t.n(o),r=t(173),c=t(244),l=t(2),d=t(4),f=function(n){return'\n <div>\n <div class="fr-modal-body fr-outline-editor">\n <label for="outline-enabled">\n <span>'+l.a.tr("OutlineEditor Enabled")+'</span>\n <input type="checkbox" id="outline-enabled" class="fr-outline-editor-enabled" '+(n?"checked":"")+'/>\n </label>\n <div class="fr-outline-group fr-hidden">\n <hr>\n <div>\n <span>'+l.a.tr("OutlineEditor Style")+'</span>\n <select class="fr-outline-editor-style">\n '+function(){var e="";return Object.keys(d.a.get("dasharrays")).forEach(function(n){e+='<option value="'+n+'">'+n+"</option>"}),e}()+"\n </select>\n </div>\n <hr>\n <div>\n <span>"+l.a.tr("OutlineEditor Width")+'</span>\n <input type="number" class="fr-outline-editor-width" step="0.5"/>\n </div>\n <hr>\n <div>\n <span>'+l.a.tr("OutlineEditor Color")+'</span>\n <input type="color" class="fr-outline-editor-color"/>\n </div>\n <hr>\n <div>\n <label for="outline-drawbehind">\n <span>'+l.a.tr("OutlineEditor DrawBehind")+'</span>\n <input type="checkbox" id="outline-drawbehind" class="fr-outline-editor-drawbehind"/>\n </label>\n </div>\n </div>\n </div>\n <div class="fr-modal-footer content-right">\n <button type="button" class="fr-btn fr-btn-primary fr-outline-editor-save-btn">\n '+l.a.tr("Buttons Ok")+"\n </button>\n </div>\n </div>\n "},t.d(e,"create",function(){return i})}}]);

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[14],{592:function(t,n,a){"use strict";function e(v){return Object(o.a)().then(function(t){var n,a,e,r,o,i,c,d,l,s,f=new h.a("Edit Picture"),p=b()(k()),u=new w.a({dc:"Data Column",fn:"File",hyperlink:"Hyperlink"}),m=v.getProp("Data:Image");if(!m)return C.error("there is no needed property (Data:Image)"),!1;n=v.getProp("Data:Image").control.self.$body.clone(),e=b()('<img src=""/>'),r=b()("<button>"),o=v.getProp("Data:ImageLocation").control.self.$body.clone(),i=v.getProp("Data:DataColumn").control.self.$body.clone(),c=b()(".fr-modal-tabs-content",u),d=b()(".fr-modal-content-fn",c),l=b()(".fr-modal-content-hyperlink",c),s=b()(".fr-modal-content-dc",c),p.find(".edit-picture").append(u),f.find(".fr-modal-content").html(p),r.addClass("clear-picture-preview"),r.text("Clear"),d.append(n,e,r),l.append(o),s.append(i),v.prop("Image")&&e.attr("src",v.prop("Image")),n.on("change","input",function(){Object(y.a)(this,function(t){a=t.target.result,e.attr("src",a)})}),r.on("click",function(){v.prop("Image",""),a=null,e=b()('<img src=""/>'),d.find("img").replaceWith(e),e.css("max-width",c.width())}),f.on("click",".edit-pic",function(){v.prop("DataColumn",i.find("input").val()),v.prop("ImageLocation",o.find("input").val()),a&&v.prop("Image",a),f.close(),v.render(),g.a.trigger("update-properties-panel",v)}),t.append(f),window.DSG.head.put(t),e.css("max-width",c.width())})}var r,b,g,o,h,w,i,k,y,c,C;a.r(n),r=a(0),b=a.n(r),g=a(1),o=a(173),h=a(244),w=a(594),i=a(2),k=function(){return'\n <div>\n <div class="fr-modal-body edit-picture"></div>\n <div class="fr-modal-footer content-right">\n <button type="button" class="fr-btn fr-btn-primary edit-pic">\n '+i.a.tr("Buttons Ok")+"\n </button>\n </div>\n </div>\n "},y=a(255),c=a(22),a.d(n,"create",function(){return e}),C=new c.a("picture")},594:function(t,n,a){"use strict";function e(n){n.on("click",".fr-modal-tabs-item",function(){var t=o()(this);t.hasClass("disabled")||t.hasClass("active")||(t.parent().find(".active").removeClass("active"),t.addClass("active"),n.find(".fr-modal-tabs-content").find(".active").removeClass("active"),n.find(".fr-modal-tabs-content").find("."+t.attr("data-block")).addClass("active"),t.trigger("tabactivated"))})}var r=a(0),o=a.n(r),i=a(2),c=function(t){return"\n <div>\n "+function(a){var e="";return Object.keys(a).forEach(function(t,n){e+='\n <li class="fr-modal-tabs-item '+(0===n?"active":"")+'" data-tab="'+t+'" data-block="fr-modal-content-'+t+'">\n <a>'+i.a.tr(a[t])+"</a>\n </li>\n "}),'<ul class="fr-modal-tabs">'+e+"</ul>"}(t)+"\n "+function(t){var a="";return Object.keys(t).forEach(function(t,n){a+='\n <div class="fr-modal-content-item fr-modal-content-'+t+" "+(0===n?"active":"")+'"></div>\n '}),'<div class="fr-modal-tabs-content">'+a+"</div>"}(t)+"\n </div>\n "};a.d(n,"b",function(){return e}),n.a=function(t){var n=o()(c(t));return o()(".fr-modal-tabs-content",n),e(n),n}}}]);

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[16],{591:function(n,t,o){"use strict";function r(p){Object(e.a)().then(function(n){var t,o,r,i=new u.a("Edit Group"),e=l()(b()),d=p.getProp("Data:Condition"),a=p.getProp("Behavior:SortOrder"),c=l()(".ghb-condition",e),s=l()(".ghb-sort",e);if(!d||!a)return null;t=d.control.self.$body.clone(),o=a.control.self.$body.clone(),c.append(t),s.append(o),e.on("click",".d-fc-exp-but",function(){r=l()(this),v.a.trigger("show-expression-editor",{entity:r.prev().val(),onSave:function(n,t,o){r.prev().val(t),o.close()}})}),e.on("click",".edit-ghb",function(){p.prop("Condition",t.find("input").val()),p.prop("SortOrder",o.find(":selected").val()),i.close(),p.render(),v.a.trigger("update-properties-panel",p)}),l()(".fr-modal-content",i).html(e),n.append(i),window.DSG.head.put(n)})}var i,l,e,u,v,d,b;o.r(t),i=o(0),l=o.n(i),e=o(173),u=o(244),v=o(1),d=o(2),b=function(){return'\n <div>\n <div class="fr-modal-body edit-band">\n <div class="ghb-content">\n <div class="ghb-condition">\n <span>'+d.a.tr("GroupBandEditor Condition")+'</span>\n </div>\n <div class="ghb-sort">\n <span>'+d.a.tr("DataProcessing SortOrder")+'</span>\n </div>\n </div>\n </div>\n\n <div class="fr-modal-footer content-right">\n <button type="button" class="fr-btn fr-btn-primary edit-ghb">\n '+d.a.tr("Buttons Ok")+"\n </button>\n </div>\n </div>\n "},o.d(t,"create",function(){return r})}}]);

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[17],{606:function(n,t,e){"use strict";function a(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};e=Object.assign({title:i.a.tr("Error")},e),Object(o.a)().then(function(n){var t=new r.a(e.title);t.find(".fr-modal-content").html("\n <span>"+e.message+"</span>\n "),n.append(t),window.DSG.head.put(n)})}var i,o,r;e.r(t),e.d(t,"create",function(){return a}),i=e(2),o=e(173),r=e(244)}}]);

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[8],{597:function(n,t,e){"use strict";function o(e){return e.ok?e:e.text().then(function(n){var t=new Error;throw t.name=e.statusText,t.message=n,t})}e.d(t,"a",function(){return o})},605:function(n,t,e){},608:function(n,t,e){"use strict";function r(u,n,t){return l.a.show1(),fetch(m.a.get("getConnectionStringProperties",{id:window.DSG.currentReport._id,connectionType:encodeURIComponent(n),connectionString:encodeURIComponent(t)}),{credentials:"same-origin"}).then(y.a).then(function(n){return n.json()}).then(function(n){var t,e,o,i,c,r,a,s,d,p=u.find(".js-edit-connection-string__body");for(t in p.empty(),n.properties)e=n.properties[t],o=f()('<div class="fr-edit-connection-string-dialog__displayname">'+e.displayName+": </div>"),p.append(o),p.append('<div class="fr-edit-connection-string-dialog__description">'+e.description+"</div>"),a=e.value,s=e.propertyType,d=void 0,a=""+a,c="text","number"==typeof(i="System.Boolean"===s?"true"===a.toLowerCase():-1!==["System.Decimal","System.Double","System.Int16","System.Int32","System.Int64","System.Single","System.UInt16","System.UInt32","System.UInt64"].indexOf(s)?"number"==typeof(d=Object(g.a)(a))?d:0:a)?c="number":"boolean"==typeof i&&(c="checkbox"),r=f()('<input type="'+c+'" class="js-edit-connection-string__property-item">').data("name",e.name),"checkbox"===c?(r.prop("checked",i),o.append(r)):(r.val(i),p.append(f()('<div class="js-edit-connection-string__input-container"></div>').append(r))),p.append("<br>")}).catch(function(n){a.a.trigger("alert",n),u.close()}).then(function(){return l.a.hide()})}function o(){var n=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},i=n.connectionType,o=n.connectionString,c=n.onSave;return Object(u.a)().then(function(n){var t=new s.a(d.a.tr("Forms DataWizard ConnectionString")),e=f()(p());return t.find(".fr-modal-content").html(e),t.on("click",".js-edit-connection-string-cancel-btn",function(){t.close()}),t.on("click",".js-edit-connection-string-save-btn",function(){var o=new FormData;t.find(".js-edit-connection-string__property-item").each(function(n,t){var e=f()(t);"checkbox"===e.prop("type")?o.append(e.data("name"),e.prop("checked")):o.append(e.data("name"),e.val())}),function(t,n,e,o){l.a.show1(),fetch(m.a.get("makeConnectionString",{id:window.DSG.currentReport._id,connectionType:encodeURIComponent(n)}),{method:"POST",body:e,credentials:"same-origin"}).then(y.a).then(function(n){return n.json()}).then(function(n){o(n.connectionString),t.close()}).catch(function(n){a.a.trigger("alert",n)}).then(function(){return l.a.hide()})}(t,i,o,c)}),r(t,i,o),n.append(t),window.DSG.head.put(n),t})}var i,f,a,s,d,p,u,l,m,y,g;e.r(t),e(605),i=e(0),f=e.n(i),a=e(1),s=e(244),d=e(2),p=function(){return'\n <div>\n <div class="fr-modal-body js-edit-connection-string__body"></div>\n <div class="fr-modal-footer">\n <div class="pull-right">\n <button type="button" class="fr-btn fr-btn-primary js-edit-connection-string-cancel-btn">\n '+d.a.tr("Buttons Cancel")+'\n </button>\n <button type="button" class="fr-btn fr-btn-primary js-edit-connection-string-save-btn">\n '+d.a.tr("Save")+"\n </button>\n </div>\n </div>\n </div>\n "},u=e(173),l=e(48),m=e(4),y=e(597),g=e(151),e.d(t,"create",function(){return o})}}]);

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
!function(t){function i(e){if(o[e])return o[e].exports;var n=o[e]={i:e,l:!1,exports:{}};return t[e].call(n.exports,n,n.exports,i),n.l=!0,n.exports}var o={};i.m=t,i.c=o,i.d=function(e,n,t){i.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:t})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(n,e){var t,o;if(1&e&&(n=i(n)),8&e)return n;if(4&e&&"object"==typeof n&&n&&n.__esModule)return n;if(t=Object.create(null),i.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:n}),2&e&&"string"!=typeof n)for(o in n)i.d(t,o,function(e){return n[e]}.bind(null,o));return t},i.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(n,"a",n),n},i.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},i.p="",i(i.s=316)}({316:function(e,n,t){"use strict";var o,i;t.r(n),t(43),(i={version:"2021.4.9",hostAPI:o=window.hostAPI||"",customFontsUrl:window.customFontsUrl||"",cookieName:"ARRAffinity",saveReport:o+"../FastReport.Export.axd?putReport=#{id}",makePreview:o+"../FastReport.Export.axd?makePreview=#{id}",getReport:o+"../FastReport.Export.axd?getReport=#{id}&v=#{rand_hash}",getFunctions:o+"../FastReport.Export.axd?getFunctions=#{id}",getCustomConfig:o+"../FastReport.Export.axd?getDesignerConfig=#{id}",getConnectionTypes:o+"../FastReport.Export.axd?getConnectionTypes=#{id}",getConnectionTables:o+"../FastReport.Export.axd?getConnectionTables=#{id}&connectionType=#{connectionType}&connectionString=#{connectionString}",getConnectionStringProperties:o+"../FastReport.Export.axd?getConnectionStringProperties=#{id}&connectionType=#{connectionType}&connectionString=#{connectionString}",makeConnectionString:o+"../FastReport.Export.axd?makeConnectionString=#{id}&connectionType=#{connectionType}","scale-mobile":.6,scale:1,grid:9.45,"sticky-grid":!0,hotkeyProhibited:!1,dasharrays:{DashDot:"9, 2, 2, 2",Dot:"2, 2",Solid:"",Dash:"9, 3",DashDotDot:"9, 2, 2, 2, 2, 2"},"default-dasharray":"Solid",languages:{ar:"Arabic",cs:"Czech",da:"Danish",de:"German",el:"Greek",en:"English",es:"Spanish",fa:"Persian",fr:"French",hr:"Croatian",hu:"Hungarian",hy:"Armenian",it:"Italian",nl:"Dutch",pl:"Polish",pt:"Portuguese","pt-br":"Portuguese (Brazil)",ro:"Romanian",ru:"Russian",sk:"Slovak",sl:"Slovenian",sr:"Croatian",sv:"Swedish",th:"Thai",tr:"Turkish",uk:"Ukrainian",zh:"Chinese (Simplified)","zh-Hant":"Chinese (Traditional)"},"font-names":["Calibri","Calibri Light","Comic Sans MS","Consolas","Constantia","Courier New","Georgia","Impact","Tahoma","Times New Roman","Trebuchet MS","Verdana","Droid Sans Mono","Ubuntu Mono","Microsoft Sans Serif","Palatino Linotype","Lucida Console","Lucida Sans Unicode","Segoe Print","Segoe Script","Segoe UI","Segoe UI Symbol","Sylfaen","Symbol","Webdings","Wingbings","Cambria","Arial","Candara","Corbel","Franklin Gothic","Gabriola","Cambria Math"],"default-font-name":"Arial","font-sizes":[5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,28,30,34,36,40,48,56,72],brackets:"[,]","band-indent-top":9.448,"band-indent-opacity":.3,minComponentWidthForResizingElements:40,minComponentHeightForResizingElements:40,rectButtonWidth:15,rectButtonHeight:15,rectButtonFill:"#c25853",circleButtonWidth:6,circleButtonHeight:6,circleButtonRadius:5,"circleButtonWidth-mobile":12,"circleButtonHeight-mobile":12,"circleButtonRadius-mobile":10,resizingBandBlockWidth:100,resizingBandBlockHeight:15,polylineStroke:"#c25853",polylineStrokeWidth:"1px",selectedPolylineStrokeWidth:"2.5px",polylineFill:"none",polylineWidth:4,lineMovingScope:30,guides:!0,colors:{"button-circle":"#c25853","angle-slider":"#c25853","default-band-separator":"#C0C0C0","selected-band-separator":"#2B579A"},"show-band-title":!0,"add-bands":!0,"sort-bands":!0,"resize-bands":!0,"movable-components":!0,"resizable-components":!0,"customization-toggler":!0,customization:{properties:{enable:!0,button:!0,shown:!1,header:!0,hasBorder:!0,movable:!0,resizable:!0},events:{enable:!0,button:!0,shown:!1,header:!0,hasBorder:!0,movable:!0,resizable:!0},"report-tree":{enable:!0,button:!0,shown:!1,header:!0,hasBorder:!0,movable:!0,resizable:!0},data:{enable:!0,button:!0,shown:!1,header:!0,hasBorder:!0,movable:!0,resizable:!0}},"default-tab-menu":"home","show-saving-progress":"default",notifications:!1,"notifications-mobile":!1}).notifications="default",i["notifications-mobile"]="default",window.config=i,n.default=i},43:function(e,n,t){"use strict";var o,i,r,a,s,c,l,d;t.d(n,"d",function(){return o}),t.d(n,"c",function(){return i}),t.d(n,"g",function(){return r}),t.d(n,"f",function(){return a}),t.d(n,"b",function(){return s}),t.d(n,"a",function(){return c}),t.d(n,"h",function(){return l}),t.d(n,"e",function(){return d}),o=50,i="200",r=100,a=20,c=s=200,l=0,d=1}});

@ -1 +0,0 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[3],{604:function(n,t,i){},613:function(n,t,i){"use strict";function o(){var c=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};return Object(a.a)().then(function(n){var t=new u.a("Toolbar Text Name"),i=f()(v()),o=i.find(".js-font-presentation"),e=i.find(".js-font-list"),a=i.find(".js-font-outline"),l=i.find(".js-font-size"),s=i.find(".js-font-modification"),d=function(n){o.css({"font-family":n.name,"font-size":n.size}),n.isUnderline&&n.isStrikeout?o.css("text-decoration","underline line-through"):n.isUnderline?o.css("text-decoration","underline"):n.isStrikeout?o.css("text-decoration","line-through"):o.css("text-decoration",""),n.isBold?o.css("font-weight","600"):o.css("font-weight",""),n.isItalic?o.css("font-style","italic"):o.css("font-style","")},r=function(n){e.val(n.name),l.val(n.size);var t=[];n.isUnderline&&t.push("Underline"),n.isStrikeout&&t.push("Strikeout"),s.val(t),n.isBold&&n.isItalic?a.val("Bold Italic"):n.isBold?a.val("Bold"):n.isItalic?a.val("Italic"):a.val("None"),d(n)};return(r=r.bind(null,c))(),e.on("change",function(n){c.name=f()(n.target).val(),r()}),a.on("change",function(n){var t=f()(n.target).val();"Bold Italic"===t?(c.isBold=!0,c.isItalic=!0):"Bold"===t?(c.isBold=!0,c.isItalic=!1):"Italic"===t?(c.isBold=!1,c.isItalic=!0):(c.isBold=!1,c.isItalic=!1),r()}),l.on("change",function(n){c.size=f()(n.target).val(),r()}),s.on("change",function(n){var t=f()(n.target).val();Array.isArray(t)&&(t.includes("Underline")?c.isUnderline=!0:c.isUnderline=!1,t.includes("Strikeout")?c.isStrikeout=!0:c.isStrikeout=!1,r())}),i.on("click",".js-save-font",function(){return t.trigger("ok",c)}),t.find(".fr-modal-content").html(i),n.append(t),window.DSG.head.put(n),t})}var e,f,a,u,l,s,v;i.r(t),i(604),e=i(0),f=i.n(e),a=i(173),u=i(244),l=i(2),s=i(4),v=function(){return'\n <div class="fr-edit-font-dialog">\n <div class="fr-modal-body fr-edit-font-dialog__body">\n <div class="fr-edit-font-dialog__body-row">\n <div class="fr-edit-font-dialog__body-item fr-edit-font-dialog__font">\n <label>\n <span>'+l.a.tr("Toolbar Text Name")+'</span>\n <select class="js-font-list">\n '+s.a.get("font-names").map(function(n){return'<option value="'+n+'">'+n+"</option>"}).join("")+'\n </select>\n </label>\n </div>\n <div class="fr-edit-font-dialog__body-item fr-edit-font-dialog__outline">\n <label>\n <span>'+l.a.tr("General TextStyle")+'</span>\n <select class="js-font-outline">\n '+["None","Italic","Bold","Bold Italic"].map(function(n){return'<option value="'+n+'">'+n+"</option>"}).join("")+'\n </select>\n </label>\n </div>\n <div class="fr-edit-font-dialog__body-item fr-edit-font-dialog__size">\n <label>\n <span>'+l.a.tr("Toolbar Text Size")+'</span>\n <select class="js-font-size">\n '+s.a.get("font-sizes").map(function(n){return'<option value="'+n+'pt">'+n+"</option>"}).join("")+'\n </select>\n </label>\n </div>\n </div>\n <div class="fr-edit-font-dialog__body-row">\n <div class="fr-edit-font-dialog__body-item fr-edit-font-dialog__modification">\n <select class="js-font-modification" multiple>\n '+[{val:"Strikeout",label:l.a.tr("Toolbar Text Strikeout")},{val:"Underline",label:l.a.tr("Toolbar Text Underline")}].map(function(n){return'<option value="'+n.val+'">'+n.label+"</option>"}).join("")+'\n </select>\n </div>\n <div class="fr-edit-font-dialog__body-item fr-edit-font-dialog__sample js-font-presentation">\n '+l.a.tr("Misc Sample")+'\n </div>\n </div>\n </div>\n\n <div class="fr-modal-footer content-right">\n <button type="button" class="fr-btn fr-btn-primary fr-save js-save-font">\n '+l.a.tr("Buttons Ok")+"\n </button>\n </div>\n </div>\n "},i.d(t,"create",function(){return o})}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
!function(i){function e(e){for(var t,n,r=e[0],o=e[1],u=e[2],l=0,f=[];l<r.length;l++)n=r[l],Object.prototype.hasOwnProperty.call(a,n)&&a[n]&&f.push(a[n][0]),a[n]=0;for(t in o)Object.prototype.hasOwnProperty.call(o,t)&&(i[t]=o[t]);for(c&&c(e);f.length;)f.shift()();return s.push.apply(s,u||[]),p()}function p(){var e,t,n,r,o,u;for(t=0;t<s.length;t++){for(n=s[t],r=!0,o=1;o<n.length;o++)u=n[o],0!==a[u]&&(r=!1);r&&(s.splice(t--,1),e=l(l.s=n[0]))}return e}function l(e){if(o[e])return o[e].exports;var t=o[e]={i:e,l:!1,exports:{}};return i[e].call(t.exports,t,t.exports,l),t.l=!0,t.exports}var t,n,r,c,o={},a={6:0},s=[];for(l.m=i,l.c=o,l.d=function(e,t,n){l.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},l.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(t,e){var n,r;if(1&e&&(t=l(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;if(n=Object.create(null),l.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(r in t)l.d(n,r,function(e){return t[e]}.bind(null,r));return n},l.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return l.d(t,"a",t),t},l.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},l.p="",n=(t=window.webpackJsonp=window.webpackJsonp||[]).push.bind(t),t.push=e,t=t.slice(),r=0;r<t.length;r++)e(t[r]);c=n,s.push([404,1]),p()}({404:function(e,t,n){n(405),e.exports=n(588)}});

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save