nations.sh skript interpolating nations from team-stats
Posted: Sun May 03, 2020 6:52 pm
Hello everybody,
definitively not perfect, don't know if available elswhere already -- just had some fun spending some time,
trying to interpolate per country-statistics from team-stats-files via linux-shell-script .
The results looks interesting to me
May be, a usefull gimmick...
have fun....
This script tries to determain the country by team-name , sorts/extracts/lists/aggregates scores/wu's from the
matching teams separated by country.
Content of "nations.sh" (EDITED/UPDATED May 10th 2020 (2) csv-like output ):
I prepared a config to determain european countries:
content of "european-countries.conf" (EDITED/UPDATED May 7th 2020 -- improved matchlines by inserting several big cities per nation... providing more hits):
Example-output (EDITED/UPDATED May 7th 2020) :
definitively not perfect, don't know if available elswhere already -- just had some fun spending some time,
trying to interpolate per country-statistics from team-stats-files via linux-shell-script .
The results looks interesting to me
May be, a usefull gimmick...
have fun....
This script tries to determain the country by team-name , sorts/extracts/lists/aggregates scores/wu's from the
matching teams separated by country.
Content of "nations.sh" (EDITED/UPDATED May 10th 2020 (2) csv-like output ):
Code: Select all
#/bin/sh
# nations.sh
# ----------
# This (ugly quick-n-dirty hacked improper -- yeees -- I know that -- dont' need to tell me...
# suggestions to fix are welcome of couse...)
# shell-script interpolates nation-rankings by collecting team-names containing country-names
# (list of keywords) summarizing scores and wu's and build some (like)nation-rankings.
# As an example, all team-names containing the string "russia" (not case-sensitive) will be assigned
# and accumulated to the russian-top-ten. This is done by the well known filter-command "grep"
# by an unsharp match over the rows within the daily_team_summary.txt.
# you may want to tune the COUNTTRYCONF-file (see below) to define countries and matching
# synonymes. Hint: Maybe you want to craft your own country-file to filter for something totally
# different... didn't try, but should work also....
# By the way -- YES, I know.... would be better to refer to a separate database containing
# team-numbers and a proper registration like
# team ---> contenent/region ---> country instead of unsharp matches....
# just a quick-hack, I spent a litte bit of my time to have a look. It's not
# mentioned to be perfect.
# This script is just 4 testing and some extra-fun wile all the world is working TOGEHTER (important!)
# fighting diseases.
# Well done and many thanks to the FOH-Team (and the other projects also), the scientists working on the results
# as well as the particiants calculating all over the world! Great job I think!
# This script comes for testing-purposes without any warranty!! Free to use, free to be piecked
# up and enhanced, but use on your own risk in the matter of GPLv3 (and so on....).
# Prepare:
# You should have the binary-calculator "bc" installed on your linux-system.
# Using UFT-8 as charset while cut/paste country.conf and the viewing the results is
# a good idea I think (I didn't took advantage to special-characters until now).
# Maybe, inserting some uconv-foo in the script would help.
# Usage:
# create a diretory on your linux-box and put everything into this (a lot of ugly
# temp-files will be created there).
# CD into this directory (!),
# download the team-stats (see INFILE= below)
# put the "countries.txt" in here (see COUNTTRYCONF= below) and improve for your needs,
# do "chmod u+x nations.sh",
# check the predifined variables below, check/fix/beautify the ugly script...
# have a backup (always a good idea!),
# and if shure, then call ./nations.sh (I recommend "./nations.sh | less")
# have fun.
# To get rid of this, remove the whole directory previously created.
# Hint:
# Updated this script to produce some .csv-style output.
# You may watch the results as .csv (i.e using libreoffice-calc), then
# do ./nations.sh > xxx.csv ; libreoffice xxx.csv
# or do ./nations.sh and just open the particular (countryname).csv -tmp-file you would like to see.
# choose TAB as seperator, choose UTF8 as charset, choose "quoted-text-fields"-option.
# You may want to restrict width of the first/second columns to less characters manually and throw out
# some status-rows, you're not interested in.
# Gaps:
# We don't work on proper team-numbers/databses, doing a unsharp full-text match on
# the stats-file. Sorry -- in this case short or ambigoius keywords/substrings
# like "USA" "UK" are difficult to grep, leading to false positives/misses and so on.
# tricky... -----> | UK |-UK | -- inserting some blanks helps.
# Therfore team-descriptions were padded (surronded) by blanks.
# ---------------- Tuning/variables ------------------------
# Amount of max-particiants shown in every countries toplist
# can be set to a large number if you want to see all of them.
MAXLIST="100"
# File conaining names of countries and grep-matches
# One country per line, followed by maches separated by '|'
# (as shown, its very difficult to gain proper matches --- My multi-lingual
# expertize is very restricted -- sorry -- just picked keywords out of Wikipedia --
# in some cases its very difficult/hard -- needs impovements -- (i.e UK / "United Kingdom" ) --
# Personally, I'm wondering that the bunch of special-characters are ackowledged by grep -- foooo...
# so please help to improve/fix instead of hitting me... thanks...)
COUNTRYCONF="./european-countries.conf"
# The dataset we are working on -- to be downloaded first (!):
# i.e.: wget https://apps.foldingathome.org/daily_team_summary.txt
INFILE="./daily_team_summary.txt.1"
# ------------------ no more settings below this line ----------------------
# dont touch... enshure, that sort has a normal behaviour.
export LC_ALL="C"
# dont touch... The field-delimiter within the original-dataset is a single <TAB>.
# In cases if you just cut+paste this script (TAB's get broken). So we just generate it.
XDELIMITER=`echo " " | sed -e's/ /\t/'`
# empty tmp-file
> ranking.txt
# dont touch... We start using a newline as field-seperator for the shell.
IFS="
"
# we really don't like '"'-chars within a dataset. Therefore we radically remove '"'-chars. Sorry to very creative "team-name-designers".
#For some better matching-options (i.e. match on team-names ending on ".de" --> using "|\.de |" within country.conf) we put blanks around team-name-field
cat "$INFILE" | sed -e's/"//g' | sed -e"s/$XDELIMITER/ESCAPE_TAB_ESCAPE /; s/$XDELIMITER/ $XDELIMITER/; s/ESCAPE_TAB_ESCAPE/$XDELIMITER/" > in.tmp
# pick line by line from the countryfile (phrases behind "#" are ignored/cutted ) and do for every country....
for XROW in `cat "$COUNTRYCONF" | cut -f1 -d"#"`
do
# initialize calc-files
echo "x=0" > xxx.bc
echo "x=0" > yyy.bc
# empty next tmp-file
> xxx.tmp
# items in countryfile are separated by "|" -- get every single string within the row and grep for it within the dataset...
IFS="|"
for XNAME in `echo "$XROW"`
do
# get every line from dataset containing the string....
# filtering out some crap found within dataset...
cat "in.tmp" | grep -v -- "<a href=" | grep -i -- "$XNAME" >> xxx.tmp
done
# first item used as country-name
XCOUNTRY=`echo "$XROW" | cut -f1 -d"|"`
# insert header into country-tmp-file
echo "${XDELIMITER}"'"'"($XROW)"'"' > "$XCOUNTRY.csv"
echo '"'"########################################################"'"' >> "$XCOUNTRY.csv"
echo >> "$XCOUNTRY.csv"
# remove duplicates, count the final matches and normalize.... write result into country-tmp-file
XMATCHES=`cat xxx.tmp | sort | uniq | wc -l | cut -f1 -d"|" | bc`
echo '"'"Matches found:"'"'"${XDELIMITER}$XMATCHES" >> "$XCOUNTRY.csv"
# remove duplicates, grab all the scores from column 3 and add to calc-file, then engage bc on this... write result into country-tmp-file
cat xxx.tmp | sort | uniq | cut -f3 -d"${XDELIMITER}" | sed -e's/^/x=x+/' >> xxx.bc
echo "x" >> xxx.bc
XERG=`cat xxx.bc | bc`
echo '"'"Overall-score:"'"'"${XDELIMITER}$XERG" >> "$XCOUNTRY.csv"
# add the country+score for overall rank as well into separate tmp-file for overall-country-rank
echo "$XERG|$XCOUNTRY" >> ranking.txt
# remove duplicates, grab all the WU's from column 4 and add to calc-file, then engage bc on this... write result into country-tmp-file
cat xxx.tmp | sort | uniq | cut -f4 -d"${XDELIMITER}" | sed -e's/^/x=x+/' >> yyy.bc
echo "x" >> yyy.bc
XERG=`cat yyy.bc | bc`
echo '"'"Overall-WU:"'"'"${XDELIMITER}$XERG" >> "$XCOUNTRY.csv"
# write header for toplist into country-tmp-file
echo >> "$XCOUNTRY.csv"
echo '"'"Top${MAXLIST}:"'"' >> "$XCOUNTRY.csv"
echo '"'"team_rank"'"'"${XDELIMITER}"'"'"team_id_num"'"'"${XDELIMITER}"'"'"team_name"'"'"${XDELIMITER}"'"'"team_score"'"'"${XDELIMITER}"'"'"team_WU"'"' >> "$XCOUNTRY.csv"
# build/insert the country-based high-score-list....
# remove duplicates, order by the scores from column 3, insert the within-country-ranking, restrict to MAXLIST lines and write result into country-tmp-file
cat xxx.tmp | sort | uniq | sort -n -r --field-separator="${XDELIMITER}" --key="3,3" | cat -n | head -"$MAXLIST" >> "$XCOUNTRY.csv"
# reset IFS to newline...
IFS="
"
done
# first print out the overall header...
echo '"'"Rankings overall:"'"'
echo '"'"#####################"'"'
# generate the overall-country-score:
# Print header
echo '"'"rank"'"'"${XDELIMITER}"'"'"score"'"'"${XDELIMITER}"'"'"group"'"'
# sort country-rank-file, format, insert the overall-ranking, do some CSV-optimizations and print...
cat "ranking.txt" | sort -n -r --field-separator="|" --key="1,1" | cat -n | sed -e 's/|/'"${XDELIMITER}"'"/; s/$/"/g'
# pick every country from column 1 (ordered by rank) and do....
for XCOUNTRY in `cat "ranking.txt" | sort -n -r --field-separator="|" --key="1,1" | cut -f2 -d"|"`
do
# Doing some cleanup on the previously generated csv-files (i.e. removing previously inserted blanks, sorrounding text-fields with '"')
cat "$XCOUNTRY.csv" | sed -e 's/'"${XDELIMITER}"' /'"${XDELIMITER}"'"/g; s/ '"${XDELIMITER}"'/"'"${XDELIMITER}"'/g' > "$XCOUNTRY.tmp"
mv "$XCOUNTRY.tmp" "$XCOUNTRY.csv"
# get the previously generated tmp-file for this country and print the content/results
echo
echo
echo
echo -n '"'"$XCOUNTRY"'"'
cat "$XCOUNTRY.csv"
done
# thats it.
exit
I prepared a config to determain european countries:
content of "european-countries.conf" (EDITED/UPDATED May 7th 2020 -- improved matchlines by inserting several big cities per nation... providing more hits):
Code: Select all
Albania|Republic_of_Albania|Republic of Albania|albanian|Republika e Shqipërisë|Tirana|Durrës|Vlorë|Elbasan|Shkodër|Kamëz| Fier |Korçë
Andorra|Principat_de_les_Valls_d'Andorra|Principat de les Valls d'Andorra|Andorra la Vella|Escaldes-Engordany|Sant Julià de Lòria|Encamp|La Massana|Santa Coloma|Ordino|Canillo|El Pas de la Casa|Arinsal
Armenia|Հանրապետություն|armenian|Yerevan|Gyumri|Vanadzor|Vagharshapat|Hrazdan|Abovyan|Kapan|Ararat|Armavir|Step'anavan|Gavarr|Artashat
Austria|Oestereich|Östereich|östereich| -AT |Wien|Vienna|Graz|Linz|Salzburg|Innsbruck|Klagenfurt|Villach| Wels |Sankt Pölten|Dornbirn
Azerbaijan|Azərbaycan Respublikas|Azərbaycan_Respublikası|Azərbaycan| Baku |Sumqayit| Ganja |Lankaran|Mingachevir|Nakhchivan|Shirvan|Shaki|Yevlakh|Khankendi
Belarus|Republic of Belarus|Republic_of_Belarus|Рэспубліка Беларусь|Беларусь|Республика Беларусь|Minsk|Barysaw|Salihorsk|Maladzyechna|Zhodzina|Slutsk|Vileyka|Dzyarzhynsk|Borisov|Soligorsk|Molodechno|Zhodino|Slutsk|Dzerzhinsk|Mar’ina Gorka
Belgium|Koninkrijk België|Royaume de Belgique|Belgique|Koninkrijk_België|België|Royaume_de_Belgique|Belgien|-BE |belgish|belgian|Brussels|Antwerp|Ghent|Charleroi|Liège|Bruges|Namur|Leuven| Mons |Deurne|Aalst|Mechelen
Bosnia and Herzegovina|Bosnia_and_Herzegovina|Bosnia_Herzegovina|Bosnia Herzegovina|Bosnia|Bosna|Herzegovina|Bosna_i_Hercegovina|Herzegovina|Bosnia|Sarajevo|Banja Luka|Zenica|Tuzla|Mostar|Bihać|Bugojno|Brčko|Bijeljina|Prijedor|Trebinje|Travnik
Bulgaria|Republika_Balgariya|Republika Balgariya|Balgariya|Sofia|Plovdiv|Varna|Burgas|Rousse|Stara Zagora|Pleven|Sliven|Dobrich|Shumen|Pernik|Yambol
Croatia|Republika Hrvatska|Republika_Hrvatska|Hrvatska|Zagreb|Rijeka|Osijek|Zadar|Slavonski Brod| Pula |Sesvete|Karlovac|Varaždin|Stenjevec|Šibenik
Cyprus|Republic of Cyprus|Republic_of_Cyprus|cyprian|Nicosia|Limassol|Larnaca|Stróvolos|Famagusta|Paphos|Kyrenia|Protaras|Pergamos|Mórfou|Aradhippou|Paralímni
Denmark|Danmark|Kongeriget Danmark|Kongeriget_Danmark|Dansk|-DK |Copenhagen|Aarhus|Odense|Aalborg|Frederiksberg|Esbjerg|Horsens|Randers|Kolding|Vejle|Hvidovre|Greve
Estonia|Eesti|Vabariik|Eesti|estonish|Tallinn|Tartu|Narva|Kohtla-Järve|Pärnu|Viljandi|Rakvere|Sillamäe|Maardu|Kuressaare|Võru|Valga
Finland|Suomi|Suomen tasavalta|Suomen_tasavalta|Suomen|finnish|Helsinki|Espoo|Tampere|Vantaa|Turku|Oulu|Lahti|Kuopio|Jyvaskyla|Pori|Lappeenranta|Vaasa
France|République française|République_française|française|francaise|francaise|Paris|Marseille|Lyon|Toulouse|Nantes|Strasbourg|Montpellier|Bordeaux|Lille|Rennes|Reims
Georgia|georgish|Tbilisi|Kutaisi|Batumi|Sukhumi|Zugdidi|Rustavi|P’ot’i| Gori |Ts'khinvali|Samtredia|Khashuri|Senaki
Germany|Deutschland|Bundesrepublik Deutschland| BRD |-DE | GER |-GER |_GER |Bundesrepublik_Deutschland|german|deutsch|Köln|cologn|Berlin|württemberg|brandenburg| hessen |mecklenburg|niedersachsen|nordhrein|westfalen|franken |rheinland|saarland|sachsen|schleswig|thüringen|bayern|bayrisch|bavaria|hamburg|leipzig|duisburg|bochum|münch|kiel|nürnberg|düsseldorf|rhein|stuttgart|flensburg|dortmund|bremen|frankfurt|dresden|hannover|nürnberg|bielefeldmünster|karlsruhe|mannheim|wuppertal|augsburg|wiesbaden|gelsenkirchen|mönchengladbach|braunschweig|chemnitz|krefeld|freiburg|lübeck|oberhausen|erfurt|rostock
Greece|Ellinikí|Ελληνική Δημοκρατία|Ελληνική_Δημοκρατία|Ελληνική|greek|Athens|Thessaloniki|Pátrai|Piraeus|Larissa|Peristeri|Heraklion|Kallithea|Acharnes|Kalamaria|Nikaia|Glyfada
Hungary|Magyarország|Magyaror|hungari|Budapest|Debrecen|Miskolc|Szeged|Pécs|Győr|Nyíregyháza|Kecskemét|Székesfehérvár|Szombathely|Paradsasvar|Szolnok
Iceland|Ísland|Reykjavik|Kopavogur|Hafnarfjordur|Akureyri|Garðabaer|Mosfellsbaer|Akranes|Selfoss|Seltjarnarnes|Vestmannaeyjar|Grindavik|Isafjordur
Ireland|Éire|irish|-irl| irl |_irl|Dublin|Cork|Limerick|Galway|Tallaght|Waterford|Drogheda|Dundalk| Bray |Dún Laoghaire|Navan |
Italy|Italia|Repubblica Italiana|Repubblica_Italiana|Italiana| Rome |Milan|Naples| Turin |Palermo|Genoa|Bologna|Florence|Catania| Bari |Messina
Kazakhstan|Qazaqstan Respýblıkasy|Qazaqstan_Respýblıkasy|Qazaqstan|Kazakhs|Kazakh|Almaty|Karaganda|Shymkent|Taraz|Nur-Sultan|Pavlodar|Ust-Kamenogorsk|Kyzylorda|Semey|Aktobe|Kostanay|Petropavl
Latvia|Latvijas Republika|Latvijas_Republika|Latvija| Riga |Daugavpils|Liepāja|Jelgava|Jūrmala|Ventspils|Rēzekne|Jēkabpils|Valmiera|Tukums|Cēsis
Liechtenstein|Fürstentum Liechtenstein|Fürstentum_Liechtenstein|Schaan|Vaduz|Triesen|Balzers| Eschen |Triesenberg|Ruggell|Gamprin|Schellenberg|Malbun
Lithuania|Lietuvos Respublika|Lietuvos_Respublika|Lietuvos|Vilnius|Kaunas|Klaipėda|Šiauliai|Panevezys|Alytus|Marijampolė|Mažeikiai|Jonava|Utena|Kėdainiai|Telšiai
Luxembourg|Groussherzogtum Lëtzebuerg|Groussherzogtum_Lëtzebuerg|Lëtzebuerg|Esch-sur-Alzette|Dudelange|Schifflange|Bettembourg|Pétange|Ettelbruck|Diekirch|Bertrange|Belvaux|Differdange
Malta|Repubblika ta' Malta|Repubblika_ta'_Malta|Birkirkara|Qormi|Mosta|Żabbar|San Pawl il-Baħar|Fgura|Żejtun|Sliema|Haz-Zebbug|Ħamrun|Naxxar
Moldova|Republica Moldova|Republica_Moldova|Chisinau|Tiraspol|Bălţi|Tighina|Rîbniţa|Cahul |Ungheni|Soroca|Orhei|Dubăsari|Comrat|Edineţ
Monaco|Principat de Mónegue|Principat_de_Mónegue|Mónegue|Principatu de Mùnegu|Principatu_de_Mùnegu|Mùnegu
Montenegro|Crna Gora|Crna_Gora|montenegrian|Podgorica|Nikšić|Herceg Novi|Pljevlja|Budva|Bijelo Polje|Cetinje|Berane|Ulcinj|Rožaje| Tivat
Netherlands|Netherland|Nederland|Amsterdam|Rotterdam|The Hague|Utrecht|Eindhoven|Tilburg|Groningen|Almere Stad| Breda |Nijmegen|Enschede|Haarlem
North_Macedonia|Macedonia|Republic of North Macedonia|Republic_of_North_Macedonia|Republika e Maqedonisë së Veriut|Republika_e_Maqedonisë_së_Veriut|Maqedonisë|macedonish|Skopje|Bitola|Kumanovo|Prilep|Tetovo| Čair |Kisela Voda| Veles |Ohrid|Gostivar|Shtip|Strumica
Norway|Kongerike Norge|Kongerike_Norge|Norge|Kongeriket Noreg|Kongeriket_Noreg|Noreg|Norgga|gonagasriika|Norgga|norvegian|Oslo|Bergen|Trondheim|Stavanger|Drammen|Fredrikstad|Kristiansand|Sandnes|Asker|Tromsø|Sarpsborg|Skien
Poland|Rzeczpospolita Polska|Rzeczpospolita_Polska|Polska|polish|polsk|Warsaw|Łódź|Krakow|Wrocław|Poznan|Gdańsk|Szczecin|Bydgoszcz|Lublin|Katowice|Bialystok|Gdynia
Portugal|República Portuguesa|República_Portuguesa|Portuguesa|portuge|Lisbon|Porto |Amadora|Braga|Setúbal|Coimbra|Queluz|Funchal|Cacém|Vila Nova de Gaia|Algueirão|Loures
Romania|România|Bucharest|Iasi|Cluj-Napoca|Timișoara|Craiova|Constanța|Galati|Brasov|Ploieşti|Braila|Oradea|Bacau
Russia|Rossiyskaya FederatsiyaRossiyskaya_Federatsiya|Rossiyskaya|Российская Федерация|Российская|Moscow|Sibiria|Saint Petersburg|Novosibirsk|Yekaterinburg|Ekaterinburg|Novgorod|Samara|Omsk|Kazan|Rostov-on-Don|Chelyabinsk|Volgograd
San_Marino|San Marino|Serravalle|Borgo Maggiore|City of San Marino|Domagnano|Fiorentino|Acquaviva|Faetano|Falciano|Chiesanuova|Montegiardino|Torraccia
Serbia|Republika Srbija|Republika_Srbija|Srbija|serbish|Belgrade|Niš|Novi Sad|Zemun|Kragujevac|Čačak|Subotica|Leskovac|Novi Pazar|Kraljevo|Zrenjanin|Pančevo
Slovakia|Slovenská republika|Slovenská_republika|Slovenská|Bratislava|Košice|Prešov|Nitra|Žilina|Banská Bystrica|Trnava|Trenčín|Poprad|Prievidza|Zvolen
Slovenia|Republika Slovenija|Republika_Slovenija|Slovenija|Ljubljana|Maribor|Celje|Kranj|Velenje|Koper|Novo Mesto|Ptuj|Trbovlje|Kamnik|Jesenice|Nova Gorica
Spain|Espana|España|Reino de España|Reino_de_España|Madrid|Barcelona|Valencia|Catalonia|Seville|Zaragoza|Málaga|Murcia| Palma |Canary|Canaria|Bilbao|Alicante|Cordova
Sweden|Svenska|Konungariket Sverige|Konungariket_Sverige|Sverige|Svensk|Stockholm|Gothenburg|Malmo|Uppsala|Sollentuna|Västerås|Örebro|Linköping|Helsingborg|Jönköping|Norrköping|Huddinge
Switzerland|Schweiz|Suisse|Svizzera|Zurich|Geneva|Basel| Bern |Lausanne|Winterthur|St. Gallen|Lugano|Lucerne|Biel/Bienne| Thun |Köniz
Turkey|Türkiye Cumhuriyeti|Türkiye_Cumhuriyeti|Türkiye|Turks|Istanbul|Ankara|Izmir|Bursa|Adana|Gaziantep|Konya|Çankaya|Antalya|Bağcılar|Diyarbakır|Kayseri
Ukraine|Ukrayina|ukrainian|Kyiv|Kharkiv|Dnipro|Donetsk|Odessa|Zaporizhia|Lviv|Kryvyi Rih|Mykolayiv|Mariupol|Luhansk|Sebastopol
United Kingdom|United_Kingdom|United-Kingdom|England|Britannia|britain|british|United Kingdom| UK |-UK |_UK |english|wales|Cymru|welsh|Scotland| Alba |scottish|scotchq|london|liverpool|manchester|Birmingham|Nottingham|Sheffield|Bristol|Glasgow|Leicester|Edinburgh|Leeds|Cardiff
Vatican|Stato della Città del Vaticano|Stato_della_Città_del_Vaticano|Vaticano
Europe|European union
Example-output (EDITED/UPDATED May 7th 2020) :
Code: Select all
Rankings overall:
=========================================================================================
1 119280343434 Russia
2 19421766825 Germany
3 7311582865 Poland
4 7030837281 Ukraine
5 6057702163 Ireland
6 5909873464 Belarus
7 5126765210 Portugal
8 4446169177 Lithuania
9 3670989670 Greece
10 3440577740 United Kingdom
11 2327553852 Romania
12 2302299663 Estonia
13 1874811792 Norway
14 1767452660 Hungary
15 1742868033 Italy
16 1423649732 Sweden
17 1351873369 Finland
18 1240663808 Austria
19 1188693629 Turkey
20 1058848442 France
21 974270061 Belgium
22 972784900 Denmark
23 842859678 Slovakia
24 573188888 Latvia
25 559287405 Georgia
26 436150177 Bulgaria
27 361824805 Spain
28 288995410 Switzerland
29 210489261 Netherlands
30 150267684 Europe
31 92235767 Croatia
32 88563107 Serbia
33 52131484 Luxembourg
34 44307944 Moldova
35 35731802 Malta
36 23963544 Slovenia
37 19477038 Kazakhstan
38 10229995 Bosnia and Herzegovina
39 9236112 Iceland
40 3248727 North_Macedonia
41 2366593 Cyprus
42 674492 Armenia
43 354544 Andorra
44 239876 Azerbaijan
45 138551 San_Marino
46 46245 Monaco
47 2783 Liechtenstein
48 1097 Albania
49 0 Vatican
50 0 Montenegro
Russia (Russia|Rossiyskaya FederatsiyaRossiyskaya_Federatsiya|Rossiyskaya|Российская Федерация|Российская|Moscow|Sibiria|Saint Petersburg|Novosibirsk|Yekaterinburg|Ekater
inburg|Novgorod|Samara|Omsk|Kazan|Rostov-on-Don|Chelyabinsk|Volgograd)
============================================================================
Matches found: 93
Overall-score: 119280343434
Overall-WU: 15364724
Top20:
team_rank team_id_num team_name team_score team_WU
-----------------------------------------------------------------------------------------------
1 47191 TSC! Russia 117667120232 13671326
2 279 Russia 1505608798 1589955
3 224471 Samara2013 27499177 10413
4 244174 T! Rheno-Borussia 19199319 985
5 243772 Russia_228 11377641 471
6 126056 Russia_Nsk 9147462 26916
7 85086 G_A from Russia 7657987 18800
8 207109 Omsk City, Russia 4897814 756
9 221211 N. Novgorod team 4026171 630
10 10295 Russia_Moscow 3040867 2151
11 90957 Atomsk 2917353 6755
12 163423 Russian Bears 2854298 3918
13 63960 Russian Ravioli 2842033 9154
14 205440 Rosetta.Russia 2194293 688
15 122296 Russia Team 1848745 474
16 256285 3LO im. S.Zeromskiego Bielsko-Biala 953888 112
17 258124 Novosibirsk State University - NSU 948324 191
18 105855 The Dark Side Of Tomsk 922929 9341
19 213374 Garant Russia 895536 2366
20 242249 Russian NGO 792052 155
Germany (Germany|Deutschland|Bundesrepublik Deutschland| BRD |-DE | GER |-GER |_GER |Bundesrepublik_Deutschland|german|deutsch|Köln|cologn|Berlin|württ
emberg|brandenburg| hessen |mecklenburg|niedersachsen|nordhrein|westfalen|franken |rheinland|saarland|sachsen|schleswig|thüringen|bayern|bayrisch|bavaria|hamburg|leipzig|duisburg|bochum|münch|kiel|nürnberg|düsseldorf|rhein|stuttgart|flensburg|dortmund|bremen|frankfurt|dresden|hannover|nürnberg|bielefeldmünster|karlsruhe|mannheim|wuppertal|augsburg|wiesbaden|gelsenkirchen|mönchengladbach|braunschweig|chemnitz|krefeld|freiburg|lübeck|oberhausen|erfurt|rostock)
============================================================================
Matches found: 574
Overall-score: 19421766825
Overall-WU: 2864228
Top20:
team_rank team_id_num team_name team_score team_WU
-----------------------------------------------------------------------------------------------
1 3 Rechenkraft.net - Germany 12955195897 1110036
2 43829 SETI.Germany 1225402589 558121
3 229160 Solarmobil_Karlsruhe_KIT 1010894980 296887
4 226201 SELK_Bochum 409386137 18535
5 127907 Leibniz-Uni-Hannover 296165906 2703
6 45876 Germany 238019770 29480
7 45700 Berlin-Germany 226072243 60153
8 263603 University_of_Augsburg 214051871 28341
9 198185 Piratenpartei Deutschland 210866586 8659
10 150621 Thinkpad-Forum Germany 187790906 19415
11 244687 Fachschaft Physik - Uni Freiburg 173241195 30372
12 241425 Germany against Corona 169050715 10174
13 45456 German Hardware Network 162635323 93595
14 233349 Oberlin College 112094366 7082
15 262535 FH-Erfurt_FRB 89091728 3893
16 247310 Taverne Zum Tanzenden Einhorn Hamburg 80746093 4603
17 230903 Universität Stuttgart 74751879 6423
18 259407 DHBW Engineering Stuttgart e.V. 74310477 3800
19 239280 Enlightened Berlin 73363280 4227
20 57266 Official German Playstation Community Team 62562405 101252
Poland (Poland|Rzeczpospolita Polska|Rzeczpospolita_Polska|Polska|polish|polsk|Warsaw|Łódź|Krakow|Wrocław|Poznan|Gdańsk|Szczecin|Bydgoszcz|Lublin|Katowice|Bialystok|Gdynia)
============================================================================
Matches found: 97
Overall-score: 7311582865
Overall-WU: 2686743
Top20:
team_rank team_id_num team_name team_score team_WU
-----------------------------------------------------------------------------------------------
1 276 Poland 5780382736 2548505
2 250728 FoldingAtHome Poland 666610995 27027
3 230262 PolitechnikaSlaska-AEI-Gliwice-Poland 438573862 17652
4 254123 Poznan University of Technology 258769680 35890
5 42182 Polish Tracker 31074283 12477
6 89253 Boinc@Poland 28554070 4103
7 262892 Polska vs COVID-19 22518315 2582
8 253262 (THE POLAND/DEUTSCHE BAHN) ALLIANCE 18896567 577
9 40320 Poland Gliwice 14275187 1074
10 236435 COVID@Poland 7525186 1576
11 263011 NOVOMATIC Technologies Poland 7090972 2033
12 241137 ZYRZYN COUNTY TEAM - POLAND 4360859 944
13 245541 Enlightened Poland 4168186 1083
14 249878 Polish Route 4069094 252
15 238383 SysOps / DevOps Polska: Po godzinach 3929954 840
16 239055 Potega Krakowskiego Czerepu 3246571 491
17 41573 Poland_Warsaw 3227771 847
18 911 CKU_Poland 1899161 5732
19 165905 Folding@Katowice 1695125 1646
20 84630 Lowicz Poland 1593555 3773
Ukraine (Ukraine|Ukrayina|ukrainian|Kyiv|Kharkiv|Dnipro|Donetsk|Odessa|Zaporizhia|Lviv|Kryvyi Rih|Mykolayiv|Mariupol|Luhansk|Sebastopol)
============================================================================
Matches found: 25
Overall-score: 7030837281
Overall-WU: 3217132
Top20:
team_rank team_id_num team_name team_score team_WU
-----------------------------------------------------------------------------------------------
1 2164 Ukraine 6993046187 3189971
2 53047 Odessa_UA 21141193 1704
3 109915 Ukraine-Canada 6135897 12107
4 228168 Ukraine Kiev 5050846 439
5 153624 Protozoa_Ukraine 2186047 3677
6 40251 Ukraine_Kharkov 834418 2249
7 163338 Kyiv Torchok Science lab 774756 1743
8 261335 Kyiv Polytech 452213 202
9 229742 Team Ukraine 310180 11
10 12851 Donetsk-Ukraine 259782 2173
11 52378 Odessa Bulldogs 199396 1264
12 53412 Kharkiv 118383 646
13 256985 Posco International Ukraine 85158 9
14 165868 Mariupol 78120 140
15 180490 Ukraine BuckTeam 64675 125
16 76264 Ukraine_Chernihiv 51281 267
17 290 Ukraine RC5 13726 265
18 142584 alex odessa 10621 38
19 226787 Odessa.Folding 9519 19
20 172617 Ukraine_Lviv 7547 18
Ireland (Ireland|Éire|irish|-irl| irl |_irl|Dublin|Cork|Limerick|Galway|Tallaght|Waterford|Drogheda|Dundalk| Bray |Dún Laoghaire|Navan |)
============================================================================
Matches found: 72
Overall-score: 6057702163
Overall-WU: 223931
Top20:
team_rank team_id_num team_name team_score team_WU
-----------------------------------------------------------------------------------------------
1 60443 Ireland 5914289594 176176
2 168037 dublin _vikings 32870868 1080
3 231043 Irish_Folding 29241646 592
4 196661 Energy & Design Lab (Dublin City University) 21187496 5107
5 257898 Waterford Institute of Technology 18785452 1044
6 245834 Anti_Virus_IRL 12204353 1101
7 224516 West Coast Folders IRL 7074025 1890
8 51576 irishbf2.net 5132827 16821
9 263127 Irish Radio Amateurs 3145370 792
10 253799 Team_Ireland 2375340 188
11 235158 CompSoc NUI Galway 1624975 1248
12 253161 aireland 1016874 1133
13 52435 Remote Change Management @ EMC Cork 965226 4611
14 263238 Irish Wedding Videographers 936641 144
15 227677 DublinerSF 916208 1271
16 60290 irishpride 618989 151
17 252562 Dublin2020 577870 595
18 116767 Trinity College Dublin 547489 676
19 40917 IrelandFolderama 470191 2633
20 163067 The Cork Clangers 456694 439
Belarus (Belarus|Republic of Belarus|Republic_of_Belarus|Рэспубліка Беларусь|Беларусь|Республика Беларусь|Minsk|Barysaw|Salihorsk|Maladzyechna|Zhodzina|Slutsk|Vileyka|Dzyarzhynsk|Borisov|Soligorsk|Molodechno|Zhodino|Slutsk|Dzerzhinsk|Mar’ina Gorka)
============================================================================
Matches found: 12
Overall-score: 5909873464
Overall-WU: 633849
Top20:
team_rank team_id_num team_name team_score team_WU
-----------------------------------------------------------------------------------------------
1 11897 Folding Belarus (FBY) 5869356586 590756
2 48709 Minsk Team 39403196 39634
3 773 Belarus 437738 3054
4 263667 Minsk Hackerspace 334824 205
5 225985 Belarus Team 286105 73
6 228985 Belarus Freedom 23629 39
7 226644 Minsk 16673 17
8 48733 Republic of Belarus 9197 39
9 49511 Belarus.Grodno.Team 5025 21
10 77423 Team Kiminski 275 7
11 78739 BOINC@Belarus 206 1
12 41099 minsk lamers 10 3
...AND SO ON.....