mtg-playerinfo 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +29 -3
- package/.github/workflows/update-test-data.yml +33 -0
- package/README.md +16 -11
- package/cli.js +30 -13
- package/package.json +21 -2
- package/scripts/update-test-data.js +29 -0
- package/src/fetchers/melee.js +26 -35
- package/src/fetchers/mtgElo.js +40 -40
- package/src/fetchers/topdeck.js +70 -67
- package/src/fetchers/unityLeague.js +45 -45
- package/src/fetchers/untapped.js +54 -0
- package/src/index.js +75 -42
- package/src/utils/httpClient.js +30 -30
- package/test/data/melee.html +77 -62
- package/test/data/mtgElo.html +8 -8
- package/test/data/topdeck.html +778 -662
- package/test/data/topdeck.json +1 -0
- package/test/data/unityLeague.html +1445 -1340
- package/test/data/untapped.json +104 -0
- package/test/edgeCases.test.js +128 -0
- package/test/melee.test.js +23 -23
- package/test/meleeEdgeCases.test.js +53 -0
- package/test/mtgElo.test.js +21 -21
- package/test/mtgEloEdgeCases.test.js +92 -0
- package/test/playerInfoManager.test.js +312 -0
- package/test/topdeck.test.js +42 -29
- package/test/unityLeague.test.js +24 -24
- package/test/unityLeagueEdgeCases.test.js +123 -0
- package/test/untapped.test.js +58 -0
- package/test/verboseLogging.test.js +215 -0
- package/test/winRatePrecision.test.js +25 -0
- package/.github/workflows/pull-player-data.yml +0 -27
|
@@ -1,1340 +1,1445 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<!DOCTYPE html>
|
|
6
|
-
<html class="h-100" lang="en">
|
|
7
|
-
<head>
|
|
8
|
-
<meta charset="utf-8" />
|
|
9
|
-
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
10
|
-
<title>
|
|
11
|
-
Björn Kimminich
|
|
12
|
-
</title>
|
|
13
|
-
<meta name="description" content="Compete in Europe's premier Magic: The Gathering tournament series 'European Unity League'. Gather points at events to win big prizes!">
|
|
14
|
-
<meta property="og:image" content="/static/unityleague.gg/horizontal.png"/>
|
|
15
|
-
<meta name="keywords" content="European Unity League, Magic: The Gathering, Europe, events, tournaments, ranking, leaderboard"/>
|
|
16
|
-
<link rel="stylesheet" href="/static/style8.css" type="text/css">
|
|
17
|
-
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
18
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
19
|
-
<link href="https://fonts.googleapis.com/css2?family=Faculty+Glyphic:wght@400&display=swap" rel="stylesheet">
|
|
20
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/all.min.css" crossorigin="anonymous">
|
|
21
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.2.3/css/flag-icons.min.css"/>
|
|
22
|
-
|
|
23
|
-
</head>
|
|
24
|
-
<body class="d-flex flex-column h-100">
|
|
25
|
-
<nav class="navbar navbar-expand-lg bg-primary d-print-none">
|
|
26
|
-
<div class="container">
|
|
27
|
-
|
|
28
|
-
<a class="navbar-brand" href="/" title="European Unity League - Premier Magic tournament series">
|
|
29
|
-
<img src="/static/unityleague.gg/horizontal.svg" height="40" class="d-inline-block align-top" alt="European Unity League Logo">
|
|
30
|
-
</a>
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
<button class="navbar-toggler m-1" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
|
|
34
|
-
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
35
|
-
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
<li class="nav-item">
|
|
40
|
-
<a class="nav-link" href="/ranking" title="View your country's leaderboard.">Leaderboard</a>
|
|
41
|
-
</li>
|
|
42
|
-
|
|
43
|
-
<li class="nav-item">
|
|
44
|
-
<a class="nav-link" href="/events" title="Find Magic: The Gathering events in Europe">Events</a>
|
|
45
|
-
</li>
|
|
46
|
-
<li class="nav-item dropdown">
|
|
47
|
-
<a class="nav-link dropdown-toggle" href="#" id="infoDropDown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
48
|
-
Info
|
|
49
|
-
</a>
|
|
50
|
-
<ul class="dropdown-menu" aria-labelledby="infoDropDown">
|
|
51
|
-
<li>
|
|
52
|
-
<a class="dropdown-item" href="/info/" title="Learn how points are calculated and the types of events available.">
|
|
53
|
-
League system
|
|
54
|
-
</a>
|
|
55
|
-
</li>
|
|
56
|
-
<li><a class="dropdown-item" href="/info/organizer" title="Learn how to organize events and award points for them.">Organizer tutorial</a></li>
|
|
57
|
-
|
|
58
|
-
<li>
|
|
59
|
-
<a class="dropdown-item" href="/info/player" title="Learn the steps needed to collect points for the Unity League.">
|
|
60
|
-
Participate as player
|
|
61
|
-
</a>
|
|
62
|
-
</li>
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
<li>
|
|
66
|
-
<a class="dropdown-item" href="/articles/" title="Latest news and articles">
|
|
67
|
-
News & articles
|
|
68
|
-
</a>
|
|
69
|
-
</li>
|
|
70
|
-
|
|
71
|
-
</ul>
|
|
72
|
-
</li>
|
|
73
|
-
|
|
74
|
-
<div class="m-1"></div>
|
|
75
|
-
<div class="btn-group" role="group" aria-label="Basic mixed styles example">
|
|
76
|
-
<a class=" btn btn-outline-secondary" href="/accounts/register/">Register</a>
|
|
77
|
-
<a class=" btn btn-secondary" href="/accounts/login/">Login</a>
|
|
78
|
-
</div>
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
</ul>
|
|
82
|
-
</div>
|
|
83
|
-
</div>
|
|
84
|
-
</nav>
|
|
85
|
-
<main class="flex-shrink-0 pb-2">
|
|
86
|
-
<div class="container-sm py-3">
|
|
87
|
-
|
|
88
|
-
<br>
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
<div class="alert alert-success" role="alert">
|
|
92
|
-
|
|
93
|
-
Check out the new league system for 2026. New <em>multipliers</em> and support for <em>custom leagues</em>:
|
|
94
|
-
<a class="btn btn-success btn-sm" href="https://unityleague.gg/info" title="Title">League system</a>
|
|
95
|
-
<a class="btn btn-success btn-sm" href="https://unityleague.gg/info/organizer" title="Title">Organizer tutorial</a>
|
|
96
|
-
</div>
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
<div class="row g-4">
|
|
106
|
-
<div class="col-lg-7 col-12">
|
|
107
|
-
<div class="card mb-2" style="border-radius: 0.6cm;">
|
|
108
|
-
<div class="row card-body">
|
|
109
|
-
<div class="col-12 mb-2 d-flex flex-row justify-content-between">
|
|
110
|
-
<div>
|
|
111
|
-
<h1 class="d-inline me-2">Björn Kimminich</h1>
|
|
112
|
-
|
|
113
|
-
</div>
|
|
114
|
-
|
|
115
|
-
<i class="h1 fi fi-de"></i>
|
|
116
|
-
|
|
117
|
-
</div>
|
|
118
|
-
|
|
119
|
-
<div class="col-lg-4 col-8 mb-2" style="overflow: hidden; max-height: 450px;">
|
|
120
|
-
<img class="img-fluid" src="/media/player_profile/1000023225.jpg" alt="Björn Kimminich" style="width: 100%; height: 100%; object-fit: cover; object-position: top;">
|
|
121
|
-
</div>
|
|
122
|
-
|
|
123
|
-
<div class="col-lg-8 col-4">
|
|
124
|
-
<dl class="row mb-0">
|
|
125
|
-
|
|
126
|
-
<div class="col-lg-6"><dt class="small text-muted">Age </dt><dd>45</dd></div>
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
<div class="col-lg-6"><dt class="small text-muted">Hometown </dt><dd>Hamburg</dd></div>
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
<div class="col-lg-6"><dt class="small text-muted">Local organizer </dt><dd>Mulligan TCG Shop</dd></div>
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
<div class="col-lg-6"><dt class="small text-muted">Team </dt><dd>Mull to Five</dd></div>
|
|
136
|
-
|
|
137
|
-
</dl>
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
<div class="d-flex flex-wrap gap-2 align-items-center d-lg-flex d-none">
|
|
143
|
-
<img class="img-fluid" style="width:80px" src="/static/unityleague.gg/vertical.svg" alt="European Unity League Logo" />
|
|
144
|
-
<div class="flex-grow-1">
|
|
145
|
-
<table class="table table-sm my-0">
|
|
146
|
-
<thead>
|
|
147
|
-
<tr>
|
|
148
|
-
|
|
149
|
-
<th scope="col"><a href="/ranking/2026/DE/">
|
|
150
|
-
Germany
|
|
151
|
-
</a>
|
|
152
|
-
</th>
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
<th scope="col">
|
|
156
|
-
<a href="/ranking/2026/global/">
|
|
157
|
-
Europe
|
|
158
|
-
</a>
|
|
159
|
-
</th>
|
|
160
|
-
|
|
161
|
-
<th scope="col">Points</th>
|
|
162
|
-
</tr>
|
|
163
|
-
</thead>
|
|
164
|
-
<tbody>
|
|
165
|
-
<tr>
|
|
166
|
-
|
|
167
|
-
<td>
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
<td>
|
|
171
|
-
|
|
172
|
-
<td>
|
|
173
|
-
</tr>
|
|
174
|
-
</tbody>
|
|
175
|
-
</table>
|
|
176
|
-
</div>
|
|
177
|
-
</div>
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
</div>
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
<div class="d-flex flex-wrap gap-2 align-items-center d-lg-none">
|
|
186
|
-
<img class="img-fluid" style="width:80px" src="/static/unityleague.gg/vertical.svg" alt="European Unity League Logo" />
|
|
187
|
-
<div class="flex-grow-1">
|
|
188
|
-
<table class="table table-sm my-0">
|
|
189
|
-
<thead>
|
|
190
|
-
<tr>
|
|
191
|
-
|
|
192
|
-
<th scope="col"><a href="/ranking/2026/DE/">
|
|
193
|
-
Germany
|
|
194
|
-
</a>
|
|
195
|
-
</th>
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
<th scope="col">
|
|
199
|
-
<a href="/ranking/2026/global/">
|
|
200
|
-
Europe
|
|
201
|
-
</a>
|
|
202
|
-
</th>
|
|
203
|
-
|
|
204
|
-
<th scope="col">Points</th>
|
|
205
|
-
</tr>
|
|
206
|
-
</thead>
|
|
207
|
-
<tbody>
|
|
208
|
-
<tr>
|
|
209
|
-
|
|
210
|
-
<td>
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
<td>
|
|
214
|
-
|
|
215
|
-
<td>
|
|
216
|
-
</tr>
|
|
217
|
-
</tbody>
|
|
218
|
-
</table>
|
|
219
|
-
</div>
|
|
220
|
-
</div>
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
<div class="d-flex flex-wrap gap-2 mt-2">
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
</div>
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
<small class="mt-2">Smugly held back on an Untimely Malfunction against a Storm player going off, being totally sure that you can redirect the summed-up damage of their Grapeshots back to their face with its "Change the target of target spell or ability with a single target" mode.</small>
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
</div>
|
|
235
|
-
</div>
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
</div>
|
|
242
|
-
|
|
243
|
-
<div class="col-lg-5 col-12">
|
|
244
|
-
|
|
245
|
-
<div class="card bg-gradient bg-primary rounded border-secondary border-2">
|
|
246
|
-
<div class="card-body text-center">
|
|
247
|
-
|
|
248
|
-
<img src="/static/european_magic_cup.png" class="img-fluid" alt="European Magic Cup Logo" style="height: 250px;">
|
|
249
|
-
|
|
250
|
-
<h5 class="card-title mb-2 mt-4 text-secondary">🎯 Your journey starts here</h5>
|
|
251
|
-
<p class="card-text">Track your matches, rank up, and get your own player card!</p>
|
|
252
|
-
<a href="/accounts/register/" class="btn btn-secondary-light btn-sm mt-2">Register now!</a>
|
|
253
|
-
</div>
|
|
254
|
-
</div>
|
|
255
|
-
|
|
256
|
-
</div>
|
|
257
|
-
</div>
|
|
258
|
-
|
|
259
|
-
<h2 class="mt-3">Achievements in Season 2026</h2>
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
<div class="dropdown">
|
|
263
|
-
<button class="btn btn-secondary dropdown-toggle" type="button" id="season_dropdown_button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
264
|
-
Season 2026
|
|
265
|
-
</button>
|
|
266
|
-
<ul class="dropdown-menu" aria-labelledby="season_dropdown_button">
|
|
267
|
-
|
|
268
|
-
<li><a class="dropdown-item" href="/player/16215/season/2026">Season 2026</a></li>
|
|
269
|
-
|
|
270
|
-
<li><a class="dropdown-item" href="/player/16215/season/eu2025">Season 2025</a></li>
|
|
271
|
-
|
|
272
|
-
</ul>
|
|
273
|
-
</div>
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
<div class="container">
|
|
278
|
-
<div class="row">
|
|
279
|
-
|
|
280
|
-
<div class="col-lg-6 p-0 pe-lg-5 my-4">
|
|
281
|
-
<h3 class="text-lg-center">League Points</h3>
|
|
282
|
-
<div class="table-responsive">
|
|
283
|
-
<table class="table table-striped m-0">
|
|
284
|
-
<thead>
|
|
285
|
-
<tr>
|
|
286
|
-
|
|
287
|
-
<th></th>
|
|
288
|
-
|
|
289
|
-
<th>Grand Prix</th>
|
|
290
|
-
|
|
291
|
-
<th>Premier</th>
|
|
292
|
-
|
|
293
|
-
<th>Regular</th>
|
|
294
|
-
|
|
295
|
-
<th>Total</th>
|
|
296
|
-
|
|
297
|
-
</tr>
|
|
298
|
-
</thead>
|
|
299
|
-
<tbody>
|
|
300
|
-
|
|
301
|
-
<tr>
|
|
302
|
-
|
|
303
|
-
<td>League Points</td>
|
|
304
|
-
|
|
305
|
-
<td>36</td>
|
|
306
|
-
|
|
307
|
-
<td>78</td>
|
|
308
|
-
|
|
309
|
-
<td>
|
|
310
|
-
|
|
311
|
-
<td>
|
|
312
|
-
|
|
313
|
-
</tr>
|
|
314
|
-
|
|
315
|
-
<tr>
|
|
316
|
-
|
|
317
|
-
<td>Events</td>
|
|
318
|
-
|
|
319
|
-
<td>1</td>
|
|
320
|
-
|
|
321
|
-
<td>1</td>
|
|
322
|
-
|
|
323
|
-
<td>
|
|
324
|
-
|
|
325
|
-
<td>
|
|
326
|
-
|
|
327
|
-
</tr>
|
|
328
|
-
|
|
329
|
-
</tbody>
|
|
330
|
-
</table>
|
|
331
|
-
</div>
|
|
332
|
-
</div>
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
</div>
|
|
337
|
-
</div>
|
|
338
|
-
|
|
339
|
-
<div class="my-4">
|
|
340
|
-
<h3>Performance per format</h3>
|
|
341
|
-
<div class="table-responsive">
|
|
342
|
-
<table class="table table-striped">
|
|
343
|
-
<thead>
|
|
344
|
-
<tr>
|
|
345
|
-
<th scope="col">Format</th>
|
|
346
|
-
<th scope="col">Record</th>
|
|
347
|
-
<th scope="col">
|
|
348
|
-
<span data-bs-toggle="tooltip"
|
|
349
|
-
data-bs-html="true"
|
|
350
|
-
title="How many <b><em>match points</em></b> the player earned compared to the <b><em>maximum possible</em></b>."
|
|
351
|
-
data-bs-placement="bottom">
|
|
352
|
-
Match-win % <i class="fa-solid fa-info-circle"></i>
|
|
353
|
-
</span>
|
|
354
|
-
</th>
|
|
355
|
-
<th scope="col">
|
|
356
|
-
<span data-bs-toggle="tooltip"
|
|
357
|
-
data-bs-html="true"
|
|
358
|
-
title="How many matches the player <b><em>won</em></b> compared to all matches they <b><em>won or lost</em></b>."
|
|
359
|
-
data-bs-placement="bottom">
|
|
360
|
-
Win-loss ratio <i class="fa-solid fa-info-circle"></i>
|
|
361
|
-
</span>
|
|
362
|
-
</th>
|
|
363
|
-
<th scope="col">
|
|
364
|
-
<span data-bs-toggle="tooltip"
|
|
365
|
-
data-bs-html="true"
|
|
366
|
-
title="How many <b><em>draws</em></b> the player had compared to all matches they <b><em>played</em></b>."
|
|
367
|
-
data-bs-placement="bottom">
|
|
368
|
-
Draw % <i class="fa-solid fa-info-circle"></i>
|
|
369
|
-
</span>
|
|
370
|
-
</th>
|
|
371
|
-
</tr>
|
|
372
|
-
</thead>
|
|
373
|
-
<tbody>
|
|
374
|
-
|
|
375
|
-
<tr>
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
<td>Pauper</td>
|
|
379
|
-
<td>
|
|
380
|
-
<td>66.7%</td>
|
|
381
|
-
<td>66.7%</td>
|
|
382
|
-
<td>0.0%</td>
|
|
383
|
-
|
|
384
|
-
</tr>
|
|
385
|
-
|
|
386
|
-
<tr>
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
<td>Standard</td>
|
|
390
|
-
<td>
|
|
391
|
-
<td>
|
|
392
|
-
<td>
|
|
393
|
-
<td>
|
|
394
|
-
|
|
395
|
-
</tr>
|
|
396
|
-
|
|
397
|
-
<tr>
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
<td>Modern</td>
|
|
401
|
-
<td>16 - 15 - 2</td>
|
|
402
|
-
<td>50.5%</td>
|
|
403
|
-
<td>51.6%</td>
|
|
404
|
-
<td>6.1%</td>
|
|
405
|
-
|
|
406
|
-
</tr>
|
|
407
|
-
|
|
408
|
-
<tr>
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
<td><b>Overall</b></td>
|
|
412
|
-
<td><b>
|
|
413
|
-
<td><b>
|
|
414
|
-
<td><b>
|
|
415
|
-
<td><b>5.
|
|
416
|
-
|
|
417
|
-
</tr>
|
|
418
|
-
|
|
419
|
-
</tbody>
|
|
420
|
-
</table>
|
|
421
|
-
</div>
|
|
422
|
-
</div>
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
<div class="my-4">
|
|
428
|
-
<h2>Event history</h2>
|
|
429
|
-
<div class="alert alert-secondary d-inline-flex align-items-center pe-4" role="alert" style="width: auto;">
|
|
430
|
-
<div><i class="fa fa-trophy me-3" style="font-size: 1.5rem;"></i></div>
|
|
431
|
-
<div>
|
|
432
|
-
<p class="mb-1">Want to collect points at local events?</p>
|
|
433
|
-
Tell your local organizer to register them <a href="/info/organizer" class="fw-bold">here</a>!
|
|
434
|
-
</div>
|
|
435
|
-
</div>
|
|
436
|
-
<div class="table-responsive">
|
|
437
|
-
<table class="table table-striped">
|
|
438
|
-
<thead>
|
|
439
|
-
<tr>
|
|
440
|
-
<th scope="col">Rank</th>
|
|
441
|
-
<th scope="col">Event/Date</th>
|
|
442
|
-
<th scope="col">League Points</th>
|
|
443
|
-
<th scope="col">Record</th>
|
|
444
|
-
<th scope="col">Type/Format</th>
|
|
445
|
-
</tr>
|
|
446
|
-
</thead>
|
|
447
|
-
<tbody>
|
|
448
|
-
|
|
449
|
-
<tr>
|
|
450
|
-
<td>2nd</td>
|
|
451
|
-
<td>
|
|
452
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
453
|
-
<div style="min-width: 150px;" >Wed,
|
|
454
|
-
<a href="/events/
|
|
455
|
-
</div>
|
|
456
|
-
</td>
|
|
457
|
-
<td>
|
|
458
|
-
<span data-bs-toggle="tooltip"
|
|
459
|
-
data-bs-placement="left"
|
|
460
|
-
data-bs-html="true"
|
|
461
|
-
data-bs-title="
|
|
462
|
-
<ul>
|
|
463
|
-
<li>Match points: 6</li>
|
|
464
|
-
<li>Participation: 3</li>
|
|
465
|
-
</ul>
|
|
466
|
-
<span>Multiplied by 1x: 9 total</span>
|
|
467
|
-
">
|
|
468
|
-
9
|
|
469
|
-
</span>
|
|
470
|
-
</td>
|
|
471
|
-
<td class="text-nowrap">2 - 1 - 0</td>
|
|
472
|
-
<td>
|
|
473
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
474
|
-
<div style="min-width: 150px;">
|
|
475
|
-
|
|
476
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
477
|
-
|
|
478
|
-
</div>
|
|
479
|
-
<div>Pauper</div>
|
|
480
|
-
</div>
|
|
481
|
-
</td>
|
|
482
|
-
</tr>
|
|
483
|
-
|
|
484
|
-
<tr>
|
|
485
|
-
<td>
|
|
486
|
-
<td>
|
|
487
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
488
|
-
<div style="min-width: 150px;" >Mon,
|
|
489
|
-
<a href="/events/
|
|
490
|
-
</div>
|
|
491
|
-
</td>
|
|
492
|
-
<td>
|
|
493
|
-
<span data-bs-toggle="tooltip"
|
|
494
|
-
data-bs-placement="left"
|
|
495
|
-
data-bs-html="true"
|
|
496
|
-
data-bs-title="
|
|
497
|
-
<ul>
|
|
498
|
-
<li>Match points:
|
|
499
|
-
<li>Participation: 3</li>
|
|
500
|
-
</ul>
|
|
501
|
-
<span>Multiplied by 1x:
|
|
502
|
-
">
|
|
503
|
-
|
|
504
|
-
</span>
|
|
505
|
-
</td>
|
|
506
|
-
<td class="text-nowrap">
|
|
507
|
-
<td>
|
|
508
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
509
|
-
<div style="min-width: 150px;">
|
|
510
|
-
|
|
511
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
512
|
-
|
|
513
|
-
</div>
|
|
514
|
-
<div>Standard</div>
|
|
515
|
-
</div>
|
|
516
|
-
</td>
|
|
517
|
-
</tr>
|
|
518
|
-
|
|
519
|
-
<tr>
|
|
520
|
-
<td>
|
|
521
|
-
<td>
|
|
522
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
523
|
-
<div style="min-width: 150px;" >
|
|
524
|
-
<a href="/events/
|
|
525
|
-
</div>
|
|
526
|
-
</td>
|
|
527
|
-
<td>
|
|
528
|
-
<span data-bs-toggle="tooltip"
|
|
529
|
-
data-bs-placement="left"
|
|
530
|
-
data-bs-html="true"
|
|
531
|
-
data-bs-title="
|
|
532
|
-
<ul>
|
|
533
|
-
<li>Match points:
|
|
534
|
-
<li>Participation: 3</li>
|
|
535
|
-
</ul>
|
|
536
|
-
<span>Multiplied by 1x:
|
|
537
|
-
">
|
|
538
|
-
|
|
539
|
-
</span>
|
|
540
|
-
</td>
|
|
541
|
-
<td class="text-nowrap">
|
|
542
|
-
<td>
|
|
543
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
544
|
-
<div style="min-width: 150px;">
|
|
545
|
-
|
|
546
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
547
|
-
|
|
548
|
-
</div>
|
|
549
|
-
<div>Standard</div>
|
|
550
|
-
</div>
|
|
551
|
-
</td>
|
|
552
|
-
</tr>
|
|
553
|
-
|
|
554
|
-
<tr>
|
|
555
|
-
<td>
|
|
556
|
-
<td>
|
|
557
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
558
|
-
<div style="min-width: 150px;" >
|
|
559
|
-
<a href="/events/
|
|
560
|
-
</div>
|
|
561
|
-
</td>
|
|
562
|
-
<td>
|
|
563
|
-
<span data-bs-toggle="tooltip"
|
|
564
|
-
data-bs-placement="left"
|
|
565
|
-
data-bs-html="true"
|
|
566
|
-
data-bs-title="
|
|
567
|
-
<ul>
|
|
568
|
-
<li>Match points:
|
|
569
|
-
<li>Participation: 3</li>
|
|
570
|
-
</ul>
|
|
571
|
-
<span>Multiplied by 1x:
|
|
572
|
-
">
|
|
573
|
-
|
|
574
|
-
</span>
|
|
575
|
-
</td>
|
|
576
|
-
<td class="text-nowrap">
|
|
577
|
-
<td>
|
|
578
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
579
|
-
<div style="min-width: 150px;">
|
|
580
|
-
|
|
581
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
582
|
-
|
|
583
|
-
</div>
|
|
584
|
-
<div>
|
|
585
|
-
</div>
|
|
586
|
-
</td>
|
|
587
|
-
</tr>
|
|
588
|
-
|
|
589
|
-
<tr>
|
|
590
|
-
<td>
|
|
591
|
-
<td>
|
|
592
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
593
|
-
<div style="min-width: 150px;" >Mon,
|
|
594
|
-
<a href="/events/
|
|
595
|
-
</div>
|
|
596
|
-
</td>
|
|
597
|
-
<td>
|
|
598
|
-
<span data-bs-toggle="tooltip"
|
|
599
|
-
data-bs-placement="left"
|
|
600
|
-
data-bs-html="true"
|
|
601
|
-
data-bs-title="
|
|
602
|
-
<ul>
|
|
603
|
-
<li>Match points: 6</li>
|
|
604
|
-
<li>Participation: 3</li>
|
|
605
|
-
</ul>
|
|
606
|
-
<span>Multiplied by 1x: 9 total</span>
|
|
607
|
-
">
|
|
608
|
-
9
|
|
609
|
-
</span>
|
|
610
|
-
</td>
|
|
611
|
-
<td class="text-nowrap">2 - 2 - 0</td>
|
|
612
|
-
<td>
|
|
613
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
614
|
-
<div style="min-width: 150px;">
|
|
615
|
-
|
|
616
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
617
|
-
|
|
618
|
-
</div>
|
|
619
|
-
<div>Standard</div>
|
|
620
|
-
</div>
|
|
621
|
-
</td>
|
|
622
|
-
</tr>
|
|
623
|
-
|
|
624
|
-
<tr>
|
|
625
|
-
<td>
|
|
626
|
-
<td>
|
|
627
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
628
|
-
<div style="min-width: 150px;" >
|
|
629
|
-
<a href="/events/
|
|
630
|
-
</div>
|
|
631
|
-
</td>
|
|
632
|
-
<td>
|
|
633
|
-
<span data-bs-toggle="tooltip"
|
|
634
|
-
data-bs-placement="left"
|
|
635
|
-
data-bs-html="true"
|
|
636
|
-
data-bs-title="
|
|
637
|
-
<ul>
|
|
638
|
-
<li>Match points:
|
|
639
|
-
<li>Participation: 3</li>
|
|
640
|
-
</ul>
|
|
641
|
-
<span>Multiplied by
|
|
642
|
-
">
|
|
643
|
-
|
|
644
|
-
</span>
|
|
645
|
-
</td>
|
|
646
|
-
<td class="text-nowrap">
|
|
647
|
-
<td>
|
|
648
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
649
|
-
<div style="min-width: 150px;">
|
|
650
|
-
|
|
651
|
-
<img src="/static/types/text_icons/
|
|
652
|
-
|
|
653
|
-
</div>
|
|
654
|
-
<div>Standard</div>
|
|
655
|
-
</div>
|
|
656
|
-
</td>
|
|
657
|
-
</tr>
|
|
658
|
-
|
|
659
|
-
<tr>
|
|
660
|
-
<td>
|
|
661
|
-
<td>
|
|
662
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
663
|
-
<div style="min-width: 150px;" >
|
|
664
|
-
<a href="/events/
|
|
665
|
-
</div>
|
|
666
|
-
</td>
|
|
667
|
-
<td>
|
|
668
|
-
<span data-bs-toggle="tooltip"
|
|
669
|
-
data-bs-placement="left"
|
|
670
|
-
data-bs-html="true"
|
|
671
|
-
data-bs-title="
|
|
672
|
-
<ul>
|
|
673
|
-
<li>Match points:
|
|
674
|
-
<li>Participation: 3</li>
|
|
675
|
-
</ul>
|
|
676
|
-
<span>Multiplied by 1x:
|
|
677
|
-
">
|
|
678
|
-
|
|
679
|
-
</span>
|
|
680
|
-
</td>
|
|
681
|
-
<td class="text-nowrap">
|
|
682
|
-
<td>
|
|
683
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
684
|
-
<div style="min-width: 150px;">
|
|
685
|
-
|
|
686
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
687
|
-
|
|
688
|
-
</div>
|
|
689
|
-
<div>
|
|
690
|
-
</div>
|
|
691
|
-
</td>
|
|
692
|
-
</tr>
|
|
693
|
-
|
|
694
|
-
<tr>
|
|
695
|
-
<td>
|
|
696
|
-
<td>
|
|
697
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
698
|
-
<div style="min-width: 150px;" >
|
|
699
|
-
<a href="/events/
|
|
700
|
-
</div>
|
|
701
|
-
</td>
|
|
702
|
-
<td>
|
|
703
|
-
<span data-bs-toggle="tooltip"
|
|
704
|
-
data-bs-placement="left"
|
|
705
|
-
data-bs-html="true"
|
|
706
|
-
data-bs-title="
|
|
707
|
-
<ul>
|
|
708
|
-
<li>Match points:
|
|
709
|
-
<li>Participation: 3</li>
|
|
710
|
-
</ul>
|
|
711
|
-
<span>Multiplied by 1x:
|
|
712
|
-
">
|
|
713
|
-
|
|
714
|
-
</span>
|
|
715
|
-
</td>
|
|
716
|
-
<td class="text-nowrap">2 -
|
|
717
|
-
<td>
|
|
718
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
719
|
-
<div style="min-width: 150px;">
|
|
720
|
-
|
|
721
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
722
|
-
|
|
723
|
-
</div>
|
|
724
|
-
<div>
|
|
725
|
-
</div>
|
|
726
|
-
</td>
|
|
727
|
-
</tr>
|
|
728
|
-
|
|
729
|
-
<tr>
|
|
730
|
-
<td>
|
|
731
|
-
<td>
|
|
732
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
733
|
-
<div style="min-width: 150px;" >
|
|
734
|
-
<a href="/events/
|
|
735
|
-
</div>
|
|
736
|
-
</td>
|
|
737
|
-
<td>
|
|
738
|
-
<span data-bs-toggle="tooltip"
|
|
739
|
-
data-bs-placement="left"
|
|
740
|
-
data-bs-html="true"
|
|
741
|
-
data-bs-title="
|
|
742
|
-
<ul>
|
|
743
|
-
<li>Match points:
|
|
744
|
-
<li>Participation: 3</li>
|
|
745
|
-
</ul>
|
|
746
|
-
<span>Multiplied by
|
|
747
|
-
">
|
|
748
|
-
|
|
749
|
-
</span>
|
|
750
|
-
</td>
|
|
751
|
-
<td class="text-nowrap">
|
|
752
|
-
<td>
|
|
753
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
754
|
-
<div style="min-width: 150px;">
|
|
755
|
-
|
|
756
|
-
<img src="/static/types/text_icons/
|
|
757
|
-
|
|
758
|
-
</div>
|
|
759
|
-
<div>Standard</div>
|
|
760
|
-
</div>
|
|
761
|
-
</td>
|
|
762
|
-
</tr>
|
|
763
|
-
|
|
764
|
-
<tr>
|
|
765
|
-
<td>
|
|
766
|
-
<td>
|
|
767
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
768
|
-
<div style="min-width: 150px;" >Mon,
|
|
769
|
-
<a href="/events/
|
|
770
|
-
</div>
|
|
771
|
-
</td>
|
|
772
|
-
<td>
|
|
773
|
-
<span data-bs-toggle="tooltip"
|
|
774
|
-
data-bs-placement="left"
|
|
775
|
-
data-bs-html="true"
|
|
776
|
-
data-bs-title="
|
|
777
|
-
<ul>
|
|
778
|
-
<li>Match points:
|
|
779
|
-
<li>Participation: 3</li>
|
|
780
|
-
</ul>
|
|
781
|
-
<span>Multiplied by 1x:
|
|
782
|
-
">
|
|
783
|
-
|
|
784
|
-
</span>
|
|
785
|
-
</td>
|
|
786
|
-
<td class="text-nowrap">
|
|
787
|
-
<td>
|
|
788
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
789
|
-
<div style="min-width: 150px;">
|
|
790
|
-
|
|
791
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
792
|
-
|
|
793
|
-
</div>
|
|
794
|
-
<div>Standard</div>
|
|
795
|
-
</div>
|
|
796
|
-
</td>
|
|
797
|
-
</tr>
|
|
798
|
-
|
|
799
|
-
<tr>
|
|
800
|
-
<td>
|
|
801
|
-
<td>
|
|
802
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
803
|
-
<div style="min-width: 150px;" >Fri,
|
|
804
|
-
<a href="/events/
|
|
805
|
-
</div>
|
|
806
|
-
</td>
|
|
807
|
-
<td>
|
|
808
|
-
<span data-bs-toggle="tooltip"
|
|
809
|
-
data-bs-placement="left"
|
|
810
|
-
data-bs-html="true"
|
|
811
|
-
data-bs-title="
|
|
812
|
-
<ul>
|
|
813
|
-
<li>Match points:
|
|
814
|
-
<li>Participation: 3</li>
|
|
815
|
-
</ul>
|
|
816
|
-
<span>Multiplied by 1x:
|
|
817
|
-
">
|
|
818
|
-
|
|
819
|
-
</span>
|
|
820
|
-
</td>
|
|
821
|
-
<td class="text-nowrap">2 -
|
|
822
|
-
<td>
|
|
823
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
824
|
-
<div style="min-width: 150px;">
|
|
825
|
-
|
|
826
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
827
|
-
|
|
828
|
-
</div>
|
|
829
|
-
<div>Modern</div>
|
|
830
|
-
</div>
|
|
831
|
-
</td>
|
|
832
|
-
</tr>
|
|
833
|
-
|
|
834
|
-
<tr>
|
|
835
|
-
<td>
|
|
836
|
-
<td>
|
|
837
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
838
|
-
<div style="min-width: 150px;" >Mon,
|
|
839
|
-
<a href="/events/
|
|
840
|
-
</div>
|
|
841
|
-
</td>
|
|
842
|
-
<td>
|
|
843
|
-
<span data-bs-toggle="tooltip"
|
|
844
|
-
data-bs-placement="left"
|
|
845
|
-
data-bs-html="true"
|
|
846
|
-
data-bs-title="
|
|
847
|
-
<ul>
|
|
848
|
-
<li>Match points:
|
|
849
|
-
<li>Participation: 3</li>
|
|
850
|
-
</ul>
|
|
851
|
-
<span>Multiplied by 1x:
|
|
852
|
-
">
|
|
853
|
-
|
|
854
|
-
</span>
|
|
855
|
-
</td>
|
|
856
|
-
<td class="text-nowrap">
|
|
857
|
-
<td>
|
|
858
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
859
|
-
<div style="min-width: 150px;">
|
|
860
|
-
|
|
861
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
862
|
-
|
|
863
|
-
</div>
|
|
864
|
-
<div>Standard</div>
|
|
865
|
-
</div>
|
|
866
|
-
</td>
|
|
867
|
-
</tr>
|
|
868
|
-
|
|
869
|
-
<tr>
|
|
870
|
-
<td>
|
|
871
|
-
<td>
|
|
872
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
873
|
-
<div style="min-width: 150px;" >
|
|
874
|
-
<a href="/events/
|
|
875
|
-
</div>
|
|
876
|
-
</td>
|
|
877
|
-
<td>
|
|
878
|
-
<span data-bs-toggle="tooltip"
|
|
879
|
-
data-bs-placement="left"
|
|
880
|
-
data-bs-html="true"
|
|
881
|
-
data-bs-title="
|
|
882
|
-
<ul>
|
|
883
|
-
<li>Match points:
|
|
884
|
-
<li>Participation: 3</li>
|
|
885
|
-
</ul>
|
|
886
|
-
<span>Multiplied by 1x:
|
|
887
|
-
">
|
|
888
|
-
|
|
889
|
-
</span>
|
|
890
|
-
</td>
|
|
891
|
-
<td class="text-nowrap">
|
|
892
|
-
<td>
|
|
893
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
894
|
-
<div style="min-width: 150px;">
|
|
895
|
-
|
|
896
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
897
|
-
|
|
898
|
-
</div>
|
|
899
|
-
<div>
|
|
900
|
-
</div>
|
|
901
|
-
</td>
|
|
902
|
-
</tr>
|
|
903
|
-
|
|
904
|
-
<tr>
|
|
905
|
-
<td>
|
|
906
|
-
<td>
|
|
907
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
908
|
-
<div style="min-width: 150px;" >
|
|
909
|
-
<a href="/events/
|
|
910
|
-
</div>
|
|
911
|
-
</td>
|
|
912
|
-
<td>
|
|
913
|
-
<span data-bs-toggle="tooltip"
|
|
914
|
-
data-bs-placement="left"
|
|
915
|
-
data-bs-html="true"
|
|
916
|
-
data-bs-title="
|
|
917
|
-
<ul>
|
|
918
|
-
<li>Match points: 6</li>
|
|
919
|
-
<li>Participation: 3</li>
|
|
920
|
-
</ul>
|
|
921
|
-
<span>Multiplied by 1x: 9 total</span>
|
|
922
|
-
">
|
|
923
|
-
9
|
|
924
|
-
</span>
|
|
925
|
-
</td>
|
|
926
|
-
<td class="text-nowrap">2 -
|
|
927
|
-
<td>
|
|
928
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
929
|
-
<div style="min-width: 150px;">
|
|
930
|
-
|
|
931
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
932
|
-
|
|
933
|
-
</div>
|
|
934
|
-
<div>
|
|
935
|
-
</div>
|
|
936
|
-
</td>
|
|
937
|
-
</tr>
|
|
938
|
-
|
|
939
|
-
<tr>
|
|
940
|
-
<td>
|
|
941
|
-
<td>
|
|
942
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
943
|
-
<div style="min-width: 150px;" >
|
|
944
|
-
<a href="/events/
|
|
945
|
-
</div>
|
|
946
|
-
</td>
|
|
947
|
-
<td>
|
|
948
|
-
<span data-bs-toggle="tooltip"
|
|
949
|
-
data-bs-placement="left"
|
|
950
|
-
data-bs-html="true"
|
|
951
|
-
data-bs-title="
|
|
952
|
-
<ul>
|
|
953
|
-
<li>Match points:
|
|
954
|
-
<li>Participation: 3</li>
|
|
955
|
-
</ul>
|
|
956
|
-
<span>Multiplied by 1x:
|
|
957
|
-
">
|
|
958
|
-
|
|
959
|
-
</span>
|
|
960
|
-
</td>
|
|
961
|
-
<td class="text-nowrap">
|
|
962
|
-
<td>
|
|
963
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
964
|
-
<div style="min-width: 150px;">
|
|
965
|
-
|
|
966
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
967
|
-
|
|
968
|
-
</div>
|
|
969
|
-
<div>
|
|
970
|
-
</div>
|
|
971
|
-
</td>
|
|
972
|
-
</tr>
|
|
973
|
-
|
|
974
|
-
<tr>
|
|
975
|
-
<td>
|
|
976
|
-
<td>
|
|
977
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
978
|
-
<div style="min-width: 150px;" >Fri,
|
|
979
|
-
<a href="/events/
|
|
980
|
-
</div>
|
|
981
|
-
</td>
|
|
982
|
-
<td>
|
|
983
|
-
<span data-bs-toggle="tooltip"
|
|
984
|
-
data-bs-placement="left"
|
|
985
|
-
data-bs-html="true"
|
|
986
|
-
data-bs-title="
|
|
987
|
-
<ul>
|
|
988
|
-
<li>Match points:
|
|
989
|
-
<li>Participation: 3</li>
|
|
990
|
-
</ul>
|
|
991
|
-
<span>Multiplied by 1x:
|
|
992
|
-
">
|
|
993
|
-
|
|
994
|
-
</span>
|
|
995
|
-
</td>
|
|
996
|
-
<td class="text-nowrap">
|
|
997
|
-
<td>
|
|
998
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
999
|
-
<div style="min-width: 150px;">
|
|
1000
|
-
|
|
1001
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1002
|
-
|
|
1003
|
-
</div>
|
|
1004
|
-
<div>Modern</div>
|
|
1005
|
-
</div>
|
|
1006
|
-
</td>
|
|
1007
|
-
</tr>
|
|
1008
|
-
|
|
1009
|
-
<tr>
|
|
1010
|
-
<td>
|
|
1011
|
-
<td>
|
|
1012
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1013
|
-
<div style="min-width: 150px;" >
|
|
1014
|
-
<a href="/events/
|
|
1015
|
-
</div>
|
|
1016
|
-
</td>
|
|
1017
|
-
<td>
|
|
1018
|
-
<span data-bs-toggle="tooltip"
|
|
1019
|
-
data-bs-placement="left"
|
|
1020
|
-
data-bs-html="true"
|
|
1021
|
-
data-bs-title="
|
|
1022
|
-
<ul>
|
|
1023
|
-
<li>Match points: 6</li>
|
|
1024
|
-
<li>Participation: 3</li>
|
|
1025
|
-
</ul>
|
|
1026
|
-
<span>Multiplied by 1x: 9 total</span>
|
|
1027
|
-
">
|
|
1028
|
-
9
|
|
1029
|
-
</span>
|
|
1030
|
-
</td>
|
|
1031
|
-
<td class="text-nowrap">2 - 1 - 0</td>
|
|
1032
|
-
<td>
|
|
1033
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
1034
|
-
<div style="min-width: 150px;">
|
|
1035
|
-
|
|
1036
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1037
|
-
|
|
1038
|
-
</div>
|
|
1039
|
-
<div>Standard</div>
|
|
1040
|
-
</div>
|
|
1041
|
-
</td>
|
|
1042
|
-
</tr>
|
|
1043
|
-
|
|
1044
|
-
<tr>
|
|
1045
|
-
<td>
|
|
1046
|
-
<td>
|
|
1047
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1048
|
-
<div style="min-width: 150px;" >Fri,
|
|
1049
|
-
<a href="/events/
|
|
1050
|
-
</div>
|
|
1051
|
-
</td>
|
|
1052
|
-
<td>
|
|
1053
|
-
<span data-bs-toggle="tooltip"
|
|
1054
|
-
data-bs-placement="left"
|
|
1055
|
-
data-bs-html="true"
|
|
1056
|
-
data-bs-title="
|
|
1057
|
-
<ul>
|
|
1058
|
-
<li>Match points:
|
|
1059
|
-
<li>Participation: 3</li>
|
|
1060
|
-
</ul>
|
|
1061
|
-
<span>Multiplied by 1x:
|
|
1062
|
-
">
|
|
1063
|
-
|
|
1064
|
-
</span>
|
|
1065
|
-
</td>
|
|
1066
|
-
<td class="text-nowrap">
|
|
1067
|
-
<td>
|
|
1068
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
1069
|
-
<div style="min-width: 150px;">
|
|
1070
|
-
|
|
1071
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1072
|
-
|
|
1073
|
-
</div>
|
|
1074
|
-
<div>Modern</div>
|
|
1075
|
-
</div>
|
|
1076
|
-
</td>
|
|
1077
|
-
</tr>
|
|
1078
|
-
|
|
1079
|
-
<tr>
|
|
1080
|
-
<td>
|
|
1081
|
-
<td>
|
|
1082
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1083
|
-
<div style="min-width: 150px;" >
|
|
1084
|
-
<a href="/events/
|
|
1085
|
-
</div>
|
|
1086
|
-
</td>
|
|
1087
|
-
<td>
|
|
1088
|
-
<span data-bs-toggle="tooltip"
|
|
1089
|
-
data-bs-placement="left"
|
|
1090
|
-
data-bs-html="true"
|
|
1091
|
-
data-bs-title="
|
|
1092
|
-
<ul>
|
|
1093
|
-
<li>Match points:
|
|
1094
|
-
<li>Participation: 3</li>
|
|
1095
|
-
</ul>
|
|
1096
|
-
<span>Multiplied by
|
|
1097
|
-
">
|
|
1098
|
-
|
|
1099
|
-
</span>
|
|
1100
|
-
</td>
|
|
1101
|
-
<td class="text-nowrap">
|
|
1102
|
-
<td>
|
|
1103
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
1104
|
-
<div style="min-width: 150px;">
|
|
1105
|
-
|
|
1106
|
-
<img src="/static/types/text_icons/
|
|
1107
|
-
|
|
1108
|
-
</div>
|
|
1109
|
-
<div>
|
|
1110
|
-
</div>
|
|
1111
|
-
</td>
|
|
1112
|
-
</tr>
|
|
1113
|
-
|
|
1114
|
-
<tr>
|
|
1115
|
-
<td>
|
|
1116
|
-
<td>
|
|
1117
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1118
|
-
<div style="min-width: 150px;" >Tue,
|
|
1119
|
-
<a href="/events/
|
|
1120
|
-
</div>
|
|
1121
|
-
</td>
|
|
1122
|
-
<td>
|
|
1123
|
-
<span data-bs-toggle="tooltip"
|
|
1124
|
-
data-bs-placement="left"
|
|
1125
|
-
data-bs-html="true"
|
|
1126
|
-
data-bs-title="
|
|
1127
|
-
<ul>
|
|
1128
|
-
<li>Match points: 6</li>
|
|
1129
|
-
<li>Participation: 3</li>
|
|
1130
|
-
</ul>
|
|
1131
|
-
<span>Multiplied by 1x: 9 total</span>
|
|
1132
|
-
">
|
|
1133
|
-
9
|
|
1134
|
-
</span>
|
|
1135
|
-
</td>
|
|
1136
|
-
<td class="text-nowrap">2 - 1 - 0</td>
|
|
1137
|
-
<td>
|
|
1138
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
1139
|
-
<div style="min-width: 150px;">
|
|
1140
|
-
|
|
1141
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1142
|
-
|
|
1143
|
-
</div>
|
|
1144
|
-
<div>Standard</div>
|
|
1145
|
-
</div>
|
|
1146
|
-
</td>
|
|
1147
|
-
</tr>
|
|
1148
|
-
|
|
1149
|
-
<tr>
|
|
1150
|
-
<td>
|
|
1151
|
-
<td>
|
|
1152
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1153
|
-
<div style="min-width: 150px;" >Fri,
|
|
1154
|
-
<a href="/events/
|
|
1155
|
-
</div>
|
|
1156
|
-
</td>
|
|
1157
|
-
<td>
|
|
1158
|
-
<span data-bs-toggle="tooltip"
|
|
1159
|
-
data-bs-placement="left"
|
|
1160
|
-
data-bs-html="true"
|
|
1161
|
-
data-bs-title="
|
|
1162
|
-
<ul>
|
|
1163
|
-
<li>Match points: 9</li>
|
|
1164
|
-
<li>Participation: 3</li>
|
|
1165
|
-
</ul>
|
|
1166
|
-
<span>Multiplied by 1x: 12 total</span>
|
|
1167
|
-
">
|
|
1168
|
-
12
|
|
1169
|
-
</span>
|
|
1170
|
-
</td>
|
|
1171
|
-
<td class="text-nowrap">3 - 1 - 0</td>
|
|
1172
|
-
<td>
|
|
1173
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
1174
|
-
<div style="min-width: 150px;">
|
|
1175
|
-
|
|
1176
|
-
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1177
|
-
|
|
1178
|
-
</div>
|
|
1179
|
-
<div>Modern</div>
|
|
1180
|
-
</div>
|
|
1181
|
-
</td>
|
|
1182
|
-
</tr>
|
|
1183
|
-
|
|
1184
|
-
<tr>
|
|
1185
|
-
<td>
|
|
1186
|
-
<td>
|
|
1187
|
-
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1188
|
-
<div style="min-width: 150px;" >
|
|
1189
|
-
<a href="/events/
|
|
1190
|
-
</div>
|
|
1191
|
-
</td>
|
|
1192
|
-
<td>
|
|
1193
|
-
<span data-bs-toggle="tooltip"
|
|
1194
|
-
data-bs-placement="left"
|
|
1195
|
-
data-bs-html="true"
|
|
1196
|
-
data-bs-title="
|
|
1197
|
-
<ul>
|
|
1198
|
-
<li>Match points:
|
|
1199
|
-
<li>Participation: 3</li>
|
|
1200
|
-
</ul>
|
|
1201
|
-
<span>Multiplied by
|
|
1202
|
-
">
|
|
1203
|
-
|
|
1204
|
-
</span>
|
|
1205
|
-
</td>
|
|
1206
|
-
<td class="text-nowrap">
|
|
1207
|
-
<td>
|
|
1208
|
-
<div class="d-flex flex-column flex-lg-row">
|
|
1209
|
-
<div style="min-width: 150px;">
|
|
1210
|
-
|
|
1211
|
-
<img src="/static/types/text_icons/
|
|
1212
|
-
|
|
1213
|
-
</div>
|
|
1214
|
-
<div>Standard</div>
|
|
1215
|
-
</div>
|
|
1216
|
-
</td>
|
|
1217
|
-
</tr>
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
<
|
|
1242
|
-
<
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
<
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
</
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
</
|
|
1291
|
-
<
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
</
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html class="h-100" lang="en">
|
|
7
|
+
<head>
|
|
8
|
+
<meta charset="utf-8" />
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
10
|
+
<title>
|
|
11
|
+
Björn Kimminich
|
|
12
|
+
</title>
|
|
13
|
+
<meta name="description" content="Compete in Europe's premier Magic: The Gathering tournament series 'European Unity League'. Gather points at events to win big prizes!">
|
|
14
|
+
<meta property="og:image" content="/static/unityleague.gg/horizontal.png"/>
|
|
15
|
+
<meta name="keywords" content="European Unity League, Magic: The Gathering, Europe, events, tournaments, ranking, leaderboard"/>
|
|
16
|
+
<link rel="stylesheet" href="/static/style8.css" type="text/css">
|
|
17
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
18
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
19
|
+
<link href="https://fonts.googleapis.com/css2?family=Faculty+Glyphic:wght@400&display=swap" rel="stylesheet">
|
|
20
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/all.min.css" crossorigin="anonymous">
|
|
21
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.2.3/css/flag-icons.min.css"/>
|
|
22
|
+
|
|
23
|
+
</head>
|
|
24
|
+
<body class="d-flex flex-column h-100">
|
|
25
|
+
<nav class="navbar navbar-expand-lg bg-primary d-print-none">
|
|
26
|
+
<div class="container">
|
|
27
|
+
|
|
28
|
+
<a class="navbar-brand" href="/" title="European Unity League - Premier Magic tournament series">
|
|
29
|
+
<img src="/static/unityleague.gg/horizontal.svg" height="40" class="d-inline-block align-top" alt="European Unity League Logo">
|
|
30
|
+
</a>
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
<button class="navbar-toggler m-1" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
|
|
34
|
+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
35
|
+
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<li class="nav-item">
|
|
40
|
+
<a class="nav-link" href="/ranking" title="View your country's leaderboard.">Leaderboard</a>
|
|
41
|
+
</li>
|
|
42
|
+
|
|
43
|
+
<li class="nav-item">
|
|
44
|
+
<a class="nav-link" href="/events" title="Find Magic: The Gathering events in Europe">Events</a>
|
|
45
|
+
</li>
|
|
46
|
+
<li class="nav-item dropdown">
|
|
47
|
+
<a class="nav-link dropdown-toggle" href="#" id="infoDropDown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
48
|
+
Info
|
|
49
|
+
</a>
|
|
50
|
+
<ul class="dropdown-menu" aria-labelledby="infoDropDown">
|
|
51
|
+
<li>
|
|
52
|
+
<a class="dropdown-item" href="/info/" title="Learn how points are calculated and the types of events available.">
|
|
53
|
+
League system
|
|
54
|
+
</a>
|
|
55
|
+
</li>
|
|
56
|
+
<li><a class="dropdown-item" href="/info/organizer" title="Learn how to organize events and award points for them.">Organizer tutorial</a></li>
|
|
57
|
+
|
|
58
|
+
<li>
|
|
59
|
+
<a class="dropdown-item" href="/info/player" title="Learn the steps needed to collect points for the Unity League.">
|
|
60
|
+
Participate as player
|
|
61
|
+
</a>
|
|
62
|
+
</li>
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<li>
|
|
66
|
+
<a class="dropdown-item" href="/articles/" title="Latest news and articles">
|
|
67
|
+
News & articles
|
|
68
|
+
</a>
|
|
69
|
+
</li>
|
|
70
|
+
|
|
71
|
+
</ul>
|
|
72
|
+
</li>
|
|
73
|
+
|
|
74
|
+
<div class="m-1"></div>
|
|
75
|
+
<div class="btn-group" role="group" aria-label="Basic mixed styles example">
|
|
76
|
+
<a class=" btn btn-outline-secondary" href="/accounts/register/">Register</a>
|
|
77
|
+
<a class=" btn btn-secondary" href="/accounts/login/">Login</a>
|
|
78
|
+
</div>
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
</ul>
|
|
82
|
+
</div>
|
|
83
|
+
</div>
|
|
84
|
+
</nav>
|
|
85
|
+
<main class="flex-shrink-0 pb-2">
|
|
86
|
+
<div class="container-sm py-3">
|
|
87
|
+
|
|
88
|
+
<br>
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
<div class="alert alert-success" role="alert">
|
|
92
|
+
|
|
93
|
+
Check out the new league system for 2026. New <em>multipliers</em> and support for <em>custom leagues</em>:
|
|
94
|
+
<a class="btn btn-success btn-sm" href="https://unityleague.gg/info" title="Title">League system</a>
|
|
95
|
+
<a class="btn btn-success btn-sm" href="https://unityleague.gg/info/organizer" title="Title">Organizer tutorial</a>
|
|
96
|
+
</div>
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
<div class="row g-4">
|
|
106
|
+
<div class="col-lg-7 col-12">
|
|
107
|
+
<div class="card mb-2" style="border-radius: 0.6cm;">
|
|
108
|
+
<div class="row card-body">
|
|
109
|
+
<div class="col-12 mb-2 d-flex flex-row justify-content-between">
|
|
110
|
+
<div>
|
|
111
|
+
<h1 class="d-inline me-2">Björn Kimminich</h1>
|
|
112
|
+
|
|
113
|
+
</div>
|
|
114
|
+
|
|
115
|
+
<i class="h1 fi fi-de"></i>
|
|
116
|
+
|
|
117
|
+
</div>
|
|
118
|
+
|
|
119
|
+
<div class="col-lg-4 col-8 mb-2" style="overflow: hidden; max-height: 450px;">
|
|
120
|
+
<img class="img-fluid" src="/media/player_profile/1000023225.jpg" alt="Björn Kimminich" style="width: 100%; height: 100%; object-fit: cover; object-position: top;">
|
|
121
|
+
</div>
|
|
122
|
+
|
|
123
|
+
<div class="col-lg-8 col-4">
|
|
124
|
+
<dl class="row mb-0">
|
|
125
|
+
|
|
126
|
+
<div class="col-lg-6"><dt class="small text-muted">Age </dt><dd>45</dd></div>
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
<div class="col-lg-6"><dt class="small text-muted">Hometown </dt><dd>Hamburg</dd></div>
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
<div class="col-lg-6"><dt class="small text-muted">Local organizer </dt><dd>Mulligan TCG Shop</dd></div>
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
<div class="col-lg-6"><dt class="small text-muted">Team </dt><dd>Mull to Five</dd></div>
|
|
136
|
+
|
|
137
|
+
</dl>
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
<div class="d-flex flex-wrap gap-2 align-items-center d-lg-flex d-none">
|
|
143
|
+
<img class="img-fluid" style="width:80px" src="/static/unityleague.gg/vertical.svg" alt="European Unity League Logo" />
|
|
144
|
+
<div class="flex-grow-1">
|
|
145
|
+
<table class="table table-sm my-0">
|
|
146
|
+
<thead>
|
|
147
|
+
<tr>
|
|
148
|
+
|
|
149
|
+
<th scope="col"><a href="/ranking/2026/DE/">
|
|
150
|
+
Germany
|
|
151
|
+
</a>
|
|
152
|
+
</th>
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
<th scope="col">
|
|
156
|
+
<a href="/ranking/2026/global/">
|
|
157
|
+
Europe
|
|
158
|
+
</a>
|
|
159
|
+
</th>
|
|
160
|
+
|
|
161
|
+
<th scope="col">Points</th>
|
|
162
|
+
</tr>
|
|
163
|
+
</thead>
|
|
164
|
+
<tbody>
|
|
165
|
+
<tr>
|
|
166
|
+
|
|
167
|
+
<td>62nd</td>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
<td>503rd</td>
|
|
171
|
+
|
|
172
|
+
<td>325</td>
|
|
173
|
+
</tr>
|
|
174
|
+
</tbody>
|
|
175
|
+
</table>
|
|
176
|
+
</div>
|
|
177
|
+
</div>
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
</div>
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
<div class="d-flex flex-wrap gap-2 align-items-center d-lg-none">
|
|
186
|
+
<img class="img-fluid" style="width:80px" src="/static/unityleague.gg/vertical.svg" alt="European Unity League Logo" />
|
|
187
|
+
<div class="flex-grow-1">
|
|
188
|
+
<table class="table table-sm my-0">
|
|
189
|
+
<thead>
|
|
190
|
+
<tr>
|
|
191
|
+
|
|
192
|
+
<th scope="col"><a href="/ranking/2026/DE/">
|
|
193
|
+
Germany
|
|
194
|
+
</a>
|
|
195
|
+
</th>
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
<th scope="col">
|
|
199
|
+
<a href="/ranking/2026/global/">
|
|
200
|
+
Europe
|
|
201
|
+
</a>
|
|
202
|
+
</th>
|
|
203
|
+
|
|
204
|
+
<th scope="col">Points</th>
|
|
205
|
+
</tr>
|
|
206
|
+
</thead>
|
|
207
|
+
<tbody>
|
|
208
|
+
<tr>
|
|
209
|
+
|
|
210
|
+
<td>62nd</td>
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
<td>503rd</td>
|
|
214
|
+
|
|
215
|
+
<td>325</td>
|
|
216
|
+
</tr>
|
|
217
|
+
</tbody>
|
|
218
|
+
</table>
|
|
219
|
+
</div>
|
|
220
|
+
</div>
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
<div class="d-flex flex-wrap gap-2 mt-2">
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
</div>
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
<small class="mt-2">Smugly held back on an Untimely Malfunction against a Storm player going off, being totally sure that you can redirect the summed-up damage of their Grapeshots back to their face with its "Change the target of target spell or ability with a single target" mode.</small>
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
</div>
|
|
235
|
+
</div>
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
</div>
|
|
242
|
+
|
|
243
|
+
<div class="col-lg-5 col-12">
|
|
244
|
+
|
|
245
|
+
<div class="card bg-gradient bg-primary rounded border-secondary border-2">
|
|
246
|
+
<div class="card-body text-center">
|
|
247
|
+
|
|
248
|
+
<img src="/static/european_magic_cup.png" class="img-fluid" alt="European Magic Cup Logo" style="height: 250px;">
|
|
249
|
+
|
|
250
|
+
<h5 class="card-title mb-2 mt-4 text-secondary">🎯 Your journey starts here</h5>
|
|
251
|
+
<p class="card-text">Track your matches, rank up, and get your own player card!</p>
|
|
252
|
+
<a href="/accounts/register/" class="btn btn-secondary-light btn-sm mt-2">Register now!</a>
|
|
253
|
+
</div>
|
|
254
|
+
</div>
|
|
255
|
+
|
|
256
|
+
</div>
|
|
257
|
+
</div>
|
|
258
|
+
|
|
259
|
+
<h2 class="mt-3">Achievements in Season 2026</h2>
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
<div class="dropdown">
|
|
263
|
+
<button class="btn btn-secondary dropdown-toggle" type="button" id="season_dropdown_button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
264
|
+
Season 2026
|
|
265
|
+
</button>
|
|
266
|
+
<ul class="dropdown-menu" aria-labelledby="season_dropdown_button">
|
|
267
|
+
|
|
268
|
+
<li><a class="dropdown-item" href="/player/16215/season/2026">Season 2026</a></li>
|
|
269
|
+
|
|
270
|
+
<li><a class="dropdown-item" href="/player/16215/season/eu2025">Season 2025</a></li>
|
|
271
|
+
|
|
272
|
+
</ul>
|
|
273
|
+
</div>
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
<div class="container">
|
|
278
|
+
<div class="row">
|
|
279
|
+
|
|
280
|
+
<div class="col-lg-6 p-0 pe-lg-5 my-4">
|
|
281
|
+
<h3 class="text-lg-center">League Points</h3>
|
|
282
|
+
<div class="table-responsive">
|
|
283
|
+
<table class="table table-striped m-0">
|
|
284
|
+
<thead>
|
|
285
|
+
<tr>
|
|
286
|
+
|
|
287
|
+
<th></th>
|
|
288
|
+
|
|
289
|
+
<th>Grand Prix</th>
|
|
290
|
+
|
|
291
|
+
<th>Premier</th>
|
|
292
|
+
|
|
293
|
+
<th>Regular</th>
|
|
294
|
+
|
|
295
|
+
<th>Total</th>
|
|
296
|
+
|
|
297
|
+
</tr>
|
|
298
|
+
</thead>
|
|
299
|
+
<tbody>
|
|
300
|
+
|
|
301
|
+
<tr>
|
|
302
|
+
|
|
303
|
+
<td>League Points</td>
|
|
304
|
+
|
|
305
|
+
<td>36</td>
|
|
306
|
+
|
|
307
|
+
<td>78</td>
|
|
308
|
+
|
|
309
|
+
<td>211</td>
|
|
310
|
+
|
|
311
|
+
<td>325</td>
|
|
312
|
+
|
|
313
|
+
</tr>
|
|
314
|
+
|
|
315
|
+
<tr>
|
|
316
|
+
|
|
317
|
+
<td>Events</td>
|
|
318
|
+
|
|
319
|
+
<td>1</td>
|
|
320
|
+
|
|
321
|
+
<td>1</td>
|
|
322
|
+
|
|
323
|
+
<td>23</td>
|
|
324
|
+
|
|
325
|
+
<td>25</td>
|
|
326
|
+
|
|
327
|
+
</tr>
|
|
328
|
+
|
|
329
|
+
</tbody>
|
|
330
|
+
</table>
|
|
331
|
+
</div>
|
|
332
|
+
</div>
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
</div>
|
|
337
|
+
</div>
|
|
338
|
+
|
|
339
|
+
<div class="my-4">
|
|
340
|
+
<h3>Performance per format</h3>
|
|
341
|
+
<div class="table-responsive">
|
|
342
|
+
<table class="table table-striped">
|
|
343
|
+
<thead>
|
|
344
|
+
<tr>
|
|
345
|
+
<th scope="col">Format</th>
|
|
346
|
+
<th scope="col">Record</th>
|
|
347
|
+
<th scope="col">
|
|
348
|
+
<span data-bs-toggle="tooltip"
|
|
349
|
+
data-bs-html="true"
|
|
350
|
+
title="How many <b><em>match points</em></b> the player earned compared to the <b><em>maximum possible</em></b>."
|
|
351
|
+
data-bs-placement="bottom">
|
|
352
|
+
Match-win % <i class="fa-solid fa-info-circle"></i>
|
|
353
|
+
</span>
|
|
354
|
+
</th>
|
|
355
|
+
<th scope="col">
|
|
356
|
+
<span data-bs-toggle="tooltip"
|
|
357
|
+
data-bs-html="true"
|
|
358
|
+
title="How many matches the player <b><em>won</em></b> compared to all matches they <b><em>won or lost</em></b>."
|
|
359
|
+
data-bs-placement="bottom">
|
|
360
|
+
Win-loss ratio <i class="fa-solid fa-info-circle"></i>
|
|
361
|
+
</span>
|
|
362
|
+
</th>
|
|
363
|
+
<th scope="col">
|
|
364
|
+
<span data-bs-toggle="tooltip"
|
|
365
|
+
data-bs-html="true"
|
|
366
|
+
title="How many <b><em>draws</em></b> the player had compared to all matches they <b><em>played</em></b>."
|
|
367
|
+
data-bs-placement="bottom">
|
|
368
|
+
Draw % <i class="fa-solid fa-info-circle"></i>
|
|
369
|
+
</span>
|
|
370
|
+
</th>
|
|
371
|
+
</tr>
|
|
372
|
+
</thead>
|
|
373
|
+
<tbody>
|
|
374
|
+
|
|
375
|
+
<tr>
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
<td>Pauper</td>
|
|
379
|
+
<td>4 - 2 - 0</td>
|
|
380
|
+
<td>66.7%</td>
|
|
381
|
+
<td>66.7%</td>
|
|
382
|
+
<td>0.0%</td>
|
|
383
|
+
|
|
384
|
+
</tr>
|
|
385
|
+
|
|
386
|
+
<tr>
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
<td>Standard</td>
|
|
390
|
+
<td>30 - 28 - 3</td>
|
|
391
|
+
<td>50.8%</td>
|
|
392
|
+
<td>51.7%</td>
|
|
393
|
+
<td>4.9%</td>
|
|
394
|
+
|
|
395
|
+
</tr>
|
|
396
|
+
|
|
397
|
+
<tr>
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
<td>Modern</td>
|
|
401
|
+
<td>16 - 15 - 2</td>
|
|
402
|
+
<td>50.5%</td>
|
|
403
|
+
<td>51.6%</td>
|
|
404
|
+
<td>6.1%</td>
|
|
405
|
+
|
|
406
|
+
</tr>
|
|
407
|
+
|
|
408
|
+
<tr>
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
<td><b>Overall</b></td>
|
|
412
|
+
<td><b>50 - 45 - 5</b></td>
|
|
413
|
+
<td><b>51.7%</b></td>
|
|
414
|
+
<td><b>52.6%</b></td>
|
|
415
|
+
<td><b>5.0%</b></td>
|
|
416
|
+
|
|
417
|
+
</tr>
|
|
418
|
+
|
|
419
|
+
</tbody>
|
|
420
|
+
</table>
|
|
421
|
+
</div>
|
|
422
|
+
</div>
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
<div class="my-4">
|
|
428
|
+
<h2>Event history</h2>
|
|
429
|
+
<div class="alert alert-secondary d-inline-flex align-items-center pe-4" role="alert" style="width: auto;">
|
|
430
|
+
<div><i class="fa fa-trophy me-3" style="font-size: 1.5rem;"></i></div>
|
|
431
|
+
<div>
|
|
432
|
+
<p class="mb-1">Want to collect points at local events?</p>
|
|
433
|
+
Tell your local organizer to register them <a href="/info/organizer" class="fw-bold">here</a>!
|
|
434
|
+
</div>
|
|
435
|
+
</div>
|
|
436
|
+
<div class="table-responsive">
|
|
437
|
+
<table class="table table-striped">
|
|
438
|
+
<thead>
|
|
439
|
+
<tr>
|
|
440
|
+
<th scope="col">Rank</th>
|
|
441
|
+
<th scope="col">Event/Date</th>
|
|
442
|
+
<th scope="col">League Points</th>
|
|
443
|
+
<th scope="col">Record</th>
|
|
444
|
+
<th scope="col">Type/Format</th>
|
|
445
|
+
</tr>
|
|
446
|
+
</thead>
|
|
447
|
+
<tbody>
|
|
448
|
+
|
|
449
|
+
<tr>
|
|
450
|
+
<td>2nd</td>
|
|
451
|
+
<td>
|
|
452
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
453
|
+
<div style="min-width: 150px;" >Wed, 11.02.2026</div>
|
|
454
|
+
<a href="/events/29679/">Pauper @ Mulligan</a>
|
|
455
|
+
</div>
|
|
456
|
+
</td>
|
|
457
|
+
<td>
|
|
458
|
+
<span data-bs-toggle="tooltip"
|
|
459
|
+
data-bs-placement="left"
|
|
460
|
+
data-bs-html="true"
|
|
461
|
+
data-bs-title="
|
|
462
|
+
<ul>
|
|
463
|
+
<li>Match points: 6</li>
|
|
464
|
+
<li>Participation: 3</li>
|
|
465
|
+
</ul>
|
|
466
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
467
|
+
">
|
|
468
|
+
9
|
|
469
|
+
</span>
|
|
470
|
+
</td>
|
|
471
|
+
<td class="text-nowrap">2 - 1 - 0</td>
|
|
472
|
+
<td>
|
|
473
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
474
|
+
<div style="min-width: 150px;">
|
|
475
|
+
|
|
476
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
477
|
+
|
|
478
|
+
</div>
|
|
479
|
+
<div>Pauper</div>
|
|
480
|
+
</div>
|
|
481
|
+
</td>
|
|
482
|
+
</tr>
|
|
483
|
+
|
|
484
|
+
<tr>
|
|
485
|
+
<td>3rd</td>
|
|
486
|
+
<td>
|
|
487
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
488
|
+
<div style="min-width: 150px;" >Mon, 09.02.2026</div>
|
|
489
|
+
<a href="/events/21168/">Standard @ Mulligan</a>
|
|
490
|
+
</div>
|
|
491
|
+
</td>
|
|
492
|
+
<td>
|
|
493
|
+
<span data-bs-toggle="tooltip"
|
|
494
|
+
data-bs-placement="left"
|
|
495
|
+
data-bs-html="true"
|
|
496
|
+
data-bs-title="
|
|
497
|
+
<ul>
|
|
498
|
+
<li>Match points: 9</li>
|
|
499
|
+
<li>Participation: 3</li>
|
|
500
|
+
</ul>
|
|
501
|
+
<span>Multiplied by 1x: 12 total</span>
|
|
502
|
+
">
|
|
503
|
+
12
|
|
504
|
+
</span>
|
|
505
|
+
</td>
|
|
506
|
+
<td class="text-nowrap">3 - 1 - 0</td>
|
|
507
|
+
<td>
|
|
508
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
509
|
+
<div style="min-width: 150px;">
|
|
510
|
+
|
|
511
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
512
|
+
|
|
513
|
+
</div>
|
|
514
|
+
<div>Standard</div>
|
|
515
|
+
</div>
|
|
516
|
+
</td>
|
|
517
|
+
</tr>
|
|
518
|
+
|
|
519
|
+
<tr>
|
|
520
|
+
<td>7th</td>
|
|
521
|
+
<td>
|
|
522
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
523
|
+
<div style="min-width: 150px;" >Sat, 07.02.2026</div>
|
|
524
|
+
<a href="/events/29302/">Standard Store Championship</a>
|
|
525
|
+
</div>
|
|
526
|
+
</td>
|
|
527
|
+
<td>
|
|
528
|
+
<span data-bs-toggle="tooltip"
|
|
529
|
+
data-bs-placement="left"
|
|
530
|
+
data-bs-html="true"
|
|
531
|
+
data-bs-title="
|
|
532
|
+
<ul>
|
|
533
|
+
<li>Match points: 9</li>
|
|
534
|
+
<li>Participation: 3</li>
|
|
535
|
+
</ul>
|
|
536
|
+
<span>Multiplied by 1x: 12 total</span>
|
|
537
|
+
">
|
|
538
|
+
12
|
|
539
|
+
</span>
|
|
540
|
+
</td>
|
|
541
|
+
<td class="text-nowrap">3 - 2 - 0</td>
|
|
542
|
+
<td>
|
|
543
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
544
|
+
<div style="min-width: 150px;">
|
|
545
|
+
|
|
546
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
547
|
+
|
|
548
|
+
</div>
|
|
549
|
+
<div>Standard</div>
|
|
550
|
+
</div>
|
|
551
|
+
</td>
|
|
552
|
+
</tr>
|
|
553
|
+
|
|
554
|
+
<tr>
|
|
555
|
+
<td>2nd</td>
|
|
556
|
+
<td>
|
|
557
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
558
|
+
<div style="min-width: 150px;" >Wed, 04.02.2026</div>
|
|
559
|
+
<a href="/events/29010/">Pauper @ Mulligan</a>
|
|
560
|
+
</div>
|
|
561
|
+
</td>
|
|
562
|
+
<td>
|
|
563
|
+
<span data-bs-toggle="tooltip"
|
|
564
|
+
data-bs-placement="left"
|
|
565
|
+
data-bs-html="true"
|
|
566
|
+
data-bs-title="
|
|
567
|
+
<ul>
|
|
568
|
+
<li>Match points: 6</li>
|
|
569
|
+
<li>Participation: 3</li>
|
|
570
|
+
</ul>
|
|
571
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
572
|
+
">
|
|
573
|
+
9
|
|
574
|
+
</span>
|
|
575
|
+
</td>
|
|
576
|
+
<td class="text-nowrap">2 - 1 - 0</td>
|
|
577
|
+
<td>
|
|
578
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
579
|
+
<div style="min-width: 150px;">
|
|
580
|
+
|
|
581
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
582
|
+
|
|
583
|
+
</div>
|
|
584
|
+
<div>Pauper</div>
|
|
585
|
+
</div>
|
|
586
|
+
</td>
|
|
587
|
+
</tr>
|
|
588
|
+
|
|
589
|
+
<tr>
|
|
590
|
+
<td>9th</td>
|
|
591
|
+
<td>
|
|
592
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
593
|
+
<div style="min-width: 150px;" >Mon, 02.02.2026</div>
|
|
594
|
+
<a href="/events/21167/">Standard @ Mulligan</a>
|
|
595
|
+
</div>
|
|
596
|
+
</td>
|
|
597
|
+
<td>
|
|
598
|
+
<span data-bs-toggle="tooltip"
|
|
599
|
+
data-bs-placement="left"
|
|
600
|
+
data-bs-html="true"
|
|
601
|
+
data-bs-title="
|
|
602
|
+
<ul>
|
|
603
|
+
<li>Match points: 6</li>
|
|
604
|
+
<li>Participation: 3</li>
|
|
605
|
+
</ul>
|
|
606
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
607
|
+
">
|
|
608
|
+
9
|
|
609
|
+
</span>
|
|
610
|
+
</td>
|
|
611
|
+
<td class="text-nowrap">2 - 2 - 0</td>
|
|
612
|
+
<td>
|
|
613
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
614
|
+
<div style="min-width: 150px;">
|
|
615
|
+
|
|
616
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
617
|
+
|
|
618
|
+
</div>
|
|
619
|
+
<div>Standard</div>
|
|
620
|
+
</div>
|
|
621
|
+
</td>
|
|
622
|
+
</tr>
|
|
623
|
+
|
|
624
|
+
<tr>
|
|
625
|
+
<td>5th</td>
|
|
626
|
+
<td>
|
|
627
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
628
|
+
<div style="min-width: 150px;" >Mon, 26.01.2026</div>
|
|
629
|
+
<a href="/events/21166/">Standard @ Mulligan</a>
|
|
630
|
+
</div>
|
|
631
|
+
</td>
|
|
632
|
+
<td>
|
|
633
|
+
<span data-bs-toggle="tooltip"
|
|
634
|
+
data-bs-placement="left"
|
|
635
|
+
data-bs-html="true"
|
|
636
|
+
data-bs-title="
|
|
637
|
+
<ul>
|
|
638
|
+
<li>Match points: 7</li>
|
|
639
|
+
<li>Participation: 3</li>
|
|
640
|
+
</ul>
|
|
641
|
+
<span>Multiplied by 1x: 10 total</span>
|
|
642
|
+
">
|
|
643
|
+
10
|
|
644
|
+
</span>
|
|
645
|
+
</td>
|
|
646
|
+
<td class="text-nowrap">2 - 1 - 1</td>
|
|
647
|
+
<td>
|
|
648
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
649
|
+
<div style="min-width: 150px;">
|
|
650
|
+
|
|
651
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
652
|
+
|
|
653
|
+
</div>
|
|
654
|
+
<div>Standard</div>
|
|
655
|
+
</div>
|
|
656
|
+
</td>
|
|
657
|
+
</tr>
|
|
658
|
+
|
|
659
|
+
<tr>
|
|
660
|
+
<td>13th</td>
|
|
661
|
+
<td>
|
|
662
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
663
|
+
<div style="min-width: 150px;" >Fri, 23.01.2026</div>
|
|
664
|
+
<a href="/events/23330/">Modern @ Mulligan</a>
|
|
665
|
+
</div>
|
|
666
|
+
</td>
|
|
667
|
+
<td>
|
|
668
|
+
<span data-bs-toggle="tooltip"
|
|
669
|
+
data-bs-placement="left"
|
|
670
|
+
data-bs-html="true"
|
|
671
|
+
data-bs-title="
|
|
672
|
+
<ul>
|
|
673
|
+
<li>Match points: 0</li>
|
|
674
|
+
<li>Participation: 3</li>
|
|
675
|
+
</ul>
|
|
676
|
+
<span>Multiplied by 1x: 3 total</span>
|
|
677
|
+
">
|
|
678
|
+
3
|
|
679
|
+
</span>
|
|
680
|
+
</td>
|
|
681
|
+
<td class="text-nowrap">0 - 4 - 0</td>
|
|
682
|
+
<td>
|
|
683
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
684
|
+
<div style="min-width: 150px;">
|
|
685
|
+
|
|
686
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
687
|
+
|
|
688
|
+
</div>
|
|
689
|
+
<div>Modern</div>
|
|
690
|
+
</div>
|
|
691
|
+
</td>
|
|
692
|
+
</tr>
|
|
693
|
+
|
|
694
|
+
<tr>
|
|
695
|
+
<td>5th</td>
|
|
696
|
+
<td>
|
|
697
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
698
|
+
<div style="min-width: 150px;" >Mon, 19.01.2026</div>
|
|
699
|
+
<a href="/events/21165/">Standard @ Mulligan</a>
|
|
700
|
+
</div>
|
|
701
|
+
</td>
|
|
702
|
+
<td>
|
|
703
|
+
<span data-bs-toggle="tooltip"
|
|
704
|
+
data-bs-placement="left"
|
|
705
|
+
data-bs-html="true"
|
|
706
|
+
data-bs-title="
|
|
707
|
+
<ul>
|
|
708
|
+
<li>Match points: 6</li>
|
|
709
|
+
<li>Participation: 3</li>
|
|
710
|
+
</ul>
|
|
711
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
712
|
+
">
|
|
713
|
+
9
|
|
714
|
+
</span>
|
|
715
|
+
</td>
|
|
716
|
+
<td class="text-nowrap">2 - 2 - 0</td>
|
|
717
|
+
<td>
|
|
718
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
719
|
+
<div style="min-width: 150px;">
|
|
720
|
+
|
|
721
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
722
|
+
|
|
723
|
+
</div>
|
|
724
|
+
<div>Standard</div>
|
|
725
|
+
</div>
|
|
726
|
+
</td>
|
|
727
|
+
</tr>
|
|
728
|
+
|
|
729
|
+
<tr>
|
|
730
|
+
<td>434th</td>
|
|
731
|
+
<td>
|
|
732
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
733
|
+
<div style="min-width: 150px;" >Sat, 10.01.2026</div>
|
|
734
|
+
<a href="/events/24360/">[Lyon Sat 09:00] Magic Spotlight Series - Lyon 2026</a>
|
|
735
|
+
</div>
|
|
736
|
+
</td>
|
|
737
|
+
<td>
|
|
738
|
+
<span data-bs-toggle="tooltip"
|
|
739
|
+
data-bs-placement="left"
|
|
740
|
+
data-bs-html="true"
|
|
741
|
+
data-bs-title="
|
|
742
|
+
<ul>
|
|
743
|
+
<li>Match points: 10</li>
|
|
744
|
+
<li>Participation: 3</li>
|
|
745
|
+
</ul>
|
|
746
|
+
<span>Multiplied by 6x: 78 total</span>
|
|
747
|
+
">
|
|
748
|
+
78
|
|
749
|
+
</span>
|
|
750
|
+
</td>
|
|
751
|
+
<td class="text-nowrap">3 - 4 - 1</td>
|
|
752
|
+
<td>
|
|
753
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
754
|
+
<div style="min-width: 150px;">
|
|
755
|
+
|
|
756
|
+
<img src="/static/types/text_icons/premier.svg" alt="Premier" style="height: 24px;" title="Premier" itemprop="image">
|
|
757
|
+
|
|
758
|
+
</div>
|
|
759
|
+
<div>Standard</div>
|
|
760
|
+
</div>
|
|
761
|
+
</td>
|
|
762
|
+
</tr>
|
|
763
|
+
|
|
764
|
+
<tr>
|
|
765
|
+
<td>3rd</td>
|
|
766
|
+
<td>
|
|
767
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
768
|
+
<div style="min-width: 150px;" >Mon, 05.01.2026</div>
|
|
769
|
+
<a href="/events/21163/">Standard @ Mulligan</a>
|
|
770
|
+
</div>
|
|
771
|
+
</td>
|
|
772
|
+
<td>
|
|
773
|
+
<span data-bs-toggle="tooltip"
|
|
774
|
+
data-bs-placement="left"
|
|
775
|
+
data-bs-html="true"
|
|
776
|
+
data-bs-title="
|
|
777
|
+
<ul>
|
|
778
|
+
<li>Match points: 6</li>
|
|
779
|
+
<li>Participation: 3</li>
|
|
780
|
+
</ul>
|
|
781
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
782
|
+
">
|
|
783
|
+
9
|
|
784
|
+
</span>
|
|
785
|
+
</td>
|
|
786
|
+
<td class="text-nowrap">2 - 1 - 0</td>
|
|
787
|
+
<td>
|
|
788
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
789
|
+
<div style="min-width: 150px;">
|
|
790
|
+
|
|
791
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
792
|
+
|
|
793
|
+
</div>
|
|
794
|
+
<div>Standard</div>
|
|
795
|
+
</div>
|
|
796
|
+
</td>
|
|
797
|
+
</tr>
|
|
798
|
+
|
|
799
|
+
<tr>
|
|
800
|
+
<td>4th</td>
|
|
801
|
+
<td>
|
|
802
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
803
|
+
<div style="min-width: 150px;" >Fri, 02.01.2026</div>
|
|
804
|
+
<a href="/events/23327/">Modern @ Mulligan</a>
|
|
805
|
+
</div>
|
|
806
|
+
</td>
|
|
807
|
+
<td>
|
|
808
|
+
<span data-bs-toggle="tooltip"
|
|
809
|
+
data-bs-placement="left"
|
|
810
|
+
data-bs-html="true"
|
|
811
|
+
data-bs-title="
|
|
812
|
+
<ul>
|
|
813
|
+
<li>Match points: 7</li>
|
|
814
|
+
<li>Participation: 3</li>
|
|
815
|
+
</ul>
|
|
816
|
+
<span>Multiplied by 1x: 10 total</span>
|
|
817
|
+
">
|
|
818
|
+
10
|
|
819
|
+
</span>
|
|
820
|
+
</td>
|
|
821
|
+
<td class="text-nowrap">2 - 1 - 1</td>
|
|
822
|
+
<td>
|
|
823
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
824
|
+
<div style="min-width: 150px;">
|
|
825
|
+
|
|
826
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
827
|
+
|
|
828
|
+
</div>
|
|
829
|
+
<div>Modern</div>
|
|
830
|
+
</div>
|
|
831
|
+
</td>
|
|
832
|
+
</tr>
|
|
833
|
+
|
|
834
|
+
<tr>
|
|
835
|
+
<td>3rd</td>
|
|
836
|
+
<td>
|
|
837
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
838
|
+
<div style="min-width: 150px;" >Mon, 29.12.2025</div>
|
|
839
|
+
<a href="/events/21162/">Standard @ Mulligan</a>
|
|
840
|
+
</div>
|
|
841
|
+
</td>
|
|
842
|
+
<td>
|
|
843
|
+
<span data-bs-toggle="tooltip"
|
|
844
|
+
data-bs-placement="left"
|
|
845
|
+
data-bs-html="true"
|
|
846
|
+
data-bs-title="
|
|
847
|
+
<ul>
|
|
848
|
+
<li>Match points: 6</li>
|
|
849
|
+
<li>Participation: 3</li>
|
|
850
|
+
</ul>
|
|
851
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
852
|
+
">
|
|
853
|
+
9
|
|
854
|
+
</span>
|
|
855
|
+
</td>
|
|
856
|
+
<td class="text-nowrap">2 - 1 - 0</td>
|
|
857
|
+
<td>
|
|
858
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
859
|
+
<div style="min-width: 150px;">
|
|
860
|
+
|
|
861
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
862
|
+
|
|
863
|
+
</div>
|
|
864
|
+
<div>Standard</div>
|
|
865
|
+
</div>
|
|
866
|
+
</td>
|
|
867
|
+
</tr>
|
|
868
|
+
|
|
869
|
+
<tr>
|
|
870
|
+
<td>11th</td>
|
|
871
|
+
<td>
|
|
872
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
873
|
+
<div style="min-width: 150px;" >Mon, 22.12.2025</div>
|
|
874
|
+
<a href="/events/21161/">Standard @ Mulligan</a>
|
|
875
|
+
</div>
|
|
876
|
+
</td>
|
|
877
|
+
<td>
|
|
878
|
+
<span data-bs-toggle="tooltip"
|
|
879
|
+
data-bs-placement="left"
|
|
880
|
+
data-bs-html="true"
|
|
881
|
+
data-bs-title="
|
|
882
|
+
<ul>
|
|
883
|
+
<li>Match points: 3</li>
|
|
884
|
+
<li>Participation: 3</li>
|
|
885
|
+
</ul>
|
|
886
|
+
<span>Multiplied by 1x: 6 total</span>
|
|
887
|
+
">
|
|
888
|
+
6
|
|
889
|
+
</span>
|
|
890
|
+
</td>
|
|
891
|
+
<td class="text-nowrap">1 - 3 - 0</td>
|
|
892
|
+
<td>
|
|
893
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
894
|
+
<div style="min-width: 150px;">
|
|
895
|
+
|
|
896
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
897
|
+
|
|
898
|
+
</div>
|
|
899
|
+
<div>Standard</div>
|
|
900
|
+
</div>
|
|
901
|
+
</td>
|
|
902
|
+
</tr>
|
|
903
|
+
|
|
904
|
+
<tr>
|
|
905
|
+
<td>7th</td>
|
|
906
|
+
<td>
|
|
907
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
908
|
+
<div style="min-width: 150px;" >Fri, 19.12.2025</div>
|
|
909
|
+
<a href="/events/17746/">Modern @ Mulligan</a>
|
|
910
|
+
</div>
|
|
911
|
+
</td>
|
|
912
|
+
<td>
|
|
913
|
+
<span data-bs-toggle="tooltip"
|
|
914
|
+
data-bs-placement="left"
|
|
915
|
+
data-bs-html="true"
|
|
916
|
+
data-bs-title="
|
|
917
|
+
<ul>
|
|
918
|
+
<li>Match points: 6</li>
|
|
919
|
+
<li>Participation: 3</li>
|
|
920
|
+
</ul>
|
|
921
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
922
|
+
">
|
|
923
|
+
9
|
|
924
|
+
</span>
|
|
925
|
+
</td>
|
|
926
|
+
<td class="text-nowrap">2 - 2 - 0</td>
|
|
927
|
+
<td>
|
|
928
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
929
|
+
<div style="min-width: 150px;">
|
|
930
|
+
|
|
931
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
932
|
+
|
|
933
|
+
</div>
|
|
934
|
+
<div>Modern</div>
|
|
935
|
+
</div>
|
|
936
|
+
</td>
|
|
937
|
+
</tr>
|
|
938
|
+
|
|
939
|
+
<tr>
|
|
940
|
+
<td>8th</td>
|
|
941
|
+
<td>
|
|
942
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
943
|
+
<div style="min-width: 150px;" >Mon, 15.12.2025</div>
|
|
944
|
+
<a href="/events/21160/">Standard @ Mulligan</a>
|
|
945
|
+
</div>
|
|
946
|
+
</td>
|
|
947
|
+
<td>
|
|
948
|
+
<span data-bs-toggle="tooltip"
|
|
949
|
+
data-bs-placement="left"
|
|
950
|
+
data-bs-html="true"
|
|
951
|
+
data-bs-title="
|
|
952
|
+
<ul>
|
|
953
|
+
<li>Match points: 4</li>
|
|
954
|
+
<li>Participation: 3</li>
|
|
955
|
+
</ul>
|
|
956
|
+
<span>Multiplied by 1x: 7 total</span>
|
|
957
|
+
">
|
|
958
|
+
7
|
|
959
|
+
</span>
|
|
960
|
+
</td>
|
|
961
|
+
<td class="text-nowrap">1 - 2 - 1</td>
|
|
962
|
+
<td>
|
|
963
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
964
|
+
<div style="min-width: 150px;">
|
|
965
|
+
|
|
966
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
967
|
+
|
|
968
|
+
</div>
|
|
969
|
+
<div>Standard</div>
|
|
970
|
+
</div>
|
|
971
|
+
</td>
|
|
972
|
+
</tr>
|
|
973
|
+
|
|
974
|
+
<tr>
|
|
975
|
+
<td>2nd</td>
|
|
976
|
+
<td>
|
|
977
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
978
|
+
<div style="min-width: 150px;" >Fri, 12.12.2025</div>
|
|
979
|
+
<a href="/events/17745/">Modern @ Mulligan</a>
|
|
980
|
+
</div>
|
|
981
|
+
</td>
|
|
982
|
+
<td>
|
|
983
|
+
<span data-bs-toggle="tooltip"
|
|
984
|
+
data-bs-placement="left"
|
|
985
|
+
data-bs-html="true"
|
|
986
|
+
data-bs-title="
|
|
987
|
+
<ul>
|
|
988
|
+
<li>Match points: 12</li>
|
|
989
|
+
<li>Participation: 3</li>
|
|
990
|
+
</ul>
|
|
991
|
+
<span>Multiplied by 1x: 15 total</span>
|
|
992
|
+
">
|
|
993
|
+
15
|
|
994
|
+
</span>
|
|
995
|
+
</td>
|
|
996
|
+
<td class="text-nowrap">4 - 1 - 0</td>
|
|
997
|
+
<td>
|
|
998
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
999
|
+
<div style="min-width: 150px;">
|
|
1000
|
+
|
|
1001
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1002
|
+
|
|
1003
|
+
</div>
|
|
1004
|
+
<div>Modern</div>
|
|
1005
|
+
</div>
|
|
1006
|
+
</td>
|
|
1007
|
+
</tr>
|
|
1008
|
+
|
|
1009
|
+
<tr>
|
|
1010
|
+
<td>3rd</td>
|
|
1011
|
+
<td>
|
|
1012
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1013
|
+
<div style="min-width: 150px;" >Mon, 08.12.2025</div>
|
|
1014
|
+
<a href="/events/17754/">Standard @ Mulligan</a>
|
|
1015
|
+
</div>
|
|
1016
|
+
</td>
|
|
1017
|
+
<td>
|
|
1018
|
+
<span data-bs-toggle="tooltip"
|
|
1019
|
+
data-bs-placement="left"
|
|
1020
|
+
data-bs-html="true"
|
|
1021
|
+
data-bs-title="
|
|
1022
|
+
<ul>
|
|
1023
|
+
<li>Match points: 6</li>
|
|
1024
|
+
<li>Participation: 3</li>
|
|
1025
|
+
</ul>
|
|
1026
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
1027
|
+
">
|
|
1028
|
+
9
|
|
1029
|
+
</span>
|
|
1030
|
+
</td>
|
|
1031
|
+
<td class="text-nowrap">2 - 1 - 0</td>
|
|
1032
|
+
<td>
|
|
1033
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
1034
|
+
<div style="min-width: 150px;">
|
|
1035
|
+
|
|
1036
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1037
|
+
|
|
1038
|
+
</div>
|
|
1039
|
+
<div>Standard</div>
|
|
1040
|
+
</div>
|
|
1041
|
+
</td>
|
|
1042
|
+
</tr>
|
|
1043
|
+
|
|
1044
|
+
<tr>
|
|
1045
|
+
<td>14th</td>
|
|
1046
|
+
<td>
|
|
1047
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1048
|
+
<div style="min-width: 150px;" >Fri, 28.11.2025</div>
|
|
1049
|
+
<a href="/events/17743/">Modern @ Mulligan</a>
|
|
1050
|
+
</div>
|
|
1051
|
+
</td>
|
|
1052
|
+
<td>
|
|
1053
|
+
<span data-bs-toggle="tooltip"
|
|
1054
|
+
data-bs-placement="left"
|
|
1055
|
+
data-bs-html="true"
|
|
1056
|
+
data-bs-title="
|
|
1057
|
+
<ul>
|
|
1058
|
+
<li>Match points: 1</li>
|
|
1059
|
+
<li>Participation: 3</li>
|
|
1060
|
+
</ul>
|
|
1061
|
+
<span>Multiplied by 1x: 4 total</span>
|
|
1062
|
+
">
|
|
1063
|
+
4
|
|
1064
|
+
</span>
|
|
1065
|
+
</td>
|
|
1066
|
+
<td class="text-nowrap">0 - 3 - 1</td>
|
|
1067
|
+
<td>
|
|
1068
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
1069
|
+
<div style="min-width: 150px;">
|
|
1070
|
+
|
|
1071
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1072
|
+
|
|
1073
|
+
</div>
|
|
1074
|
+
<div>Modern</div>
|
|
1075
|
+
</div>
|
|
1076
|
+
</td>
|
|
1077
|
+
</tr>
|
|
1078
|
+
|
|
1079
|
+
<tr>
|
|
1080
|
+
<td>7th</td>
|
|
1081
|
+
<td>
|
|
1082
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1083
|
+
<div style="min-width: 150px;" >Fri, 21.11.2025</div>
|
|
1084
|
+
<a href="/events/17742/">Modern @ Mulligan</a>
|
|
1085
|
+
</div>
|
|
1086
|
+
</td>
|
|
1087
|
+
<td>
|
|
1088
|
+
<span data-bs-toggle="tooltip"
|
|
1089
|
+
data-bs-placement="left"
|
|
1090
|
+
data-bs-html="true"
|
|
1091
|
+
data-bs-title="
|
|
1092
|
+
<ul>
|
|
1093
|
+
<li>Match points: 6</li>
|
|
1094
|
+
<li>Participation: 3</li>
|
|
1095
|
+
</ul>
|
|
1096
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
1097
|
+
">
|
|
1098
|
+
9
|
|
1099
|
+
</span>
|
|
1100
|
+
</td>
|
|
1101
|
+
<td class="text-nowrap">2 - 2 - 0</td>
|
|
1102
|
+
<td>
|
|
1103
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
1104
|
+
<div style="min-width: 150px;">
|
|
1105
|
+
|
|
1106
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1107
|
+
|
|
1108
|
+
</div>
|
|
1109
|
+
<div>Modern</div>
|
|
1110
|
+
</div>
|
|
1111
|
+
</td>
|
|
1112
|
+
</tr>
|
|
1113
|
+
|
|
1114
|
+
<tr>
|
|
1115
|
+
<td>2nd</td>
|
|
1116
|
+
<td>
|
|
1117
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1118
|
+
<div style="min-width: 150px;" >Tue, 11.11.2025</div>
|
|
1119
|
+
<a href="/events/17682/">Standard @ Mulligan</a>
|
|
1120
|
+
</div>
|
|
1121
|
+
</td>
|
|
1122
|
+
<td>
|
|
1123
|
+
<span data-bs-toggle="tooltip"
|
|
1124
|
+
data-bs-placement="left"
|
|
1125
|
+
data-bs-html="true"
|
|
1126
|
+
data-bs-title="
|
|
1127
|
+
<ul>
|
|
1128
|
+
<li>Match points: 6</li>
|
|
1129
|
+
<li>Participation: 3</li>
|
|
1130
|
+
</ul>
|
|
1131
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
1132
|
+
">
|
|
1133
|
+
9
|
|
1134
|
+
</span>
|
|
1135
|
+
</td>
|
|
1136
|
+
<td class="text-nowrap">2 - 1 - 0</td>
|
|
1137
|
+
<td>
|
|
1138
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
1139
|
+
<div style="min-width: 150px;">
|
|
1140
|
+
|
|
1141
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1142
|
+
|
|
1143
|
+
</div>
|
|
1144
|
+
<div>Standard</div>
|
|
1145
|
+
</div>
|
|
1146
|
+
</td>
|
|
1147
|
+
</tr>
|
|
1148
|
+
|
|
1149
|
+
<tr>
|
|
1150
|
+
<td>5th</td>
|
|
1151
|
+
<td>
|
|
1152
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1153
|
+
<div style="min-width: 150px;" >Fri, 07.11.2025</div>
|
|
1154
|
+
<a href="/events/17740/">Modern @ Mulligan</a>
|
|
1155
|
+
</div>
|
|
1156
|
+
</td>
|
|
1157
|
+
<td>
|
|
1158
|
+
<span data-bs-toggle="tooltip"
|
|
1159
|
+
data-bs-placement="left"
|
|
1160
|
+
data-bs-html="true"
|
|
1161
|
+
data-bs-title="
|
|
1162
|
+
<ul>
|
|
1163
|
+
<li>Match points: 9</li>
|
|
1164
|
+
<li>Participation: 3</li>
|
|
1165
|
+
</ul>
|
|
1166
|
+
<span>Multiplied by 1x: 12 total</span>
|
|
1167
|
+
">
|
|
1168
|
+
12
|
|
1169
|
+
</span>
|
|
1170
|
+
</td>
|
|
1171
|
+
<td class="text-nowrap">3 - 1 - 0</td>
|
|
1172
|
+
<td>
|
|
1173
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
1174
|
+
<div style="min-width: 150px;">
|
|
1175
|
+
|
|
1176
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1177
|
+
|
|
1178
|
+
</div>
|
|
1179
|
+
<div>Modern</div>
|
|
1180
|
+
</div>
|
|
1181
|
+
</td>
|
|
1182
|
+
</tr>
|
|
1183
|
+
|
|
1184
|
+
<tr>
|
|
1185
|
+
<td>551st</td>
|
|
1186
|
+
<td>
|
|
1187
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1188
|
+
<div style="min-width: 150px;" >Sat, 01.11.2025</div>
|
|
1189
|
+
<a href="/events/17844/">Magic Spotlight Series - Liverpool 2025</a>
|
|
1190
|
+
</div>
|
|
1191
|
+
</td>
|
|
1192
|
+
<td>
|
|
1193
|
+
<span data-bs-toggle="tooltip"
|
|
1194
|
+
data-bs-placement="left"
|
|
1195
|
+
data-bs-html="true"
|
|
1196
|
+
data-bs-title="
|
|
1197
|
+
<ul>
|
|
1198
|
+
<li>Match points: 3</li>
|
|
1199
|
+
<li>Participation: 3</li>
|
|
1200
|
+
</ul>
|
|
1201
|
+
<span>Multiplied by 6x: 36 total</span>
|
|
1202
|
+
">
|
|
1203
|
+
36
|
|
1204
|
+
</span>
|
|
1205
|
+
</td>
|
|
1206
|
+
<td class="text-nowrap">1 - 4 - 0</td>
|
|
1207
|
+
<td>
|
|
1208
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
1209
|
+
<div style="min-width: 150px;">
|
|
1210
|
+
|
|
1211
|
+
<img src="/static/types/text_icons/grand_prix.svg" alt="Grand Prix" style="height: 24px;" title="Grand Prix" itemprop="image">
|
|
1212
|
+
|
|
1213
|
+
</div>
|
|
1214
|
+
<div>Standard</div>
|
|
1215
|
+
</div>
|
|
1216
|
+
</td>
|
|
1217
|
+
</tr>
|
|
1218
|
+
|
|
1219
|
+
<tr>
|
|
1220
|
+
<td>4th</td>
|
|
1221
|
+
<td>
|
|
1222
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1223
|
+
<div style="min-width: 150px;" >Tue, 28.10.2025</div>
|
|
1224
|
+
<a href="/events/17680/">Standard @ Mulligan</a>
|
|
1225
|
+
</div>
|
|
1226
|
+
</td>
|
|
1227
|
+
<td>
|
|
1228
|
+
<span data-bs-toggle="tooltip"
|
|
1229
|
+
data-bs-placement="left"
|
|
1230
|
+
data-bs-html="true"
|
|
1231
|
+
data-bs-title="
|
|
1232
|
+
<ul>
|
|
1233
|
+
<li>Match points: 6</li>
|
|
1234
|
+
<li>Participation: 3</li>
|
|
1235
|
+
</ul>
|
|
1236
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
1237
|
+
">
|
|
1238
|
+
9
|
|
1239
|
+
</span>
|
|
1240
|
+
</td>
|
|
1241
|
+
<td class="text-nowrap">2 - 1 - 0</td>
|
|
1242
|
+
<td>
|
|
1243
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
1244
|
+
<div style="min-width: 150px;">
|
|
1245
|
+
|
|
1246
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1247
|
+
|
|
1248
|
+
</div>
|
|
1249
|
+
<div>Standard</div>
|
|
1250
|
+
</div>
|
|
1251
|
+
</td>
|
|
1252
|
+
</tr>
|
|
1253
|
+
|
|
1254
|
+
<tr>
|
|
1255
|
+
<td>3rd</td>
|
|
1256
|
+
<td>
|
|
1257
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1258
|
+
<div style="min-width: 150px;" >Fri, 24.10.2025</div>
|
|
1259
|
+
<a href="/events/17738/">Modern @ Mulligan</a>
|
|
1260
|
+
</div>
|
|
1261
|
+
</td>
|
|
1262
|
+
<td>
|
|
1263
|
+
<span data-bs-toggle="tooltip"
|
|
1264
|
+
data-bs-placement="left"
|
|
1265
|
+
data-bs-html="true"
|
|
1266
|
+
data-bs-title="
|
|
1267
|
+
<ul>
|
|
1268
|
+
<li>Match points: 9</li>
|
|
1269
|
+
<li>Participation: 3</li>
|
|
1270
|
+
</ul>
|
|
1271
|
+
<span>Multiplied by 1x: 12 total</span>
|
|
1272
|
+
">
|
|
1273
|
+
12
|
|
1274
|
+
</span>
|
|
1275
|
+
</td>
|
|
1276
|
+
<td class="text-nowrap">3 - 1 - 0</td>
|
|
1277
|
+
<td>
|
|
1278
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
1279
|
+
<div style="min-width: 150px;">
|
|
1280
|
+
|
|
1281
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1282
|
+
|
|
1283
|
+
</div>
|
|
1284
|
+
<div>Modern</div>
|
|
1285
|
+
</div>
|
|
1286
|
+
</td>
|
|
1287
|
+
</tr>
|
|
1288
|
+
|
|
1289
|
+
<tr>
|
|
1290
|
+
<td>6th</td>
|
|
1291
|
+
<td>
|
|
1292
|
+
<div class="d-flex flex-column-reverse flex-lg-row">
|
|
1293
|
+
<div style="min-width: 150px;" >Tue, 21.10.2025</div>
|
|
1294
|
+
<a href="/events/17630/">Standard @ Mulligan</a>
|
|
1295
|
+
</div>
|
|
1296
|
+
</td>
|
|
1297
|
+
<td>
|
|
1298
|
+
<span data-bs-toggle="tooltip"
|
|
1299
|
+
data-bs-placement="left"
|
|
1300
|
+
data-bs-html="true"
|
|
1301
|
+
data-bs-title="
|
|
1302
|
+
<ul>
|
|
1303
|
+
<li>Match points: 6</li>
|
|
1304
|
+
<li>Participation: 3</li>
|
|
1305
|
+
</ul>
|
|
1306
|
+
<span>Multiplied by 1x: 9 total</span>
|
|
1307
|
+
">
|
|
1308
|
+
9
|
|
1309
|
+
</span>
|
|
1310
|
+
</td>
|
|
1311
|
+
<td class="text-nowrap">2 - 2 - 0</td>
|
|
1312
|
+
<td>
|
|
1313
|
+
<div class="d-flex flex-column flex-lg-row">
|
|
1314
|
+
<div style="min-width: 150px;">
|
|
1315
|
+
|
|
1316
|
+
<img src="/static/types/text_icons/regular.svg" alt="Regular" style="height: 24px;" title="Regular" itemprop="image">
|
|
1317
|
+
|
|
1318
|
+
</div>
|
|
1319
|
+
<div>Standard</div>
|
|
1320
|
+
</div>
|
|
1321
|
+
</td>
|
|
1322
|
+
</tr>
|
|
1323
|
+
|
|
1324
|
+
</tbody>
|
|
1325
|
+
</table>
|
|
1326
|
+
</div>
|
|
1327
|
+
</div>
|
|
1328
|
+
|
|
1329
|
+
|
|
1330
|
+
</div>
|
|
1331
|
+
</main>
|
|
1332
|
+
<footer class=" footer mt-auto bg-primary">
|
|
1333
|
+
<div class="px-5 py-5 container">
|
|
1334
|
+
<div class="row g-4">
|
|
1335
|
+
<div class="col-md-6">
|
|
1336
|
+
<ul class="nav">
|
|
1337
|
+
<li class="nav-item"> <a href="mailto:info@unityleague.gg" class="nav-link px-2 text-body-secondary">Contact us</a></li>
|
|
1338
|
+
<li class="nav-item"> <a href="/legal/privacy/" class="nav-link px-2 text-body-secondary">Privacy Policy</a></li>
|
|
1339
|
+
<li class="nav-item"> <a href="/legal/terms/" class="nav-link px-2 text-body-secondary">Terms of Use</a></li>
|
|
1340
|
+
<li class="nav-item"> <a href="/legal/imprint/" class="nav-link px-2 text-body-secondary">Imprint</a></li>
|
|
1341
|
+
</ul>
|
|
1342
|
+
</div>
|
|
1343
|
+
<div class="col-md-6">
|
|
1344
|
+
<ul class="nav float-md-end">
|
|
1345
|
+
<li class="me-3"><a class="text-body-secondary" href="/discord/" target="_blank"><i class="fa-brands fa-discord" style="font-size:24px;"></i></a></li>
|
|
1346
|
+
<li class="me-3"><a class="text-body-secondary" href="https://twitter.com/unityleaguemtg" target="_blank"><i class="fa-brands fa-x-twitter" style="font-size:24px;"></i></a></li>
|
|
1347
|
+
<li class="me-3"><a class="text-body-secondary" href="https://bsky.app/profile/unityleaguemtg.bsky.social" target="_blank"><i class="fa-brands fa-bluesky" style="font-size:24px;"></i></a></li>
|
|
1348
|
+
<li class="me-3"><a class="text-body-secondary" href="https://instagram.com/unityleaguemtg" target="_blank"><i class="fa-brands fa-instagram" style="font-size:24px;"></i></a></li>
|
|
1349
|
+
<li class="me-3"><a class="text-body-secondary" href="https://facebook.com/unityleaguemtg" target="_blank"><i class="fa-brands fa-facebook" style="font-size:24px;"></i></a></li>
|
|
1350
|
+
<li class="me-3"><a class="text-body-secondary" href="https://twitch.tv/unityleaguemtg" target="_blank"><i class="fa-brands fa-twitch" style="font-size:24px;"></i></a></li>
|
|
1351
|
+
<li class="me-3"><a class="text-body-secondary" href="https://www.youtube.com/@unityleaguemtg" target="_blank"><i class="fa-brands fa-youtube" style="font-size:24px;"></i></a></li>
|
|
1352
|
+
<p class="me-3">@unityleaguemtg</p>
|
|
1353
|
+
</ul>
|
|
1354
|
+
</div>
|
|
1355
|
+
<div class="border-bottom my-3"></div>
|
|
1356
|
+
<div class="col-md-8">
|
|
1357
|
+
<p class="mb-2 text-muted" style="font-size: 0.7em;">
|
|
1358
|
+
©2026 Mana Grid, Ltd liab Co All rights reserved. Content cannot be used or reproduced without consent.
|
|
1359
|
+
<br>
|
|
1360
|
+
|
|
1361
|
+
Wizards of the Coast, Magic: The Gathering, and their logos are trademarks of Wizards of the Coast LLC ©. Mana Grid is not endorsed or approved by or endorsed by Wizards of the Coast LLC.
|
|
1362
|
+
|
|
1363
|
+
</p>
|
|
1364
|
+
</div>
|
|
1365
|
+
<div class="col-md-4">
|
|
1366
|
+
<div class="float-md-end">
|
|
1367
|
+
|
|
1368
|
+
<a href="/accounts/login/" class="btn btn-secondary">Login</a>
|
|
1369
|
+
|
|
1370
|
+
</div>
|
|
1371
|
+
</div>
|
|
1372
|
+
</div>
|
|
1373
|
+
</div>
|
|
1374
|
+
</footer>
|
|
1375
|
+
|
|
1376
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
|
|
1377
|
+
|
|
1378
|
+
|
|
1379
|
+
<script src="/static/init_tooltips.js"></script>
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
<template id="cookie-consent__cookie-bar">
|
|
1386
|
+
<div class="cookie-bar fixed-bottom w-100 bg-secondary-light border-top shadow p-3" style="z-index: 2000;">
|
|
1387
|
+
<div class="container d-flex flex-column flex-md-row align-items-start align-items-md-center gap-2">
|
|
1388
|
+
<div class="text-black small">We use cookies for core functionality and, with your consent, analytics cookies to help us improve the Unity League experience.</div>
|
|
1389
|
+
<div class="d-flex gap-2 align-items-center">
|
|
1390
|
+
<a href="/cookies/" class="text-black text-decoration-underline small p-0">
|
|
1391
|
+
More info
|
|
1392
|
+
</a>
|
|
1393
|
+
<button type="button" class="cookie-consent__decline btn btn-outline-primary btn-sm">
|
|
1394
|
+
Decline
|
|
1395
|
+
</button>
|
|
1396
|
+
<button type="button" class="cookie-consent__accept btn btn-primary btn-sm">
|
|
1397
|
+
Accept
|
|
1398
|
+
</button>
|
|
1399
|
+
</div>
|
|
1400
|
+
</div>
|
|
1401
|
+
</div>
|
|
1402
|
+
</template>
|
|
1403
|
+
|
|
1404
|
+
<script id="cookie-consent__cookie-groups" type="application/json">[{"varname": "analytics", "name": "Analytics", "description": "Usage statistics and behavioral analytics.", "is_required": false}]</script>
|
|
1405
|
+
|
|
1406
|
+
|
|
1407
|
+
|
|
1408
|
+
|
|
1409
|
+
|
|
1410
|
+
<script type="module">
|
|
1411
|
+
import {showCookieBar} from '/static/cookie_consent/cookiebar.module.js';
|
|
1412
|
+
showCookieBar({
|
|
1413
|
+
statusUrl: '/cookies/status/',
|
|
1414
|
+
templateSelector: '#cookie-consent__cookie-bar',
|
|
1415
|
+
cookieGroupsSelector: '#cookie-consent__cookie-groups',
|
|
1416
|
+
onAccept: (cookieGroups) => {
|
|
1417
|
+
const enabled = cookieGroups.some(g => g.varname === 'analytics');
|
|
1418
|
+
if (!enabled) return;
|
|
1419
|
+
|
|
1420
|
+
const tpl = document.getElementById('analytics-scripts')?.content;
|
|
1421
|
+
if (!tpl) return;
|
|
1422
|
+
|
|
1423
|
+
document.body.appendChild(tpl.cloneNode(true));
|
|
1424
|
+
},
|
|
1425
|
+
});
|
|
1426
|
+
</script>
|
|
1427
|
+
|
|
1428
|
+
<template id="analytics-scripts">
|
|
1429
|
+
<script type="text/javascript">
|
|
1430
|
+
console.log("Loading analytics")
|
|
1431
|
+
</script>
|
|
1432
|
+
|
|
1433
|
+
<script type="text/javascript">
|
|
1434
|
+
console.log("Loading clarity");
|
|
1435
|
+
(function(c,l,a,r,i,t,y){
|
|
1436
|
+
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
|
|
1437
|
+
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
|
|
1438
|
+
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
|
|
1439
|
+
})(window, document, "clarity", "script", "ub6iesnnrn");
|
|
1440
|
+
</script>
|
|
1441
|
+
|
|
1442
|
+
</template>
|
|
1443
|
+
|
|
1444
|
+
</body>
|
|
1445
|
+
</html>
|