-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopen-level5-super-series-larkspur-g12-apr4-2026.html
More file actions
2231 lines (1991 loc) · 124 KB
/
Copy pathopen-level5-super-series-larkspur-g12-apr4-2026.html
File metadata and controls
2231 lines (1991 loc) · 124 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="assets/tennis-report/favicon-32-thin.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/tennis-report/favicon-16.png">
<link rel="icon" type="image/png" sizes="48x48" href="assets/tennis-report/favicon-48.png">
<link rel="icon" type="image/x-icon" href="assets/tennis-report/favicon-32thin.ico">
<link rel="shortcut icon" href="assets/tennis-report/favicon-32thin.ico">
<meta property="og:type" content="website">
<meta property="og:title" content="Open Level 5 Super Series — Larkspur (Girls U12 Singles)">
<meta property="og:image" content="https://jazzyalex.github.io/TennisGroup/assets/tennis-report/og-image-edge-1200x630.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Tournament report preview">
<meta property="og:image" content="https://jazzyalex.github.io/TennisGroup/assets/tennis-report/og-image-edge.svg">
<meta property="og:image:type" content="image/svg+xml">
<meta property="og:image:alt" content="Tournament report preview">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://jazzyalex.github.io/TennisGroup/assets/tennis-report/og-image-edge-1200x630.png">
<meta name="twitter:image:alt" content="Tournament report preview">
<title>Open Level 5 Super Series — Larkspur (Girls U12 Singles), April 4 - 5, 2026, Redwood High School, Larkspur, CA</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/core.css">
<link rel="stylesheet" href="assets/css/report.css">
<script>
function toggleTheme() {
const html = document.documentElement;
const current = html.getAttribute('data-theme');
const next = current === 'dark' ? 'light' : 'dark';
html.setAttribute('data-theme', next);
localStorage.setItem('theme', next);
}
(function() {
const saved = localStorage.getItem('theme');
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (saved === 'dark' || (!saved && prefersDark)) {
document.documentElement.setAttribute('data-theme', 'dark');
}
})();
</script>
<style>
/* H2H inline badge */
.h2h-badge {
display: inline-block; font-size: 11px; font-weight: 600;
padding: 1px 6px; border-radius: 10px; white-space: nowrap;
line-height: 1.6; vertical-align: middle; margin-left: 4px; cursor: default;
}
.h2h-win { background: rgba(22,163,74,0.15); color: #16a34a; }
.h2h-loss { background: rgba(220,38,38,0.15); color: #dc2626; }
.h2h-even { background: rgba(220,38,38,0.08); color: #ef4444; }
html[data-theme="dark"] .h2h-win { background: rgba(74,222,128,0.15); color: #4ade80; }
html[data-theme="dark"] .h2h-loss { background: rgba(248,113,113,0.15); color: #f87171; }
html[data-theme="dark"] .h2h-even { background: rgba(248,113,113,0.08); color: #fca5a5; }
/* H2H tooltip */
#h2h-tooltip {
position: fixed; z-index: 9999; display: none; pointer-events: none;
min-width: 220px; max-width: 380px;
background: var(--surface, #fff); border: 1px solid var(--border, #e5e7eb);
border-radius: 8px; box-shadow: 0 6px 20px rgba(0,0,0,0.15);
padding: 10px 12px; font-size: 12px; line-height: 1.4;
}
.h2h-tip-header {
font-size: 10px; font-weight: 700; text-transform: uppercase;
letter-spacing: 0.6px; color: var(--text-muted, #6b7280);
margin-bottom: 7px; padding-bottom: 6px; border-bottom: 1px solid var(--border, #e5e7eb);
}
.h2h-tip-match {
display: flex; align-items: flex-start; gap: 8px;
padding: 5px 0; border-bottom: 1px solid var(--border, #e5e7eb);
font-variant-numeric: tabular-nums;
}
.h2h-tip-match:last-child { border-bottom: none; }
.h2h-tip-result { font-weight: 700; font-size: 12px; flex-shrink: 0; padding-top: 1px; }
.h2h-tip-result.win { color: #16a34a; }
.h2h-tip-result.loss { color: #dc2626; }
html[data-theme="dark"] .h2h-tip-result.win { color: #4ade80; }
html[data-theme="dark"] .h2h-tip-result.loss { color: #f87171; }
.h2h-tip-sets {
display: flex; flex-direction: column; flex-shrink: 0;
font-weight: 600; font-size: 12px; color: var(--text-primary, #111); min-width: 34px;
}
.h2h-tip-meta { font-size: 11px; color: var(--text-secondary, #6b7280); line-height: 1.45; }
/* H2H column */
th.col-h2h { width: 52px; text-align: center; font-size: 11px; }
td.col-h2h { text-align: center; white-space: nowrap; }
td.col-h2h .h2h-badge { margin-left: 0; }
</style>
</head>
<body>
<div id="h2h-tooltip"></div>
<!-- Navigation Bar -->
<nav>
<div class="nav-left">
<a href="index.html" class="nav-logo-link" aria-label="Home">
<div class="nav-logo">
<svg viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="64" height="64" rx="8" fill="#2d5a27"/>
<rect x="0" y="8" width="64" height="8" fill="#fafafa"/>
<rect x="28" y="8" width="8" height="56" fill="#fafafa"/>
</svg>
</div>
</a>
<span class="nav-brand">Tennis Tracker</span>
</div>
<div class="nav-center">
<div class="nav-links">
<a href="2025-usta-norcal-national.html" class="nav-link">Calendar</a>
<a href="player.html" class="nav-link">Player</a>
<a href="ranking-simulator.html" class="nav-link">Simulator</a>
<a href="usta-national-rankings.html" class="nav-link">Rankings</a>
</div>
</div>
<div class="nav-right">
<button class="toggle-btn" id="theme-toggle" aria-label="Toggle dark mode">
<span id="theme-icon">🌙</span>
</button>
</div>
</nav>
<div class="desktop-view">
<div class="report-header">
<a class="report-header-logo-link" href="index.html" aria-label="Back to tournament dashboard">
<svg class="report-header-logo" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="64" height="64" rx="8" fill="#2d5a27"/>
<rect x="0" y="8" width="64" height="8" fill="#fafafa"/>
<rect x="28" y="8" width="8" height="56" fill="#fafafa"/>
</svg>
</a>
<div class="report-header-text">
<h1>Open Level 5 Super Series — Larkspur (Girls U12 Singles)</h1>
<div class="tournament-dates-row">
<div class="tournament-dates">
April 4 - 5, 2026
</div>
<div class="deadline-badge" id="registration-deadline-badge">
<div class="deadline-countdown" id="registration-countdown">Closes in --</div>
<div class="deadline-date" id="registration-deadline-date">--</div>
</div>
</div>
<div class="tournament-info">
<a href="https://playtennis.usta.com/competitions/hrtacademiadetenis/Tournaments/overview/AEA2FA56-9549-471A-B774-2B8074116EBF" target="_blank" rel="noopener noreferrer" title="Open tournament page">Open Level 5 Super Series — Larkspur (Girls U12 Singles)</a><br>
Redwood High School, Larkspur, CA • 24 Players
</div>
</div>
</div>
<div id="report-updated-badge" class="report-updated-badge" data-updated-iso="2026-04-01T11:29:45-07:00" title="2026-04-01T11:29:45-07:00">
<span class="report-updated-badge__pill">Updated Apr 1, 2026 11:29 AM PDT</span>
</div>
<div class="table-meta">
<div class="key-stats">
<div class="key-stat"><span class="key-label">Draw</span><span class="key-value">32</span></div>
<div class="key-stat"><span class="key-label">Closes</span><span class="key-value">Registration closed</span></div>
<div class="key-stat"><span class="key-label">Registered</span><span class="key-value">24</span></div>
</div>
<div class="link-legend">Click on WTN or Nat Rank for USTA profile • on UTR for UTR profile</div>
</div>
<table id="players-table-main" class="players-table primary-table">
<thead class="sticky-header">
<tr>
<th class="col-rank">#</th>
<th class="sortable">First Name</th>
<th class="sortable">Last Name</th>
<th class="col-h2h sortable">H2H</th>
<th class="col-wtn sortable">WTN</th>
<th class="col-utr sortable">UTR</th>
<th class="col-national sortable">Nat Rank</th>
<th class="sortable">Location</th>
<th class="col-section-hidden" style="display: none;">Section</th>
</tr>
</thead>
<tbody>
<tr data-h2h="1" data-h2h-anchor="h2h-14b5582313c3c42fdae7" data-h2h-matches="1" data-player-key="KUKEEVA|VALENTINA" data-entry-status="entry" data-section-rank="9"><td class="col-rank">1</td><td><a class="h2h-jump" href="#h2h-14b5582313c3c42fdae7">Valentina</a></td><td><a class="h2h-jump" href="#h2h-14b5582313c3c42fdae7">Kukeeva</a></td><td class="col-h2h" data-sort-val="-1"><span class="h2h-badge h2h-loss" data-h2h="[{"d": "2025-11-15", "t": "FDT Level 5 Junior 12s, 16s & 18s Singles Championship NOV 15 - 16", "r": "Quarterfinals", "s": "2-4 1-4", "w": 0}]">0-1</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018899502" target="_blank" rel="noopener noreferrer">31.59</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3395363" target="_blank" rel="noopener noreferrer">5.51</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018899502" target="_blank" rel="noopener noreferrer">202</a></td><td>Campbell CA</td><td style="display: none;">9</td></tr>
<tr data-h2h="1" data-h2h-anchor="h2h-d9eebd7bce6e344eb929" data-h2h-matches="3" data-player-key="LAI|MEGAN" data-entry-status="entry" data-section-rank="34"><td class="col-rank">2</td><td><a class="h2h-jump" href="#h2h-d9eebd7bce6e344eb929">Megan</a></td><td><a class="h2h-jump" href="#h2h-d9eebd7bce6e344eb929">Lai</a></td><td class="col-h2h" data-sort-val="1"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2026-01-31", "t": "Open Level 5 Championship Singles - G12", "r": "Quarterfinals", "s": "6-1 0-6 [9-11]", "w": 1}, {"d": "2026-01-31", "t": "FDT Level 5 Junior Singles Championship", "r": "Quarterfinals", "s": "6-1 0-6 MTB 11-9", "w": 1}, {"d": "2025-10-25", "t": "BAWT \"THE GOAT\" Level 6 Junior Open OCT 25 - 26", "r": "Semifinals", "s": "4-6 1-6", "w": 0}]">2-1</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019656678" target="_blank" rel="noopener noreferrer">33.35</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/5078823" target="_blank" rel="noopener noreferrer">4.27</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019656678" target="_blank" rel="noopener noreferrer">594</a></td><td>San Ramon CA</td><td style="display: none;">34</td></tr>
<tr data-h2h="1" data-h2h-anchor="h2h-79be308eceb2783318dc" data-h2h-matches="2" data-player-key="WANG|ELLIE" data-entry-status="entry" data-section-rank="37"><td class="col-rank">3</td><td><a class="h2h-jump" href="#h2h-79be308eceb2783318dc">Ellie</a></td><td><a class="h2h-jump" href="#h2h-79be308eceb2783318dc">Wang</a></td><td class="col-h2h" data-sort-val="0"><span class="h2h-badge h2h-even" data-h2h="[{"d": "2026-03-07", "t": "Johnson Ranch Level 5 Junior 12s, 14s & 18s Super Series MAR 7 - 8", "r": "E-F", "s": "2-6 4-6", "w": 0}, {"d": "2025-11-15", "t": "FDT Level 5 Junior 12s, 16s & 18s Singles Championship NOV 15 - 16", "r": "Round of 16", "s": "4-0 4-1", "w": 1}]">1-1</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019241036" target="_blank" rel="noopener noreferrer">33.53</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/5327345" target="_blank" rel="noopener noreferrer">3.84</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019241036" target="_blank" rel="noopener noreferrer">623</a></td><td>Palo Alto CA</td><td style="display: none;">37</td></tr>
<tr data-h2h="1" data-h2h-anchor="h2h-b21504f37f617185000a" data-h2h-matches="4" data-player-key="HU|ANNABEL" data-entry-status="entry" data-section-rank="28"><td class="col-rank">4</td><td><a class="h2h-jump" href="#h2h-b21504f37f617185000a">Annabel</a></td><td><a class="h2h-jump" href="#h2h-b21504f37f617185000a">Hu</a></td><td class="col-h2h" data-sort-val="-4"><span class="h2h-badge h2h-loss" data-h2h="[{"d": "2026-02-01", "t": "Open Level 5 Championship Singles - G12", "r": "PL-Final", "s": "6-7(4) 1-6", "w": 0}, {"d": "2026-01-31", "t": "FDT Level 5 Junior Singles Championship", "r": "", "s": "6-7(4) 1-6", "w": 0}, {"d": "2025-07-19", "t": "Chamisal Level 5 Junior 12s Championships - Singles & Doubles JUL 19 - 21", "r": "Round of 16", "s": "1-6 1-6", "w": 0}, {"d": "2025-04-05", "t": "NPT Level 5 Junior 12s & 14s Super Series APR 5 - 6", "r": "E-QF", "s": "6-4 3-6 1-6", "w": 0}]">0-4</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018637000" target="_blank" rel="noopener noreferrer">33.64</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3095546" target="_blank" rel="noopener noreferrer">4.61</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018637000" target="_blank" rel="noopener noreferrer">460</a></td><td>Palo Alto CA</td><td style="display: none;">28</td></tr>
<tr data-player-key="YU|JENNA" data-entry-status="entry" data-section-rank="19"><td class="col-rank">5</td><td>Jenna</td><td>Yu</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018832337" target="_blank" rel="noopener noreferrer">33.66</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3432127" target="_blank" rel="noopener noreferrer">4.26</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018832337" target="_blank" rel="noopener noreferrer">340</a></td><td>Foster City CA</td><td style="display: none;">19</td></tr>
<tr data-h2h="1" data-h2h-anchor="h2h-72a97c25b1c76ff8218b" data-h2h-matches="2" data-player-key="LIU|ANGELA" data-entry-status="entry" data-section-rank="29"><td class="col-rank">6</td><td><a class="h2h-jump" href="#h2h-72a97c25b1c76ff8218b">Angela</a></td><td><a class="h2h-jump" href="#h2h-72a97c25b1c76ff8218b">Liu</a></td><td class="col-h2h" data-sort-val="2"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2025-11-15", "t": "FDT Level 5 Junior 12s, 16s & 18s Singles Championship NOV 15 - 16", "r": "Round of 32", "s": "5-3 4-1", "w": 1}, {"d": "2025-01-25", "t": "NPT Level 6 Junior Open JAN 25 - 26", "r": "Final", "s": "6-0 6-1", "w": 1}]">2-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018981779" target="_blank" rel="noopener noreferrer">34.32</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3914845" target="_blank" rel="noopener noreferrer">4.58</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018981779" target="_blank" rel="noopener noreferrer">493</a></td><td>Sunnyvale CA</td><td style="display: none;">29</td></tr>
<tr data-player-key="TYNDALL|JULIANA" data-entry-status="entry" data-section-rank="47"><td class="col-rank">7</td><td>Juliana</td><td>Tyndall</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019392484" target="_blank" rel="noopener noreferrer">34.48</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4292476" target="_blank" rel="noopener noreferrer">3.75</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019392484" target="_blank" rel="noopener noreferrer">794</a></td><td>Moraga CA</td><td style="display: none;">47</td></tr>
<tr data-h2h="1" data-h2h-anchor="h2h-4ec7fd865ccc8a29d06b" data-h2h-matches="2" data-player-key="WU|BELLA" data-entry-status="entry" data-section-rank="30"><td class="col-rank">8</td><td><a class="h2h-jump" href="#h2h-4ec7fd865ccc8a29d06b">Bella</a></td><td><a class="h2h-jump" href="#h2h-4ec7fd865ccc8a29d06b">Wu</a></td><td class="col-h2h" data-sort-val="2"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2024-09-01", "t": "Equal Chance Level 7 Junior Challenger - SEP 1", "r": "Round 3", "s": "7-6(5)", "w": 1}, {"d": "2024-06-02", "t": "June FDT Level 7 Junior Challenger JUN 2", "r": "Round 2", "s": "6-4", "w": 1}]">2-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018791290" target="_blank" rel="noopener noreferrer">34.56</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3504317" target="_blank" rel="noopener noreferrer">3.89</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018791290" target="_blank" rel="noopener noreferrer">500</a></td><td>Los Gatos CA</td><td style="display: none;">30</td></tr>
<tr data-player-key="SUN|MAY" data-entry-status="entry" data-section-rank="52"><td class="col-rank">9</td><td>May</td><td>Sun</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018905027" target="_blank" rel="noopener noreferrer">34.62</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3860946" target="_blank" rel="noopener noreferrer">3.76</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018905027" target="_blank" rel="noopener noreferrer">891</a></td><td>Sunnyvale CA</td><td style="display: none;">52</td></tr>
<tr data-player-key="WALL|NOA" data-entry-status="entry" data-section-rank="57"><td class="col-rank">10</td><td>Noa</td><td>Wall</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018853263" target="_blank" rel="noopener noreferrer">34.64</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/5759669" target="_blank" rel="noopener noreferrer">3.26</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018853263" target="_blank" rel="noopener noreferrer">996</a></td><td>Kensington CA</td><td style="display: none;">57</td></tr>
<tr data-h2h="1" data-h2h-anchor="h2h-0c6d43b996cb16c947fc" data-h2h-matches="1" data-player-key="LI|AMY" data-entry-status="entry" data-section-rank="43"><td class="col-rank">11</td><td><a class="h2h-jump" href="#h2h-0c6d43b996cb16c947fc">Amy</a></td><td><a class="h2h-jump" href="#h2h-0c6d43b996cb16c947fc">Li</a></td><td class="col-h2h" data-sort-val="1"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2024-09-01", "t": "Equal Chance Level 7 Junior Challenger - SEP 1", "r": "Round 1", "s": "6-1", "w": 1}]">1-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019389340" target="_blank" rel="noopener noreferrer">34.89</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4747020" target="_blank" rel="noopener noreferrer">3.72</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019389340" target="_blank" rel="noopener noreferrer">713</a></td><td>Saratoga CA</td><td style="display: none;">43</td></tr>
<tr data-player-key="MOLOCHKO|KATERYNA" data-entry-status="entry" data-section-rank="32"><td class="col-rank">12</td><td>Kateryna</td><td>Molochko</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019450380" target="_blank" rel="noopener noreferrer">34.92</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4427419" target="_blank" rel="noopener noreferrer">4.06</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019450380" target="_blank" rel="noopener noreferrer">558</a></td><td>Castro Valley CA</td><td style="display: none;">32</td></tr>
<tr data-player-key="TAUSINGA|MARIA" data-entry-status="entry" data-section-rank="60"><td class="col-rank">13</td><td>Maria</td><td>Tausinga</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019422058" target="_blank" rel="noopener noreferrer">35.12</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4410049" target="_blank" rel="noopener noreferrer">3.38</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019422058" target="_blank" rel="noopener noreferrer">1053</a></td><td>Menlo Park CA</td><td style="display: none;">60</td></tr>
<tr data-player-key="LI|GRACE" data-entry-status="entry" data-section-rank="38"><td class="col-rank">14</td><td>Grace</td><td>Li</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018857955" target="_blank" rel="noopener noreferrer">35.18</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3291862" target="_blank" rel="noopener noreferrer">4.00</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018857955" target="_blank" rel="noopener noreferrer">643</a></td><td>Cupertino CA</td><td style="display: none;">38</td></tr>
<tr data-player-key="KIM|AUBREY" data-entry-status="entry" data-section-rank="55"><td class="col-rank">15</td><td>Aubrey</td><td>Kim</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019100078" target="_blank" rel="noopener noreferrer">35.52</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3748268" target="_blank" rel="noopener noreferrer">3.11</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019100078" target="_blank" rel="noopener noreferrer">1279</a></td><td>Woodstock MD</td><td style="display: none;">55</td></tr>
<tr data-h2h="1" data-h2h-anchor="h2h-8e42b8d7e68bd67dfe83" data-h2h-matches="1" data-player-key="BHAMBANI|SANIA" data-entry-status="entry" data-section-rank="61"><td class="col-rank">16</td><td><a class="h2h-jump" href="#h2h-8e42b8d7e68bd67dfe83">Sania</a></td><td><a class="h2h-jump" href="#h2h-8e42b8d7e68bd67dfe83">Bhambani</a></td><td class="col-h2h" data-sort-val="1"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2025-01-25", "t": "NPT Level 6 Junior Open JAN 25 - 26", "r": "Semifinals", "s": "6-2 7-5", "w": 1}]">1-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018668291" target="_blank" rel="noopener noreferrer">35.55</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3114224" target="_blank" rel="noopener noreferrer">3.09</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018668291" target="_blank" rel="noopener noreferrer">1060</a></td><td>Saratoga CA</td><td style="display: none;">61</td></tr>
<tr data-player-key="CHOPRA|RIYA" data-entry-status="entry" data-section-rank="87"><td class="col-rank">17</td><td>Riya</td><td>Chopra</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019505129" target="_blank" rel="noopener noreferrer">35.64</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4914478" target="_blank" rel="noopener noreferrer">3.25</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019505129" target="_blank" rel="noopener noreferrer">1424</a></td><td>Fremont CA</td><td style="display: none;">87</td></tr>
<tr data-h2h="1" data-h2h-anchor="h2h-683a8fcfa29b7fe66107" data-h2h-matches="2" data-player-key="ZHOU|AMBER" data-entry-status="entry" data-section-rank="51"><td class="col-rank">18</td><td><a class="h2h-jump" href="#h2h-683a8fcfa29b7fe66107">Amber</a></td><td><a class="h2h-jump" href="#h2h-683a8fcfa29b7fe66107">Zhou</a></td><td class="col-h2h" data-sort-val="2"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2024-10-12", "t": "N.P.T. Level 6 Junior Open OCT 12 - 13", "r": "C-SF", "s": "5-4(5) 4-1", "w": 1}, {"d": "2023-11-05", "t": "🎾🎾Equal Chance 10U Orange & 10/12U Green Singles/DOUBLES 🟠🟢🟢 - Green NOV 5", "r": "Round 4", "s": "6-5", "w": 1}]">2-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018790883" target="_blank" rel="noopener noreferrer">35.67</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4043630" target="_blank" rel="noopener noreferrer">3.50</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018790883" target="_blank" rel="noopener noreferrer">885</a></td><td>Foster City CA</td><td style="display: none;">51</td></tr>
<tr data-player-key="GRYUKOVA|DARIA" data-entry-status="entry" data-section-rank="56"><td class="col-rank">19</td><td>Daria</td><td>Gryukova</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019047937" target="_blank" rel="noopener noreferrer">35.78</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3703422" target="_blank" rel="noopener noreferrer">3.15</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019047937" target="_blank" rel="noopener noreferrer">947</a></td><td>Concord CA</td><td style="display: none;">56</td></tr>
<tr data-player-key="KNAPP|OLIVIA" data-entry-status="entry" data-section-rank="81"><td class="col-rank">20</td><td>Olivia</td><td>Knapp</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018820003" target="_blank" rel="noopener noreferrer">35.97</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3610832" target="_blank" rel="noopener noreferrer">3.14</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018820003" target="_blank" rel="noopener noreferrer">1380</a></td><td>Menlo Park CA</td><td style="display: none;">81</td></tr>
<tr data-h2h="1" data-h2h-anchor="h2h-458ab6c6f1cb522ec795" data-h2h-matches="2" data-player-key="KUKEEVA|NIKOL" data-entry-status="entry" data-section-rank="70"><td class="col-rank">21</td><td><a class="h2h-jump" href="#h2h-458ab6c6f1cb522ec795">Nikol</a></td><td><a class="h2h-jump" href="#h2h-458ab6c6f1cb522ec795">Kukeeva</a></td><td class="col-h2h" data-sort-val="2"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2025-10-25", "t": "BAWT \"THE GOAT\" Level 6 Junior Open OCT 25 - 26", "r": "Quarterfinals", "s": "6-3 6-4", "w": 1}, {"d": "2023-03-04", "t": "10&12U Orange/Green Ball Equal Chance Foundation (rescheduled from 2.26.23) Coed 10 & under singles - Orange MAR 4", "r": "Round 3", "s": "4-1", "w": 1}]">2-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018899503" target="_blank" rel="noopener noreferrer">36.10</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3610236" target="_blank" rel="noopener noreferrer">3.01</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018899503" target="_blank" rel="noopener noreferrer">1233</a></td><td>Campbell CA</td><td style="display: none;">70</td></tr>
<tr data-player-key="TOYODA|ITONO" data-entry-status="entry" data-section-rank="69"><td class="col-rank">22</td><td>Itono</td><td>Toyoda</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019280279" target="_blank" rel="noopener noreferrer">36.62</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4341870" target="_blank" rel="noopener noreferrer">2.54</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019280279" target="_blank" rel="noopener noreferrer">1226</a></td><td>San Jose CA</td><td style="display: none;">69</td></tr>
<tr data-player-key="XIAO|RACHEL" data-entry-status="entry" data-section-rank="88"><td class="col-rank">23</td><td>Rachel</td><td>Xiao</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019389495" target="_blank" rel="noopener noreferrer">36.83</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/5249242" target="_blank" rel="noopener noreferrer">2.15</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019389495" target="_blank" rel="noopener noreferrer">1439</a></td><td>Burlingame CA</td><td style="display: none;">88</td></tr>
<tr data-player-key="CHITAURE|SARAHANA" data-entry-status="entry" data-section-rank="68"><td class="col-rank">24</td><td>Sarahana</td><td>Chitaure</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019291144" target="_blank" rel="noopener noreferrer">38.91</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4449589" target="_blank" rel="noopener noreferrer">2.04</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019291144" target="_blank" rel="noopener noreferrer">1155</a></td><td>El Sobrante CA</td><td style="display: none;">68</td></tr>
</tbody>
</table>
<div class="utr-histogram">
<h3>UTR Distribution <span class="utr-subtitle">(0.5-point bins)</span></h3>
<div id="utr-histogram-chart" class="utr-histogram-chart" data-utr-table="#players-table-main"></div>
<div class="utr-histogram-caption" id="utr-histogram-caption">Based on UTR values from the player list.</div>
</div>
<div class="stats-section">
<h2>Tournament Statistics</h2>
<div class="stats-grid">
<div class="stat-box">
<div class="stat-label">Total Players</div>
<div class="stat-value">24</div>
</div>
<div class="stat-box">
<div class="stat-label">WTN Range</div>
<div class="stat-value">31.59 - 38.91</div>
</div>
<div class="stat-box">
<div class="stat-label">Avg WTN</div>
<div class="stat-value">35.05</div>
</div>
<div class="stat-box">
<div class="stat-label">Avg UTR (known)</div>
<div class="stat-value">3.58</div>
</div>
<div class="stat-box">
<div class="stat-label">Draw Size</div>
<div class="stat-value">32</div>
</div>
<div class="stat-box">
<div class="stat-label">Registered</div>
<div class="stat-value">24</div>
</div>
<div class="stat-box">
<div class="stat-label">Registration Closes</div>
<div class="stat-value">Registration closed</div>
</div>
<div class="stat-box">
<div class="stat-label">Best Nat Rank</div>
<div class="stat-value">202</div>
</div>
<div class="stat-box">
<div class="stat-label">Top UTR</div>
<div class="stat-value">5.51</div>
</div>
</div>
</div>
<div class="tournament-details-page">
<h2>Tournament Information & Details</h2>
<h3>Draw & Registration</h3>
<div class="selection-callout">Details are based on the current USTA PlayTennis entry list.</div>
<div class="detail-row">
<span class="detail-label">Draw Size:</span>
<span class="detail-value">32</span>
</div>
<div class="detail-row">
<span class="detail-label">Registered:</span>
<span class="detail-value">24</span>
</div>
<div class="detail-row">
<span class="detail-label">Registration Closes:</span>
<span class="detail-value">Registration closed</span>
</div>
<div class="detail-row">
<span class="detail-label">Selection / Seeding:</span>
<span class="detail-value">Players are selected and seeded by the most recently published National Standings List of the division.</span>
</div>
<h3>Format & Scoring</h3>
<div class="detail-row">
<span class="detail-label">Match Format:</span>
<span class="detail-value">This tournament has been designated to count for USTA Level 5 Ranking and uses the Flighted Draw Ranking Table. In the unlikely event there is only one flight, the standard table for a Compass Draw will be used.</span>
</div>
<div class="detail-row">
<span class="detail-label">Tiebreaks:</span>
<span class="detail-value">All matches will be the best of 3 Tiebreak sets and will use Regular Scoring, except that in the unlikely event that 5 entries are received in a division, the best of 3 Tiebreak sets with a 10-Point Match Tiebreak will be played. Note that in the event of inclement weather the USTA Regulations permit the Referee to...</span>
</div>
<h3>Venue Information</h3>
<div class="detail-row">
<span class="detail-label">Site:</span>
<span class="detail-value"><a href="https://www.google.com/maps/search/?api=1&query=Redwood High School Larkspur CA" target="_blank" style="color: #4472C4; text-decoration: none;">Redwood High School, Larkspur, CA</a></span>
</div>
<h3>Tournament Location</h3>
<div class="detail-row">
<span class="detail-label">Tournament Location:</span>
<span class="detail-value">Redwood High School, Larkspur, CA</span>
</div>
<div class="detail-row">
<span class="detail-label">Tournament Dates:</span>
<span class="detail-value">April 4 - 5, 2026</span>
</div>
<h3>Tournament Contact</h3>
<div class="detail-row">
<span class="detail-label">Tournament Director:</span>
<span class="detail-value">Hugo Colpart</span>
</div>
<div class="detail-row">
<span class="detail-label">Email:</span>
<span class="detail-value">hrttournaments@gmail.com</span>
</div>
<div class="detail-row">
<span class="detail-label">Phone:</span>
<span class="detail-value">707-971-5074</span>
</div>
</div>
<!-- Alexis vs roster match-history (desktop slot) -->
<div id="alexis-h2h-slot-desktop"></div>
<div class="desktop-view-toggle">
<a href="#" id="desktop-toggle-mobile">View Mobile Version</a>
</div>
</div><!-- end desktop-view -->
<!-- Mobile View Container -->
<div class="mobile-view">
<!-- Mobile Header -->
<header class="mobile-header">
<div class="mobile-header-top">
<a class="mobile-header-logo-link" href="index.html" aria-label="Back to tournament dashboard">
<svg class="mobile-header-logo" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="64" height="64" rx="8" fill="#2d5a27"/>
<rect x="0" y="8" width="64" height="8" fill="#fafafa"/>
<rect x="28" y="8" width="8" height="56" fill="#fafafa"/>
</svg>
</a>
<div class="mobile-header-content">
<h1 class="mobile-header-title" id="mobile-title"></h1>
<div class="mobile-header-meta" id="mobile-meta"></div>
<div class="mobile-deadline-badge" id="mobile-deadline-badge">
<div class="mobile-deadline-countdown" id="mobile-registration-countdown">Closes in --</div>
<div class="mobile-deadline-date" id="mobile-registration-date">--</div>
</div>
</div>
</div>
</header>
<!-- Hero Stats -->
<div class="mobile-hero-stats">
<!-- Tournament Name Link (inside card) -->
<a href="https://playtennis.usta.com/competitions/hrtacademiadetenis/Tournaments/overview/AEA2FA56-9549-471A-B774-2B8074116EBF" target="_blank" rel="noopener noreferrer" class="mobile-tournament-link">
Open Level 5 Super Series — Larkspur (Girls U12 Singles)
</a>
<!-- Stats Grid -->
<div class="mobile-stats-grid">
<div class="mobile-stat-card">
<div class="mobile-stat-value" id="mobile-draw-size"></div>
<div class="mobile-stat-label">Draw Size</div>
</div>
<div class="mobile-stat-card highlight">
<div class="mobile-stat-value" id="mobile-seed"></div>
<div class="mobile-stat-label">Closes</div>
</div>
<div class="mobile-stat-card">
<div class="mobile-stat-value" id="mobile-registered"></div>
<div class="mobile-stat-label">Registered</div>
</div>
</div>
</div>
<!-- Alexis Spotlight Card -->
<div class="mobile-alexis-card" id="mobile-alexis-card"></div>
<!-- Position Gauge -->
<div class="mobile-position-gauge" id="mobile-position-gauge"></div>
<!-- UTR Distribution -->
<div class="mobile-section-header">
<span class="mobile-section-title">UTR Distribution</span>
</div>
<div class="mobile-chart-section">
<div class="mobile-chart-card" id="mobile-histogram"></div>
</div>
<!-- Player List -->
<div class="mobile-section-header">
<span class="mobile-section-title">All Players (<span id="mobile-player-count"></span>)</span>
</div>
<div class="mobile-sort-controls">
<button class="mobile-sort-btn" data-sort="utr">UTR</button>
<button class="mobile-sort-btn active" data-sort="natRank">Nat Rank</button>
<button class="mobile-sort-btn" data-sort="wtn">WTN</button>
</div>
<div class="mobile-player-list" id="mobile-player-list"></div>
<button class="mobile-show-more" id="mobile-show-more">Show all players ↓</button>
<!-- Tournament Details -->
<div class="mobile-section-header">
<span class="mobile-section-title">Tournament Details</span>
</div>
<div class="mobile-info-section" id="mobile-info-section"></div>
<!-- Alexis vs roster match-history (mobile slot) -->
<div id="alexis-h2h-slot-mobile"></div>
<!-- View Toggle -->
<div class="mobile-view-toggle">
<a href="#" id="mobile-toggle-desktop">View Desktop Version</a>
</div>
</div><!-- end mobile-view -->
<!-- PRIMARY_ROSTER_H2H_START -->
<div id="alexis-roster-h2h-wrapper" data-h2h-wrapper="primary-roster-h2h-wrapper">
<script>(function(){
function h2hToggleMore(btn){
var gid=btn.getAttribute('data-gid');
var rows=document.querySelectorAll('.h2h-match[data-gid="'+gid+'"]');
var open=btn.getAttribute('data-open')==='1';
rows.forEach(function(r){r.classList.toggle('h2h-match-hidden',open);});
btn.setAttribute('data-open',open?'0':'1');
}
window.h2hToggleMore=h2hToggleMore;
})();</script>
<section class="h2h-block" id="primary-roster-h2h">
<div class="h2h-section-header">
<h2 class="h2h-section-title">Alexis Malakhova vs This Roster</h2>
<span class="h2h-section-subtitle">10 opponents in this draw</span>
</div>
<div class="h2h-chips"><a class="h2h-chip" href="#h2h-79be308eceb2783318dc"><span class="h2h-chip-name">Ellie Wang</span><span class="h2h-chip-record">H2H 1–1</span></a><a class="h2h-chip" href="#h2h-b21504f37f617185000a"><span class="h2h-chip-name">Annabel Hu</span><span class="h2h-chip-record">H2H 0–4</span></a><a class="h2h-chip" href="#h2h-d9eebd7bce6e344eb929"><span class="h2h-chip-name">Megan Lai</span><span class="h2h-chip-record">H2H 2–1</span></a><a class="h2h-chip" href="#h2h-72a97c25b1c76ff8218b"><span class="h2h-chip-name">Angela Liu</span><span class="h2h-chip-record">H2H 2–0</span></a><a class="h2h-chip" href="#h2h-14b5582313c3c42fdae7"><span class="h2h-chip-name">Valentina Kukeeva</span><span class="h2h-chip-record">H2H 0–1</span></a><a class="h2h-chip" href="#h2h-458ab6c6f1cb522ec795"><span class="h2h-chip-name">Nikol Kukeeva</span><span class="h2h-chip-record">H2H 2–0</span></a><a class="h2h-chip" href="#h2h-8e42b8d7e68bd67dfe83"><span class="h2h-chip-name">Sania Bhambani</span><span class="h2h-chip-record">H2H 1–0</span></a><a class="h2h-chip" href="#h2h-683a8fcfa29b7fe66107"><span class="h2h-chip-name">Amber Zhou</span><span class="h2h-chip-record">H2H 2–0</span></a><a class="h2h-chip" href="#h2h-4ec7fd865ccc8a29d06b"><span class="h2h-chip-name">Bella Wu</span><span class="h2h-chip-record">H2H 2–0</span></a><a class="h2h-chip" href="#h2h-0c6d43b996cb16c947fc"><span class="h2h-chip-name">Amy Li</span><span class="h2h-chip-record">H2H 1–0</span></a></div>
<div class="h2h-player-card" id="h2h-79be308eceb2783318dc" data-h2h-player-id="player:79be308eceb2783318dc"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Ellie Wang</span><span class="h2h-player-loc">Palo Alto CA</span></div><div class="h2h-record-summary">H2H 1–1</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Mar 7th, 2026</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">Johnson Ranch Level 5 Junior 12s, 14s & 18s Super Series MAR 7 - 8</div><div class="h2h-match-event-sub">Girls' 12 & under singles · Johnson Ranch</div></div><div class="h2h-match-score">2-6 4-6</div></div><div class="h2h-match"><div class="h2h-match-date">Nov 15th, 2025</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">FDT Level 5 Junior 12s, 16s & 18s Singles Championship NOV 15 - 16</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">4-0 4-1</div></div></div></div><div class="h2h-player-card" id="h2h-b21504f37f617185000a" data-h2h-player-id="player:b21504f37f617185000a"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Annabel Hu</span><span class="h2h-player-loc">Palo Alto CA</span></div><div class="h2h-record-summary">H2H 0–4</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Feb 1st, 2026</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main"><a href="https://playtennis.usta.com/Competitions/fourdirectionstennis/Tournaments/draws/AADD3F01-D779-44EB-8F33-3CD79A3018F1" target="_blank" rel="noopener noreferrer">Open Level 5 Championship Singles - G12</a></div><div class="h2h-match-event-sub">Girls' 12 & under Singles · Open</div></div><div class="h2h-match-score">6-7(4) 1-6</div></div><div class="h2h-match"><div class="h2h-match-date">Jan 31st, 2026</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">FDT Level 5 Junior Singles Championship</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-7(4) 1-6</div></div><div class="h2h-match"><div class="h2h-match-date">Jul 19th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">Chamisal Level 5 Junior 12s Championships - Singles & Doubles JUL 19 - 21</div><div class="h2h-match-event-sub">Girls' 12 & under singles · Chamisal</div></div><div class="h2h-match-score">1-6 1-6</div></div><div class="h2h-match h2h-match-hidden" data-gid="h2h-b21504f37f617185000a"><div class="h2h-match-date">Apr 5th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">NPT Level 5 Junior 12s & 14s Super Series APR 5 - 6</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-4 3-6 1-6</div></div></div><div class="h2h-show-more-row"><button class="h2h-show-more" data-gid="h2h-b21504f37f617185000a" data-open="0" onclick="h2hToggleMore(this)" aria-label="Show 1 more match"><svg class="h2h-smc" width="14" height="14" viewBox="0 0 14 14" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><polyline points="3,5 7,9.5 11,5"/></svg><span class="h2h-smn">+1</span></button></div></div><div class="h2h-player-card" id="h2h-d9eebd7bce6e344eb929" data-h2h-player-id="player:d9eebd7bce6e344eb929"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Megan Lai</span><span class="h2h-player-loc">San Ramon CA</span></div><div class="h2h-record-summary">H2H 2–1</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Jan 31st, 2026</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main"><a href="https://playtennis.usta.com/Competitions/fourdirectionstennis/Tournaments/draws/AADD3F01-D779-44EB-8F33-3CD79A3018F1" target="_blank" rel="noopener noreferrer">Open Level 5 Championship Singles - G12</a></div><div class="h2h-match-event-sub">Girls' 12 & under Singles · Open</div></div><div class="h2h-match-score">6-1 0-6 [9-11]</div></div><div class="h2h-match"><div class="h2h-match-date">Jan 31st, 2026</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">FDT Level 5 Junior Singles Championship</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-1 0-6 MTB 11-9</div></div><div class="h2h-match"><div class="h2h-match-date">Oct 25th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">BAWT "THE GOAT" Level 6 Junior Open OCT 25 - 26</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">4-6 1-6</div></div></div></div><div class="h2h-player-card" id="h2h-72a97c25b1c76ff8218b" data-h2h-player-id="player:72a97c25b1c76ff8218b"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Angela Liu</span><span class="h2h-player-loc">Sunnyvale CA</span></div><div class="h2h-record-summary">H2H 2–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Nov 15th, 2025</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">FDT Level 5 Junior 12s, 16s & 18s Singles Championship NOV 15 - 16</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">5-3 4-1</div></div><div class="h2h-match"><div class="h2h-match-date">Jan 25th, 2025</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">NPT Level 6 Junior Open JAN 25 - 26</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-0 6-1</div></div></div></div><div class="h2h-player-card" id="h2h-14b5582313c3c42fdae7" data-h2h-player-id="player:14b5582313c3c42fdae7"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Valentina Kukeeva</span><span class="h2h-player-loc">Campbell CA</span></div><div class="h2h-record-summary">H2H 0–1</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Nov 15th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">FDT Level 5 Junior 12s, 16s & 18s Singles Championship NOV 15 - 16</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">2-4 1-4</div></div></div></div><div class="h2h-player-card" id="h2h-458ab6c6f1cb522ec795" data-h2h-player-id="player:458ab6c6f1cb522ec795"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Nikol Kukeeva</span><span class="h2h-player-loc">Campbell CA</span></div><div class="h2h-record-summary">H2H 2–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Oct 25th, 2025</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">BAWT "THE GOAT" Level 6 Junior Open OCT 25 - 26</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-3 6-4</div></div><div class="h2h-match"><div class="h2h-match-date">Mar 4th, 2023</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">10&12U Orange/Green Ball Equal Chance Foundation (rescheduled from 2.26.23) Coed 10 & under singles - Orange MAR 4</div></div><div class="h2h-match-score">4-1</div></div></div></div><div class="h2h-player-card" id="h2h-8e42b8d7e68bd67dfe83" data-h2h-player-id="player:8e42b8d7e68bd67dfe83"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Sania Bhambani</span><span class="h2h-player-loc">Saratoga CA</span></div><div class="h2h-record-summary">H2H 1–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Jan 25th, 2025</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">NPT Level 6 Junior Open JAN 25 - 26</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-2 7-5</div></div></div></div><div class="h2h-player-card" id="h2h-683a8fcfa29b7fe66107" data-h2h-player-id="player:683a8fcfa29b7fe66107"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Amber Zhou</span><span class="h2h-player-loc">Foster City CA</span></div><div class="h2h-record-summary">H2H 2–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Oct 12th, 2024</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">N.P.T. Level 6 Junior Open OCT 12 - 13</div><div class="h2h-match-event-sub">Girls' 12 & under singles · N.P.T.</div></div><div class="h2h-match-score">5-4(5) 4-1</div></div><div class="h2h-match"><div class="h2h-match-date">Nov 5th, 2023</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">🎾🎾Equal Chance 10U Orange & 10/12U Green Singles/DOUBLES 🟠🟢🟢 - Green NOV 5</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-5</div></div></div></div><div class="h2h-player-card" id="h2h-4ec7fd865ccc8a29d06b" data-h2h-player-id="player:4ec7fd865ccc8a29d06b"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Bella Wu</span><span class="h2h-player-loc">Los Gatos CA</span></div><div class="h2h-record-summary">H2H 2–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Sep 1st, 2024</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">Equal Chance Level 7 Junior Challenger - SEP 1</div><div class="h2h-match-event-sub">Boys & Girls 12's, 14's Girls' 12 & under singles · Equal Chance</div></div><div class="h2h-match-score">7-6(5)</div></div><div class="h2h-match"><div class="h2h-match-date">Jun 2nd, 2024</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">June FDT Level 7 Junior Challenger JUN 2</div><div class="h2h-match-event-sub">Girls' 12 & under singles · June FDT</div></div><div class="h2h-match-score">6-4</div></div></div></div><div class="h2h-player-card" id="h2h-0c6d43b996cb16c947fc" data-h2h-player-id="player:0c6d43b996cb16c947fc"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Amy Li</span><span class="h2h-player-loc">Saratoga CA</span></div><div class="h2h-record-summary">H2H 1–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Sep 1st, 2024</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">Equal Chance Level 7 Junior Challenger - SEP 1</div><div class="h2h-match-event-sub">Boys & Girls 12's, 14's Girls' 12 & under singles · Equal Chance</div></div><div class="h2h-match-score">6-1</div></div></div></div>
</section>
</div>
<!-- PRIMARY_ROSTER_H2H_END -->
<!-- Mobile View JavaScript -->
<script>
// ========================================
// MOBILE VIEW IMPLEMENTATION
// ========================================
let currentSort = 'natRank';
let isExpanded = false;
let allPlayers = [];
let isMixedEvent = false;
let mixedGroups = null;
let multiGroups = null;
let playerByKey = {};
let targetPlayer = null;
// Section ranks are sourced directly from the hidden table column.
const SECTION_RANKS = {};
// USTA UAID mapping from rankings_results_v1.csv
// USTA profile links - will be populated from desktop version's playerProfileUrlByName
const PLAYER_USTA_URLS = {};
// ========================================
// DATA PARSING FUNCTIONS
// ========================================
function detectMixedEvent() {
const tables = document.querySelectorAll('.desktop-view table.players-table');
if (tables.length < 2) return false;
const headers = Array.from(document.querySelectorAll('.desktop-view table.players-table thead th')).map((th) =>
(th.textContent || '').trim().toLowerCase()
);
// Mixed doubles reports include a partner column AND a Team/Combined NST column.
// Singles reports may also include a Partner column (doubles partner mapping).
return headers.includes('team nst') || headers.includes('combined nst');
}
function makePlayerKey(firstName, lastName) {
const first = (firstName || '').trim().toUpperCase();
const last = (lastName || '').trim().toUpperCase();
return `${last}|${first}`;
}
function partnerKeyFromText(text) {
const raw = (text || '').trim();
if (!raw) return '';
// Expected format: "Last, First"
if (raw.includes(',')) {
const parts = raw.split(',');
const last = (parts[0] || '').trim();
const first = (parts.slice(1).join(',') || '').trim();
return makePlayerKey(first, last);
}
// Fallback: "First Last"
const parts = raw.split(/\s+/).filter(Boolean);
if (parts.length === 1) return makePlayerKey(parts[0], '');
return makePlayerKey(parts[0], parts.slice(1).join(' '));
}
function parsePlayersFromTable(table, groupLabel) {
const players = [];
const headers = Array.from(table.querySelectorAll('thead th')).map((th) =>
(th.textContent || '').trim().toLowerCase()
);
const col = (name, fallback) => {
const idx = headers.findIndex((h) => h === name);
return idx !== -1 ? idx : fallback;
};
// Column indices (fallbacks match the single-table report layout).
const colRank = 0;
const colFirst = col('first name', 1);
const colLast = col('last name', 2);
const colWtn = col('wtn', 3);
const colUtr = col('utr', 4);
const colNat = col('nat rank', 5);
const colLocation = col('location', 6);
const partnerColIdx = headers.findIndex((h) => h === 'partner');
const hasPartner = partnerColIdx !== -1;
const sectionColIdx = headers.findIndex((h) => h === 'section rank');
const combinedColIdx = (() => {
const teamIdx = headers.findIndex((h) => h === 'team nst');
if (teamIdx !== -1) return teamIdx;
return headers.findIndex((h) => h === 'combined nst');
})();
const requiredCols = [colRank, colFirst, colLast, colWtn, colUtr, colNat, colLocation].filter((idx) => idx !== -1);
const minCells = requiredCols.length ? Math.max(...requiredCols) + 1 : 7;
const rows = table.querySelectorAll('tbody tr');
rows.forEach((row) => {
const cells = row.querySelectorAll('td');
if (cells.length < minCells) return;
const rank = parseInt((cells[colRank].textContent || '').trim(), 10);
const firstName = (cells[colFirst].textContent || '').trim();
const lastName = (cells[colLast].textContent || '').trim();
const fullName = `${firstName} ${lastName}`.trim();
const wtnCell = cells[colWtn];
const wtn = (wtnCell.textContent || '').trim();
const ustaLink = wtnCell ? wtnCell.querySelector('a') : null;
const utrCell = cells[colUtr];
const utrLink = utrCell ? utrCell.querySelector('a') : null;
const utrText = (utrLink ? utrLink.textContent : utrCell.textContent) || '';
const utrVal = parseFloat(utrText.trim());
const utr = Number.isFinite(utrVal) ? utrVal : NaN;
const utrUrl = utrLink ? utrLink.href : null;
const natCell = cells[colNat];
const natLink = natCell ? natCell.querySelector('a') : null;
const ustaUrl = (ustaLink && ustaLink.href) || (natLink && natLink.href) || null;
const natVal = parseInt((natCell.textContent || '').trim(), 10);
const natRank = Number.isFinite(natVal) ? natVal : NaN;
const location = (cells[colLocation].textContent || '').trim();
const isTarget = row.classList.contains('highlight-player');
const teamNst =
combinedColIdx !== -1 && cells[combinedColIdx] ? (cells[combinedColIdx].textContent || '').trim() : '';
let partner = '';
let partnerKey = '';
if (hasPartner && cells[partnerColIdx]) {
const partnerCell = cells[partnerColIdx];
const partnerLink = partnerCell.querySelector('.partner-jump');
partner = (partnerCell.textContent || '').trim();
partnerKey = partnerLink ? (partnerLink.getAttribute('data-partner-key') || '').trim() : partnerKeyFromText(partner);
}
// Extract UAID from USTA URL if available
let uaid = null;
if (ustaUrl) {
const uaidMatch = ustaUrl.match(/uaid=(\d+)/);
if (uaidMatch) uaid = uaidMatch[1];
}
const playerKey = (row.getAttribute('data-player-key') || '').trim() || makePlayerKey(firstName, lastName);
const groupPrefix = (() => {
const g = (groupLabel || '').trim();
if (!g) return '';
const m = g.match(/\b(10|12|14|16|18)\b/);
if (m) return m[1] + '-';
return g[0].toUpperCase() + '-';
})();
const id = groupPrefix + playerKey.replace(/[^A-Z0-9]+/g, '-');
// Section ranks exist only for singles reports (hidden column).
const sectionCell = sectionColIdx !== -1 ? cells[sectionColIdx] : null;
const sectionRank = sectionCell ? parseInt((sectionCell.textContent || '').trim(), 10) || null : null;
players.push({
id,
group: groupLabel || '',
playerKey,
partner,
partnerKey,
rank,
firstName,
lastName,
fullName,
wtn,
utr,
utrUrl,
natRank,
sectionRank,
uaid,
teamNst,
location,
isTarget
});
});
return players;
}
function parsePlayerData() {
isMixedEvent = detectMixedEvent();
mixedGroups = null;
multiGroups = null;
const tables = Array.from(document.querySelectorAll('.desktop-view table.players-table'));
if (!tables.length) return [];
if (isMixedEvent) {
const girls = [];
const boys = [];
tables.forEach((table) => {
const titleEl = table.previousElementSibling;
const titleText = titleEl ? (titleEl.textContent || '').trim().toLowerCase() : '';
const group = titleText.includes('boys') ? 'Boys' : titleText.includes('girls') ? 'Girls' : '';
const parsed = parsePlayersFromTable(table, group);
if (group === 'Boys') boys.push(...parsed);
else girls.push(...parsed);
});
mixedGroups = { girls, boys };
return [...girls, ...boys];
}
if (tables.length > 1) {
// Multiple singles tables (e.g., U12 + U14 on one page).
const groups = [];
tables.forEach((table, idx) => {
const titleEl = table.previousElementSibling;
const titleText = titleEl ? (titleEl.textContent || '').trim() : '';
const group = titleText || `Event ${idx + 1}`;
const parsed = parsePlayersFromTable(table, group);
groups.push({ label: group, players: parsed });
});
multiGroups = groups;
return groups.flatMap((g) => g.players);
}
// Singles: only one table.
return parsePlayersFromTable(tables[0], '');
}
function parseKeyStats() {
const stats = {
drawSize: 32,
closes: '',
registered: 0,
// Legacy/optional (Alexis-focused reports).
seed: null,
percentAbove: null
};
const keyStats = document.querySelectorAll('.desktop-view .key-stat');
keyStats.forEach(stat => {
const label = stat.querySelector('.key-label');
const value = stat.querySelector('.key-value');
if (!label || !value) return;
const labelText = label.textContent.trim();
const valueText = value.textContent.trim();
if (labelText === 'Draw') {
const parsed = parseInt(valueText, 10);
if (Number.isFinite(parsed)) stats.drawSize = parsed;
} else if (labelText === 'Closes') {
stats.closes = valueText;
} else if (labelText === 'Registered') {
const parsed = parseInt(valueText, 10);
if (Number.isFinite(parsed)) stats.registered = parsed;
} else if (labelText === 'Alexis Seed') {
const parts = valueText.split('/');
if (parts.length === 2) {
const seedParsed = parseInt(parts[0].trim(), 10);
const regParsed = parseInt(parts[1].trim(), 10);
if (Number.isFinite(seedParsed)) stats.seed = seedParsed;
if (Number.isFinite(regParsed)) stats.registered = regParsed;
}
} else if (labelText === '% Above Alexis (UTR)') {
const parsed = parseInt(valueText, 10);
if (Number.isFinite(parsed)) stats.percentAbove = parsed;
}
});
return stats;
}
function parseTournamentInfo() {
const info = {
title: '',
dates: '',
location: '',
format: {},
venues: [],
contact: {}
};
// Parse header info
const h1 = document.querySelector('.desktop-view h1');
if (h1) info.title = h1.textContent.trim();
const datesEl = document.querySelector('.desktop-view .tournament-dates');
if (datesEl) info.dates = datesEl.textContent.trim();
const tournamentInfo = document.querySelector('.desktop-view .tournament-info');
if (tournamentInfo) {
const text = tournamentInfo.textContent.trim();
const lines = text.split('\n').map(l => l.trim()).filter(l => l);
if (lines.length > 1) {
const fullLocation = lines[1].replace(/•.*$/, '').trim();
// Extract just "City, State" from full venue addresses
// Example: "Willow Glen MS/HS & Piedmont Hills HS, San Jose, CA" -> "San Jose, CA"
const cityStateMatch = fullLocation.match(/([^,]+,\s*[A-Z]{2})$/);
info.location = cityStateMatch ? cityStateMatch[1].trim() : fullLocation;
}
}
// Parse tournament details
const detailsPage = document.querySelector('.desktop-view .tournament-details-page');
if (detailsPage) {
const detailRows = detailsPage.querySelectorAll('.detail-row');
detailRows.forEach(row => {
const label = row.querySelector('.detail-label');
const value = row.querySelector('.detail-value');
if (!label || !value) return;
const labelText = label.textContent.trim().replace(':', '');
const valueText = value.textContent.trim();
// Format & Scoring
if (labelText === 'Match Format') info.format.matchFormat = valueText;
if (labelText === 'Tiebreaks') info.format.tiebreaks = valueText;
if (labelText === 'Set Tiebreak') info.format.setTiebreak = valueText;
if (labelText === 'Match Tiebreak') info.format.matchTiebreak = valueText;
// Venues
if (labelText.startsWith('Site')) {
const link = value.querySelector('a');
info.venues.push({
name: valueText.split(',')[0].trim(),
url: link ? link.href : null
});
}
// Contact
if (labelText === 'Tournament Director') info.contact.director = valueText;
if (labelText === 'Email') {
const link = value.querySelector('a');
info.contact.email = link ? link.href.replace('mailto:', '') : valueText;
}
if (labelText === 'Phone') {
const link = value.querySelector('a');
info.contact.phone = link ? link.textContent.trim() : valueText;
info.contact.phoneUrl = link ? link.href : null;
}
});
}
return info;
}
// ========================================
// RENDERING FUNCTIONS
// ========================================
function buildAlexisCard(player) {
if (!player) return '';
const initials = `${player.firstName[0]}${player.lastName[0]}`;
const sectionRank = 54; // Alexis's sectional rank from MEMORY_BANK.md
return `
<div class="mobile-alexis-header">
<div class="mobile-alexis-avatar">${initials}</div>
<div class="mobile-alexis-name">
<h3>${player.fullName}</h3>
<span>${player.location}</span>
</div>
<div class="mobile-alexis-seed">#${player.rank} Seed</div>
</div>
<div class="mobile-alexis-stats">
<div class="mobile-alexis-stat">
<div class="mobile-alexis-stat-value">${player.wtn}</div>
<div class="mobile-alexis-stat-label">WTN</div>
</div>
<div class="mobile-alexis-stat">
<div class="mobile-alexis-stat-value">${formatUtrValue(player.utr)}</div>
<div class="mobile-alexis-stat-label">UTR</div>
</div>
<div class="mobile-alexis-stat">
<div class="mobile-alexis-stat-value">${formatNatRankValue(player.natRank)}</div>
<div class="mobile-alexis-stat-label">Nat Rank</div>
</div>
<div class="mobile-alexis-stat">
<div class="mobile-alexis-stat-value">${sectionRank}</div>
<div class="mobile-alexis-stat-label">Section</div>
</div>
</div>
`;
}
function buildPositionGauge(players, targetPlayer) {
if (!targetPlayer || players.length === 0) return '';
const targetIndex = players.findIndex(p => p.isTarget);
const percentage = ((targetIndex / (players.length - 1)) * 100).toFixed(0);
const percentAbove = Math.round((targetIndex / players.length) * 100);
const firstPlayer = players[0];
const lastPlayer = players[players.length - 1];
const stats = parseKeyStats();
const cushion = stats.drawSize - targetPlayer.rank;
return `
<div class="mobile-gauge-header">
<span class="mobile-gauge-title">Position in Draw</span>
<span class="mobile-gauge-value">${percentAbove}% above her</span>
</div>
<div class="mobile-gauge-bar">
<div class="mobile-gauge-fill" id="gauge-fill" style="width: 0%;" data-width="${percentage}%">
<div class="mobile-gauge-marker"></div>
</div>
</div>
<div class="mobile-gauge-labels">
<span>#1 ${firstPlayer.firstName} ${firstPlayer.lastName[0]}.</span>
<span>#${targetPlayer.rank} ${targetPlayer.firstName}</span>
<span>#${players.length}</span>
</div>
${cushion > 0 ? `
<div class="mobile-gauge-note">
<span>✓</span>
${cushion}-player cushion above cutoff — safe entry
</div>
` : ''}
`;
}
function buildUtrHistogramMobile() {
// Find existing histogram data from desktop view
const desktopHistogram = document.querySelector('.desktop-view .utr-histogram-chart');
if (!desktopHistogram) return '';
const bins = desktopHistogram.querySelectorAll('.utr-bin');
if (bins.length === 0) return '';
let maxCount = 0;
const binData = [];
bins.forEach(bin => {
const countEl = bin.querySelector('.utr-bin-count');
const count = parseInt(countEl.textContent.trim());
const isHighlight = bin.classList.contains('is-highlight');
binData.push({ count, isHighlight });
maxCount = Math.max(maxCount, count);
});
// Build histogram bars
const bars = binData.map((bin, i) => {
const height = (bin.count / maxCount) * 100;
const className = bin.isHighlight ? 'mobile-histogram-bar alexis-range' : 'mobile-histogram-bar';
return `<div class="${className}" style="height: ${height}%;"></div>`;
}).join('');
return `
<div class="mobile-histogram">
${bars}
</div>
<div class="mobile-histogram-labels">
<span>2.0</span>
<span>3.0</span>
<span>4.0</span>
<span>5.0</span>
<span>6.0</span>
</div>
<div class="mobile-chart-legend">
<div class="mobile-legend-item">
<div class="mobile-legend-dot blue"></div>
<span>Other players</span>
</div>
<div class="mobile-legend-item">
<div class="mobile-legend-dot orange"></div>
<span>Alexis's range</span>
</div>
</div>
`;
}
function formatUtrValue(value) {
if (Number.isFinite(value)) return value.toFixed(2);
return 'N/A';
}
function formatNatRankValue(value) {
if (Number.isFinite(value)) return String(value);
return 'N/A';
}
function isProbablyEmail(value) {
const email = (value || '').trim();
if (!email) return false;
if (email.toUpperCase() === 'N/A') return false;
return /.+@.+\..+/.test(email);
}
function sortPlayers(players, sortBy) {
const sorted = [...players];
if (sortBy === 'rank') {
sorted.sort((a, b) => a.rank - b.rank);
} else if (sortBy === 'utr') {
sorted.sort((a, b) => {
const aVal = Number.isFinite(a.utr) ? a.utr : -1e9;
const bVal = Number.isFinite(b.utr) ? b.utr : -1e9;
return bVal - aVal; // Descending (higher is better)
});
} else if (sortBy === 'natRank') {
sorted.sort((a, b) => {
const aVal = Number.isFinite(a.natRank) ? a.natRank : 1e9;
const bVal = Number.isFinite(b.natRank) ? b.natRank : 1e9;
return aVal - bVal; // Ascending (lower is better)
});
} else if (sortBy === 'wtn') {
sorted.sort((a, b) => {
const aWtn = parseFloat(a.wtn) || 999;
const bWtn = parseFloat(b.wtn) || 999;
return aWtn - bWtn; // Ascending (lower is better)
});
}
return sorted;
}
function buildPlayerCards(players, sortBy, limit = null) {
const sorted = sortPlayers(players, sortBy);
const displayPlayers = limit ? sorted.slice(0, limit) : sorted;
const stats = parseKeyStats();
const showCutoff = sortBy === 'rank'; // Only show cutoff when sorted by seed
let html = '';
let cutoffAdded = false;
displayPlayers.forEach((player, index) => {
// Add cutoff divider after player #32 (only in seed order)
if (showCutoff && !cutoffAdded && player.rank === stats.drawSize && index < displayPlayers.length - 1) {
html += '<div class="mobile-cutoff-divider">✂️ Draw cutoff after player #' + stats.drawSize + '</div>';
cutoffAdded = true;
}
const isTopSeed = player.rank <= 8;
const cardClass = ['mobile-player-card'];
if (isTopSeed) cardClass.push('top-seed');
if (player.isTarget) cardClass.push('target-player');
html += `
<div class="${cardClass.join(' ')}" data-player-id="${player.id}">
<div class="mobile-player-rank">${player.rank}</div>
<div class="mobile-player-info">
<div class="mobile-player-name">${player.fullName}</div>
<div class="mobile-player-location">${player.location}</div>
</div>
<div class="mobile-player-ratings">
${player.utrUrl ? `
<a href="${player.utrUrl}" target="_blank" rel="noopener noreferrer" class="mobile-rating-badge utr" onclick="event.stopPropagation()">
<div class="mobile-rating-value">${formatUtrValue(player.utr)}</div>
<div class="mobile-rating-label">UTR</div>
</a>
` : `
<div class="mobile-rating-badge utr">
<div class="mobile-rating-value">${formatUtrValue(player.utr)}</div>
<div class="mobile-rating-label">UTR</div>
</div>
`}
${player.uaid ? `
<a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=${player.uaid}" target="_blank" rel="noopener noreferrer" class="mobile-rating-badge nat" onclick="event.stopPropagation()">
<div class="mobile-rating-value">${formatNatRankValue(player.natRank)}</div>
<div class="mobile-rating-label">Nat</div>
</a>
` : `
<div class="mobile-rating-badge nat">
<div class="mobile-rating-value">${formatNatRankValue(player.natRank)}</div>
<div class="mobile-rating-label">Nat</div>
</div>
`}
</div>
<div class="mobile-player-expand-icon">▼</div>
</div>
<div class="mobile-player-details" data-player-id="${player.id}">
<div class="mobile-player-details-grid">
<div class="mobile-detail-item">
<div class="mobile-detail-label">WTN</div>
<div class="mobile-detail-value">${player.wtn}</div>
</div>
<div class="mobile-detail-item">