diff --git a/.all-contributorsrc b/.all-contributorsrc
index 4eb4a4e6..7b510b92 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -250,6 +250,45 @@
"ideas"
]
},
+ {
+ "login": "jordan-warne",
+ "name": "jordan warne",
+ "avatar_url": "https://avatars.githubusercontent.com/u/154663344?v=4",
+ "profile": "https://jordanwarne.net/",
+ "contributions": [
+ "doc",
+ "video",
+ "research",
+ "ideas",
+ "question",
+ "promotion"
+ ]
+ },
+ {
+ "login": "EmAtPrivacyGuides",
+ "name": "Em",
+ "avatar_url": "https://avatars.githubusercontent.com/u/194856901?v=4",
+ "profile": "https://github.com/EmAtPrivacyGuides",
+ "contributions": [
+ "blog",
+ "promotion",
+ "ideas"
+ ]
+ },
+ {
+ "login": "kpham42",
+ "name": "Kevin Pham",
+ "avatar_url": "https://avatars.githubusercontent.com/u/123699355?v=4",
+ "profile": "https://github.com/kpham42",
+ "contributions": [
+ "blog",
+ "promotion",
+ "question",
+ "research",
+ "ideas",
+ "doc"
+ ]
+ },
{
"login": "actions",
"name": "GitHub Actions",
@@ -1955,15 +1994,6 @@
"doc"
]
},
- {
- "login": "aghorler",
- "name": "Aaron Horler",
- "avatar_url": "https://avatars.githubusercontent.com/u/13065365?v=4",
- "profile": "https://aaronhorler.com/",
- "contributions": [
- "doc"
- ]
- },
{
"login": "Commenter25",
"name": "Commenter",
@@ -2767,15 +2797,6 @@
"translation"
]
},
- {
- "login": "jordan-warne",
- "name": "jordan warne",
- "avatar_url": "https://avatars.githubusercontent.com/u/154663344?v=4",
- "profile": "https://jordanwarne.net/",
- "contributions": [
- "doc"
- ]
- },
{
"login": "dzenan",
"name": "DΕΎenan",
@@ -3006,6 +3027,97 @@
"maintenance",
"security"
]
+ },
+ {
+ "login": "austinhuang0131",
+ "name": "Austin Huang",
+ "avatar_url": "https://avatars.githubusercontent.com/u/16656689?v=4",
+ "profile": "https://austinhuang.me/",
+ "contributions": [
+ "doc",
+ "question"
+ ]
+ },
+ {
+ "login": "WardPearce",
+ "name": "Ward",
+ "avatar_url": "https://avatars.githubusercontent.com/u/27844174?v=4",
+ "profile": "https://github.com/WardPearce",
+ "contributions": [
+ "doc"
+ ]
+ },
+ {
+ "login": "oilmaint",
+ "name": "oilmaint",
+ "avatar_url": "https://avatars.githubusercontent.com/u/79659024?v=4",
+ "profile": "https://github.com/oilmaint",
+ "contributions": [
+ "doc"
+ ]
+ },
+ {
+ "login": "headdirt",
+ "name": "headdirt",
+ "avatar_url": "https://avatars.githubusercontent.com/u/37009392?v=4",
+ "profile": "https://github.com/headdirt",
+ "contributions": [
+ "doc"
+ ]
+ },
+ {
+ "login": "qmcree",
+ "name": "Quentin McRee",
+ "avatar_url": "https://avatars.githubusercontent.com/u/7796024?v=4",
+ "profile": "https://github.com/qmcree",
+ "contributions": [
+ "doc"
+ ]
+ },
+ {
+ "login": "sv3nnie",
+ "name": "Sven",
+ "avatar_url": "https://avatars.githubusercontent.com/u/67653224?v=4",
+ "profile": "https://github.com/sv3nnie",
+ "contributions": [
+ "doc"
+ ]
+ },
+ {
+ "login": "tomhonour",
+ "name": "Tom Honour",
+ "avatar_url": "https://avatars.githubusercontent.com/u/132141431?v=4",
+ "profile": "https://git.sr.ht/~tomhonour/",
+ "contributions": [
+ "doc"
+ ]
+ },
+ {
+ "login": "brog-io",
+ "name": "Brogio",
+ "avatar_url": "https://avatars.githubusercontent.com/u/141176104?v=4",
+ "profile": "https://brog.io/",
+ "contributions": [
+ "doc"
+ ]
+ },
+ {
+ "login": "nathany",
+ "name": "Nathan Youngman",
+ "avatar_url": "https://avatars.githubusercontent.com/u/4566?v=4",
+ "profile": "https://nathany.com/",
+ "contributions": [
+ "doc"
+ ]
+ },
+ {
+ "login": "blanchardjeremy",
+ "name": "Jeremy",
+ "avatar_url": "https://avatars.githubusercontent.com/u/32290?v=4",
+ "profile": "https://github.com/blanchardjeremy",
+ "contributions": [
+ "doc"
+ ]
}
],
"contributorsPerLine": 5,
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 2c128ea7..1e18b550 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -1,7 +1,11 @@
// For format details, see https://aka.ms/devcontainer.json.
{
"name": "Privacy Guides",
- "image": "ghcr.io/privacyguides/privacyguides.org:sha-750239d",
+ "image": "ghcr.io/privacyguides/privacyguides.org:sha-55c050b",
+ // "build": {
+ // "dockerfile": "../Dockerfile",
+ // "context": ".."
+ // },
"overrideCommand": true,
"portsAttributes": {
"1337": {
diff --git a/Dockerfile b/Dockerfile
index 1d844b91..ce086535 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM python:3.12-bookworm AS base
+FROM python:3.12-slim-bookworm AS base
LABEL org.opencontainers.image.source="https://github.com/privacyguides/privacyguides.org"
@@ -33,6 +33,18 @@ COPY Pipfile.lock .
# Install all Python dependencies into a projectβlocal virtual environment at /.venv
RUN PIPENV_VENV_IN_PROJECT=1 pipenv install --deploy
+####################################################
+# Stage: nodejs-deps
+# Install nodejs/npm and compilation dependencies
+####################################################
+FROM node:24-bookworm-slim AS nodejs-deps
+
+RUN npm i -g all-contributors-cli
+RUN npm install -g pkg
+
+RUN cd /usr/local/lib/node_modules/all-contributors-cli && \
+ pkg dist/cli.js -t node18-linux -o /usr/local/bin/all-contributors-cli
+
####################################################
# Stage: runtime
# Install runtime dependencies and copy runtime artifacts
@@ -60,6 +72,9 @@ RUN apt-get update && \
COPY --from=python-deps /.venv /.venv
COPY --from=python-deps /modules/mkdocs-material /modules/mkdocs-material
+# Copy all-contributors-cli from nodejs-deps stage
+COPY --from=nodejs-deps /usr/local/bin/all-contributors-cli /usr/local/bin/all-contributors-cli
+
# Ensure the virtual environmentβs bin directory is first in PATH
ENV PATH="/.venv/bin:$PATH"
diff --git a/README.md b/README.md
index e7f81258..74b6fc5a 100644
--- a/README.md
+++ b/README.md
@@ -156,429 +156,446 @@ Privacy Guides wouldn't be possible without these wonderful people ([emoji key](
 matchboxbananasynergy π π¬ π€ π π |
 fria π π π¬ π¬ π π€ |
+  jordan warne π πΉ π¬ π€ π¬ π£ |
+  Em π π£ π€ |
+  Kevin Pham π π£ π¬ π¬ π€ π |
+
+
 GitHub Actions π |
 Triplebit π |
 MAGIC Grants πΌ |
-
-
 Netlify π |
 Dependabot π» π |
+
+
 Hetzner Cloud π |
 Cloudflare π |
 Open Collective πΌ |
-
-
 Safing π΅ |
 Dan Arel π π π¬ |
+
+
 Techlore π΅ |
 elitejake π |
 samsepi0l π |
-
-
 rollsicecream π π¬ π π |
 Henry Fisher π |
+
+
 Nate Bartram π |
 Sam Howell π |
 asddsaz π |
-
-
 Hugo Costa π |
 C-O-M-P-A-R-T-M-E-N-T-A-L-I-Z-A-T-I-O-N π |
+
+
 Alberto Strappazzon π |
 Victorhck π |
 Tai Lam π π§ |
-
-
 NinebitX π |
 Alexander Antukh π |
+
+
 Gusted π |
 redoomed1 π π |
 Offpics π |
-
-
 kimg45 π |
 djoate π |
+
+
 afighttilldeath π |
 Paul Verbeke π π π π§βπ« |
 Mitchell Cash π |
-
-
 NeverDucky π |
 efb4f5ff-1298-471a-8973-3d47447115dc π |
+
+
 Stephen Karl Larroque π |
 0rdinant π |
 Zenithium π |
-
-
 Jordan Gwyn π |
 Guru π |
+
+
 datoshkr π |
 Kcchouette π |
 Jacob Neplokh π |
-
-
 Leonardo Mazzon π π π΅ π£ π¬ π |
 Andrew Chong π |
+
+
 Wok π |
 nopeitsnothing π |
 Lynn Stephenson π |
-
-
 Cory Solovewicz π |
 noClaps π |
+
+
 Brian π |
 SkewedZeppelin π π¬ |
 Arcadius3D π |
-
-
 vpnarea π |
 namazso π π¬ |
+
+
 cYDN48 π |
 gjhklfdsa π |
 Pavel Zolotarevskiy π |
-
-
 quiddity-wp π |
 Nikhil Jha π |
+
+
 Subatomic Honda Civic π |
 ticklemyIP π |
 jermanuts π |
-
-
 conorohiggins π |
 TechFanTheo π |
+
+
 Ryan Taylor π |
 Positron832 π |
 JustLuckNoSkill π |
-
-
 Arkadiy π |
 Jack Chou π |
+
+
 ave π |
 Boo π |
 IDKwhattoputhere π |
-
-
 idkrn π |
 ggg27 π |
+
+
 WalterKlosse π |
 Tom Hacohen π |
 Paul Feuvraux π |
-
-
 Scott Bennett π |
 Federico Ariel Castagnini π |
+
+
 jslawler-gh π |
 spaceoden π |
 xe3 π |
-
-
 Andrew Morgan π |
 Caleb King π |
+
+
 Eduardo π |
 NafeezJS π |
 Sloofy π |
-
-
 Sam Schlinkert π |
 Gabor Luk π |
+
+
 DeiAsPie π |
 Davide Taviani π |
 spanishharlem π |
-
-
 Jacob Gonzales π |
 Kaede π |
+
+
 LABB π |
 Raviu8 π |
 Peter Dave Hello π |
-
-
 Rose π |
 Oskar Sharipov π |
+
+
 Samuel Lucas π |
 NylaTheWolf π |
 Matthew Davis π |
-
-
 Mark Cohen π |
 Mad Scientist π |
+
+
 Maarten π |
 William Davis π |
 William Thomas Wilkins π |
-
-
 wylel π |
 Will Browning π |
+
+
 Yi Cao π |
 Yusuf Daglioglu π |
 Zack π |
-
-
 ZHη π |
 ansuz π |
+
+
 archeite π |
 asdfghjz π |
 ayaen π |
-
-
 b-harper π |
 Loic Vourch π |
+
+
 crasm π |
 eagerto-learn π |
 egecelikci π |
-
-
 elleybean π |
 Evan Song π |
+
+
 pynixis π |
 Seirdy π |
 Ryan Huang π |
-
-
 Sascha P. π |
 Securified π |
+
+
 Sergey Musiyenko π |
 Spydar007 π |
 Steven Bach π |
-
-
 Steven Lehn π |
 Steven van de Graaf π |
+
+
 Sven Kortekaas π |
 Tejas Gupta π |
 Tebowy Seba π |
-
-
 Ted Gravlin π |
 TheFrenchGhosty π |
+
+
 TheNoobWar π |
 Thomas Rientjes π |
 Tim Vergenz π |
-
-
 Tom Sullivan π |
 Tony Tan π |
+
+
 TroubleDog54 π |
 User486375 π |
 Nicholas Christensen π |
-
-
 oppressor1761 π |
 pbbob π |
+
+
 pdjpdjpdj π |
 Stella Polaris π π¬ π£ π¬ π |
 regaldude π |
-
-
 rusty-snake π |
 sacha π |
+
+
 schwukas π |
 sh-dv π |
 szTheory π |
-
-
 Thunderbolt Digital π |
 E. S. Leonesco π |
+
+
 titanism π |
 tomac4t π |
 virustotalop π |
-
-
 wintr π |
 xelarate86 π |
+
+
 yeoneer π |
 foxt π |
 Freddie π |
-
-
 ghbjklhv π |
 Raymond Hill π |
+
+
 luke crouch π |
 fd1f744993de14178e6c π |
 habitualname π |
-
-
 hook π |
 nein π |
+
+
 jkhgvfgvsth π |
 joaonsg π |
 johnnyburnaway π |
-
-
 jus9 π |
 kc1212 π |
+
+
 kryptish π |
 m3t π |
 macau23 π |
-
-
 mat1th π |
 MWM π |
-  Michael Plews π |
-  moritztk π |
-  Aaron Horler π |
+  Michael Plews π |
+  moritztk π |
 Commenter π |
 CΓ©dric Laubacher π |
 Daniel Peukert π |
-  David Breese π |
-  Dimitris Apostolou π |
+  David Breese π |
+  Dimitris Apostolou π |
 Dyrimon π |
 Ikel Atomig π |
 Elias Ojala π |
-  Feni Brian π |
-  Filip Ε π |
+  Feni Brian π |
+  Filip Ε π |
 Felix Albroscheit π |
 GReagle π |
 Gamma π |
-  GetBoz π |
-  GrimPixel π |
+  GetBoz π |
+  GrimPixel π |
 Guillem L. Jara π |
 HxxxxxS π |
 Himanshu Chandola π |
-  Issam Maghni π |
-  ItsDonny π |
+  Issam Maghni π |
+  ItsDonny π |
 Abdullah Atta π |
 Adam Sroka π |
 criadoperez π |
-  Alex Amiryan π |
-  Alex Shoup π |
+  Alex Amiryan π |
+  Alex Shoup π |
 Alex Thomassen π |
 Amolith π |
 Andrea Scarpino π |
-  Armando LΓΌscher π |
-  Ash T π |
+  Armando LΓΌscher π |
+  Ash T π |
 Bernd Eichelberger π |
 BionicBison05 π |
 Brent Gervais π |
-  Brian Cooper π |
-  Caboose700 π |
+  Brian Cooper π |
+  Caboose700 π |
 Cadel Watson π |
 trosel π |
 Carl π |
-  Chad Birch π |
-  Chris Barry π |
+  Chad Birch π |
+  Chris Barry π |
 JΓΊlio Ferraz π |
 Jack Hill π |
 Mathias Oterhals Myklebust π |
-  Mats Estensen π |
-  Matt Baer π |
+  Mats Estensen π |
+  Matt Baer π |
 Mehdi Chaouch π |
 Mike Perrone π |
 Mitch Wilkins π |
-  Mo π |
-  Morten Linderud π |
+  Mo π |
+  Morten Linderud π |
 natzim π |
 Douglas π |
 Nick π |
-  NielDB π |
-  Nihal Raj π |
+  NielDB π |
+  Nihal Raj π |
 Noah π |
 Panagiotis "Ivory" Vasilopoulos π |
 Patrick R π |
-  Fart Attorney π |
-  Pilou π |
+  Fart Attorney π |
+  Pilou π |
 PoorPockets McNewHold π π |
 PrinceKael π |
 Richard π |
-  Jaden Site π |
-  Jake Zeal π |
+  Jaden Site π |
+  Jake Zeal π |
 James Kerrane π |
 Sell π |
 YMHuang π |
-  Jonathan Vansina π |
-  jorgeluiscarrillo π |
+  Jonathan Vansina π |
+  jorgeluiscarrillo π |
 Julian π |
 Kefaku π |
 Kevin Brennan π |
-  Kyle Spearrin π |
-  Leon Allen π |
+  Kyle Spearrin π |
+  Leon Allen π |
 LisaWilbourn π |
 Lord Shedy π |
 Louis Wolfers π |
-  Lunush π |
-  MMR π |
+  Lunush π |
+  MMR π |
 Mads Peter Rommedahl π |
 Manuel Quarneti π |
 Marco Menzel π |
-  Mario π |
-  skye π¬ |
+  Mario π |
+  skye π¬ |
 r2fo π |
 LamTrinh.Dev π π π¬ |
 frostlike π¬ |
-  Merlin Scholz π |
-  jordan warne π |
+  Merlin Scholz π |
 DΕΎenan π |
 jx tsai π |
 backstab5983 π |
 antgig π |
-  Γkos NikhΓ‘zy π |
+  Γkos NikhΓ‘zy π |
 Francois Marier π |
 5-tom π |
 Ralphie0511 π |
 aleksejs1 π |
-  Martin π |
+  Martin π |
 Overwatch π |
 Kieran Colfer π |
 Triple T π |
 IDON-TEXIST π |
-  Yusuf Daglioglu π |
+  Yusuf Daglioglu π |
 Yi Cao π |
 Sayf DhΕ« al-FaqΔr π |
 eylenburg π |
 Kieran Colfer π |
-  Justin Ehrenhofer π πΌ π |
+  Justin Ehrenhofer π πΌ π |
 Alex Bruch π |
 qiyongzheng π |
 Sam K π π£ π¬ |
 Spirizer π |
+
+
 jordbm π π§ π‘οΈ |
+  Austin Huang π π¬ |
+  Ward π |
+  oilmaint π |
+  headdirt π |
+
+
+  Quentin McRee π |
+  Sven π |
+  Tom Honour π |
+  Brogio π |
+  Nathan Youngman π |
+
+
+  Jeremy π |
@@ -602,17 +619,17 @@ This project follows the [all-contributors](https://github.com/all-contributors/
CLI to generate this table:
```bash
-npx --package all-contributors-cli -- npx all-contributors generate
+all-contributors-cli generate
```
CLI to add a contributor:
```bash
-npx --package all-contributors-cli -- npx all-contributors add
+all-contributors-cli add
```
-See [this table](https://allcontributors.org/docs/en/emoji-key) for valid contribution reasons, comma-separated. Do **not** use the `content` code for contributors to the website, use `docs` instead (this way it will automatically link to their commits). Example:
+See [this table](https://allcontributors.org/docs/en/emoji-key) for valid contribution reasons, comma-separated. Do **not** use the `content` code for contributors to the website, use `doc` instead (this way it will automatically link to their commits). Example:
```bash
-npx --package all-contributors-cli -- npx all-contributors add jonaharagon docs,research,question
+all-contributors-cli add jonaharagon doc,research,question
```
diff --git a/includes/contributors.md b/includes/contributors.md
index f4d3cf98..40497145 100644
--- a/includes/contributors.md
+++ b/includes/contributors.md
@@ -29,429 +29,446 @@
 matchboxbananasynergy π π¬ π€ π π |
 fria π π π¬ π¬ π π€ |
+  jordan warne π πΉ π¬ π€ π¬ π£ |
+  Em π π£ π€ |
+  Kevin Pham π π£ π¬ π¬ π€ π |
+
+
 GitHub Actions π |
 Triplebit π |
 MAGIC Grants πΌ |
-
-
 Netlify π |
 Dependabot π» π |
+
+
 Hetzner Cloud π |
 Cloudflare π |
 Open Collective πΌ |
-
-
 Safing π΅ |
 Dan Arel π π π¬ |
+
+
 Techlore π΅ |
 elitejake π |
 samsepi0l π |
-
-
 rollsicecream π π¬ π π |
 Henry Fisher π |
+
+
 Nate Bartram π |
 Sam Howell π |
 asddsaz π |
-
-
 Hugo Costa π |
 C-O-M-P-A-R-T-M-E-N-T-A-L-I-Z-A-T-I-O-N π |
+
+
 Alberto Strappazzon π |
 Victorhck π |
 Tai Lam π π§ |
-
-
 NinebitX π |
 Alexander Antukh π |
+
+
 Gusted π |
 redoomed1 π π |
 Offpics π |
-
-
 kimg45 π |
 djoate π |
+
+
 afighttilldeath π |
 Paul Verbeke π π π π§βπ« |
 Mitchell Cash π |
-
-
 NeverDucky π |
 efb4f5ff-1298-471a-8973-3d47447115dc π |
+
+
 Stephen Karl Larroque π |
 0rdinant π |
 Zenithium π |
-
-
 Jordan Gwyn π |
 Guru π |
+
+
 datoshkr π |
 Kcchouette π |
 Jacob Neplokh π |
-
-
 Leonardo Mazzon π π π΅ π£ π¬ π |
 Andrew Chong π |
+
+
 Wok π |
 nopeitsnothing π |
 Lynn Stephenson π |
-
-
 Cory Solovewicz π |
 noClaps π |
+
+
 Brian π |
 SkewedZeppelin π π¬ |
 Arcadius3D π |
-
-
 vpnarea π |
 namazso π π¬ |
+
+
 cYDN48 π |
 gjhklfdsa π |
 Pavel Zolotarevskiy π |
-
-
 quiddity-wp π |
 Nikhil Jha π |
+
+
 Subatomic Honda Civic π |
 ticklemyIP π |
 jermanuts π |
-
-
 conorohiggins π |
 TechFanTheo π |
+
+
 Ryan Taylor π |
 Positron832 π |
 JustLuckNoSkill π |
-
-
 Arkadiy π |
 Jack Chou π |
+
+
 ave π |
 Boo π |
 IDKwhattoputhere π |
-
-
 idkrn π |
 ggg27 π |
+
+
 WalterKlosse π |
 Tom Hacohen π |
 Paul Feuvraux π |
-
-
 Scott Bennett π |
 Federico Ariel Castagnini π |
+
+
 jslawler-gh π |
 spaceoden π |
 xe3 π |
-
-
 Andrew Morgan π |
 Caleb King π |
+
+
 Eduardo π |
 NafeezJS π |
 Sloofy π |
-
-
 Sam Schlinkert π |
 Gabor Luk π |
+
+
 DeiAsPie π |
 Davide Taviani π |
 spanishharlem π |
-
-
 Jacob Gonzales π |
 Kaede π |
+
+
 LABB π |
 Raviu8 π |
 Peter Dave Hello π |
-
-
 Rose π |
 Oskar Sharipov π |
+
+
 Samuel Lucas π |
 NylaTheWolf π |
 Matthew Davis π |
-
-
 Mark Cohen π |
 Mad Scientist π |
+
+
 Maarten π |
 William Davis π |
 William Thomas Wilkins π |
-
-
 wylel π |
 Will Browning π |
+
+
 Yi Cao π |
 Yusuf Daglioglu π |
 Zack π |
-
-
 ZHη π |
 ansuz π |
+
+
 archeite π |
 asdfghjz π |
 ayaen π |
-
-
 b-harper π |
 Loic Vourch π |
+
+
 crasm π |
 eagerto-learn π |
 egecelikci π |
-
-
 elleybean π |
 Evan Song π |
+
+
 pynixis π |
 Seirdy π |
 Ryan Huang π |
-
-
 Sascha P. π |
 Securified π |
+
+
 Sergey Musiyenko π |
 Spydar007 π |
 Steven Bach π |
-
-
 Steven Lehn π |
 Steven van de Graaf π |
+
+
 Sven Kortekaas π |
 Tejas Gupta π |
 Tebowy Seba π |
-
-
 Ted Gravlin π |
 TheFrenchGhosty π |
+
+
 TheNoobWar π |
 Thomas Rientjes π |
 Tim Vergenz π |
-
-
 Tom Sullivan π |
 Tony Tan π |
+
+
 TroubleDog54 π |
 User486375 π |
 Nicholas Christensen π |
-
-
 oppressor1761 π |
 pbbob π |
+
+
 pdjpdjpdj π |
 Stella Polaris π π¬ π£ π¬ π |
 regaldude π |
-
-
 rusty-snake π |
 sacha π |
+
+
 schwukas π |
 sh-dv π |
 szTheory π |
-
-
 Thunderbolt Digital π |
 E. S. Leonesco π |
+
+
 titanism π |
 tomac4t π |
 virustotalop π |
-
-
 wintr π |
 xelarate86 π |
+
+
 yeoneer π |
 foxt π |
 Freddie π |
-
-
 ghbjklhv π |
 Raymond Hill π |
+
+
 luke crouch π |
 fd1f744993de14178e6c π |
 habitualname π |
-
-
 hook π |
 nein π |
+
+
 jkhgvfgvsth π |
 joaonsg π |
 johnnyburnaway π |
-
-
 jus9 π |
 kc1212 π |
+
+
 kryptish π |
 m3t π |
 macau23 π |
-
-
 mat1th π |
 MWM π |
-  Michael Plews π |
-  moritztk π |
-  Aaron Horler π |
+  Michael Plews π |
+  moritztk π |
 Commenter π |
 CΓ©dric Laubacher π |
 Daniel Peukert π |
-  David Breese π |
-  Dimitris Apostolou π |
+  David Breese π |
+  Dimitris Apostolou π |
 Dyrimon π |
 Ikel Atomig π |
 Elias Ojala π |
-  Feni Brian π |
-  Filip Ε π |
+  Feni Brian π |
+  Filip Ε π |
 Felix Albroscheit π |
 GReagle π |
 Gamma π |
-  GetBoz π |
-  GrimPixel π |
+  GetBoz π |
+  GrimPixel π |
 Guillem L. Jara π |
 HxxxxxS π |
 Himanshu Chandola π |
-  Issam Maghni π |
-  ItsDonny π |
+  Issam Maghni π |
+  ItsDonny π |
 Abdullah Atta π |
 Adam Sroka π |
 criadoperez π |
-  Alex Amiryan π |
-  Alex Shoup π |
+  Alex Amiryan π |
+  Alex Shoup π |
 Alex Thomassen π |
 Amolith π |
 Andrea Scarpino π |
-  Armando LΓΌscher π |
-  Ash T π |
+  Armando LΓΌscher π |
+  Ash T π |
 Bernd Eichelberger π |
 BionicBison05 π |
 Brent Gervais π |
-  Brian Cooper π |
-  Caboose700 π |
+  Brian Cooper π |
+  Caboose700 π |
 Cadel Watson π |
 trosel π |
 Carl π |
-  Chad Birch π |
-  Chris Barry π |
+  Chad Birch π |
+  Chris Barry π |
 JΓΊlio Ferraz π |
 Jack Hill π |
 Mathias Oterhals Myklebust π |
-  Mats Estensen π |
-  Matt Baer π |
+  Mats Estensen π |
+  Matt Baer π |
 Mehdi Chaouch π |
 Mike Perrone π |
 Mitch Wilkins π |
-  Mo π |
-  Morten Linderud π |
+  Mo π |
+  Morten Linderud π |
 natzim π |
 Douglas π |
 Nick π |
-  NielDB π |
-  Nihal Raj π |
+  NielDB π |
+  Nihal Raj π |
 Noah π |
 Panagiotis "Ivory" Vasilopoulos π |
 Patrick R π |
-  Fart Attorney π |
-  Pilou π |
+  Fart Attorney π |
+  Pilou π |
 PoorPockets McNewHold π π |
 PrinceKael π |
 Richard π |
-  Jaden Site π |
-  Jake Zeal π |
+  Jaden Site π |
+  Jake Zeal π |
 James Kerrane π |
 Sell π |
 YMHuang π |
-  Jonathan Vansina π |
-  jorgeluiscarrillo π |
+  Jonathan Vansina π |
+  jorgeluiscarrillo π |
 Julian π |
 Kefaku π |
 Kevin Brennan π |
-  Kyle Spearrin π |
-  Leon Allen π |
+  Kyle Spearrin π |
+  Leon Allen π |
 LisaWilbourn π |
 Lord Shedy π |
 Louis Wolfers π |
-  Lunush π |
-  MMR π |
+  Lunush π |
+  MMR π |
 Mads Peter Rommedahl π |
 Manuel Quarneti π |
 Marco Menzel π |
-  Mario π |
-  skye π¬ |
+  Mario π |
+  skye π¬ |
 r2fo π |
 LamTrinh.Dev π π π¬ |
 frostlike π¬ |
-  Merlin Scholz π |
-  jordan warne π |
+  Merlin Scholz π |
 DΕΎenan π |
 jx tsai π |
 backstab5983 π |
 antgig π |
-  Γkos NikhΓ‘zy π |
+  Γkos NikhΓ‘zy π |
 Francois Marier π |
 5-tom π |
 Ralphie0511 π |
 aleksejs1 π |
-  Martin π |
+  Martin π |
 Overwatch π |
 Kieran Colfer π |
 Triple T π |
 IDON-TEXIST π |
-  Yusuf Daglioglu π |
+  Yusuf Daglioglu π |
 Yi Cao π |
 Sayf DhΕ« al-FaqΔr π |
 eylenburg π |
 Kieran Colfer π |
-  Justin Ehrenhofer π πΌ π |
+  Justin Ehrenhofer π πΌ π |
 Alex Bruch π |
 qiyongzheng π |
 Sam K π π£ π¬ |
 Spirizer π |
+
+
 jordbm π π§ π‘οΈ |
+  Austin Huang π π¬ |
+  Ward π |
+  oilmaint π |
+  headdirt π |
+
+
+  Quentin McRee π |
+  Sven π |
+  Tom Honour π |
+  Brogio π |
+  Nathan Youngman π |
+
+
+  Jeremy π |