generated from jtr13/website-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv2.htm
More file actions
2289 lines (2182 loc) · 133 KB
/
cv2.htm
File metadata and controls
2289 lines (2182 loc) · 133 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 PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252"/>
<title></title>
<meta name="generator" content="LibreOffice 7.2.7.2 (Windows)"/>
<meta name="created" content="2024-11-18T05:28:57.867000000"/>
<meta name="changed" content="2024-11-18T05:32:54.320000000"/>
<style type="text/css">
@page { size: 21.59cm 27.94cm; margin: 2cm }
p { line-height: 115%; margin-bottom: 0.25cm; background: transparent }
td p { orphans: 0; widows: 0; background: transparent }
a:link { color: #000080; so-language: zxx; text-decoration: underline }
strong { font-weight: bold }
</style>
</head>
<body lang="en-CA" link="#000080" vlink="#800000" dir="ltr"><p align="center" style="line-height: 100%; margin-left: 1.27cm; text-indent: -1.27cm; margin-bottom: 0cm; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>The
Faculty of Medicine of Harvard University </b></font></font></font>
</p>
<p align="center" style="line-height: 100%; margin-bottom: 0cm; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Curriculum
Vitae</b></font></font></font></p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<table width="619" cellpadding="7" cellspacing="0">
<col width="191"/>
<col width="400"/>
<tr valign="top">
<td width="191" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Date
Prepared:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">October
4, 2024</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="191" height="3" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Name:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><font color="#000000">Christopher
</font><font color="#000000"><u>Andrew</u></font><font color="#000000"><span style="text-decoration: none">
</span></font><font color="#000000">Basham</font></font></font></p>
</td>
</tr>
<tr valign="top">
<td width="191" height="19" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><font color="#000000"><b>Office:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">1620
Tremont Street, Unit 3030, Boston, MA 02120</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="191" height="9" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Email:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#0000ff"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><u><a href="mailto:cv@andrewbasham.com">cv@andrewbasham.com</a>
</u></font></font></font>
</p>
</td>
</tr>
<tr valign="top">
<td width="191" height="8" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Website:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0; margin-top: 0.1cm">
<a href="https://andrewbasham.com/" name="https://andrewbasham.com/"><font color="#0000ff"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><span lang="en-US"><u>https://andrewbasham.com/</u></span></font></font></font></a></p>
</td>
</tr>
<tr valign="top">
<td width="191" height="8" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>LinkedIn:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<a href="https://www.linkedin.com/in/candrewbasham/" name="https://www.linkedin.com/in/candrewbasham/"><font color="#0000ff"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><u>https://www.linkedin.com/in/candrewbasham/</u></font></font></font></a></p>
</td>
</tr>
<tr valign="top">
<td width="191" height="8" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>ORCiD:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0; margin-top: 0.1cm">
<a href="https://orcid.org/0000-0003-0506-7936" name="https://orcid.org/0000-0003-0506-7936"><font color="#0000ff"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><span lang="en-CA"><u>https://orcid.org/0000-0003-0506-7936</u></span></font></font></font></a></p>
</td>
</tr>
<tr valign="top">
<td width="191" height="8" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Open
Science Framework:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<a href="https://osf.io/mny8b/" name="https://osf.io/mny8b/"><font color="#0000ff"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><u>https://osf.io/mny8b/</u></font></font></font></a></p>
</td>
</tr>
<tr valign="top">
<td width="191" height="8" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>GitHub
Profile:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0; margin-top: 0.1cm">
<a href="https://github.com/CAndrewBasham" name="https://github.com/CAndrewBasham"><font color="#0000ff"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><span lang="en-CA"><u>https://github.com/CAndrewBasham</u></span></font></font></font></a></p>
</td>
</tr>
<tr valign="top">
<td width="191" height="8" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>GitHub
Webpage: </b></font></font></font>
</p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0; margin-top: 0.1cm">
<font face="Times New Roman"><font size="3" style="font-size: 12pt"><span lang="en-CA"><a href="https://candrewbasham.github.io/web/">https://candrewbasham.github.io/web/</a>
</span></font></font>
</p>
</td>
</tr>
<tr valign="top">
<td width="191" height="8" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>ResearchGate:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0; margin-top: 0.1cm">
<a href="https://www.researchgate.net/profile/C-Andrew-Basham" name="https://www.researchgate.net/profile/C-Andrew-Basham"><font color="#0000ff"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><span lang="en-CA"><u>https://www.researchgate.net/profile/C-Andrew-Basham</u></span></font></font></font></a></p>
</td>
</tr>
<tr valign="top">
<td width="191" height="6" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2; margin-top: 0.1cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Google
Scholar:</b></font></font></font></p>
</td>
<td width="400" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0; margin-top: 0.1cm">
<font color="#0000ff"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><u>https://tinyurl.com/3wz4sken</u></font></font></font></p>
</td>
</tr>
</table>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Education:
</b></font></font></font>
</p>
<table width="619" cellpadding="7" cellspacing="0">
<col width="113"/>
<col width="66"/>
<col width="189"/>
<col width="195"/>
<tr valign="top">
<td width="113" height="10" style="background: transparent; border: none; padding: 0cm"><p align="left" style="margin-left: 2.54cm; text-indent: -2.54cm">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">09/2017-10/2021</font></font></font></p>
</td>
<td width="66" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">PhD</font></font></font></p>
</td>
<td width="189" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Population
and Public Health</font></font></font></p>
</td>
<td width="195" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of British Columbia</font></font></font></p>
</td>
</tr>
<tr valign="top">
<td width="113" height="10" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">09/2010-02/2016</font></font></font></p>
</td>
<td width="66" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">MSc</font></font></font></p>
</td>
<td width="189" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Community
Health Sciences</font></font></font></p>
</td>
<td width="195" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Manitoba</font></font></font></p>
</td>
</tr>
<tr valign="top">
<td width="113" height="11" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">09/2004-05/2008</font></font></font></p>
</td>
<td width="66" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">BA</font></font></font></p>
</td>
<td width="189" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Environmental/Urban
Studies</font></font></font></p>
</td>
<td width="195" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Winnipeg</font></font></font></p>
</td>
</tr>
</table>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Postdoctoral
Training:</b></font></font></font></p>
<table width="96%" cellpadding="7" cellspacing="0">
<col width="54*"/>
<col width="33*"/>
<col width="87*"/>
<col width="81*"/>
<tr valign="top">
<td width="21%" height="33" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">03/2022-06/2024</font></font></font></p>
</td>
<td width="13%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Research
Fellow</font></font></font></p>
</td>
<td width="34%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Division
of Pharmacoepidemiology and Pharmacoeconomics</font></font></font></p>
</td>
<td width="32%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Harvard
Medical School</font></font></font></p>
</td>
</tr>
</table>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Appointments
at Hospitals/Affiliated Institutions:</b></font></font></font></p>
<table width="619" cellpadding="7" cellspacing="0">
<col width="113"/>
<col width="64"/>
<col width="190"/>
<col width="196"/>
<tr valign="top">
<td width="113" height="37" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">03/2022–06/2024</font></font></font></p>
</td>
<td width="64" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Research
Fellow</font></font></font></p>
</td>
<td width="190" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Division
of Pharmacoepidemiology and Pharmacoeconomics</font></font></font></p>
</td>
<td width="196" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Brigham
and Women's Hospital</font></font></font></p>
</td>
</tr>
</table>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm; text-decoration: none; page-break-before: always">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Other
Professional Positions:</b></font></font></font></p>
<table width="99%" cellpadding="7" cellspacing="0">
<col width="51*"/>
<col width="65*"/>
<col width="71*"/>
<col width="69*"/>
<tr valign="top">
<td width="20%" bgcolor="#ffffff" style="background: #ffffff; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Year(s)</b></font></font></font></p>
</td>
<td width="25%" bgcolor="#ffffff" style="background: #ffffff; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Position</b></font></font></p>
</td>
<td width="28%" bgcolor="#ffffff" style="background: #ffffff; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Department</b></font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Institution</b></font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2008-2010</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Health
Policy Analyst</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Health
Department</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Manitoba
Keewatinowi Okimakanak</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2012</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Research
Assistant</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Department
of Emergency Medicine</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Manitoba</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2012-2013</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Statistical
Analyst</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">First
Nations Regional Longitudinal Health Survey</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Assembly
of Manitoba Chiefs</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2013</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Program
Specialist</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Aboriginal
Health Programs</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Winnipeg
Regional Health Authority</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2014-2015</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Research
Assistant</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Centre
for Aboriginal Health Research</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Manitoba</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2015</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Research
Consultant</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Health
Department</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Manitoba
Keewatinowi Okimakanak</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2015-2017</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Data
Analyst</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Manitoba
Centre for Health Policy</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Manitoba</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2017-2021</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Graduate
Research Assistant</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Tuberculosis
Program</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">British
Columbia Centre for Disease Control</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2018</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Teaching
Assistant</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">School
of Population and Public Health</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of British Columbia</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2019</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Graduate
Research Assistant</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Department
of Pathology and Laboratory Medicine</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of British Columbia</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2020-2021</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Graduate
Research Assistant</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Canadian
Disability Participation Project</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of British Columbia</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2021-2022</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Evidence
Reviewer</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">McGill
International TB Centre</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">McGill
University</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2022-</font></font></font></p>
</td>
<td width="25%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Statistical
Consultant</font></font></p>
</td>
<td width="28%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Faculty
of Health Sciences</font></font></p>
</td>
<td width="27%" style="border: none; padding: 0cm"><p align="left"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Simon
Fraser University</font></font></p>
</td>
</tr>
</table>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm; text-decoration: none; page-break-before: always">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Committee
Service:</b></font></font></font></p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Local</b></font></font></p>
<table width="662" cellpadding="7" cellspacing="0">
<col width="113"/>
<col width="268"/>
<col width="239"/>
<tr valign="top">
<td width="113" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2022-2024</font></font></p>
</td>
<td width="268" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Lead,
Pharmacoequity Team</font></font></p>
</td>
<td width="239" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Brigham
and Women’s Hospital</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="113" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2023-2024</font></font></p>
</td>
<td width="268" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><span style="font-weight: normal">Member,
Department of Medicine’s Health Equity Innovation Pilot
Program Learning Community.</span></font></font></p>
</td>
<td width="239" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Brigham
and Women’s Hospital</font></font></p>
</td>
</tr>
</table>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>National
</b></font></font>
</p>
<table width="662" cellpadding="7" cellspacing="0">
<col width="113"/>
<col width="262"/>
<col width="245"/>
<tr valign="top">
<td width="113" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2015-2016</font></font></p>
</td>
<td width="262" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Judge,
National Student Conference</font></font></p>
</td>
<td width="245" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Canadian
Society for Epidemiology and Biostatistics</font></font></p>
</td>
</tr>
</table>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>International</b></font></font></p>
<table width="662" cellpadding="7" cellspacing="0">
<col width="113"/>
<col width="262"/>
<col width="245"/>
<tr valign="top">
<td width="113" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2018-2023</font></font></p>
</td>
<td width="262" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Member,
TB and Mental Health Working Group</font></font></p>
</td>
<td width="245" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">International
Union Against TB and Lung Disease</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="113" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2022-2024</font></font></p>
</td>
<td width="262" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Member,
Abstract Committee</font></font></p>
</td>
<td width="245" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">International
Union Against TB and Lung Disease-North America Region</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="113" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2021-2023</font></font></p>
</td>
<td width="262" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Chair,
Global Indigenous Stop TB Initiative</font></font></p>
</td>
<td width="245" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">International
Union Against TB and Lung Disease</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="113" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><span style="font-weight: normal">2023-2024</span></font></font></p>
</td>
<td width="262" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Member,
Health Equity Special Interest Group</font></font></p>
</td>
<td width="245" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><span style="font-weight: normal">International
Society for</span> <span style="font-weight: normal">Pharmacoepidemiology</span></font></font></p>
</td>
</tr>
<tr valign="top">
<td width="113" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2022-2024</font></font></p>
</td>
<td width="262" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Member,
Abstract Committee</font></font></p>
</td>
<td width="245" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">International
Union Against TB and Lung Disease-North America Region</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="113" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2024</font></font></p>
</td>
<td width="262" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><span style="font-weight: normal">Abstract
reviewer, 40</span><sup><span style="font-weight: normal">th</span></sup>
<span style="font-weight: normal">International Conference on
Pharmacoepidemiology</span></font></font></p>
</td>
<td width="245" style="border: none; padding: 0cm"><p align="left" style="orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><span style="font-weight: normal">tInternational
Society for</span> <span style="font-weight: normal">Pharmacoepidemiology</span></font></font></p>
</td>
</tr>
</table>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Professional
Societies</b></font></font></p>
<table width="100%" cellpadding="7" cellspacing="0">
<col width="51*"/>
<col width="205*"/>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2011-2012</font></font></p>
</td>
<td width="80%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Canadian
Association of Health Services and Policy Research</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2012-2016</font></font></p>
</td>
<td width="80%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Canadian
Society for Epidemiology and Biostatistics</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2012-</font></font></p>
</td>
<td width="80%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">International
Union Against Tuberculosis and Lung Disease</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="20%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2023-</font></font></p>
</td>
<td width="80%" style="background: transparent; border: none; padding: 0cm"><p align="left">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">International
Society of Pharmacoepidemiology</font></font></p>
</td>
</tr>
</table>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Editorial
Activities:</b></font></font></font></p>
<ul>
<li><p align="left" style="line-height: 100%; margin-bottom: 0cm"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Ad
hoc Reviewer</b></font></font></p>
</ul>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><i>American
Journal of Public Health; BMJ Open; Canadian Journal of Public Health
(x4); Clinical Infectious Disease; Cochrane; Critical Public Health;
Global Public Health; Injury Epidemiology (x2); Injury Prevention;
International Journal of Tuberculosis and Lung Disease (x2); Journal
of General Internal Medicine (x2); Open Forum in Infectious Disease;
PLoS One (x2); Postgraduate Medicine; Risk Management and Healthcare
Policy; Tropical Medicine and International Health; Virology;
Virulence.</i></font></font></font></p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm"><br/>
</p>
<p align="left" style="line-height: 100%; margin-bottom: 0cm; page-break-before: always">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt"><b>Honors
and Prizes:</b></font></font></p>
<table width="662" cellpadding="7" cellspacing="0">
<col width="88"/>
<col width="220"/>
<col width="213"/>
<col width="85"/>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2006</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Student
of Distinction</font></font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Winnipeg</font></font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Grade
point average</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2007</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Academic
Proficiency Scholarship</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Winnipeg</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Grade
point average</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2007</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Academic
Proficiency Scholarship</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Winnipeg</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Grade
point average</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2007</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">United
College Class of ’50 Reunion Scholarship</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Winnipeg</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Competitive</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2007</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Manitoba
Millennium Scholarship</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Province
of Manitoba</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Grade
point average</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2007</font></font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Student
of Highest Distinction</font></font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Winnipeg</font></font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Grade
point average</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2008</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Student
of Distinction</font></font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="orphans: 0; widows: 0">
<font color="#000000"><font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Winnipeg</font></font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Grade
point average</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2010</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Health
Services and Policy Research Studentship</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Western
Regional Training Centre</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Competitive</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2010</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Network
Environment for Aboriginal Health Research Fellowship.</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Faculty
of Medicine, University of Manitoba</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Competitive</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2011-2012</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">University
of Manitoba Graduate Fellowship</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Manitoba
Health Research Council.</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Competitive</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2012</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Summer
Program in Data Analysis Travel Award</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">York
University</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Competitive</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2012</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">National
Student Conference Travel Award</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Canadian
Society of Epidemiology and Biostatistics</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Competitive</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2012</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">North
America Region, 16th Annual Conference Travel Award</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">International
Union Against Tuberculosis and Lung Disease</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Competitive</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2017-2018</font></font></p>
</td>
<td width="220" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Graduate
Student Initiative Award</font></font></p>
</td>
<td width="213" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">UBC
Faculty of Medicine</font></font></p>
</td>
<td width="85" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2; text-decoration: none">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">Competitive</font></font></p>
</td>
</tr>
<tr valign="top">
<td width="88" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal; orphans: 2; widows: 2">
<font face="Liberation Serif, serif"><font size="3" style="font-size: 12pt">2021</font></font></p>