Last active
September 10, 2015 15:22
-
-
Save MoritzStefaner/f3e693620a9e2c7da8f5 to your computer and use it in GitHub Desktop.
(Roughly) gender guessing ars submissions. This is based on the first names of ars electronica submissions up to 2008. Gender guess through https://pypi.python.org/pypi/gender-detector/0.0.4. Results: ({'male': 14847, 'unknown': 10772, 'female': 5281}) estimated 26.2% women
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# requires https://pypi.python.org/pypi/gender-detector/0.0.4 | |
from gender_detector import GenderDetector | |
from collections import defaultdict, Counter | |
f = open("firstnames.txt", "r") | |
detector = GenderDetector('us') | |
count = 0 | |
counts = Counter() | |
nameCounts = defaultdict(Counter) | |
for l in f: | |
count += 1 | |
l = l.replace("\n", "") | |
try: | |
g = detector.guess(l) | |
counts.update([g]) | |
nameCounts[g].update([l]) | |
except: | |
counts.update(["unknown"]) | |
if count % 100 == 0: | |
print ". . . " | |
print counts | |
print "estimated %.1f%% women" % (100.0 * counts["female"]/(counts["female"]+counts["male"])) | |
print nameCounts["female"].most_common(10) | |
print nameCounts["male"].most_common(10) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- | |
- | |
- | |
- | |
Simon | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
Ralf R. | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
Kees | |
- | |
John | |
Antoni | |
Paul | |
Edgard F. | |
Adriano | |
Adriano | |
Adriano | |
Adriano | |
Adriano | |
Adriano | |
Adriano | |
Jeremy | |
Paul J. | |
Paul J. | |
Paul J. | |
- | |
Kyoko | |
Maresuke | |
Sesshu | |
Yoshiyuki | |
Yoshiyuki | |
Yoshiyuki | |
Yoshiyuki | |
Yoshiyuki | |
Yuichi | |
Eryck | |
Robert | |
Adam | |
Lucas | |
Virgile | |
Manuel | |
Manuel | |
Manuel | |
Manuel | |
David | |
Douglas | |
Douglas | |
Verena | |
Christelle | |
Yoshiyuki | |
Geralyn | |
Zeina | |
Clara | |
Reinhard | |
Friedrich | |
Simon | |
Simon | |
Jef | |
Peter | |
Mahyar | |
- | |
Birigt | |
Irad | |
Ralph | |
Ralph | |
Annie | |
Annie | |
Alan | |
Snjezana | |
Seth | |
Dan | |
Frederick | |
Frederick | |
Gabriel | |
Ivän | |
Iván | |
Dmitrij | |
Florian | |
- | |
Mileece | |
- | |
Ismail | |
Amh | |
- | |
- | |
- | |
Jean-Louis | |
Massimiliano | |
Victor | |
Victor | |
Victor | |
Victor | |
Victor | |
Victor | |
Edgar | |
Gabriel | |
Gabriel | |
Debela | |
Marcel | |
Marcel | |
Marcel | |
Marcel | |
Marcel | |
Marcel | |
Romy | |
Romy | |
Romy | |
Romy | |
Michl | |
Stefan | |
Deanne | |
Deanne | |
Deanne | |
Deanne | |
Deanne | |
- | |
Kamil | |
Samil | |
Shane | |
Michael | |
Andrea | |
Philipp | |
Philipp | |
- | |
Frédéric | |
- | |
- | |
Tcheupel | |
- | |
- | |
- | |
Tomomi | |
Gregor | |
Lukas | |
Kálmán | |
Stephen | |
Stephen | |
Titi | |
John | |
John | |
Jan | |
J.Walt | |
J.Walt | |
Ondrej | |
Ondrej | |
Ondrej | |
Sarah | |
Ashley | |
Matt | |
R. Brent | |
Trish | |
Trish | |
Przemyslaw | |
Marc | |
Victor | |
- | |
Alexandra | |
Fernando | |
Emlyn | |
Emlyn | |
Rita | |
Saleh | |
Albrecht | |
Carsten | |
Rudow Vivian | |
Stephan | |
Menno | |
Menno | |
Elodie | |
Nicolaus-Onnik | |
Mathew | |
Mathew | |
Mathew | |
Mathew | |
Mathew | |
Mathew | |
Mathew | |
Mathew | |
Mathew | |
Dianne | |
Bernhard | |
Gunter | |
Gunter | |
- | |
Barbara | |
Núnez | |
Michelle | |
Paul | |
- | |
Siripong | |
Siripong | |
Reinhold | |
Reinhold | |
Reinhold | |
Reinhold | |
- | |
David | |
Tania | |
- | |
- | |
Michael | |
Peter | |
Peter | |
Fabian | |
- | |
Lisa Maria | |
- | |
- | |
Orram | |
Stefan | |
Christina | |
- | |
Hermann | |
Martin | |
Jarbas | |
Jarbas | |
Jarbas | |
Jarbas | |
Daniel | |
- | |
- | |
Bipin | |
Barbara | |
Wilfried | |
Wilfried | |
Wilfried | |
Wilfried | |
Wilfried | |
Wilfried | |
Wilfried | |
Gregor | |
- | |
Gorka | |
Celso | |
Celso | |
Sabrina | |
Julieta | |
Julieta | |
Josu | |
Roberto | |
Roberto | |
J. | |
Jim | |
- | |
- | |
- | |
- | |
Linda | |
Tarun | |
Fairul Hilmi B | |
Soo Yeun | |
Soo Yeun | |
Jonghyeck | |
Ji-min | |
Mu'alem | |
Ingrid | |
Ralph | |
Lisa | |
Christian | |
Lisa | |
Melanie | |
Patrick | |
Marco | |
Michael | |
Flávia | |
Markus F. P. | |
Andreas | |
Andreas | |
Alexander | |
Annette | |
Astrid | |
Christian | |
Christoph | |
Elisabeth | |
Manuela | |
Stefanie | |
Stephanie | |
Thomas | |
Ulrike | |
Ichiro | |
James Whitton | |
R. | |
Marina | |
Lukas | |
Marc | |
Marc | |
Marc | |
Marc | |
Marc | |
- | |
Pekka | |
- | |
Leo | |
Yacine | |
Yacine | |
Martha | |
Martha | |
Martha | |
Martha | |
Martha | |
Marcello | |
Samuel | |
Akinwale Olaitan | |
Raquel | |
Sandor | |
Kyo | |
- | |
Mitsuko | |
Yae | |
Masayuki | |
Masayuki | |
Masayuki | |
Masayuki | |
Masayuki | |
Masayuki | |
Masayuki | |
Masayuki | |
- | |
Hitoshi | |
Metthew | |
Sergey | |
- | |
- | |
Yamasaki | |
Nakatani | |
Mitchell | |
Mitchell | |
Yuko | |
Ryosuke | |
Tolga | |
- | |
- | |
- | |
- | |
- | |
Akuvido | |
- | |
Su | |
Samaa | |
Sama'a | |
Vincenzo | |
Bittier | |
Escalle | |
Samuli | |
Olivier | |
Olivier | |
Francois | |
Robert Pandore | |
Kia Romeo | |
Timothy | |
Simon | |
Simon | |
Marco | |
Saul | |
Thomas | |
Matteo | |
Evru | |
Stefan | |
Regina | |
Bertold | |
Mathhias | |
William | |
William | |
Daniel | |
Paulo | |
Niklas | |
- | |
Wolfram | |
Ceglia | |
Alexander | |
Franc | |
Harald | |
Amy | |
Amy | |
Amy | |
Amy | |
Amy | |
Amy | |
Amy | |
Anthony | |
Kathryn | |
Pat | |
R. | |
- | |
Liana | |
Liana | |
Liana | |
Liana | |
Liana | |
Babis | |
Babis | |
Charalampos | |
Vassilios | |
Eric | |
Marco | |
Ronald | |
- | |
Montxo | |
Montxo | |
Ricardo | |
Mohammed | |
Jesús | |
Klara | |
Florence | |
Franz | |
Franz | |
Franz | |
Thierry | |
- | |
Hanna | |
Mark | |
Emmanuel | |
Hugues | |
John | |
Rebecca | |
Rebecca | |
Rebecca | |
Rebecca | |
Rebecca | |
Joe | |
Mark | |
Monika | |
Karl | |
Martin | |
Martin | |
- | |
Kristi | |
Kristik | |
Kristi | |
Kristi | |
Kristi | |
Kristi A. | |
Kristi A. | |
Alo | |
Alo | |
Alo | |
Yann | |
David | |
Martin | |
Flavia | |
Flavia | |
Flavia | |
Flavia | |
Flavia | |
Flavia | |
Ingemar | |
Miguel | |
Eyvind | |
Eyvind | |
Eyvind | |
Max | |
Max | |
Max | |
Oscar Rodrigo | |
Luis | |
Antonio | |
Diana Mercedes | |
Edith | |
Marcos | |
- | |
Sabine | |
Brett | |
Roger | |
Roger | |
Roger | |
Michael | |
Birgitte | |
Thilo | |
Thilo | |
Thilo | |
Thilo | |
Doron | |
Virginie | |
Ekkehard | |
Carina | |
Hans | |
Yariv | |
Yariv | |
Alternet | |
Ernie | |
Florian | |
Roland | |
Yasin | |
Anne-Katrin | |
Jakob | |
Jelena | |
Antonio | |
Antonio | |
Antonio | |
Antonio | |
Javier | |
Javier | |
Javier | |
Javier | |
Diego | |
Mauricio | |
Tomas | |
Bill | |
Bill | |
Bill | |
Gilberto | |
Gilberto | |
Adeel | |
Faraz | |
- | |
Mohamed Hassan Youssef | |
Maryanne | |
Maryanne | |
Maryanne | |
Mattia | |
Alessandro | |
Jonathan | |
Michico | |
Efi | |
Eskandari | |
Eskandari | |
Sirikit | |
Pedro | |
Toshitaka | |
Toshitaka | |
Toshitaka | |
Toshitaka | |
Amichi | |
Rui | |
Angelo | |
Angelo | |
Oren | |
Oren | |
Oren | |
Oren | |
- | |
- | |
Matthias | |
Yuriko | |
Yuriko | |
Yuriko | |
Yuriko | |
Alexis | |
- | |
Mark | |
Mark | |
Mark | |
Mark | |
Christian | |
Heinz | |
Karin | |
Dominik | |
Dzamal | |
Irina | |
Elizabeth | |
Charles | |
Itae | |
Itae | |
Itae | |
Itae | |
- | |
Susan | |
Susan | |
Michael | |
Katharina | |
Andreas | |
Andreas | |
Andreas | |
Andreas | |
Andreas | |
Christoph | |
Michael | |
Ralph | |
Ralph | |
Martina | |
Joao | |
Michaela | |
- | |
Martin | |
Dominik | |
Dominik | |
Stanislav | |
Georg | |
Andreas | |
Andreas | |
Andreas | |
- | |
- | |
Chengbi | |
Sun | |
Randy | |
Shaina | |
- | |
- | |
Marion | |
Emanuel | |
Emanuel | |
Emanuel | |
Emanuel | |
Gordana | |
Gordana | |
Alex | |
Brendon | |
Brendon | |
Brendon | |
Maximilian | |
Bernhard | |
Sonja | |
Anna | |
Martin Stig | |
Martin Stig | |
Martin Stig | |
Beth | |
Brian | |
Elizabeth | |
Elizabeth | |
Elizabeth | |
Elizabeth | |
Elizabeth | |
Elliot W. | |
- | |
James | |
Joseph L. | |
Joseph-L. | |
Joseph-L. | |
J Tobias | |
Steve | |
Steve | |
Stuart | |
Geska Helena | |
Jan-Erik | |
Mats | |
Sanela | |
Noriaki | |
Hideyuki | |
Hideyuki | |
Makoto | |
Yasuhiko | |
Yasuhiko | |
Yasuhiko | |
Yukari | |
Kestutis | |
Kestutis | |
Xavier | |
Agam | |
Andreas | |
Stefan | |
Sitorengo | |
Hans-Joachim | |
Hans-Joachim | |
Hans-Joachim | |
Gerhard | |
Andrej | |
Goran | |
Michele | |
Michele | |
Philippe | |
Philippe | |
Ian | |
Ian | |
Ian | |
Jim | |
Jim | |
Mark | |
Ruth | |
Julie | |
Julie | |
Julie | |
Julie | |
Julie | |
Julie | |
Julie | |
Andreja | |
Andreja | |
Andreja | |
Andreja | |
Andreja | |
Andreja | |
Andreja | |
Peter | |
Olga | |
Dominik | |
Song Ming | |
Song Ming | |
Minni | |
Michael | |
Stefan | |
Andreas | |
Andreas | |
Yohann | |
Michael | |
Sandra | |
Bernd | |
Angelika | |
Jussi | |
Jussi | |
Jussi | |
Jussi | |
Marton | |
Kresimir | |
Emin | |
- | |
Andrew | |
Martin | |
Thomas | |
Anko | |
Elizabeth | |
- | |
Christoph | |
Mauro | |
- | |
- | |
Loic | |
Carlo | |
Patrizio | |
Eric | |
Josephine | |
Josephine | |
Josephine | |
Josephine | |
Josephine | |
Linda | |
David | |
Dragana | |
anticon | |
Alexandru | |
xxx | |
Michelle | |
Carneiro | |
Carneiro | |
Fayada | |
Fayada | |
Steve | |
Steve | |
Steve | |
Tatjana | |
- | |
Jorge | |
Jorge | |
Jorge | |
Rui Filipe | |
Marcelli | |
Marcelli | |
Marcel•II | |
No | |
VJ | |
Toshiro | |
Roland | |
Roland | |
Roland | |
Eveline | |
Fabian | |
Markus | |
Rosine | |
Rosina Maria | |
Raf | |
Takafumi | |
Jun | |
Jun | |
Jun | |
Masakatsu | |
Takamasa | |
Takamasa | |
Eric | |
- | |
- | |
Ted | |
Ted | |
Ted | |
- | |
David | |
David | |
David | |
David | |
Brett | |
- | |
Nicolay | |
Nicolay | |
Nicolay | |
- | |
Katerina | |
Hannes | |
Hans | |
Clemens | |
Jon | |
Jon | |
- | |
Clemens | |
Gints | |
Zafer | |
Luis | |
Mikita | |
Masatsugu | |
Masatsugu | |
Chuichi | |
Narine | |
Alejandro | |
Mauricio | |
- | |
George | |
George | |
Montse | |
Montse | |
Sergi | |
Anna | |
Anna | |
Anna | |
Laurence | |
Laurence | |
Laurence | |
Laurence | |
Cory | |
Cory | |
Aluizio | |
Matthew | |
Phil | |
Luigi | |
- | |
- | |
Joachim | |
Alvaro | |
Alvaro | |
- | |
- | |
Jennifer | |
Stevo | |
Manfred | |
Manfred | |
Dan | |
Carlos | |
Luisa | |
Scott | |
Scott | |
Scott | |
Stuart | |
Candice | |
Candice | |
Charles | |
Mark | |
Mark | |
- | |
Martine | |
Adrian | |
Ariel | |
Seiichi | |
Christopher | |
Christopher | |
Christopher | |
Christopher | |
Christopher | |
Christopher | |
Albert | |
Yegya | |
Yegya | |
Yegya | |
Yegya | |
Sonia | |
Sonia | |
Dieter | |
Dieter | |
Aulestia | |
Chris | |
Eric | |
Iain G. | |
Justin | |
Jim | |
Judy | |
Keith | |
Keith | |
Kate | |
Georgi | |
Guillon | |
Marina | |
Michael | |
Olaf | |
Olaf | |
Patrice | |
Andreas | |
Christine | |
Lee | |
Lee | |
Lisa | |
Matthew | |
Nicole | |
Inke | |
Amy E. | |
Anjali | |
Anjali | |
Albert | |
Giulio | |
Gabriel | |
John | |
- | |
- | |
Vanessa | |
Hugo | |
Gülsüm | |
Meyrem | |
- | |
- | |
- | |
- | |
Art Curry | |
- | |
Joachim | |
Joachim | |
Nadine | |
- | |
Anna | |
Artemiy | |
Artemiy | |
Artemiy | |
Artemiy | |
xxx | |
Melanie | |
Sally | |
Sally | |
Arthur | |
- | |
Xavier | |
Xavier | |
Eva | |
Ksawery | |
Lisa | |
- | |
- | |
xxx | |
- | |
- | |
- | |
- | |
- | |
Carmine | |
Dietrich | |
Per | |
Nicolas | |
Benjamin | |
Stefan | |
- | |
Kazuhiro | |
Jun | |
Ahmad | |
Ahmed | |
Julian | |
Kohei | |
Kohei | |
Kohei | |
Michael | |
Daniel | |
Markus | |
Philip | |
Theresia | |
Deborah | |
Carsten | |
Gernot | |
- | |
Patrick | |
Patrick | |
Patrick | |
Patrick | |
Patrick | |
Patrick | |
Patrick | |
Patrick | |
Patrick | |
Roy | |
Roy | |
Roy | |
Elisabeth | |
Elisabeth | |
Elisabeth | |
Brian | |
Meire | |
Meire | |
Meire | |
Anthony | |
Jason | |
Jason | |
Robert | |
Christopher | |
Adnan | |
Ashuratova Velinakov | |
Daniel | |
Daniel | |
Pipsa | |
- | |
Elena | |
Elena | |
Elena | |
Björn | |
Björn | |
Björn | |
- | |
- | |
John | |
John | |
Stefan | |
Stefan | |
André | |
Daniel | |
- | |
Clarice | |
Herman | |
- | |
Nadav | |
Michael | |
Inaki | |
Ilene | |
Ilene | |
José Vicente | |
José Vicente | |
- | |
- | |
Fady | |
Verena | |
Irina | |
Latschesar | |
Diana | |
Michael | |
Michael | |
Dana | |
Kenneth | |
- | |
- | |
Gülcan | |
Matthieu | |
Katerina | |
Kevin | |
Francisco | |
- | |
John | |
Kevin John | |
Sarah | |
Oury | |
- | |
Alessandro | |
Norbert Francis | |
Raphaela | |
Can | |
Sarah | |
Iris | |
Teresa | |
Simone | |
Allan | |
Jean-Pierre | |
Olivier | |
Olivier | |
Olivier | |
Olivier | |
Markus | |
Fabienne | |
Thomas | |
Hugues | |
Anneke | |
Albin | |
Desiree | |
Johannes | |
Johnnes | |
Johannes | |
Johannes | |
Johannes | |
Martin | |
Martin | |
Nicolas | |
Philipp | |
Philipp | |
Sebastian | |
Sebastian | |
Thomas | |
Markus | |
- | |
James | |
Eric | |
Oliver | |
Oliver | |
Oliver | |
Oliver | |
Cary | |
Mario | |
- | |
Sam | |
Sam | |
Sam | |
Sam | |
Sam | |
Sam | |
Sam | |
Sam | |
Sam | |
Armelle | |
Svend A. | |
Svend A. | |
Thomas | |
Bernhard | |
- | |
Emilie | |
Helene | |
David | |
David | |
Simon | |
Simon | |
Simon | |
Birgit | |
Rochus | |
Thomas | |
Larry | |
Larry | |
Larry | |
Larry | |
Larry | |
Larry | |
Larry | |
Robert | |
- | |
- | |
- | |
- | |
- | |
Johannes | |
Nathalie | |
Ieva | |
Jörg | |
Markus | |
Markus | |
Rainer | |
AV Club | |
Cecilia | |
Ron | |
Ron | |
Ron | |
Ron | |
Ron | |
Ron | |
Ryan | |
Jon | |
Jon | |
Angeliki | |
Jim | |
Anna | |
Ana-Maria | |
Shota | |
Jun | |
- | |
Marc | |
Stephen | |
Lydia | |
Muhanmad | |
Takahiko | |
Tak ahiko Azami | |
Robert | |
Ali | |
Alexander | |
Miguel | |
Miguel | |
Miguel | |
Yashar | |
Florent | |
Anthony | |
Stanislava | |
Biagio | |
- | |
Rashel | |
Rashel | |
Rashel | |
Rashel | |
Rashel | |
- | |
Mario | |
- | |
Marije | |
Marije | |
Tetsuaki | |
Tetsuaki | |
Tetsuaki | |
Kampei | |
Yoshiji | |
K. Michael | |
- | |
- | |
Cecile | |
Cécile | |
Christian | |
Christian | |
Bongsung | |
Bongsung | |
David | |
Pablo | |
Julien | |
Florian | |
Udo | |
Ivan | |
Ivan | |
Ivan | |
Ivan | |
Andreas | |
Stefan | |
Klaus | |
Carina | |
- | |
Caroline | |
Ingrid | |
Ingrid | |
Jorge | |
Jack | |
Jonathan | |
Wolfgang | |
Wolfgang | |
Wolf | |
Wolf-Harun | |
Wolfgang | |
Wolf-Harun | |
Wolfgang | |
Wolfgang | |
Wolfgang | |
Wolfgang | |
Wolfgang | |
Wolfgang | |
Wolfgang | |
Wolfgang R.A.H. | |
Wolfgang R.A. | |
Wolfgang | |
Anita | |
Alexander | |
Maribeth | |
Gerwin | |
Martin | |
- | |
- | |
Henning | |
Jack | |
- | |
Benjamin | |
Greg | |
Joris | |
Anna | |
Cerstin | |
Markus | |
Roland | |
Javier | |
Allan | |
Teodoru | |
Teodoru | |
Roman | |
Gaudenz | |
Soo-Ah | |
Pamela | |
Ralf | |
Vincent | |
Emeline | |
George | |
Jeffrey | |
Serge | |
Laura | |
Tomek | |
Nicolas Anatol | |
Nicolas Anatol | |
Nicolas Anatol | |
James | |
Pako | |
Curtis | |
Curtis | |
Curtis | |
Curtis | |
Curtis | |
Christian | |
Maxi | |
Yvonne Sophie | |
Michael | |
Angelo | |
Loic | |
Ursula | |
Christopher | |
Christopher | |
Shawn | |
Shawn | |
Thomas | |
Christophe | |
Hervé | |
Hervé | |
Hervé | |
Gavin | |
Gavin | |
Gavin | |
John | |
Mark | |
Mark | |
Mark | |
Peter | |
Diego | |
Natascha | |
Mark | |
David | |
Dario | |
Sergey | |
Colin | |
Tom | |
Robert E. | |
Gabor | |
Bujar | |
Osvaldas | |
Mia | |
Kovács | |
Kovács | |
- | |
Remo | |
- | |
Armin | |
Nicole | |
David | |
David | |
Mark | |
Lew | |
Ali | |
Alexander | |
Hadis | |
Sunil | |
Steven | |
Achim | |
Achim | |
Achim | |
Achim | |
Achim | |
Thomas | |
Jacob | |
Mark | |
Mark | |
Jennifer | |
Daniele | |
Ivan | |
Franck | |
Patrick | |
Boris | |
Davide | |
Klaus | |
Thomas | |
Thomas | |
Alexandra | |
Celina | |
Lucas | |
Lucas | |
Joy Ireti | |
Je | |
Christian | |
Christian | |
Christian | |
Christian | |
Christian | |
Christian | |
Christian | |
Christian | |
Christian | |
- | |
- | |
Andrea | |
Vera | |
Ros | |
Ros | |
Ros | |
Ros | |
Jayoung | |
- | |
Marketa | |
Marketa | |
Marketa | |
John | |
John | |
John S. | |
Josh | |
Alastair | |
Eduouard | |
Edouard | |
Malcolm | |
Stefan | |
Alfred | |
Damien | |
David | |
David | |
Holger | |
Piotr | |
Eric | |
Manuel | |
Fabio | |
Stefan | |
- | |
Clausdio | |
Patricia | |
Richard | |
- | |
- | |
Daniel | |
George | |
Simon | |
Laura | |
Geoffroy | |
Annette | |
Annette | |
Annette | |
Annette | |
Hugo | |
Victoria | |
Gabriel | |
Daria | |
Daria | |
Daria | |
Daria | |
Ella | |
S.H. Daria | |
Bertram | |
Perry | |
Dario | |
Dario | |
Dario | |
Mathieu | |
Dominique de | |
Gian Andrea | |
Gian Andrea | |
Kerstin | |
Jordi | |
Josef | |
Robin | |
Robin | |
Robin | |
Joey | |
Joey | |
Joey | |
Joey | |
Joey | |
Joey | |
Joey | |
Joey | |
Joey | |
Sandor | |
Francesca | |
Alberto | |
Alberto | |
Chris | |
Michele | |
Scott 'sparc' | |
Jens | |
Melek | |
Jason | |
Jason | |
Klarenz | |
Bill | |
Bill | |
Helka | |
Morgan | |
S. E. | |
Don | |
Dimitri | |
Christophe | |
- | |
Barnsley | |
Benjamin | |
Rebecca | |
Sylvia | |
Stefano | |
Albee | |
Brandon | |
Hernando | |
Stephen | |
Stephen | |
Plinio | |
Olivier | |
Daniel | |
Nikolas | |
Chris | |
Jesse | |
Natasha | |
Natasha | |
Natasha | |
Natasha | |
Natasha | |
Natasha | |
Natasha | |
Natasha | |
Natasha | |
Richard | |
Jean-Baptiste | |
Stephan | |
Stephan | |
Stephan | |
Stephan | |
Sergio | |
Sergio | |
Edgar | |
Koldo | |
Kyle Barrow | |
Nora | |
Nora | |
Nora | |
Jaques | |
Nurit | |
Bertram | |
Christof | |
Aram | |
Aram | |
Aram | |
Aram | |
Florian | |
Horst | |
Horst | |
Barbara | |
Melanie | |
Mark | |
Annalena | |
Jannis | |
Ricardo | |
- | |
Anita | |
Kristin | |
Clarissa | |
Ali | |
Chris | |
Dominique | |
Thierry | |
Ulrich | |
Chris | |
Chris | |
- | |
Amy | |
Amy | |
Sebastien | |
Alain | |
Alain | |
Alain | |
Alain | |
Alain | |
Alain | |
Sabrina | |
Marcus | |
Eric | |
Rodrigo | |
Rodrigo | |
Peter | |
Peter | |
Joseph | |
Jack | |
Karla | |
Mason | |
Mason | |
Sarah | |
Dennis | |
Alex R. | |
Irit | |
Irit | |
Trevor | |
Trevor | |
Trevor | |
Trevor E. | |
Trevor | |
Trevor | |
Trevor | |
Trevor | |
Trevor | |
Trevor | |
Trevor | |
Trevor | |
- | |
Bret | |
Bret | |
Bret | |
Bret | |
Bret | |
Bret | |
Jay C. | |
Stephen | |
Uwe | |
Philippe | |
Philippe | |
Renato | |
Christopher | |
Christopher | |
Alexander | |
Christian | |
Christian | |
Christian | |
Christoph | |
Christoph | |
Christoph | |
Christian | |
Daniel | |
Dominik | |
Dominik | |
Gustav | |
Heijko | |
Heijko | |
Harald | |
Lisa | |
Lisa | |
Zorah Mari | |
Zorah Mari | |
Zorah Mari | |
Zora Mari | |
Zorah Mari | |
Zorah Mari | |
Zorah Mani | |
Zorah Mari | |
Zorah Mari | |
Mario | |
Michaela | |
Patrik | |
Rene | |
Rene | |
René | |
René | |
Rebecca | |
Stefan | |
Stefan | |
Stephan | |
Stefanie | |
Will N. | |
Will | |
Christa | |
Chiara | |
Regina | |
Geoffrey | |
Alain | |
Boris | |
Isabel | |
Kurt | |
Marcel | |
Mark | |
Paul | |
- | |
- | |
Thomas | |
Stefan | |
Stefan | |
Stefan | |
Stefan | |
Stefan | |
Jennifer | |
Eric | |
Aare | |
K. u. F. | |
Eva | |
Bernhard | |
Elisabeth | |
Felix | |
Frank | |
Martin | |
Martin | |
Martin | |
Martin | |
Norbert | |
Peter | |
Stella | |
Armin | |
Kristen | |
Christophe | |
Ed | |
Sarah | |
Norbert | |
Isolde | |
Lukas | |
Max | |
Ricardo | |
Francois | |
Ian | |
Doug | |
Thomas | |
Thomas | |
Thomas | |
Thomas | |
Thomas | |
Thomas | |
Thomas | |
Selda | |
Audrey-Anne | |
Marie-Claire | |
Paul | |
Det | |
Det | |
Det | |
David | |
Fabrizio | |
- | |
- | |
- | |
Edgar | |
Darin | |
Celeste | |
Richard | |
Dick | |
Brogle | |
Angélica | |
Angelica | |
Denja | |
Rejean | |
Claude | |
Andrée | |
Yves | |
- | |
Egils | |
Egils | |
Egils | |
André | |
Hans P. | |
Johannes | |
Gottfried | |
Harry | |
Michael | |
Stephen | |
Stephen | |
Stefan | |
Stefan | |
Thomas | |
Wiliam | |
Konrad | |
Konrad | |
Konrad | |
Konrad | |
Chris | |
Daniel | |
Manfred | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Scott | |
Tania | |
Steffi | |
Albert Georg | |
Albert Georg | |
Peter | |
Peter | |
Till | |
Jeff | |
Özgür | |
Andreas | |
Raphael | |
Florian | |
Burton | |
Burton | |
Burton | |
Burton | |
Burton | |
John | |
Munevera | |
Bernardino | |
Faruk | |
Eve | |
Eva | |
Eduard | |
Michaela | |
Armand | |
Emre | |
- | |
Gerhard | |
Gerhard | |
Diana | |
Manuel | |
Steffen | |
Marc | |
Marc | |
Marc | |
Marc | |
Jan-Philipp | |
Jan-Philipp | |
David | |
David | |
Eva | |
Markus | |
Giselle | |
Giselle | |
Giselle | |
Giselle | |
Giselle | |
Kirsty | |
Kirsty | |
Michael | |
Wolfgang | |
Wolfgang | |
Mauricio | |
Daniel | |
Margherita | |
Juan | |
Jean-Babtiste | |
Andrea | |
- | |
Jonathan | |
Nikola | |
Anya | |
Anya | |
Andrew | |
Alyson | |
Bill | |
Daniel | |
John | |
Jeffrey C. | |
Kelley | |
Markus | |
Markus | |
Shawn | |
Shawn | |
Stephen | |
Thomas | |
Thomas | |
Zach | |
Stéphane | |
Anthonny | |
John Ashley | |
John Ashley | |
John Ashley | |
John Ashley | |
John Ashley | |
John Ashley | |
Martin | |
Tony | |
Bob | |
Bob | |
Jeff | |
Jeff | |
Simon | |
Simon | |
Fenner Ruth | |
Fenner Ruth | |
Laura | |
Laura | |
Laura | |
Laura | |
Laura | |
Zoe | |
Zoe | |
Torsten | |
Giovanni | |
J.D. | |
J.D. | |
Friedrich | |
Friedrich | |
Friedrich | |
Friedrich | |
Milosz | |
Ayala | |
Karen | |
Guy | |
R: | |
Maurice | |
Maurice | |
Maurice | |
Maurice | |
Maurice | |
Maurice | |
Maurice | |
Lubor | |
Lubor | |
Lubor | |
Lubor | |
Michael | |
Anat | |
Anat | |
Anat | |
Anat | |
Anat | |
Stuart | |
Olaf | |
Sonja | |
- | |
Petronio | |
Petronio | |
Olof | |
Jean-Michel | |
Gaspar | |
Hans-Peter | |
Sacha | |
Sacha | |
Sacha | |
Debora | |
Debora | |
Francois | |
Timothy | |
Timothy | |
Timothy | |
Laurent | |
Francesco | |
Neil | |
Douglas | |
Douglas | |
Douglas | |
Douglas | |
Douglas | |
Douglas | |
Douglas | |
- | |
Saskia | |
Julia | |
Yves | |
Bello | |
Bello | |
Javier | |
Margarita | |
Iris | |
William | |
Ed | |
Justin | |
Justin | |
Justin | |
Justin | |
Justin | |
Justin | |
Katherine | |
Katherine | |
Steve | |
Vicki | |
Vicki | |
Vicki | |
William | |
Mike | |
Tracey | |
James | |
James | |
Matthew | |
Matthew | |
Matt | |
Matt | |
Joelle | |
Jordan | |
Jordan | |
Merav | |
Balázs | |
Jonathan | |
Brigit | |
Brigit | |
Jan | |
Sébastien | |
Sebastien | |
Sébastien | |
Thomas | |
Thomas | |
Thomas | |
Thomas | |
Thomas | |
Thomas | |
Thomas | |
Thomas | |
Attila | |
Keith | |
Keith | |
Jose Manuel | |
Jose Manuel | |
José Manuel* | |
José Manuel Cóchlea | |
David | |
David | |
David | |
David | |
Vita | |
Henning | |
Henning | |
lI | |
Jochen | |
Matthias | |
Jon | |
Jon | |
Jon | |
Jon | |
Jon | |
Jon | |
Andreas | |
Christine | |
Erich | |
Erich | |
Eric | |
Ernie | |
Franz | |
Gary | |
Gary | |
Iris | |
Iris | |
Jonathan | |
Lisa | |
Lisa | |
Melanie | |
Martyn | |
Martyn | |
Martyn | |
Martyn | |
Martyn | |
Martyn | |
Martin | |
Manuel | |
Nadine | |
Philip | |
Roman | |
Roswitha | |
Stefan | |
Stefanie | |
Stefanie | |
Thomas | |
Theresa | |
Victor | |
Victor | |
Victor | |
Victor | |
Luca (fhievel) | |
Patrick | |
Alex | |
Alex | |
Alex | |
Tamás | |
Jim | |
Julian | |
Benjamin | |
Martin | |
Hildegund | |
Martin | |
Monika | |
Benjamin | |
Dominique | |
Richard | |
Richard | |
Aeron | |
Aeron | |
Stephan | |
Stefan | |
Stefan | |
Antonia | |
Stefan | |
Martin | |
André | |
Tony | |
Tony | |
Georg | |
Konstantin | |
- | |
- | |
- | |
- | |
- | |
- | |
Jed | |
Jed | |
Susanne | |
Susanne | |
Günther | |
Thibault | |
- | |
Martina | |
Alexander | |
Joshua | |
Georges | |
Niki | |
Alberto C. | |
Alberto C. | |
Felix-Gabriel | |
Marie-Helene | |
Thierry | |
Daniele | |
Bernard | |
Nicole | |
Andreas | |
Andreas | |
Andreas | |
Raffael | |
Doris | |
Doris | |
Claudia | |
Benjamin | |
Georg | |
Hans | |
Hans | |
Harald | |
L. | |
Luzius | |
Luzius | |
Martin | |
Daniel | |
Jon | |
Nicolas | |
Nicolas | |
Nicolas | |
Nicolas | |
Thomas | |
Michael | |
Michael | |
Linda | |
Linda | |
Linda A. | |
Linda A. | |
Linda A. | |
Michael | |
Christian | |
Caitlin | |
Rodney | |
Rodney | |
Rodney | |
Rodney | |
Rodney | |
Rodney | |
Rodney | |
Rodney | |
Rodney | |
Benoit | |
Benoit | |
David | |
Keith | |
Keith | |
Michael | |
Olivier | |
Ingeborg | |
Alexandre | |
Havard | |
Stefano | |
Christof | |
Oswald | |
Oswald | |
Oswald | |
Oswald | |
Andreas | |
Andreas | |
Andreas | |
Yves | |
Yves | |
Yves | |
Luca | |
Luca | |
Luca | |
Tom | |
Vanessa | |
Daniela | |
Marco | |
Tiziana | |
Marco | |
Elena | |
Ennio | |
Ennio | |
Ennio | |
Ennio | |
Ennio | |
Pascal | |
Yann | |
Yann | |
Adam | |
Simone | |
- | |
- | |
Richard | |
Joanna | |
Joanna | |
Paolo | |
Paolo | |
Stefanie | |
Stefan | |
Stefan | |
David | |
Gerd | |
Gerd | |
Gerd | |
Francesca | |
Francesca | |
Mathieu | |
Andy | |
Andy | |
Andy | |
Sylvére | |
Charles | |
Charles | |
Charles | |
Charles | |
Charles | |
Michael | |
Brandon | |
Tara | |
Stefan | |
- | |
Chuck | |
Chuck | |
Ryan | |
Tom | |
Michael | |
Hagen | |
Paul | |
Eric | |
Marc | |
Marc | |
Davy | |
Bruno | |
Bruno | |
Martin | |
Gunter | |
Stefan | |
Alejandro | |
Aleiandro | |
Josh | |
Natalie | |
Bertrand | |
Sabine | |
Peter | |
- | |
- | |
Bernd | |
Bernd | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
Ranjit | |
- | |
Monika | |
Dirk | |
Laura | |
Laura | |
Samuel | |
Giovanna | |
- | |
Fabio | |
Fsco | |
Fsco | |
Fsco | |
Massimo | |
Michele | |
Michele | |
Frederic | |
Stefan | |
Julia | |
Benjamin | |
- | |
- | |
Christoph | |
Alexander | |
Christina | |
Alfred | |
David | |
Reinhold | |
Reinhold | |
Axel | |
Axel | |
Wolfgang | |
Chelsea | |
Matthew | |
Matthew | |
Matthew | |
Simeon | |
Florian | |
Florian | |
Michaela | |
Magda | |
Julian | |
Michael | |
Michael | |
Michael | |
Michael | |
Michael | |
Ursula | |
Anna | |
Selma | |
Gregg | |
- | |
Gonzalo | |
Paolo | |
- | |
Simon | |
Simon | |
Simon | |
Simon | |
Simon | |
Vera | |
Leopold | |
Sabine | |
Frederic | |
- | |
Paul | |
- | |
Lukas | |
Lukas | |
Matthias | |
Christian | |
Tobias | |
Melih | |
Agnes | |
Philippe | |
Philippe | |
Nicolas | |
Nicolas | |
Jeff | |
John | |
Phillip Kent | |
Phillip Ken | |
Phillip Kent | |
Phillip Kent | |
Phillip-Kent | |
Phillip-Kent | |
Hu | |
Alexandra | |
Denise | |
Florian | |
Kerstin | |
Maximilian und Maria | |
Michaela | |
Reinhard | |
Julia | |
Birgit | |
Gabi | |
Timothy | |
Timothy | |
Timothy | |
Timothy | |
Timothy | |
Timothy | |
James | |
Robert | |
- | |
- | |
- | |
- | |
Kim | |
Kim | |
- | |
- | |
- | |
- | |
Günther | |
David | |
David | |
Brad | |
Bobby | |
Dinah | |
Ian | |
lan | |
Jean-Jacques | |
Andreas | |
Selin | |
Knut | |
Andrea | |
David Thomas | |
Antoine | |
Marco | |
Corinna | |
Hartwig | |
Stefan | |
John | |
John | |
John | |
John | |
- | |
Leslie | |
Daniel | |
Daniel | |
Daniel | |
Stephane | |
Stephane | |
Bruno | |
Jules | |
Jules | |
Marlene | |
- | |
Gudrun | |
Joelle | |
Joelle | |
Joelle | |
Joelle | |
Joelle | |
- | |
- | |
Jan | |
Katharina | |
Mario | |
- | |
- | |
Denis | |
Hisham | |
Hisham | |
Hisham | |
Jim | |
Hilmar | |
Jon | |
- | |
Heimir | |
Franz | |
Roland | |
Tobias | |
- | |
Colin | |
Matt | |
Matt | |
Matt | |
Matt | |
Daniel | |
Manuella | |
Patricia | |
Phillip | |
- | |
Martin | |
Nicole | |
Bosko | |
Marine | |
Gregor | |
Aleksander | |
Barbara | |
Tina | |
David | |
David | |
Warwick | |
Louis | |
Simon | |
Juan Carlos | |
Albert Piella | |
Charles | |
Ed | |
Joachim | |
Joachim | |
Joachim | |
Johannes | |
Michael | |
Dominik | |
Jeróme | |
Camilla | |
Alexander | |
Christoph | |
Klaus | |
Klaus | |
Paul | |
- | |
- | |
- | |
- | |
- | |
Anna | |
Oliver | |
Josipa | |
Larisa | |
Larisa | |
Antun | |
Antun Toni | |
Antun | |
Antun Toni | |
Anita | |
Franz | |
Ernst | |
Daniel | |
Alexander | |
- | |
Markus | |
Markus | |
Julian | |
Julian | |
Reinhard | |
Airom | |
Beate | |
Clemens | |
Günther | |
Markus | |
Markus | |
Markus | |
Markus | |
Markus | |
Markus | |
Markus | |
Markus | |
Markus | |
Markus | |
Markus | |
Markus | |
Karl-Heinz | |
Alfred | |
Alfred | |
Michael | |
Peter | |
Eric | |
Daniel | |
Daniel | |
Alexei | |
Alma | |
Alina | |
Jeff | |
Wolfgang | |
Timo | |
- | |
- | |
- | |
- | |
- | |
Per | |
Per | |
Sylvain | |
Francois | |
Cheyenne | |
- | |
Adrian | |
Mike | |
Michael | |
Bruce | |
Bruce | |
Alberto | |
David | |
Brad | |
Hank | |
Shiri | |
Jürgen | |
Steffen | |
Karen | |
- | |
Andrew-Robert | |
- | |
Jorge | |
Matthew | |
Göran | |
Göran | |
Goran | |
Goran | |
Goran | |
- | |
Edward C. | |
Natalia | |
Stefanie | |
Cameron | |
Giancarlo | |
Roberto | |
Roberto | |
Roberto | |
Roberto | |
Roberto | |
Angelika | |
Maximilian | |
Maximilian | |
Chloé | |
Ben | |
Florentijn | |
Ian | |
Christian | |
Christian | |
Manuel | |
Lars-Gunnar | |
Halvor | |
- | |
- | |
Brigitta | |
Stephan | |
Marc | |
Christian | |
- | |
Chiara | |
Jay | |
- | |
Stefi | |
Charlotte | |
Sergei | |
Markus | |
Tony | |
Hermond | |
Hervé | |
Hervé | |
Hervé | |
Sergey | |
Lisa | |
Simon | |
Simon | |
Simon | |
Alexandra | |
Etienne | |
Leonhard | |
Odyssey | |
Odyssey | |
Walter | |
Jeannette | |
Jeannette | |
Jeannette | |
Jeannette | |
Marc | |
Marc | |
Angelique | |
Christiane | |
Christoph | |
Christoph | |
Ines | |
Jan | |
Jakob | |
Patrick | |
tiernot | |
Steffen | |
Christian-A. | |
Christian | |
Christian | |
Christian | |
Andreas | |
Patrick | |
Nicole | |
- | |
- | |
Philippe | |
Philippe | |
Xavier | |
Stephanie | |
Stephanie | |
Philippe | |
Philippe | |
Philippe | |
Félix | |
Céline | |
Clare | |
Clara | |
Duke | |
Duke | |
Tom | |
Michèle | |
Sinan | |
Alex | |
Mark | |
David | |
David | |
Masayoshi | |
Jürgen | |
Jürgen | |
Christopher | |
Christin | |
- | |
Clément | |
Sebastian | |
Agata | |
Agata | |
Jose | |
Jason | |
Jason | |
Jason | |
Siglinde | |
Massimo | |
Martin | |
Alain | |
Paul | |
Iris | |
- | |
Chris | |
Chris | |
George | |
Niels | |
Niels | |
Richard | |
Pierre | |
Bac | |
Kett Susanna | |
Sanja | |
Sergio | |
Diego | |
Diego | |
Tanja | |
Georg | |
Albert | |
Albert | |
Catherine | |
Denis | |
Nathalie | |
Claudia | |
Sergiu | |
Natalie | |
Natalie | |
Natalie | |
Natalie | |
Sylke | |
Marc | |
Charles | |
Charles | |
Charles | |
Dan | |
Alan | |
Lee | |
Zachary | |
Sophie | |
Sophie | |
Isabella | |
Isabella | |
Isabella | |
Isabella | |
Lionello | |
Daniel | |
- | |
x | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
- | |
Alvaro Henrique | |
Alvaro Henriq | |
Alvaro | |
Katiushka | |
Katiushka | |
Tim | |
Joakim | |
Juliana | |
Alexei | |
Alexei | |
Alexei | |
Alexei | |
Alexei | |
Alexei | |
Liubo | |
Liubo | |
Beatrix | |
Thomas | |
Thomas | |
Thomas | |
- | |
Detlef | |
Detlef | |
Detlef | |
Achim | |
Igor | |
Angel | |
Sergio | |
Eric | |
Tuncay | |
Tuncay | |
Tuncay | |
Tuncay | |
Waldemar | |
Stev | |
Adrian | |
Peter | |
Peter | |
Peter | |
Peter | |
Peter | |
Francesco | |
Francesco | |
Francesco | |
Francesco | |
Alessandro | |
René | |
Andre | |
Drazen | |
Emil | |
Roman | |
Andres | |
Andres | |
Lodovico | |
Frederic | |
Cordula | |
Netsong | |
Timon | |
Timon | |
Eileen | |
Eileen | |
Martin | |
Vanessa | |
Horst | |
William | |
Caen | |
Carlos | |
James | |
Ludovic | |
Christian | |
Christian | |
Arnaud | |
Magali | |
Feriel | |
Thiago | |
Annabelle | |
Philippe | |
Nicolas | |
- | |
Marc | |
Anne | |
Laurent | |
Blaise | |
Blaise | |
Blaise | |
Simon | |
Yannick | |
Sylvie | |
Sylvie | |
Christian | |
Jean-Francois | |
Jean-Francois | |
Gast | |
Arnoud | |
Arnoud | |
Christian | |
Christian | |
Fanny | |
Narvika | |
Narvika | |
Narvika | |
Narvika | |
Narvika | |
Roy | |
Roy | |
Jeremy | |
David | |
Jennifer | |
Richard | |
- | |
Siobhan | |
Douglas | |
Tim | |
Oliver | |
Ollie | |
Tim | |
Tim | |
Rude | |
Emilie | |
Bryan | |
Emily | |
Jeffrey | |
Martin | |
Jonathan | |
- | |
Costantin | |
Andrea | |
Patrick | |
Svetek | |
Tuncay | |
Hugo | |
- | |
Gert | |
Brad | |
Brad | |
Brad | |
Brad | |
Brad | |
Thomas | |
Tom | |
Ben | |
Dominik | |
Lisa | |
Aaron | |
Aaron | |
Claire | |
Stephen | |
Audrey | |
Dar | |
Dar | |
Silke | |
Lucius Europa | |
Visual | |
Calen | |
Nadine Karin | |
Christopher | |
Christopher | |
Dino | |
Jean | |
Mariana | |
Jens | |
Jens | |
- | |
Lisa | |
Martin | |
Martin | |
Matthew | |
Roberta | |
Hans Peter | |
Lisa | |
Thomas | |
Thomas | |
Annabel | |
Carina | |
Günther | |
Günther | |
Konrad | |
Silvia | |
Martin | |
Sophie | |
Tanja | |
Barbara | |
Katharina | |
Markus | |
Yvonne | |
Andreas | |
Andreas | |
Andreas | |
Clara | |
Lorenz | |
Lisa | |
Patrick | |
Frank | |
Georg | |
Karin | |
Michael | |
Florian | |
Marek | |
Marek | |
Marek | |
Ros | |
Mario | |
Thomas | |
Thomas | |
Jakob | |
Jakob | |
Jakob | |
Jakob | |
Jakob | |
Jakob | |
Matei | |
Bruce | |
Lisa | |
Lisa | |
R. | |
Sergio Claros | |
Alexander | |
Anita | |
Florian | |
Florian | |
Braun | |
Felix | |
Guido | |
Guido | |
Glen | |
Philip | |
Ulu | |
Ulu | |
Jürgen | |
Armin | |
Christian | |
Enrico | |
Wendy | |
Rebecca | |
Kitty | |
Kitty | |
- | |
Robert | |
Robert | |
Brechat | |
Steve | |
Claus Arthur | |
Carsten | |
Carsten | |
Carsten | |
David E. | |
David E. | |
Len | |
Hens | |
- | |
Mary-Anne | |
Mez | |
Mez | |
Mez | |
Claude | |
Michael | |
Michael | |
Michael | |
Christina | |
Benjamin | |
Martin | |
Martin | |
Stefan | |
Andreas | |
Melanie | |
Roland | |
Roland | |
Roland | |
Roland | |
Roland | |
Martin | |
Sabine | |
Sabine | |
Christophe | |
Roland | |
Stefanie | |
Elliott | |
Jochen | |
Florian | |
Felix | |
Susanne | |
Susanne | |
Tanja | |
Tanja | |
Nikolaus Brennig | |
Nikolaus Brenning | |
Gary | |
Michel | |
Michel | |
Michel | |
Michèle | |
Frank | |
Frank | |
Wayne | |
Michael | |
Michael | |
Michael | |
- | |
Boris | |
Yan | |
Yan | |
Theresa | |
Michaela | |
Damien | |
Kim Jan | |
Michael | |
Nell | |
Florian | |
Matthias | |
- | |
- | |
- | |
- | |
- | |
- | |
Jeff | |
Jeff | |
Jeff | |
Martin | |
- | |
- | |
Simon | |
Mark | |
John | |
André | |
André | |
Jeffrey | |
Jeffrey | |
Emily | |
Colin | |
Colin | |
Colin | |
Colin | |
Gregory | |
Brnd | |
Peter | |
Peter | |
Thierry | |
- | |
Vera | |
Benjamin | |
Benjamin Jay | |
Benjamin Jay | |
Benjamin Jay | |
BenjaminJay | |
Benjamin | |
Benjamin | |
Sam | |
Sam | |
Sam | |
Sam | |
Shawn | |
F. I. | |
Aldo | |
Aldo | |
Gabriel | |
Geoff | |
Peter | |
Peter | |
Peter | |
Peter | |
Peter | |
Jonas | |
Guy | |
Eugen | |
Daniel | |
Owen A. | |
Philipp | |
- | |
Daniele | |
Claudius | |
Michael | |
Arthur | |
James | |
James | |
Freark | |
Beat | |
Beat | |
Beat | |
Jean-Francois | |
- | |
- | |
Mark | |
Kenneth | |
Loove | |
Mark | |
Henry | |
Russell | |
Timothy | |
Nigel | |
Nigel | |
Nigel | |
Nigel | |
Anthony | |
Kevin-Sawad | |
Kevin-Sawad | |
Kevin-Sawad | |
Reginald | |
Reginald | |
Reginald | |
Thomas | |
Tony | |
Thomas | |
Thomas | |
Thomas | |
Philip | |
- | |
Nicolas | |
Andrina | |
Adam | |
Andrew | |
Andrew | |
Andy | |
Andy | |
Chris | |
Chris | |
Chris | |
Carol | |
Carol | |
Laurie | |
Michael | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Paul | |
Richard | |
Richard | |
Richard | |
Sheldon | |
Sheldon | |
Sheldon | |
Sheldon | |
Sheldon | |
Sheldon | |
- | |
Rebecca | |
Rebecca | |
Drew | |
Drew | |
Alessandro | |
Jonah | |
Jonah | |
Jonah | |
Jonah | |
Jonah | |
Jonah | |
Jonah | |
Dietmar | |
Dietmar | |
Didi | |
Didi | |
Christian | |
Dave | |
Holger | |
Holger | |
Holger | |
Holger | |
Mark | |
Armin | |
Edgar | |
Jason | |
Lucca | |
Jasmin | |
Olivier | |
Thomas | |
Brigid | |
Helmut | |
Ludger | |
Ludger | |
Ludger | |
Ludger | |
Ludger | |
Ludger | |
Ludger | |
Ludger | |
Ludger | |
Ludger | |
Stefan | |
Ilija | |
Christoph | |
Jon | |
Karla | |
Michael | |
Daniela | |
Elisabeth | |
Georg | |
Matthew | |
Daniel | |
Jacquline | |
Martin | |
Matthias | |
Philipp | |
Philipp | |
Silvia | |
Eva | |
Eva | |
Eva | |
Christophe | |
Hubert | |
Christophe | |
Christophe | |
Christophe | |
Christophe | |
Christophe | |
William | |
William | |
William | |
Kathi | |
Leif | |
Leif | |
Leif | |
Karsten | |
Karsten | |
Wojtek | |
Wojtek | |
Wojciech | |
Wojciech | |
Rasmus | |
Ton | |
Koen | |
Koen | |
Alexandra | |
Alexandra | |
Alina | |
Michael | |
Michael | |
P. Miles | |
Miles | |
Alexander | |
Anton | |
Peter | |
Federico | |
Michael | |
Viktoria | |
Andreas | |
Christina | |
Marion | |
Claudia | |
Cordula | |
Laura | |
Marlene | |
Andreas | |
Maria | |
Reinhard | |
Jörg | |
Josephine | |
Lucas | |
Franz | |
Martin | |
Uwe | |
Uwe | |
Tanja | |
Bernd | |
Julia | |
Alfred | |
Alfred | |
Alfred jun. | |
Thomas | |
Michael | |
Michael | |
Michael | |
Michael | |
Michael | |
Michael | |
Michael | |
Michael | |
Jon | |
James | |
Michael | |
Thomas | |
Matt | |
Andrew | |
George | |
George | |
Christoph | |
Susanne | |
Graham | |
Graham | |
Graham | |
Niklas | |
Mario Martin | |
Niels | |
Niels | |
Luz | |
Falk | |
Gregory | |
Sascha | |
Sascha | |
- | |
- | |
- | |
- | |
Pierre | |
Pierre | |
Pierre | |
Pierre | |
Ron | |
Ben | |
Valerie | |
Tobias | |
Sebastian | |
- | |
- | |
Gottfried | |
- | |
Tomes | |
Tomas | |
Gernot | |
Jens-Ole | |
Ivica | |
Helena | |
Helena | |
Helena | |
Somna M. | |
Somna M. | |
Phyllis | |
Phyllis | |
Phyllis | |
Phyllis | |
Steve | |
József | |
David | |
Will | |
- | |
Axel | |
Erik | |
Erik | |
Erik | |
Erik | |
Erik | |
Erik | |
Virgil | |
Brit | |
Brit | |
Brit | |
Dominic | |
- | |
Bunting | |
Bunting | |
Yukari | |
Peter | |
Peter | |
David | |
Nicola | |
Giuseppe | |
Julien | |
Vuttichai | |
Vuttichai | |
Davide | |
Tony | |
Andres | |
Matthew | |
Elizabeth | |
Martin | |
Rainer | |
Rainer | |
Rainer | |
Rainer | |
Rainer | |
Kathrin | |
Jeff | |
Jeff | |
Georg | |
Cornelia | |
- | |
Gwek | |
Gwek | |
Bill | |
Mario | |
Patrick-Henri | |
Patrick-Henri | |
Kate | |
Catharina | |
Elisabeth | |
Johannes | |
Laura | |
Manuela | |
Brooke | |
Brooke | |
Peter | |
Anita | |
Gilles | |
Maria de Fatima Shin | |
Diana | |
Diana | |
Andreas | |
Natascha | |
Donald | |
Phil | |
Anthony | |
Brigid | |
Brigid | |
Dan | |
Tim | |
Tim | |
Brigid | |
Cornelius | |
Jens | |
Timm | |
Timm | |
Benno | |
Jonas | |
Brian | |
Kimberly | |
Khrystell E. | |
- | |
Benedict | |
Jeffrey | |
Jeffrey | |
Jeffrey | |
Jeffrey | |
Kristine | |
Kristine | |
Kristine | |
Muriel | |
Torsten Zenas | |
Joseph | |
Mathieu | |
Jon | |
Jon | |
Jon | |
- | |
- | |
Wilson | |
Wilson | |
Heather | |
Gerold | |
Gerold | |
Gerold | |
Gerold | |
Eyal | |
Warren | |
Warren | |
Warren | |
Warren | |
Warren | |
Warren | |
Warren | |
Warren | |
Warren | |
Warren | |
Warren | |
ButzMarcy | |
Marcy | |
Theo | |
C. Matthew | |
C. Matthew | |
Matthew | |
Matthew | |
Matthew | |
Alexandre | |
Alexandre | |
Alexandre | |
Ed | |
Josh | |
John | |
Joshua | |
Matthias | |
Matthias | |
Georg | |
Juan Bablo | |
Dominik | |
Joel | |
Mali | |
- | |
Katie | |
Paul | |
Colleen | |
Colleen | |
Ilya | |
- | |
Nicola | |
Nicola | |
Nicola | |
Nicola | |
- | |
Arnd Buss | |
Nicholas | |
Felicia | |
Adam | |
Adam | |
John | |
John | |
John | |
Martin | |
Mitch | |
Steve | |
Katrin | |
Michael | |
Falk | |
Gregory | |
Manfred | |
Darrin | |
Darrin | |
- | |
Barna | |
Adam | |
Robert Griffin | |
Matthew | |
Vladimir | |
Jihoon | |
- | |
- | |
Joan | |
Joan | |
Joan | |
Miquel | |
Norma | |
Vivien | |
Philipp | |
- | |
- | |
Anthea | |
France | |
Marco | |
Mariela | |
Mariela | |
loan | |
Claude | |
Claude | |
Rodolfo | |
Rodolfo | |
Rodolfo | |
- | |
Francois | |
Ruben Coen | |
Bill | |
Roland | |
Roland | |
Joel | |
Joel | |
Joel | |
Thomas | |
Tom | |
Brian | |
Santiago | |
Julien | |
Maya | |
Adam | |
Patrice | |
Carlos | |
Maite | |
Maite | |
David | |
Calabazitas | |
Paolo | |
- | |
Craig | |
Craig | |
Craig | |
Man | |
Rüstü | |
Mira | |
Martin John | |
Martin John | |
Peter | |
Peter | |
Peter | |
Peter | |
Peter | |
Peter | |
Peter | |
Peter | |
Peter | |
Peter | |
Dominique | |
Christian | |
Christian | |
Christian | |
Christian | |
Christian | |
Christian | |
Christian | |
Andrea | |
Andrea | |
Jean-Francois | |
Bilbo Myléne | |
Bilbo Myléne | |
Bilbo | |
Pierrick | |
Lidia | |
Paul | |
Marco | |
Ah | |
Jon | |
J.-M. | |
Sergio | |
Sergio | |
Christoph | |
Andy | |
Paul | |
Filippo | |
Lelio | |
Lelio | |
Lelio | |
Lelio | |
Lelio | |
Lelio | |
Camillo | |
Antonio Augusto | |
Luis | |
Federico | |
Jim | |
Jim | |
Jim | |
Jim | |
Jim | |
Jim | |
Myron | |
Sam | |
William | |
William | |
Greg | |
Edmund | |
Emund | |
Marcello | |
Poloma | |
Remo | |
Remo | |
Matthias | |
Matthias | |
Matthias | |
Toni | |
Giampaolo | |
Giampaolo | |
Antonio | |
- | |
- | |
- | |
- | |
Rene | |
Mario | |
Mario | |
Mario | |
Mario | |
Mario | |
Mario | |
Mario | |
Mario | |
Mario | |
Mario | |
Daniel | |
Ricardo | |
Ricardo | |
Matej | |
Joseph | |
Juan Parra | |
(Oliver Schulte/MaikTimm) | |
(Oliver Schulte/Maik Timm) | |
Pete | |
Matteo Fanni | |
- | |
Luca | |
Lloyd | |
Giovanni | |
Bruce | |
Joanne | |
Kevin | |
Stephane | |
Hector | |
Luis | |
Luis | |
Jean-Francois | |
Siegfried | |
Siegfried | |
Rejane | |
Rejane | |
Rejane | |
Jeremy | |
Lorens | |
Cap´N | |
Cap´N | |
Douglas | |
- | |
Sandra | |
Denis | |
Sean | |
Sabina | |
Gorazd | |
Alessandro | |
Alessandro | |
Birgitta | |
Domenico | |
Owen | |
Sébastien | |
Gianni | |
Véronique | |
Veronique | |
Leos | |
Claire | |
Nicolas | |
Mannlicher | |
Cobàs Mario | |
Claudio | |
Luigia | |
Luigia | |
Luigia | |
Luigis | |
Luigis | |
Mauro | |
Tatiana | |
Beth | |
Jeff | |
Joanne | |
Christof | |
Vincent-Raphael | |
Gustaf | |
Jan | |
Massimo | |
Massimo | |
Stefano | |
Carolyn | |
Erik | |
Erik | |
Larry | |
Lars | |
Tomaso | |
Tomaso | |
Teri Williams | |
Marc | |
Massimo | |
Massimo | |
Martin | |
Craig Allen | |
Loren | |
Patrick | |
Benjamin | |
Linda | |
Alain | |
Adrian | |
Adrian | |
Maurizio | |
Maurizio | |
Richard | |
Massimo | |
Massimo | |
Massimo | |
Marcial | |
Stéphane | |
Shane | |
Brian | |
Mark | |
Roy | |