-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRMA00097.xml
executable file
·6542 lines (6534 loc) · 187 KB
/
RMA00097.xml
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="UTF-8" standalone="no"?>
<!-- Transformed with v1v2002_4_cornell.xsl -->
<!DOCTYPE ead PUBLIC "+//ISBN 1-931666-00-8//DTD ead.dtd (Encoded Archival Description (EAD) Version 2002)//EN" "../dtds/ead.dtd">
<?xml-stylesheet type="text/xsl" href="../styles/style.xsl" ?>
<ead>
<eadheader repositoryencoding="iso15511" relatedencoding="MARC21"
countryencoding="iso3166-1" scriptencoding="iso15924" dateencoding="iso8601"
langencoding="iso639-2b">
<eadid mainagencycode="nic" countrycode="us"
publicid="-//Cornell University::Cornell University Library::Division of Rare and Manuscript Collections//TEXT(US::NIC::RMA00097::Carl E. Ladd Director of Extension papers)//EN">RMA00097.xml</eadid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Carl E. Ladd Director of Extension
papers,1924-1930.</titleproper>
<titleproper type="sort">Ladd, Carl E., Director of Extension papers,
1924-1930</titleproper>
</titlestmt>
<publicationstmt>
<publisher>Division of Rare and Manuscript Collections, Cornell
University Library</publisher>
<date>March 2003</date>
</publicationstmt>
<notestmt>
<note audience="internal">
<p>
<subject>cals</subject>
<subject>agric</subject> </p>
</note>
</notestmt>
</filedesc>
<profiledesc>
<creation>Finding aid encoded by Martin Heggestad
<date>March 2003</date> </creation>
</profiledesc>
<revisiondesc>
<change encodinganalog="583">
<date normal="2007-05-29">2007-05-29</date>
<item>converted from EAD 1.0 to EAD 2002 </item>
</change>
</revisiondesc>
</eadheader>
<frontmatter>
<titlepage>
<titleproper>Guide to the Carl E. Ladd Director Of Extension
Papers,<lb/>1924-1930</titleproper>
<num>Collection Number: 21-24-97</num>
<publisher>Division of Rare and Manuscript Collections <lb/>Cornell
University Library</publisher>
<list type="deflist">
<defitem>
<label>Contact Information:</label>
<item>Division of Rare and Manuscript Collections<lb/> 2B Carl A.
Kroch Library<lb/> Cornell University<lb/> Ithaca, NY 14853<lb/> (607)
255-3530<lb/> Fax: (607) 255-9524<lb/>
<extref
href="mailto:[email protected]">[email protected]</extref> <lb/>
<extref
href="http://rmc.library.cornell.edu">http://rmc.library.cornell.edu</extref>
<lb/></item>
</defitem>
<defitem>
<label>Date completed:</label>
<item>November 1993</item>
</defitem>
<defitem>
<label>EAD encoding:</label>
<item>Martin Heggestad, March 2003</item>
</defitem>
</list>
<date>© 2002 Division of Rare and Manuscript Collections, Cornell
University Library</date>
</titlepage>
</frontmatter>
<archdesc level="collection">
<did>
<head id="a1">DESCRIPTIVE SUMMARY</head>
<unittitle label="Title:" encodinganalog="MARC 245">Carl E. Ladd Director
of Extension papers,
<unitdate type="inclusive"
encodinganalog="MARC 245">1924-1930.</unitdate> </unittitle>
<unitid label="Collection Number:">21-24-97</unitid>
<origination label="Creator:">
<persname encodinganalog="100" normal="Ladd, Carl E. ">Carl E. Ladd
</persname> </origination>
<physdesc label="Quantity:" encodinganalog="MARC 300">13.4 cubic
ft.</physdesc>
<physdesc label="Forms of Material:">Correspondence, reports, and other
records.</physdesc>
<repository label="Repository:"> Division of Rare and Manuscript
Collections, Cornell University Library</repository>
<abstract label="Abstract:">Correspondence, reports, and other records of
Carl E. Ladd as Director of Extension at the New York State College of
Agriculture.</abstract>
<langmaterial label="Language:">Collection material in
<language encodinganalog="041" langcode="eng">English</language>
</langmaterial>
</did>
<bioghist encodinganalog="MARC 545">
<head id="a2" altrender="biography">BIOGRAPHICAL NOTE </head>
<p>Carl E. Ladd was Director of Extension and Dean of the New York State
College of Agriculture at Cornell.</p>
<p>Carl Edwin Ladd was born 25 Feb. 1888 in McLean, Tompkins County, New
York, at the farm of his parents, Arnold D. and Mary E. (Mineah) Ladd; he was
their second son and the youngest of three children. Both parents were natives
of Tompkins County; his father was descended from Daniel Ladd, who came from
England to Massachusetts in 1634. Carl attended local schools and at fifteen
entered the nearby Cortland (N.Y.) Normal School, from which he graduated in
1907. After a year as school principal in South Otselic, N.Y., he enrolled in
the College of Agriculture at Cornell University. He received a B.S. degree in
1912 but stayed on for graduate study in the department of farm management,
specializing in cost accounting under the direction of Prof. George F. Warren,
whose economic ides he was to share, during the agricultural crisis of the
early 1930s. He received the Ph.D. in 1915. </p>
<p>That year Ladd became director of the New York State School of
Agriculture at Delhi, one of six regional schools recently established to
provide a two year program in applied agriculture. In 1917 he assumed overall
direction of the six schools as specialist in agricultural education in the
State Education Department at Albany. Two years later, he became director of
the State School of Agriculture at Alfred, N.Y. Ladd returned to Cornell in
1920, as extension professor of farm management. He was made director of
extension work for the College of Agriculture and the College of Home Economics
at Cornell in 1924. </p>
<p>Carl Ladd’s career was build upon identification with the interests of
New York agriculture. He regarded the extension service as a vehicle for
transmitting the needs of the farmer to the college and as an agency for
formulating research programs to meet those needs. As director of extension he
worked closely with the State Farm Bureau Federation, using its county units as
local bases of operation for the College of Agriculture; through this structure
extension specialists were made available to individual farmers for
consultation. Under Ladd, Cornell also continued its policy of aiding farmer
cooperatives such as the Dairymen's League.</p>
<p> In 1932 Ladd became dean of the colleges of agriculture and of home
economics and director of the agricultural experiment station at Cornell. A
skilled administrator and mediator, he set up meetings at the college between
farmers and the businessmen who supplied their needs. Recognizing the trend
toward specialization in agriculture, he altered the focus of extension work
from general farming to particular commodities. He also kept Cornell in the
forefront of agricultural research, concentrating on such problems as better
food packaging, dehydration, and the artificial breeding of livestock. He set
up a special interdepartmental research and extension projects designed to
expand the market for potatoes, an important state product, and encouraged the
development of the frozen food industry in New York State. </p>
<p>Ladd's influence in agricultural matters extended beyond the campus.
He had become widely known to the farming public at large through the columns
of the "American Agriculturist," edited by his close friend Edward R. Eastman.
Sensitive to the techniques of public relations, he maintained contacts in
Albany and Washington and with the newspaper publisher Frank Gannett. Ladd
served as secretary of the State Agricultural Advisory Commission under Gov.
Franklin D. Roosevelt, and later as chairman; he became chairman of the New
York State Planning Council in 1936; and he was a director of the Federal Land
Bank at Springfield, Mass., a major source of credit for Northeastern farmers.
</p>
<p>Ladd's reaction to the agricultural program of the New Deal was
ambivalent. He supported the Agricultural Adjustment Act as a temporary
expedient and recognized the need for some government assistance, but objected
to the degree of central planning envisaged by the Roosevelt administration. As
new federal agencies concerned with the farmer were created, Ladd sought with
considerable success to have them administered by the existing network of
county agents that made up the extension service of the various land-grant
colleges. The matter was formalized at a conference in 1938 between
representatives of the colleges and the federal Department of Agriculture at
which a compromise (the "Mount Weather Agreement") was worked out by Ladd. </p>
<p>While still active as dean, he died on 23 July 1943 of a coronary
attack at the age of fifty five and was buried at McLean, New York. </p>
<p>Gould P. Colman, Dictionary of American Biography, 1973.</p>
</bioghist>
<scopecontent encodinganalog="MARC 520">
<head id="a3">COLLECTION DESCRIPTION</head>
<p>Correspondence, reports, and other records of Carl E. Ladd as Director
of Extension at the New York State College of Agriculture.</p>
</scopecontent>
<controlaccess>
<head id="a7">SUBJECTS</head>
<controlaccess>
<head>Names: </head>
<persname encodinganalog="MARC 100">Ladd, Carl E.</persname>
<corpname encodinganalog="MARC 610">New York State College of
Agriculture.</corpname>
</controlaccess>
<controlaccess>
<head>Subjects:</head>
<subject encodinganalog="MARC 650">Agricultural extension work--New
York (State).</subject>
<subject encodinganalog="MARC 650">University extension--New York
(State).</subject>
</controlaccess>
</controlaccess>
<descgrp type="admininfo">
<head id="a8">INFORMATION FOR USERS</head>
<prefercite>
<head>Cite As:</head>
<p>Carl E. Ladd Director of Extension papers, #21-24-97. Division of
Rare and Manuscript Collections, Cornell University Library.</p>
</prefercite>
<p>See also
<extref
href="http://resolver.library.cornell.edu/cgi-bin/EADresolver?id=RMA00087">Carl
E. Ladd papers, #21-2-87.</extref></p>
</descgrp>
<dsc type="combined">
<head>CONTAINER LIST</head>
<c01 level="series">
<did>
<unittitle>Subject matter files, 1924-1925</unittitle>
</did>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 1 </container>
<unittitle> County Appropriations </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 2 </container>
<unittitle> Annual Extension Service Conference - Montgomery
Robinson </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 3 </container>
<unittitle> Conference Specialists </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 4 </container>
<unittitle> Monthly Extension Conference </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 5 </container>
<unittitle> Conference - Northeast Directors Extension - M. S.
McDowell </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 6 </container>
<unittitle> Replies to Circular Letter #7 </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 7 </container>
<unittitle> Better Sires Campaign </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 8 </container>
<unittitle> Reforestation Conference - C. R. Pettis, E. H. Thomson,
R. S. Hosmer, G. F. Warren, J. Coryell, C. A. Taylor </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 9 </container>
<unittitle> Regional Conferences </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 10 </container>
<unittitle> Publications - Cornelius Betten </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 11 </container>
<unittitle> Extension Service News - Editorial Board </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 12 </container>
<unittitle> Extension Methods </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 13 </container>
<unittitle> Forestry Policy </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 14 </container>
<unittitle> Committee on Committees in Extension Specialist Group -
S. Sanderson, E. L. Worthen, M. Van Rensselaer, W. T. Crandall, G. W. Peck
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 15 </container>
<unittitle> Sub-Marginal Forms </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 16 </container>
<unittitle> State-Wide Extension Program </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 17 </container>
<unittitle> Fairs (State and County) </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 18 </container>
<unittitle> Farmers Week [including one L. H. Bailey letter,
Program] </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 19 </container>
<unittitle> Harvest Weather Forecast </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 20 </container>
<unittitle> Laws </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 21 </container>
<unittitle> Clarke-McNary Act </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 22 </container>
<unittitle> Memoranda </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 23 </container>
<unittitle> Community and County Programs </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 24 </container>
<unittitle> Radio - C. B. Smith </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 25 </container>
<unittitle> Professional Improvement of Agents and Staff
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 26 </container>
<unittitle> Spray Service </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 27 </container>
<unittitle> Weather Bureau Forecasts </unittitle>
</did>
</c02>
</c01>
<c01 level="series">
<did>
<unittitle>Correspondence, 1924-1925</unittitle>
</did>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 28 </container>
<unittitle> A </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 29 </container>
<unittitle> Agricultural Society </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 30 </container>
<unittitle> Atwood, Prof. M. V. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 31 </container>
<unittitle> American Agriculturist - E. R. Eastman </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 32 </container>
<unittitle> American Farm Bureau Federation </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 33 </container>
<unittitle> B </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 34 </container>
<unittitle> Burritt, M. C. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 35 </container>
<unittitle> C </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 36 </container>
<unittitle> D </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 37 </container>
<unittitle> Dairymen's League Cooperative Association - Charles
Tuck </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 38 </container>
<unittitle> Dairymen's League News - D. J. Carter </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 39 </container>
<unittitle> Dairymen's League Situation </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 40 </container>
<unittitle> Directors of Extension - John D. Willard </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 41 </container>
<unittitle> E </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 42 </container>
<unittitle> F </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 43-44 </container>
<unittitle> Farm Bureau Federation - E. V. Underwood </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 45 </container>
<unittitle> Farrand, Pres. Livingston </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 46 </container>
<unittitle> Federal Land Bank </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 47 </container>
<unittitle> Federated Fruit and Vegetable Growers - A. R. Rule,
General Manager </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 48 </container>
<unittitle> G </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 49 </container>
<unittitle> Getman, A. K. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 50 </container>
<unittitle> G.L.F. [Grange League Federation] Exchange - H. E.
Babcock </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 51 </container>
<unittitle> Grange State - S. L. Strivings, Natalie C. Barnes
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 52 </container>
<unittitle> H </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 53 </container>
<unittitle> Home Bureau Federation - Mrs. G. Thomas Powell
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 54 </container>
<unittitle> Hopper, Prof. H. A. (Animal Husbandry) </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 55 </container>
<unittitle> Hotels </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 56 </container>
<unittitle> I </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 57 </container>
<unittitle> J </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 58 </container>
<unittitle> K </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 59 </container>
<unittitle> L </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 60 </container>
<unittitle> Land Grant College Association </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 61 </container>
<unittitle> M </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 62 </container>
<unittitle> Moore, Dr. V. A. (Veterinary) </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 63 </container>
<unittitle> N </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 64 </container>
<unittitle> National Dairy Show - W. E. Skinner </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 65 </container>
<unittitle> New York Canning Crops. Association Inc. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 66 </container>
<unittitle> New York Seed Improvement Cooperative Association Inc.
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 67 </container>
<unittitle> New York Sheep Association - H. E. Robertson
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 68 </container>
<unittitle> O </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 69 </container>
<unittitle> P </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 70 </container>
<unittitle> Potash-Marl - John B. Gleason </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 71 </container>
<unittitle> Pyrke, Berne A. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 72 </container>
<unittitle> Q </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 73 </container>
<unittitle> R </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 1 </container>
<container type="folder"> 74 </container>
<unittitle> Railroads </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 1 </container>
<unittitle> Rochester Exposition </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 2 </container>
<unittitle> Rural New Yorker - H. W. Collingwood </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 3 </container>
<unittitle> S </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 4 </container>
<unittitle> State Schools </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 5 </container>
<unittitle> T </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 6 </container>
<unittitle> Telegrams </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 7 </container>
<unittitle> U-V </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 8 </container>
<unittitle> X, Y, Z </unittitle>
</did>
</c02>
</c01>
<c01 level="series">
<did>
<unittitle>Federal, 1924-1925</unittitle>
</did>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 9 </container>
<unittitle> Bureau of Public Roads </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 10 </container>
<unittitle> Office of Cooperative Extension Work - H. M. Dixon
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 11 </container>
<unittitle> Secretary of Agriculture - Henry C. Wallace
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 12 </container>
<unittitle> Extension Work on Forestry - G. H. Collingwood
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 13 </container>
<unittitle> Miscellaneous Agricultural Economics Circulars -
census, etc. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 14 </container>
<unittitle> Crop Estimates </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 15 </container>
<unittitle> Plant Industry </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 16 </container>
<unittitle> States Relations Service - H. W. Hochbaum </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 17 </container>
<unittitle> Goddard, L. H. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 18 </container>
<unittitle> Lloyd, W. A. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 19-20 </container>
<unittitle> Agricultural Economics - H. M. Dixon </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 21-22 </container>
<unittitle> United States Department of Agriculture </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 23-25 </container>
<unittitle> Smith, C. B. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 26 </container>
<unittitle> Smith, C. B. - Reports </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 27 </container>
<unittitle> True, Dr. A. E. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 28 </container>
<unittitle> Department of Agriculture - Florence E. Ward
</unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 29 </container>
<unittitle> Warburton, Director C. W. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 30 </container>
<unittitle> Wilson, M. C. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 31 </container>
<unittitle> Department of Farms and Markets </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 32 </container>
<unittitle> Department of Education </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 33 </container>
<unittitle> Secretary (University) </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 34 </container>
<unittitle> Mann, A. R. </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 35 </container>
<unittitle> Betten, Dr. Cornelius </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 36 </container>
<unittitle> Thatcher, Director R. W. (Research) </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 37 </container>
<unittitle> Secretary (Agriculture College) </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 38 </container>
<unittitle> Appointments and Resignations in Counties </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 39 </container>
<unittitle> Appointments and Resignations at Colleges </unittitle>
</did>
</c02>
<c02 level="file">
<did>
<container type="box"> 2 </container>
<container type="folder"> 40 </container>
<unittitle> Faculty (Agricultural) </unittitle>
</did>
</c02>
<c02 level="file">
<did>