diff --git a/1st/RESULTS b/1st/RESULTS new file mode 100644 index 0000000..afda69c --- /dev/null +++ b/1st/RESULTS @@ -0,0 +1,60 @@ +### LORChess: 1-ый турнир (неоконченный) + +Турнир стартовал 03.02.2013 05:50:31 + +Турнир завершён 21.04.2013 20:52:41 + +http://www.linux.org.ru/forum/talks/8799973 + +## Информация + +* Количество участников: 23 +* Планировалось туров: 46 +* Сыграно туров: 6 +* Аннулирован тур: 1 +* Сыграно партий: 132 +* Несыгранных партий: 78 + +## Участники + +* alfix +* doomgl +* dk- +* DNA_Seq +* DoctorSinus +* Felagund +* Genuine +* Google-ch +* HunOL +* J +* LongLiveUbuntu +* Michkova +* onetwothreezeronine +* snoopcat +* redgremlin +* pylin +* Rosko +* shell-script +* Solace +* trex6 +* UVV +* XoFfiCEr +* William +* Zodd + +## Результаты + +* 1: Rosko, Zodd - 15 очков +* 2: Michkova, William - 14 очков +* 3: Genuine, snoopcat - 12.5 очков +* 4: HunOL, J - 10.5 очков +* 5: shell-script, trex6 - 10 очков +* 6: alfix - 8.5 очков +* 7: UVV - 8 очков +* 8: pylin - 7 очков +* 9: redgremlin - 6 очков +* 10: doomgl, DNA_Seq - 4 очка +* 11: DoctorSinus, Felagund, LongLiveUbuntu - 3 очка +* 12: dk- - 2 очка +* Google-ch, onetwothreezeronine - 0 очков +* XoFfiCEr, Solace - выбыли из турнира diff --git a/1st/roundrobin.py b/1st/roundrobin.py new file mode 100755 index 0000000..1341c70 --- /dev/null +++ b/1st/roundrobin.py @@ -0,0 +1,63 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- +def roundRobin(units, sets=None): + """ Generates a schedule of "fair" pairings from a list of units """ + if len(units) % 2: + units.append(None) + count = len(units) + sets = sets or (count - 1) + half = count / 2 + schedule = [] + for turn in range(sets): + pairings = [] + for i in range(half): + pairings.append((units[i], units[count-i-1])) + units.insert(1, units.pop()) + schedule.append(pairings) + return schedule + +# LOR sheduler + +players = [ + "[user]alfix[/user]", + "[user]aptyp[/user]", + "[user]dk-[/user]", + "[user]DNA_Seq[/user]", + "[user]DoctorSinus[/user]", + "[user]Felagund[/user]", + "[user]Genuine[/user]", + "[user]Google-ch[/user]", + "[user]HunOL[/user]", + "[user]J[/user]", + "[user]LongLiveUbuntu[/user]", + "[user]Michkova[/user]", + "[user]onetwothreezeronine[/user]", + "[user]snoopcat[/user]", + "[user]redgremlin[/user]", + "[user]pylin[/user]", + "[user]Rosko[/user]", + "[user]shell-script[/user]", + "[user]Solace[/user]", + "[user]trex6[/user]", + "[user]UVV[/user]", + "[user]XoFfiCEr[/user]", + "[user]William[/user]", + "[user]Zodd[/user]" +] +tour_count = 0 + +# Generate LORCODE for pairings. +# Also generate "reversal" for autumm season. +for pairings in roundRobin(players): + tours = (len(players) - 1) * 2 + tour_count = tour_count + 1 + print "[b]Тур №" + str(tour_count) + "[/b]" + print "[list]" + for pair in pairings: + print "[*]" + pair[0] + " играет против " + pair[1] + print "[/list]" + print "[b]Тур №" + str(tours - tour_count + 1) + "[/b]" + print "[list]" + for pair in pairings: + print "[*]" + pair[1] + " играет против " + pair[0] + print "[/list]" diff --git a/2013/scheduler b/1st/scheduler similarity index 100% rename from 2013/scheduler rename to 1st/scheduler diff --git a/2013/tour_01/2013.02.03 — DoctorSinus vs. trex6/1.pgn b/1st/tour_01/2013.02.03 — DoctorSinus vs. trex6/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.03 — DoctorSinus vs. trex6/1.pgn rename to 1st/tour_01/2013.02.03 — DoctorSinus vs. trex6/1.pgn diff --git a/2013/tour_01/2013.02.03 — DoctorSinus vs. trex6/2.pgn b/1st/tour_01/2013.02.03 — DoctorSinus vs. trex6/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.03 — DoctorSinus vs. trex6/2.pgn rename to 1st/tour_01/2013.02.03 — DoctorSinus vs. trex6/2.pgn diff --git a/2013/tour_01/2013.02.03 — DoctorSinus vs. trex6/3.pgn b/1st/tour_01/2013.02.03 — DoctorSinus vs. trex6/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.03 — DoctorSinus vs. trex6/3.pgn rename to 1st/tour_01/2013.02.03 — DoctorSinus vs. trex6/3.pgn diff --git a/2013/tour_01/2013.02.03 — J vs. redgremlin/1.pgn b/1st/tour_01/2013.02.03 — J vs. redgremlin/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.03 — J vs. redgremlin/1.pgn rename to 1st/tour_01/2013.02.03 — J vs. redgremlin/1.pgn diff --git a/2013/tour_01/2013.02.03 — J vs. redgremlin/2.pgn b/1st/tour_01/2013.02.03 — J vs. redgremlin/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.03 — J vs. redgremlin/2.pgn rename to 1st/tour_01/2013.02.03 — J vs. redgremlin/2.pgn diff --git a/2013/tour_01/2013.02.03 — J vs. redgremlin/3.pgn b/1st/tour_01/2013.02.03 — J vs. redgremlin/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.03 — J vs. redgremlin/3.pgn rename to 1st/tour_01/2013.02.03 — J vs. redgremlin/3.pgn diff --git a/2013/tour_01/2013.02.04 — Felagund vs. Solace/1.pgn b/1st/tour_01/2013.02.04 — Felagund vs. Solace/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — Felagund vs. Solace/1.pgn rename to 1st/tour_01/2013.02.04 — Felagund vs. Solace/1.pgn diff --git a/2013/tour_01/2013.02.04 — Felagund vs. Solace/2.pgn b/1st/tour_01/2013.02.04 — Felagund vs. Solace/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — Felagund vs. Solace/2.pgn rename to 1st/tour_01/2013.02.04 — Felagund vs. Solace/2.pgn diff --git a/2013/tour_01/2013.02.04 — Felagund vs. Solace/3.pgn b/1st/tour_01/2013.02.04 — Felagund vs. Solace/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — Felagund vs. Solace/3.pgn rename to 1st/tour_01/2013.02.04 — Felagund vs. Solace/3.pgn diff --git a/2013/tour_01/2013.02.04 — Genuine vs. shell-script/1.pgn b/1st/tour_01/2013.02.04 — Genuine vs. shell-script/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — Genuine vs. shell-script/1.pgn rename to 1st/tour_01/2013.02.04 — Genuine vs. shell-script/1.pgn diff --git a/2013/tour_01/2013.02.04 — Genuine vs. shell-script/2.pgn b/1st/tour_01/2013.02.04 — Genuine vs. shell-script/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — Genuine vs. shell-script/2.pgn rename to 1st/tour_01/2013.02.04 — Genuine vs. shell-script/2.pgn diff --git a/2013/tour_01/2013.02.04 — Genuine vs. shell-script/3.pgn b/1st/tour_01/2013.02.04 — Genuine vs. shell-script/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — Genuine vs. shell-script/3.pgn rename to 1st/tour_01/2013.02.04 — Genuine vs. shell-script/3.pgn diff --git a/2013/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/1.pgn b/1st/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/1.pgn rename to 1st/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/1.pgn diff --git a/2013/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/2.pgn b/1st/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/2.pgn rename to 1st/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/2.pgn diff --git a/2013/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/3.pgn b/1st/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/3.pgn rename to 1st/tour_01/2013.02.04 — Michkova vs. onetwothreezeronine/3.pgn diff --git a/2013/tour_01/2013.02.04 — aptyp vs. William/1.pgn b/1st/tour_01/2013.02.04 — aptyp vs. William/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — aptyp vs. William/1.pgn rename to 1st/tour_01/2013.02.04 — aptyp vs. William/1.pgn diff --git a/2013/tour_01/2013.02.04 — aptyp vs. William/2.pgn b/1st/tour_01/2013.02.04 — aptyp vs. William/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — aptyp vs. William/2.pgn rename to 1st/tour_01/2013.02.04 — aptyp vs. William/2.pgn diff --git a/2013/tour_01/2013.02.04 — aptyp vs. William/3.pgn b/1st/tour_01/2013.02.04 — aptyp vs. William/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — aptyp vs. William/3.pgn rename to 1st/tour_01/2013.02.04 — aptyp vs. William/3.pgn diff --git a/2013/tour_01/2013.02.04 — dk- vs. XoFfiCEr/1.pgn b/1st/tour_01/2013.02.04 — dk- vs. XoFfiCEr/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — dk- vs. XoFfiCEr/1.pgn rename to 1st/tour_01/2013.02.04 — dk- vs. XoFfiCEr/1.pgn diff --git a/2013/tour_01/2013.02.04 — dk- vs. XoFfiCEr/2.pgn b/1st/tour_01/2013.02.04 — dk- vs. XoFfiCEr/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — dk- vs. XoFfiCEr/2.pgn rename to 1st/tour_01/2013.02.04 — dk- vs. XoFfiCEr/2.pgn diff --git a/2013/tour_01/2013.02.04 — dk- vs. XoFfiCEr/3.pgn b/1st/tour_01/2013.02.04 — dk- vs. XoFfiCEr/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.04 — dk- vs. XoFfiCEr/3.pgn rename to 1st/tour_01/2013.02.04 — dk- vs. XoFfiCEr/3.pgn diff --git a/2013/tour_01/2013.02.09 — DNA_Seq vs. UVV/1.pgn b/1st/tour_01/2013.02.09 — DNA_Seq vs. UVV/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.09 — DNA_Seq vs. UVV/1.pgn rename to 1st/tour_01/2013.02.09 — DNA_Seq vs. UVV/1.pgn diff --git a/2013/tour_01/2013.02.09 — DNA_Seq vs. UVV/2.pgn b/1st/tour_01/2013.02.09 — DNA_Seq vs. UVV/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.09 — DNA_Seq vs. UVV/2.pgn rename to 1st/tour_01/2013.02.09 — DNA_Seq vs. UVV/2.pgn diff --git a/2013/tour_01/2013.02.09 — DNA_Seq vs. UVV/3.pgn b/1st/tour_01/2013.02.09 — DNA_Seq vs. UVV/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.09 — DNA_Seq vs. UVV/3.pgn rename to 1st/tour_01/2013.02.09 — DNA_Seq vs. UVV/3.pgn diff --git a/2013/tour_01/2013.02.09 — HunOL vs. pylin/1.pgn b/1st/tour_01/2013.02.09 — HunOL vs. pylin/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.09 — HunOL vs. pylin/1.pgn rename to 1st/tour_01/2013.02.09 — HunOL vs. pylin/1.pgn diff --git a/2013/tour_01/2013.02.09 — HunOL vs. pylin/2.pgn b/1st/tour_01/2013.02.09 — HunOL vs. pylin/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.09 — HunOL vs. pylin/2.pgn rename to 1st/tour_01/2013.02.09 — HunOL vs. pylin/2.pgn diff --git a/2013/tour_01/2013.02.09 — HunOL vs. pylin/3.pgn b/1st/tour_01/2013.02.09 — HunOL vs. pylin/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.09 — HunOL vs. pylin/3.pgn rename to 1st/tour_01/2013.02.09 — HunOL vs. pylin/3.pgn diff --git a/2013/tour_01/2013.02.09 — alfix vs. Zodd/1.pgn b/1st/tour_01/2013.02.09 — alfix vs. Zodd/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.09 — alfix vs. Zodd/1.pgn rename to 1st/tour_01/2013.02.09 — alfix vs. Zodd/1.pgn diff --git a/2013/tour_01/2013.02.09 — alfix vs. Zodd/2.pgn b/1st/tour_01/2013.02.09 — alfix vs. Zodd/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.09 — alfix vs. Zodd/2.pgn rename to 1st/tour_01/2013.02.09 — alfix vs. Zodd/2.pgn diff --git a/2013/tour_01/2013.02.09 — alfix vs. Zodd/3.pgn b/1st/tour_01/2013.02.09 — alfix vs. Zodd/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.09 — alfix vs. Zodd/3.pgn rename to 1st/tour_01/2013.02.09 — alfix vs. Zodd/3.pgn diff --git a/2013/tour_01/2013.02.10 — Google-ch vs. Rosko/1.pgn b/1st/tour_01/2013.02.10 — Google-ch vs. Rosko/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.10 — Google-ch vs. Rosko/1.pgn rename to 1st/tour_01/2013.02.10 — Google-ch vs. Rosko/1.pgn diff --git a/2013/tour_01/2013.02.10 — Google-ch vs. Rosko/2.pgn b/1st/tour_01/2013.02.10 — Google-ch vs. Rosko/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.10 — Google-ch vs. Rosko/2.pgn rename to 1st/tour_01/2013.02.10 — Google-ch vs. Rosko/2.pgn diff --git a/2013/tour_01/2013.02.10 — Google-ch vs. Rosko/3.pgn b/1st/tour_01/2013.02.10 — Google-ch vs. Rosko/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.10 — Google-ch vs. Rosko/3.pgn rename to 1st/tour_01/2013.02.10 — Google-ch vs. Rosko/3.pgn diff --git a/2013/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/1.pgn b/1st/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/1.pgn similarity index 100% rename from 2013/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/1.pgn rename to 1st/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/1.pgn diff --git a/2013/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/2.pgn b/1st/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/2.pgn similarity index 100% rename from 2013/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/2.pgn rename to 1st/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/2.pgn diff --git a/2013/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/3.pgn b/1st/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/3.pgn similarity index 100% rename from 2013/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/3.pgn rename to 1st/tour_01/2013.02.11 — LongLiveUbuntu vs. snoopcat/3.pgn diff --git a/2013/tour_01/tour_info b/1st/tour_01/tour_info similarity index 100% rename from 2013/tour_01/tour_info rename to 1st/tour_01/tour_info diff --git a/2013/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/1.pgn b/1st/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/1.pgn rename to 1st/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/1.pgn diff --git a/2013/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/2.pgn b/1st/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/2.pgn rename to 1st/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/2.pgn diff --git a/2013/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/3.pgn b/1st/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/3.pgn rename to 1st/tour_02/2013.02.11 — Zodd vs. XoFfiCEr/3.pgn diff --git a/2013/tour_02/2013.02.11 — alfix vs. William/1.pgn b/1st/tour_02/2013.02.11 — alfix vs. William/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.11 — alfix vs. William/1.pgn rename to 1st/tour_02/2013.02.11 — alfix vs. William/1.pgn diff --git a/2013/tour_02/2013.02.11 — alfix vs. William/2.pgn b/1st/tour_02/2013.02.11 — alfix vs. William/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.11 — alfix vs. William/2.pgn rename to 1st/tour_02/2013.02.11 — alfix vs. William/2.pgn diff --git a/2013/tour_02/2013.02.11 — alfix vs. William/3.pgn b/1st/tour_02/2013.02.11 — alfix vs. William/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.11 — alfix vs. William/3.pgn rename to 1st/tour_02/2013.02.11 — alfix vs. William/3.pgn diff --git a/2013/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/1.pgn b/1st/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/1.pgn rename to 1st/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/1.pgn diff --git a/2013/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/2.pgn b/1st/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/2.pgn rename to 1st/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/2.pgn diff --git a/2013/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/3.pgn b/1st/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/3.pgn rename to 1st/tour_02/2013.02.14 — LongLiveUbuntu vs. Michkova/3.pgn diff --git a/2013/tour_02/2013.02.16 — Felagund vs. Rosko/1.pgn b/1st/tour_02/2013.02.16 — Felagund vs. Rosko/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.16 — Felagund vs. Rosko/1.pgn rename to 1st/tour_02/2013.02.16 — Felagund vs. Rosko/1.pgn diff --git a/2013/tour_02/2013.02.16 — Felagund vs. Rosko/2.pgn b/1st/tour_02/2013.02.16 — Felagund vs. Rosko/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.16 — Felagund vs. Rosko/2.pgn rename to 1st/tour_02/2013.02.16 — Felagund vs. Rosko/2.pgn diff --git a/2013/tour_02/2013.02.16 — Felagund vs. Rosko/3.pgn b/1st/tour_02/2013.02.16 — Felagund vs. Rosko/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.16 — Felagund vs. Rosko/3.pgn rename to 1st/tour_02/2013.02.16 — Felagund vs. Rosko/3.pgn diff --git a/2013/tour_02/2013.02.16 — HunOL vs. snoopcat/1.pgn b/1st/tour_02/2013.02.16 — HunOL vs. snoopcat/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.16 — HunOL vs. snoopcat/1.pgn rename to 1st/tour_02/2013.02.16 — HunOL vs. snoopcat/1.pgn diff --git a/2013/tour_02/2013.02.16 — HunOL vs. snoopcat/2.pgn b/1st/tour_02/2013.02.16 — HunOL vs. snoopcat/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.16 — HunOL vs. snoopcat/2.pgn rename to 1st/tour_02/2013.02.16 — HunOL vs. snoopcat/2.pgn diff --git a/2013/tour_02/2013.02.16 — HunOL vs. snoopcat/3.pgn b/1st/tour_02/2013.02.16 — HunOL vs. snoopcat/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.16 — HunOL vs. snoopcat/3.pgn rename to 1st/tour_02/2013.02.16 — HunOL vs. snoopcat/3.pgn diff --git a/2013/tour_02/2013.02.17 — DoctorSinus vs. shell-script/1.pgn b/1st/tour_02/2013.02.17 — DoctorSinus vs. shell-script/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.17 — DoctorSinus vs. shell-script/1.pgn rename to 1st/tour_02/2013.02.17 — DoctorSinus vs. shell-script/1.pgn diff --git a/2013/tour_02/2013.02.17 — DoctorSinus vs. shell-script/2.pgn b/1st/tour_02/2013.02.17 — DoctorSinus vs. shell-script/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.17 — DoctorSinus vs. shell-script/2.pgn rename to 1st/tour_02/2013.02.17 — DoctorSinus vs. shell-script/2.pgn diff --git a/2013/tour_02/2013.02.17 — DoctorSinus vs. shell-script/3.pgn b/1st/tour_02/2013.02.17 — DoctorSinus vs. shell-script/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.17 — DoctorSinus vs. shell-script/3.pgn rename to 1st/tour_02/2013.02.17 — DoctorSinus vs. shell-script/3.pgn diff --git a/2013/tour_02/2013.02.18 — Genuine vs. pylin/1.pgn b/1st/tour_02/2013.02.18 — Genuine vs. pylin/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.18 — Genuine vs. pylin/1.pgn rename to 1st/tour_02/2013.02.18 — Genuine vs. pylin/1.pgn diff --git a/2013/tour_02/2013.02.18 — Genuine vs. pylin/2.pgn b/1st/tour_02/2013.02.18 — Genuine vs. pylin/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.18 — Genuine vs. pylin/2.pgn rename to 1st/tour_02/2013.02.18 — Genuine vs. pylin/2.pgn diff --git a/2013/tour_02/2013.02.18 — Genuine vs. pylin/3.pgn b/1st/tour_02/2013.02.18 — Genuine vs. pylin/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.18 — Genuine vs. pylin/3.pgn rename to 1st/tour_02/2013.02.18 — Genuine vs. pylin/3.pgn diff --git a/2013/tour_02/2013.02.19 — dk- vs. trex6/1.pgn b/1st/tour_02/2013.02.19 — dk- vs. trex6/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.19 — dk- vs. trex6/1.pgn rename to 1st/tour_02/2013.02.19 — dk- vs. trex6/1.pgn diff --git a/2013/tour_02/2013.02.19 — dk- vs. trex6/2.pgn b/1st/tour_02/2013.02.19 — dk- vs. trex6/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.19 — dk- vs. trex6/2.pgn rename to 1st/tour_02/2013.02.19 — dk- vs. trex6/2.pgn diff --git a/2013/tour_02/2013.02.19 — dk- vs. trex6/3.pgn b/1st/tour_02/2013.02.19 — dk- vs. trex6/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.19 — dk- vs. trex6/3.pgn rename to 1st/tour_02/2013.02.19 — dk- vs. trex6/3.pgn diff --git a/2013/tour_02/2013.02.22 — doomgl vs. UVV/1.pgn b/1st/tour_02/2013.02.22 — doomgl vs. UVV/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.22 — doomgl vs. UVV/1.pgn rename to 1st/tour_02/2013.02.22 — doomgl vs. UVV/1.pgn diff --git a/2013/tour_02/2013.02.22 — doomgl vs. UVV/2.pgn b/1st/tour_02/2013.02.22 — doomgl vs. UVV/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.22 — doomgl vs. UVV/2.pgn rename to 1st/tour_02/2013.02.22 — doomgl vs. UVV/2.pgn diff --git a/2013/tour_02/2013.02.22 — doomgl vs. UVV/3.pgn b/1st/tour_02/2013.02.22 — doomgl vs. UVV/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.22 — doomgl vs. UVV/3.pgn rename to 1st/tour_02/2013.02.22 — doomgl vs. UVV/3.pgn diff --git a/2013/tour_02/2013.02.23 — Google-ch vs. redgremlin/1.pgn b/1st/tour_02/2013.02.23 — Google-ch vs. redgremlin/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.23 — Google-ch vs. redgremlin/1.pgn rename to 1st/tour_02/2013.02.23 — Google-ch vs. redgremlin/1.pgn diff --git a/2013/tour_02/2013.02.23 — Google-ch vs. redgremlin/2.pgn b/1st/tour_02/2013.02.23 — Google-ch vs. redgremlin/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.23 — Google-ch vs. redgremlin/2.pgn rename to 1st/tour_02/2013.02.23 — Google-ch vs. redgremlin/2.pgn diff --git a/2013/tour_02/2013.02.23 — Google-ch vs. redgremlin/3.pgn b/1st/tour_02/2013.02.23 — Google-ch vs. redgremlin/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.23 — Google-ch vs. redgremlin/3.pgn rename to 1st/tour_02/2013.02.23 — Google-ch vs. redgremlin/3.pgn diff --git a/2013/tour_02/2013.02.24 — J vs. onetwothreezeronine/1.pgn b/1st/tour_02/2013.02.24 — J vs. onetwothreezeronine/1.pgn similarity index 100% rename from 2013/tour_02/2013.02.24 — J vs. onetwothreezeronine/1.pgn rename to 1st/tour_02/2013.02.24 — J vs. onetwothreezeronine/1.pgn diff --git a/2013/tour_02/2013.02.24 — J vs. onetwothreezeronine/2.pgn b/1st/tour_02/2013.02.24 — J vs. onetwothreezeronine/2.pgn similarity index 100% rename from 2013/tour_02/2013.02.24 — J vs. onetwothreezeronine/2.pgn rename to 1st/tour_02/2013.02.24 — J vs. onetwothreezeronine/2.pgn diff --git a/2013/tour_02/2013.02.24 — J vs. onetwothreezeronine/3.pgn b/1st/tour_02/2013.02.24 — J vs. onetwothreezeronine/3.pgn similarity index 100% rename from 2013/tour_02/2013.02.24 — J vs. onetwothreezeronine/3.pgn rename to 1st/tour_02/2013.02.24 — J vs. onetwothreezeronine/3.pgn diff --git a/2013/tour_02/tour_info b/1st/tour_02/tour_info similarity index 90% rename from 2013/tour_02/tour_info rename to 1st/tour_02/tour_info index 161acfb..b96b509 100644 --- a/2013/tour_02/tour_info +++ b/1st/tour_02/tour_info @@ -7,7 +7,7 @@ 11.02.2013 - Zodd 3:0 XoFfiCEr 22.02.2013 - doomgl 0:3 UVV 19.02.2013 - dk- 0.5:2.5 trex6 -25.03.2013 - DNA_Seq 1:0 Solace без игры +25.03.2013 - DNA_Seq 3:0 Solace без игры 17.02.2013 - DoctorSinus 0:3 shell-script 16.02.2013 - Felagund 0:3 Rosko 18.02.2013 - Genuine 3:0 pylin diff --git a/2013/tour_03/2013.02.19 — alfix vs. XoFfiCEr/1.pgn b/1st/tour_03/2013.02.19 — alfix vs. XoFfiCEr/1.pgn similarity index 100% rename from 2013/tour_03/2013.02.19 — alfix vs. XoFfiCEr/1.pgn rename to 1st/tour_03/2013.02.19 — alfix vs. XoFfiCEr/1.pgn diff --git a/2013/tour_03/2013.02.19 — alfix vs. XoFfiCEr/2.pgn b/1st/tour_03/2013.02.19 — alfix vs. XoFfiCEr/2.pgn similarity index 100% rename from 2013/tour_03/2013.02.19 — alfix vs. XoFfiCEr/2.pgn rename to 1st/tour_03/2013.02.19 — alfix vs. XoFfiCEr/2.pgn diff --git a/2013/tour_03/2013.02.19 — alfix vs. XoFfiCEr/3.pgn b/1st/tour_03/2013.02.19 — alfix vs. XoFfiCEr/3.pgn similarity index 100% rename from 2013/tour_03/2013.02.19 — alfix vs. XoFfiCEr/3.pgn rename to 1st/tour_03/2013.02.19 — alfix vs. XoFfiCEr/3.pgn diff --git a/2013/tour_03/2013.02.23 — Genuine vs. snoopcat/1.pgn b/1st/tour_03/2013.02.23 — Genuine vs. snoopcat/1.pgn similarity index 100% rename from 2013/tour_03/2013.02.23 — Genuine vs. snoopcat/1.pgn rename to 1st/tour_03/2013.02.23 — Genuine vs. snoopcat/1.pgn diff --git a/2013/tour_03/2013.02.23 — Genuine vs. snoopcat/2.pgn b/1st/tour_03/2013.02.23 — Genuine vs. snoopcat/2.pgn similarity index 100% rename from 2013/tour_03/2013.02.23 — Genuine vs. snoopcat/2.pgn rename to 1st/tour_03/2013.02.23 — Genuine vs. snoopcat/2.pgn diff --git a/2013/tour_03/2013.02.23 — Genuine vs. snoopcat/3.pgn b/1st/tour_03/2013.02.23 — Genuine vs. snoopcat/3.pgn similarity index 100% rename from 2013/tour_03/2013.02.23 — Genuine vs. snoopcat/3.pgn rename to 1st/tour_03/2013.02.23 — Genuine vs. snoopcat/3.pgn diff --git a/2013/tour_03/2013.02.23 — Zodd vs. trex6/1.pgn b/1st/tour_03/2013.02.23 — Zodd vs. trex6/1.pgn similarity index 100% rename from 2013/tour_03/2013.02.23 — Zodd vs. trex6/1.pgn rename to 1st/tour_03/2013.02.23 — Zodd vs. trex6/1.pgn diff --git a/2013/tour_03/2013.02.23 — Zodd vs. trex6/2.pgn b/1st/tour_03/2013.02.23 — Zodd vs. trex6/2.pgn similarity index 100% rename from 2013/tour_03/2013.02.23 — Zodd vs. trex6/2.pgn rename to 1st/tour_03/2013.02.23 — Zodd vs. trex6/2.pgn diff --git a/2013/tour_03/2013.02.23 — Zodd vs. trex6/3.pgn b/1st/tour_03/2013.02.23 — Zodd vs. trex6/3.pgn similarity index 100% rename from 2013/tour_03/2013.02.23 — Zodd vs. trex6/3.pgn rename to 1st/tour_03/2013.02.23 — Zodd vs. trex6/3.pgn diff --git a/2013/tour_03/2013.02.24 — DNA_Seq vs. Rosko/1.pgn b/1st/tour_03/2013.02.24 — DNA_Seq vs. Rosko/1.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — DNA_Seq vs. Rosko/1.pgn rename to 1st/tour_03/2013.02.24 — DNA_Seq vs. Rosko/1.pgn diff --git a/2013/tour_03/2013.02.24 — DNA_Seq vs. Rosko/2.pgn b/1st/tour_03/2013.02.24 — DNA_Seq vs. Rosko/2.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — DNA_Seq vs. Rosko/2.pgn rename to 1st/tour_03/2013.02.24 — DNA_Seq vs. Rosko/2.pgn diff --git a/2013/tour_03/2013.02.24 — DNA_Seq vs. Rosko/3.pgn b/1st/tour_03/2013.02.24 — DNA_Seq vs. Rosko/3.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — DNA_Seq vs. Rosko/3.pgn rename to 1st/tour_03/2013.02.24 — DNA_Seq vs. Rosko/3.pgn diff --git a/2013/tour_03/2013.02.24 — HunOL vs. Michkova/1.pgn b/1st/tour_03/2013.02.24 — HunOL vs. Michkova/1.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — HunOL vs. Michkova/1.pgn rename to 1st/tour_03/2013.02.24 — HunOL vs. Michkova/1.pgn diff --git a/2013/tour_03/2013.02.24 — HunOL vs. Michkova/2.pgn b/1st/tour_03/2013.02.24 — HunOL vs. Michkova/2.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — HunOL vs. Michkova/2.pgn rename to 1st/tour_03/2013.02.24 — HunOL vs. Michkova/2.pgn diff --git a/2013/tour_03/2013.02.24 — HunOL vs. Michkova/3.pgn b/1st/tour_03/2013.02.24 — HunOL vs. Michkova/3.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — HunOL vs. Michkova/3.pgn rename to 1st/tour_03/2013.02.24 — HunOL vs. Michkova/3.pgn diff --git a/2013/tour_03/2013.02.24 — J vs. LongLiveUbuntu/1.pgn b/1st/tour_03/2013.02.24 — J vs. LongLiveUbuntu/1.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — J vs. LongLiveUbuntu/1.pgn rename to 1st/tour_03/2013.02.24 — J vs. LongLiveUbuntu/1.pgn diff --git a/2013/tour_03/2013.02.24 — J vs. LongLiveUbuntu/2.pgn b/1st/tour_03/2013.02.24 — J vs. LongLiveUbuntu/2.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — J vs. LongLiveUbuntu/2.pgn rename to 1st/tour_03/2013.02.24 — J vs. LongLiveUbuntu/2.pgn diff --git a/2013/tour_03/2013.02.24 — J vs. LongLiveUbuntu/3.pgn b/1st/tour_03/2013.02.24 — J vs. LongLiveUbuntu/3.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — J vs. LongLiveUbuntu/3.pgn rename to 1st/tour_03/2013.02.24 — J vs. LongLiveUbuntu/3.pgn diff --git a/2013/tour_03/2013.02.24 — William vs. UVV/1.pgn b/1st/tour_03/2013.02.24 — William vs. UVV/1.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — William vs. UVV/1.pgn rename to 1st/tour_03/2013.02.24 — William vs. UVV/1.pgn diff --git a/2013/tour_03/2013.02.24 — William vs. UVV/2.pgn b/1st/tour_03/2013.02.24 — William vs. UVV/2.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — William vs. UVV/2.pgn rename to 1st/tour_03/2013.02.24 — William vs. UVV/2.pgn diff --git a/2013/tour_03/2013.02.24 — William vs. UVV/3.pgn b/1st/tour_03/2013.02.24 — William vs. UVV/3.pgn similarity index 100% rename from 2013/tour_03/2013.02.24 — William vs. UVV/3.pgn rename to 1st/tour_03/2013.02.24 — William vs. UVV/3.pgn diff --git a/2013/tour_03/2013.03.04 — DoctorSinus vs. pylin/1.pgn b/1st/tour_03/2013.03.04 — DoctorSinus vs. pylin/1.pgn similarity index 100% rename from 2013/tour_03/2013.03.04 — DoctorSinus vs. pylin/1.pgn rename to 1st/tour_03/2013.03.04 — DoctorSinus vs. pylin/1.pgn diff --git a/2013/tour_03/2013.03.04 — DoctorSinus vs. pylin/2.pgn b/1st/tour_03/2013.03.04 — DoctorSinus vs. pylin/2.pgn similarity index 100% rename from 2013/tour_03/2013.03.04 — DoctorSinus vs. pylin/2.pgn rename to 1st/tour_03/2013.03.04 — DoctorSinus vs. pylin/2.pgn diff --git a/2013/tour_03/2013.03.04 — DoctorSinus vs. pylin/3.pgn b/1st/tour_03/2013.03.04 — DoctorSinus vs. pylin/3.pgn similarity index 100% rename from 2013/tour_03/2013.03.04 — DoctorSinus vs. pylin/3.pgn rename to 1st/tour_03/2013.03.04 — DoctorSinus vs. pylin/3.pgn diff --git a/2013/tour_03/tour_info b/1st/tour_03/tour_info similarity index 81% rename from 2013/tour_03/tour_info rename to 1st/tour_03/tour_info index 1f55f82..9399cd5 100644 --- a/2013/tour_03/tour_info +++ b/1st/tour_03/tour_info @@ -6,8 +6,8 @@ 19.02.2013 - alfix 2:1 XoFfiCEr 24.02.2013 - William 3:0 UVV 23.02.2013 - Zodd 3:0 trex6 -07.04.2013 - doomgl 1:0 Solace без игры -07.04.2013 - dk- 0:1 shell-script без игры +07.04.2013 - doomgl 3:0 Solace без игры +07.04.2013 - dk- 0:3 shell-script без игры 23.02.2013 - DNA_Seq 0:3 Rosko 04.03.2013 - DoctorSinus 1:2 pylin 07.04.2013 - Felagund 0:0 redgremlin diff --git a/2013/tour_04/2013.03.03 — Genuine vs. Michkova/1.pgn b/1st/tour_04/2013.03.03 — Genuine vs. Michkova/1.pgn similarity index 100% rename from 2013/tour_04/2013.03.03 — Genuine vs. Michkova/1.pgn rename to 1st/tour_04/2013.03.03 — Genuine vs. Michkova/1.pgn diff --git a/2013/tour_04/2013.03.03 — Genuine vs. Michkova/2.pgn b/1st/tour_04/2013.03.03 — Genuine vs. Michkova/2.pgn similarity index 100% rename from 2013/tour_04/2013.03.03 — Genuine vs. Michkova/2.pgn rename to 1st/tour_04/2013.03.03 — Genuine vs. Michkova/2.pgn diff --git a/2013/tour_04/2013.03.03 — Genuine vs. Michkova/3.pgn b/1st/tour_04/2013.03.03 — Genuine vs. Michkova/3.pgn similarity index 100% rename from 2013/tour_04/2013.03.03 — Genuine vs. Michkova/3.pgn rename to 1st/tour_04/2013.03.03 — Genuine vs. Michkova/3.pgn diff --git a/2013/tour_04/2013.03.03 — HunOL vs. J/1.pgn b/1st/tour_04/2013.03.03 — HunOL vs. J/1.pgn similarity index 100% rename from 2013/tour_04/2013.03.03 — HunOL vs. J/1.pgn rename to 1st/tour_04/2013.03.03 — HunOL vs. J/1.pgn diff --git a/2013/tour_04/2013.03.03 — HunOL vs. J/2.pgn b/1st/tour_04/2013.03.03 — HunOL vs. J/2.pgn similarity index 100% rename from 2013/tour_04/2013.03.03 — HunOL vs. J/2.pgn rename to 1st/tour_04/2013.03.03 — HunOL vs. J/2.pgn diff --git a/2013/tour_04/2013.03.03 — HunOL vs. J/3.pgn b/1st/tour_04/2013.03.03 — HunOL vs. J/3.pgn similarity index 100% rename from 2013/tour_04/2013.03.03 — HunOL vs. J/3.pgn rename to 1st/tour_04/2013.03.03 — HunOL vs. J/3.pgn diff --git a/2013/tour_04/2013.03.03 — Zodd vs. shell-script/1.pgn b/1st/tour_04/2013.03.03 — Zodd vs. shell-script/1.pgn similarity index 100% rename from 2013/tour_04/2013.03.03 — Zodd vs. shell-script/1.pgn rename to 1st/tour_04/2013.03.03 — Zodd vs. shell-script/1.pgn diff --git a/2013/tour_04/2013.03.03 — Zodd vs. shell-script/2.pgn b/1st/tour_04/2013.03.03 — Zodd vs. shell-script/2.pgn similarity index 100% rename from 2013/tour_04/2013.03.03 — Zodd vs. shell-script/2.pgn rename to 1st/tour_04/2013.03.03 — Zodd vs. shell-script/2.pgn diff --git a/2013/tour_04/2013.03.03 — Zodd vs. shell-script/3.pgn b/1st/tour_04/2013.03.03 — Zodd vs. shell-script/3.pgn similarity index 100% rename from 2013/tour_04/2013.03.03 — Zodd vs. shell-script/3.pgn rename to 1st/tour_04/2013.03.03 — Zodd vs. shell-script/3.pgn diff --git a/2013/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/1.pgn b/1st/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/1.pgn similarity index 100% rename from 2013/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/1.pgn rename to 1st/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/1.pgn diff --git a/2013/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/2.pgn b/1st/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/2.pgn similarity index 100% rename from 2013/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/2.pgn rename to 1st/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/2.pgn diff --git a/2013/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/3.pgn b/1st/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/3.pgn similarity index 100% rename from 2013/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/3.pgn rename to 1st/tour_04/2013.03.04 — DoctorSinus vs. snoopcat/3.pgn diff --git a/2013/tour_04/2013.03.11 — XoFfiCEr vs. trex6/1.pgn b/1st/tour_04/2013.03.11 — XoFfiCEr vs. trex6/1.pgn similarity index 100% rename from 2013/tour_04/2013.03.11 — XoFfiCEr vs. trex6/1.pgn rename to 1st/tour_04/2013.03.11 — XoFfiCEr vs. trex6/1.pgn diff --git a/2013/tour_04/2013.03.11 — XoFfiCEr vs. trex6/2.pgn b/1st/tour_04/2013.03.11 — XoFfiCEr vs. trex6/2.pgn similarity index 100% rename from 2013/tour_04/2013.03.11 — XoFfiCEr vs. trex6/2.pgn rename to 1st/tour_04/2013.03.11 — XoFfiCEr vs. trex6/2.pgn diff --git a/2013/tour_04/2013.03.11 — XoFfiCEr vs. trex6/3.pgn b/1st/tour_04/2013.03.11 — XoFfiCEr vs. trex6/3.pgn similarity index 100% rename from 2013/tour_04/2013.03.11 — XoFfiCEr vs. trex6/3.pgn rename to 1st/tour_04/2013.03.11 — XoFfiCEr vs. trex6/3.pgn diff --git a/2013/tour_04/tour_info b/1st/tour_04/tour_info similarity index 67% rename from 2013/tour_04/tour_info rename to 1st/tour_04/tour_info index 43025e2..d79cde9 100644 --- a/2013/tour_04/tour_info +++ b/1st/tour_04/tour_info @@ -5,13 +5,13 @@ 07.04.2013 - alfix 0:0 UVV без игры 11.03.2013 - XoFfiCEr 1.5:1.5 trex6 -07.04.2013 - William 0:0 Solace без игры +07.04.2013 - William 3:0 Solace без игры 03.03.2013 - Zodd 3:0 shell-script -07.04.2013 - doomgl 0:1 Rosko без игры -07.04.2013 - dk- 0:1 pylin без игры +07.04.2013 - doomgl 0:3 Rosko без игры +07.04.2013 - dk- 0:3 pylin без игры 07.04.2013 - DNA_Seq 0:0 redgremlin без игры 04.03.2013 - DoctorSinus 1:2 snoopcat 07.04.2013 - Felagund 0:0 onetwothreezeronine без игры 03.03.2013 - Genuine 2:1 Michkova -07.04.2013 - Google-ch 0:1 LongLiveUbuntu без игры +07.04.2013 - Google-ch 0:3 LongLiveUbuntu без игры 03.03.2013 - HunOL 1.5:1.5 J diff --git a/2013/tour_05/2013.03.11 — Genuine vs. J/1.pgn b/1st/tour_05/2013.03.11 — Genuine vs. J/1.pgn similarity index 100% rename from 2013/tour_05/2013.03.11 — Genuine vs. J/1.pgn rename to 1st/tour_05/2013.03.11 — Genuine vs. J/1.pgn diff --git a/2013/tour_05/2013.03.11 — Genuine vs. J/2.pgn b/1st/tour_05/2013.03.11 — Genuine vs. J/2.pgn similarity index 100% rename from 2013/tour_05/2013.03.11 — Genuine vs. J/2.pgn rename to 1st/tour_05/2013.03.11 — Genuine vs. J/2.pgn diff --git a/2013/tour_05/2013.03.11 — Genuine vs. J/3.pgn b/1st/tour_05/2013.03.11 — Genuine vs. J/3.pgn similarity index 100% rename from 2013/tour_05/2013.03.11 — Genuine vs. J/3.pgn rename to 1st/tour_05/2013.03.11 — Genuine vs. J/3.pgn diff --git a/2013/tour_05/2013.03.12 — DoctorSinus vs. Michkova/1.pgn b/1st/tour_05/2013.03.12 — DoctorSinus vs. Michkova/1.pgn similarity index 100% rename from 2013/tour_05/2013.03.12 — DoctorSinus vs. Michkova/1.pgn rename to 1st/tour_05/2013.03.12 — DoctorSinus vs. Michkova/1.pgn diff --git a/2013/tour_05/2013.03.12 — DoctorSinus vs. Michkova/2.pgn b/1st/tour_05/2013.03.12 — DoctorSinus vs. Michkova/2.pgn similarity index 100% rename from 2013/tour_05/2013.03.12 — DoctorSinus vs. Michkova/2.pgn rename to 1st/tour_05/2013.03.12 — DoctorSinus vs. Michkova/2.pgn diff --git a/2013/tour_05/2013.03.12 — DoctorSinus vs. Michkova/3.pgn b/1st/tour_05/2013.03.12 — DoctorSinus vs. Michkova/3.pgn similarity index 100% rename from 2013/tour_05/2013.03.12 — DoctorSinus vs. Michkova/3.pgn rename to 1st/tour_05/2013.03.12 — DoctorSinus vs. Michkova/3.pgn diff --git a/2013/tour_05/2013.03.15 — Zodd vs. pylin/1.pgn b/1st/tour_05/2013.03.15 — Zodd vs. pylin/1.pgn similarity index 100% rename from 2013/tour_05/2013.03.15 — Zodd vs. pylin/1.pgn rename to 1st/tour_05/2013.03.15 — Zodd vs. pylin/1.pgn diff --git a/2013/tour_05/2013.03.15 — Zodd vs. pylin/2.pgn b/1st/tour_05/2013.03.15 — Zodd vs. pylin/2.pgn similarity index 100% rename from 2013/tour_05/2013.03.15 — Zodd vs. pylin/2.pgn rename to 1st/tour_05/2013.03.15 — Zodd vs. pylin/2.pgn diff --git a/2013/tour_05/2013.03.15 — Zodd vs. pylin/3.pgn b/1st/tour_05/2013.03.15 — Zodd vs. pylin/3.pgn similarity index 100% rename from 2013/tour_05/2013.03.15 — Zodd vs. pylin/3.pgn rename to 1st/tour_05/2013.03.15 — Zodd vs. pylin/3.pgn diff --git a/2013/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/1.pgn b/1st/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/1.pgn similarity index 100% rename from 2013/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/1.pgn rename to 1st/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/1.pgn diff --git a/2013/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/2.pgn b/1st/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/2.pgn similarity index 100% rename from 2013/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/2.pgn rename to 1st/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/2.pgn diff --git a/2013/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/3.pgn b/1st/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/3.pgn similarity index 100% rename from 2013/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/3.pgn rename to 1st/tour_05/2013.03.24 — XoFfiCEr vs. shell-script/3.pgn diff --git a/1st/tour_05/tour_info b/1st/tour_05/tour_info new file mode 100644 index 0000000..8a3a6c2 --- /dev/null +++ b/1st/tour_05/tour_info @@ -0,0 +1,17 @@ +Тур №5 +========== + +Время проведения: 11.03.2013 - 16.04.2013 + +16.04.2013 - alfix 0:3 trex6 без игры +16.04.2013 - UVV 3:0 Solace без игры +24.03.2013 - XoFfiCEr 1.5:1.5 shell-script +24.03.2013 - William : Rosko +14.03.2013 - Zodd 3:0 pylin +24.03.2013 - doomgl 0:0 redgremlin без игры +24.03.2013 - dk- 0:3 snoopcat без игры +24.03.2013 - DNA_Seq 0:0 onetwothreezeronine без игры +11.03.2013 - DoctorSinus 3:0 Michkova +24.03.2013 - Felagund 0:0 LongLiveUbuntu без игры +11.03.2013 - Genuine 3:0 J +24.03.2013 - Google-ch 0:3 HunOL без игры diff --git a/2013/tour_06/2013.03.26 — trex6 vs. shell-script/1.pgn b/1st/tour_06/2013.03.26 — trex6 vs. shell-script/1.pgn similarity index 100% rename from 2013/tour_06/2013.03.26 — trex6 vs. shell-script/1.pgn rename to 1st/tour_06/2013.03.26 — trex6 vs. shell-script/1.pgn diff --git a/2013/tour_06/2013.03.26 — trex6 vs. shell-script/2.pgn b/1st/tour_06/2013.03.26 — trex6 vs. shell-script/2.pgn similarity index 100% rename from 2013/tour_06/2013.03.26 — trex6 vs. shell-script/2.pgn rename to 1st/tour_06/2013.03.26 — trex6 vs. shell-script/2.pgn diff --git a/2013/tour_06/2013.03.26 — trex6 vs. shell-script/3.pgn b/1st/tour_06/2013.03.26 — trex6 vs. shell-script/3.pgn similarity index 100% rename from 2013/tour_06/2013.03.26 — trex6 vs. shell-script/3.pgn rename to 1st/tour_06/2013.03.26 — trex6 vs. shell-script/3.pgn diff --git a/2013/tour_06/2013.03.31 — DoctorSinus vs. J/1.pgn b/1st/tour_06/2013.03.31 — DoctorSinus vs. J/1.pgn similarity index 100% rename from 2013/tour_06/2013.03.31 — DoctorSinus vs. J/1.pgn rename to 1st/tour_06/2013.03.31 — DoctorSinus vs. J/1.pgn diff --git a/2013/tour_06/2013.03.31 — DoctorSinus vs. J/2.pgn b/1st/tour_06/2013.03.31 — DoctorSinus vs. J/2.pgn similarity index 100% rename from 2013/tour_06/2013.03.31 — DoctorSinus vs. J/2.pgn rename to 1st/tour_06/2013.03.31 — DoctorSinus vs. J/2.pgn diff --git a/2013/tour_06/2013.03.31 — DoctorSinus vs. J/3.pgn b/1st/tour_06/2013.03.31 — DoctorSinus vs. J/3.pgn similarity index 100% rename from 2013/tour_06/2013.03.31 — DoctorSinus vs. J/3.pgn rename to 1st/tour_06/2013.03.31 — DoctorSinus vs. J/3.pgn diff --git a/2013/tour_06/2013.04.11 — Zodd vs. snoopcat/1.pgn b/1st/tour_06/2013.04.11 — Zodd vs. snoopcat/1.pgn similarity index 100% rename from 2013/tour_06/2013.04.11 — Zodd vs. snoopcat/1.pgn rename to 1st/tour_06/2013.04.11 — Zodd vs. snoopcat/1.pgn diff --git a/2013/tour_06/2013.04.11 — Zodd vs. snoopcat/2.pgn b/1st/tour_06/2013.04.11 — Zodd vs. snoopcat/2.pgn similarity index 100% rename from 2013/tour_06/2013.04.11 — Zodd vs. snoopcat/2.pgn rename to 1st/tour_06/2013.04.11 — Zodd vs. snoopcat/2.pgn diff --git a/2013/tour_06/2013.04.11 — Zodd vs. snoopcat/3.pgn b/1st/tour_06/2013.04.11 — Zodd vs. snoopcat/3.pgn similarity index 100% rename from 2013/tour_06/2013.04.11 — Zodd vs. snoopcat/3.pgn rename to 1st/tour_06/2013.04.11 — Zodd vs. snoopcat/3.pgn diff --git a/1st/tour_06/tour_info b/1st/tour_06/tour_info new file mode 100644 index 0000000..68faf15 --- /dev/null +++ b/1st/tour_06/tour_info @@ -0,0 +1,17 @@ +Тур №6 +========== + +Время проведения: 25.03.2013 - 16.04.2013 + +21.04.2013 - alfix 3:0 Solace без игры +26.03.2013 - trex6 1:2 shell-script +21.04.2013 - UVV 0:3 Rosko без игры +21.04.2013 - XoFfiCEr 0:0 pylin без игры +21.04.2013 - William 3:0 redgremlin без игры +11.04.2013 - Zodd 2.5:0.5 snoopcat +21.04.2013 - doomgl 0:0 onetwothreezeronine без игры +21.04.2013 - dk- 0:3 Michkova без игры +21.04.2013 - DNA_Seq 0:0 LongLiveUbuntu без игры +31.03.2013 - DoctorSinus 0:3 J +24.04.2013 - Felagund 0:3 HunOL без игры +24.04.2013 - Genuine 0:0 Google-ch без игры diff --git a/2013/tour_07/2013.04.10 — Zodd vs. Michkova/1.pgn b/1st/tour_07/2013.04.10 — Zodd vs. Michkova/1.pgn similarity index 100% rename from 2013/tour_07/2013.04.10 — Zodd vs. Michkova/1.pgn rename to 1st/tour_07/2013.04.10 — Zodd vs. Michkova/1.pgn diff --git a/2013/tour_07/2013.04.10 — Zodd vs. Michkova/2.pgn b/1st/tour_07/2013.04.10 — Zodd vs. Michkova/2.pgn similarity index 100% rename from 2013/tour_07/2013.04.10 — Zodd vs. Michkova/2.pgn rename to 1st/tour_07/2013.04.10 — Zodd vs. Michkova/2.pgn diff --git a/2013/tour_07/2013.04.10 — Zodd vs. Michkova/3.pgn b/1st/tour_07/2013.04.10 — Zodd vs. Michkova/3.pgn similarity index 100% rename from 2013/tour_07/2013.04.10 — Zodd vs. Michkova/3.pgn rename to 1st/tour_07/2013.04.10 — Zodd vs. Michkova/3.pgn diff --git a/1st/tour_07/tour_info b/1st/tour_07/tour_info new file mode 100644 index 0000000..8ce5bf6 --- /dev/null +++ b/1st/tour_07/tour_info @@ -0,0 +1,8 @@ +Тур №7 +========== + +ТУР АННУЛИРОВАН + +Время проведения: 07.04.2013 - 16.04.2013 + +10.04.2013 - Zodd 0:3 Michkova не засчитан diff --git a/2013/tour_05/tour_info b/2013/tour_05/tour_info deleted file mode 100644 index 4e54280..0000000 --- a/2013/tour_05/tour_info +++ /dev/null @@ -1,17 +0,0 @@ -Тур №5 -========== - -Время проведения: 11.03.2013 - 16.04.2013 - -alfix играет против trex6 -UVV играет против Solace -24.03.2013 - XoFfiCEr 1.5:1.5 shell-script -William играет против Rosko -14.03.2013 - Zodd 3:0 pylin -doomgl играет против redgremlin -dk- играет против snoopcat -DNA_Seq играет против onetwothreezeronine -11.03.2013 - DoctorSinus 3:0 Michkova -Felagund играет против LongLiveUbuntu -11.03.2013 - Genuine 3:0 J -Google-ch играет против HunOL diff --git a/2013/tour_06/tour_info b/2013/tour_06/tour_info deleted file mode 100644 index 6893618..0000000 --- a/2013/tour_06/tour_info +++ /dev/null @@ -1,17 +0,0 @@ -Тур №6 -========== - -Время проведения: 25.03.2013 - 16.04.2013 - -alfix играет против Solace -26.03.2013 - trex6 1:2 shell-script -UVV играет против Rosko -XoFfiCEr играет против pylin -William играет против redgremlin -11.04.2013 - Zodd 2.5:0.5 snoopcat -doomgl играет против onetwothreezeronine -dk- играет против Michkova -DNA_Seq играет против LongLiveUbuntu -31.03.2013 - DoctorSinus 0:3 J -Felagund играет против HunOL -Genuine играет против Google-ch diff --git a/2013/tour_07/tour_info b/2013/tour_07/tour_info deleted file mode 100644 index c967b75..0000000 --- a/2013/tour_07/tour_info +++ /dev/null @@ -1,17 +0,0 @@ -Тур №7 -========== - -Время проведения: 07.04.2013 - 16.04.2013 - -alfix играет против shell-script -Solace играет против Rosko -trex6 играет против pylin -UVV играет против redgremlin -XoFfiCEr играет против snoopcat -William играет против onetwothreezeronine -10.04.2013 - Zodd 0:3 Michkova -doomgl играет против LongLiveUbuntu -dk- играет против J -DNA_Seq играет против HunOL -DoctorSinus играет против Google-ch -Felagund играет против Genuine diff --git a/2013/tournament_table b/2013/tournament_table deleted file mode 100644 index 41b8bd6..0000000 --- a/2013/tournament_table +++ /dev/null @@ -1,51 +0,0 @@ -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10| 11| 12| 13| 14| 15| 16| 17| 18| 19| 20| 21| 22| 23| 24| 25| 26| 27| 28| 29| 30| 31| 32| 33| 34| 35| 36| 37| 38| 39| 40| 41| 42| 43| 44| 45| 46| Po| Pl| -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| alfix |2.5| 1 | 2 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |2.5| 2 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| doomgl | 0 | 0 | 1 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0 | 7 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| dk- |1.5|0.5| 0 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |1.5| 4 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| DNA_Seq | 1 | 1 | 0 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | 5 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| DoctorSinus | 1 | 0 | 1 | 1 | 0 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | 5 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| Felagund | 3 | 0 | 0 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3 | 1 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| Genuine |2.5| 3 | 2 | 2 | 3 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |2.5| 2 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| Google-ch | 0 | 0 | 0 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0 | 7 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| HunOL | 1 | 0 | 2 |1.5| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | 5 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| J | 0 | 3 | 3 |1.5| 0 | 3 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0 | 7 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| LongLiveUbuntu | 0 | 0 | 0 | 1 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0 | 6 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| Michkova | 3 | 3 | 1 | 1 | 3 | | 3 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3 | 1 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| onetwothreezer… | 0 | 0 | 0 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0 | 7 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| snoopcat | 3 | 3 | 1 | 2 | |0.5| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3 | 1 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| redgremlin | 3 | 3 | 0 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3 | 1 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| pylin | 2 | 0 | 2 | 1 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2 | 3 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| Rosko | 3 | 3 | 3 | 1 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3 | 1 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| shell-script |0.5| 3 | 1 | 0 |1.5| 2 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |0.5| 6 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| Solace | 0 | 0 | 0 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0 | 7 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| trex6 | 2 |2.5| 0 |1.5| | 1 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2 | 3 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| UVV | 2 | 3 | 0 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2 | 3 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| XoFfiCEr |1.5| 0 | 1 |1.5|1.5| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |1.5| 4 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| William | 3 | 2 | 3 | 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3 | 1 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---# -| Zodd |0.5| 3 | 3 | 3 | 3 |2.5| 0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |0.5| 6 | -#-----------------#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#---#