forked from greggshorthand/greggshorthand.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanebfs.html
1518 lines (1517 loc) · 48.1 KB
/
anebfs.html
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
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/main.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<!-- InstanceBeginEditable name="doctitle" -->
<title>Chart of Expert Brief Forms - Gregg Shorthand</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="main.css" rel="stylesheet" type="text/css" />
<link href="gregg.ico" rel="shortcut icon" />
<!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
</head>
<body>
<table width="948" border="0" cellpadding="0" cellspacing="0" class="text">
<tr>
<td colspan="2" bgcolor="#CCCCCC" style="height: 53px; background-image: url(images/title3.gif); background-position: bottom right; background-repeat: no-repeat"><p> </p></td>
<td width="182" bgcolor="#CCCCCC" style="background-image: url(images/gpco2.gif); background-position: top center; background-repeat: no-repeat"><div>
<div align="center"></div>
</div></td>
</tr>
<tr>
<td colspan="2" valign="top" bgcolor="#CC3333" style="height: 10px; background-image: url(images/title2.gif); background-position: top right; background-repeat: no-repeat">
<div class="text" style="color: #FFFFFF"> A Web Site dedicated to the
perpetuation of Gregg’s Light-Line Phonography</div></td>
<td width="182" bgcolor="#CC3333"><div align="center" style="color: #FFFFFF">
- Anniversary Manual -</div></td>
</tr>
<tr>
<td width="182" valign="top" bgcolor="#CCCCCC" class="unnamed1"><table width="186" border="0" cellpadding="2" cellspacing="2" class="text">
<tr>
<td width="178"> <span><a href="index.html">Home</a><br />
<br />
<strong> Reporting</strong><br />
<a href="jc.html">A Judge’s Charge</a><br />
<a href="repnotb3.html">Dupraw’s Notes</a><br />
<a href="repnotb1.html">Sklarew’s Notes</a><br />
<a href="repnotb2.html">Zoubek’s Notes</a><br />
<strong> Pre-Anniversary</strong><br />
<a href="abpreann.html">Description</a><br />
<a href="preannireference.html">Reference Material</a><br />
<a href="preanbfs.html">Brief Form List</a><br />
<strong> Anniversary</strong><br />
<a href="abannive.html">Description</a><br />
<a href="annireading.html">Reading Material</a><br />
<a href="annireference.html">Reference Material</a><br />
<a href="anbfs.html">Brief Form List</a><br />
<a href="anphrase.html">Most-Used Phrases</a><br />
<strong> Simplified</strong><br />
<a href="absimpli.html">Description</a><br />
<a href="smpbfs.html">Brief Form List</a><br />
<a href="dupraw.html">Dupraw on Note Size</a><br />
<strong> Diamond Jubilee</strong><br />
<a href="abdiamon.html">Description</a><br />
<a href="djbfs.html">Brief Form List</a><br />
<a href="djebfs.html">Expert Brief Form List</a><br />
<strong> Series 90</strong><br />
<a href="absrs90.html">Description</a><br />
<a href="s90bfs.html">Brief Form List</a><br />
<strong> Centennial</strong><br />
<a href="abcenten.html">Description</a><br />
<a href="cenbfs.html">Brief Form List</a><br />
<strong> Taquigrafía Gregg</strong><br />
<a href="taquibfs.html">Gramálogos</a></span><br />
<strong> German Gregg</strong><br />
<a href="grmng001.html">Manual</a><br />
<strong> Esperanto Gregg</strong><br />
<a href="espgrg01.html">Manual</a><br />
<span><a href="esperbfs.html">Brief Forms</a><br />
<strong> Irish Gregg</strong><br />
<a href="irishgregg.pdf">Manual</a><br />
<br />
<a href="http://greggshorthand.blogspot.com/">Gregg Group</a><br />
<a href="http://www.greggshorthand.proboards.com/">Gregg Learning Forum</a><br />
<a href="http://www.shorthandclasses.com/">Ms. Letha’s SH Site</a><br />
<a href="http://www.shorthandshorthandshorthand.com/">Shorthand³</a><br />
<a href="http://www.omniglot.com/writing/shorthand.htm">Omniglot's Entry</a><br />
<a href="http://en.wikipedia.org/wiki/Gregg_Shorthand">Wikipedia's Entry</a><br />
<a href="http://www.stenospeed.com/">Stenospeed Dictation</a><br />
<a href="http://www.stenospeed.com/">Practice</a><br />
<a href="http://www.jandrewowen.com/">Andrew Owen</a></span> </td>
</tr>
</table></td>
<!-- InstanceBeginEditable name="EditRegion3" -->
<td width="585" valign="top" bgcolor="#FFFFFF"><table width="100%" border="0" cellpadding="2" cellspacing="2">
<tr>
<td width="79%" colspan="2" class="text"><p align="center"><strong>Chart
of Gregg Shorthand Anniversary Expert Brief Forms</strong></p>
<p align="left">Take 1: </p>
<p>Take 2: </p>
<p>Take 3: </p>
<p>Take 4: </p>
<p>Take 5: </p>
<p>Take 6: </p>
<p>Take 7: </p>
<p>Take 8: establish, established, establishing, establishment, establishments,
Senator, Senators, Senator from Illinois, Senator from Texas, Senator
from Louisiana, junior Senator from Montana, senior Senator from
Michigan, Senators from Pennsylvania, Federal, Federal employee,
Federal taxes, Federal Treasury, Federal Court, Federal Government,
Federal Reserve Board, Federal Reserve Bank, national government,
national defense, in other words</p>
<p>Take 9: compensate, compensates, compensation, compensatory, compensated,
notice, notices, noticed, I have noticed, I noticed, practical,
practically, impractical, Department of Justice, Department of State,
Department of War, Department of Agriculture, Department of Commerce,
Department of Labor, Treasury Department, Navy Department, Post
Office Department, District of Columbia</p>
<p>Take 10: amendment, amends, amended, explain, explains, explanation,
explained, responsibility, responsibilities, standard, standards,
wise, wisely, wiser, unwise</p>
<p>Take 12: available, availability, chairman, chairmanship, chairman
of the committee, chairman of the subcommittee, pretty, pretty much,
pretty well, pretty near, pretty bad, he has, he has done, Member
of the House, Members of the House, Member of this House, Members
of this House, member of the committee, member of the subcommittee,
members of the subcommittee, Member of the Senate, Members of the
Senate, Members of the Senate of the United States, Member of Congress,
Members of Congress</p>
<p>Take 13: bureau, bureaus, bureaucratic, bureaucrat, colleague,
colleagues, constituents, expenditures, involved, involving</p>
<p>Take 14: Conference, Conferences, regulate, regulating, regulated,
regulation, regulations, unregulated, carry on, carrying on, to
carry on, House of Representatives, on the floor of the House of
Representatives, Members of the House of Representatives, Secretary
of Commerce, Secretary of Agriculture, Secretary of Treasury, Secretary
of State, Secretary of Labor, Secretary of the Interior, Secretary
of War, Secretary of the Navy</p>
<p>Take 15: accumulate, accumulates, accumulation, accumulating, accumulated,
resolution, resolutions, joint resolution, House resolution, pending
resolution, Senate resolution, treaty, treaties, moment ago, few
moments, at this moment, at the moment, just a moment, few moments
ago, at the present moment, point out, pointing out, pointed out,
to point out</p>
<p>Take 16: emergency, emergencies, expense, expenses, expensive,
inexpensive, reduce, reduced, reducing, reduction, wage, wages,
under the circumstances, under such circumstances, same circumstances,
ordinary circumstances, similar circumstances</p>
<p>Take 17: years ago, several years ago, few years ago, 100 years
ago, a hundred years ago, ten years ago, two years ago, many years
ago, some years ago, about a year ago, pending bill, pending bills,
American people, observed, observing, observes, you will observe</p>
<p>Take 18: administrator, administrators, average, averaged, averages,
limitation, limitations, provision, provisions, amount of money,
amounts of money</p>
<p>Take 19: Republic, Republican, Republicans, as a result, in my
judgment, my friend, my friends</p>
<p>Take 20: General, Generally, taxpayer, taxpayers, in the House,
in the House of Representatives, he was, he was not</p>
<p>Take 21: election, elections, reelection, from time to time, either
side, both sides, on the other side, purchasing power<br />
</p>
<table width="100%" border="1" cellpadding="2" cellspacing="0" class="text">
<tr bgcolor="#CC6666">
<td width="43%" bgcolor="#CC3333"><div align="center" style="color: #FFFFFF"><strong>Word</strong></div></td>
<td width="44%" bgcolor="#CC3333"><div align="center" style="color: #FFFFFF"><strong>Brief
Form (text)</strong></div></td>
</tr>
<tr>
<td>agree</td>
<td>a loop [over the line]</td>
</tr>
<tr>
<td> community</td>
<td>k / mt</td>
</tr>
<tr>
<td> communities</td>
<td>k mt [left s]</td>
</tr>
<tr>
<td> inform</td>
<td>n f</td>
</tr>
<tr>
<td>informed</td>
<td>n f / t</td>
</tr>
<tr>
<td>informs</td>
<td>n f [right s]</td>
</tr>
<tr>
<td>uninformed</td>
<td>n [jog] n f / t</td>
</tr>
<tr>
<td>product</td>
<td>p r o</td>
</tr>
<tr>
<td> products</td>
<td>p r o [left s]</td>
</tr>
<tr>
<td> productive</td>
<td>p r o k v</td>
</tr>
<tr>
<td>production</td>
<td>p r o k sh</td>
</tr>
<tr>
<td>produce</td>
<td>p r u [right s]</td>
</tr>
<tr>
<td>produced</td>
<td>p r u [right s] t</td>
</tr>
<tr>
<td>producing</td>
<td>p r u [right s] / [dot]</td>
</tr>
<tr>
<td>producer</td>
<td>p r u [right s] r</td>
</tr>
<tr>
<td>prosperity</td>
<td>p r p / r</td>
</tr>
<tr>
<td>Mr. President</td>
<td>m r p</td>
</tr>
<tr>
<td height="22">committee</td>
<td>k e</td>
</tr>
<tr>
<td> committees</td>
<td>k e s</td>
</tr>
<tr>
<td> subcommittee</td>
<td>[right s] k e</td>
</tr>
<tr>
<td>committed</td>
<td>k e / t</td>
</tr>
<tr>
<td>recommitted</td>
<td>r e k e / t</td>
</tr>
<tr>
<td>finance committee</td>
<td>f e n a n [left s] k e</td>
</tr>
<tr>
<td>House Committee</td>
<td>us k e</td>
</tr>
<tr>
<td> economy</td>
<td>e k e</td>
</tr>
<tr>
<td>economies</td>
<td>e k e [right s]</td>
</tr>
<tr>
<td>economic</td>
<td>e k e k</td>
</tr>
<tr>
<td>economics</td>
<td>e k e k s</td>
</tr>
<tr>
<td>economical</td>
<td>e k / k</td>
</tr>
<tr>
<td>economically</td>
<td>e k / k e</td>
</tr>
<tr>
<td>uneconomical</td>
<td>u n e k / k</td>
</tr>
<tr>
<td>legislation</td>
<td>l j</td>
</tr>
<tr>
<td>pending legislation</td>
<td>pnd l j</td>
</tr>
<tr>
<td>carry out</td>
<td>k a e t</td>
</tr>
<tr>
<td>carrying out</td>
<td>k a e t [dot]</td>
</tr>
<tr>
<td>to carry out</td>
<td>t u k a e t</td>
</tr>
<tr>
<td>provide</td>
<td>p v a</td>
</tr>
<tr>
<td> provides</td>
<td>p v a [right s]</td>
</tr>
<tr>
<td>providing</td>
<td>p v a [dot]</td>
</tr>
<tr>
<td>to provide</td>
<td>t p v a</td>
</tr>
<tr>
<td> Mr. Speaker</td>
<td>m r s p</td>
</tr>
<tr>
<td>court</td>
<td>k t</td>
</tr>
<tr>
<td> courts</td>
<td>k t s</td>
</tr>
<tr>
<td>Supreme Court</td>
<td>[right s] / k t</td>
</tr>
<tr>
<td> Supreme Court of the United States</td>
<td>[right s] / k t e u s</td>
</tr>
<tr>
<td>employee</td>
<td>m p e</td>
</tr>
<tr>
<td>employees</td>
<td>m p e [left s]</td>
</tr>
<tr>
<td>service</td>
<td>[left s] (over the line)</td>
</tr>
<tr>
<td>services</td>
<td>[left s][left s]</td>
</tr>
<tr>
<td>against</td>
<td>a g</td>
</tr>
<tr>
<td>against the</td>
<td>a g th</td>
</tr>
<tr>
<td>against this</td>
<td>a g th [right s]</td>
</tr>
<tr>
<td>against that</td>
<td>a g th a</td>
</tr>
<tr>
<td>against it</td>
<td>a g t</td>
</tr>
<tr>
<td>against us</td>
<td>a g us</td>
</tr>
<tr>
<td>against any</td>
<td>a g n e</td>
</tr>
<tr>
<td>against him</td>
<td>a g m</td>
</tr>
<tr>
<td>against them</td>
<td>a g th m</td>
</tr>
<tr>
<td> civil service</td>
<td>[right s] [right s]</td>
</tr>
<tr>
<td>Civil Service Court</td>
<td>[right s] [right s] k t</td>
</tr>
<tr>
<td>Civil Service Committee</td>
<td>[right s] [right s] k e</td>
</tr>
<tr>
<td>Civil Service Law</td>
<td>[right s] [right s] l o</td>
</tr>
<tr>
<td>Civil Service Commission</td>
<td>[right s] [right s] k m sh</td>
</tr>
<tr>
<td>Government of the United States</td>
<td>g v e u [right s]</td>
</tr>
<tr>
<td>Constitution of the United States</td>
<td>k [right s] t sh e u [right s]</td>
</tr>
<tr>
<td>Congress of the United States</td>
<td>k g e u [right s]</td>
</tr>
<tr>
<td>people of the United States</td>
<td>p e p e u [right s]</td>
</tr>
<tr>
<td>President of the United States</td>
<td>p r e [left s] dn e u [right s]</td>
</tr>
<tr>
<td>debate</td>
<td>d b a</td>
</tr>
<tr>
<td>debates</td>
<td>d b a [left s]</td>
</tr>
<tr>
<td>debated</td>
<td>d b a / t</td>
</tr>
<tr>
<td> reason</td>
<td>r [right s]</td>
</tr>
<tr>
<td>reasons</td>
<td>r [right s] [right s]</td>
</tr>
<tr>
<td>reasonably</td>
<td>r [right s] e</td>
</tr>
<tr>
<td>unreasonable</td>
<td>n r [right s]</td>
</tr>
<tr>
<td>reason why</td>
<td>r [right s] i</td>
</tr>
<tr>
<td>reasons why</td>
<td>r [right s] [right s] i</td>
</tr>
<tr>
<td>no reason why</td>
<td>n o r [right s] i</td>
</tr>
<tr>
<td>for that reason</td>
<td>f [over th] a r [right s]</td>
</tr>
<tr>
<td>for the reason that</td>
<td>f [over th] r [right s] [over th] a</td>
</tr>
<tr>
<td> by reason of the</td>
<td>b r [right s] [over th]</td>
</tr>
<tr>
<td> by reason of that</td>
<td>b r [right s] [over th] a</td>
</tr>
<tr>
<td>by reason of my</td>
<td>b r [right s] m a</td>
</tr>
<tr>
<td>by reason of their</td>
<td>b r [right s] [under th]</td>
</tr>
<tr>
<td>brought up</td>
<td>b r o t p</td>
</tr>
<tr>
<td> comes up</td>
<td>k m p</td>
</tr>
<tr>
<td> came up</td>
<td>k a m p</td>
</tr>
<tr>
<td>get up</td>
<td>g e t p</td>
</tr>
<tr>
<td> sit up</td>
<td>s e t p</td>
</tr>
<tr>
<td>brings up</td>
<td>b r [left s] / p</td>
</tr>
<tr>
<td>comes up</td>
<td>k m s / p</td>
</tr>
<tr>
<td> puts up</td>
<td>p s / p</td>
</tr>
<tr>
<td>wind up</td>
<td>u i nd p</td>
</tr>
<tr>
<td>gentleman of Pennsylvania</td>
<td>jnt / p a</td>
</tr>
<tr>
<td> gentleman of Ohio</td>
<td>jnt / o</td>
</tr>
<tr>
<td>gentleman of Texas</td>
<td>jnt / t x</td>
</tr>
<tr>
<td>gentleman of Wyoming</td>
<td>jnt / u i m [dot]</td>
</tr>
<tr>
<td>gentleman of New York</td>
<td>jnt n r k</td>
</tr>
<tr>
<td>gentleman of Louisiana</td>
<td>jnt l a</td>
</tr>
<tr>
<td>the floor</td>
<td>[over th] / f</td>
</tr>
<tr>
<td>the floor of the House</td>
<td>[over th] / f us</td>
</tr>
<tr>
<td>to the floor</td>
<td>t u th / f</td>
</tr>
<tr>
<td>to the floor of the House</td>
<td>t u th / f us</td>
</tr>
<tr>
<td>on the floor</td>
<td>o n th / f</td>
</tr>
<tr>
<td>on the floor of the House</td>
<td>o n th / f us</td>
</tr>
<tr>
<td>from the floor</td>
<td>f m th / f</td>
</tr>
<tr>
<td>from the floor of the House</td>
<td>f m th / f us</td>
</tr>
<tr>
<td> on this floor</td>
<td>o n ths / f</td>
</tr>
<tr>
<td>stop</td>
<td>ss</td>
</tr>
<tr>
<td>stopped</td>
<td>ss t</td>
</tr>
<tr>
<td>stops</td>
<td>ss [right s]</td>
</tr>
<tr>
<td>to stop</td>
<td> t ss</td>
</tr>
<tr>
<td>who will stop</td>
<td>h u l ss</td>
</tr>
<tr>
<td>could not stop</td>
<td>k d n ss</td>
</tr>
<tr>
<td>appropriate</td>
<td>a p r a</td>
</tr>
<tr>
<td>appropriation</td>
<td>a p r a sh</td>
</tr>
<tr>
<td> appropriates</td>
<td>a p r a [left s]</td>
</tr>
<tr>
<td> appropriated</td>
<td>a p r a / t</td>
</tr>
<tr>
<td>appropriating</td>
<td>a p r a [dot]</td>
</tr>
<tr>
<td>appropriation bill</td>
<td>a p r a b l</td>
</tr>
<tr>
<td> Appropriation Committee</td>
<td>a p r a sh k e</td>
</tr>
<tr>
<td>case</td>
<td>k a</td>
</tr>
<tr>
<td>cases</td>
<td>k a [left ss]</td>
</tr>
<tr>
<td>in case</td>
<td>n k a</td>
</tr>
<tr>
<td> in this case</td>
<td>n ths k a</td>
</tr>
<tr>
<td>increase</td>
<td>e nk</td>
</tr>
<tr>
<td>increases</td>
<td>e nk s</td>
</tr>
<tr>
<td> increased</td>
<td>e nk t</td>
</tr>
<tr>
<td> increasing</td>
<td>e nk [dot]</td>
</tr>
<tr>
<td>increasingly</td>
<td>e nk / e</td>
</tr>
<tr>
<td>ever-increasing</td>
<td>e v e nk [dot]</td>
</tr>
<tr>
<td>to increase</td>
<td>t e nk</td>
</tr>
<tr>
<td> treasury</td>
<td>t r e sh</td>
</tr>
<tr>
<td>Treasury Department</td>
<td>t r e sh / d</td>
</tr>
<tr>
<td>United States Treasury</td>
<td>e u s t r e sh</td>
</tr>
<tr>
<td> Treasury of the United States</td>
<td>t r e sh e u s</td>
</tr>
<tr>
<td>Senate</td>
<td>s e n</td>
</tr>
<tr>
<td>United States Senate</td>
<td>e u s s e n</td>
</tr>
<tr>
<td>Senate of the United States</td>
<td>s e n e u s</td>
</tr>
<tr>
<td> Senate committee</td>
<td>s e n k e</td>
</tr>
<tr>
<td>Senate committees</td>
<td>s e n k e s</td>
</tr>
<tr>
<td>Senate Bill</td>
<td>s e n b l</td>
</tr>
<tr>
<td>on the floor of the Senate</td>
<td>o n th / f s e n</td>
</tr>
<tr>
<td> House and Senate</td>
<td>us s e n</td>
</tr>
<tr>
<td>a fact</td>
<td>[dot] / f</td>
</tr>
<tr>
<td>the fact</td>
<td>[over th] / f</td>
</tr>
<tr>
<td>the facts</td>
<td>[over th] / f s</td>
</tr>
<tr>
<td>the fact that</td>
<td>[over th] / f [over th] a [over th]</td>
</tr>
<tr>
<td> that fact</td>
<td>[over th] a / f</td>
</tr>
<tr>
<td>one fact</td>
<td>u n / f</td>
</tr>
<tr>
<td>these facts</td>
<td>th e s / f s</td>
</tr>
<tr>
<td>some facts</td>
<td>s m / f s</td>
</tr>
<tr>
<td>of the fact</td>
<td>o [over th] / f</td>
</tr>
<tr>
<td>on the facts</td>
<td>o n [over th] / f s</td>
</tr>
<tr>
<td>because of the fact that</td>
<td>k [left s] f th a</td>
</tr>
<tr>
<td>in spite of the fact</td>
<td>n s p i t f</td>
</tr>
<tr>
<td>in view of the fact that</td>
<td>n v f th a</td>
</tr>
<tr>
<td>necessary facts</td>
<td>n e ss / f s</td>
</tr>
<tr>
<td>question of fact</td>
<td>k sh / f</td>
</tr>
<tr>
<td>mind</td>
<td>m i</td>
</tr>
<tr>
<td> minds</td>
<td>m i s</td>
</tr>
<tr>
<td> minded</td>
<td>m i / t</td>
</tr>
<tr>
<td> keep in mind</td>
<td>k p m i</td>
</tr>
<tr>
<td>in mind</td>
<td>n [jog] m i</td>
</tr>
<tr>
<td>bear in mind</td>
<td>b [reverse a] m i</td>
</tr>
<tr>
<td>borne in mind</td>
<td>b o m i</td>
</tr>
<tr>
<td>to my mind</td>
<td>tm a m i</td>
</tr>
<tr>
<td>remind</td>
<td>r e m i</td>
</tr>
<tr>
<td>picture</td>
<td>p t r</td>
</tr>
<tr>
<td>pictured</td>
<td>p t r / t</td>
</tr>
<tr>
<td>it seems to me</td>
<td>t [right s] e tm e</td>
</tr>
<tr>
<td> for the purpose</td>
<td>f th p</td>
</tr>
<tr>
<td> for the purposes</td>
<td>f th p s</td>
</tr>
<tr>
<td>pictures</td>
<td>p t r s</td>
</tr>
<tr>
<td>democrat</td>
<td> </td>
</tr>
<tr>
<td>democrats</td>
<td> </td>
</tr>
<tr>
<td>undemocratic</td>
<td> </td>
</tr>
<tr>
<td>democracy</td>
<td> </td>
</tr>
<tr>
<td>take</td>
<td> </td>
</tr>
<tr>
<td>taking</td>
<td> </td>
</tr>
<tr>
<td>taken</td>
<td> </td>
</tr>
<tr>
<td>undertake</td>
<td> </td>
</tr>
<tr>
<td>undertaken</td>
<td> </td>
</tr>
<tr>
<td>painstaking</td>
<td> </td>
</tr>
<tr>
<td>to take</td>
<td> </td>
</tr>
<tr>
<td>take advantage</td>
<td> </td>
</tr>
<tr>
<td>take care</td>
<td> </td>
</tr>
<tr>
<td>take up</td>
<td> </td>
</tr>
<tr>
<td>I take</td>
<td> </td>
</tr>
<tr>
<td>we take</td>
<td> </td>
</tr>
<tr>
<td>taken up</td>
<td> </td>
</tr>
<tr>
<td>interest</td>
<td> </td>
</tr>
<tr>
<td>interesting</td>
<td> </td>
</tr>
<tr>
<td>interests</td>
<td> </td>
</tr>
<tr>
<td>interested in the</td>
<td> </td>
</tr>
<tr>
<td> interested in me</td>
<td> </td>
</tr>
<tr>
<td>interested in this</td>
<td> </td>
</tr>
<tr>
<td>interested in the matter</td>
<td> </td>
</tr>
<tr>
<td>interested to learn</td>
<td> </td>
</tr>
<tr>
<td>take away</td>
<td> </td>
</tr>
<tr>
<td>taken away</td>
<td> </td>
</tr>
<tr>
<td>give away</td>
<td> </td>
</tr>
<tr>
<td> we take away</td>
<td> </td>
</tr>
<tr>
<td>highway</td>
<td> </td>
</tr>
<tr>
<td>highways</td>
<td> </td>
</tr>
<tr>
<td>seaway</td>
<td> </td>
</tr>
<tr>
<td>right-of-way</td>
<td> </td>
</tr>
<tr>
<td>right ways</td>
<td> </td>
</tr>
<tr>
<td>in that way</td>
<td> </td>
</tr>
<tr>
<td>in this way</td>
<td> </td>
</tr>
<tr>
<td>in any way</td>