-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprogram.html
More file actions
1516 lines (1393 loc) · 190 KB
/
Copy pathprogram.html
File metadata and controls
1516 lines (1393 loc) · 190 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>
<title>Exoclimes VII</title>
<link rel="icon" type="image/x-icon" href="/img/favicon_VII.ico">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Boostrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<!-- Fonts -->
<style> @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,700;1,800&family=Roboto:wght@100&display=swap'); </style>
<style> @import url('https://fonts.cdnfonts.com/css/good-times-2'); </style>
<!-- Exoxclimes VI stylesheet -->
<link href="../css/main.css" rel="stylesheet" type="text/css">
<!-- LaTeX plugin-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex/dist/katex.min.css">
<script defer src="https://cdn.jsdelivr.net/npm/katex/dist/katex.min.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/katex/dist/contrib/auto-render.min.js"
onload="renderMathInElement(document.body);"></script>
</head>
<body class="exoclimes-bg">
<div class="vert-spacer">
<div class="container-fluid">
<div class="pt-3"></div>
<div class="header-menu-container p-2">
<nav class="navbar navbar-expand-lg">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="exoclimes_vii.html">Exoclimes VII</a>
</li>
<li class="nav-item">
<a class="nav-link" href="program.html">Presentations</a>
</li>
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Exoclimes VII
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="exoclimes_vii.html">About</a></li>
<li><a class="dropdown-item" href="program.html">Program</a></li>
</ul>
</li> -->
<li class="nav-item">
<a class="nav-link" href="exoslam/index.html">ExoSLAM</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="register.html">Registration</a>
</li> -->
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Organizing Committees
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="SOC.html">SOC</a></li>
<li><a class="dropdown-item" href="LOC.html">LOC</a></li>
</ul>
</li> -->
<li class="nav-item">
<a class="nav-link" href="SOC.html">SOC</a>
</li>
<li class="nav-item">
<a class="nav-link" href="LOC.html">LOC</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">Logistics</a>
</li>
<li class="nav-item">
<a class="nav-link" href="participants.html">Participants</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<head>
<title>Conference Schedule</title>
<style>
table { width: 100%; border-collapse: collapse; }
th, td { border: 1px solid #ddd; padding: 10px; text-align: center; }
th { background-color: rgba(112, 165, 174, 0.8); color: white; }
.talk { background-color: #f0f8ff; cursor: pointer; }
.modal { display: none; position: fixed; top: 50%; left: 50%;
transform: translate(-50%, -50%); width: 90%;
background-color: #fff; border: 2px solid #031B48;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); padding: 20px; z-index: 1000; max-height: 60vh; overflow-y: auto;}
.modal-header { font-weight: bold; margin-bottom: 10px; }
.close-btn { background-color: rgba(112, 165, 174, 0.8); color: #fff; border: none;
padding: 5px 10px; cursor: pointer; float: right; }
.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%;
height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 999; }
.meal {background-color: #FFCACA; font-size: 0.8em;}
.invited-talk {background-color: #BF9001; cursor: pointer; font-size: 1em;}
.time {background-color: rgba(112, 165, 174, 0.8);}
.contributed-talk {background-color: #FFE598; cursor: pointer; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; font-size: 0.6em;}
.remarks {background-color: #F6B26B; font-size: 0.8em;}
.free-time {background-color: #D9EAD3; font-size: 0.8em;}
.departure {background-color: #D9D9D9; font-size: 0.8em;}
.buffer {background-color: #B7B7B7; font-size: 0.8em;}
.gala-dinner {background-color: #dd8484; font-size: 0.8em;}
/* Flex-based mobile-friendly conference schedule */
.schedule-wrapper {
overflow-x: auto; /* Enable horizontal scroll if content too wide */
-webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
width: 100%; /* fill parent width */
box-sizing: border-box;
}
.schedule-container {
display: flex;
overflow-x: auto;
width: 100%; /* span entire parent width */
max-width: 100%; /* avoid shrinking due to max-width */
box-sizing: border-box;
flex-wrap: nowrap;
gap: 1rem;
font-family: 'Raleway', sans-serif;
}
.schedule-times {
flex: 0 0 90px;
background: white; /* matching your .time header color */
border-radius: 5px;
padding: 5px;
box-sizing: border-box;
font-weight: bold;
text-align: center;
color: white;
position: sticky;
border-right: 1px solid #ddd;
left: 0;
z-index: 10;
}
.schedule-day {
flex: 0 0 280px;
background: white;
border-radius: 5px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
padding: 5px;
box-sizing: border-box;
}
.schedule-header {
font-weight: 700;
font-size: 1.2em;
text-align: center;
color: white; /* use your pinkish red */
margin-bottom: 10px;
background-color: rgba(112, 165, 174, 0.8);
padding: 8px;
border-radius: 5px;
}
.schedule-block {
height: 96px; /* height for 1 time block */
/* border: 1px solid #ccc; */
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
color: #031B48;
text-align: center;
padding: 10px;
box-sizing: border-box;
position: relative;
}
.small-block {
height: 32px; /* height for 1 time block */
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8em;
color: #031B48;
text-align: center;
padding: 10px;
box-sizing: border-box;
position: relative;
}
/* Day columns */
.day-column {
flex: 0 0 250px;
min-width: 250px;
}
.chair{
background-color: #781c44; /* same as your .time */
color: white;
font-weight: 700;
height: 32px; /* height for 1 time block */
border: 1px solid #ccc;
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8em;
text-align: center;
padding: 10px;
box-sizing: border-box;
}
.embedded-chair {
position: absolute;
height: 32px;
width: 100%;
background-color: #781c44;
text-align: center;
line-height: 40px;
z-index: 2;
border-top: 1px solid #bbb;
}
.grouped-block {
position: relative;
display: flex;
flex-direction: column;
height: calc(96px * 6 + 32px); /* total height: X normal blocks + 40px header */
box-sizing: border-box;
}
.grouped-block-4 {
position: relative;
display: flex;
flex-direction: column;
height: calc(96px * 4 + 32px); /* total height: X normal blocks + 40px header */
box-sizing: border-box;
}
.grouped-block-5 {
position: relative;
display: flex;
flex-direction: column;
height: calc(96px * 4 + 2*32px); /* total height: X normal blocks + 40px header */
box-sizing: border-box;
}
.grouped-block-6 {
position: relative;
display: flex;
flex-direction: column;
height: calc(96px * 6 + 32px); /* total height: X normal blocks + 40px header */
box-sizing: border-box;
}
.grouped-block-7 {
position: relative;
display: flex;
flex-direction: column;
height: calc(96px * 7 + 32px); /* total height: X normal blocks + 40px header */
box-sizing: border-box;
}
.grouped-block-header {
height: 32px;
background-color: #781c44;
text-align: center;
line-height: 32px;
font-size: 0.7em;
font-weight: bold;
border-bottom: 1px solid #ccc;
color: white;
flex-shrink: 0;
}
.grouped-block-body {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.spacer-40 {
height: 32px;
}
.time {
background-color: rgba(112, 165, 174, 0.8); /* same as your .time */
color: white;
font-weight: 700;
border: 1px solid #ddd;
}
.blank {
background: transparent;
box-shadow: none;
margin-bottom: 0;
height: 96px; /* keeps layout alignment */
}
/* Span multiple time blocks */
.span-2 {
height: calc(96px * 2); /* 2 blocks + 1 gap */
text-align: center;
}
.span-3 {
height: calc(96px * 3); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-4 {
height: calc(96px * 4); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-5 {
height: calc(96px * 5); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-6 {
height: calc(96px * 6); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-7 {
height: calc(96px * 7); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-8 {
height: calc(96px * 8); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-9 {
height: calc(96px * 9); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-10 {
height: calc(96px * 10); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-11 {
height: calc(96px * 11); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-12 {
height: calc(96px * 12); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-13 {
height: calc(96px * 13); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-14 {
height: calc(96px * 14); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-23 {
height: calc(96px * 23); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-25 {
height: calc(96px * 25); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-32 {
height: calc(96px * 32); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-34 {
height: calc(96px * 34); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-36 {
height: calc(96px * 36); /* 3 blocks + 2 gaps */
text-align: center;
}
.span-chair {
height: calc(32px); /* 3 blocks + 2 gaps */
text-align: center;
}
/* Responsive tweaks */
@media (max-width: 768px) {
.schedule-cell {
font-size: 0.8em;
padding: 6px;
}
.schedule-row {
flex-wrap: wrap;
}
}
</style>
</head>
<div class="container-fluid">
<div class="blurred-background page-content p-5" style="margin-top: 80px;">
<p style="margin-top: 0; font-size: 14pt; font-family: 'Raleway', sans-serif;">
This page contains poster abstracts, the main conference schedule, and logistical information for talks and poster presentations:
<ul style="margin-top: 0; font-size: 14pt; font-family: 'Raleway', sans-serif;">
<li><a href="#posters">Poster and talk information</a></li>
<li><a href="#program">Conference program and poster abstracts</a></li>
</ul>
</p>
</div>
<div class="blurred-background-titles p-3" style="margin-top: 40px;">
<h2 id="posters">Information for presenters</h2>
</div>
<div class="blurred-background page-content p-5">
<p style="margin-top: 0; font-size: 14pt; font-family: 'Raleway', sans-serif;"><b>Information for presenters</b><br>
<ul style="margin-top: 0; font-size: 14pt; font-family: 'Raleway', sans-serif;">
<li>Keynote talks will be 45 minutes (40 min + 5 min for questions and transition).</li>
<li>Contributed talks will be 15 minutes (12 min + 3 min for questions).</li>
</ul>
</p>
<p style="margin-top: 0; font-size: 14pt; font-family: 'Raleway', sans-serif;"><b>Poster sizing and printing options</b><br>
<b><em>Poster sizes: maximum size A0 (vertical/portrait only)</em></b><br>
<br>
Regular posters
<ul style="margin-top: 0; font-size: 14pt; font-family: 'Raleway', sans-serif;">
<li><a href="https://www.imprimetout.ca/produits/Affiches%20Petite%20Quantit%C3%A9%20(10%20et%20moins)">Imprime Tout</a></li>
<li><a href="https://copyca.ca/large-format-print/large-format-poster-printing">CopyCa</a></li>
<li><a href="https://www.copieus.mcgilleus.ca/">CopiEUS (McGill)</a></li>
</ul>
Fabric posters
<ul style="margin-top: 0; font-size: 14pt; font-family: 'Raleway', sans-serif;">
<li><a href="https://copyca.ca/large-format-print/fabric-student-poster-printing">CopyCa</a></li>
<li><a href="https://postersmith.com/poster">PosterSmith</a></li>
</ul>
Other options (note no English website)
<ul style="margin-top: 0; font-size: 14pt; font-family: 'Raleway', sans-serif;">
<li><a href="https://sium.umontreal.ca/grand-format.html">UdeM</a></li>
<li><a href="https://www.polymtl.ca/reprographie/produits-et-services-offerts/impression-numerique-grand-format-et-finition">Polytechnique</a></li>
</ul>
</p>
</div>
<div class="blurred-background-titles p-3" style="margin-top: 40px;">
<h2 id="program">Conference Schedule</h2>
</div>
<div class="blurred-background page-content p-3">
<p class="page-content">
Book of Poster abstracts <br>
<a href="Exoclimes VII Abstract Booklet_Final.pdf">
<button type="button" class="exoclimes-btn btn btn-outline-secondary">View Book of Abstracts</button>
</a><br>
<br>
PDF of Conference Schedule<br>
<a href="Exoclimes_VII_final_program.pdf">
<button type="button" class="exoclimes-btn btn btn-outline-secondary">View PDF of Schedule</button>
</a>
</p>
<b>Click on the speakers to view their abstracts! </b>
<div class="schedule-wrapper">
<div class="schedule-container">
<!-- Time column -->
<div class="schedule-times">
<div class="schedule-header">Time</div>
<div class="schedule-block time">08:00 AM</div>
<div class="schedule-block time">09:00 AM</div>
<div class="chair">Chair</div>
<div class="schedule-block time">09:30 AM</div>
<div class="schedule-block time">09:45 AM</div>
<div class="schedule-block time">10:00 AM</div>
<div class="schedule-block time">10:15 AM</div>
<div class="schedule-block time">10:30 AM</div>
<div class="schedule-block time">10:45 AM</div>
<div class="schedule-block time">11:00 AM</div>
<div class="schedule-block time">11:15 AM</div>
<div class="chair">Chair</div>
<div class="schedule-block time">11:30 AM</div>
<div class="schedule-block time">11:45 AM</div>
<div class="schedule-block time">12:00 PM</div>
<div class="schedule-block time">12:15 PM</div>
<div class="schedule-block time">12:30 PM</div>
<div class="schedule-block time">12:45 PM</div>
<div class="schedule-block time">13:00 PM</div>
<div class="schedule-block time">13:15 PM</div>
<div class="schedule-block time">13:30 PM</div>
<div class="schedule-block time">13:45 PM</div>
<div class="schedule-block time">14:00 PM</div>
<div class="schedule-block time">14:15 PM</div>
<div class="schedule-block time">14:30 PM</div>
<div class="schedule-block time">14:45 PM</div>
<div class="schedule-block time">15:00 PM</div>
<div class="schedule-block time">15:15 PM</div>
<div class="schedule-block time">15:30 PM</div>
<div class="schedule-block time">15:45 PM</div>
<div class="chair">Chair</div>
<div class="schedule-block time">16:00 PM</div>
<div class="schedule-block time">16:15 PM</div>
<div class="chair">Chair</div>
<div class="schedule-block time">16:30 PM</div>
<div class="schedule-block time">16:45 PM</div>
<div class="chair">Chair</div>
<div class="schedule-block time">17:00 PM</div>
<div class="schedule-block time">17:15 PM</div>
<div class="schedule-block time">17:30 PM</div>
<div class="schedule-block time">17:45 PM</div>
<div class="chair">Chair</div>
<div class="schedule-block time">18:00 PM</div>
<div class="schedule-block time">18:15 PM</div>
<div class="schedule-block time">18:30 PM</div>
<div class="schedule-block time">18:45 PM</div>
<div class="schedule-block time">19:00 PM</div>
<div class="schedule-block time">19:15 PM</div>
<div class="schedule-block time">19:30 PM</div>
<div class="schedule-block time">19:45 PM</div>
<div class="schedule-block time">20:00 PM</div>
<div class="schedule-block time">20:15 PM</div>
<div class="schedule-block time">20:30 PM</div>
<div class="schedule-block time">20:45 PM</div>
<div class="schedule-block time">21:00 PM</div>
<div class="schedule-block time">21:15 PM</div>
<div class="schedule-block time">21:30 PM</div>
<div class="schedule-block time">21:45 PM</div>
<div class="schedule-block time">22:00 PM</div>
<div class="schedule-block time">22:15 PM</div>
<div class="schedule-block time">22:30 PM</div>
<div class="schedule-block time">22:45 PM</div>
<div class="schedule-block time">23:00 PM</div>
</div>
<!-- Sunday -->
<div class="schedule-day">
<div class="schedule-header">Sunday 6 July</div>
<div class="schedule-block departure span-32">Arrival</div>
<div class="small-block departure"></div>
<div class="small-block departure"></div>
<div class="small-block departure"></div>
<div class="small-block departure"></div>
<div class="small-block departure"></div>
<div class="schedule-block gala-dinner span-13">Welcoming Reception<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="small-block gala-dinner"></div>
<div class="schedule-block departure span-12">End</div>
</div>
<!-- Monday -->
<div class="schedule-day">
<div class="schedule-header">Monday 7 July</div>
<div class="schedule-block meal">Breakfast<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="schedule-block remarks">Opening remarks</div>
<div class="grouped-block">
<div class="grouped-block-header">Session 1 - Chair: Clémence Fontanive</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('nicolas-cowan')"><b>Nicolas Cowan:</b><br>Observing Atmospheric Dynamics on Exoplanets<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('natalia-gomez')"><b>Natalia Lucia Oliveris Gomez: </b>Mapping the atmosphere of the BD binary system WISE 1049AB</div>
<div class="schedule-block contributed-talk" onclick="showModal('amelie-gressier')"><b>Amelie Gressier: </b>JWST near-infrared phase curve analysis of the ultra-short-period Lava planet K2-141b</div>
<div class="schedule-block contributed-talk" onclick="showModal('fei-wang')"><b>Fei Wang: </b>Towards Time-Resolved Atmospheric Retrievals: Eigen-Spectra Inversion Techniques for Variable Brown Dwarfs and Exoplanet</div>
</div>
</div>
<div class="schedule-block meal span-2">Coffee break<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="grouped-block">
<div class="grouped-block-header">Session 2 - Chair: Denis Sergeev</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('keren-duer-milner')"><b>Keren Duer-Milner:</b><br>Atmospheric Dynamics of Solar System Giants<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('edouard-barrier')"><b>Edouard Barrier: </b>GCM simulations of temperature sub-Neptunes using a new convection scheme</div>
<div class="schedule-block contributed-talk" onclick="showModal('robert-frazier')"><b>Robert Frazier: </b>WASP-121b Under the Gaze of JWST: How 3D Models Compare to its Spectroscopic Phase Curve</div>
<div class="schedule-block contributed-talk" onclick="showModal('namrah-habib')"><b>Namrah Habib: </b>Do Episodic Storms Always Occur on Planets with Hydrogen-Rich Atmospheres? A Parameter-Space Study of Vertical Mixing in Sub-Neptune Exoplanets</div>
</div>
</div>
<div class="schedule-block meal span-6">Lunch & Poster Session<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="schedule-block free-time span-10">Discussion (Free Time)</div>
<div class="small-block free-time"></div>
<div class="small-block free-time"></div>
<div class="grouped-block-4">
<div class="grouped-block-header">Session 3 - Chair: Joost Wardenier</div>
<div class="grouped-block-body">
<div class="schedule-block contributed-talk" onclick="showModal('cathal-maguire')"><b>Cathal Maguire: </b>Multi-dimensional insights from high- and low-resolution spectroscopy</div>
<div class="schedule-block contributed-talk" onclick="showModal('vincent-yariv')"><b>Vincent Yariv: </b>Towards Doppler Eclipse Mapping of Hot Jupiters</div>
<div class="schedule-block contributed-talk" onclick="showModal('lennart-van-sluijs')"><b>Lennart van Sluijs: </b>1D Retrievals versus a 3D GCM: A Biased view of an Ultra Hot Jupiter at high resolution</div>
<div class="schedule-block contributed-talk" onclick="showModal('vivien-parmentier')"><b>Vivien Parmentier: </b>A population view of hot Jupiter atmospheres</div>
</div>
</div>
<div class="grouped-block-4">
<div class="grouped-block-header">Panel Mod: René Doyon </div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-4" onclick="showModal('spin-off-monday')"><b>Spin-off Evenings:</b><br>How SciComm Can Help You With Your Research Workshop by <br><em>Marie-Ève Naud & Frédérique Baron</em></div>
</div>
</div>
<div class="schedule-block buffer">Buffer</div>
<div class="schedule-block meal span-8">Dinner<br><a href="https://maps.app.goo.gl/DbvCHn3zCJZYAbp3A" style="font-size: 0.6em;">Cafétéria Jean-Brillant</a></div>
<div class="schedule-block departure span-8">End</div>
</div>
<!-- Tuesday -->
<div class="schedule-day">
<div class="schedule-header">Tuesday 8 July</div>
<div class="schedule-block meal span-2">Breakfast<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="grouped-block">
<div class="grouped-block-header">Session 4 - Chair: Shami Tsai</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('maria-zamyatina')"><b>Maria Zamyatina:</b><br>Atmospheric Chemistry of Solar and Extrasolar Gas Giants<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('robin-baeyens')"><b>Robin Baeyens: </b>One, two, three! A multi-dimensional look at the chemistry of WASP-43 b</div>
<div class="schedule-block contributed-talk" onclick="showModal('brianna-lacy')"><b>Brianna Lacy: </b>Mapping Nonequilibrium Chemistry Trends in Cold Rogue Worlds</div>
<div class="schedule-block contributed-talk" onclick="showModal('nathalie-grasser')"><b>Nathalie Grasser: </b>Chemical fingerprints of young L dwarf twins as proxies of gas giant atmospheres</div>
</div>
</div>
<div class="schedule-block meal span-2">Coffee break<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="grouped-block">
<div class="grouped-block-header">Session 5 - Chair: Julia Seidel</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('emily-deibert')"><b>Emily Deibert:</b><br>Probing Atmospheric Chemistry from High Resolution Spectroscopy<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('krishna-kanumalla')"><b>Krishna Kanumalla: </b>A song of ice and fire…and rocks!: Probing the rock-to-ice content of ultrahot Jupiters using IGRINS</div>
<div class="schedule-block contributed-talk" onclick="showModal('bibiana-prinoth')"><b>Bibiana Prinoth: </b>Hidden in plain sight: Using ESPRESSO's superpower to detect depleted titanium in WASP-121 b</div>
<div class="schedule-block contributed-talk" onclick="showModal('linn-boldt-christmas')"><b>Linn Boldt-Christmas: </b>High-resolution spectroscopy studies of a cloudy and warm Neptune</div>
</div>
</div>
<div class="schedule-block meal span-6">Lunch & Poster Session<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="schedule-block free-time span-8">Discussion (Free Time)</div>
<div class="small-block free-time"></div>
<div class="grouped-block-5">
<div class="grouped-block-header">Session 6 - Chair: Stevanus Nugroho</div>
<div class="grouped-block-body">
<div class="schedule-block contributed-talk" onclick="showModal('james-kirk')"><b>James Kirk: </b>BOWIE-ALIGN: Testing the dependence of atmospheric composition on migration history with the misaligned hot Jupiter WASP-15b</div>
<div class="schedule-block contributed-talk" onclick="showModal('nicole-wallack')"><b>Nicole Wallack: </b>Early Results from the JWST Giant Exoplanets Around M-dwarf Stars (GEMS) Program</div>
<div class="small-block contributed-talk"></div>
<div class="schedule-block contributed-talk" onclick="showModal('yoav-rotman')"><b>Yoav Rotman: </b>It's a bird! It's a plane! It's… an unknown gas?: Overcoming Modeling Deficiencies in Retrievals of JWST Exoplanet Spectra</div>
<div class="schedule-block contributed-talk" onclick="showModal('francisco-ardevol-martinez')"><b>Franciso Ardevol Martinez: </b>Overwhelmed with JWST data? Machine learning to the rescue!</div>
</div>
</div>
<div class="schedule-block meal span-6">Poster Session<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="small-block meal"></div>
<div class="schedule-block buffer">Buffer</div>
<div class="schedule-block meal span-8">Dinner<br><a href="https://maps.app.goo.gl/DbvCHn3zCJZYAbp3A" style="font-size: 0.6em;">Cafétéria Jean-Brillant</a></div>
<div class="schedule-block departure span-8">End</div>
</div>
<!-- Wednesday -->
<div class="schedule-day">
<div class="schedule-header">Wednesday 9 July</div>
<div class="schedule-block meal span-2">Breakfast<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="grouped-block">
<div class="grouped-block-header">Session 7 - Chair: Caroline Morley</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('elspeth-lee')"><b>Elspeth Lee:</b><br>Modelling Clouds in 3D<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('nishil-mehta')"><b>Nishil Mehta: </b>Combining JWST data and General Circulation Models for a 3D view of the warm Jupiter WASP-80b</div>
<!-- <div class="schedule-block contributed-talk" onclick="showModal('diana-powell')"><b>Diana Powell: </b>Spatially varying weather forecasts on hot Jupiters</div> -->
<div class="schedule-block contributed-talk" onclick="showModal('paul-molliere')"><b>Paul Molliere: </b>Characterizing Silicate Clouds in Rogue Planets with JWST</div>
<div class="schedule-block contributed-talk" onclick="showModal('sophia-vaughan')"><b>Sophia Vaughan: </b>Understanding the survival of desert wanderer: Characterizing LTT-9779 b in reflected light</div>
</div>
</div>
<div class="schedule-block meal span-2">Coffee break<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="grouped-block-7">
<div class="grouped-block-header">Session 8 - Chair: Sarah Moran</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('xinting-yu')"><b>Xinting Yu:</b><br>Bridging Laboratory Aerosol Studies and Atmospheric Modeling: Lessons from Titan<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('ryan-challener')"><b>Ryan Challener: </b>JWST-TST DREAMS: The Complete JWST Emission and Transmission Spectra of a Hot Jupiter</div>
<div class="schedule-block contributed-talk" onclick="showModal('vighnesh-nagpal')"><b>Vighnesh Nagpal: </b>Clouds and Hazes on Sub-Neptunes: Insights from 2D Microphysical Modeling</div>
<div class="schedule-block contributed-talk" onclick="showModal('giulia-roccetti')"><b>Giulia Roccetti: </b>Exploring Earth's Reflected Light Through 3D Radiative Transfer Simulations</div>
<div class="schedule-block contributed-talk" onclick="showModal('yifan-zhou')"><b>Yifan Zhou: </b>JWST as an Exoplanet Weather Satellite: NIRCam Coronagraphic Monitoring of Beta Pic b</div>
</div>
</div>
<div class="schedule-block free-time span-23">Excursion (Free Time)</div>
<div class="small-block free-time"></div>
<div class="small-block free-time"></div>
<div class="small-block free-time"></div>
<div class="small-block free-time"></div>
<div class="schedule-block buffer">Buffer</div>
<div class="schedule-block meal span-8">Dinner<br><a href="https://maps.app.goo.gl/DbvCHn3zCJZYAbp3A" style="font-size: 0.6em;">Cafétéria Jean-Brillant</a></div>
<div class="schedule-block departure span-8">End</div>
</div>
<!-- Thursday -->
<div class="schedule-day">
<div class="schedule-header">Thursday 10 July</div>
<div class="schedule-block meal span-2">Breakfast<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="grouped-block">
<div class="grouped-block-header">Session 9 - Chair: Yamila Miguel</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('anjali-piette')"><b>Anjali Piette:</b><br>Deciphering the Compositions of Super-Earths and Sub-Neptunes with JWST<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('matthew-nixon')"><b>Mathhew Nixon: </b>Observable signatures of magma-atmosphere interactions in sub-Neptunes</div>
<div class="schedule-block contributed-talk" onclick="showModal('cara-pesciotta')"><b>Cara Pesciotta: </b>Hazes and Habitability: The Interaction Between Atmospheric Haze and Liquid Surface Water</div>
<div class="schedule-block contributed-talk" onclick="showModal('harrison-nicholls')"><b>Harrison Nicholls: </b>Exploring the diversity of lava planet atmospheres through coupled interior-atmosphere modelling</div>
</div>
</div>
<div class="schedule-block meal span-2">Coffee break<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="grouped-block">
<div class="grouped-block-header">Session 10 - Chair: Tim Lichtenberg</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('oliver-shorttle')"><b>Oliver Shorttle:</b><br>The Search for Life at Planetary Interfaces<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('esther-van-dijk')"><b>Esther van Dijk: </b>Retrieving interior properties of hot Jupiters with Love numbers and atmospheric measurements</div>
<div class="schedule-block contributed-talk" onclick="showModal('charles-edouard-boukare')"><b>Charles-Edouard Boukare: </b>Exploring the Internal Dynamics of Lava Exoplanets</div>
<div class="schedule-block contributed-talk" onclick="showModal('claire-guimond')"><b>Claire Guimond: </b>A geochemical view on the ubiquity of atmospheric CO2 on rocky exoplanets</div>
</div>
</div>
<div class="schedule-block meal span-6">Lunch & Poster Session<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="schedule-block free-time span-6">Discussion (Free Time)</div>
<div class="grouped-block-5">
<div class="grouped-block-header">Session 11 - Chair: Vignesh Krishnamurthy</div>
<div class="grouped-block-body">
<div class="schedule-block contributed-talk" onclick="showModal('jiachen-liu')"><b>Jiachen Liu: </b>Transport-induced Chemistry and Vertical Mixing of Temperate sub-Neptunes: K2-18b as an Example</div>
<div class="schedule-block contributed-talk" onclick="showModal('lily-alderson')"><b>Lili Alderson: </b>Uncovering the Carbon Chemistry of the Exo-Neptune HAT-P-11b</div>
<div class="small-block contributed-talk"></div>
<div class="schedule-block contributed-talk" onclick="showModal('pierre-alexis-roy')"><b>Pierre-Alexis Roy: </b>Revealing the first thermal emission spectrum of a hot and dense sub-Neptune</div>
<div class="schedule-block contributed-talk" onclick="showModal('chloe-fisher')"><b>Chloe Fisher: </b>Comparing the Chemistry of Sub-Neptunes in Multi-Planet Systems with JWST</div>
</div>
</div>
<div class="grouped-block-4">
<div class="grouped-block-header">Panel Mod: Frédérique Baron </div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-4" onclick="showModal('spin-off-friday')"><b>Spin-off Evenings:</b><br>Going Beyond Academia<br><em>Cassandra Bolduc, Jeffrey Silverman, and Antoine Darveau-Bernier</em></div>
</div>
</div>
<div class="small-block invited-talk"></div>
<div class="schedule-block buffer span-5">Buffer</div>
<div class="schedule-block gala-dinner span-11">Conference Dinner<br><a href="https://www.google.com/maps/place/Perspective+235%C2%B0+et+sa+passerelle/@45.5049735,-73.5517254,17.37z/data=!4m6!3m5!1s0x4cc91bef422de67d:0xe106621740a4f8f9!8m2!3d45.504868!4d-73.5498133!16s%2Fg%2F11s7qkk718?entry=ttu&g_ep=EgoyMDI1MDYyMy4yIKXMDSoASAFQAw%3D%3D" style="font-size: 0.6em;">Old Port</a></div>
<div class="schedule-block remarks span-5">Fireworks visible from Old Port</div>
</div>
<!-- Friday -->
<div class="schedule-day">
<div class="schedule-header">Friday 11 July</div>
<div class="schedule-block meal span-2">Breakfast<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="grouped-block">
<div class="grouped-block-header">Session 12 - Chair: Lisa Dang</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('david-brain')"><b>David Brain:</b><br>Atmospheric Escape from Solary System Planets and Moons<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('aaron-bello-arufe')"><b>Aaron Bello-Arufe: </b>Evidence for an atmosphere on the sub-Earth L98-59b</div>
<div class="schedule-block contributed-talk" onclick="showModal('collin-cherubim')"><b>Collin Cherubim: </b>An Oxidation Gradient Spanning the Small Planet Radius Valley</div>
<div class="schedule-block contributed-talk" onclick="showModal('mark-fortune')"><b>Mark Fortune: </b>Constraining the atmosphere of the rocky exoplanet LHS-1140c and lessons for the Rocky Worlds DDT from analysing JWST/MIRI data at the pixel-level</div>
</div>
</div>
<div class="schedule-block meal span-2">Coffee break<br><a href="https://maps.app.goo.gl/rfEUCMw3eBrPMu1J7" style="font-size: 0.6em;">Pavillon Jean-Coutu Agora</a></div>
<div class="grouped-block">
<div class="grouped-block-header">Session 13 - Chair: Romain Allart</div>
<div class="grouped-block-body">
<div class="schedule-block invited-talk span-3" onclick="showModal('leonardo-dos-santos')"><b>Leonardo Dos Santos:</b><br>A Tale of Asymmetric Transits, Missing Planets, and Finally Including Magnetic Fields<br><em>Review Talk</em></div>
<div class="schedule-block contributed-talk" onclick="showModal('eva-maria-ahrer')"><b>Eva-Maria Ahrer: </b>Escaping helium and muted features suggest a high-metallicity atmosphere on sub-Neptune GJ3090b from JWST transit spectroscopy</div>
<div class="schedule-block contributed-talk" onclick="showModal('jaume-orell-miquel')"><b>Jaume Orell-Miquel: </b>Insights from the largest observational campaign on escaping atmospheres</div>
<div class="schedule-block contributed-talk" onclick="showModal('shreyas-vissapragada')"><b>Shreyas Vissapragada: </b>Towards Precise Constraints on Atmospheric Evolution for 50 Sub-Neptunes</div>
</div>
</div>
<div class="schedule-block remarks">Closing remarks</div>
<div class="schedule-block meal span-6">Lunch</div>
<div class="schedule-block departure span-34">Departure</div>
<div class="small-block departure"></div>
<div class="small-block departure"></div>
<div class="small-block departure"></div>
<div class="small-block departure"></div>
</div>
</div>
</div>
</div>
</div>
</div> <!-- <table>
<tr>
<th style="color: #031B48">Time</th>
<th style="color: #031B48">Sunday</th>
<th style="color: #031B48">Monday</th>
<th style="color: #031B48">Tuesday</th>
<th style="color: #031B48">Wednesday</th>
<th style="color: #031B48">Thursday</th>
<th style="color: #031B48">Friday</th>
</tr>
<tr>
<td class="time">07:00 AM</td>
<td rowspan="36" style="vertical-align: middle;" class="departure">Arrival</td>
<td class="meal">Breakfast</td>
<td rowspan="2" style="vertical-align: middle;" class="meal">Breakfast</td>
<td rowspan="2" style="vertical-align: middle;" class="meal">Breakfast</td>
<td rowspan="2" style="vertical-align: middle;" class="meal">Breakfast</td>
<td rowspan="2" style="vertical-align: middle;" class="meal">Breakfast</td>
</tr>
<tr>
<td class="time">09:00 AM</td>
<td class="remarks">Opening Remarks</td>
</tr>
<tr>
<td class="time">09:30 AM</td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('nicolas-cowan')"><b>Nicolas Cowan:</b><br>Observing Atmospheric Dynamics on Exoplanets<br><em>Review Talk</em></td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('maria-zamyatina')"><b>Maria Zamyatina:</b><br>Atmospheric Chemistry of Solar and Extrasolar Gas Giants<br><em>Review Talk</em></td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('elspeth-lee')"><b>Elspeth Lee:</b><br>Modelling Clouds in 3D<br><em>Review Talk</em></td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('anjali-piette')"><b>Anjali Piette:</b><br>Deciphering the Compositions of Super-Earths and Sub-Neptunes with JWST<br><em>Review Talk</em></td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('david-brain')"><b>David Brain:</b><br>Atmospheric Escape from Solary System Planets and Moons<br><em>Review Talk</em></td>
</tr>
<tr>
<td class="time">09:45 AM</td>
</tr>
<tr>
<td class="time">10:00 AM</td>
</tr>
<tr>
<td class="time">10:15 AM</td>
<td class="contributed-talk" onclick="showModal('natalia-gomez')"><b>Natalia Lucia Oliveris Gomez: </b>Mapping the atmosphere of the BD binary system WISE 1049AB</td>
<td class="contributed-talk" onclick="showModal('robin-baeyens')"><b>Robin Baeyens: </b>One, two, three! A multi-dimensional look at the chemistry of WASP-43 b</td>
<td class="contributed-talk" onclick="showModal('nishil-mehta')"><b>Nishil Mehta: </b>Combining JWST data and General Circulation Models for a 3D view of the warm Jupiter WASP-80b</td>
<td class="contributed-talk" onclick="showModal('matthew-nixon')"><b>Mathhew Nixon: </b>Observable signatures of magma-atmosphere interactions in sub-Neptunes</td>
<td class="contributed-talk" onclick="showModal('aaron-bello-arufe')"><b>Aaron Bello-Arufe: </b>Evidence for an atmosphere on the sub-Earth L98-59b</td>
</tr>
<tr>
<td class="time">10:30 AM</td>
<td class="contributed-talk" onclick="showModal('amelie-gressier')"><b>Amelie Gressier: </b>JWST near-infrared phase curve analysis of the ultra-short-period Lava planet K2-141b</td>
<td class="contributed-talk" onclick="showModal('brianna-lacy')"><b>Brianna Lacy: </b>Mapping Nonequilibrium Chemistry Trends in Cold Rogue Worlds</td>
<td class="contributed-talk" onclick="showModal('diana-powell')"><b>Diana Powell: </b>Spatially varying weather forecasts on hot Jupiters</td>
<td class="contributed-talk" onclick="showModal('cara-pesciotta')"><b>Cara Pesciotta: </b>Hazes and Habitability: The Interaction Between Atmospheric Haze and Liquid Surface Water</td>
<td class="contributed-talk" onclick="showModal('collin-cherubim')"><b>Collin Cherubim: </b>An Oxidation Gradient Spanning the Small Planet Radius Valley</td>
</tr>
<tr>
<td class="time">10:45 AM</td>
<td class="contributed-talk" onclick="showModal('fei-wang')"><b>Fei Wang: </b>Towards Time-Resolved Atmospheric Retrievals: Eigen-Spectra Inversion Techniques for Variable Brown Dwarfs and Exoplanet</td>
<td class="contributed-talk" onclick="showModal('nathalie-grasser')"><b>Nathalie Grasser: </b>Chemical fingerprints of young L dwarf twins as proxies of gas giant atmospheres</td>
<td class="contributed-talk" onclick="showModal('sophia-vaughan')"><b>Sophia Vaughan: </b>Understanding the survival of desert wanderer: Characterizing LTT-9779 b in reflected light</td>
<td class="contributed-talk" onclick="showModal('harrison-nicholls')"><b>Harrison Nicholls: </b>Exploring the diversity of lava planet atmospheres through coupled interior-atmosphere modelling</td>
<td class="contributed-talk" onclick="showModal('mark-fortune')"><b>Mark Fortune: </b>Constraining the atmosphere of the rocky exoplanet LHS-1140c and lessons for the Rocky Worlds DDT from analysing JWST/MIRI data at the pixel-level</td>
</tr>
<tr>
<td class="time">11:00 AM</td>
<td rowspan="2" style="vertical-align: middle;" class="meal">Coffee break</td>
<td rowspan="2" style="vertical-align: middle;" class="meal">Coffee break</td>
<td rowspan="2" style="vertical-align: middle;" class="meal">Coffee break</td>
<td rowspan="2" style="vertical-align: middle;" class="meal">Coffee break</td>
<td rowspan="2" style="vertical-align: middle;" class="meal">Coffee break</td>
</tr>
<tr>
<td class="time">11:15 AM</td>
</tr>
<tr>
<td class="time">11:30 AM</td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('keren-duer-milner')"><b>Keren Duer-Milner:</b><br>Atmospheric Dynamics of Solar System Giants<br><em>Review Talk</em></td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('emily-deibert')"><b>Emily Deibert:</b><br>Probing Atmospheric Chemistry from High Resolution Spectroscopy<br><em>Review Talk</em></td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('xinting-yu')"><b>Xinting Yu:</b><br>Bridging Laboratory Aerosol Studies and Atmospheric Modeling: Lessons from Titan<br><em>Review Talk</em></td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('oliver-shorttle')"><b>Oliver Shorttle:</b><br>The search for life at planetary interfaces<br><em>Review Talk</em></td>
<td rowspan="3" style="vertical-align: middle;" class="invited-talk" onclick="showModal('leonardo-dos-santos')"><b>Leonardo Dos Santos:</b><br>A Tale of Asymmetric Transits, Missing Planets, and Finally Including Magnetic Fields<br><em>Review Talk</em></td>
</tr>
<tr>
<td class="time">11:45 AM</td>
</tr>
<tr>
<td class="time">12:00 PM</td>
</tr>
<tr>
<td class="time">12:15 PM</td>
<td class="contributed-talk" onclick="showModal('edouard-barrier')"><b>Edouard Barrier: </b>GCM simulations of temperature sub-Neptunes using a new convection scheme</td>
<td class="contributed-talk" onclick="showModal('krishna-kanumalla')"><b>Krishna Kanumalla: </b>A song of ice and fire…and rocks!: Probing the rock-to-ice content of ultrahot Jupiters using IGRINS</td>
<td class="contributed-talk" onclick="showModal('thomas-kennedy')"><b>Thomas Kennedy: </b>Exploring cloud uncertainties with a grid of hot Jupiter GCMs</td>
<td class="contributed-talk" onclick="showModal('esther-van-dijk')"><b>Esther van Dijk: </b>Retrieving interior properties of hot Jupiters with Love numbers and atmospheric measurements</td>
<td class="contributed-talk" onclick="showModal('eva-maria-ahrer')"><b>Eva-Maria Ahrer: </b>Escaping helium and muted features suggest a high-metallicity atmosphere on sub-Neptune GJ3090b from JWST transit spectroscopy</td>
</tr>
<tr>
<td class="time">12:30 PM</td>
<td class="contributed-talk" onclick="showModal('robert-frazier')"><b>Robert Frazier: </b>WASP-121b Under the Gaze of JWST: How 3D Models Compare to its Spectroscopic Phase Curve</td>
<td class="contributed-talk" onclick="showModal('bibiana-prinoth')"><b>Bibiana Prinoth: </b>Hidden in plain sight: Using ESPRESSO's superpower to detect depleted titanium in WASP-121 b</td>
<td class="contributed-talk" onclick="showModal('vighnesh-nagpal')"><b>Vighnesh Nagpal: </b>Clouds and Hazes on Sub-Neptunes: Insights from 2D Microphysical Modeling</td>
<td class="contributed-talk" onclick="showModal('charles-edouard-boukare')"><b>Charles-Edouard Boukare: </b>Exploring the Internal Dynamics of Lava Exoplanets</td>
<td class="contributed-talk" onclick="showModal('jaume-orell-miquel')"><b>Jaume Orell-Miquel: </b>Insights from the largest observational campaign on escaping atmospheres</td>
</tr>
<tr>
<td class="time">12:45 PM</td>
<td class="contributed-talk" onclick="showModal('namrah-habib')"><b>Namrah Habib: </b>Do Episodic Storms Always Occur on Planets with Hydrogen-Rich Atmospheres? A Parameter-Space Study of Vertical Mixing in Sub-Neptune Exoplanets</td>
<td class="contributed-talk" onclick="showModal('linn-boldt-christmas')"><b>Linn Boldt-Christmas: </b>High-resolution spectroscopy studies of a cloudy and warm Neptune</td>
<td class="contributed-talk" onclick="showModal('giulia-roccetti')"><b>Giulia Roccetti: </b>Exploring Earth's Reflected Light Through 3D Radiative Transfer Simulations</td>
<td class="contributed-talk" onclick="showModal('claire-guimond')"><b>Claire Guimond: </b>A geochemical view on the ubiquity of atmospheric CO2 on rocky exoplanets</td>
<td class="contributed-talk" onclick="showModal('shreyas-vissapragada')"><b>Shreyas Vissapragada: </b>Towards Precise Constraints on Atmospheric Evolution for 50 Sub-Neptunes</td>
</tr>
<tr>
<td class="time">13:00 PM</td>
<td rowspan="6" style="vertical-align: middle;" class="meal">Lunch</td>
<td rowspan="6" style="vertical-align: middle;" class="meal">Lunch</td>
<td class="contributed-talk" onclick="showModal('yifan-zhou')"><b>Yifan Zhou: </b>JWST as an Exoplanet Weather Satellite: NIRCam Coronagraphic Monitoring of Beta Pic b</td>
<td rowspan="6" style="vertical-align: middle;" class="meal">Lunch</td>
<td class="remarks" style="vertical-align: middle;">Closing remarks</td>
</tr>
<tr>
<td class="time">13:15 PM</td>
<td class="contributed-talk" onclick="showModal('paul-molliere')"><b>Paul Molliere: </b>Characterizing Silicate Clouds in Rogue Planets with JWST</td>
<td rowspan="6" style="vertical-align: middle;" class="meal">Lunch</td>
</tr>
<tr>
<td class="time">13:30 PM</td>
<td rowspan="10" style="vertical-align: middle;" class="free-time">Excursion</td>
</tr>
<tr>
<td class="time">13:45 PM</td>
</tr>
<tr>
<td class="time">14:00 PM</td>
</tr>
<tr>
<td class="time">14:15 PM</td>
</tr>
<tr>
<td class="time">14:30 PM</td>
<td class="free-time">Discussion</td>
<td class="free-time">Discussion</td>
<td class="free-time">Discussion</td>
</tr>
<tr>
<td class="time">14:45 PM</td>
<td rowspan="9" style="vertical-align: middle;" class="free-time">Free Time</td>
<td rowspan="9" style="vertical-align: middle;" class="free-time">Free Time</td>
<td rowspan="5" style="vertical-align: middle;" class="free-time">Free Time</td>
<td rowspan="26" style="vertical-align: middle;" class="departure">Departure</td>
</tr>
<tr>
<td class="time">15:00 PM</td>
</tr>
<tr>
<td class="time">15:15 PM</td>
</tr>
<tr>
<td class="time">15:30 PM</td>
</tr>
<tr>
<td class="time">15:45 PM</td>
</tr>
<tr>
<td class="time">16:00 PM</td>
<td class="free-time">Discussion</td>
<td class="contributed-talk" onclick="showModal('jiachen-liu')"><b>Jiachen Liu: </b>Transport-induced Chemistry and Vertical Mixing of Temperate sub-Neptunes: K2-18b as an Example</td>
</tr>
<tr>
<td class="time">16:15 PM</td>
<td rowspan="11" style="vertical-align: middle;" class="free-time">Free Time</td>
<td class="contributed-talk" onclick="showModal('lily-alderson')"><b>Lili Alderson: </b>Uncovering the Carbon Chemistry of the Exo-Neptune HAT-P-11b</td>
</tr>
<tr>
<td class="time">16:30 PM</td>
<td class="contributed-talk" onclick="showModal('pierre-alexis-roy')"><b>Pierre-Alexis Roy: </b>Revealing the first thermal emission spectrum of a hot and dense sub-Neptune</td>
</tr>
<tr>
<td class="time">16:45 PM</td>
<td class="contributed-talk" onclick="showModal('chloe-fisher')"><b>Chloe Fisher: </b>Comparing the Chemistry of Sub-Neptunes in Multi-Planet Systems with JWST</td>
</tr>
<tr>
<td class="time">17:00 PM</td>
<td class="contributed-talk" onclick="showModal('cathal-maguire')"><b>Cathal Maguire: </b>Multi-dimensional insights from high- and low-resolution spectroscopy</td>
<td class="contributed-talk" onclick="showModal('james-kirk')"><b>James Kirk: </b>BOWIE-ALIGN: Testing the dependence of atmospheric composition on migration history with the misaligned hot Jupiter WASP-15b</td>
<td rowspan="4" style="vertical-align: middle;" class="invited-talk" onclick="showModal('spin-off-friday')"><b>Spin-off Evenings:</b><br>Going Beyond Academia<br><em>Cassandra Bolduc & Jeffrey Silverman</em></td>
</tr>
<tr>
<td class="time">17:15 PM</td>
<td class="contributed-talk" onclick="showModal('vincent-yariv')"><b>Vincent Yariv: </b>Towards Doppler Eclipse Mapping of Hot Jupiters</td>
<td class="contributed-talk" onclick="showModal('nicole-wallack')"><b>Nicole Wallack: </b>Early Results from the JWST Giant Exoplanets Around M-dwarf Stars (GEMS) Program</td>
</tr>
<tr>
<td class="time">17:30 PM</td>
<td class="contributed-talk" onclick="showModal('lennart-van-sluijs')"><b>Lennart van Sluijs: </b>1D Retrievals versus a 3D GCM: A Biased view of an Ultra Hot Jupiter at high resolution</td>
<td class="contributed-talk" onclick="showModal('yoav-rotman')"><b>Yoav Rotman: </b>It's a bird! It's a plane! It's… an unknown gas?: Overcoming Modeling Deficiencies in Retrievals of JWST Exoplanet Spectra</td>
</tr>
<tr>
<td class="time">17:45 PM</td>
<td class="contributed-talk" onclick="showModal('vivien-parmentier')"><b>Vivien Parmentier: </b>A population view of hot Jupiter atmospheres</td>
<td class="contributed-talk" onclick="showModal('francisco-ardevol-martinez')"><b>Franciso Ardevol Martinez: </b>Overwhelmed with JWST data? Machine learning to the rescue!</td>
</tr>
<tr>
<td class="time">18:00 PM</td>
<td rowspan="9" style="vertical-align: middle;" class="gala-dinner">Welcoming Reception</td>
<td rowspan="4" style="vertical-align: middle;" class="invited-talk" onclick="showModal('spin-off-monday')"><b>Spin-off Evenings:</b><br>How SciComm can help you with your research Workshop by <br><em>Marie-Ève Naud & Frédérique Baron</em></td>
<td rowspan="4" style="vertical-align: middle;" class="invited-talk" onclick="showModal('spin-off-tuesday')"><b>Spin-off Evenings:</b><br>Machine Learning Applications in Climate Science Discussion Panel by <br><em>Chloe Fisher and Salma Salhi</em></td>
<td rowspan="5" style="vertical-align: middle;" class="buffer">Buffer</td>
</tr>
<tr>
<td class="time">18:15 PM</td>
</tr>
<tr>
<td class="time">18:30 PM</td>
</tr>
<tr>
<td class="time">18:45 PM</td>
</tr>
<tr>
<td class="time">19:00 PM</td>
<td class="buffer">Buffer</td>
<td class="buffer">Buffer</td>
<td class="buffer">Buffer</td>
</tr>
<tr>
<td class="time">19:15 PM</td>
<td rowspan="4" style="vertical-align: middle;" class="meal">Dinner</td>
<td rowspan="4" style="vertical-align: middle;" class="meal">Dinner</td>
<td rowspan="4" style="vertical-align: middle;" class="meal">Dinner</td>
<td rowspan="8" style="vertical-align: middle;" class="gala-dinner">Conference Dinner</td>
</tr>
<tr>
<td class="time">19:30 PM</td>
</tr>
<tr>
<td class="time">19:45 PM</td>
</tr>
<tr>
<td class="time">20:00 PM</td>
</tr>
<tr>
<td class="time">20:15 PM</td>
<td rowspan="4" style="vertical-align: middle;" class="departure">End</td>
<td rowspan="4" style="vertical-align: middle;" class="departure">End</td>
<td rowspan="4" style="vertical-align: middle;" class="departure">End</td>