Newer
Older
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"?><TEI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.tei-c.org/ns/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://diglib.hab.de/rules/schema/tei/P5/v2.8.0/tei-p5-transcr.xsd" xml:id="edoc_ed000228_fg_1628_03">
<teiHeader type="text">
<fileDesc>
<titleStmt>
<title>Tagebuch des Fürsten Christian II. von Anhalt-Bernburg: <date when="1628-03">März 1628</date></title>
<author>
<forename>Christian II.</forename>
<nameLink>von</nameLink>
<surname type="toponymic">Anhalt-Bernburg</surname>
</author>
<respStmt>
<resp>transkribiert und kommentiert von</resp>
<persName>
<forename>Arndt</forename>
<surname>Schreiber</surname>
</persName>
</respStmt>
<respStmt>
<resp>korrigiert von</resp>
<persName>
<forename>Alexander</forename>
<surname>Zirr</surname>
</persName>
</respStmt>
<respStmt>
<resp>Umsetzung der Digitalen Edition von</resp>
<persName>
<forename>Marcus</forename>
<surname>Baumgarten</surname>
</persName>
</respStmt>
<funder>Deutsche Forschungsgemeinschaft</funder>
<principal>Lehrstuhl für Geschichte der Frühen Neuzeit an der Albert-Ludwigs-Universität Freiburg i. Br.</principal>
<principal>Herzog August Bibliothek Wolfenbüttel</principal>
</titleStmt>
<publicationStmt>
<publisher>
<name type="org">Herzog August Bibliothek Wolfenbüttel</name>
<ptr target="http://www.hab.de"/>
</publisher>
<date type="digitised" when="2017">2017</date>
<distributor>Herzog August Bibliothek Wolfenbüttel</distributor>
<availability status="restricted">
<p>Herzog August Bibliothek Wolfenbüttel (<ref target="http://diglib.hab.de/?link=012">copyright information</ref>)</p>
</availability>
</publicationStmt>
<sourceDesc>
<xi:include href="register/listPerson.xml" xpointer="element(person)"/>
<xi:include href="register/listAbbr.xml" xpointer="element(abbr)"/>
<xi:include href="register/listSymb.xml" xpointer="element(symbol)"/>
<xi:include href="register/listPlace.xml" xpointer="element(place)"/>
<xi:include href="register/listOrg.xml" xpointer="element(organisation)"/>
<xi:include href="register/listGloss.xml" xpointer="element(glossar)"/>
<xi:include href="register/listBibl.xml" xpointer="element(bibliographie)"/>
</sourceDesc>
</fileDesc>
<encodingDesc>
<classDecl>
<xi:include href="register/listSubject.xml" xpointer="element(subject)"/>
</classDecl>
</encodingDesc>
<revisionDesc>
<list>
<item>work in progress</item>
</list>
</revisionDesc>
</teiHeader>
<text>
<body>
<div type="volume"><!--Band 5-->
<div type="year" n="1628" xml:id="year1628_03">
<div type="entry" xml:id="entry1628-03-01">
<pb n="104v" facs="#mss_ed000197_00212"/>
<index indexName="place">
<term ref="#ballenstedt">Ballenstedt</term>
</index>
<index indexName="regest">
<term>Reise der Gemahlin Eleonora Sophia zum Abendmahlsempfang nach Quedlinburg</term>
<term>Gewährung eines Kredits durch Adrian Arndt Stammer</term>
<term>Korrespondenz</term>
<term>Kriegsfolgen</term>
<term>Wirtschaftsrechnungen</term>
</index>
<index indexName="subject">
<term ref="#abendmahl"/>
<term ref="#kredit"/>
<term ref="#kriegsbeute"/>
<term ref="#sondersteuer"/>
<term ref="#rechnungswesen"/>
<term ref="#einquartierung"/>
<term ref="#soeldner"/>
</index>
<head><date calendar="julian" when="1628-03-01"><rs type="symbol" ref="#samstag">♄</rs> den 1<hi rend="super">ten.</hi> <foreign xml:lang="lat">Martij</foreign><note type="translation" resp="as">des März</note></date>.</head>
<p>
<lb/>Meine fr<ex>eundliche</ex> h<ex>erz</ex>l<ex>ieb(st)e</ex> <rs type="person" ref="#anhalt-bernburg_eleonora_sophia">gemahlin</rs> ist nach
<lb/><rs type="place" ref="#quedlinburg">Quedlinburgk</rs>, daselbst zu <w lemma="communiciren">communi
<lb/>ciren</w>, gezogen.
</p>
<p>
<lb/><rs type="person" ref="#stammer_adrian_arndt">Adrian Arent Stammer</rs>, zeücht mitt,
<lb/><foreign xml:lang="lat">loco</foreign><note type="translation" resp="as">anstatt</note> eines hofmeisters, vndt hat mir
<lb/>versprochen zum 3. mal (denn
<lb/>zweymal zuvorn <foreign xml:lang="fre">par le <rs type="person" ref="#harschleben_johann_1">baillif</rs></foreign><note type="translation" resp="as">durch den Amtmann</note>)
<lb/>daß er mir wollte gegen Ostern,
<lb/>Tausendt Reichstahler vorstrecken,
<lb/>auf drey Jahr gegen 6 auffs hundertt,
<lb/>die obligation möchte ich machen wie
<lb/>ich selber wollte.
</p>
<p>
<lb/>An Bruder <rs type="person" ref="#anhalt-bernburg_ernst">Ernsten</rs> geschrieben.
</p>
<p>
<lb/>heütte <subst><del>hatt</del><add place="above">ist</add></subst> meine fr<ex>eundliche</ex> h<ex>erz</ex>l<ex>ieb(st)e</ex> gemahlin,
<lb/>zwar wol vberkommen, aber vnsere
<lb/>pursche hatt <term ref="#krabate">Crabaten</term> im felde gesehen,
<lb/>welche ihnen zwar freündtlich, <w lemma="zugesprochen">zuge
<lb/>sprochen</w>, aber dennoch hernacher als
<lb/>meine leütte wiederumb herkommen
<lb/>gewesen, <term ref="#ein">ein</term> sechs schöner pferde, bey
<lb/><rs type="place" ref="#badeborn">Badeborn</rs>, außgespannett.
</p>
<pb n="105r" facs="#mss_ed000197_00213"/>
<p>
<lb/>Der <rs type="person" ref="#harschleben_johann_1">Amptmann</rs> hat mir des <term ref="#krabate">Crabaten</term>
<lb/>Rechnung, auch waß er innerhalb 12 wochen
<lb/>verzehrett, gebrachtt, darbeynebens wie
<lb/>der <term ref="#tax">tax</term> angeschlagen worden, nemlich auff
<lb/>iedere huffe landes, wochentlich 10 <rs type="abbreviation" ref="#pfennige">d.</rs> <w lemma="desgleichen">des
<lb/>gleichen</w> auf hauß vndt hoff, 10 pfenninge.
</p>
<p>
<lb/>           Abschrifft der tax.
<table rows="24" cols="4">
<row role="label">
<cell role="label">Thaler</cell>
<cell role="label"><rs type="abbreviation" ref="#groschen">g.</rs></cell>
<cell role="label"><rs type="abbreviation" ref="#pfennige">d</rs></cell>
<cell role="label"/>
</row>
<row role="data">
<cell role="data">18</cell>
<cell role="data">8</cell>
<cell role="data"/>
<cell role="label">Der von <rs type="person" ref="#stammer_adrian_arndt">Stammer</rs>, von 30 huffen landeß,
<lb/>vndt dem zehenden, welcher auf 14 huffen
<lb/>gerechnett vndt angeschlagen wirdt. <foreign xml:lang="lat">p<ex>erge</ex></foreign><note type="translation" resp="as">usw.</note></cell>
</row>
<row role="data">
<cell role="data">11</cell>
<cell role="data">6</cell>
<cell role="data">--</cell>
<cell role="label">Der Niederhof des <rs type="person" ref="#stammer_hermann_christian">Jungen Stammers</rs>, von 27 h<ex>ufen</ex> l<ex>andes</ex></cell>
</row>
<row role="data">
<cell role="data">3</cell>
<cell role="data">8</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#bila_hans_christian">Bilaen</rs> hoff.</cell>
</row>
<row role="data">
<cell role="data">5</cell>
<cell role="data">20</cell>
<cell role="data">--</cell>
<cell role="label">Der h<ex>err</ex> Amptmann.</cell>
</row>
<row role="data">
<cell role="data">3</cell>
<cell role="data">8</cell>
<cell role="data">--</cell>
<cell role="label">Der <rs type="person" ref="#hothorn_johannes">Richter</rs>.</cell>
</row>
<row role="data">
<cell role="data">2</cell>
<cell role="data">7</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#lieff_familie">Lieffischen</rs>.</cell>
</row>
<row role="data">
<cell role="data">2</cell>
<cell role="data">7</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#niedhardt_familie">Niedhardtschen</rs>.</cell>
</row>
<row role="data">
<cell role="data">1</cell>
<cell role="data">16</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#wahle_hans">hanß wahle</rs>.</cell>
</row>
<row role="data">
<cell role="data">2</cell>
<cell role="data">7</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#sellen_joachim">Joachim Sellen</rs> beide haüser.</cell>
</row>
<row role="data">
<cell role="data">2</cell>
<cell role="data">22</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#blenenbergk_martin">Martin Blenenbergk</rs>.</cell>
</row>
<row role="data">
<cell role="data">2</cell>
<cell role="data">22</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#engelhardt_arnold">Arndt Engelhardt</rs>.</cell>
</row>
<row role="data">
<cell role="data">1</cell>
<cell role="data">16</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#pienert_anon_1">Pienerts</rs> <rs type="person" ref="#pienert_familie">erben</rs>.</cell>
</row>
<row role="data">
<cell role="data">2</cell>
<cell role="data">22</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#wahle_andreas">Andreaß wahle</rs>.</cell>
</row>
<row role="data">
<cell role="data">1</cell>
<cell role="data">16</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hothorn_moritz">Moritz hothorn</rs>.</cell>
</row>
<row role="data">
<cell role="data">2</cell>
<cell role="data">7</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#schlegel_kaspar">Caspar Schlegel</rs></cell>
</row>
<row role="data">
<cell role="data">2</cell>
<cell role="data">17</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#pfau_anon_1">Pfawschen</rs>.</cell>
</row>
<row role="data">
<cell role="data">1</cell>
<cell role="data">6</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#meinist_hans">hanß Meinist</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">12</cell>
<cell role="data">6</cell>
<cell role="label"><rs type="person" ref="#sachse_thomas">Thomas Sachse</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">15</cell>
<cell role="data"/>
<cell role="label">Die <rs type="person" ref="#grasshoeff_anon_1">Graßhöffesche</rs></cell>
</row>
<row role="label">
<cell role="label"><note type="annotation" resp="as">Im Original Fortsetzung der Tabelle am rechten Seitenrand.</note><rs type="abbreviation" ref="#taler">Tal:</rs></cell>
<cell role="label"><rs type="abbreviation" ref="#groschen">g.</rs></cell>
<cell role="label"><rs type="abbreviation" ref="#pfennige">d</rs></cell>
<cell role="label"/>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">16</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#rode_johannes">Johannes
<lb/>Rode</rs>.</cell>
</row>
<row role="data">
<cell role="data">1</cell>
<cell role="data">6</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#mueller_joseph">Joseph
<lb/>Müller</rs>.</cell>
</row>
<row role="sum">
<cell role="data"><milestone unit="sum" rend="line"/>71</cell>
<cell role="data"><milestone unit="sum" rend="line"/>16</cell>
<cell role="data"><milestone unit="sum" rend="line"/>6</cell>
<cell role="label"><milestone unit="sum" rend="line"/><foreign xml:lang="lat">Lateris</foreign><note type="translation" resp="as">der Seite</note>,</cell>
</row>
</table>
</p>
<pb n="105v" facs="#mss_ed000197_00214"/>
<p>
<lb/><table rows="21" cols="4">
<row role="label">
<cell role="label">Tahler</cell>
<cell role="label"><rs type="abbreviation" ref="#groschen">g.</rs></cell>
<cell role="label"><rs type="abbreviation" ref="#pfennige">d</rs></cell>
<cell role="label"/>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">12</cell>
<cell role="data">6</cell>
<cell role="label"><rs type="person" ref="#krueger_matthias">Matz Krüger</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">12</cell>
<cell role="data">6</cell>
<cell role="label"><rs type="person" ref="#hesse_gall">Gall hesse</rs>,</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">15</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hothorn_hans_d_j">hanß hothorn <foreign xml:lang="lat">Junior</foreign><note type="translation" resp="as">der Jüngere</note></rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">15</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hothorn_bartholomaeus">Bartolomæus hothorn</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">20</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hothorn_joachim">Joachim hothorn</rs>.</cell>
</row>
<row role="data">
<cell role="data">1</cell>
<cell role="data">1</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#syer_gall">Galle Syer</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">17</cell>
<cell role="data">6</cell>
<cell role="label"><rs type="person" ref="#pakmann_hans">hanß Pakmann</rs>.</cell>
</row>
<row role="data">
<cell role="data">1</cell>
<cell role="data">6</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#harbort_christoph">Christoff harbortt</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">15</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#lindemann_thomas">Thomaß Lindemanns</rs> <rs type="person" ref="#lindemann_familie">Erben</rs>.</cell>
</row>
<row role="data">
<cell role="data">1</cell>
<cell role="data">6</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#mentz_johann">Johann Mentz</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">22</cell>
<cell role="data">6</cell>
<cell role="label"><rs type="person" ref="#drescher_jakob">Jacob Drescher</rs>.</cell>
</row>
<row role="data">
<cell role="data">1</cell>
<cell role="data">6</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#mentz_christian">Christian Mentzen</rs> <rs type="person" ref="#mentz_familie">erben</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">20</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#banse_claus">Clauß Banse</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">20</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hothorn_michael">Michael hothorns</rs> <rs type="person" ref="#hothorn_anon_2">wittwe</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">12</cell>
<cell role="data">6</cell>
<cell role="label"><rs type="person" ref="#rode_hans">hanß Roden</rs> <rs type="person" ref="#rode_anon_1">wittwe</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">12</cell>
<cell role="data">6</cell>
<cell role="label"><rs type="person" ref="#oelegart_andreas">Andreaß Oelegartt</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">12</cell>
<cell role="data">6</cell>
<cell role="label"><rs type="person" ref="#hesse_hans">hanß hesse</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">16</cell>
<cell role="data">--</cell>
<cell role="label"><foreign xml:lang="lat">Jdem</foreign><note type="translation" resp="as">Derselbe</note> von der Schencke.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">20</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#wahle_andreas_d_j">Andreaß wahle <foreign xml:lang="lat">Junior</foreign><note type="translation" resp="as">der Jüngere</note></rs>.</cell>
</row>
<row role="sum">
<cell role="data"><milestone unit="sum" rend="line"/></cell>
<cell role="data"><milestone unit="sum" rend="line"/></cell>
<cell role="data"><milestone unit="sum" rend="line"/></cell>
<cell role="label"><milestone unit="sum" rend="line"/><foreign xml:lang="lat">Lateris</foreign><note type="translation" resp="as">der Seite</note>
<lb/>14 Thaler, 22 <rs type="abbreviation" ref="#groschen">g.</rs> 6 <rs type="abbreviation" ref="#pfennige">d.</rs></cell>
</row>
</table>
</p>
<pb n="106r" facs="#mss_ed000197_00215"/>
<p>
<lb/><table rows="38" cols="4">
<row role="label">
<cell role="label"><rs type="abbreviation" ref="#taler">Tal:</rs></cell>
<cell role="label"><rs type="abbreviation" ref="#groschen">g.</rs></cell>
<cell role="label"><rs type="abbreviation" ref="#pfennige">d</rs></cell>
<cell role="label"/>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#liebe_lorenz">Lorentz Liebe</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#kleine_bastian">Bastian Kleine</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hambergk_georg">Georg hambergk</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#holtzhausen_joachim">Joachim holtzhausen</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#sellen_andreas">Andreaß Sellen</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#sellen_erasmus">Eraßmi</rs> <rs type="person" ref="#sellen_anon_1">wittibe</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#webel_christoph">Christoff Webell</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#randthan_andreas">Andreaß Randthan</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#ehrich_michael">Michael Ehrich</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#bila_hans_christian">Bilaen</rs> Mühle.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#ehrich_hans">hanß Ehrich</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#lehmann_stephan">Stephan Lehmann</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#schiele_bastian">Bastian Schiele</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#heidigk_lorenz">Lorentz heidigk</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#wehle_valentin">Valtin Wehle</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#syer_bastian">Bastian Syer</rs>,</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#berger_martin">Martin Berger</rs>,</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#westphael_heinrich">henrich Westphael</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#ludwig_heinrich">henrich Ludowig</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#lune_hans">hanß Luen</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#hein_familie">heinschen</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#oelegart_anon_1">Oelegarts</rs> <rs type="person" ref="#oelegart_familie">Erben</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#hornung_familie">hornungischen</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#munder_andreas">Andreaß Munder</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#moring_ludolph">Ludolff Moring</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hombergk_joachim">Jochem hombergk</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#schroeder_hans">hanß Schröder</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#lindemann_heinrich">heinrich Lindemann</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#glenenberg_familie">Glenenbergischen</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#kempe_hans">Kempenha<subst><del>u</del><add place="inline">n</add></subst>ß</rs></cell>
</row>
<row role="label">
<cell role="label"><note type="annotation" resp="as">Im Original Fortsetzung der Tabelle am rechten Seitenrand.</note>[<rs type="abbreviation" ref="#taler">Tal:</rs>]</cell>
<cell role="label"><rs type="abbreviation" ref="#groschen">g.</rs></cell>
<cell role="label"><rs type="abbreviation" ref="#pfennige">d</rs></cell>
<cell role="label"/>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#doering_familie"><w lemma="Döringischen">Dörin
<lb/>gischen</w></rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#warmeling_anon_1"><w lemma="Warmelings">Warme
<lb/>lings</w></rs> <rs type="person" ref="#warmeling_familie">erben</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#heidigk_christian">Christian
<lb/>heidigk</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#oberlender_martin">Martin
<lb/>Oberlender</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#barnemann_hermann">Hermann
<lb/>Barnemann</rs>.</cell>
</row>
<row role="sum">
<cell role="data"><milestone unit="sum" rend="line"/></cell>
<cell role="data"><milestone unit="sum" rend="line"/></cell>
<cell role="data"><milestone unit="sum" rend="line"/></cell>
<cell role="label"><milestone unit="sum" rend="line"/><foreign xml:lang="lat">Lateris</foreign><note type="translation" resp="as">der Seite</note>, 14 <add place="above"><rs type="abbreviation" ref="#thaler">Th.</rs></add> 14 <rs type="abbreviation" ref="#groschen">g.</rs></cell>
</row>
</table>
</p>
<pb n="106v" facs="#mss_ed000197_00216"/>
<p>
<lb/><table rows="21" cols="4">
<row role="label">
<cell role="label">Thaler</cell>
<cell role="label"><rs type="abbreviation" ref="#groschen">g</rs></cell>
<cell role="label"><rs type="abbreviation" ref="#pfennige">d</rs></cell>
<cell role="label"/>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hothorn_moritz">Moritz hothorn</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#heidigk_valentin">Valtin heidigke</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#sachse_thomas">Thomaß Sachse</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#mueller_magdalena">Lena Müllers</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#fischer_hans_1">hanß Fischer</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#roder_hans">hanß Roder</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#gertner_matthias">Matz Gertner</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#borgiss_balthasar">Baltzer Borgiß</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hesse_anna">Anna heßen</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#schuetze_marcus">Marcus Schütze</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#straube_martin">Martin Straube</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#brandt_andreas">Andreaß Brandt</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#bolhorn_hans">hanß Bolhorn</rs>,</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hothorn_ciriacus">Ciriack hothorn</rs>,</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#sehse_joachim">Jochem Sehse</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hoeen_kilian">Kilian höen</rs></cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#ulenbecker_hans">hanß Vlenbecker</rs>,</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#siebert_matthias">Matz Siebertt</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#probst_hans">hanß Probst</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label">Moritz hothorn.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#rodenstein_familie">Rodensteinschen</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#kuenert_kaspar">Caspar Künertt</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#webel_familie">Webelischen</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#randthan_joachim">Jochem Randthan</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#wahle_bernhard">Berndt Wahle</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label">Die <rs type="person" ref="#busske_anon_1">Bußkin</rs>,</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#schneider_andreas">Andreaß schneider</rs>,</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label">Valtin heydicke,</cell>
</row>
<row role="label">
<cell role="label"><note type="annotation" resp="as">Im Original Fortsetzung der Tabelle am rechten Seitenrand.</note>[Taler]</cell>
<cell role="label"><rs type="abbreviation" ref="#groschen">g.</rs></cell>
<cell role="label"><rs type="abbreviation" ref="#pfennige">d.</rs></cell>
<cell role="label"/>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#byern_heinrich">heinrich
<lb/>Byern</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#boehm_theophil">M<ex>agister</ex> Böhmen</rs>
<lb/>hauß.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#schneider_hans">hanß
<lb/>schneider</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#lindemann_katharina">Trina
<lb/>Lindemanns</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#randthan_jakob">Jacob
<lb/>Randthan</rs>.</cell>
</row>
<row role="data">
<cell role="data"/>
<cell role="data">10</cell>
<cell role="data">--</cell>
<cell role="label"><rs type="person" ref="#hoffmann_christoph">Christoff
<lb/>hoffman</rs>.</cell>
</row>
<row role="sum">
<cell role="data"><milestone unit="sum" rend="line"/></cell>
<cell role="data"><milestone unit="sum" rend="line"/></cell>
<cell role="data"><milestone unit="sum" rend="line"/></cell>
<cell role="label"><milestone unit="sum" rend="line"/><foreign xml:lang="lat">Lateris</foreign><note type="translation" resp="as">der Seite</note>
<lb/>14 thaler
<lb/>4 <rs type="abbreviation" ref="#groschen">g.</rs></cell>
</row>
</table>
</p>
<pb n="107r" facs="#mss_ed000197_00217"/>
<p>
<lb/><foreign xml:lang="lat">Summa</foreign><note type="translation" resp="as">Summe</note> auß dem flecken <rs type="place" ref="#ballenstedt">Ballenstedt</rs>,
<lb/>mitt denen von adell, 115 tahler, 8 <rs type="abbreviation" ref="#gute_groschen">gg.</rs>
<lb/>Auß der Neẅstadt von iedem hause 6 <rs type="abbreviation" ref="#gute_groschen">gg.</rs>
<lb/>Thut von 48 haüsern,
<lb/>     9 Thaler 12 <rs type="abbreviation" ref="#gute_groschen">gg.</rs>
<lb/><foreign xml:lang="lat">Jtem</foreign><note type="translation" resp="as">Ebenso</note>: von haüsern vffm graben,
<lb/>   2 Thaler.
<lb/><foreign xml:lang="lat">Summa Summarum</foreign><note type="translation" resp="as">Summe der Summen</note>
<lb/>   126 Thaler, 20 <rs type="abbreviation" ref="#gute_groschen">gg.</rs>
<lb/>hiervon sollen bezahlett werden,
<lb/>36 <rs type="abbreviation" ref="#thaler">Thlr:</rs> dem <rs type="person" ref="#hothorn_johannes">Richter</rs>, vor eßen vndt
<lb/>trincken, auff 9 wochen.
<lb/>28 <rs type="abbreviation" ref="#thaler">Thlr:</rs> vor 4 <term ref="#wispel_mass">wispel</term> haffern.
<lb/>40 <rs type="abbreviation" ref="#thaler">Thlr:</rs> auf 10 wochen soldt.
<lb/>16 <rs type="abbreviation" ref="#thaler">Thlr:</rs> auff 14 tage <term ref="#deputat">deputat</term>.
<lb/>7 <rs type="abbreviation" ref="#thaler">Thlr:</rs> <rs type="person" ref="#hesse_hans">hanß heßen</rs> für 10 tage,
<lb/>den <term ref="#krabate">Crabaten</term> zu speisen, auch das
<lb/>die <term ref="#guardia">guardien</term>, alß sie ankommen, bey
<lb/>ihme verzehrett.
</p>
<milestone unit="section" rend="line"/>
<p>
<lb/>Von nachfolgendem bericht, ist deme von
<lb/><rs type="person" ref="#stammer_adrian_arndt">Stammern</rs>, alß welcher sich beschweert <w lemma="befunden">be
<lb/>funden</w>, Copey zugeschickt worden, nemlich
<pb n="107v" facs="#mss_ed000197_00218"/>
<lb/>Auff sein begehren, wirdt ihme <rs type="person" ref="#stammer_adrian_arndt">Stammern</rs>
<lb/>vom <rs type="org" ref="#ballenstedt_rat">raht</rs> zugeschickt, des Croaten <w lemma="rechnung">rech
<lb/>nung</w> auff 12 wochen.
<lb/>6 <rs type="abbreviation" ref="#thaler">Thlr:</rs> <rs type="person" ref="#hesse_hans">hanß heßen</rs> auf 10 tage wegen
<lb/>des Croaten, 8 Mußcketirer, vndt
<lb/>der andern Croaten, so nach <rs type="place" ref="#harzgerode">hartzgeroda</rs>
<lb/>gelegt, auf 1 tag vndt nacht zehrung.
<lb/>36 <rs type="abbreviation" ref="#thaler">Thlr:</rs> dem <rs type="person" ref="#hothorn_johannes">Richter</rs> vor 9 wochen, speiß
<lb/>vndt tranck.
<lb/>40 <rs type="abbreviation" ref="#thaler">Thlr:</rs> auf 10 wochen Soldt, iede woche
<lb/>4 Reichstahler.
<lb/>16 <rs type="abbreviation" ref="#thaler">Thlr:</rs> ihme auf 14 tage <term ref="#deputat">deputat</term> <w lemma="gegeben">ge
<lb/>geben</w>.
<lb/>28 <rs type="abbreviation" ref="#thaler">Thlr:</rs> vor 4 <term ref="#wispel_mass">wispel</term> haffer, so
<lb/>er verfüttertt.
<lb/>   <foreign xml:lang="lat">Summa</foreign><note type="translation" resp="as">Summe</note> dieses
<lb/>     126 Thaler.
</p>
<p>
<lb/>Dieselben seindt folgender gestallt, auff die
<lb/>von adell, vndt der bürgerschafft äcker,
<lb/>auch dero haüser vertheilett:
<lb/>148 huffen landes, von ieder wochentlich, 10 <rs type="abbreviation" ref="#pfennige">d.</rs>
<lb/>thut in 12 wochen, 61 Thaler, 16 <rs type="abbreviation" ref="#gute_groschen">gg.</rs>
<lb/>14 hueffen, seindt vor diesem in andern <w lemma="contributionen">contri
<lb/>butionen</w> auf des von Stammers zehenden
<pb n="108r" facs="#mss_ed000197_00219"/>
<table rows="4" cols="3">
<row role="label">
<cell role="label"/>
<cell role="label">Thaler</cell>
<cell role="label"><rs type="abbreviation" ref="#groschen">g.</rs></cell>
</row>
<row role="data">
<cell role="label">gerechnettt, thut auf 12 wochen</cell>
<cell role="data">5</cell>
<cell role="data">20</cell>
</row>
<row role="data">
<cell role="label">110 koetsaßen haüser vndt ackerhöffe
<lb/>auch von iedem 10 <rs type="abbreviation" ref="#pfennige">d.</rs> thut auff
<lb/>12 wochen</cell>
<cell role="data"><lb/><lb/>45</cell>
<cell role="data"><lb/><lb/>20</cell>
</row>
<row role="data">
<cell role="label">Auß der Neẅstadt</cell>
<cell role="data">9</cell>
<cell role="data">14</cell>
</row>
</table>
<lb/>   Thut zusammen 122 thaler. 22 <rs type="abbreviation" ref="#gute_groschen">gg.</rs>
</p>
<milestone unit="section" rend="line"/>
<p>
<lb/>Des <del>hie</del> <rs type="place" ref="#ballenstedt">alhiesigen</rs> <rs type="person" ref="#hothorn_johannes">Richters</rs>
<lb/>rechnung, wegen des Croaten,
<lb/>was er auf 9 wochen, begehrett.
<table rows="9" cols="3">
<row role="label">
<cell role="label"/>
<cell role="label">Tahler.</cell>
<cell role="label"><rs type="abbreviation" ref="#groschen">g.</rs></cell>
</row>
<row role="data">
<cell role="label">Jede woche vor eßen, vndt trincken
<lb/>4 Thaler, Thut auf 9 wochen</cell>
<cell role="data"><lb/>36</cell>
<cell role="data"/>
</row>
<row role="data">
<cell role="label">Jeden tagk vndt Nacht, 3 bundt
<lb/>heẅ, iedes zu 16 <rs type="abbreviation" ref="#pfennige">d.</rs> Thut auf 9 wochen</cell>
<cell role="data"><lb/>9</cell>
<cell role="data"><lb/>8</cell>
</row>
<row role="data">
<cell role="label">Alle Abendt vndt Morgen vor 4 <rs type="abbreviation" ref="#pfennige">d.</rs>
<lb/>licht in den stall, thut auff 9 wochen</cell>
<cell role="data"><lb/>1</cell>
<cell role="data"/>
</row>
<row role="data">