-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathanniversary.html
More file actions
1087 lines (833 loc) · 82.8 KB
/
Copy pathanniversary.html
File metadata and controls
1087 lines (833 loc) · 82.8 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 lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0; charset=UTF-8">
<title>Swingtime</title>
<link rel="icon" href="favicon.ico">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<nav id="header" class="navbar navbar-expand-sm justify-content-between transition">
<div id="mini-logo"></div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#links" aria-controls="links" aria-expanded="false" aria-label="Toggle navigation">
<span class="fas fa-bars"></span>
</button>
<div id="links" class="collapse navbar-collapse justify-content-end">
<ul class="navbar-nav align-items-end">
<li class="nav-item"><a id="0203" href="#0203">'02</a></li>
<li class="nav-item"><a id="0304" href="#0304">'03</a></li>
<li class="nav-item"><a id="1213" href="#0405">'04</a></li>
<li class="nav-item"><a id="1213" href="#0506">'05</a></li>
<li class="nav-item"><a id="1213" href="#0607">'06</a></li>
<li class="nav-item"><a id="1213" href="#0708">'07</a></li>
<li class="nav-item"><a id="1213" href="#0809">'08</a></li>
<li class="nav-item"><a id="1213" href="#0910">'09</a></li>
<li class="nav-item"><a id="1213" href="#1011">'10</a></li>
<li class="nav-item"><a id="1213" href="#1112">'11</a></li>
<li class="nav-item"><a id="1213" href="#1213">'12</a></li>
<li class="nav-item"><a id="1314" href="#1314">'13</a></li>
<li class="nav-item"><a id="1415" href="#1415">'14</a></li>
<li class="nav-item"><a id="1516" href="#1516">'15</a></li>
<li class="nav-item"><a id="1617" href="#1617">'16</a></li>
<li class="nav-item"><a id="1718" href="#1718">'17</a></li>
<li class="nav-item"><a id="1920" href="#1819">'18</a></li>
<li class="nav-item"><a id="1920" href="#1920">'19</a></li>
<li class="nav-item"><a id="2021" href="#2021">'20</a></li>
<li class="nav-item"><a id="2022" href="#2022">'21</a></li>
<li class="nav-item"><a id="2023" href="#2023">'22</a></li>
<li class="nav-item"><a id="2024" href="#2024">'23</a></li>
<li class="nav-item"><a id="2025" href="#2025">'24</a></li>
<li class="nav-item"><a id="2025" href="#2026">'25</a></li>
</ul>
</div>
</nav>
<div id="banner">
<div id="banner-contents">
<div id="st">Archives:</div>
<div class="clear-inline"></div>
<div id="desc">Swingtime dancers of new and old</div>
</div>
</div>
<div id="content">
<div class="container">
<div class="info">
<!-- ##################### 2025-2026 -->
<h1 name="2025"><span class="line"></span>2025-2026<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/alaina-zhang//>Alaina Zhang</a> and Z Lakkis</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a style="color:black">Amelia Chiu</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/benjamin-otter-6a5092206/ style="color:black">Ben Otter</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/cat-fergesen-049621162/ style="color:black">Cat Fergesen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/dakota-l-051241280/ style="color:black">Dakota Lawlar</a></h5>
<h5 class="year"><a style="color:black">Grady Fleming</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/hfield/ style="color:black">Hannah Field</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/hanbo-xu/ style="color:black">Hanbo Xu</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/kylan-d-130a73290/ style="color:black">Kylan Denney</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/maya-arengo-278ab6236/ style="color:black">Maya Arengo</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/mayanbridgman/ style="color:black">Maya Bridgman</a></h5>
<h5 class="year"><a style="color:black">Rowyn Birdsley</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sharishsu/ style="color:black">Sharis Hsu</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sinmi-sowande/ style="color:black">Sinmi Sowande</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/turner-van-slyke-2815a62b9/ style="color:black">Turner Van Slyke</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tyler-yang-208816238/ style="color:black">Tyler Yang</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/vivien-he/ style="color:black">Vivien He</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://youtu.be/nmSkWKejTGU?si=kgHGLVxGgojSaJ39 style="color:black">L-O-V-E</a></h5>
<h5 class="year"><a href=https://youtu.be/_Yyubbekgno?si=PMeqtYEXz1ifntzp style="color:black">Minnie the Moocher</a></h5>
<h5 class="year"><a href=https://youtu.be/QNClzhK_mHA?si=ooonb3GUj_NlLgqc style="color:black">Mr. Pinstripe Suit</a></h5>
<h5 class="year"><a href=https://youtu.be/J0Y35x_5p38?si=abFqJyiy-PDW5Nnq style="color:black">I Won't Dance</a></h5>
<h5 class="year"><a href=https://youtu.be/iPEYM9U_hTA?si=2rAvVS2WRm4AVSQz style="color:black">Leadtime - How Bad Can I Be?</a></h5>
<h5 class="year"><a href=https://youtu.be/AENvCqw5dYM?si=Q8_MPWnTbb0PHqog style="color:black">Followtime - Milkshake</a></h5>
<h5 class="year"><a href=https://youtu.be/QN15agRuDBQ?si=r1ftKGnZ7wISwcJ6 style="color:black">Cat's Corner</a></h5>
<h5 class="text-center" style="color:#5b0505">Notes</h5>
<h6 class="year">Kai Fronsdal, Emily Saletan -> Alumni who helped spring quarter.</h6>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2025-2026.jpg">
</center>
<!-- ##################### 2024-2025 -->
<h1 name="2024"><span class="line"></span>2024-2025<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/shawn-zixuan-kang/>Shawn Kang</a> and <a href=https://www.linkedin.com/in/vivien-he/>Vivien He</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://www.linkedin.com/in/alaina-zhang/ style="color:black">Alaina Zhang</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/benjamin-otter-6a5092206/ style="color:black">Ben Otter</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/cat-fergesen-049621162/ style="color:black">Cat Fergesen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/chirag-pabbaraju-277a4ba5/ style="color:black">Chirag Pabbaraju</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/emily-saletan-3662b81b0/ style="color:black">Emily Saletan</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/kaifronsdal/ style="color:black">Kai Fronsdal</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/kylan-d-130a73290/ style="color:black">Kylan Denney</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/matias-benitez-51099b18a/ style="color:black">Matias Benitez</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/maya-arengo-278ab6236/ style="color:black">Maya Arengo</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/mayanbridgman/ style="color:black">Maya Bridgman</a></h5>
<h5 class="year"><a style="color:black">Nur Shelton</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sharishsu/ style="color:black">Sharis Hsu</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sylvia-vienna-gabriel/ style="color:black">Sylvia Gabriel</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/turner-van-slyke-2815a62b9/ style="color:black">Turner Van Slyke</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tyler-yang-208816238/ style="color:black">Tyler Yang</a></h5>
<h5 class="year"><a style="color:black">Z Lakkis</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://youtu.be/9gYtJSM0xo8?si=v0ZcL23c7kjEWimS style="color:black">Rocket 95</a></h5>
<h5 class="year"><a href=https://youtu.be/o6JSVv2G3Vo?si=PSTJTPIazDiBMZeQ style="color:black">Cat's Corner</a></h5>
<h5 class="year"><a href=https://youtu.be/c_fxNfLtZkk?si=GZYt8I8TKVn1nkGb style="color:black">Love Me or Leave Me</a></h5>
<h5 class="year"><a href=https://youtu.be/y19yHjqFXBY?si=V9gFU2L4RnBoNIpZ style="color:black">Candyman</a></h5>
<h5 class="year"><a href=https://youtu.be/InOB13lq-Lk?si=tIvddkSXPgQJRViM style="color:black">Followtime - I Don't Dance</a></h5>
<h5 class="year"><a href=https://youtu.be/avUDonDZDtY?si=o-syPM8U64dxP35M style="color:black">Leadtime - Ev'rybody Wants to Be a Cat</a></h5>
<h5 class="year"><a href=https://youtu.be/1Fy6LwWgIq8?si=mrNZzqmNvun2dWU7 style="color:black">Cat's Corner</a></h5>
<h5 class="text-center" style="color:#5b0505">Notes</h5>
<h6 class="year">Z Lakkiz, Maya Arengo -> Assistant ADs who helped throughout winter & spring quarter.</h6>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2024-2025.JPEG">
</center>
<!-- ##################### 2023-2024 -->
<h1 name="2023"><span class="line"></span>2023-2024<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/matias-benitez-51099b18a/>Matias Benitez</a> and <a href=https://www.linkedin.com/in/vivien-he/>Vivien He</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://www.linkedin.com/in/elizabeth--wang/ style="color:black">Ella Wang</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/anniehcheng/ style="color:black">Annie Cheng</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/chirag-pabbaraju-277a4ba5/ style="color:black">Chirag Pabbaraju</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/alaina-zhang/ style="color:black">Alaina Zhang</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/kylan-d-130a73290/ style="color:black">Kylan Denney</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/emily-saletan-3662b81b0/ style="color:black">Emily Saletan</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/shawn-zixuan-kang/ style="color:black">Shawn Kang</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sylvia-gabriel-9b444b249/ style="color:black">Sylvia Gabriel</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jabarih/ style="color:black">Jabari Hastings</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jeanette-zhou-stanford/ style="color:black">Jeanette Zhou</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/annikamauro/ style="color:black">Annika Mauro</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/marin-brant/ style="color:black">Marin Brant</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://youtu.be/z-3NiUGyxfc?si=bRqkWiyGVJg0zvpe style="color:black">Moondance</a></h5>
<h5 class="year"><a href=https://youtu.be/8ma_GgVEbe8?si=JNypEY1XIXSTfDEj style="color:black">A12</a></h5>
<h5 class="year"><a href=https://youtu.be/INAw4-YAKxg?si=NmZlQz8C32-ww1FE style="color:black">Spiderman</a></h5>
<h5 class="year"><a href=https://youtu.be/v8K97V3cARA?si=Mho90wLIQW2y6Qfi style="color:black">Stray Cat Strut</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=aJRNaProxtQ style="color:black">Leadtime - I Don't Dance</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=_qsngyMO-Zo style="color:black">Followtime - Ev'rybody Wants to Be a Cat</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=Okhf5knEWww style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2023-2024.JPG">
</center>
<!-- ##################### 2022-2023 -->
<h1 name="2023"><span class="line"></span>2022-2023<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/samspinner/>Sam Spinner</a> and <a href=https://www.linkedin.com/in/marin-brant/>Marin Brant</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://web.stanford.edu/~gblanc/ style="color:black">Guy Blanc</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/matias-benitez-51099b18a/ style="color:black">Matias Benitez</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jzzheng20/ style="color:black">Jason Zheng</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/yaoshengjie/ style="color:black">Yao Shengjie</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/janene-kim-1852b41b2/ style="color:black">Janene Kim</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sylvia-gabriel-9b444b249/ style="color:black">Sylvia Gabriel</a></h5>
<h5 class="year"><a href=/ style="color:black">Charlie Levesley</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jabarih/ style="color:black">Jabari Hastings</a></h5>
<h5 class="year"><a href=/ style="color:black">Bear Tolson</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/egantardif/ style="color:black">Egan Tardif</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jeanette-zhou-stanford/ style="color:black">Jeanette Zhou</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/vivien-he/ style="color:black">Vivien He</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sarah-abdalla-a58726159/ style="color:black">Sarah Abdalla</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sixskov/ style="color:black">Six Skov</a></h5>
<h5 class="year"><a href=/ style="color:black">Cat Fergesen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/annikamauro/ style="color:black">Annika Mauro</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=hUPNBvgQHV0 style="color:black">My Baby Can Dance</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=E0j1STo_xDc style="color:black">Zoot Suit Riot*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=dBhXeyOfMbI style="color:black">Reet Petite</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=QZ013GnX8CU style="color:black">Fly Me to the Moon</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=JNFNPaWppbQ style="color:black">Leadtime - Foot Fungus</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=GP2e9es6YBw style="color:black">Followtime - Banana Split For My Baby</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=3vl4wrsDe_8 style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2022-2023.jpeg">
</center>
<!-- ##################### 2021-2022 -->
<h1 name="2022"><span class="line"></span>2021-2022<span class="line"></span></h1>
<h3 class="text-center">AD: <a href=http://bit.ly/Gaurab>Gaurab Banerjee</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://www.linkedin.com/in/manuka-stratta style="color:black">Manuka Stratta</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/guy-blanc-57371973/ style="color:black">Guy Blanc</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/samspinner/ style="color:black">Sam Spinner</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/philhchen style="color:black">Phil Chen</a></h5>
<h5 class="year"><a href=/ style="color:black">Matias Benitez</a></h5>
<h5 class="year"><a href=/ style="color:black">Jason Zheng</a></h5>
<h5 class="year"><a href=/ style="color:black">Jerome Nowak</a></h5>
<h5 class="year"><a href=/ style="color:black">Yao Shengjie</a></h5>
<h5 class="year"><a href=/ style="color:black">Marin Brant</a></h5>
<h5 class="year"><a href=/ style="color:black">Janene Kim</a></h5>
<h5 class="year"><a href=/ style="color:black">Sylvia Gabriel</a></h5>
<h5 class="year"><a href=/ style="color:black">Micaela Robles</a></h5>
<h5 class="year"><a href=/ style="color:black">Nicole Hartman</a></h5>
<h5 class="year"><a href=/ style="color:black">Kaya Lakein</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=IZQHJqDfJnc style="color:black">Rockin' Robin</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=L_6GTu5kI5I style="color:black">Why Don't You Do Right*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=0n3h0VtvHpo&t=1s style="color:black">Mr. Pinstripe Suit</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=zTsoCV7SU98 style="color:black">Hallelujah I Love Her So*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=oO2LqNY_PWA style="color:black">Boytime - It's Raining Men</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=lzHc-TPuQFY style="color:black">Girltime - Whadaya Want</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=hcnHJC-66RA style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2021-2022.jpg">
</center>
<!-- ##################### 2020-2021 -->
<h1 name="2021"><span class="line"></span>2020-2021<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://rachel-gardner.com/>Rachel Gardner</a> and <a href=http://bit.ly/Gaurab>Gaurab Banerjee</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://www.linkedin.com/in/richardlyf/ style="color:black">Richard Lin</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/manuka-stratta style="color:black">Manuka Stratta</a></h5>
<h5 class="year"><a href=https://mayaziv.com/ style="color:black">Maya Ziv</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/ben-leroy-869359155/ style="color:black">Ben Leroy</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/ischeinfeld style="color:black">Isaac Scheinfeld</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/guy-blanc-57371973/ style="color:black">Guy Blanc</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/samspinner/ style="color:black">Sam Spinner</a></h5>
<h5 class="year"><a href=https://west.stanford.edu/about/people/jessica-de-la-paz style="color:black">Jessica de la Plaz</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/annaszeng/ style="color:black">Anna Zeng</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/abucquet style="color:black">Alex Bucquet</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=MnkzBxUWkS4 style="color:black">Tranky Doo</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=okO-8SaTYS4 style="color:black">Joshua Fit de Battle of Jericho*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=EQRygDEzXQw style="color:black">Rocket 95*</a></h5>
<h5 class="text-center" style="color:#5b0505">Guest Performers</h5>
<h5 class="year"><a style="color:black">Elise Robinson</a></h5>
<h5 class="year"><a style="color:black">Jacqueline Lin</a></h5>
<h5 class="year"><a style="color:black">Jojo Ortiz</a></h5>
<h5 class="year"><a style="color:black">Peter Bullen</a></h5>
<h5 class="year"><a style="color:black">Tracy Mandel</a></h5>
<h5 class="year"><a style="color:black">Paul Csonka</a></h5>
<h5 class="year"><a style="color:black">Mailo Numazu</a></h5>
<h5 class="year"><a style="color:black">Chris Ling</a></h5>
<h5 class="year"><a style="color:black">Anna LeRoy</a></h5>
<h5 class="year"><a style="color:black">Jack Swigget</a></h5>
<h5 class="year"><a style="color:black">Andrea Banuet</a></h5>
<h5 class="year"><a style="color:black">Cooper de Nicola</a></h5>
<h5 class="year"><a style="color:black">Cainan Cole</a></h5>
<h5 class="year"><a style="color:black">Jean-Baptiste Ruffio</a></h5>
<h5 class="year"><a style="color:black">Noa Bendit-Shtull</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2020-2021.png">
</center>
<!-- ##################### 2019-2020 -->
<h1 name="1920"><span class="line"></span>2019-2020<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href="https://www.linkedin.com/in/richardlyf/">Richard Lin</a> and <a href="https://www.linkedin.com/in/mailonumazu">Mailo Numazu</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://rachel-gardner.com/ style="color:black">Rachel Gardner</a></h5>
<h5 class="year"><a href=http://bit.ly/Gaurab style="color:black">Gaurab Bannerjee</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/manuka-stratta style="color:black">Manuka Stratta</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/ben-leroy-869359155/ style="color:black">Ben LeRoy</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/ischeinfeld style="color:black">Isaac Scheinfeld</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/arkira/ style="color:black">Arkira Chantaratananond</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/samspinner/ style="color:black">Sam Spinner</a></h5>
<h5 class="year"><a href=https://west.stanford.edu/about/people/jessica-de-la-paz style="color:black">Jessica de la Plaz</a></h5>
<h5 class="year"><a href=https://mayaziv.com/ style="color:black">Maya Ziv</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/annaszeng/ style="color:black">Anna Zeng</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/abucquet style="color:black">Alex Bucquet</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/yasat-berk-manav-36a4b8121 style="color:black">Berk Manav</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/philhchen style="color:black">Phil Chen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/kailah-seymour-7a88681a4 style="color:black">Kailah Seymour</a></h5>
<h5 class="year"><a href=https://noa-codes.github.io/ style="color:black">Noa Bendit-Shtull</a></h5>
<h5 class="year"><a href=https://biox.stanford.edu/people/john-rees style="color:black">John Rees</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=umShiLcL8Ts style="color:black">Mack the Knife</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=IccJSKdZpEc style="color:black">Sing, Sing, Sing*</a></h5>
<h5 class="text-center" style="color:#5b0505">Notes</h5>
<h6 class="year">Year cut short by COVID-19. Team was almost done learning Rhythm of Love and the ADs had started choreographing a new song before we left campus.</h6>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2019-2020.jpg">
</center>
<!-- ##################### 2018-2019 -->
<h1 name="1819"><span class="line"></span>2018-2019<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://biox.stanford.edu/people/john-rees>John Rees</a> and <a href=https://www.linkedin.com/in/mailonumazu>Mailo Numazu</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://www.linkedin.com/in/alexandra-b-2335b6160/ style="color:black">Alexandra Bernard</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/annaszeng/ style="color:black">Anna Zeng</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/arkira/ style="color:black">Arkira Chantaratananond</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/ben-leroy-869359155/ style="color:black">Ben LeRoy</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/benshare style="color:black">Ben Share</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/guy-blanc-57371973/ style="color:black">Guy Blanc</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/imagru style="color:black">Ima Grullon</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/ischeinfeld style="color:black">Isaac Scheinfeld</a></h5>
<h5 class="year"><a href=https://west.stanford.edu/about/people/jessica-de-la-paz style="color:black">Jessica de la Plaz</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/manuka-stratta style="color:black">Manuka Stratta</a></h5>
<h5 class="year"><a href=https://mayaziv.com/ style="color:black">Maya Ziv</a></h5>
<h5 class="year"><a href=https://noa-codes.github.io/ style="color:black">Noa Bendit-Shtull</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/richardlyf/ style="color:black">Richard Lin</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/samspinner/ style="color:black">Sam Spinner</a></h5>
<h5 class="year"><a style="color:black">Sarah de Ugarte</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sean-mullane-5037a9125/ style="color:black">Sean Mullane</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=V9PGDVCNrJY style="color:black">Reet Petite</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=sULM9ub-XAU style="color:black">Moondance</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=GTwYuP4xtKY style="color:black">Minnie the Moocher*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=ukDb1azE4M0 style="color:black">Fly me to the Moon*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=Y1bNaheCk-0 style="color:black">Tranky Doo</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=l4coHFA9zQo style="color:black">Boytime - Mambo no. 5</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=92qn7UhtEZ4 style="color:black">Girltime - Ladies' Choice</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=f8iekUf8Zpc style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2018-2019.png">
</center>
<!-- ##################### 2017-2018 -->
<h1 name="1718"><span class="line"></span>2017-2018<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://mayaziv.com/>Maya Ziv</a> and <a href=https://jackswiggett.com/>Jack Swiggett</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://www.linkedin.com/in/alexandra-b-2335b6160/ style="color:black">Alexandra Bernard</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/arkira/ style="color:black">Arkira Chantaratananond</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/ben-leroy-869359155/ style="color:black">Ben LeRoy</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/benshare style="color:black">Ben Share</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/bnortz style="color:black">Bonnie Nortz</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/guy-blanc-57371973/ style="color:black">Guy Blanc</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/imagru style="color:black">Ima Grullon</a></h5>
<h5 class="year"><a href=https://jacquelinetlin.com/ style="color:black">Jackie Lin</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jean-baptiste-ruffio-a2a98668 style="color:black">Jean-Baptiste Ruffio</a></h5>
<h5 class="year"><a href=https://biox.stanford.edu/people/john-rees style="color:black">John Rees</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/mailonumazu>Mailo Numazu</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/richardlyf/ style="color:black">Richard Lin</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/samspinner/ style="color:black">Sam Spinner</a></h5>
<h5 class="year"><a style="color:black">Sarah de Ugarte</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sofia-poe-74b359133/ style="color:black">Sofia (Carillo) Poe</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=6KT2YrAjpq0 style="color:black">Baby Can Dance</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=d1Z-goBS4iI style="color:black">Love Me or Leave Me</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=KJTBJYFVuXs style="color:black">Doin the Jive</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=Xi5pxCnCPZY style="color:black">I Won't Dance*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=0wQRGnimek8 style="color:black">LOVE</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=J7DD5beGSLg style="color:black">Boytime - Shake It Off</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=Fpv_JXi81Ww style="color:black">Girltime - Are You Gonna Be My Girl</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=0Huy5CuKPiM style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2017-2018.jpg">
</center>
<!-- ##################### 2016-2017 -->
<h1 name="1617"><span class="line"></span>2016-2017<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/cansu-culha-a6842910a/>Cansu Culha</a> and <a href=https://www.linkedin.com/in/jean-baptiste-ruffio-a2a98668>Jean-Baptiste Ruffio</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a style="color:black">Alena Rott</a></h5>
<h5 class="year"><a style="color:black">Alex Fu</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/arkira/ style="color:black">Arkira Chantaratananond</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/boshri/ style="color:black">Barak Oshri</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/bnortz style="color:black">Bonnie Nortz</a></h5>
<h5 class="year"><a href=https://cs.stanford.edu/~evanliu/ style="color:black">Evan Liu</a></h5>
<h5 class="year"><a href=https://jackswiggett.com/ style="color:black">Jack Swiggett</a></h5>
<h5 class="year"><a href=https://jacquelinetlin.com/ style="color:black">Jackie Lin</a></h5>
<h5 class="year"><a href=https://biox.stanford.edu/people/john-rees style="color:black">John Rees</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/joseromanortiz/ style="color:black">Jojo Ortiz</a></h5>
<h5 class="year"><a href=https://hernandezjose.github.io style="color:black">Jose Hernandez</a></h5>
<h5 class="year"><a href=https://mayaziv.com/ style="color:black">Maya Ziv</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/richardlyf/ style="color:black">Richard Lin</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sofia-poe-74b359133/ style="color:black">Sofia (Carillo) Poe</a></h5>
<h5 class="year"><a href=https://www.tracymandel.com/ style="color:black">Tracy Mandel</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=iC5iIYd3ynQ style="color:black">You Make My Dreams*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=cVu7lc4mDmI style="color:black">Mr. Pinstripe Suit</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=AJ8XnuVwJ3g style="color:black">Trickeration</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=-tbL5py5c_4 style="color:black">Bei Mir Bist Du Shoen</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=WPGVb9_9HRU style="color:black">Dancing Fool</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=CL7n5he10O0 style="color:black">Girltime - Baby Can Dance</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=dgn8CTyFRNI style="color:black">Boytime - How the Grinch Stole Boytime</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=IhH44DMIJg8 style="color:black">Cat's Corner</a></h5>
<h5 class="text-center" style="color:#5b0505">Notes</h5>
<h6 class="year">Chris Ling, Rachel Liaw, Babacar Ndoye -> Superstar alums who helped throughout the year.</h6>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2016-2017.jpg">
</center>
<!-- ##################### 2015-2016 -->
<h1 name="1516"><span class="line"></span>2015-2016<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://jacquelinetlin.com/>Jackie Lin, Chris Ling, Ryan Hermstein, and Tracy Mandel</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a style="color:black">Alena Rott</a></h5>
<h5 class="year"><a style="color:black">Alex Fu</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/boshri/ style="color:black">Barak Oshri</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/cansu-culha-a6842910a/ style="color:black">Cansu Culha</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sofia-poe-74b359133/ style="color:black">Sofia (Carillo) Poe</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/joseromanortiz/ style="color:black">Jojo Ortiz</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jean-baptiste-ruffio-a2a98668 style="color:black">Jean-Baptiste Ruffio</a></h5>
<h5 class="year"><a href=https://cs.stanford.edu/~evanliu/ style="color:black">Evan Liu</a></h5>
<h5 class="year"><a style="color:black">Camila Vargas</a></h5>
<h5 class="year"><a style="color:black">Apollo Kaneko</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=4ENBV6ftIdk style="color:black">Rock Around the Clock</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=L0lJ7pSyjeY style="color:black">Mack the Knife</a></h5>
<h5 class="year"><a style="color:black">Dance With Me Tonight</a></h5>
<h5 class="year"><a style="color:black">Rhythm of Love</a></h5>
<h5 class="year"><a style="color:black">Cat's Corner</a></h5>
<h5 class="text-center" style="color:#5b0505">Notes</h5>
<h6 class="year">Alum MVP’s during the year: Conor Coyan, Xingpeng Huang, Chengos Lim</h6>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2015-2016.jpg">
</center>
<!-- ##################### 2014-2015 -->
<h1 name="1415"><span class="line"></span>2014-2015<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/conor-coyan-89b86951/>Conor Coyan</a> and <a href=https://www.linkedin.com/in/gracekwan/?originalSubdomain=jp>Grace Kwan</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a style="color:black">Alex Fu</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tess-mccarthy-73647a86/?originalSubdomain=ca style="color:black">Tess McCarthy</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/christopher-ling-311a4153/ style="color:black">Chris Ling</a></h5>
<h5 class="year"><a href=https://jacquelinetlin.com/ style="color:black">Jackie Lin</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/garrett-hara-92492145/ style="color:black">Garrett Hara</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/lucasoconor/ style="color:black">Lucas O'Connor</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/joseromanortiz/ style="color:black">Jojo Ortiz</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jerry-lao-5a97a7172/ style="color:black">Jerry Lao</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tucker-albright-000/ style="color:black">Tucker Albright</a></h5>
<h5 class="year"><a style="color:black">Ines Girard-Ursin</a></h5>
<h5 class="year"><a style="color:black">Ryan Hermstein</a></h5>
<h5 class="year"><a style="color:black">Tracy Mandel</a></h5>
<h5 class="year"><a style="color:black">Alex Fu</a></h5>
<h5 class="year"><a style="color:black">Zachary Dammann</a></h5>
<h5 class="year"><a style="color:black">Sarah de Ugarte</a></h5>
<h5 class="year"><a style="color:black">JJ Liu</a></h5>
<h5 class="year"><a style="color:black">Chengos Lim</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=wRsySOa12-Y style="color:black">Bei Mir Bist Du Schoen (SwingKids, Janis Siegel)</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=XU1ehv1ybcE style="color:black">My Baby Can Dance</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=8bmWFoIcCgk style="color:black">You Make Me Feel So Young</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=KXXFAEl4Ynk style="color:black">American Idiot (Boytime)</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=dpSSylpNzFM style="color:black">Leap Frog</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=ijuNi63DKSg style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2014-2015.jpg">
</center>
<!-- ##################### 2013-2014 -->
<h1 name="1314"><span class="line"></span>2013-2014<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/conor-coyan-89b86951/>Conor Coyan</a> and <a href=https://www.linkedin.com/in/tess-mccarthy-73647a86/?originalSubdomain=ca>Tess McCarthy</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=http://www.amyisabellasentis.com/ style="color:black">Amy Sentis</a></h5>
<h5 class="year"><a style="color:black">Andrew Lee</a></h5>
<h5 class="year"><a style="color:black">Ari Echt-Wilson</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/christopher-ling-311a4153/ style="color:black">Chris Ling</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/garrett-hara-92492145/ style="color:black">Garrett Hara</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/gracekwan/?originalSubdomain=jp style="color:black">Grace Kwan</a></h5>
<h5 class="year"><a href=https://jacquelinetlin.com/ style="color:black">Jackie Lin</a></h5>
<h5 class="year"><a style="color:black">Jerry Lao</a></h5>
<h5 class="year"><a style="color:black">JJ Liu</a></h5>
<h5 class="year"><a style="color:black">Jojo Ortiz</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/lucasoconor/ style="color:black">Lucas O'Connor</a></h5>
<h5 class="year"><a style="color:black">Skye Free</a></h5>
<h5 class="year"><a style="color:black">Shona Morgan</a></h5>
<h5 class="year"><a style="color:black">Tucker Albright</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=HMYX2sTflWU style="color:black">Rockin' Robin</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=MfiFdeEa24c style="color:black">Moondance*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=9KmUi3_ZPCM style="color:black">Sympathique (Pink Martini)*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=K-rC8msBpPs style="color:black">Rocket 95</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=hiE0QS-32U8 style="color:black">Dancin' Fool</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=YhUwCQAf2Fw style="color:black">Boytime - Let It Go, I'll Make a Man Out of You</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=sVulig-rKhk style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2013-2014.jpg">
</center>
<!-- ##################### 2012-2013 -->
<h1 name="1213"><span class="line"></span>2012-2013<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/rachelliaw/>Rachel Liaw</a> and Xinpeng Huang</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=http://www.amyisabellasentis.com/ style="color:black">Amy Sentis</a></h5>
<h5 class="year"><a style="color:black">Andrew Lee</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/christopher-ling-311a4153/ style="color:black">Chris Ling</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/garrett-hara-92492145/ style="color:black">Garrett Hara</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/gracekwan/?originalSubdomain=jp style="color:black">Grace Kwan</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/lucasoconor/ style="color:black">Lucas O'Connor</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tess-mccarthy-73647a86/?originalSubdomain=ca style="color:black">Tess McCarthy</a></h5>
<h5 class="year"><a style="color:black">Sarah Gonzaga</a></h5>
<h5 class="year"><a style="color:black">Paul Csonka</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/emily-mitchell-316ab064/ style="color:black">Emily Mitchell</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sophia-maltesen/ style="color:black">Sophia Maltesen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/taureanbutler/ style="color:black">Taurean Butler</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/conor-coyan-89b86951/ style="color:black">Conor Coyan</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/emilysong/ style="color:black">Emily Song</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/henri-koponen/ style="color:black">Henri Koponen</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=QMGpucAFBnE style="color:black">Reet Petite</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=p-WKwJbJY4s style="color:black">A12 by Buddy Johnson*</a></h5>
<h5 class="year"><a href=https://youtu.be/6CSsam6E27Q?t=183 style="color:black">Stray Cat Strut</a></h5>
<h5 class="year"><a href=https://youtu.be/kPT3t9bATUo?t=121 style="color:black">Dance With Me Tonight*</a></h5>
<h5 class="year"><a href=https://youtu.be/85duAWvqRcs?t=112 style="color:black">Mack the Knife</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=1xoYU3NH-8Y style="color:black">Boytime - Bromance, Trouble, Jack Sparrow (Bolton)*</a></h5>
<h5 class="year"><a href=https://youtu.be/w6ZfmWsLXBo style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2012-2013.JPG">
</center>
<!-- ##################### 2011-2012 -->
<h1 name="1112"><span class="line"></span>2011-2012<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/monchette/>Monchette Gonda</a> and Paul Csonka</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a style="color:black">Sarah Gonzaga</a></h5>
<h5 class="year"><a style="color:black">Tamarind King</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/rachelliaw/ style="color:black">Rachel Liaw</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/gretchen-o-henley-b52669102/ style="color:black">Gretchen O'Henley</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/emily-mitchell-316ab064/ style="color:black">Emily Mitchell</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/rachel-vassar-42b78534/ style="color:black">Rachel Vassar</a></h5>
<h5 class="year"><a href=http://www.amyisabellasentis.com/ style="color:black">Amy Sentis</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/sophia-maltesen/ style="color:black">Sophia Maltesen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/clareadrien/ style="color:black">Clare Adrien</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/taureanbutler/ style="color:black">Taurean Butler</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/samuel-cohen-tanugi-653891175/ style="color:black">Samuel Cohen-Tanugi</a></h5>
<h5 class="year"><a style="color:black">Xinpeng Huang</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/babacar-ndoye-54a49096/ style="color:black">Babacar Ndoye</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/cameron-schaeffer-03378a3b/ style="color:black">Cameron Schaeffer</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/conor-coyan-89b86951/ style="color:black">Conor Coyan</a></h5>
<h5 class="year"><a style="color:black">Elliot Jin</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=JrzqH3XHJV4 style="color:black">Rock Around the Clock*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=TalbTkkMv0c style="color:black">Love Me or Leave Me*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=oVJJSVDs46w style="color:black">LOVE</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=DsijCnMVIoU style="color:black">Spiderman*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=YEKz01u1wAQ style="color:black">In the Mood</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=eVmVlPrDIm4 style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2011-2012.jpg">
</center>
<!-- ##################### 2010-2011 -->
<h1 name="1011"><span class="line"></span>2010-2011<span class="line"></span></h1>
<h3 class="text-center">AD: <a href=https://www.linkedin.com/in/monchette/>Monchette Gonda</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a style="color:black">Peter Bullen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/taureanbutler/ style="color:black">Taurean Butler</a></h5>
<h5 class="year"><a style="color:black">Chris Chen</a></h5>
<h5 class="year"><a style="color:black">Paul Csonka</a></h5>
<h5 class="year"><a style="color:black">Sarah Gonzaga</a></h5>
<h5 class="year"><a style="color:black">Tamarind King</a></h5>
<h5 class="year"><a href=https://www.hrw.org/about/people/hye-jung-han style="color:black">Hye-Jun Han</a></h5>
<h5 class="year"><a href=http://brongersma.stanford.edu/team-details/xinpeng-huang/ style="color:black">Xinpeng Huang</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/rachelliaw/ style="color:black">Rachel Liaw</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tessaly-jen-0969a044 style="color:black">Tessaly Jen</a></h5>
<h5 class="year"><a style="color:black">Wynn Michael</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/emily-mitchell-316ab064/ style="color:black">Emily Mitchell</a><h5>
<h5 class="year"><a style="color:black">Jacob Morris</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/gretchen-o-henley-b52669102/ style="color:black">Gretchen O'Henley</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/rachel-vassar-42b78534/ style="color:black">Rachel Vassar</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/samuel-cohen-tanugi-653891175/ style="color:black">Samuel Cohen-Tanugi</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/babacar-ndoye-54a49096/ style="color:black">Babacar Ndoye</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/aaron-zarraga-32009a32 style="color:black">Aaron Zarraga</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=Y-0FS8__AF4 style="color:black">Bei Mir*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=6rVcUvQNDkg style="color:black">Jumpin Jive*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=mge7CzCA8Yg style="color:black">Rhythm of Love*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=oNDUNSjVE1g style="color:black">Runaround Sue*</a></h5>
<h5 class="year"><a style="color:black">Hey Ya</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=cU8yZ9QF1VI style="color:black">Boytime</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=99H-es1LI5Q style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2010-2011.JPG">
</center>
<!-- ##################### 2009-2010 -->
<h1 name="0910"><span class="line"></span>2009-2010<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://profiles.ucsf.edu/chelsea.garnett>Chelsea Garnett</a> and <a href=http://bennewhouse.com/>Ben Newhouse</a></a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a style="color:black">Peter Bullen</a></h5>
<h5 class="year"><a style="color:black">Chris Chen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/samuel-cohen-tanugi-653891175/ style="color:black">Samuel Cohen-Tanugi</a></h5>
<h5 class="year"><a style="color:black">Paul Csonka</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/monchette/ style="color:black">Monchette Gonda</a></h5>
<h5 class="year"><a style="color:black">Sarah Gonzaga</a></h5>
<h5 class="year"><a href=https://www.hrw.org/about/people/hye-jung-han style="color:black">Hye-Jun Han</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tessaly-jen-0969a044 style="color:black">Tessaly Jen</a></h5>
<h5 class="year"><a style="color:black">Tamarind King</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/rachelliaw/ style="color:black">Rachel Liaw</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/emily-mitchell-316ab064/ style="color:black">Emily Mitchell</a><h5>
<h5 class="year"><a style="color:black">Jacob Morris</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/babacar-ndoye-54a49096/ style="color:black">Babacar Ndoye</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/gretchen-o-henley-b52669102/ style="color:black">Gretchen O'Henley</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/gene-tseng-b23a70166 style="color:black">Gene Tseng</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/rachel-vassar-42b78534/ style="color:black">Rachel Vassar</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/aaron-zarraga-32009a32 style="color:black">Aaron Zarraga</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/karenpwarner style="color:black">Karen Warner (Spring Show Guest)</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=OkeZB6LQLWU style="color:black">American Idiot*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=Rc-Z1pzl83Q style="color:black">Mr. Pinstripe Suit</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=Rc-Z1pzl83Q style="color:black">Candyman</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=gBJ8wFsOmCg style="color:black">Ding Dong Daddy*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=xkaWjR1dy0w style="color:black">The Big Apple</a></h5>
<h5 class="year"><a style="color:black">Rockin' Robin*</a></h5>
<h5 class="year"><a style="color:black">Boytime: the matrix</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=2zm5EX0s6-w style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2009-2010.jpg">
</center>
<!-- ##################### 2008-2009 -->
<h1 name="0809"><span class="line"></span>2008-2009<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/peter-bullen-12358717>Peter Bullen</a></a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://www.linkedin.com/in/samuel-cohen-tanugi-653891175/ style="color:black">Samuel Cohen-Tanugi</a></h5>
<h5 class="year"><a href=https://profiles.ucsf.edu/chelsea.garnett style="color:black">Chelsea Garnett</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/monchette/ style="color:black">Monchette Gonda</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tessaly-jen-0969a044 style="color:black">Tessaly Jen</a></h5>
<h5 class="year"><a style="color:black">Tamarind King</a></h5>
<h5 class="year"><a style="color:black">Karen Law</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/rachelliaw/ style="color:black">Rachel Liaw</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/babacar-ndoye-54a49096/ style="color:black">Babacar Ndoye</a></h5>
<h5 class="year"><a href=http://bennewhouse.com// style="color:black">Ben Newhouse</a></h5>
<h5 class="year"><a style="color:black">Lauren Nguyen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/ezraschiff style="color:black">Ezra Schiff</a></h5>
<h5 class="year"><a style="color:black">Eric Sun</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/gene-tseng-b23a70166 style="color:black">Gene Tseng</a></h5>
<h5 class="year"><a href=http://www.linkedin.com/in/LuenWai style="color:black">Lu-En Wai</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/aaron-zarraga-32009a32 style="color:black">Aaron Zarraga</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/karenpwarner style="color:black">Karen Warner</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=ZXWXVPCV2Ko style="color:black">Reet Petite*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=7Tqr0ht5PI8 style="color:black">Mr. Pinstripe Suit</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=GBBGI-IUecs style="color:black">Splanky</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=oxdTALVbWG8 style="color:black">Mack the Knife</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=RWBG8OU6J7E style="color:black">Swingtime Remixed</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=ZOqQC7jZw2s style="color:black">Boytime - the Boys Are Back</a></h5>
<h5 class="text-center" style="color:#5b0505">Notes</h5>
<h6 class="year">Swingtime almost couldn't continue in Fall quarter 2008 because Peter was the only returning member who would be around (Chelsea, Ben, Karen, Aaron were on Study Abroad??). Lu-En came back from initially retiring to help Peter choreograph Reet Petite over summer, and we held Swingtime auditions with the help of some alumni. And Swingtime lived on...</h6>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2008-2009.jpg">
</center>
<!-- ##################### 2007-2008 -->
<h1 name="0708"><span class="line"></span>2007-2008<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/chengos-lim-9b16646a>Chengos Lim</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://profiles.ucsf.edu/chelsea.garnett style="color:black">Chelsea Garnett</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/karenpwarner style="color:black">Karen Warner</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/katymccown style="color:black">Katy McCown</a></h5>
<h5 class="year"><a href=http://www.linkedin.com/in/LuenWai style="color:black">Lu-En Wai</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/melissa-kunz-9ab14410 style="color:black">Melissa Kunz</a></h5>
<h5 class="year"><a href=http://bennewhouse.com// style="color:black">Ben Newhouse</a></h5>
<h5 class="year"><a style="color:black">Carlos Fernandez</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/christopher-wen-00226347 style="color:black">Chris Wen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/edward-t-fei-ph-d-p-e-1a907a73 style="color:black">Ed Fei</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/peter-bullen-12358717 style="color:black">Peter Bullen</a></h5>
<h5 class="year"><a style="color:black">Ivan DeGroote</a></h5>
<h5 class="year"><a style="color:black">Cathy Sun</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/aaron-zarraga-32009a32 style="color:black">Aaron Zarraga</a></h5>
<h5 class="year"><a style="color:black">Yan Largman</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=yKaX3H_pHKI style="color:black">Dancin' Fool</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=onOamqDnba8&list=PL5D406EB48C2E3C3D&index=8 style="color:black">Candyman</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=c9PI7Orh89o style="color:black">Beyond the Sea</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=mq9Ox7VpncE&list=PL5D406EB48C2E3C3D&index=5 style="color:black">Mr. Pinstripe Suit*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=AHxAKIzus8I&list=PL5D406EB48C2E3C3D&index=6 style="color:black">Swingtime Remixed*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=Ka3u16I3F4A style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2007-2008.jpg">
</center>
<!-- ##################### 2006-2007 -->
<h1 name="0607"><span class="line"></span>2006-2007<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.linkedin.com/in/chengos-lim-9b16646a>Chengos Lim</a> and <a href=https://www.linkedin.com/in/mrillera>Marc Rillera</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://profiles.ucsf.edu/chelsea.garnett style="color:black">Chelsea Garnett</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/karenpwarner style="color:black">Karen Warner</a></h5>
<h5 class="year"><a style="color:black">Jessica Bledin</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/katymccown style="color:black">Katy McCown</a></h5>
<h5 class="year"><a style="color:black">Lindsay Ashby</a></h5>
<h5 class="year"><a href=http://www.linkedin.com/in/LuenWai style="color:black">Lu-En Wai</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/melissa-kunz-9ab14410 style="color:black">Melissa Kunz</a></h5>
<h5 class="year"><a style="color:black">Melody Alonzo</a></h5>
<h5 class="year"><a href=http://bennewhouse.com// style="color:black">Ben Newhouse</a></h5>
<h5 class="year"><a style="color:black">Carlos Fernandez</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/christopher-wen-00226347 style="color:black">Chris Wen</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/edward-t-fei-ph-d-p-e-1a907a73 style="color:black">Ed Fei</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jason-q-sinocruz-7146ab4b style="color:black">Jason Sinocruz</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/peter-bullen-12358717 style="color:black">Peter Bullen</a></h5>
<h5 class="year"><a href=https://lluh.org/provider/tsukimoto-mitsuhiko style="color:black">Miko Tsukimoto</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=MMFOpd0UBLE style="color:black">In the Mood*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=DdRp5jXgHFI style="color:black">Runaround Sue*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=yKaX3H_pHKI style="color:black">Dacning Fool*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=EqxY3TupbFU style="color:black">Flying Home</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=0Mx9BoBwajk&list=PL9ADBAAF05076F5AE&index=6 style="color:black">CandyMan*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=AHYOWYLuiA4&list=PL9ADBAAF05076F5AE&index=7 style="color:black">LOVE</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=paKNekHwwZE&list=PL9ADBAAF05076F5AE&index=4 style="color:black">Boytime*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=EbdCTCg7knA style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2006-2007.jpg">
</center>
<!-- ##################### 2005-2006 -->
<h1 name="0506"><span class="line"></span>2005-2006<span class="line"></span></h1>
<h3 class="text-center">AD: <a href=https://www.researchgate.net/profile/Megan-Kale-Cheever>Meg Kale</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a style="color:black">Dave Kale</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/stephanie-chiang-11259b13 style="color:black">Stephanie Chiang</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/mrillera style="color:black">Marc Rillera</a></h5>
<h5 class="year"><a style="color:black">Eric Lee</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/chengos-lim-9b16646a style="color:black">Chengos Lim</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/guillaume-chorn-50412732 style="color:black">Guillaume Chorn</a></h5>
<h5 class="year"><a style="color:black">Melody Alonzo</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/beggleston style="color:black">Brian Eggleston</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/katymccown style="color:black">Katy McCown</a></h5>
<h5 class="year"><a href=https://de.linkedin.com/in/desireefabunan style="color:black">Desiree Fabunan</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jason-q-sinocruz-7146ab4b style="color:black">Jason Sinocruz</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/melissa-kunz-9ab14410 style="color:black">Melissa Kunz</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/christopher-wen-00226347 style="color:black">Chris Wen</a></h5>
<h5 class="year"><a style="color:black">Jessica Bledin</a></h5>
<h5 class="year"><a style="color:black">Ben D'Angelo</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=3TkVmLS0YI4 style="color:black">Pump It*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=vQYGfekBFZo style="color:black">LOVE*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=HltufcaPPNE style="color:black">Flying Home</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=lpQC2BrTqAQ style="color:black">Straight Up</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=J41ene7he_s style="color:black">Nonstop Flight*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=oJJNHLjp_XI style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2005-2006.jpg">
</center>
<!-- ##################### 2004-2005 -->
<h1 name="0405"><span class="line"></span>2004-2005<span class="line"></span></h1>
<h3 class="text-center">AD: <a href=https://www.researchgate.net/profile/Megan-Kale-Cheever>Meg Kale</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a style="color:black">Melody Alonzo</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/mrillera style="color:black">Marc Rillera</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tiffanycartwright style="color:black">Tiffany Cartwright</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/stephanie-chiang-11259b13 style="color:black">Stephanie Chiang</a></h5>
<h5 class="year"><a href=http://www.linkedin.com/in/kari-bale style="color:black">Kari Doyle</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/evelynhuang style="color:black">Evelyn Huang</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/chengos-lim-9b16646a style="color:black">Chengos Lim</a></h5>
<h5 class="year"><a style="color:black">Sandra Liu</a></h5>
<!-- <h5 class="year"><a style="color:black">Maria Reese</a></h5> -->
<h5 class="year"><a href=https://www.slush.org/person/audrey-tsang/ style="color:black">Audrey Tsang</a></h5>
<h5 class="year"><a style="color:black">Kevin Ball</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/guillaume-chorn-50412732 style="color:black">Guillaume Chorn</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/jongaw style="color:black">Jon Gaw</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/andrewthuang style="color:black">Andy Huang</a></h5>
<h5 class="year"><a style="color:black">Dave Kale</a></h5>
<h5 class="year"><a style="color:black">Eric Lee</a></h5>
<h5 class="year"><a style="color:black">Eric Liu</a></h5>
<h5 class="year"><a style="color:black">Ivan Parra</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/mrillera style="color:black">Marc Rillera</a></h5>
<h5 class="year"><a style="color:black">Tee Sing Tang</a></h5>
<h5 class="text-center" style="color:#5b0505">Performances</h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=mmsGd84d_uU style="color:black">Back Bay Shuffle</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=dln9QrXIK28 style="color:black">Hey Ya!*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=F5v5Mqb7n8Q style="color:black">Seafood Mama*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=9uHGqzpHHYQ style="color:black">Straight Up*</a></h5>
<h5 class="year"><a href=https://www.youtube.com/watch?v=ibZ1dNMGa9o style="color:black">Stray Cat Strut</a></h5>
<h5 class="year"><a href=https://youtu.be/Om7Z1oR_exU style="color:black">Cat's Corner</a></h5>
<dir></dir>
<center>
<img id="star-img" class="img-fluid" src="/images/memory_lane/2004-2005.jpg">
</center>
<!-- ##################### 2003-2004 -->
<h1 name="0304"><span class="line"></span>2003-2004<span class="line"></span></h1>
<h3 class="text-center">ADs: <a href=https://www.researchgate.net/profile/Megan-Kale-Cheever>Meg Kale</a> and <a href=https://cryptodiffer.com/person-darick-tong-ico>Darick Tong</a></h3>
<h5 class="text-center" style="color:#5b0505">Members</h5>
<h5 class="year"><a href=https://www.linkedin.com/in/tiffanycartwright style="color:black">Tiffany Cartwright</a></h5>
<h5 class="year"><a href=http://www.gst.com/who-we-are/christopher-cheng style="color:black">Chris Cheng</a></h5>
<h5 class="year"><a href=https://www.linkedin.com/in/stephanie-chiang-11259b13 style="color:black">Stephanie Chiang</a></h5>