-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPython-LaTex-IPA.tex
3175 lines (3164 loc) · 321 KB
/
Python-LaTex-IPA.tex
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
\documentclass[10pt,a4paper]{article}
\usepackage[a4paper, margin=.75in]{geometry}
\usepackage{multicol}
\usepackage{hyperref}
% For IPA
\usepackage{tipa}
\usepackage{phonetic}
\usepackage{semtrans}
\usepackage{upgreek}
\usepackage{textcomp}
\title{\textbf{Python-\LaTeX-IPA}}
\author{Muhammad Yaseen Khan}
\date{Center for Language Computing\\Department of Computer Science\\ Mohammad Ali Jinnah University, Karachi\\\ \\
yaseen.khan@jinnah.edu}
\begin{document}
\maketitle
\section{Introduction}
If you have ever considered looking up a dictionary, regardless of it is type: paper dictionary or online, you came up with some special characters appearing beside the word (for example word: excellent, \textbackslash\textprimstress ek-s(\textschwa-)l\textschwa nt\textbackslash). These special characters (i.e., enclosed in obliques) are the International Phonetic Alphabets (IPA), which corresponds to a sound for each letter. Thus, with the help of the IPA sequence, you can identify the correct pronunciation of the word.
It is a very tedious task for the researchers and authors of scientific papers with LaTex typesetting to write IPAs for the words which are not in the English language. In this regard, \texttt{Python-LaTex-IPA} helps them to generate the (almost) correct LaTex commands to produce IPA.
\section{Availibility}
The code is shared online at github repository:\texttt{ \hyperref[https://github.com/MuhammadYaseenKhan/Python-LaTex-IPA]{https://github.com/MuhammadYaseenKhan/Python-LaTex-IPA}}
\section{Results}
This section shows the results of Longman's list of English words which are widely used in daily usage. We extracted all of the words, then scrap their IPA via Merriam-Wbster online dictionary.
\begin{multicols}{2}
\noindent\textbf{CD }\quad \textbackslash \textsecstress s\={e}-\textprimstress d\={e}\textbackslash \\
\textbf{ DVD }\quad \textbackslash \textsecstress d\={e}-(\textsecstress )v\={e}-\textprimstress d\={e}\textbackslash \\
\textbf{ I }\quad \textbackslash \textprimstress \={i}\textbackslash \\
\textbf{ OK }\quad \textbackslash \={o}-\textprimstress k\={a}\ ,\ in\ assenting\ or\ agreeing\ also\ \textprimstress \={o}-\textsecstress k\={a}\textbackslash \\
\textbf{ TV }\quad \textbackslash \textprimstress t\={e}-\textprimstress v\={e}\textbackslash \\
\textbf{ a }\quad \textbackslash \textprimstress \={a}\textbackslash \\
\textbf{ abandon }\quad \ \textbackslash \textschwa -\textprimstress ban-d\textschwa n\textbackslash \\
\textbf{ ability }\quad \ \textbackslash \textschwa -\textprimstress bi-l\textschwa -t\={e}\textbackslash \\
\textbf{ able }\quad \textbackslash \textprimstress \={a}-b\textschwa l\textbackslash \\
\textbf{ about }\quad \textbackslash \textschwa -\textprimstress bau\. t\textbackslash \\
\textbf{ above }\quad \textbackslash \textschwa -\textprimstress b\textschwa v\textbackslash \\
\textbf{ abroad }\quad \textbackslash \textschwa -\textprimstress br\.{o}d\textbackslash \\
\textbf{ absence }\quad \ \textbackslash \textprimstress ab-s\textschwa n(t)s\textbackslash \\
\textbf{ absolute }\quad \ \textbackslash \textprimstress ab-s\textschwa -\textsecstress l\"{u}t\ ,\ \textsecstress ab-s\textschwa -\textprimstress l\"{u}t\textbackslash \\
\textbf{ absolutely }\quad \ \textbackslash \textprimstress ab-s\textschwa -\textsecstress l\"{u}t-l\={e}\ ,\ \textsecstress ab-s\textschwa -\textprimstress l\"{u}t-\textbackslash \\
\textbf{ absorb }\quad \ \textbackslash \textschwa b-\textprimstress s\.{o}rb\ ,\ -\textprimstress z\.{o}rb\textbackslash \\
\textbf{ abuse }\quad \textbackslash \textschwa -\textprimstress by\"{u}s\textbackslash \\
\textbf{ academic }\quad \ \textbackslash \textsecstress a-k\textschwa -\textprimstress de-mik\textbackslash \\
\textbf{ accept }\quad \ \textbackslash ik-\textprimstress sept\ ,\ ak-\ also\ ek-\textbackslash \\
\textbf{ acceptable }\quad \ \textbackslash ik-\textprimstress sep-t\textschwa -b\textschwa l\ ,\ ak-\ also\ ek-\textbackslash \\
\textbf{ access }\quad \ \textbackslash \textprimstress ak-\textsecstress ses\ \ also\ ik-\textprimstress ses\textbackslash \\
\textbf{ accident }\quad \ \textbackslash \textprimstress ak-s\textschwa -d\textschwa nt\ ,\ -\textsecstress dent\ ,\ \textprimstress aks-d\textschwa nt\textbackslash \\
\textbf{ accommodation }\quad \ \textbackslash \textschwa -\textsecstress k\"{a}-m\textschwa -\textprimstress d\={a}-sh\textschwa n\textbackslash \\
\textbf{ accompany }\quad \ \textbackslash \textschwa -\textprimstress k\textschwa mp-n\={e}\ ,\ -\textprimstress k\"{a}mp-;\ -\textprimstress k\textschwa m-p\textschwa -,\ -\textprimstress k\"{a}m-\textbackslash \\
\textbf{ according }\quad \ \textbackslash \textschwa -\textprimstress k\.{o}rd\textbackslash \\
\textbf{ account }\quad \ \textbackslash \textschwa -\textprimstress kau\. nt\textbackslash \\
\textbf{ accurate }\quad \ \textbackslash \textprimstress a-ky\textschwa -r\textschwa t\ ,\ \textprimstress a-k(\textschwa -)r\textschwa t\textbackslash \\
\textbf{ accuse }\quad \ \textbackslash \textschwa -\textprimstress ky\"{u}z\textbackslash \\
\textbf{ achieve }\quad \textbackslash \textschwa -\textprimstress ch\={e}v\textbackslash \\
\textbf{ achievement }\quad \ \textbackslash \textschwa -\textprimstress ch\={e}v-m\textschwa nt\textbackslash \\
\textbf{ acid }\quad \textbackslash \textprimstress a-s\textschwa d\textbackslash \\
\textbf{ acknowledge }\quad \ \textbackslash ik-\textprimstress n\"{a}-lij\ ,\ ak-\textbackslash \\
\textbf{ acquire }\quad \ \textbackslash \textschwa -\textprimstress kw\={i}(-\textschwa )r\textbackslash \\
\textbf{ across }\quad \textbackslash \textschwa -\textprimstress kr\.{o}s\ ,\ chiefly\ dialectal\ -\textprimstress kr\.{o}st\textbackslash \\
\textbf{ act }\quad \textbackslash \textprimstress akt\textbackslash \\
\textbf{ action }\quad \ \textbackslash \textprimstress ak-sh\textschwa n\textbackslash \\
\textbf{ active }\quad \ \textbackslash \textprimstress ak-tiv\textbackslash \\
\textbf{ activist }\quad \ \textbackslash \textprimstress ak-ti-vist\textbackslash \\
\textbf{ activity }\quad \ \textbackslash ak-\textprimstress ti-v\textschwa -t\={e}\textbackslash \\
\textbf{ actor }\quad \ \textbackslash \textprimstress ak-t\textschwa r\ \ also\ -\textsecstress t\.{o}r\textbackslash \\
\textbf{ actual }\quad \ \textbackslash \textprimstress ak-ch(\textschwa -w)\textschwa l\ ,\ -sh(\textschwa -w)\textschwa l;\ -ch\"{u}-\textschwa l,\ -sh\"{u}-\textbackslash \\
\textbf{ actually }\quad \ \textbackslash \textprimstress ak-ch(\textschwa -w)\textschwa -l\={e}\ ,\ -sh(\textschwa -w)\textschwa -l\={e};\ \textprimstress aksh-l\={e},\ \textprimstress aks-\textbackslash \\
\textbf{ ad }\quad \textbackslash \textprimstress ad\textbackslash \\
\textbf{ adapt }\quad \textbackslash \textschwa -\textprimstress dapt\ ,\ a-\textbackslash \\
\textbf{ add }\quad \textbackslash \textprimstress ad\textbackslash \\
\textbf{ addition }\quad \ \textbackslash \textschwa -\textprimstress di-sh\textschwa n\ ,\ a-\textbackslash \\
\textbf{ additional }\quad \ \textbackslash \textschwa -\textprimstress dish-n\textschwa l\ ,\ -\textprimstress di-sh\textschwa -n\textsuperscript{\textreve}l,\ a-\textbackslash \\
\textbf{ address }\quad \ \textbackslash \textschwa -\textprimstress dres\ ,\ a-\ also\ \textprimstress a-\textsecstress dres\textbackslash \\
\textbf{ adequate }\quad \ \textbackslash \textprimstress a-di-kw\textschwa t\textbackslash \\
\textbf{ adjust }\quad \ \textbackslash \textschwa -\textprimstress j\textschwa st\textbackslash \\
\textbf{ administration }\quad \ \textbackslash \textschwa d-\textsecstress mi-n\textschwa -\textprimstress str\={a}-sh\textschwa n\ ,\ (\textsecstress )ad-\textbackslash \\
\textbf{ administrative }\quad \ \textbackslash \textschwa d-\textprimstress mi-n\textschwa -\textsecstress str\={a}-tiv\ ,\ -str\textschwa -\textbackslash \\
\textbf{ admire }\quad \ \textbackslash \textschwa d-\textprimstress m\={i}(-\textschwa )r\textbackslash \\
\textbf{ admission }\quad \ \textbackslash \textschwa d-\textprimstress mi-sh\textschwa n\ ,\ ad-\textbackslash \\
\textbf{ admit }\quad \ \textbackslash \textschwa d-\textprimstress mit\ ,\ ad-\textbackslash \\
\textbf{ adopt }\quad \textbackslash \textschwa -\textprimstress d\"{a}pt\textbackslash \\
\textbf{ adult }\quad \textbackslash \textschwa -\textprimstress d\textschwa lt\ ,\ \textprimstress a-\textsecstress d\textschwa lt\textbackslash \\
\textbf{ advance }\quad \ \textbackslash \textschwa d-\textprimstress van(t)s\textbackslash \\
\textbf{ advanced }\quad \ \textbackslash \textschwa d-\textprimstress van(t)st\textbackslash \\
\textbf{ advantage }\quad \ \textbackslash \textschwa d-\textprimstress van-tij\textbackslash \\
\textbf{ advert }\quad \ \textbackslash ad-\textprimstress v\textschwa rt\textbackslash \\
\textbf{ advertise }\quad \ \textbackslash \textprimstress ad-v\textschwa r-\textsecstress t\={i}z\textbackslash \\
\textbf{ advertisement }\quad \ \textbackslash \textsecstress ad-v\textschwa r-\textprimstress t\={i}z-m\textschwa nt\ ;\ \textschwa d-\textprimstress v\textschwa r-t\textschwa z-m\textschwa nt,\ -t\textschwa -sm\textschwa nt\textbackslash \\
\textbf{ advertising }\quad \ \textbackslash \textprimstress ad-v\textschwa r-\textsecstress t\={i}-zi\engma \textbackslash \\
\textbf{ advice }\quad \ \textbackslash \textschwa d-\textprimstress v\={i}s\textbackslash \\
\textbf{ advise }\quad \ \textbackslash \textschwa d-\textprimstress v\={i}z\textbackslash \\
\textbf{ adviser }\quad \ \textbackslash \textschwa d-\textprimstress v\={i}-z\textschwa r\textbackslash \\
\textbf{ affair }\quad \ \textbackslash \textschwa -\textprimstress fer\textbackslash \\
\textbf{ affect }\quad \ \textbackslash \textschwa -\textprimstress fekt\ ,\ a-\textbackslash \\
\textbf{ afford }\quad \ \textbackslash \textschwa -\textprimstress f\.{o}rd\textbackslash \\
\textbf{ afraid }\quad \textbackslash \textschwa -\textprimstress fr\={a}d\ ,\ Southern\ also\ \textschwa -\textprimstress fred\textbackslash \\
\textbf{ after }\quad \ \textbackslash \textprimstress af-t\textschwa r\textbackslash \\
\textbf{ afternoon }\quad \ \textbackslash \textsecstress af-t\textschwa r-\textprimstress n\"{u}n\textbackslash \\
\textbf{ afterwards }\quad \ \textbackslash \textprimstress af-t\textschwa r-w\textschwa rd\ ,\ \textprimstress af-t\textschwa -\textbackslash \\
\textbf{ again }\quad \textbackslash \textschwa -\textprimstress gen\ ,\ -\textprimstress gin,\ -\textprimstress g\={a}n\textbackslash \\
\textbf{ against }\quad \textbackslash \textschwa -\textprimstress gen(t)st\ ,\ -\textprimstress gin(t)st,\ -\textprimstress g\={a}n(t)st\textbackslash \\
\textbf{ age }\quad \textbackslash \textprimstress \={a}j\textbackslash \\
\textbf{ aged }\quad \textbackslash \textprimstress \={a}-j\textschwa d\ ,\ \textprimstress \={a}jd;\ \textprimstress \={a}jd\ for\ sense\ 1b\textbackslash \\
\textbf{ agency }\quad \ \textbackslash \textprimstress \={a}-j\textschwa n(t)-s\={e}\textbackslash \\
\textbf{ agent }\quad \textbackslash \textprimstress \={a}-j\textschwa nt\textbackslash \\
\textbf{ aggressive }\quad \ \textbackslash \textschwa -\textprimstress gre-siv\textbackslash \\
\textbf{ ago }\quad \textbackslash \textschwa -\textprimstress g\={o}\textbackslash \\
\textbf{ agree }\quad \textbackslash \textschwa -\textprimstress gr\={e}\textbackslash \\
\textbf{ agreement }\quad \ \textbackslash \textschwa -\textprimstress gr\={e}-m\textschwa nt\textbackslash \\
\textbf{ agriculture }\quad \ \textbackslash \textprimstress a-gri-\textsecstress k\textschwa l-ch\textschwa r\textbackslash \\
\textbf{ ahead }\quad \textbackslash \textschwa -\textprimstress hed\textbackslash \\
\textbf{ aid }\quad \textbackslash \textprimstress \={a}d\textbackslash \\
\textbf{ aim }\quad \textbackslash \textprimstress \={a}m\textbackslash \\
\textbf{ air }\quad \textbackslash \textprimstress er\textbackslash \\
\textbf{ aircraft }\quad \ \textbackslash \textprimstress er-\textsecstress kraft\textbackslash \\
\textbf{ airline }\quad \ \textbackslash \textprimstress er-\textsecstress l\={i}n\textbackslash \\
\textbf{ airport }\quad \ \textbackslash \textprimstress er-\textsecstress p\.{o}rt\textbackslash \\
\textbf{ alarm }\quad \textbackslash \textschwa -\textprimstress l\"{a}rm\textbackslash \\
\textbf{ album }\quad \ \textbackslash \textprimstress al-b\textschwa m\textbackslash \\
\textbf{ alcohol }\quad \ \textbackslash \textprimstress al-k\textschwa -\textsecstress h\.{o}l\textbackslash \\
\textbf{ alive }\quad \textbackslash \textschwa -\textprimstress l\={i}v\textbackslash \\
\textbf{ all }\quad \textbackslash \textprimstress \.{o}l\textbackslash \\
\textbf{ allow }\quad \ \textbackslash \textschwa -\textprimstress lau\. \textbackslash \\
\textbf{ allowance }\quad \ \textbackslash \textschwa -\textprimstress lau\. -\textschwa n(t)s\textbackslash \\
\textbf{ almost }\quad \ \textbackslash \textprimstress \.{o}l-\textsecstress m\={o}st\ ,\ \.{o}l-\textprimstress m\={o}st\textbackslash \\
\textbf{ alone }\quad \textbackslash \textschwa -\textprimstress l\={o}n\textbackslash \\
\textbf{ along }\quad \textbackslash \textschwa -\textprimstress l\.{o}\engma \textbackslash \\
\textbf{ alongside }\quad \ \textbackslash \textschwa -\textprimstress l\.{o}\engma -\textprimstress s\={i}d\textbackslash \\
\textbf{ already }\quad \ \textbackslash \.{o}l-\textprimstress re-d\={e}\ ,\ \textprimstress \.{o}l-\textsecstress re-d\={e}\textbackslash \\
\textbf{ also }\quad \ \textbackslash \textprimstress \.{o}l(t)-(\textsecstress )s\={o}\ ,\ \textprimstress \.{o}-\textbackslash \\
\textbf{ alter }\quad \ \textbackslash \textprimstress \.{o}l-t\textschwa r\textbackslash \\
\textbf{ alternative }\quad \ \textbackslash \.{o}l-\textprimstress t\textschwa r-n\textschwa -tiv\ ,\ al-\textbackslash \\
\textbf{ although }\quad \ \textbackslash \.{o}l-\textprimstress h\={o}\textbackslash \\
\textbf{ altogether }\quad \ \textbackslash \textsecstress \.{o}l-t\textschwa -\textprimstress ge- h\textschwa r\textbackslash \\
\textbf{ always }\quad \ \textbackslash \textprimstress \.{o}l-w\={e}z\ ,\ -w\textschwa z,\ -(\textsecstress )w\={a}z\ \ also\ \textprimstress \.{o}-\textbackslash \\
\textbf{ amazing }\quad \ \textbackslash \textschwa -\textprimstress m\={a}-zi\engma \textbackslash \\
\textbf{ ambition }\quad \ \textbackslash am-\textprimstress bi-sh\textschwa n\textbackslash \\
\textbf{ ambulance }\quad \ \textbackslash \textprimstress am-by\textschwa -l\textschwa n(t)s\ ,\ -b\textschwa -\ also\ -\textsecstress lan(t)s\textbackslash \\
\textbf{ among }\quad \textbackslash \textschwa -\textprimstress m\textschwa \engma \textbackslash \\
\textbf{ amount }\quad \textbackslash \textschwa -\textprimstress mau\. nt\textbackslash \\
\textbf{ an }\quad \textbackslash \textschwa n,\ (\textprimstress )an\textbackslash \\
\textbf{ an }\quad \textbackslash \textschwa n,\ (\textprimstress )an\textbackslash \\
\textbf{ analysis }\quad \ \textbackslash \textschwa -\textprimstress na-l\textschwa -s\textschwa s\textbackslash \\
\textbf{ analyst }\quad \ \textbackslash \textprimstress a-n\textschwa -l\textschwa st\textbackslash \\
\textbf{ ancient }\quad \ \textbackslash \textprimstress \={a}n(t)-sh\textschwa nt\ ,\ \textprimstress \={a}\engma (k)-sh\textschwa nt\textbackslash \\
\textbf{ and }\quad \textbackslash \textschwa n(d),\ (\textprimstress )an(d)\ ,\ usually\ \textsuperscript{\textreve}n(d),\ after\ t,\ d\ ,\ s\ or\ z;\ often\ \textsuperscript{\textreve}m,\ after\ p\ or\ b;\ sometimes\ \textsuperscript{\textreve}\engma ,\ after\ k\ or\ g\textbackslash \\
\textbf{ anger }\quad \ \textbackslash \textprimstress a\engma -g\textschwa r\textbackslash \\
\textbf{ angle }\quad \ \textbackslash \textprimstress a\engma -g\textschwa l\textbackslash \\
\textbf{ angry }\quad \ \textbackslash \textprimstress a\engma -gr\={e}\textbackslash \\
\textbf{ animal }\quad \ \textbackslash \textprimstress a-n\textschwa -m\textschwa l\textbackslash \\
\textbf{ announce }\quad \ \textbackslash \textschwa -\textprimstress nau\. n(t)s\textbackslash \\
\textbf{ announcement }\quad \ \textbackslash \textschwa -\textprimstress nau\. n(t)-sm\textschwa nt\textbackslash \\
\textbf{ annoy }\quad \ \textbackslash \textschwa -\textprimstress n\.{o}i\textbackslash \\
\textbf{ annual }\quad \ \textbackslash \textprimstress an-y\textschwa (-w\textschwa )l\ ,\ -y\"{u}-\textschwa l\textbackslash \\
\textbf{ another }\quad \ \textbackslash \textschwa -\textprimstress n\textschwa - h\textschwa r\ \ also\ a-\ or\ \={a}-\textbackslash \\
\textbf{ answer }\quad \ \textbackslash \textprimstress an(t)-s\textschwa r\textbackslash \\
\textbf{ anticipate }\quad \ \textbackslash an-\textprimstress ti-s\textschwa -\textsecstress p\={a}t\textbackslash \\
\textbf{ anxiety }\quad \ \textbackslash a\engma -\textprimstress z\={i}-\textschwa -t\={e}\textbackslash \\
\textbf{ anxious }\quad \ \textbackslash \textprimstress a\engma (k)-sh\textschwa s\textbackslash \\
\textbf{ any }\quad \textbackslash \textprimstress e-n\={e}\textbackslash \\
\textbf{ anybody }\quad \ \textbackslash \textprimstress e-n\={e}-(\textsecstress )b\textschwa -d\={e}\ ,\ -\textsecstress b\"{a}-\textbackslash \\
\textbf{ anyhow }\quad \ \textbackslash \textprimstress e-n\={e}-\textsecstress hau\. \textbackslash \\
\textbf{ anyone }\quad \ \textbackslash \textprimstress e-n\={e}-(\textsecstress )w\textschwa n\textbackslash \\
\textbf{ anything }\quad \ \textbackslash \textprimstress e-n\={e}-\textsecstress thi\engma \textbackslash \\
\textbf{ anyway }\quad \ \textbackslash \textprimstress e-n\={e}-\textsecstress w\={a}\textbackslash \\
\textbf{ anywhere }\quad \ \textbackslash \textprimstress e-n\={e}-\textsecstress (h)wer\ ,\ -(h)w\textschwa r\textbackslash \\
\textbf{ apart }\quad \textbackslash \textschwa -\textprimstress p\"{a}rt\textbackslash \\
\textbf{ apartment }\quad \ \textbackslash \textschwa -\textprimstress p\"{a}rt-m\textschwa nt\textbackslash \\
\textbf{ apologize }\quad \ \textbackslash \textschwa -\textprimstress p\"{a}-l\textschwa -\textsecstress j\={i}z\textbackslash \\
\textbf{ apology }\quad \ \textbackslash \textschwa -\textprimstress p\"{a}-l\textschwa -j\={e}\textbackslash \\
\textbf{ apparent }\quad \ \textbackslash \textschwa -\textprimstress per-\textschwa nt\ ,\ -\textprimstress pa-r\textschwa nt\textbackslash \\
\textbf{ apparently }\quad \ \textbackslash \textschwa -\textprimstress per-\textschwa nt-l\={e}\ ,\ -\textprimstress pa-r\textschwa nt\textbackslash \\
\textbf{ appeal }\quad \ \textbackslash \textschwa -\textprimstress p\={e}l\textbackslash \\
\textbf{ appear }\quad \ \textbackslash \textschwa -\textprimstress pir\textbackslash \\
\textbf{ appearance }\quad \ \textbackslash \textschwa -\textprimstress pir-\textschwa n(t)s\textbackslash \\
\textbf{ apple }\quad \ \textbackslash \textprimstress a-p\textschwa l\textbackslash \\
\textbf{ application }\quad \ \textbackslash \textsecstress a-pl\textschwa -\textprimstress k\={a}-sh\textschwa n\textbackslash \\
\textbf{ apply }\quad \ \textbackslash \textschwa -\textprimstress pl\={i}\textbackslash \\
\textbf{ appoint }\quad \ \textbackslash \textschwa -\textprimstress p\.{o}int\textbackslash \\
\textbf{ appointment }\quad \ \textbackslash \textschwa -\textprimstress p\.{o}int-m\textschwa nt\textbackslash \\
\textbf{ appreciate }\quad \ \textbackslash \textschwa -\textprimstress pr\={e}-sh\={e}-\textsecstress \={a}t\ ,\ -\textprimstress pri-\ \ also\ -\textprimstress pr\={e}-s\={e}-\textbackslash \\
\textbf{ approach }\quad \ \textbackslash \textschwa -\textprimstress pr\={o}ch\textbackslash \\
\textbf{ appropriate }\quad \ \textbackslash \textschwa -\textprimstress pr\={o}-pr\={e}-\textschwa t\textbackslash \\
\textbf{ approval }\quad \ \textbackslash \textschwa -\textprimstress pr\"{u}-v\textschwa l\textbackslash \\
\textbf{ approve }\quad \ \textbackslash \textschwa -\textprimstress pr\"{u}v\textbackslash \\
\textbf{ an }\quad \textbackslash \textschwa n,\ (\textprimstress )an\textbackslash \\
\textbf{ analysis }\quad \ \textbackslash \textschwa -\textprimstress na-l\textschwa -s\textschwa s\textbackslash \\
\textbf{ analyst }\quad \ \textbackslash \textprimstress a-n\textschwa -l\textschwa st\textbackslash \\
\textbf{ ancient }\quad \ \textbackslash \textprimstress \={a}n(t)-sh\textschwa nt\ ,\ \textprimstress \={a}\engma (k)-sh\textschwa nt\textbackslash \\
\textbf{ and }\quad \textbackslash \textschwa n(d),\ (\textprimstress )an(d)\ ,\ usually\ \textsuperscript{\textreve}n(d),\ after\ t,\ d\ ,\ s\ or\ z;\ often\ \textsuperscript{\textreve}m,\ after\ p\ or\ b;\ sometimes\ \textsuperscript{\textreve}\engma ,\ after\ k\ or\ g\textbackslash \\
\textbf{ anger }\quad \ \textbackslash \textprimstress a\engma -g\textschwa r\textbackslash \\
\textbf{ angle }\quad \ \textbackslash \textprimstress a\engma -g\textschwa l\textbackslash \\
\textbf{ angry }\quad \ \textbackslash \textprimstress a\engma -gr\={e}\textbackslash \\
\textbf{ animal }\quad \ \textbackslash \textprimstress a-n\textschwa -m\textschwa l\textbackslash \\
\textbf{ announce }\quad \ \textbackslash \textschwa -\textprimstress nau\. n(t)s\textbackslash \\
\textbf{ announcement }\quad \ \textbackslash \textschwa -\textprimstress nau\. n(t)-sm\textschwa nt\textbackslash \\
\textbf{ annoy }\quad \ \textbackslash \textschwa -\textprimstress n\.{o}i\textbackslash \\
\textbf{ annual }\quad \ \textbackslash \textprimstress an-y\textschwa (-w\textschwa )l\ ,\ -y\"{u}-\textschwa l\textbackslash \\
\textbf{ another }\quad \ \textbackslash \textschwa -\textprimstress n\textschwa - h\textschwa r\ \ also\ a-\ or\ \={a}-\textbackslash \\
\textbf{ answer }\quad \ \textbackslash \textprimstress an(t)-s\textschwa r\textbackslash \\
\textbf{ anticipate }\quad \ \textbackslash an-\textprimstress ti-s\textschwa -\textsecstress p\={a}t\textbackslash \\
\textbf{ anxiety }\quad \ \textbackslash a\engma -\textprimstress z\={i}-\textschwa -t\={e}\textbackslash \\
\textbf{ anxious }\quad \ \textbackslash \textprimstress a\engma (k)-sh\textschwa s\textbackslash \\
\textbf{ any }\quad \textbackslash \textprimstress e-n\={e}\textbackslash \\
\textbf{ anybody }\quad \ \textbackslash \textprimstress e-n\={e}-(\textsecstress )b\textschwa -d\={e}\ ,\ -\textsecstress b\"{a}-\textbackslash \\
\textbf{ anyhow }\quad \ \textbackslash \textprimstress e-n\={e}-\textsecstress hau\. \textbackslash \\
\textbf{ anyone }\quad \ \textbackslash \textprimstress e-n\={e}-(\textsecstress )w\textschwa n\textbackslash \\
\textbf{ anything }\quad \ \textbackslash \textprimstress e-n\={e}-\textsecstress thi\engma \textbackslash \\
\textbf{ anyway }\quad \ \textbackslash \textprimstress e-n\={e}-\textsecstress w\={a}\textbackslash \\
\textbf{ anywhere }\quad \ \textbackslash \textprimstress e-n\={e}-\textsecstress (h)wer\ ,\ -(h)w\textschwa r\textbackslash \\
\textbf{ apart }\quad \textbackslash \textschwa -\textprimstress p\"{a}rt\textbackslash \\
\textbf{ apartment }\quad \ \textbackslash \textschwa -\textprimstress p\"{a}rt-m\textschwa nt\textbackslash \\
\textbf{ apologize }\quad \ \textbackslash \textschwa -\textprimstress p\"{a}-l\textschwa -\textsecstress j\={i}z\textbackslash \\
\textbf{ apology }\quad \ \textbackslash \textschwa -\textprimstress p\"{a}-l\textschwa -j\={e}\textbackslash \\
\textbf{ apparent }\quad \ \textbackslash \textschwa -\textprimstress per-\textschwa nt\ ,\ -\textprimstress pa-r\textschwa nt\textbackslash \\
\textbf{ apparently }\quad \ \textbackslash \textschwa -\textprimstress per-\textschwa nt-l\={e}\ ,\ -\textprimstress pa-r\textschwa nt\textbackslash \\
\textbf{ appeal }\quad \ \textbackslash \textschwa -\textprimstress p\={e}l\textbackslash \\
\textbf{ appear }\quad \ \textbackslash \textschwa -\textprimstress pir\textbackslash \\
\textbf{ appearance }\quad \ \textbackslash \textschwa -\textprimstress pir-\textschwa n(t)s\textbackslash \\
\textbf{ apple }\quad \ \textbackslash \textprimstress a-p\textschwa l\textbackslash \\
\textbf{ application }\quad \ \textbackslash \textsecstress a-pl\textschwa -\textprimstress k\={a}-sh\textschwa n\textbackslash \\
\textbf{ apply }\quad \ \textbackslash \textschwa -\textprimstress pl\={i}\textbackslash \\
\textbf{ appoint }\quad \ \textbackslash \textschwa -\textprimstress p\.{o}int\textbackslash \\
\textbf{ appointment }\quad \ \textbackslash \textschwa -\textprimstress p\.{o}int-m\textschwa nt\textbackslash \\
\textbf{ appreciate }\quad \ \textbackslash \textschwa -\textprimstress pr\={e}-sh\={e}-\textsecstress \={a}t\ ,\ -\textprimstress pri-\ \ also\ -\textprimstress pr\={e}-s\={e}-\textbackslash \\
\textbf{ approach }\quad \ \textbackslash \textschwa -\textprimstress pr\={o}ch\textbackslash \\
\textbf{ appropriate }\quad \ \textbackslash \textschwa -\textprimstress pr\={o}-pr\={e}-\textschwa t\textbackslash \\
\textbf{ approval }\quad \ \textbackslash \textschwa -\textprimstress pr\"{u}-v\textschwa l\textbackslash \\
\textbf{ approve }\quad \ \textbackslash \textschwa -\textprimstress pr\"{u}v\textbackslash \\
\textbf{ approximate }\quad \ \textbackslash \textschwa -\textprimstress pr\"{a}k-s\textschwa -m\textschwa t\textbackslash \\
\textbf{ architect }\quad \ \textbackslash \textprimstress \"{a}r-k\textschwa -\textsecstress tekt\textbackslash \\
\textbf{ architecture }\quad \ \textbackslash \textprimstress \"{a}r-k\textschwa -\textsecstress tek-ch\textschwa r\textbackslash \\
\textbf{ area }\quad \ \textbackslash \textprimstress er-\={e}-\textschwa \ ,\ \textprimstress \={a}-r\={e}-\textschwa \textbackslash \\
\textbf{ argue }\quad \ \textbackslash \textprimstress \"{a}r-(\textsecstress )gy\"{u}\textbackslash \\
\textbf{ argument }\quad \ \textbackslash \textprimstress \"{a}r-gy\textschwa -m\textschwa nt\textbackslash \\
\textbf{ arise }\quad \textbackslash \textschwa -\textprimstress r\={i}z\textbackslash \\
\textbf{ arm }\quad \textbackslash \textprimstress \"{a}rm\textbackslash \\
\textbf{ armed }\quad \textbackslash \textprimstress \"{a}rmd\textbackslash \\
\textbf{ army }\quad \ \textbackslash \textprimstress \"{a}r-m\={e}\textbackslash \\
\textbf{ around }\quad \textbackslash \textschwa -\textprimstress rau\. nd\textbackslash \\
\textbf{ arrange }\quad \ \textbackslash \textschwa -\textprimstress r\={a}nj\textbackslash \\
\textbf{ arrangement }\quad \ \textbackslash \textschwa -\textprimstress r\={a}nj-m\textschwa nt\textbackslash \\
\textbf{ arrest }\quad \ \textbackslash \textschwa -\textprimstress rest\textbackslash \\
\textbf{ arrival }\quad \ \textbackslash \textschwa -\textprimstress r\={i}-v\textschwa l\textbackslash \\
\textbf{ arrive }\quad \ \textbackslash \textschwa -\textprimstress r\={i}v\textbackslash \\
\textbf{ art }\quad \textbackslash \textprimstress \"{a}rt\textbackslash \\
\textbf{ article }\quad \ \textbackslash \textprimstress \"{a}r-ti-k\textschwa l\textbackslash \\
\textbf{ artificial }\quad \ \textbackslash \textsecstress \"{a}r-t\textschwa -\textprimstress fi-sh\textsuperscript{\textreve}l\textbackslash \\
\textbf{ artist }\quad \ \textbackslash \textprimstress \"{a}r-tist\textbackslash \\
\textbf{ as }\quad \textbackslash \textschwa z,\ (\textsecstress )az\textbackslash \\
\textbf{ ashamed }\quad \textbackslash \textschwa -\textprimstress sh\={a}md\textbackslash \\
\textbf{ aside }\quad \textbackslash \textschwa -\textprimstress s\={i}d\textbackslash \\
\textbf{ ask }\quad \textbackslash \textprimstress ask\ ,\ \textprimstress \"{a}sk\ ;\ dialectal\ \textprimstress aks\textbackslash \\
\textbf{ asleep }\quad \textbackslash \textschwa -\textprimstress sl\={e}p\textbackslash \\
\textbf{ aspect }\quad \ \textbackslash \textprimstress a-\textsecstress spekt\textbackslash \\
\textbf{ assess }\quad \ \textbackslash \textschwa -\textprimstress ses\ ,\ a-\textbackslash \\
\textbf{ assessment }\quad \ \textbackslash \textschwa -\textprimstress ses-m\textschwa nt\ ,\ a-\textbackslash \\
\textbf{ assignment }\quad \ \textbackslash \textschwa -\textprimstress s\={i}n-m\textschwa nt\textbackslash \\
\textbf{ assist }\quad \ \textbackslash \textschwa -\textprimstress sist\textbackslash \\
\textbf{ assistance }\quad \ \textbackslash \textschwa -\textprimstress si-st\textschwa n(t)s\textbackslash \\
\textbf{ assistant }\quad \ \textbackslash \textschwa -\textprimstress si-st\textschwa nt\textbackslash \\
\textbf{ associate }\quad \ \textbackslash \textschwa -\textprimstress s\={o}-sh\={e}-\textsecstress \={a}t\ ,\ -s\={e}-\textbackslash \\
\textbf{ association }\quad \ \textbackslash \textschwa -\textsecstress s\={o}-s\={e}-\textprimstress \={a}-sh\textschwa n\ ,\ -sh\={e}-\textbackslash \\
\textbf{ assume }\quad \ \textbackslash \textschwa -\textprimstress s\"{u}m\textbackslash \\
\textbf{ assumption }\quad \ \textbackslash \textschwa -\textprimstress s\textschwa m(p)-sh\textschwa n\textbackslash \\
\textbf{ assure }\quad \ \textbackslash \textschwa -\textprimstress shu\. r\textbackslash \\
\textbf{ at }\quad \textbackslash \textschwa t,\ \textprimstress at\textbackslash \\
\textbf{ atmosphere }\quad \ \textbackslash \textprimstress at-m\textschwa -\textsecstress sfir\textbackslash \\
\textbf{ attach }\quad \ \textbackslash \textschwa -\textprimstress tach\textbackslash \\
\textbf{ attack }\quad \ \textbackslash \textschwa -\textprimstress tak\textbackslash \\
\textbf{ attempt }\quad \ \textbackslash \textschwa -\textprimstress tem(p)t\textbackslash \\
\textbf{ attend }\quad \ \textbackslash \textschwa -\textprimstress tend\textbackslash \\
\textbf{ attention }\quad \ \textbackslash \textschwa -\textprimstress ten(t)-sh\textschwa n\ ,\ sense\ 4\ often\ (\textschwa -)\textsecstress ten(ch)-\textprimstress h\textschwa t\textbackslash \\
\textbf{ attitude }\quad \ \textbackslash \textprimstress a-t\textschwa -\textsecstress t\"{u}d\ ,\ -\textsecstress ty\"{u}d\textbackslash \\
\textbf{ attorney }\quad \ \textbackslash \textschwa -\textprimstress t\textschwa r-n\={e}\textbackslash \\
\textbf{ attract }\quad \ \textbackslash \textschwa -\textprimstress trakt\textbackslash \\
\textbf{ attraction }\quad \ \textbackslash \textschwa -\textprimstress trak-sh\textschwa n\textbackslash \\
\textbf{ attractive }\quad \ \textbackslash \textschwa -\textprimstress trak-tiv\textbackslash \\
\textbf{ audience }\quad \ \textbackslash \textprimstress \.{o}-d\={e}-\textschwa n(t)s\ ,\ \textprimstress \"{a}-\textbackslash \\
\textbf{ aunt }\quad \textbackslash \textprimstress ant\ ,\ \textprimstress \"{a}nt\textbackslash \\
\textbf{ author }\quad \ \textbackslash \textprimstress \.{o}-th\textschwa r\textbackslash \\
\textbf{ authority }\quad \ \textbackslash \textschwa -\textprimstress th\.{o}r-\textschwa -t\={e}\ ,\ \.{o}-,\ -\textprimstress th\"{a}r-\textbackslash \\
\textbf{ automatic }\quad \ \textbackslash \textsecstress \.{o}-t\textschwa -\textprimstress ma-tik\textbackslash \\
\textbf{ automatically }\quad \ \textbackslash \textsecstress \.{o}-t\textschwa -\textprimstress ma-tik\textbackslash \\
\textbf{ autumn }\quad \ \textbackslash \textprimstress \.{o}-t\textschwa m\textbackslash \\
\textbf{ available }\quad \ \textbackslash \textschwa -\textprimstress v\={a}-l\textschwa -b\textschwa l\textbackslash \\
\textbf{ average }\quad \ \textbackslash \textprimstress a-v(\textschwa -)rij\textbackslash \\
\textbf{ avoid }\quad \textbackslash \textschwa -\textprimstress v\.{o}id\textbackslash \\
\textbf{ awake }\quad \textbackslash \textschwa -\textprimstress w\={a}k\textbackslash \\
\textbf{ award }\quad \textbackslash \textschwa -\textprimstress w\.{o}rd\textbackslash \\
\textbf{ aware }\quad \textbackslash \textschwa -\textprimstress wer\textbackslash \\
\textbf{ awareness }\quad \ \textbackslash \textschwa -\textprimstress wer-n\textschwa s\textbackslash \\
\textbf{ away }\quad \textbackslash \textschwa -\textprimstress w\={a}\textbackslash \\
\textbf{ awful }\quad \ \textbackslash \textprimstress \.{o}-f\textschwa l\textbackslash \\
\textbf{ awkward }\quad \ \textbackslash \textprimstress \.{o}-kw\textschwa rd\textbackslash \\
\textbf{ baby }\quad \ \textbackslash \textprimstress b\={a}-b\={e}\textbackslash \\
\textbf{ back }\quad \textbackslash \textprimstress bak\textbackslash \\
\textbf{ background }\quad \ \textbackslash \textprimstress bak-\textsecstress (g)rau\. nd\textbackslash \\
\textbf{ backwards }\quad \ \textbackslash \textprimstress bak-w\textschwa rd\textbackslash \\
\textbf{ bacon }\quad \ \textbackslash \textprimstress b\={a}-k\textschwa n,\ sometimes\ -k\textsuperscript{\textreve}\engma \textbackslash \\
\textbf{ bad }\quad \textbackslash \textprimstress bad\textbackslash \\
\textbf{ badly }\quad \ \textbackslash \textprimstress bad-l\={e}\textbackslash \\
\textbf{ bag }\quad \textbackslash \textprimstress bag\ also\ \textprimstress b\={a}g\textbackslash \\
\textbf{ bake }\quad \textbackslash \textprimstress b\={a}k\textbackslash \\
\textbf{ balance }\quad \ \textbackslash \textprimstress ba-l\textschwa n(t)s\textbackslash \\
\textbf{ ball }\quad \textbackslash \textprimstress b\.{o}l\textbackslash \\
\textbf{ ban }\quad \textbackslash \textprimstress ban\textbackslash \\
\textbf{ band }\quad \textbackslash \textprimstress band\textbackslash \\
\textbf{ bang }\quad \textbackslash \textprimstress ba\engma \textbackslash \\
\textbf{ bank }\quad \textbackslash \textprimstress ba\engma k\textbackslash \\
\textbf{ bar }\quad \textbackslash \textprimstress b\"{a}r\textbackslash \\
\textbf{ barrier }\quad \ \textbackslash \textprimstress ber-\={e}-\textschwa r\ ,\ \textprimstress ba-r\={e}-\textbackslash \\
\textbf{ base }\quad \textbackslash \textprimstress b\={a}s\textbackslash \\
\textbf{ baseball }\quad \ \textbackslash \textprimstress b\={a}s-\textsecstress b\.{o}l\textbackslash \\
\textbf{ basic }\quad \ \textbackslash \textprimstress b\={a}-sik\ also\ -zik\textbackslash \\
\textbf{ basically }\quad \ \textbackslash \textprimstress b\={a}-si-k(\textschwa -)l\={e}\ also\ -zi-\textbackslash \\
\textbf{ basis }\quad \ \textbackslash \textprimstress b\={a}-s\textschwa s\textbackslash \\
\textbf{ basket }\quad \ \textbackslash \textprimstress ba-skit\ ,\ British\ also\ \textprimstress b\"{a}s-\textbackslash \\
\textbf{ bat }\quad \textbackslash \textprimstress bat\textbackslash \\
\textbf{ bath }\quad \textbackslash \textprimstress bath\ ,\ \textprimstress b\"{a}th\textbackslash \\
\textbf{ bathroom }\quad \ \textbackslash \textprimstress bath-\textsecstress r\"{u}m\ ,\ -\textsecstress ru\. m,\ \textprimstress b\"{a}th-\textbackslash \\
\textbf{ battery }\quad \ \textbackslash \textprimstress ba-t(\textschwa -)r\={e}\textbackslash \\
\textbf{ battle }\quad \ \textbackslash \textprimstress ba-t\textsuperscript{\textreve}l\textbackslash \\
\textbf{ be }\quad \textbackslash \textprimstress b\={e}\textbackslash \\
\textbf{ beach }\quad \textbackslash \textprimstress b\={e}ch\textbackslash \\
\textbf{ bean }\quad \textbackslash \textprimstress b\={e}n\textbackslash \\
\textbf{ bear }\quad \textbackslash \textprimstress ber\textbackslash \\
\textbf{ beard }\quad \textbackslash \textprimstress bird\textbackslash \\
\textbf{ beat }\quad \textbackslash \textprimstress b\={e}t\textbackslash \\
\textbf{ beautiful }\quad \ \textbackslash \textprimstress by\"{u}-ti-f\textschwa l\textbackslash \\
\textbf{ beauty }\quad \ \textbackslash \"{E}\textsuperscript{\pwedge}by\~{A}\textonequarter -t\"{A}\texttt{\textquotedbl}\textbackslash \\
\textbf{ because }\quad \ \textbackslash bi-\textprimstress k\.{o}z\ ,\ -\textprimstress k\textschwa z,\ -\textprimstress k\.{o}s,\ b\={e}-\textbackslash \\
\textbf{ become }\quad \ \textbackslash bi-\textprimstress k\textschwa m\ ,\ b\={e}-\textbackslash \\
\textbf{ bed }\quad \textbackslash \textprimstress bed\textbackslash \\
\textbf{ bedroom }\quad \ \textbackslash \textprimstress bed-\textsecstress r\"{u}m\ ,\ -\textsecstress ru\. m\textbackslash \\
\textbf{ beef }\quad \textbackslash \textprimstress b\={e}f\textbackslash \\
\textbf{ beer }\quad \textbackslash \textprimstress bir\textbackslash \\
\textbf{ before }\quad \ \textbackslash bi-\textprimstress f\.{o}r\ ,\ b\={e}-\textbackslash \\
\textbf{ beforehand }\quad \ \textbackslash bi-\textprimstress f\.{o}r-\textsecstress hand\ ,\ b\={e}-\textbackslash \\
\textbf{ begin }\quad \ \textbackslash bi-\textprimstress gin\ ,\ b\={e}-\textbackslash \\
\textbf{ beginning }\quad \ \textbackslash bi-\textprimstress gi-ni\engma \ ,\ b\={e}-\textbackslash \\
\textbf{ behalf }\quad \ \textbackslash bi-\textprimstress haf\ ,\ -\textprimstress h\"{a}f,\ b\={e}-\textbackslash \\
\textbf{ behave }\quad \ \textbackslash bi-\textprimstress h\={a}v\ ,\ b\={e}-\textbackslash \\
\textbf{ behind }\quad \ \textbackslash bi-\textprimstress h\={i}nd\ ,\ b\={e}-\textbackslash \\
\textbf{ being }\quad \ \textbackslash \textprimstress b\={e}(-i)\engma \textbackslash \\
\textbf{ belief }\quad \ \textbackslash b\textschwa -\textprimstress l\={e}f\textbackslash \\
\textbf{ believe }\quad \ \textbackslash b\textschwa -\textprimstress l\={e}v\textbackslash \\
\textbf{ bell }\quad \textbackslash \textprimstress bel\textbackslash \\
\textbf{ belong }\quad \ \textbackslash bi-\textprimstress l\.{o}\engma \ ,\ b\={e}-\textbackslash \\
\textbf{ below }\quad \ \textbackslash bi-\textprimstress l\={o}\textbackslash \\
\textbf{ belt }\quad \textbackslash \textprimstress belt\textbackslash \\
\textbf{ bench }\quad \textbackslash \textprimstress bench\textbackslash \\
\textbf{ bend }\quad \textbackslash \textprimstress bend\textbackslash \\
\textbf{ beneath }\quad \ \textbackslash bi-\textprimstress n\={e}th\ ,\ b\={e}-\textbackslash \\
\textbf{ benefit }\quad \ \textbackslash \textprimstress be-n\textschwa -\textsecstress fit\textbackslash \\
\textbf{ beside }\quad \ \textbackslash bi-\textprimstress s\={i}d\ ,\ b\={e}-\textbackslash \\
\textbf{ best }\quad \textbackslash \textprimstress best\textbackslash \\
\textbf{ bet }\quad \textbackslash \textprimstress bet\textbackslash \\
\textbf{ better }\quad \ \textbackslash \textprimstress be-t\textschwa r\textbackslash \\
\textbf{ between }\quad \ \textbackslash bi-\textprimstress tw\={e}n\ ,\ b\={e}-\textbackslash \\
\textbf{ beyond }\quad \ \textbackslash b\={e}-\textprimstress \"{a}nd\textbackslash \\
\textbf{ bicycle }\quad \ \textbackslash \textprimstress b\={i}-si-k\textschwa l\ ,\ -\textsecstress si-\ also\ -\textsecstress s\={i}-\textbackslash \\
\textbf{ bid }\quad \textbackslash \textprimstress bid\textbackslash \\
\textbf{ big }\quad \textbackslash \textprimstress big\textbackslash \\
\textbf{ bike }\quad \textbackslash \textprimstress b\={i}k\textbackslash \\
\textbf{ bill }\quad \textbackslash \textprimstress bil\textbackslash \\
\textbf{ bin }\quad \textbackslash \textprimstress bin\textbackslash \\
\textbf{ bird }\quad \textbackslash \textprimstress b\textschwa rd\textbackslash \\
\textbf{ birth }\quad \textbackslash \textprimstress b\textschwa rth\textbackslash \\
\textbf{ birthday }\quad \ \textbackslash \textprimstress b\textschwa rth-\textsecstress d\={a}\textbackslash \\
\textbf{ biscuit }\quad \ \textbackslash \textprimstress bi-sk\textschwa t\textbackslash \\
\textbf{ bit }\quad \textbackslash \textprimstress bit\textbackslash \\
\textbf{ bite }\quad \textbackslash \textprimstress b\={i}t\textbackslash \\
\textbf{ bitter }\quad \ \textbackslash \textprimstress bi-t\textschwa r\textbackslash \\
\textbf{ black }\quad \textbackslash \textprimstress blak\textbackslash \\
\textbf{ blade }\quad \textbackslash \textprimstress bl\={a}d\textbackslash \\
\textbf{ blame }\quad \textbackslash \textprimstress bl\={a}m\textbackslash \\
\textbf{ blank }\quad \textbackslash \textprimstress bla\engma k\textbackslash \\
\textbf{ bless }\quad \textbackslash \textprimstress bles\textbackslash \\
\textbf{ blind }\quad \textbackslash \textprimstress bl\={i}nd\textbackslash \\
\textbf{ block }\quad \textbackslash \textprimstress bl\"{a}k\textbackslash \\
\textbf{ bloke }\quad \textbackslash \textprimstress bl\={o}k\textbackslash \\
\textbf{ blonde }\quad \textbackslash \textprimstress bl\"{a}nd\textbackslash \\
\textbf{ blood }\quad \textbackslash \textprimstress bl\textschwa d\textbackslash \\
\textbf{ blow }\quad \textbackslash \textprimstress bl\={o}\textbackslash \\
\textbf{ blue }\quad \textbackslash \textprimstress bl\"{u}\textbackslash \\
\textbf{ board }\quad \textbackslash \textprimstress b\.{o}rd\textbackslash \\
\textbf{ boat }\quad \textbackslash \textprimstress b\={o}t\textbackslash \\
\textbf{ body }\quad \textbackslash \textprimstress b\"{a}-d\={e}\textbackslash \\
\textbf{ boil }\quad \textbackslash \textprimstress b\.{o}i(-\textschwa )l\textbackslash \\
\textbf{ boiler }\quad \ \textbackslash \textprimstress b\.{o}i-l\textschwa r\textbackslash \\
\textbf{ boiling }\quad \ \textbackslash \textprimstress b\.{o}i(-\textschwa )-li\engma \textbackslash \\
\textbf{ bomb }\quad \textbackslash \textprimstress b\"{a}m\textbackslash \\
\textbf{ bone }\quad \textbackslash \textprimstress b\={o}n\textbackslash \\
\textbf{ bonus }\quad \ \textbackslash \textprimstress b\={o}-n\textschwa s\textbackslash \\
\textbf{ book }\quad \textbackslash \textprimstress bu\. k\textbackslash \\
\textbf{ boom }\quad \textbackslash \textprimstress b\"{u}m\textbackslash \\
\textbf{ boot }\quad \textbackslash \textprimstress b\"{u}t\textbackslash \\
\textbf{ border }\quad \ \textbackslash \textprimstress b\.{o}r-d\textschwa r\textbackslash \\
\textbf{ bored }\quad \textbackslash \textprimstress b\.{o}rd\textbackslash \\
\textbf{ boring }\quad \ \textbackslash \textprimstress b\.{o}r-i\engma \textbackslash \\
\textbf{ born }\quad \textbackslash \textprimstress b\.{o}rn\textbackslash \\
\textbf{ borrow }\quad \ \textbackslash \textprimstress b\"{a}r-(\textsecstress )\={o}\ ,\ \textprimstress b\.{o}r-\textbackslash \\
\textbf{ boss }\quad \textbackslash \textprimstress b\.{o}s\ ,\ \textprimstress b\"{a}s\textbackslash \\
\textbf{ both }\quad \textbackslash \textprimstress b\={o}th\textbackslash \\
\textbf{ bother }\quad \ \textbackslash \textprimstress b\"{a}- h\textschwa r\textbackslash \\
\textbf{ bottle }\quad \ \textbackslash \textprimstress b\"{a}-t\textsuperscript{\textreve}l\textbackslash \\
\textbf{ bottom }\quad \ \textbackslash \textprimstress b\"{a}-t\textschwa m\textbackslash \\
\textbf{ bounce }\quad \textbackslash \textprimstress bau\. n(t)s\textbackslash \\
\textbf{ bound }\quad \textbackslash \textprimstress bau\. nd\textbackslash \\
\textbf{ bowl }\quad \textbackslash \textprimstress b\={o}l\textbackslash \\
\textbf{ box }\quad \textbackslash \textprimstress b\"{a}ks\textbackslash \\
\textbf{ boy }\quad \textbackslash \textprimstress b\.{o}i\textbackslash \\
\textbf{ boyfriend }\quad \ \textbackslash \textprimstress b\.{o}i-\textsecstress frend\textbackslash \\
\textbf{ brain }\quad \textbackslash \textprimstress br\={a}n\textbackslash \\
\textbf{ branch }\quad \textbackslash \textprimstress branch\textbackslash \\
\textbf{ brave }\quad \textbackslash \textprimstress br\={a}v\textbackslash \\
\textbf{ bread }\quad \textbackslash \textprimstress bred\textbackslash \\
\textbf{ break }\quad \textbackslash \textprimstress br\={a}k\textbackslash \\
\textbf{ breakfast }\quad \ \textbackslash \textprimstress brek-f\textschwa st\textbackslash \\
\textbf{ breast }\quad \textbackslash \textprimstress brest\textbackslash \\
\textbf{ breath }\quad \textbackslash \textprimstress breth\textbackslash \\
\textbf{ breathe }\quad \textbackslash \textprimstress br\={e} h\textbackslash \\
\textbf{ brick }\quad \textbackslash \textprimstress brik\textbackslash \\
\textbf{ bridge }\quad \textbackslash \textprimstress brij\textbackslash \\
\textbf{ brief }\quad \textbackslash \textprimstress br\={e}f\textbackslash \\
\textbf{ briefly }\quad \ \textbackslash \textprimstress br\={e}-fl\={e}\textbackslash \\
\textbf{ bright }\quad \textbackslash \textprimstress br\={i}t\textbackslash \\
\textbf{ brilliant }\quad \ \textbackslash \textprimstress bril-y\textschwa nt\textbackslash \\
\textbf{ bring }\quad \textbackslash \textprimstress bri\engma \textbackslash \\
\textbf{ broad }\quad \textbackslash \textprimstress br\.{o}d\textbackslash \\
\textbf{ brother }\quad \ \textbackslash \textprimstress br\textschwa - h\textschwa r\textbackslash \\
\textbf{ brown }\quad \textbackslash \textprimstress brau\. n\textbackslash \\
\textbf{ brush }\quad \textbackslash \textprimstress br\textschwa sh\textbackslash \\
\textbf{ buck }\quad \textbackslash \textprimstress b\textschwa k\textbackslash \\
\textbf{ bucket }\quad \ \textbackslash \textprimstress b\textschwa -k\textschwa t\textbackslash \\
\textbf{ buddy }\quad \ \textbackslash \textprimstress b\textschwa -d\={e}\textbackslash \\
\textbf{ budget }\quad \ \textbackslash \textprimstress b\textschwa -j\textschwa t\textbackslash \\
\textbf{ bug }\quad \textbackslash \textprimstress b\textschwa g\textbackslash \\
\textbf{ build }\quad \textbackslash \textprimstress bild\textbackslash \\
\textbf{ builder }\quad \ \textbackslash \textprimstress bil-d\textschwa r\textbackslash \\
\textbf{ building }\quad \ \textbackslash \textprimstress bil-di\engma \textbackslash \\
\textbf{ bump }\quad \textbackslash \textprimstress b\textschwa mp\textbackslash \\
\textbf{ bunch }\quad \textbackslash \textprimstress b\textschwa nch\textbackslash \\
\textbf{ burn }\quad \textbackslash \textprimstress b\textschwa rn\textbackslash \\
\textbf{ burst }\quad \textbackslash \textprimstress b\textschwa rst\textbackslash \\
\textbf{ bury }\quad \textbackslash \textprimstress ber-\={e}\ ,\ \textprimstress be-r\={e}\ also\ \textprimstress b\textschwa r-\textbackslash \\
\textbf{ bus }\quad \textbackslash \textprimstress b\textschwa s\textbackslash \\
\textbf{ business }\quad \ \textbackslash \textprimstress biz-n\textschwa s\ ,\ -n\textschwa z,\ Southern\ also\ \textprimstress bid-\textbackslash \\
\textbf{ busy }\quad \textbackslash \textprimstress bi-z\={e}\textbackslash \\
\textbf{ but }\quad \textbackslash \textprimstress b\textschwa t\textbackslash \\
\textbf{ butcher }\quad \ \textbackslash \textprimstress bu\. -ch\textschwa r\textbackslash \\
\textbf{ butter }\quad \ \textbackslash \textprimstress b\textschwa -t\textschwa r\textbackslash \\
\textbf{ button }\quad \ \textbackslash \textprimstress b\textschwa -t\textsuperscript{\textreve}n\textbackslash \\
\textbf{ buy }\quad \textbackslash \textprimstress b\={i}\textbackslash \\
\textbf{ buyer }\quad \ \textbackslash \textprimstress b\={i}(-\textschwa )r\textbackslash \\
\textbf{ by }\quad \textbackslash \textprimstress b\={i}\ ,\ before\ consonants\ also\ b\textschwa \textbackslash \\
\textbf{ bye }\quad \textbackslash \textprimstress b\={i}\textbackslash \\
\textbf{ cabinet }\quad \ \textbackslash \textprimstress kab-nit\ ,\ \textprimstress ka-b\textschwa -\textbackslash \\
\textbf{ cable }\quad \ \textbackslash \textprimstress k\={a}-b\textschwa l\textbackslash \\
\textbf{ cake }\quad \textbackslash \textprimstress k\={a}k\textbackslash \\
\textbf{ calculate }\quad \ \textbackslash \textprimstress kal-ky\textschwa -\textsecstress l\={a}t\textbackslash \\
\textbf{ calculation }\quad \ \textbackslash \textsecstress kal-ky\textschwa -\textprimstress l\={a}-sh\textschwa n\textbackslash \\
\textbf{ calculator }\quad \ \textbackslash \textprimstress kal-ky\textschwa -\textsecstress l\={a}-t\textschwa r\textbackslash \\
\textbf{ calendar }\quad \ \textbackslash \textprimstress ka-l\textschwa n-d\textschwa r\textbackslash \\
\textbf{ call }\quad \textbackslash \textprimstress k\.{o}l\textbackslash \\
\textbf{ calm }\quad \textbackslash \textprimstress k\"{a}m\ ,\ \textprimstress k\"{a}lm\ ,\ \textprimstress kam,\ \textprimstress k\.{o}(l)m\textbackslash \\
\textbf{ camera }\quad \ \textbackslash \textprimstress kam-r\textschwa \ ,\ \textprimstress ka-m\textschwa -r\textschwa \textbackslash \\
\textbf{ camp }\quad \textbackslash \textprimstress kamp\textbackslash \\
\textbf{ campaign }\quad \ \textbackslash (\textsecstress )kam-\textprimstress p\={a}n\textbackslash \\
\textbf{ can }\quad \textbackslash k\textschwa n,\ \textprimstress kan\ \ also\ \textprimstress ken;\ dialectal\ \textprimstress kin\textbackslash \\
\textbf{ cancel }\quad \ \textbackslash \textprimstress kan(t)-s\textschwa l\textbackslash \\
\textbf{ cancer }\quad \ \textbackslash \textprimstress kan(t)-s\textschwa r\textbackslash \\
\textbf{ candidate }\quad \ \textbackslash \textprimstress kan-d\textschwa -\textsecstress d\={a}t\ ,\ \textprimstress ka-n\textschwa -,\ -d\textschwa t\textbackslash \\
\textbf{ candle }\quad \ \textbackslash \textprimstress kan-d\textsuperscript{\textreve}l\textbackslash \\
\textbf{ candy }\quad \ \textbackslash \textprimstress kan-d\={e}\textbackslash \\
\textbf{ cap }\quad \textbackslash \textprimstress kap\textbackslash \\
\textbf{ capable }\quad \ \textbackslash \textprimstress k\={a}-p\textschwa -b\textschwa l\ ,\ in\ rapid\ speech\ \textprimstress k\={a}p-b\textschwa l\textbackslash \\
\textbf{ capacity }\quad \ \textbackslash k\textschwa -\textprimstress pa-s\textschwa -t\={e}\ ,\ -\textprimstress pa-st\={e}\textbackslash \\
\textbf{ capital }\quad \ \textbackslash \textprimstress ka-p\textschwa -t\textsuperscript{\textreve}l\ ,\ \textprimstress kap-t\textsuperscript{\textreve}l\textbackslash \\
\textbf{ captain }\quad \ \textbackslash \textprimstress kap-t\textschwa n\ also\ \textprimstress kap-\textsuperscript{\textreve}m\textbackslash \\
\textbf{ capture }\quad \ \textbackslash \textprimstress kap-ch\textschwa r\ ,\ -sh\textschwa r\textbackslash \\
\textbf{ car }\quad \textbackslash \textprimstress k\"{a}r\ ,\ dialectal\ also\ \textprimstress k\.{o}r,\ \textprimstress ky\"{a}r\textbackslash \\
\textbf{ card }\quad \textbackslash \textprimstress k\"{a}rd\textbackslash \\
\textbf{ care }\quad \textbackslash \textprimstress ker\textbackslash \\
\textbf{ career }\quad \ \textbackslash k\textschwa -\textprimstress rir\textbackslash \\
\textbf{ careful }\quad \ \textbackslash \textprimstress ker-f\textschwa l\textbackslash \\
\textbf{ carefully }\quad \ \textbackslash \textprimstress ker-f\textschwa l\textbackslash \\
\textbf{ carpet }\quad \ \textbackslash \textprimstress k\"{a}r-p\textschwa t\textbackslash \\
\textbf{ carrot }\quad \ \textbackslash \textprimstress ker-\textschwa t\ ,\ \textprimstress ka-r\textschwa t\textbackslash \\
\textbf{ carry }\quad \ \textbackslash \textprimstress ker-\={e}\ ,\ \textprimstress ka-r\={e}\textbackslash \\
\textbf{ cartoon }\quad \ \textbackslash k\"{a}r-\textprimstress t\"{u}n\textbackslash \\
\textbf{ case }\quad \textbackslash \textprimstress k\={a}s\textbackslash \\
\textbf{ cash }\quad \textbackslash \textprimstress kash\textbackslash \\
\textbf{ cast }\quad \textbackslash \textprimstress kast\textbackslash \\
\textbf{ castle }\quad \ \textbackslash \textprimstress ka-s\textschwa l\textbackslash \\
\textbf{ cat }\quad \textbackslash \textprimstress kat\textbackslash \\
\textbf{ catalogue }\quad \ \textbackslash \textprimstress ka-t\textschwa -\textsecstress l\.{o}g\ ,\ -\textsecstress l\"{a}g\textbackslash \\
\textbf{ catch }\quad \textbackslash \textprimstress kach\ ,\ \textprimstress kech\textbackslash \\
\textbf{ category }\quad \ \textbackslash \textprimstress ka-t\textschwa -\textsecstress g\.{o}r-\={e}\textbackslash \\
\textbf{ cause }\quad \textbackslash \textprimstress k\.{o}z\textbackslash \\
\textbf{ cease }\quad \textbackslash \textprimstress s\={e}s\textbackslash \\
\textbf{ ceiling }\quad \ \textbackslash \textprimstress s\={e}-li\engma \textbackslash \\
\textbf{ celebrate }\quad \ \textbackslash \textprimstress se-l\textschwa -\textsecstress br\={a}t\textbackslash \\
\textbf{ celebration }\quad \ \textbackslash \textprimstress se-l\textschwa -\textsecstress br\={a}t\textbackslash \\
\textbf{ cell }\quad \textbackslash \textprimstress sel\textbackslash \\
\textbf{ cent }\quad \textbackslash \textprimstress sent\textbackslash \\
\textbf{ centimetre }\quad \ \textbackslash \textprimstress sen-t\textschwa -\textsecstress m\={e}-t\textschwa r\ ,\ \textprimstress s\"{a}n-\textbackslash \\
\textbf{ central }\quad \ \textbackslash \textprimstress sen-tr\textschwa l\textbackslash \\
\textbf{ century }\quad \ \textbackslash \textprimstress sen(t)-sh(\textschwa -)r\={e}\textbackslash \\
\textbf{ cereal }\quad \ \textbackslash \textprimstress sir-\={e}-\textschwa l\textbackslash \\
\textbf{ certain }\quad \ \textbackslash \textprimstress s\textschwa r-t\textsuperscript{\textreve}n\textbackslash \\
\textbf{ certainly }\quad \ \textbackslash \textprimstress s\textschwa r-t\textsuperscript{\textreve}n-l\={e}\textbackslash \\
\textbf{ certificate }\quad \ \textbackslash (\textsecstress )s\textschwa r-\textprimstress ti-fi-k\textschwa t\textbackslash \\
\textbf{ chain }\quad \textbackslash \textprimstress ch\={a}n\textbackslash \\
\textbf{ chair }\quad \textbackslash \textprimstress cher\textbackslash \\
\textbf{ chairman }\quad \ \textbackslash \textprimstress cher-m\textschwa n\textbackslash \\
\textbf{ challenge }\quad \ \textbackslash \textprimstress cha-l\textschwa nj\textbackslash \\
\textbf{ champion }\quad \ \textbackslash \textprimstress cham-p\={e}-\textschwa n\textbackslash \\
\textbf{ championship }\quad \ \textbackslash \textprimstress cham-p\={e}-\textschwa n-\textsecstress ship\textbackslash \\
\textbf{ chance }\quad \textbackslash \textprimstress chan(t)s\textbackslash \\
\textbf{ change }\quad \textbackslash \textprimstress ch\={a}nj\textbackslash \\
\textbf{ channel }\quad \ \textbackslash \textprimstress cha-n\textsuperscript{\textreve}l\textbackslash \\
\textbf{ chap }\quad \textbackslash \textprimstress chap\textbackslash \\
\textbf{ chapter }\quad \ \textbackslash \textprimstress chap-t\textschwa r\textbackslash \\
\textbf{ character }\quad \ \textbackslash \textprimstress ker-ik-t\textschwa r\ ,\ \textprimstress ka-rik-\textbackslash \\
\textbf{ characteristic }\quad \ \textbackslash \textsecstress ker-ik-t\textschwa -\textprimstress ri-stik\ ,\ \textsecstress ka-rik-\textbackslash \\
\textbf{ characterize }\quad \ \textbackslash \textprimstress ker-ik-t\textschwa -\textsecstress r\={i}z\ ,\ \textprimstress ka-rik-\textbackslash \\
\textbf{ charge }\quad \textbackslash \textprimstress ch\"{a}rj\textbackslash \\
\textbf{ charity }\quad \ \textbackslash \textprimstress cher-\textschwa -t\={e}\ ,\ \textprimstress cha-r\textschwa -\textbackslash \\
\textbf{ chart }\quad \textbackslash \textprimstress ch\"{a}rt\textbackslash \\
\textbf{ chase }\quad \textbackslash \textprimstress ch\={a}s\textbackslash \\
\textbf{ chat }\quad \textbackslash \textprimstress chat\textbackslash \\
\textbf{ cheap }\quad \textbackslash \textprimstress ch\={e}p\textbackslash \\
\textbf{ cheat }\quad \textbackslash \textprimstress ch\={e}t\textbackslash \\
\textbf{ check }\quad \textbackslash \textprimstress chek\textbackslash \\
\textbf{ cheek }\quad \textbackslash \textprimstress ch\={e}k\textbackslash \\
\textbf{ cheese }\quad \textbackslash \textprimstress ch\={e}z\textbackslash \\
\textbf{ chemical }\quad \ \textbackslash \textprimstress ke-mi-k\textschwa l\textbackslash \\
\textbf{ chemist }\quad \ \textbackslash \textprimstress ke-mist\textbackslash \\
\textbf{ chemistry }\quad \ \textbackslash \textprimstress ke-m\textschwa -str\={e}\textbackslash \\
\textbf{ cherry }\quad \ \textbackslash \textprimstress cher-\={e}\ ,\ \textprimstress che-r\={e}\textbackslash \\
\textbf{ chest }\quad \textbackslash \textprimstress chest\textbackslash \\
\textbf{ chicken }\quad \ \textbackslash \textprimstress chi-k\textsuperscript{\textreve}n\ ,\ sometimes\ -k\textsuperscript{\textreve}\engma \textbackslash \\
\textbf{ chief }\quad \textbackslash \textprimstress ch\={e}f\textbackslash \\
\textbf{ child }\quad \textbackslash \textprimstress ch\={i}(-\textschwa )ld\textbackslash \\
\textbf{ childhood }\quad \ \textbackslash \textprimstress ch\={i}(-\textschwa )ld-\textsecstress hu\. d\textbackslash \\
\textbf{ chip }\quad \textbackslash \textprimstress chip\textbackslash \\
\textbf{ chocolate }\quad \ \textbackslash \textprimstress ch\"{a}-k(\textschwa -)l\textschwa t\ ,\ \textprimstress ch\.{o}-\textbackslash \\
\textbf{ choice }\quad \textbackslash \textprimstress ch\.{o}is\textbackslash \\
\textbf{ choose }\quad \textbackslash \textprimstress ch\"{u}z\textbackslash \\
\textbf{ chop }\quad \textbackslash \textprimstress ch\"{a}p\textbackslash \\
\textbf{ chuck }\quad \textbackslash \textprimstress ch\textschwa k\textbackslash \\
\textbf{ church }\quad \textbackslash \textprimstress ch\textschwa rch\textbackslash \\
\textbf{ cigarette }\quad \ \textbackslash \textsecstress si-g\textschwa -\textprimstress ret\ ,\ \textprimstress si-g\textschwa -\textsecstress ret\textbackslash \\
\textbf{ cinema }\quad \ \textbackslash \textprimstress si-n\textschwa -m\textschwa \ ,\ British\ also\ -\textsecstress m\"{a}\textbackslash \\
\textbf{ circle }\quad \ \textbackslash \textprimstress s\textschwa r-k\textschwa l\textbackslash \\
\textbf{ circuit }\quad \ \textbackslash \textprimstress s\textschwa r-k\textschwa t\textbackslash \\
\textbf{ circumstance }\quad \ \textbackslash \textprimstress s\textschwa r-k\textschwa m-\textsecstress stan(t)s\ ,\ -st\textschwa n(t)s\textbackslash \\
\textbf{ citizen }\quad \ \textbackslash \textprimstress si-t\textschwa -z\textschwa n\ \ also\ -s\textschwa n\textbackslash \\
\textbf{ city }\quad \textbackslash \textprimstress si-t\={e}\textbackslash \\
\textbf{ civil }\quad \ \textbackslash \textprimstress si-v\textschwa l\textbackslash \\
\textbf{ claim }\quad \textbackslash \textprimstress kl\={a}m\textbackslash \\
\textbf{ class }\quad \textbackslash \textprimstress klas\textbackslash \\
\textbf{ classic }\quad \ \textbackslash \textprimstress kla-sik\textbackslash \\
\textbf{ classical }\quad \ \textbackslash \textprimstress kla-si-k\textschwa l\textbackslash \\
\textbf{ classroom }\quad \ \textbackslash \textprimstress klas-\textsecstress r\"{u}m\ ,\ -\textsecstress ru\. m\textbackslash \\
\textbf{ clean }\quad \textbackslash \textprimstress kl\={e}n\textbackslash \\
\textbf{ cleaner }\quad \ \textbackslash \textprimstress kl\={e}-n\textschwa r\textbackslash \\
\textbf{ clear }\quad \textbackslash \textprimstress klir\textbackslash \\
\textbf{ clearly }\quad \ \textbackslash \textprimstress klir-l\={e}\textbackslash \\
\textbf{ clerk }\quad \textbackslash \textprimstress kl\textschwa rk\ ,\ British\ usually\ \textprimstress kl\"{a}rk\textbackslash \\
\textbf{ clever }\quad \ \textbackslash \textprimstress kle-v\textschwa r\textbackslash \\
\textbf{ click }\quad \textbackslash \textprimstress klik\textbackslash \\
\textbf{ client }\quad \ \textbackslash \textprimstress kl\={i}-\textschwa nt\textbackslash \\
\textbf{ climate }\quad \ \textbackslash \textprimstress kl\={i}-m\textschwa t\textbackslash \\
\textbf{ climb }\quad \textbackslash \textprimstress kl\={i}m\textbackslash \\
\textbf{ clock }\quad \textbackslash \textprimstress kl\"{a}k\textbackslash \\
\textbf{ close }\quad \textbackslash \textprimstress kl\={o}z\textbackslash \\
\textbf{ closed }\quad \textbackslash \textprimstress kl\={o}zd\textbackslash \\
\textbf{ closely }\quad \textbackslash \textprimstress kl\={o}z\textbackslash \\
\textbf{ closet }\quad \ \textbackslash \textprimstress kl\"{a}-z\textschwa t\ ,\ \textprimstress kl\.{o}-\textbackslash \\
\textbf{ cloth }\quad \textbackslash \textprimstress kl\.{o}th\textbackslash \\
\textbf{ clothes }\quad \textbackslash \textprimstress kl\={o}z\ \ also\ \textprimstress kl\={o} hz\textbackslash \\
\textbf{ cloud }\quad \textbackslash \textprimstress klau\. d\textbackslash \\
\textbf{ club }\quad \textbackslash \textprimstress kl\textschwa b\textbackslash \\
\textbf{ clue }\quad \textbackslash \textprimstress kl\"{u}\textbackslash \\
\textbf{ coach }\quad \textbackslash \textprimstress k\={o}ch\textbackslash \\
\textbf{ coal }\quad \textbackslash \textprimstress k\={o}l\textbackslash \\
\textbf{ coast }\quad \textbackslash \textprimstress k\={o}st\textbackslash \\
\textbf{ coat }\quad \textbackslash \textprimstress k\={o}t\textbackslash \\
\textbf{ code }\quad \textbackslash \textprimstress k\={o}d\textbackslash \\
\textbf{ coffee }\quad \ \textbackslash \textprimstress k\.{o}-f\={e}\ ,\ \textprimstress k\"{a}-\textbackslash \\
\textbf{ coin }\quad \textbackslash \textprimstress k\.{o}in\textbackslash \\
\textbf{ cold }\quad \textbackslash \textprimstress k\={o}ld\textbackslash \\
\textbf{ collapse }\quad \ \textbackslash k\textschwa -\textprimstress laps\textbackslash \\
\textbf{ collar }\quad \ \textbackslash \textprimstress k\"{a}-l\textschwa r\textbackslash \\
\textbf{ colleague }\quad \ \textbackslash \textprimstress k\"{a}-(\textsecstress )l\={e}g\textbackslash \\
\textbf{ collect }\quad \ \textbackslash \textprimstress k\"{a}-likt\ also\ -\textsecstress lekt\textbackslash \\
\textbf{ collection }\quad \ \textbackslash k\textschwa -\textprimstress lek-sh\textschwa n\textbackslash \\
\textbf{ college }\quad \ \textbackslash \textprimstress k\"{a}-lij\textbackslash \\
\textbf{ colour }\quad \ \textbackslash \textprimstress k\textschwa -l\textschwa r\textbackslash \\
\textbf{ column }\quad \ \textbackslash \textprimstress k\"{a}-l\textschwa m\ also\ \textprimstress k\"{a}l-y\textschwa m\textbackslash \\
\textbf{ combination }\quad \ \textbackslash \textsecstress k\"{a}m-b\textschwa -\textprimstress n\={a}-sh\textschwa n\textbackslash \\
\textbf{ combine }\quad \ \textbackslash k\textschwa m-\textprimstress b\={i}n\textbackslash \\
\textbf{ come }\quad \textbackslash \textprimstress k\textschwa m\textbackslash \\
\textbf{ comfort }\quad \ \textbackslash \textprimstress k\textschwa m(p)-f\textschwa rt\textbackslash \\
\textbf{ comfortable }\quad \ \textbackslash \textprimstress k\textschwa m(p)(f)-t\textschwa r-b\textschwa l\ ,\ \textprimstress k\textschwa m(p)(f)-t\textschwa -b\textschwa l,\ \textprimstress k\textschwa m(p)-f\textschwa r-t\textschwa -b\textschwa l,\ \textprimstress k\textschwa m(p)-f\textschwa -t\textschwa -b\textschwa l,\ \textprimstress k\textschwa m-f\textschwa r-b\textschwa l,\ \textprimstress k\textschwa m-f\textschwa -b\textschwa l\textbackslash \\
\textbf{ command }\quad \ \textbackslash k\textschwa -\textprimstress mand\textbackslash \\
\textbf{ comment }\quad \ \textbackslash \textprimstress k\"{a}-\textsecstress ment\textbackslash \\
\textbf{ commercial }\quad \ \textbackslash k\textschwa -\textprimstress m\textschwa r-sh\textschwa l\textbackslash \\
\textbf{ commission }\quad \ \textbackslash k\textschwa -\textprimstress mi-sh\textschwa n\textbackslash \\
\textbf{ commit }\quad \ \textbackslash k\textschwa -\textprimstress mit\textbackslash \\
\textbf{ commitment }\quad \ \textbackslash k\textschwa -\textprimstress mit-m\textschwa nt\textbackslash \\
\textbf{ committee }\quad \ \textbackslash k\textschwa -\textprimstress mi-t\={e}\ ,\ sense\ 2\ also\ \textsecstress k\"{a}-mi-\textprimstress t\={e}\textbackslash \\
\textbf{ common }\quad \ \textbackslash \textprimstress k\"{a}-m\textschwa n\textbackslash \\
\textbf{ communicate }\quad \ \textbackslash k\textschwa -\textprimstress my\"{u}-n\textschwa -\textsecstress k\={a}t\textbackslash \\
\textbf{ communication }\quad \ \textbackslash k\textschwa -\textsecstress my\"{u}-n\textschwa -\textprimstress k\={a}-sh\textschwa n\textbackslash \\
\textbf{ community }\quad \ \textbackslash k\textschwa -\textprimstress my\"{u}-n\textschwa -t\={e}\textbackslash \\
\textbf{ company }\quad \ \textbackslash \textprimstress k\textschwa mp-n\={e}\ ,\ \textprimstress k\textschwa m-p\textschwa -\textbackslash \\
\textbf{ compare }\quad \ \textbackslash k\textschwa m-\textprimstress per\textbackslash \\
\textbf{ comparison }\quad \ \textbackslash k\textschwa m-\textprimstress per-\textschwa -s\textschwa n\ ,\ -\textprimstress pa-r\textschwa -\textbackslash \\
\textbf{ compete }\quad \ \textbackslash k\textschwa m-\textprimstress p\={e}t\textbackslash \\
\textbf{ competition }\quad \ \textbackslash \textsecstress k\"{a}m-p\textschwa -\textprimstress ti-sh\textschwa n\textbackslash \\
\textbf{ competitive }\quad \ \textbackslash k\textschwa m-\textprimstress pe-t\textschwa -tiv\textbackslash \\
\textbf{ complain }\quad \ \textbackslash k\textschwa m-\textprimstress pl\={a}n\textbackslash \\
\textbf{ complaint }\quad \ \textbackslash k\textschwa m-\textprimstress pl\={a}nt\textbackslash \\
\textbf{ complete }\quad \ \textbackslash k\textschwa m-\textprimstress pl\={e}t\textbackslash \\
\textbf{ completely }\quad \ \textbackslash k\textschwa m-\textprimstress pl\={e}t\textbackslash \\
\textbf{ complex }\quad \ \textbackslash \textprimstress k\"{a}m-\textsecstress pleks\textbackslash \\
\textbf{ complicated }\quad \ \textbackslash \textprimstress k\"{a}m-pl\textschwa -\textsecstress k\={a}-t\textschwa d\textbackslash \\
\textbf{ constitute }\quad \ \textbackslash \textprimstress k\"{a}n(t)-st\textschwa -\textsecstress t\"{u}t\ ,\ -\textsecstress ty\"{u}t\textbackslash \\
\textbf{ construct }\quad \ \textbackslash k\textschwa n-\textprimstress str\textschwa kt\textbackslash \\
\textbf{ construction }\quad \ \textbackslash k\textschwa n-\textprimstress str\textschwa k-sh\textschwa n\textbackslash \\
\textbf{ consult }\quad \ \textbackslash k\textschwa n-\textprimstress s\textschwa lt\textbackslash \\
\textbf{ consumer }\quad \ \textbackslash k\textschwa n-\textprimstress s\"{u}-m\textschwa r\textbackslash \\
\textbf{ consumption }\quad \ \textbackslash k\textschwa n-\textprimstress s\textschwa m(p)-sh\textschwa n\textbackslash \\
\textbf{ contact }\quad \ \textbackslash \textprimstress k\"{a}n-\textsecstress takt\textbackslash \\
\textbf{ contain }\quad \ \textbackslash k\textschwa n-\textprimstress t\={a}n\textbackslash \\
\textbf{ contemporary }\quad \ \textbackslash k\textschwa n-\textprimstress tem-p\textschwa -\textsecstress rer-\={e}\ ,\ -\textsecstress re-r\={e}\textbackslash \\
\textbf{ content }\quad \ \textbackslash \textprimstress k\"{a}n-\textsecstress tent\textbackslash \\
\textbf{ contest }\quad \ \textbackslash k\textschwa n-\textprimstress test\ ,\ \textprimstress k\"{a}n-\textsecstress test\textbackslash \\
\textbf{ context }\quad \ \textbackslash \textprimstress k\"{a}n-\textsecstress tekst\textbackslash \\
\textbf{ continue }\quad \ \textbackslash k\textschwa n-\textprimstress tin-(\textsecstress )y\"{u}\textbackslash \\
\textbf{ continuous }\quad \ \textbackslash k\textschwa n-\textprimstress tin-y\"{u}-\textschwa s\textbackslash \\
\textbf{ contract }\quad \ \textbackslash \textprimstress k\"{a}n-\textsecstress trakt\textbackslash \\
\textbf{ contrast }\quad \ \textbackslash k\textschwa n-\textprimstress trast\ ,\ \textprimstress k\"{a}n-\textsecstress trast\textbackslash \\
\textbf{ contribute }\quad \ \textbackslash k\textschwa n-\textprimstress tri-by\textschwa t\ ,\ -(\textsecstress )by\"{u}t\ also\ and\ especially\ before\ -ed\ or\ -ing\ -\textprimstress tri-b\textschwa t;\ chiefly\ British\ also\ \textprimstress k\"{a}n-tr\textschwa -\textsecstress by\"{u}t\textbackslash \\
\textbf{ contribution }\quad \ \textbackslash \textsecstress k\"{a}n-tr\textschwa -\textprimstress by\"{u}-sh\textschwa n\textbackslash \\
\textbf{ control }\quad \ \textbackslash k\textschwa n-\textprimstress tr\={o}l\textbackslash \\
\textbf{ convenient }\quad \ \textbackslash k\textschwa n-\textprimstress v\={e}n-y\textschwa nt\textbackslash \\
\textbf{ convention }\quad \ \textbackslash k\textschwa n-\textprimstress ven(t)-sh\textschwa n\textbackslash \\
\textbf{ conventional }\quad \ \textbackslash k\textschwa n-\textprimstress vench-n\textschwa l\ ,\ -\textprimstress ven(t)-sh\textschwa -n\textsuperscript{\textreve}l\textbackslash \\
\textbf{ conversation }\quad \ \textbackslash \textsecstress k\"{a}n-v\textschwa r-\textprimstress s\={a}-sh\textschwa n\textbackslash \\
\textbf{ convert }\quad \ \textbackslash k\textschwa n-\textprimstress v\textschwa rt\textbackslash \\
\textbf{ conviction }\quad \ \textbackslash k\textschwa n-\textprimstress vik-sh\textschwa n\textbackslash \\
\textbf{ convince }\quad \ \textbackslash k\textschwa n-\textprimstress vin(t)s\textbackslash \\
\textbf{ cook }\quad \textbackslash \textprimstress ku\. k\textbackslash \\
\textbf{ cooker }\quad \ \textbackslash \textprimstress ku\. -k\textschwa r\textbackslash \\
\textbf{ cookie }\quad \ \textbackslash \textprimstress ku\. -k\={e}\textbackslash \\
\textbf{ cool }\quad \textbackslash \textprimstress k\"{u}l\textbackslash \\
\textbf{ cooperation }\quad \ \textbackslash (\textsecstress )k\={o}-\textsecstress \"{a}-p\textschwa -\textprimstress r\={a}-sh\textschwa n\textbackslash \\
\textbf{ cope }\quad \textbackslash \textprimstress k\={o}p\textbackslash \\
\textbf{ copy }\quad \textbackslash \textprimstress k\"{a}-p\={e}\textbackslash \\
\textbf{ core }\quad \textbackslash \textprimstress k\.{o}r\textbackslash \\
\textbf{ corn }\quad \textbackslash \textprimstress k\.{o}rn\textbackslash \\
\textbf{ corner }\quad \ \textbackslash \textprimstress k\.{o}r-n\textschwa r\textbackslash \\
\textbf{ correct }\quad \ \textbackslash k\textschwa -\textprimstress rekt\textbackslash \\
\textbf{ corridor }\quad \ \textbackslash \textprimstress k\.{o}r-\textschwa -d\textschwa r\ ,\ \textprimstress k\"{a}r-,\ -\textsecstress d\.{o}r\textbackslash \\
\textbf{ cost }\quad \textbackslash \textprimstress k\.{o}st\textbackslash \\
\textbf{ cottage }\quad \ \textbackslash \textprimstress k\"{a}-tij\textbackslash \\
\textbf{ cotton }\quad \ \textbackslash \textprimstress k\"{a}-t\textsuperscript{\textreve}n\textbackslash \\
\textbf{ could }\quad \textbackslash k\textschwa d,\ \textprimstress ku\. d\textbackslash \\
\textbf{ council }\quad \ \textbackslash \textprimstress kau\. n(t)-s\textschwa l\textbackslash \\
\textbf{ count }\quad \textbackslash \textprimstress kau\. nt\ ,\ dialectal\ \textprimstress kyau\. nt\textbackslash \\
\textbf{ counter }\quad \ \textbackslash \textprimstress kau\. n-t\textschwa r\textbackslash \\
\textbf{ country }\quad \ \textbackslash \textprimstress k\textschwa n-tr\={e}\textbackslash \\
\textbf{ countryside }\quad \ \textbackslash \textprimstress k\textschwa n-tr\={e}-\textsecstress s\={i}d\textbackslash \\
\textbf{ county }\quad \ \textbackslash \textprimstress kau\. n-t\={e}\textbackslash \\
\textbf{ couple }\quad \ \textbackslash \textprimstress k\textschwa -p\textschwa l\ ;\ ``couple\ of``\ is\ often\ \textsecstress k\textschwa -pl\textschwa (v)\textbackslash \\
\textbf{ courage }\quad \ \textbackslash \textprimstress k\textschwa r-ij\ ,\ \textprimstress k\textschwa -rij\textbackslash \\
\textbf{ course }\quad \textbackslash \textprimstress k\.{o}rs\textbackslash \\
\textbf{ court }\quad \textbackslash \textprimstress k\.{o}rt\textbackslash \\
\textbf{ cousin }\quad \ \textbackslash \textprimstress k\textschwa -z\textschwa n\textbackslash \\
\textbf{ cover }\quad \ \textbackslash \textprimstress k\textschwa -v\textschwa r\textbackslash \\
\textbf{ cow }\quad \textbackslash \textprimstress kau\. \textbackslash \\
\textbf{ crack }\quad \textbackslash \textprimstress krak\textbackslash \\
\textbf{ craft }\quad \textbackslash \textprimstress kraft\textbackslash \\
\textbf{ crash }\quad \textbackslash \textprimstress krash\textbackslash \\
\textbf{ crazy }\quad \ \textbackslash \textprimstress kr\={a}-z\={e}\textbackslash \\
\textbf{ create }\quad \ \textbackslash kr\={e}-\textprimstress \={a}t\ ,\ \textprimstress kr\={e}-\textsecstress \={a}t\textbackslash \\
\textbf{ creation }\quad \ \textbackslash kr\={e}-\textprimstress \={a}-sh\textschwa n\textbackslash \\
\textbf{ creative }\quad \ \textbackslash kr\={e}-\textprimstress \={a}-tiv\ ,\ \textprimstress kr\={e}-\textsecstress \={a}-\textbackslash \\
\textbf{ creature }\quad \ \textbackslash \textprimstress kr\={e}-ch\textschwa r\textbackslash \\
\textbf{ credit }\quad \ \textbackslash \textprimstress kre-dit\textbackslash \\
\textbf{ crew }\quad \textbackslash \textprimstress kr\"{u}\textbackslash \\
\textbf{ crime }\quad \textbackslash \textprimstress kr\={i}m\textbackslash \\
\textbf{ criminal }\quad \ \textbackslash \textprimstress kri-m\textschwa -n\textsuperscript{\textreve}l\ ,\ \textprimstress krim-n\textschwa l\textbackslash \\
\textbf{ crisis }\quad \ \textbackslash \textprimstress kr\={i}-s\textschwa s\textbackslash \\
\textbf{ criterion }\quad \ \textbackslash kr\={i}-\textprimstress tir-\={e}-\textschwa n\ also\ kr\textschwa -\textbackslash \\
\textbf{ critic }\quad \ \textbackslash \textprimstress kri-tik\textbackslash \\
\textbf{ critical }\quad \ \textbackslash \textprimstress kri-ti-k\textschwa l\textbackslash \\
\textbf{ criticism }\quad \ \textbackslash \textprimstress kri-t\textschwa -\textsecstress si-z\textschwa m\textbackslash \\
\textbf{ criticize }\quad \ \textbackslash \textprimstress kri-t\textschwa -\textsecstress s\={i}z\textbackslash \\
\textbf{ crop }\quad \textbackslash \textprimstress kr\"{a}p\textbackslash \\
\textbf{ cross }\quad \textbackslash \textprimstress kr\.{o}s\textbackslash \\
\textbf{ crowd }\quad \textbackslash \textprimstress krau\. d\textbackslash \\
\textbf{ crown }\quad \textbackslash \textprimstress krau\. n\textbackslash \\
\textbf{ crucial }\quad \ \textbackslash \textprimstress kr\"{u}-sh\textschwa l\textbackslash \\
\textbf{ cruel }\quad \ \textbackslash \textprimstress kr\"{u}(-\textschwa )l\textbackslash \\
\textbf{ cry }\quad \textbackslash \textprimstress kr\={i}\textbackslash \\
\textbf{ cultural }\quad \ \textbackslash \textprimstress k\textschwa lch-r\textschwa l\ ,\ \textprimstress k\textschwa l-ch\textschwa -\textbackslash \\
\textbf{ culture }\quad \ \textbackslash \textprimstress k\textschwa l-ch\textschwa r\textbackslash \\
\textbf{ cup }\quad \textbackslash \textprimstress k\textschwa p\textbackslash \\
\textbf{ cupboard }\quad \ \textbackslash \textprimstress k\textschwa -b\textschwa rd\textbackslash \\
\textbf{ curious }\quad \ \textbackslash \textprimstress kyu\. r-\={e}-\textschwa s\ ,\ \textprimstress ky\textschwa r-\textbackslash \\
\textbf{ currency }\quad \ \textbackslash \textprimstress k\textschwa r-\textschwa n(t)-s\={e}\ ,\ \textprimstress k\textschwa -r\textschwa n(t)-\textbackslash \\
\textbf{ current }\quad \ \textbackslash \textprimstress k\textschwa r-\textschwa nt\ ,\ \textprimstress k\textschwa -r\textschwa nt\textbackslash \\
\textbf{ currently }\quad \ \textbackslash \textprimstress k\textschwa r-\textschwa nt-l\={e}\ ,\ \textprimstress k\textschwa -r\textschwa nt-\textbackslash \\
\textbf{ curtain }\quad \ \textbackslash \textprimstress k\textschwa r-t\textsuperscript{\textreve}n\textbackslash \\
\textbf{ curve }\quad \textbackslash \textprimstress k\textschwa rv\textbackslash \\
\textbf{ cushion }\quad \ \textbackslash \textprimstress ku\. -sh\textschwa n\textbackslash \\
\textbf{ custom }\quad \ \textbackslash \textprimstress k\textschwa -st\textschwa m\textbackslash \\
\textbf{ customer }\quad \ \textbackslash \textprimstress k\textschwa -st\textschwa -m\textschwa r\textbackslash \\
\textbf{ cut }\quad \textbackslash \textprimstress k\textschwa t\textbackslash \\
\textbf{ cute }\quad \textbackslash \textprimstress ky\"{u}t\textbackslash \\
\textbf{ cycle }\quad \ \textbackslash \textprimstress s\={i}-k\textschwa l\textbackslash \\
\textbf{ dad }\quad \textbackslash \textprimstress dad\textbackslash \\
\textbf{ daddy }\quad \ \textbackslash \textprimstress da-d\={e}\textbackslash \\
\textbf{ daft }\quad \textbackslash \textprimstress daft\ \ also\ \textprimstress d\"{a}ft\textbackslash \\
\textbf{ daily }\quad \ \textbackslash \textprimstress d\={a}-l\={e}\textbackslash \\
\textbf{ damage }\quad \ \textbackslash \textprimstress da-mij\textbackslash \\
\textbf{ dance }\quad \textbackslash \textprimstress dan(t)s\ ,\ \textprimstress d\"{a}n(t)s\textbackslash \\
\textbf{ danger }\quad \ \textbackslash \textprimstress d\={a}n-j\textschwa r\textbackslash \\
\textbf{ dangerous }\quad \ \textbackslash \textprimstress d\={a}n-j\textschwa -r\textschwa s\ ;\ \textprimstress d\={a}n-j\textschwa rs,\ -zhr\textschwa s\textbackslash \\
\textbf{ dare }\quad \textbackslash \textprimstress der\textbackslash \\
\textbf{ dark }\quad \textbackslash \textprimstress d\"{a}rk\textbackslash \\
\textbf{ darkness }\quad \textbackslash \textprimstress d\"{a}rk\textbackslash \\
\textbf{ darling }\quad \ \textbackslash \textprimstress d\"{a}r-li\engma \textbackslash \\
\textbf{ data }\quad \ \textbackslash \textprimstress d\={a}-t\textschwa \ ,\ \textprimstress da-\ \ also\ \textprimstress d\"{a}-\textbackslash \\
\textbf{ database }\quad \ \textbackslash \textprimstress d\={a}-t\textschwa -\textsecstress b\={a}s\ ,\ \textprimstress da-\ also\ \textprimstress d\"{a}-\textbackslash \\
\textbf{ date }\quad \textbackslash \textprimstress d\={a}t\textbackslash \\
\textbf{ daughter }\quad \ \textbackslash \textprimstress d\.{o}-t\textschwa r\ ,\ \textprimstress d\"{a}-\textbackslash \\
\textbf{ day }\quad \textbackslash \textprimstress d\={a}\textbackslash \\
\textbf{ dead }\quad \textbackslash \textprimstress ded\textbackslash \\
\textbf{ deaf }\quad \textbackslash \textprimstress def\ ,\ dialectal\ \textprimstress d\={e}f\textbackslash \\
\textbf{ deal }\quad \textbackslash \textprimstress d\={e}l\textbackslash \\
\textbf{ dealer }\quad \textbackslash \textprimstress d\={e}l\textbackslash \\
\textbf{ dear }\quad \textbackslash \textprimstress dir\textbackslash \\
\textbf{ death }\quad \textbackslash \textprimstress deth\textbackslash \\
\textbf{ debate }\quad \ \textbackslash di-\textprimstress b\={a}t\ ,\ d\={e}-\textbackslash \\
\textbf{ debt }\quad \textbackslash \textprimstress det\textbackslash \\
\textbf{ decade }\quad \ \textbackslash \textprimstress de-\textsecstress k\={a}d\ ,\ de-\textprimstress k\={a}d;\ especially\ sense\ 1b\ \textprimstress de-k\textschwa d\textbackslash \\
\textbf{ decent }\quad \ \textbackslash \textprimstress d\={e}-s\textsuperscript{\textreve}nt\textbackslash \\
\textbf{ decide }\quad \ \textbackslash di-\textprimstress s\={i}d\ ,\ d\={e}-\textbackslash \\
\textbf{ decision }\quad \ \textbackslash di-\textprimstress si-zh\textschwa n\textbackslash \\
\textbf{ declare }\quad \ \textbackslash di-\textprimstress kler\textbackslash \\
\textbf{ decline }\quad \ \textbackslash di-\textprimstress kl\={i}n\ ,\ d\={e}-\textbackslash \\
\textbf{ deep }\quad \textbackslash \textprimstress d\={e}p\textbackslash \\
\textbf{ deeply }\quad \textbackslash \textprimstress d\={e}p\textbackslash \\
\textbf{ defeat }\quad \ \textbackslash di-\textprimstress f\={e}t\ ,\ d\={e}-\textbackslash \\
\textbf{ defend }\quad \ \textbackslash di-\textprimstress fend\textbackslash \\
\textbf{ define }\quad \ \textbackslash di-\textprimstress f\={i}n\textbackslash \\
\textbf{ definite }\quad \ \textbackslash \textprimstress de-f\textschwa -nit\ ,\ \textprimstress def-n\textschwa t\textbackslash \\
\textbf{ definitely }\quad \ \textbackslash \textprimstress de-f\textschwa -nit-l\={e}\ ,\ \textprimstress def-n\textschwa t-\textbackslash \\
\textbf{ definition }\quad \ \textbackslash \textsecstress de-f\textschwa -\textprimstress ni-sh\textschwa n\textbackslash \\
\textbf{ degree }\quad \ \textbackslash di-\textprimstress gr\={e}\textbackslash \\
\textbf{ delay }\quad \ \textbackslash di-\textprimstress l\={a}\ ,\ d\={e}-\textbackslash \\
\textbf{ deliberately }\quad \ \textbackslash di-\textprimstress li-b\textschwa -r\textschwa t-l\={e}\ ,\ -\textprimstress lib-r\textschwa t-\textbackslash \\
\textbf{ deliver }\quad \ \textbackslash di-\textprimstress li-v\textschwa r\ ,\ d\={e}-\textbackslash \\
\textbf{ delivery }\quad \ \textbackslash di-\textprimstress li-v(\textschwa -)r\={e}\ ,\ d\={e}-\textbackslash \\
\textbf{ demand }\quad \ \textbackslash di-\textprimstress mand\ ,\ -\textprimstress m\"{a}nd,\ d\={e}-\textbackslash \\
\textbf{ democracy }\quad \ \textbackslash di-\textprimstress m\"{a}-kr\textschwa -s\={e}\textbackslash \\
\textbf{ democratic }\quad \ \textbackslash \textsecstress de-m\textschwa -\textprimstress kra-tik\textbackslash \\
\textbf{ demonstrate }\quad \ \textbackslash \textprimstress de-m\textschwa n-\textsecstress str\={a}t\textbackslash \\
\textbf{ demonstration }\quad \ \textbackslash \textsecstress de-m\textschwa n-\textprimstress str\={a}-sh\textschwa n\textbackslash \\
\textbf{ dentist }\quad \ \textbackslash \textprimstress den-t\textschwa st\textbackslash \\
\textbf{ deny }\quad \ \textbackslash di-\textprimstress n\={i}\ ,\ d\={e}-\textbackslash \\
\textbf{ department }\quad \ \textbackslash di-\textprimstress p\"{a}rt-m\textschwa nt\textbackslash \\
\textbf{ departure }\quad \ \textbackslash di-\textprimstress p\"{a}r-ch\textschwa r\textbackslash \\
\textbf{ depend }\quad \ \textbackslash di-\textprimstress pend\textbackslash \\
\textbf{ dependent }\quad \ \textbackslash di-\textprimstress pen-d\textschwa nt\textbackslash \\
\textbf{ deposit }\quad \ \textbackslash di-\textprimstress p\"{a}-z\textschwa t\textbackslash \\
\textbf{ depression }\quad \ \textbackslash di-\textprimstress pre-sh\textschwa n\ ,\ d\={e}-\textbackslash \\
\textbf{ depth }\quad \textbackslash \textprimstress depth\textbackslash \\
\textbf{ derive }\quad \ \textbackslash di-\textprimstress r\={i}v\ ,\ d\={e}-\textbackslash \\
\textbf{ describe }\quad \ \textbackslash di-\textprimstress skr\={i}b\textbackslash \\
\textbf{ description }\quad \ \textbackslash di-\textprimstress skrip-sh\textschwa n\textbackslash \\
\textbf{ desert }\quad \ \textbackslash \textprimstress de-z\textschwa rt\textbackslash \\
\textbf{ deserve }\quad \ \textbackslash di-\textprimstress z\textschwa rv\textbackslash \\
\textbf{ design }\quad \ \textbackslash di-\textprimstress z\={i}n\textbackslash \\
\textbf{ designer }\quad \ \textbackslash di-\textprimstress z\={i}-n\textschwa r\textbackslash \\
\textbf{ desire }\quad \ \textbackslash di-\textprimstress z\={i}(-\textschwa )r\ ,\ d\={e}-\textbackslash \\
\textbf{ desk }\quad \textbackslash \textprimstress desk\textbackslash \\
\textbf{ desperate }\quad \ \textbackslash \textprimstress de-sp(\textschwa -)r\textschwa t\ ,\ -sp\textschwa rt\textbackslash \\
\textbf{ despite }\quad \ \textbackslash di-\textprimstress sp\={i}t\textbackslash \\
\textbf{ destroy }\quad \ \textbackslash di-\textprimstress str\.{o}i\ ,\ d\={e}-\textbackslash \\
\textbf{ destruction }\quad \ \textbackslash di-\textprimstress str\textschwa k-sh\textschwa n\textbackslash \\
\textbf{ detail }\quad \ \textbackslash di-\textprimstress t\={a}l\ ,\ \textprimstress d\={e}-\textsecstress t\={a}l\textbackslash \\
\textbf{ detailed }\quad \ \textbackslash di-\textprimstress t\={a}ld\ ,\ \textprimstress d\={e}-\textsecstress t\={a}ld\textbackslash \\
\textbf{ detect }\quad \ \textbackslash di-\textprimstress tekt\ ,\ d\={e}-\textbackslash \\
\textbf{ determination }\quad \ \textbackslash di-\textsecstress t\textschwa r-m\textschwa -\textprimstress n\={a}-sh\textschwa n\textbackslash \\
\textbf{ determine }\quad \ \textbackslash di-\textprimstress t\textschwa r-m\textschwa n\ ,\ d\={e}-\textbackslash \\
\textbf{ determined }\quad \ \textbackslash di-\textprimstress t\textschwa r-m\textschwa nd\ ,\ d\={e}-\textbackslash \\
\textbf{ develop }\quad \ \textbackslash di-\textprimstress ve-l\textschwa p\ ,\ d\={e}-\textbackslash \\
\textbf{ development }\quad \ \textbackslash di-\textprimstress ve-l\textschwa p-m\textschwa nt\ ,\ d\={e}-\textbackslash \\
\textbf{ device }\quad \ \textbackslash di-\textprimstress v\={i}s\textbackslash \\
\textbf{ devil }\quad \ \textbackslash \textprimstress de-v\textsuperscript{\textreve}l\ ,\ dialectal\ \textprimstress di-\textbackslash \\
\textbf{ diagram }\quad \ \textbackslash \textprimstress d\={i}-\textschwa -\textsecstress gram\textbackslash \\
\textbf{ diamond }\quad \ \textbackslash \textprimstress d\={i}-(\textschwa -)m\textschwa nd\textbackslash \\
\textbf{ diary }\quad \ \textbackslash \textprimstress d\={i}-(\textschwa -)r\={e}\textbackslash \\
\textbf{ die }\quad \textbackslash \textprimstress d\={i}\textbackslash \\
\textbf{ diet }\quad \ \textbackslash \textprimstress d\={i}-\textschwa t\textbackslash \\
\textbf{ differ }\quad \ \textbackslash \textprimstress di-f\textschwa r\textbackslash \\
\textbf{ difference }\quad \ \textbackslash \textprimstress di-f(\textschwa -)r\textschwa n(t)s\ ,\ \textprimstress di-f\textschwa rn(t)s\textbackslash \\
\textbf{ different }\quad \ \textbackslash \textprimstress di-f(\textschwa -)r\textschwa nt\ ,\ \textprimstress di-f\textschwa rnt\textbackslash \\
\textbf{ difficult }\quad \ \textbackslash \textprimstress di-fi-(\textsecstress )k\textschwa lt\textbackslash \\
\textbf{ difficulty }\quad \ \textbackslash \textprimstress di-fi-(\textsecstress )k\textschwa l-t\={e}\textbackslash \\
\textbf{ dig }\quad \textbackslash \textprimstress dig\textbackslash \\
\textbf{ dimension }\quad \ \textbackslash d\textschwa -\textprimstress men(t)-sh\textschwa n\ \ also\ d\={i}-\textbackslash \\
\textbf{ dinner }\quad \ \textbackslash \textprimstress di-n\textschwa r\textbackslash \\
\textbf{ direct }\quad \ \textbackslash d\textschwa -\textprimstress rekt\ ,\ d\={i}-\textbackslash \\
\textbf{ direction }\quad \ \textbackslash d\textschwa -\textprimstress rek-sh\textschwa n\ ,\ d\={i}-\textbackslash \\
\textbf{ directly }\quad \ \textbackslash d\textschwa -\textprimstress rek(t)-l\={e}\ ,\ d\={i}-,\ in\ sense\ 2\ especially\ d\textschwa -\textprimstress rek-l\={e}\ or\ \textprimstress drek-l\={e}\textbackslash \\
\textbf{ director }\quad \ \textbackslash d\textschwa -\textprimstress rek-t\textschwa r\ ,\ d\={i}-\textbackslash \\
\textbf{ directory }\quad \ \textbackslash d\textschwa -\textprimstress rek-t(\textschwa -)r\={e}\ ,\ d\={i}-\textbackslash \\
\textbf{ dirt }\quad \textbackslash \textprimstress d\textschwa rt\textbackslash \\
\textbf{ dirty }\quad \textbackslash \textprimstress d\textschwa r-t\={e}\textbackslash \\
\textbf{ disabled }\quad \ \textbackslash dis-\textprimstress \={a}-b\textschwa ld\ ,\ diz-\textprimstress \={a}-\textbackslash \\
\textbf{ disagree }\quad \ \textbackslash \textsecstress dis-\textschwa -\textprimstress gr\={e}\textbackslash \\
\textbf{ disappear }\quad \ \textbackslash \textsecstress dis-\textschwa -\textprimstress pir\textbackslash \\
\textbf{ disappoint }\quad \ \textbackslash \textsecstress dis-\textschwa -\textprimstress p\.{o}int\textbackslash \\
\textbf{ disappointed }\quad \ \textbackslash \textsecstress dis-\textschwa -\textprimstress p\.{o}in-t\textschwa d\textbackslash \\
\textbf{ disaster }\quad \ \textbackslash di-\textprimstress za-st\textschwa r\ ,\ -\textprimstress sa-\textbackslash \\
\textbf{ discipline }\quad \ \textbackslash \textprimstress di-s\textschwa -pl\textschwa n\textbackslash \\
\textbf{ discount }\quad \ \textbackslash \textprimstress di-\textsecstress skau\. nt\textbackslash \\
\textbf{ discover }\quad \ \textbackslash di-\textprimstress sk\textschwa -v\textschwa r\textbackslash \\
\textbf{ discovery }\quad \ \textbackslash di-\textprimstress sk\textschwa -v(\textschwa -)r\={e}\textbackslash \\
\textbf{ discuss }\quad \ \textbackslash di-\textprimstress sk\textschwa s\textbackslash \\
\textbf{ discussion }\quad \ \textbackslash di-\textprimstress sk\textschwa -sh\textschwa n\textbackslash \\
\textbf{ disease }\quad \ \textbackslash di-\textprimstress z\={e}z\textbackslash \\
\textbf{ disgusting }\quad \ \textbackslash di-\textprimstress sk\textschwa -sti\engma \ ,\ dis-\textprimstress g\textschwa -\ also\ diz-\textbackslash \\
\textbf{ dish }\quad \textbackslash \textprimstress dish\textbackslash \\
\textbf{ disk }\quad \textbackslash \textprimstress disk\textbackslash \\
\textbf{ dismiss }\quad \ \textbackslash dis-\textprimstress mis\textbackslash \\
\textbf{ display }\quad \ \textbackslash di-\textprimstress spl\={a}\textbackslash \\
\textbf{ dispute }\quad \ \textbackslash di-\textprimstress spy\"{u}t\textbackslash \\
\textbf{ distance }\quad \ \textbackslash \textprimstress di-st\textschwa n(t)s\textbackslash \\
\textbf{ distant }\quad \ \textbackslash \textprimstress di-st\textschwa nt\textbackslash \\
\textbf{ distinct }\quad \ \textbackslash di-\textprimstress sti\engma (k)t\textbackslash \\
\textbf{ distinction }\quad \ \textbackslash di-\textprimstress sti\engma (k)-sh\textschwa n\textbackslash \\
\textbf{ distinguish }\quad \ \textbackslash di-\textprimstress sti\engma -(g)wish\textbackslash \\
\textbf{ distribute }\quad \ \textbackslash di-\textprimstress stri-by\"{u}t\ \ also\ -by\textschwa t\ ,\ British\ also\ \textprimstress di-stri-\textsecstress by\"{u}t\textbackslash \\
\textbf{ distribution }\quad \ \textbackslash \textsecstress di-str\textschwa -\textprimstress by\"{u}-sh\textschwa n\textbackslash \\
\textbf{ district }\quad \ \textbackslash \textprimstress di-(\textsecstress )strikt\textbackslash \\
\textbf{ disturb }\quad \ \textbackslash di-\textprimstress st\textschwa rb\textbackslash \\
\textbf{ divide }\quad \ \textbackslash d\textschwa -\textprimstress v\={i}d\textbackslash \\
\textbf{ division }\quad \ \textbackslash d\textschwa -\textprimstress vi-zh\textschwa n\textbackslash \\
\textbf{ divorce }\quad \ \textbackslash d\textschwa -\textprimstress v\.{o}rs\ \ also\ d\={i}-\textbackslash \\
\textbf{ do }\quad \textbackslash \textprimstress d\"{u}\textbackslash \\
\textbf{ doctor }\quad \ \textbackslash \textprimstress d\"{a}k-t\textschwa r\textbackslash \\
\textbf{ document }\quad \ \textbackslash \textprimstress d\"{a}-ky\textschwa -m\textschwa nt\ ,\ -ky\"{u}-\textbackslash \\
\textbf{ dog }\quad \textbackslash \textprimstress d\.{o}g\ ,\ \textprimstress d\"{a}g\textbackslash \\
\textbf{ dollar }\quad \ \textbackslash \textprimstress d\"{a}-l\textschwa r\textbackslash \\
\textbf{ domestic }\quad \ \textbackslash d\textschwa -\textprimstress me-stik\textbackslash \\
\textbf{ dominant }\quad \ \textbackslash \textprimstress d\"{a}-m\textschwa -n\textschwa nt\ ,\ \textprimstress d\"{a}m-n\textschwa nt\textbackslash \\
\textbf{ dominate }\quad \ \textbackslash \textprimstress d\"{a}-m\textschwa -\textsecstress n\={a}t\textbackslash \\
\textbf{ door }\quad \textbackslash \textprimstress d\.{o}r\textbackslash \\
\textbf{ dot }\quad \textbackslash \textprimstress d\"{a}t\textbackslash \\
\textbf{ double }\quad \ \textbackslash \textprimstress d\textschwa -b\textschwa l\textbackslash \\
\textbf{ doubt }\quad \textbackslash \textprimstress dau\. t\textbackslash \\
\textbf{ down }\quad \textbackslash \textprimstress dau\. n\textbackslash \\
\textbf{ downstairs }\quad \ \textbackslash \textprimstress dau\. n-\textprimstress sterz\textbackslash \\
\textbf{ downtown }\quad \ \textbackslash \textsecstress dau\. n-\textprimstress tau\. n\textbackslash \\
\textbf{ dozen }\quad \ \textbackslash \textprimstress d\textschwa -z\textsuperscript{\textreve}n\textbackslash \\
\textbf{ draft }\quad \textbackslash \textprimstress draft\ ,\ \textprimstress dr\"{a}ft\textbackslash \\
\textbf{ drag }\quad \textbackslash \textprimstress drag\textbackslash \\
\textbf{ drama }\quad \ \textbackslash \textprimstress dr\"{a}-m\textschwa \ ,\ \textprimstress dra-\textbackslash \\
\textbf{ dramatic }\quad \ \textbackslash dr\textschwa -\textprimstress ma-tik\textbackslash \\
\textbf{ draw }\quad \textbackslash \textprimstress dr\.{o}\textbackslash \\
\textbf{ drawer }\quad \ \textbackslash \textprimstress dr\.{o}(-\textschwa )r\textbackslash \\
\textbf{ drawing }\quad \ \textbackslash \textprimstress dr\.{o}(-)i\engma \textbackslash \\
\textbf{ dream }\quad \textbackslash \textprimstress dr\={e}m\textbackslash \\
\textbf{ dress }\quad \textbackslash \textprimstress dres\textbackslash \\
\textbf{ drink }\quad \textbackslash \textprimstress dri\engma k\textbackslash \\
\textbf{ drive }\quad \textbackslash \textprimstress dr\={i}v\textbackslash \\
\textbf{ driver }\quad \ \textbackslash \textprimstress dr\={i}-v\textschwa r\textbackslash \\
\textbf{ drop }\quad \textbackslash \textprimstress dr\"{a}p\textbackslash \\
\textbf{ drug }\quad \textbackslash \textprimstress dr\textschwa g\textbackslash \\
\textbf{ drunk }\quad \textbackslash \textprimstress dr\textschwa \engma k\textbackslash \\
\textbf{ dry }\quad \textbackslash \textprimstress dr\={i}\textbackslash \\
\textbf{ dude }\quad \textbackslash \textprimstress d\"{u}d\ \ also\ \textprimstress dy\"{u}d\textbackslash \\
\textbf{ due }\quad \textbackslash \textprimstress d\"{u}\ ,\ \textprimstress dy\"{u}\textbackslash \\
\textbf{ dull }\quad \textbackslash \textprimstress d\textschwa l\textbackslash \\
\textbf{ dumb }\quad \textbackslash \textprimstress d\textschwa m\textbackslash \\
\textbf{ dump }\quad \textbackslash \textprimstress d\textschwa mp\textbackslash \\
\textbf{ during }\quad \ \textbackslash \textprimstress du\. r-i\engma \ \ also\ \textprimstress dyu\. r-\textbackslash \\
\textbf{ dust }\quad \textbackslash \textprimstress d\textschwa st\textbackslash \\
\textbf{ duty }\quad \ \textbackslash \textprimstress d\"{u}-t\={e}\ \ also\ \textprimstress dy\"{u}-\textbackslash \\
\textbf{ each }\quad \textbackslash \textprimstress \={e}ch\textbackslash \\
\textbf{ ear }\quad \textbackslash \textprimstress ir\textbackslash \\
\textbf{ early }\quad \ \textbackslash \textprimstress \textschwa r-l\={e}\textbackslash \\
\textbf{ earn }\quad \textbackslash \textprimstress \textschwa rn\textbackslash \\
\textbf{ earth }\quad \textbackslash \textprimstress \textschwa rth\textbackslash \\
\textbf{ ease }\quad \textbackslash \textprimstress \={e}z\textbackslash \\
\textbf{ easily }\quad \ \textbackslash \textprimstress \={e}z-l\={e}\ ,\ \textprimstress \={e}-z\textschwa -\textbackslash \\
\textbf{ east }\quad \textbackslash \textprimstress \={e}st\textbackslash \\
\textbf{ eastern }\quad \ \textbackslash \textprimstress \={e}-st\textschwa rn\textbackslash \\
\textbf{ easy }\quad \textbackslash \textprimstress \={e}-z\={e}\textbackslash \\
\textbf{ eat }\quad \textbackslash \textprimstress \={e}t\textbackslash \\
\textbf{ economic }\quad \ \textbackslash \textsecstress e-k\textschwa -\textprimstress n\"{a}-mik\ ,\ \textsecstress \={e}-k\textschwa -\textbackslash \\
\textbf{ economics }\quad \ \textbackslash \textsecstress e-k\textschwa -\textprimstress n\"{a}-miks\ ,\ \textsecstress \={e}-k\textschwa -\textbackslash \\
\textbf{ economy }\quad \ \textbackslash i-\textprimstress k\"{a}-n\textschwa -m\={e}\ ,\ \textschwa -,\ \={e}-\textbackslash \\
\textbf{ edge }\quad \textbackslash \textprimstress ej\textbackslash \\
\textbf{ edition }\quad \ \textbackslash i-\textprimstress di-sh\textschwa n\textbackslash \\
\textbf{ editor }\quad \ \textbackslash \textprimstress e-d\textschwa -t\textschwa r\textbackslash \\
\textbf{ education }\quad \ \textbackslash \textsecstress e-j\textschwa -\textprimstress k\={a}-sh\textschwa n\textbackslash \\
\textbf{ educational }\quad \ \textbackslash \textsecstress e-j\textschwa -\textprimstress k\={a}-sh\textschwa n\textbackslash \\
\textbf{ effect }\quad \ \textbackslash i-\textprimstress fekt\ ,\ e-,\ \={e}-,\ \textschwa -\textbackslash \\
\textbf{ effective }\quad \ \textbackslash i-\textprimstress fek-tiv\ ,\ e-,\ \={e}-,\ \textschwa -\textbackslash \\
\textbf{ effectively }\quad \ \textbackslash i-\textprimstress fek-tiv-l\={e}\ ,\ e-,\ \={e}-,\ \textschwa -\textbackslash \\
\textbf{ efficiency }\quad \ \textbackslash i-\textprimstress fi-sh\textschwa n-s\={e}\textbackslash \\
\textbf{ efficient }\quad \ \textbackslash i-\textprimstress fi-sh\textschwa nt\textbackslash \\
\textbf{ effort }\quad \ \textbackslash \textprimstress e-f\textschwa rt\ ,\ -\textsecstress f\.{o}rt\textbackslash \\
\textbf{ egg }\quad \textbackslash \textprimstress eg\ ,\ \textprimstress \={a}g\textbackslash \\
\textbf{ either }\quad \ \textbackslash \textprimstress \={e}- h\textschwa r\ \ also\ \textprimstress \={i}-\textbackslash \\
\textbf{ elderly }\quad \ \textbackslash \textprimstress el-d\textschwa r-l\={e}\textbackslash \\
\textbf{ elect }\quad \textbackslash i-\textprimstress lekt\textbackslash \\
\textbf{ election }\quad \ \textbackslash i-\textprimstress lek-sh\textschwa n\textbackslash \\
\textbf{ electric }\quad \ \textbackslash i-\textprimstress lek-trik\ ,\ \={e}-\textbackslash \\
\textbf{ electrical }\quad \ \textbackslash i-\textprimstress lek-trik\ ,\ \={e}-\textbackslash \\
\textbf{ electricity }\quad \ \textbackslash i-\textsecstress lek-\textprimstress tri-s\textschwa -t\={e}\ ,\ \={e}-,\ -\textprimstress tri-st\={e}\textbackslash \\
\textbf{ electronic }\quad \ \textbackslash i-\textsecstress lek-\textprimstress tr\"{a}-nik\textbackslash \\
\textbf{ element }\quad \ \textbackslash \textprimstress e-l\textschwa -m\textschwa nt\textbackslash \\
\textbf{ elevator }\quad \ \textbackslash \textprimstress e-l\textschwa -\textsecstress v\={a}-t\textschwa r\textbackslash \\
\textbf{ else }\quad \textbackslash \textprimstress el(t)s\textbackslash \\
\textbf{ elsewhere }\quad \ \textbackslash \textprimstress el(t)s-\textsecstress (h)wer\textbackslash \\
\textbf{ email }\quad \textbackslash \textprimstress \={e}-\textsecstress m\={a}l\textbackslash \\
\textbf{ embarrassed }\quad \ \textbackslash im-\textprimstress ber-\textschwa st\ ,\ -\textprimstress ba-r\textschwa st\textbackslash \\
\textbf{ emerge }\quad \textbackslash i-\textprimstress m\textschwa rj\textbackslash \\
\textbf{ emergency }\quad \ \textbackslash i-\textprimstress m\textschwa r-j\textschwa n(t)-s\={e}\textbackslash \\
\textbf{ emotion }\quad \ \textbackslash i-\textprimstress m\={o}-sh\textschwa n\textbackslash \\
\textbf{ emotional }\quad \ \textbackslash i-\textprimstress m\={o}-shn\textschwa l\ ,\ -sh\textschwa -n\textsuperscript{\textreve}l\textbackslash \\
\textbf{ emphasis }\quad \ \textbackslash \textprimstress em(p)-f\textschwa -s\textschwa s\textbackslash \\
\textbf{ emphasize }\quad \ \textbackslash \textprimstress em(p)-f\textschwa -\textsecstress s\={i}z\textbackslash \\
\textbf{ empire }\quad \ \textbackslash \textprimstress em-\textsecstress p\={i}(-\textschwa )r\textbackslash \\
\textbf{ employ }\quad \ \textbackslash im-\textprimstress pl\.{o}i\ ,\ em-\textbackslash \\
\textbf{ employee }\quad \ \textbackslash im-\textsecstress pl\.{o}(i)-\textprimstress \={e}\ ,\ (\textsecstress )em-;\ im-\textprimstress pl\.{o}(i)-\textsecstress \={e},\ em-\textbackslash \\
\textbf{ employer }\quad \ \textbackslash im-\textprimstress pl\.{o}i-\textschwa r\ ,\ em-\textbackslash \\
\textbf{ employment }\quad \ \textbackslash im-\textprimstress pl\.{o}i-m\textschwa nt\textbackslash \\
\textbf{ empty }\quad \ \textbackslash \textprimstress em(p)-t\={e}\textbackslash \\
\textbf{ enable }\quad \ \textbackslash i-\textprimstress n\={a}-b\textschwa l\textbackslash \\
\textbf{ encounter }\quad \ \textbackslash in-\textprimstress kau\. n-t\textschwa r\ ,\ en-\textbackslash \\
\textbf{ encourage }\quad \ \textbackslash in-\textprimstress k\textschwa r-ij\ ,\ -\textprimstress k\textschwa -rij,\ en-\textbackslash \\
\textbf{ encouraging }\quad \ \textbackslash in-\textprimstress k\textschwa r-i-ji\engma \ ,\ -\textprimstress k\textschwa -ri-,\ en-\textbackslash \\
\textbf{ end }\quad \textbackslash \textprimstress end\textbackslash \\
\textbf{ enemy }\quad \ \textbackslash \textprimstress e-n\textschwa -m\={e}\textbackslash \\
\textbf{ energy }\quad \ \textbackslash \textprimstress e-n\textschwa r-j\={e}\textbackslash \\
\textbf{ engage }\quad \ \textbackslash in-\textprimstress g\={a}j\ ,\ en-\textbackslash \\
\textbf{ engine }\quad \ \textbackslash \textprimstress en-j\textschwa n\textbackslash \\
\textbf{ engineer }\quad \ \textbackslash \textsecstress en-j\textschwa -\textprimstress nir\textbackslash \\
\textbf{ engineering }\quad \ \textbackslash \textsecstress en-j\textschwa -\textprimstress nir-i\engma \textbackslash \\
\textbf{ enhance }\quad \ \textbackslash in-\textprimstress han(t)s\ ,\ en-\textbackslash \\
\textbf{ enjoy }\quad \ \textbackslash in-\textprimstress j\.{o}i\ ,\ en-\textbackslash \\
\textbf{ enjoyable }\quad \ \textbackslash in-\textprimstress j\.{o}i\ ,\ en-\textbackslash \\
\textbf{ enormous }\quad \ \textbackslash i-\textprimstress n\.{o}r-m\textschwa s\ ,\ \={e}-\textbackslash \\
\textbf{ enough }\quad \textbackslash i-\textprimstress n\textschwa f\ ,\ \={e}-,\ \textschwa -\textbackslash \\
\textbf{ enquiry }\quad \ \textbackslash in-\textprimstress kw\={i}(-\textschwa )r\ ,\ \textprimstress in-\textsecstress kw\={i}(-\textschwa )r-\={e}\ ,\ in-\textprimstress kw\={i}(-\textschwa )r-\={e};\ \textprimstress in-kw\textschwa -r\={e},\ \textprimstress i\engma -\textbackslash \\
\textbf{ ensure }\quad \ \textbackslash in-\textprimstress shu\. r\textbackslash \\
\textbf{ enter }\quad \ \textbackslash \textprimstress en-t\textschwa r\textbackslash \\
\textbf{ enterprise }\quad \ \textbackslash \textprimstress en-t\textschwa r-\textsecstress pr\={i}z\ ,\ \textprimstress en-t\textschwa -\textsecstress pr\={i}z\textbackslash \\
\textbf{ entertainment }\quad \ \textbackslash \textsecstress en-t\textschwa r-\textprimstress t\={a}n-m\textschwa nt\textbackslash \\
\textbf{ enthusiasm }\quad \ \textbackslash in-\textprimstress th\"{u}-z\={e}-\textsecstress a-z\textschwa m\ ,\ en-\ also\ -\textprimstress thy\"{u}-\textbackslash \\
\textbf{ enthusiastic }\quad \ \textbackslash in-\textsecstress th\"{u}-z\={e}-\textprimstress a-stik\ ,\ en-\ also\ -\textsecstress thy\"{u}-\textbackslash \\
\textbf{ entire }\quad \ \textbackslash in-\textprimstress t\={i}(-\textschwa )r\ ,\ \textprimstress en-\textsecstress t\={i}(-\textschwa )r\textbackslash \\
\textbf{ entirely }\quad \ \textbackslash in-\textprimstress t\={i}(-\textschwa )r-l\={e}\ ,\ \textprimstress en-\textsecstress t\={i}(-\textschwa )r-\textbackslash \\
\textbf{ entitle }\quad \ \textbackslash in-\textprimstress t\={i}-t\textsuperscript{\textreve}l\ ,\ en-\textbackslash \\
\textbf{ entrance }\quad \ \textbackslash \textprimstress en-tr\textschwa n(t)s\textbackslash \\
\textbf{ entry }\quad \ \textbackslash \textprimstress en-tr\={e}\textbackslash \\
\textbf{ envelope }\quad \ \textbackslash \textprimstress en-v\textschwa -\textsecstress l\={o}p\ ,\ \textprimstress \"{a}n-\textbackslash \\
\textbf{ environment }\quad \ \textbackslash in-\textprimstress v\={i}-r\textschwa (n)-m\textschwa nt\ ,\ -\textprimstress v\={i}(-\textschwa )r(n)-\textbackslash \\
\textbf{ environmental }\quad \ \textbackslash in-\textprimstress v\={i}-r\textschwa (n)-m\textschwa nt\ ,\ -\textprimstress v\={i}(-\textschwa )r(n)-\textbackslash \\
\textbf{ equal }\quad \textbackslash \textprimstress \={e}-kw\textschwa l\textbackslash \\
\textbf{ equally }\quad \ \textbackslash \textprimstress \={e}-kw\textschwa -l\={e}\textbackslash \\
\textbf{ equipment }\quad \ \textbackslash i-\textprimstress kwip-m\textschwa nt\textbackslash \\
\textbf{ equivalent }\quad \ \textbackslash i-\textprimstress kwiv-l\textschwa nt\ ,\ -\textprimstress kwi-v\textschwa -\textbackslash \\
\textbf{ era }\quad \textbackslash \textprimstress er-\textschwa \ ,\ \textprimstress e-r\textschwa ,\ \textprimstress ir-\textschwa \textbackslash \\
\textbf{ error }\quad \ \textbackslash \textprimstress er-\textschwa r\ ,\ \textprimstress e-r\textschwa r\textbackslash \\
\textbf{ escape }\quad \ \textbackslash i-\textprimstress sk\={a}p\ ,\ e-,\ dialectal\ ik-\textprimstress sk\={a}p\textbackslash \\
\textbf{ especially }\quad \ \textbackslash i-\textprimstress spesh-l\={e}\ ,\ -\textprimstress spe-sh\textschwa -\textbackslash \\
\textbf{ essay }\quad \ \textbackslash \textprimstress e-\textsecstress s\={a}\ ;\ senses\ 2,\ 3\ \& \ 4\ also\ e-\textprimstress s\={a}\textbackslash \\
\textbf{ essential }\quad \ \textbackslash i-\textprimstress sen(t)-sh\textschwa l\textbackslash \\